blob: beff11dcbb3f5db709e9d6bad1743f29357adf38 [file] [log] [blame]
Simon Kelleyd1ced3a2018-01-01 22:18:03 +00001/* dnsmasq is Copyright (c) 2000-2018 Simon Kelley
Simon Kelley824af852008-02-12 20:43:05 +00002
Simon Kelley9e4abcb2004-01-22 19:47:41 +00003 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
Simon Kelley824af852008-02-12 20:43:05 +00005 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
Simon Kelley9e4abcb2004-01-22 19:47:41 +00008 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.
Simon Kelley824af852008-02-12 20:43:05 +000012
Simon Kelley73a08a22009-02-05 20:28:08 +000013 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000015*/
16
Simon Kelleyd1ced3a2018-01-01 22:18:03 +000017#define COPYRIGHT "Copyright (c) 2000-2018 Simon Kelley"
Simon Kelley9e4abcb2004-01-22 19:47:41 +000018
Christian Hesseb697fbb2017-09-25 17:36:24 +010019/* We do defines that influence behavior of stdio.h, so complain
20 if included too early. */
21#ifdef _STDIO_H
22# error "Header file stdio.h included too early!"
23#endif
24
Simon Kelley1a6bca82008-07-11 11:11:42 +010025#ifndef NO_LARGEFILE
Simon Kelley9e038942008-05-30 20:06:34 +010026/* Ensure we can use files >2GB (log files may grow this big) */
Simon Kelley1a6bca82008-07-11 11:11:42 +010027# define _LARGEFILE_SOURCE 1
28# define _FILE_OFFSET_BITS 64
29#endif
Simon Kelley9e038942008-05-30 20:06:34 +010030
Simon Kelley8ef5ada2010-06-03 19:42:45 +010031/* Get linux C library versions and define _GNU_SOURCE for kFreeBSD. */
32#if defined(__linux__) || defined(__GLIBC__)
Simon Kelley572b41e2011-02-18 18:11:18 +000033# ifndef __ANDROID__
34# define _GNU_SOURCE
35# endif
Simon Kelley9e038942008-05-30 20:06:34 +010036# include <features.h>
37#endif
38
Simon Kelley316e2732010-01-22 20:16:09 +000039/* Need these defined early */
40#if defined(__sun) || defined(__sun__)
41# define _XPG4_2
42# define __EXTENSIONS__
43#endif
44
Petr Menšík282eab72018-08-15 19:41:07 +020045#if (defined(__GNUC__) && __GNUC__ >= 3) || defined(__clang__)
46#define ATTRIBUTE_NORETURN __attribute__ ((noreturn))
47#else
48#define ATTRIBUTE_NORETURN
49#endif
50
Simon Kelley9e4abcb2004-01-22 19:47:41 +000051/* get these before config.h for IPv6 stuff... */
Simon Kelley44a2a312004-03-10 20:04:35 +000052#include <sys/types.h>
Simon Kelley1f15b812009-10-13 17:49:32 +010053#include <sys/socket.h>
Simon Kelleyc72daea2012-01-05 21:33:27 +000054
55#ifdef __APPLE__
56/* Define before netinet/in.h to select API. OSX Lion onwards. */
57# define __APPLE_USE_RFC_3542
58#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +000059#include <netinet/in.h>
60
Simon Kelleyc72daea2012-01-05 21:33:27 +000061/* Also needed before config.h. */
Simon Kelley59353a62004-11-21 19:34:28 +000062#include <getopt.h>
63
Simon Kelley9e4abcb2004-01-22 19:47:41 +000064#include "config.h"
Simon Kelleyc3a04082014-01-11 22:18:19 +000065#include "ip6addr.h"
Julian Kornbergeraba8bbb2018-07-21 21:55:08 +010066#include "metrics.h"
Simon Kelleyb8187c82005-11-26 21:46:27 +000067
Simon Kelley572b41e2011-02-18 18:11:18 +000068typedef unsigned char u8;
69typedef unsigned short u16;
70typedef unsigned int u32;
Simon Kelley52b92f42012-01-22 16:05:15 +000071typedef unsigned long long u64;
Simon Kelley572b41e2011-02-18 18:11:18 +000072
Giovanni Bajo28c62552012-04-25 17:40:13 +020073#define countof(x) (long)(sizeof(x) / sizeof(x[0]))
74#define MIN(a,b) ((a) < (b) ? (a) : (b))
75
Simon Kelleyc239f7d2012-02-27 10:56:18 +000076#include "dns-protocol.h"
77#include "dhcp-protocol.h"
Simon Kelleyc72daea2012-01-05 21:33:27 +000078#ifdef HAVE_DHCP6
Simon Kelleyc239f7d2012-02-27 10:56:18 +000079#include "dhcp6-protocol.h"
80#include "radv-protocol.h"
Simon Kelleyc72daea2012-01-05 21:33:27 +000081#endif
Simon Kelley572b41e2011-02-18 18:11:18 +000082
Simon Kelleyb8187c82005-11-26 21:46:27 +000083#define gettext_noop(S) (S)
Simon Kelley824af852008-02-12 20:43:05 +000084#ifndef LOCALEDIR
Simon Kelleyb8187c82005-11-26 21:46:27 +000085# define _(S) (S)
86#else
87# include <libintl.h>
88# include <locale.h>
89# define _(S) gettext(S)
90#endif
91
Simon Kelley9e4abcb2004-01-22 19:47:41 +000092#include <arpa/inet.h>
93#include <sys/stat.h>
Simon Kelley9e4abcb2004-01-22 19:47:41 +000094#include <sys/ioctl.h>
Simon Kelley824af852008-02-12 20:43:05 +000095#if defined(HAVE_SOLARIS_NETWORK)
Simon Kelley316e2732010-01-22 20:16:09 +000096# include <sys/sockio.h>
Simon Kelley824af852008-02-12 20:43:05 +000097#endif
Simon Kelleyb842bc92015-07-12 21:09:11 +010098#include <sys/poll.h>
Simon Kelleyfeba5c12004-07-27 20:28:58 +010099#include <sys/wait.h>
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000100#include <sys/time.h>
Simon Kelleyf2621c72007-04-29 19:47:21 +0100101#include <sys/un.h>
Simon Kelley8a911cc2004-03-16 18:35:52 +0000102#include <limits.h>
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000103#include <net/if.h>
Simon Kelley316e2732010-01-22 20:16:09 +0000104#if defined(HAVE_SOLARIS_NETWORK) && !defined(ifr_mtu)
105/* Some solaris net/if./h omit this. */
106# define ifr_mtu ifr_ifru.ifru_metric
107#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000108#include <unistd.h>
109#include <stdio.h>
110#include <string.h>
111#include <stdlib.h>
112#include <fcntl.h>
113#include <ctype.h>
114#include <signal.h>
Simon Kelley9e038942008-05-30 20:06:34 +0100115#include <stddef.h>
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000116#include <time.h>
117#include <errno.h>
118#include <pwd.h>
119#include <grp.h>
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000120#include <stdarg.h>
Simon Kelley572b41e2011-02-18 18:11:18 +0000121#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__sun__) || defined (__sun) || defined (__ANDROID__)
Simon Kelley44a2a312004-03-10 20:04:35 +0000122# include <netinet/if_ether.h>
123#else
124# include <net/ethernet.h>
125#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000126#include <net/if_arp.h>
127#include <netinet/in_systm.h>
128#include <netinet/ip.h>
Simon Kelley6b173352018-05-08 18:32:14 +0100129#include <netinet/ip6.h>
Simon Kelley3be34542004-09-11 19:12:13 +0100130#include <netinet/ip_icmp.h>
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000131#include <sys/uio.h>
Simon Kelley849a8352006-06-09 21:02:31 +0100132#include <syslog.h>
133#include <dirent.h>
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100134#ifndef HAVE_LINUX_NETWORK
135# include <net/if_dl.h>
136#endif
137
Simon Kelley824af852008-02-12 20:43:05 +0000138#if defined(HAVE_LINUX_NETWORK)
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100139#include <linux/capability.h>
140/* There doesn't seem to be a universally-available
Josh Soref730c6742017-02-06 16:14:04 +0000141 userspace header for these. */
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100142extern int capset(cap_user_header_t header, cap_user_data_t data);
Simon Kelley9e038942008-05-30 20:06:34 +0100143extern int capget(cap_user_header_t header, cap_user_data_t data);
144#define LINUX_CAPABILITY_VERSION_1 0x19980330
145#define LINUX_CAPABILITY_VERSION_2 0x20071026
Simon Kelley1a6bca82008-07-11 11:11:42 +0100146#define LINUX_CAPABILITY_VERSION_3 0x20080522
Simon Kelley9e038942008-05-30 20:06:34 +0100147
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100148#include <sys/prctl.h>
Simon Kelley7622fc02009-06-04 20:32:05 +0100149#elif defined(HAVE_SOLARIS_NETWORK)
Simon Kelley824af852008-02-12 20:43:05 +0000150#include <priv.h>
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100151#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000152
Simon Kelleyad9c6f02017-10-27 22:13:49 +0100153#ifdef HAVE_DNSSEC
154# include <nettle/nettle-meta.h>
155#endif
156
Simon Kelley824af852008-02-12 20:43:05 +0000157/* daemon is function in the C library.... */
Simon Kelley5aabfc72007-08-29 11:24:47 +0100158#define daemon dnsmasq_daemon
159
Simon Kelleyee875042018-10-23 22:10:17 +0100160#define ADDRSTRLEN INET6_ADDRSTRLEN
161
Simon Kelley5aabfc72007-08-29 11:24:47 +0100162/* Async event queue */
163struct event_desc {
Simon Kelleyc72daea2012-01-05 21:33:27 +0000164 int event, data, msg_sz;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100165};
166
Petr Menšíkc77fb9d2017-04-16 20:20:08 +0100167#define EVENT_RELOAD 1
168#define EVENT_DUMP 2
169#define EVENT_ALARM 3
170#define EVENT_TERM 4
171#define EVENT_CHILD 5
172#define EVENT_REOPEN 6
173#define EVENT_EXITED 7
174#define EVENT_KILLED 8
175#define EVENT_EXEC_ERR 9
176#define EVENT_PIPE_ERR 10
177#define EVENT_USER_ERR 11
178#define EVENT_CAP_ERR 12
179#define EVENT_PIDFILE 13
180#define EVENT_HUSER_ERR 14
181#define EVENT_GROUP_ERR 15
182#define EVENT_DIE 16
183#define EVENT_LOG_ERR 17
184#define EVENT_FORK_ERR 18
185#define EVENT_LUA_ERR 19
186#define EVENT_TFTP_ERR 20
187#define EVENT_INIT 21
188#define EVENT_NEWADDR 22
189#define EVENT_NEWROUTE 23
190#define EVENT_TIME_ERR 24
191#define EVENT_SCRIPT_LOG 25
Simon Kelley3c973ad2018-01-14 21:05:37 +0000192#define EVENT_TIME 26
Simon Kelley5aabfc72007-08-29 11:24:47 +0100193
194/* Exit codes. */
195#define EC_GOOD 0
196#define EC_BADCONF 1
197#define EC_BADNET 2
198#define EC_FILE 3
199#define EC_NOMEM 4
200#define EC_MISC 5
201#define EC_INIT_OFFSET 10
202
Simon Kelley28866e92011-02-14 20:19:14 +0000203#define OPT_BOGUSPRIV 0
204#define OPT_FILTER 1
205#define OPT_LOG 2
206#define OPT_SELFMX 3
207#define OPT_NO_HOSTS 4
208#define OPT_NO_POLL 5
209#define OPT_DEBUG 6
210#define OPT_ORDER 7
211#define OPT_NO_RESOLV 8
212#define OPT_EXPAND 9
213#define OPT_LOCALMX 10
214#define OPT_NO_NEG 11
215#define OPT_NODOTS_LOCAL 12
216#define OPT_NOWILD 13
217#define OPT_ETHERS 14
218#define OPT_RESOLV_DOMAIN 15
219#define OPT_NO_FORK 16
220#define OPT_AUTHORITATIVE 17
221#define OPT_LOCALISE 18
222#define OPT_DBUS 19
223#define OPT_DHCP_FQDN 20
224#define OPT_NO_PING 21
225#define OPT_LEASE_RO 22
226#define OPT_ALL_SERVERS 23
227#define OPT_RELOAD 24
228#define OPT_LOCAL_REBIND 25
229#define OPT_TFTP_SECURE 26
230#define OPT_TFTP_NOBLOCK 27
231#define OPT_LOG_OPTS 28
Floris Bos60704f52017-04-09 22:22:49 +0100232#define OPT_TFTP_APREF_IP 29
Simon Kelley28866e92011-02-14 20:19:14 +0000233#define OPT_NO_OVERRIDE 30
234#define OPT_NO_REBIND 31
235#define OPT_ADD_MAC 32
Giovanni Bajo237724c2012-04-05 02:46:52 +0200236#define OPT_DNSSEC_PROXY 33
Simon Kelley7de060b2011-08-26 17:24:52 +0100237#define OPT_CONSEC_ADDR 34
238#define OPT_CONNTRACK 35
Simon Kelleyc72daea2012-01-05 21:33:27 +0000239#define OPT_FQDN_UPDATE 36
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000240#define OPT_RA 37
Simon Kelley61ce6002012-04-20 21:28:49 +0100241#define OPT_TFTP_LC 38
Simon Kelley54dd3932012-06-20 11:23:38 +0100242#define OPT_CLEVERBIND 39
Simon Kelley8bc4cec2012-07-03 21:04:11 +0100243#define OPT_TFTP 40
Simon Kelley6bd3a092013-10-11 10:25:56 +0100244#define OPT_CLIENT_SUBNET 41
Kevin Darbyshire-Bryant8c0b73d2013-10-11 11:56:33 +0100245#define OPT_QUIET_DHCP 42
246#define OPT_QUIET_DHCP6 43
247#define OPT_QUIET_RA 44
Simon Kelley3a237152013-12-12 12:15:50 +0000248#define OPT_DNSSEC_VALID 45
Simon Kelleye98bd522014-03-28 20:41:23 +0000249#define OPT_DNSSEC_TIME 46
Simon Kelley5b3bf922014-01-25 17:03:07 +0000250#define OPT_DNSSEC_DEBUG 47
Simon Kelleya6918532018-04-15 16:20:52 +0100251#define OPT_DNSSEC_IGN_NS 48
Simon Kelleyc8a80482014-03-05 14:29:54 +0000252#define OPT_LOCAL_SERVICE 49
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +0100253#define OPT_LOOP_DETECT 50
Simon Kelley25cf5e32015-01-09 15:53:03 +0000254#define OPT_EXTRALOG 51
Stefan Tomanek30d08792015-03-31 22:32:11 +0100255#define OPT_TFTP_NO_FAIL 52
Simon Kelley1e505122016-01-25 21:29:23 +0000256#define OPT_SCRIPT_ARP 53
257#define OPT_MAC_B64 54
Simon Kelley9e4cf472016-02-17 20:26:32 +0000258#define OPT_MAC_HEX 55
Floris Bos60704f52017-04-09 22:22:49 +0100259#define OPT_TFTP_APREF_MAC 56
Simon Kelley734d5312018-03-23 23:09:53 +0000260#define OPT_RAPID_COMMIT 57
Julian Kornberger8dcdb332018-07-21 22:11:08 +0100261#define OPT_UBUS 58
262#define OPT_LAST 59
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000263
Petr Menšík24b87602018-10-24 22:30:18 +0100264#define OPTION_BITS (sizeof(unsigned int)*8)
265#define OPTION_SIZE ( (OPT_LAST/OPTION_BITS)+((OPT_LAST%OPTION_BITS)!=0) )
266#define option_var(x) (daemon->options[(x) / OPTION_BITS])
267#define option_val(x) ((1u) << ((x) % OPTION_BITS))
268#define option_bool(x) (option_var(x) & option_val(x))
269
Simon Kelley7622fc02009-06-04 20:32:05 +0100270/* extra flags for my_syslog, we use a couple of facilities since they are known
271 not to occupy the same bits as priorities, no matter how syslog.h is set up. */
Petr Menšíkc77fb9d2017-04-16 20:20:08 +0100272#define MS_TFTP LOG_USER
273#define MS_DHCP LOG_DAEMON
274#define MS_SCRIPT LOG_MAIL
Simon Kelley7622fc02009-06-04 20:32:05 +0100275
Simon Kelleycc921df2019-01-02 22:48:59 +0000276/* Note that this is used widely as a container for IPv4/IPv6 addresses,
277 so for that reason, was well as to avoid wasting memory in almost every
278 cache entry, the other variants should not be larger than
279 sizeof(struct in6_addr) - 16 bytes.
280*/
281union all_addr {
282 struct in_addr addr4;
283 struct in6_addr addr6;
284 struct {
285 union {
286 struct crec *cache;
287 struct interface_name *int_name;
288 } target;
289 unsigned int uid; /* 0 if union is interface-name */
290 } cname;
291 struct {
292 struct blockdata *keydata;
293 unsigned short keylen, flags, keytag;
294 unsigned char algo;
295 } key;
296 struct {
297 struct blockdata *keydata;
298 unsigned short keylen, keytag;
299 unsigned char algo;
300 unsigned char digest;
301 } ds;
302 /* for log_query */
303 struct {
304 unsigned short keytag, algo, digest, rcode;
305 } log;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000306};
307
Simon Kelleycc921df2019-01-02 22:48:59 +0000308
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000309struct bogus_addr {
310 struct in_addr addr;
311 struct bogus_addr *next;
312};
313
Simon Kelley1cff1662004-03-12 08:12:58 +0000314/* dns doctor param */
315struct doctor {
Simon Kelley73a08a22009-02-05 20:28:08 +0000316 struct in_addr in, end, out, mask;
Simon Kelley1cff1662004-03-12 08:12:58 +0000317 struct doctor *next;
318};
319
Simon Kelley0a852542005-03-23 20:28:59 +0000320struct mx_srv_record {
321 char *name, *target;
Simon Kelley3d8df262005-08-29 12:19:27 +0100322 int issrv, srvport, priority, weight;
323 unsigned int offset;
Simon Kelley0a852542005-03-23 20:28:59 +0000324 struct mx_srv_record *next;
Simon Kelleyde379512004-06-22 20:23:33 +0100325};
326
Simon Kelley1a6bca82008-07-11 11:11:42 +0100327struct naptr {
328 char *name, *replace, *regexp, *services, *flags;
329 unsigned int order, pref;
330 struct naptr *next;
331};
332
Kevin Darbyshire-Bryant7ac9ae12016-09-09 20:52:08 +0100333#ifndef NO_ID
Simon Kelleyfec216d2014-03-27 20:54:34 +0000334#define TXT_STAT_CACHESIZE 1
335#define TXT_STAT_INSERTS 2
336#define TXT_STAT_EVICTIONS 3
337#define TXT_STAT_MISSES 4
338#define TXT_STAT_HITS 5
339#define TXT_STAT_AUTH 6
340#define TXT_STAT_SERVERS 7
Kevin Darbyshire-Bryant7ac9ae12016-09-09 20:52:08 +0100341#endif
Simon Kelleyfec216d2014-03-27 20:54:34 +0000342
Simon Kelley0a852542005-03-23 20:28:59 +0000343struct txt_record {
Simon Kelley28866e92011-02-14 20:19:14 +0000344 char *name;
345 unsigned char *txt;
Simon Kelley0a852542005-03-23 20:28:59 +0000346 unsigned short class, len;
Simon Kelleyfec216d2014-03-27 20:54:34 +0000347 int stat;
Simon Kelley0a852542005-03-23 20:28:59 +0000348 struct txt_record *next;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000349};
350
Simon Kelley832af0b2007-01-21 20:01:28 +0000351struct ptr_record {
352 char *name, *ptr;
353 struct ptr_record *next;
354};
355
Simon Kelley9009d742008-11-14 20:04:27 +0000356struct cname {
Simon Kelley903df072017-01-19 17:22:00 +0000357 int ttl, flag;
Simon Kelley9009d742008-11-14 20:04:27 +0000358 char *alias, *target;
Simon Kelley903df072017-01-19 17:22:00 +0000359 struct cname *next, *targetp;
Simon Kelley376d48c2013-11-13 13:04:30 +0000360};
361
Simon Kelleyee415862014-02-11 11:07:22 +0000362struct ds_config {
363 char *name, *digest;
364 int digestlen, class, algo, keytag, digest_type;
365 struct ds_config *next;
Simon Kelley0fc2f312014-01-08 10:26:58 +0000366};
367
Simon Kelley376d48c2013-11-13 13:04:30 +0000368#define ADDRLIST_LITERAL 1
369#define ADDRLIST_IPV6 2
Simon Kelley47669362014-12-17 12:41:56 +0000370#define ADDRLIST_REVONLY 4
Simon Kelley376d48c2013-11-13 13:04:30 +0000371
372struct addrlist {
Simon Kelleycc921df2019-01-02 22:48:59 +0000373 union all_addr addr;
Simon Kelley376d48c2013-11-13 13:04:30 +0000374 int flags, prefixlen;
375 struct addrlist *next;
Simon Kelley9009d742008-11-14 20:04:27 +0000376};
377
Simon Kelley376d48c2013-11-13 13:04:30 +0000378#define AUTH6 1
379#define AUTH4 2
380
Simon Kelley4f7b3042012-11-28 21:27:02 +0000381struct auth_zone {
382 char *domain;
Simon Kelley376d48c2013-11-13 13:04:30 +0000383 struct auth_name_list {
384 char *name;
385 int flags;
386 struct auth_name_list *next;
387 } *interface_names;
388 struct addrlist *subnet;
Mathias Kresin094bfae2016-07-24 14:15:22 +0100389 struct addrlist *exclude;
Simon Kelley4f7b3042012-11-28 21:27:02 +0000390 struct auth_zone *next;
391};
392
393
Simon Kelleye759d422012-03-16 13:18:57 +0000394struct host_record {
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000395 int ttl;
Simon Kelleye759d422012-03-16 13:18:57 +0000396 struct name_list {
397 char *name;
398 struct name_list *next;
399 } *names;
400 struct in_addr addr;
Simon Kelleye759d422012-03-16 13:18:57 +0000401 struct in6_addr addr6;
Simon Kelleye759d422012-03-16 13:18:57 +0000402 struct host_record *next;
403};
404
Simon Kelleyf2621c72007-04-29 19:47:21 +0100405struct interface_name {
406 char *name; /* domain name */
407 char *intr; /* interface name */
Simon Kelleyf7029f52013-11-21 15:09:09 +0000408 int family; /* AF_INET, AF_INET6 or zero for both */
Simon Kelley376d48c2013-11-13 13:04:30 +0000409 struct addrlist *addr;
Simon Kelleyf2621c72007-04-29 19:47:21 +0100410 struct interface_name *next;
411};
412
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000413union bigname {
414 char name[MAXDNAME];
415 union bigname *next; /* freelist */
416};
417
Simon Kelleyc3e0b9b2013-12-31 13:50:39 +0000418struct blockdata {
419 struct blockdata *next;
Simon Kelley7b4ad2e2012-04-04 14:05:35 +0100420 unsigned char key[KEYBLOCK_LEN];
421};
422
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000423struct crec {
424 struct crec *next, *prev, *hash_next;
Simon Kelleycc921df2019-01-02 22:48:59 +0000425 union all_addr addr;
Simon Kelleycdbee9a2012-04-04 21:55:59 +0100426 time_t ttd; /* time to die */
Simon Kelley93be5b12015-12-15 12:04:40 +0000427 /* used as class if DNSKEY/DS, index to source for F_HOSTS */
Simon Kelley3f7483e2014-03-16 22:56:58 +0000428 unsigned int uid;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000429 unsigned short flags;
430 union {
431 char sname[SMALLDNAME];
432 union bigname *bname;
433 char *namep;
434 } name;
435};
436
Simon Kelley3a610a02018-09-26 16:50:35 +0100437#define SIZEOF_BARE_CREC (sizeof(struct crec) - SMALLDNAME)
438#define SIZEOF_POINTER_CREC (sizeof(struct crec) + sizeof(char *) - SMALLDNAME)
439
Simon Kelley28866e92011-02-14 20:19:14 +0000440#define F_IMMORTAL (1u<<0)
441#define F_NAMEP (1u<<1)
442#define F_REVERSE (1u<<2)
443#define F_FORWARD (1u<<3)
444#define F_DHCP (1u<<4)
445#define F_NEG (1u<<5)
446#define F_HOSTS (1u<<6)
447#define F_IPV4 (1u<<7)
448#define F_IPV6 (1u<<8)
449#define F_BIGNAME (1u<<9)
450#define F_NXDOMAIN (1u<<10)
451#define F_CNAME (1u<<11)
Simon Kelley7b4ad2e2012-04-04 14:05:35 +0100452#define F_DNSKEY (1u<<12)
Simon Kelley28866e92011-02-14 20:19:14 +0000453#define F_CONFIG (1u<<13)
Simon Kelley7b4ad2e2012-04-04 14:05:35 +0100454#define F_DS (1u<<14)
455#define F_DNSSECOK (1u<<15)
456
Simon Kelley28866e92011-02-14 20:19:14 +0000457/* below here are only valid as args to log_query: cache
458 entries are limited to 16 bits */
459#define F_UPSTREAM (1u<<16)
460#define F_RRNAME (1u<<17)
461#define F_SERVER (1u<<18)
462#define F_QUERY (1u<<19)
Simon Kelley7b4ad2e2012-04-04 14:05:35 +0100463#define F_NOERR (1u<<20)
Simon Kelley4f7b3042012-11-28 21:27:02 +0000464#define F_AUTH (1u<<21)
Simon Kelley0fc2f312014-01-08 10:26:58 +0000465#define F_DNSSEC (1u<<22)
466#define F_KEYTAG (1u<<23)
467#define F_SECSTAT (1u<<24)
Simon Kelley12fae492014-02-04 22:03:06 +0000468#define F_NO_RR (1u<<25)
Wang Jian49752b92014-03-28 20:52:47 +0000469#define F_IPSET (1u<<26)
Simon Kelley93be5b12015-12-15 12:04:40 +0000470#define F_NOEXTRA (1u<<27)
Simon Kelley087eb762017-10-30 23:16:54 +0000471#define F_SERVFAIL (1u<<28)
Simon Kelley07ed5852018-05-04 21:52:22 +0100472#define F_RCODE (1u<<29)
Simon Kelley4f7b3042012-11-28 21:27:02 +0000473
Simon Kelley45d8a242018-07-17 21:01:14 +0100474#define UID_NONE 0
Simon Kelley19c51cf2014-03-18 22:38:30 +0000475/* Values of uid in crecs with F_CONFIG bit set. */
Simon Kelley45d8a242018-07-17 21:01:14 +0100476/* cname to uid SRC_INTERFACE are to interface names,
477 so use UID_NONE for that to eliminate clashes with
478 any other uid */
479#define SRC_INTERFACE UID_NONE
Simon Kelley19c51cf2014-03-18 22:38:30 +0000480#define SRC_CONFIG 1
481#define SRC_HOSTS 2
482#define SRC_AH 3
483
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000484
485/* struct sockaddr is not large enough to hold any address,
Simon Kelleycdeda282006-03-16 20:16:06 +0000486 and specifically not big enough to hold an IPv6 address.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000487 Blech. Roll our own. */
488union mysockaddr {
489 struct sockaddr sa;
490 struct sockaddr_in in;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000491 struct sockaddr_in6 in6;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000492};
493
Simon Kelleybad7b872012-12-20 22:00:39 +0000494/* bits in flag param to IPv6 callbacks from iface_enumerate() */
495#define IFACE_TENTATIVE 1
496#define IFACE_DEPRECATED 2
Vladislav Grishenko4568a6f2013-08-19 16:07:07 +0100497#define IFACE_PERMANENT 4
Simon Kelleybad7b872012-12-20 22:00:39 +0000498
499
Simon Kelley0a852542005-03-23 20:28:59 +0000500#define SERV_FROM_RESOLV 1 /* 1 for servers from resolv, 0 for command line. */
501#define SERV_NO_ADDR 2 /* no server, this domain is local only */
502#define SERV_LITERAL_ADDRESS 4 /* addr is the answer, not the server */
Simon Kelley5aabfc72007-08-29 11:24:47 +0100503#define SERV_HAS_DOMAIN 8 /* server for one domain only */
504#define SERV_HAS_SOURCE 16 /* source address defined */
Simon Kelley0a852542005-03-23 20:28:59 +0000505#define SERV_FOR_NODOTS 32 /* server for names with no domain part only */
506#define SERV_WARNED_RECURSIVE 64 /* avoid warning spam */
Simon Kelley3d8df262005-08-29 12:19:27 +0100507#define SERV_FROM_DBUS 128 /* 1 if source is DBus */
508#define SERV_MARK 256 /* for mark-and-delete */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000509#define SERV_TYPE (SERV_HAS_DOMAIN | SERV_FOR_NODOTS)
Simon Kelley824af852008-02-12 20:43:05 +0000510#define SERV_COUNTED 512 /* workspace for log code */
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100511#define SERV_USE_RESOLV 1024 /* forward this domain in the normal way */
512#define SERV_NO_REBIND 2048 /* inhibit dns-rebind protection */
Simon Kelley7b1eae42014-02-20 13:43:28 +0000513#define SERV_FROM_FILE 4096 /* read from --servers-file */
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +0100514#define SERV_LOOP 8192 /* server causes forwarding loop */
Simon Kelley367341f2016-01-12 15:58:23 +0000515#define SERV_DO_DNSSEC 16384 /* Validate DNSSEC when using this server */
Simon Kelley361dfe52017-02-10 21:12:30 +0000516#define SERV_GOT_TCP 32768 /* Got some data from the TCP connection */
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000517
518struct serverfd {
519 int fd;
520 union mysockaddr source_addr;
Simon Kelley824af852008-02-12 20:43:05 +0000521 char interface[IF_NAMESIZE+1];
Simon Kelley4441cf72018-04-10 21:39:54 +0100522 unsigned int ifindex, used, preallocated;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000523 struct serverfd *next;
524};
525
Simon Kelley1a6bca82008-07-11 11:11:42 +0100526struct randfd {
527 int fd;
528 unsigned short refcount, family;
529};
530
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000531struct server {
532 union mysockaddr addr, source_addr;
Simon Kelley824af852008-02-12 20:43:05 +0000533 char interface[IF_NAMESIZE+1];
Simon Kelley16972692006-10-16 20:04:18 +0100534 struct serverfd *sfd;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000535 char *domain; /* set if this server only handles a domain. */
Simon Kelleya77cec82015-05-08 16:25:38 +0100536 int flags, tcpfd, edns_pktsz;
Simon Kelleyc1a4e252018-01-19 22:00:05 +0000537 time_t pktsz_reduced;
Simon Kelley824af852008-02-12 20:43:05 +0000538 unsigned int queries, failed_queries;
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +0100539#ifdef HAVE_LOOP
540 u32 uid;
541#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000542 struct server *next;
543};
544
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000545struct ipsets {
546 char **sets;
547 char *domain;
548 struct ipsets *next;
549};
550
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000551struct irec {
552 union mysockaddr addr;
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000553 struct in_addr netmask; /* only valid for IPv4 */
Petr Menšíkad59f272017-03-17 17:22:19 +0000554 int tftp_ok, dhcp_ok, mtu, done, warned, dad, dns_auth, index, multicast_done, found, label;
Simon Kelley5d162f22012-12-20 14:55:46 +0000555 char *name;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000556 struct irec *next;
557};
558
Simon Kelley44a2a312004-03-10 20:04:35 +0000559struct listener {
Simon Kelley832af0b2007-01-21 20:01:28 +0000560 int fd, tcpfd, tftpfd, family;
Simon Kelley52d4abf2012-03-21 21:39:48 +0000561 struct irec *iface; /* only sometimes valid for non-wildcard */
Simon Kelley44a2a312004-03-10 20:04:35 +0000562 struct listener *next;
563};
564
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000565/* interface and address parms from command line. */
566struct iname {
567 char *name;
568 union mysockaddr addr;
Simon Kelley4ce4f372012-06-14 11:50:45 +0100569 int used;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000570 struct iname *next;
571};
572
Ed Bardsleya7369be2015-08-05 21:17:18 +0100573/* subnet parameters from command line */
574struct mysubnet {
575 union mysockaddr addr;
576 int addr_used;
577 int mask;
578};
579
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000580/* resolv-file parms from command-line */
581struct resolvc {
582 struct resolvc *next;
Simon Kelley3d8df262005-08-29 12:19:27 +0100583 int is_default, logged;
584 time_t mtime;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000585 char *name;
Simon Kelley04918052015-01-26 11:23:43 +0000586#ifdef HAVE_INOTIFY
Simon Kelley193de4a2014-12-10 17:32:16 +0000587 int wd; /* inotify watch descriptor */
588 char *file; /* pointer to file part if path */
589#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000590};
591
Simon Kelley5f4dc5c2015-01-20 20:51:02 +0000592/* adn-hosts parms from command-line (also dhcp-hostsfile and dhcp-optsfile and dhcp-hostsdir*/
Simon Kelley7622fc02009-06-04 20:32:05 +0100593#define AH_DIR 1
594#define AH_INACTIVE 2
Simon Kelley5f4dc5c2015-01-20 20:51:02 +0000595#define AH_WD_DONE 4
Simon Kelley70d18732015-01-31 19:59:29 +0000596#define AH_HOSTS 8
597#define AH_DHCP_HST 16
598#define AH_DHCP_OPT 32
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100599struct hostsfile {
600 struct hostsfile *next;
Simon Kelley7622fc02009-06-04 20:32:05 +0100601 int flags;
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100602 char *fname;
Simon Kelley04918052015-01-26 11:23:43 +0000603#ifdef HAVE_INOTIFY
Simon Kelley5f4dc5c2015-01-20 20:51:02 +0000604 int wd; /* inotify watch descriptor */
605#endif
Simon Kelley19c51cf2014-03-18 22:38:30 +0000606 unsigned int index; /* matches to cache entries for logging */
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100607};
608
Simon Kelley6b173352018-05-08 18:32:14 +0100609/* packet-dump flags */
610#define DUMP_QUERY 0x0001
611#define DUMP_REPLY 0x0002
612#define DUMP_UP_QUERY 0x0004
613#define DUMP_UP_REPLY 0x0008
614#define DUMP_SEC_QUERY 0x0010
615#define DUMP_SEC_REPLY 0x0020
616#define DUMP_BOGUS 0x0040
617#define DUMP_SEC_BOGUS 0x0080
618
Simon Kelley3a237152013-12-12 12:15:50 +0000619
620/* DNSSEC status values. */
621#define STAT_SECURE 1
622#define STAT_INSECURE 2
623#define STAT_BOGUS 3
624#define STAT_NEED_DS 4
625#define STAT_NEED_KEY 5
Simon Kelley5d3b87a2014-01-20 11:57:23 +0000626#define STAT_TRUNCATED 6
Simon Kelley5107ace2014-02-23 10:48:32 +0000627#define STAT_SECURE_WILDCARD 7
Simon Kelley9a31b682015-12-15 10:20:39 +0000628#define STAT_OK 8
629#define STAT_ABANDONED 9
Simon Kelley3a237152013-12-12 12:15:50 +0000630
Simon Kelley28866e92011-02-14 20:19:14 +0000631#define FREC_NOREBIND 1
632#define FREC_CHECKING_DISABLED 2
Simon Kelleyed4c0762013-10-08 20:46:34 +0100633#define FREC_HAS_SUBNET 4
Simon Kelley9d633042013-12-13 15:36:55 +0000634#define FREC_DNSKEY_QUERY 8
635#define FREC_DS_QUERY 16
Simon Kelley83349b82014-02-10 21:02:01 +0000636#define FREC_AD_QUESTION 32
Simon Kelley613ad152014-02-25 23:02:28 +0000637#define FREC_DO_QUESTION 64
638#define FREC_ADDED_PHEADER 128
Simon Kelley9a31b682015-12-15 10:20:39 +0000639#define FREC_TEST_PKTSZ 256
Simon Kelleyd3a8b392015-12-23 12:27:37 +0000640#define FREC_HAS_EXTRADATA 512
Simon Kelley28866e92011-02-14 20:19:14 +0000641
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000642#ifdef HAVE_DNSSEC
643#define HASH_SIZE 20 /* SHA-1 digest size */
644#else
645#define HASH_SIZE sizeof(int)
646#endif
647
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000648struct frec {
649 union mysockaddr source;
Simon Kelleycc921df2019-01-02 22:48:59 +0000650 union all_addr dest;
Simon Kelley832af0b2007-01-21 20:01:28 +0000651 struct server *sentto; /* NULL means free */
Simon Kelley1a6bca82008-07-11 11:11:42 +0100652 struct randfd *rfd4;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100653 struct randfd *rfd6;
Simon Kelleydfa666f2004-08-02 18:27:27 +0100654 unsigned int iface;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000655 unsigned short orig_id, new_id;
Simon Kelley25cf5e32015-01-09 15:53:03 +0000656 int log_id, fd, forwardall, flags;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000657 time_t time;
Simon Kelley8a9be9e2014-01-25 23:17:21 +0000658 unsigned char *hash[HASH_SIZE];
659#ifdef HAVE_DNSSEC
Simon Kelley7fa836e2014-02-10 20:11:24 +0000660 int class, work_counter;
Simon Kelley3a237152013-12-12 12:15:50 +0000661 struct blockdata *stash; /* Saved reply, whilst we validate */
Simon Kelley9a31b682015-12-15 10:20:39 +0000662 size_t stash_len;
Simon Kelley3a237152013-12-12 12:15:50 +0000663 struct frec *dependent; /* Query awaiting internally-generated DNSKEY or DS query */
664 struct frec *blocking_query; /* Query which is blocking us. */
665#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000666 struct frec *next;
667};
668
Simon Kelley40ef23b2012-03-13 21:59:28 +0000669/* flags in top of length field for DHCP-option tables */
670#define OT_ADDR_LIST 0x8000
671#define OT_RFC1035_NAME 0x4000
672#define OT_INTERNAL 0x2000
673#define OT_NAME 0x1000
674#define OT_CSTRING 0x0800
675#define OT_DEC 0x0400
Simon Kelley23245c02012-07-18 16:21:11 +0100676#define OT_TIME 0x0200
Simon Kelley40ef23b2012-03-13 21:59:28 +0000677
Simon Kelley16972692006-10-16 20:04:18 +0100678/* actions in the daemon->helper RPC */
679#define ACTION_DEL 1
680#define ACTION_OLD_HOSTNAME 2
681#define ACTION_OLD 3
682#define ACTION_ADD 4
Simon Kelleya9530962012-03-20 22:07:35 +0000683#define ACTION_TFTP 5
Simon Kelley33702ab2015-12-28 23:17:15 +0000684#define ACTION_ARP 6
Simon Kelleye6e751b2016-02-01 17:59:07 +0000685#define ACTION_ARP_DEL 7
Simon Kelley16972692006-10-16 20:04:18 +0100686
Simon Kelley4cb1b322012-02-06 14:30:41 +0000687#define LEASE_NEW 1 /* newly created */
688#define LEASE_CHANGED 2 /* modified */
689#define LEASE_AUX_CHANGED 4 /* CLID or expiry changed */
690#define LEASE_AUTH_NAME 8 /* hostname came from config, not from client */
691#define LEASE_USED 16 /* used this DHCPv6 transaction */
692#define LEASE_NA 32 /* IPv6 no-temporary lease */
693#define LEASE_TA 64 /* IPv6 temporary lease */
Simon Kelley353ae4d2012-03-19 20:07:51 +0000694#define LEASE_HAVE_HWADDR 128 /* Have set hwaddress */
Simon Kelley4cb1b322012-02-06 14:30:41 +0000695
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000696struct dhcp_lease {
697 int clid_len; /* length of client identifier */
698 unsigned char *clid; /* clientid */
699 char *hostname, *fqdn; /* name from client-hostname option or config */
Simon Kelley16972692006-10-16 20:04:18 +0100700 char *old_hostname; /* hostname before it moved to another lease */
Simon Kelley4cb1b322012-02-06 14:30:41 +0000701 int flags;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000702 time_t expires; /* lease expiry */
Simon Kelley5e9e0ef2006-04-17 14:24:29 +0100703#ifdef HAVE_BROKEN_RTC
704 unsigned int length;
705#endif
Simon Kelley89500e32013-09-20 16:29:20 +0100706 int hwaddr_len, hwaddr_type;
707 unsigned char hwaddr[DHCP_CHADDR_MAX];
Simon Kelley1f15b812009-10-13 17:49:32 +0100708 struct in_addr addr, override, giaddr;
Simon Kelley316e2732010-01-22 20:16:09 +0000709 unsigned char *extradata;
710 unsigned int extradata_len, extradata_size;
Simon Kelley824af852008-02-12 20:43:05 +0000711 int last_interface;
Lung-Pin Changdc8a1b12014-07-02 10:48:05 +0800712 int new_interface; /* save possible originated interface */
713 int new_prefixlen; /* and its prefix length */
Simon Kelley353ae4d2012-03-19 20:07:51 +0000714#ifdef HAVE_DHCP6
Simon Kelley89500e32013-09-20 16:29:20 +0100715 struct in6_addr addr6;
716 int iaid;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000717 struct slaac_address {
Simon Kelley875b8162013-12-17 17:40:32 +0000718 struct in6_addr addr;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000719 time_t ping_time;
720 int backoff; /* zero -> confirmed */
721 struct slaac_address *next;
722 } *slaac_address;
Simon Kelley6f9aaa92013-04-10 10:25:26 +0100723 int vendorclass_count;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000724#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000725 struct dhcp_lease *next;
726};
727
Simon Kelleya2226412004-05-13 20:27:08 +0100728struct dhcp_netid {
729 char *net;
730 struct dhcp_netid *next;
731};
732
Simon Kelley26128d22004-11-14 16:43:54 +0000733struct dhcp_netid_list {
734 struct dhcp_netid *list;
735 struct dhcp_netid_list *next;
736};
Simon Kelley16972692006-10-16 20:04:18 +0100737
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100738struct tag_if {
739 struct dhcp_netid_list *set;
740 struct dhcp_netid *tag;
741 struct tag_if *next;
742};
743
Floris Bos503c6092017-04-09 23:07:13 +0100744struct delay_config {
745 int delay;
746 struct dhcp_netid *netid;
747 struct delay_config *next;
748};
749
Simon Kelley9009d742008-11-14 20:04:27 +0000750struct hwaddr_config {
751 int hwaddr_len, hwaddr_type;
752 unsigned char hwaddr[DHCP_CHADDR_MAX];
753 unsigned int wildcard_mask;
754 struct hwaddr_config *next;
755};
756
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000757struct dhcp_config {
Simon Kelley33820b72004-04-03 21:10:00 +0100758 unsigned int flags;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000759 int clid_len; /* length of client identifier */
760 unsigned char *clid; /* clientid */
Simon Kelley9009d742008-11-14 20:04:27 +0000761 char *hostname, *domain;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100762 struct dhcp_netid_list *netid;
Simon Kelley52b92f42012-01-22 16:05:15 +0000763#ifdef HAVE_DHCP6
764 struct in6_addr addr6;
765#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000766 struct in_addr addr;
Simon Kelley849a8352006-06-09 21:02:31 +0100767 time_t decline_time;
Simon Kelley9009d742008-11-14 20:04:27 +0000768 unsigned int lease_time;
769 struct hwaddr_config *hwaddr;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000770 struct dhcp_config *next;
771};
772
Simon Kelley4cb1b322012-02-06 14:30:41 +0000773#define have_config(config, mask) ((config) && ((config)->flags & (mask)))
774
Simon Kelley0a852542005-03-23 20:28:59 +0000775#define CONFIG_DISABLE 1
776#define CONFIG_CLID 2
Simon Kelley0a852542005-03-23 20:28:59 +0000777#define CONFIG_TIME 8
778#define CONFIG_NAME 16
779#define CONFIG_ADDR 32
Simon Kelley0a852542005-03-23 20:28:59 +0000780#define CONFIG_NOCLID 128
Simon Kelley849a8352006-06-09 21:02:31 +0100781#define CONFIG_FROM_ETHERS 256 /* entry created by /etc/ethers */
782#define CONFIG_ADDR_HOSTS 512 /* address added by from /etc/hosts */
783#define CONFIG_DECLINED 1024 /* address declined by client */
Simon Kelley5aabfc72007-08-29 11:24:47 +0100784#define CONFIG_BANK 2048 /* from dhcp hosts file */
Simon Kelley52b92f42012-01-22 16:05:15 +0000785#define CONFIG_ADDR6 4096
Simon Kelley30393102013-01-17 16:34:16 +0000786#define CONFIG_WILDCARD 8192
Simon Kelley33820b72004-04-03 21:10:00 +0100787
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000788struct dhcp_opt {
Simon Kelleycdeda282006-03-16 20:16:06 +0000789 int opt, len, flags;
Simon Kelley73a08a22009-02-05 20:28:08 +0000790 union {
791 int encap;
792 unsigned int wildcard_mask;
793 unsigned char *vendor_class;
794 } u;
795 unsigned char *val;
Simon Kelley26128d22004-11-14 16:43:54 +0000796 struct dhcp_netid *netid;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000797 struct dhcp_opt *next;
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100798};
799
Simon Kelleycdeda282006-03-16 20:16:06 +0000800#define DHOPT_ADDR 1
801#define DHOPT_STRING 2
Simon Kelley6b010842007-02-12 20:32:07 +0000802#define DHOPT_ENCAPSULATE 4
Simon Kelley73a08a22009-02-05 20:28:08 +0000803#define DHOPT_ENCAP_MATCH 8
Simon Kelley6b010842007-02-12 20:32:07 +0000804#define DHOPT_FORCE 16
Simon Kelley824af852008-02-12 20:43:05 +0000805#define DHOPT_BANK 32
Simon Kelley73a08a22009-02-05 20:28:08 +0000806#define DHOPT_ENCAP_DONE 64
807#define DHOPT_MATCH 128
808#define DHOPT_VENDOR 256
809#define DHOPT_HEX 512
Simon Kelley7622fc02009-06-04 20:32:05 +0100810#define DHOPT_VENDOR_MATCH 1024
Simon Kelley316e2732010-01-22 20:16:09 +0000811#define DHOPT_RFC3925 2048
Simon Kelley7de060b2011-08-26 17:24:52 +0100812#define DHOPT_TAGOK 4096
Simon Kelley4cb1b322012-02-06 14:30:41 +0000813#define DHOPT_ADDR6 8192
Simon Kelleycdeda282006-03-16 20:16:06 +0000814
Simon Kelley26128d22004-11-14 16:43:54 +0000815struct dhcp_boot {
Simon Kelley7de060b2011-08-26 17:24:52 +0100816 char *file, *sname, *tftp_sname;
Simon Kelley26128d22004-11-14 16:43:54 +0000817 struct in_addr next_server;
818 struct dhcp_netid *netid;
819 struct dhcp_boot *next;
820};
821
Simon Kelleyc8226202018-08-08 23:46:03 +0100822struct dhcp_match_name {
823 char *name;
824 int wildcard;
825 struct dhcp_netid *netid;
826 struct dhcp_match_name *next;
827};
828
Simon Kelley7622fc02009-06-04 20:32:05 +0100829struct pxe_service {
830 unsigned short CSA, type;
Simon Kelley751d6f42012-02-10 15:24:51 +0000831 char *menu, *basename, *sname;
Simon Kelley7622fc02009-06-04 20:32:05 +0100832 struct in_addr server;
833 struct dhcp_netid *netid;
834 struct pxe_service *next;
835};
836
Simon Kelleyf2621c72007-04-29 19:47:21 +0100837#define MATCH_VENDOR 1
838#define MATCH_USER 2
839#define MATCH_CIRCUIT 3
840#define MATCH_REMOTE 4
841#define MATCH_SUBSCRIBER 5
842
Josh Soref730c6742017-02-06 16:14:04 +0000843/* vendorclass, userclass, remote-id or circuit-id */
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100844struct dhcp_vendor {
Simon Kelleya5c72ab2012-02-10 13:42:47 +0000845 int len, match_type;
846 unsigned int enterprise;
Simon Kelleya2226412004-05-13 20:27:08 +0100847 char *data;
848 struct dhcp_netid netid;
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100849 struct dhcp_vendor *next;
850};
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000851
Simon Kelleycdeda282006-03-16 20:16:06 +0000852struct dhcp_mac {
853 unsigned int mask;
854 int hwaddr_len, hwaddr_type;
855 unsigned char hwaddr[DHCP_CHADDR_MAX];
856 struct dhcp_netid netid;
857 struct dhcp_mac *next;
858};
859
Simon Kelley832af0b2007-01-21 20:01:28 +0000860struct dhcp_bridge {
861 char iface[IF_NAMESIZE];
862 struct dhcp_bridge *alias, *next;
863};
Simon Kelley832af0b2007-01-21 20:01:28 +0000864
Simon Kelley9009d742008-11-14 20:04:27 +0000865struct cond_domain {
Simon Kelley48fd1c42013-04-25 09:49:38 +0100866 char *domain, *prefix;
Simon Kelley9009d742008-11-14 20:04:27 +0000867 struct in_addr start, end;
Simon Kelleyd74942a2012-02-07 20:51:56 +0000868 struct in6_addr start6, end6;
Simon Kelley6b2b5642018-03-10 18:12:04 +0000869 int is6, indexed;
Simon Kelley9009d742008-11-14 20:04:27 +0000870 struct cond_domain *next;
Simon Kelley1f776932012-12-16 19:46:08 +0000871};
Simon Kelley9009d742008-11-14 20:04:27 +0000872
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000873#ifdef OPTION6_PREFIX_CLASS
874struct prefix_class {
875 int class;
Simon Kelleyc6309242013-03-07 20:59:28 +0000876 struct dhcp_netid tag;
Simon Kelleya6ebfac2013-03-06 20:52:35 +0000877 struct prefix_class *next;
878};
879#endif
880
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100881struct ra_interface {
882 char *name;
Vladislav Grishenko6ec5f5c2017-04-24 22:34:45 +0100883 char *mtu_name;
David Flamand005c46d2017-04-11 11:49:54 +0100884 int interval, lifetime, prio, mtu;
Simon Kelleyc4cd95d2013-10-10 20:58:11 +0100885 struct ra_interface *next;
886};
887
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000888struct dhcp_context {
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100889 unsigned int lease_time, addr_epoch;
Simon Kelley0a852542005-03-23 20:28:59 +0000890 struct in_addr netmask, broadcast;
891 struct in_addr local, router;
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100892 struct in_addr start, end; /* range of available addresses */
Simon Kelleyc72daea2012-01-05 21:33:27 +0000893#ifdef HAVE_DHCP6
894 struct in6_addr start6, end6; /* range of available addresses */
Simon Kelleye44ddca2012-02-18 17:08:50 +0000895 struct in6_addr local6;
Simon Kelley353ae4d2012-03-19 20:07:51 +0000896 int prefix, if_index;
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100897 unsigned int valid, preferred, saved_valid;
898 time_t ra_time, ra_short_period_start, address_lost_time;
Simon Kelley1f776932012-12-16 19:46:08 +0000899 char *template_interface;
Simon Kelleyc72daea2012-01-05 21:33:27 +0000900#endif
Simon Kelley0a852542005-03-23 20:28:59 +0000901 int flags;
Simon Kelleycdeda282006-03-16 20:16:06 +0000902 struct dhcp_netid netid, *filter;
Simon Kelley36717ee2004-09-20 19:20:58 +0100903 struct dhcp_context *next, *current;
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000904};
905
Simon Kelley89500e32013-09-20 16:29:20 +0100906#define CONTEXT_STATIC (1u<<0)
907#define CONTEXT_NETMASK (1u<<1)
908#define CONTEXT_BRDCAST (1u<<2)
909#define CONTEXT_PROXY (1u<<3)
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100910#define CONTEXT_RA_ROUTER (1u<<4)
Simon Kelley89500e32013-09-20 16:29:20 +0100911#define CONTEXT_RA_DONE (1u<<5)
912#define CONTEXT_RA_NAME (1u<<6)
913#define CONTEXT_RA_STATELESS (1u<<7)
914#define CONTEXT_DHCP (1u<<8)
915#define CONTEXT_DEPRECATE (1u<<9)
916#define CONTEXT_TEMPLATE (1u<<10) /* create contexts using addresses */
917#define CONTEXT_CONSTRUCTED (1u<<11)
918#define CONTEXT_GC (1u<<12)
919#define CONTEXT_RA (1u<<13)
920#define CONTEXT_CONF_USED (1u<<14)
921#define CONTEXT_USED (1u<<15)
Simon Kelley376d48c2013-11-13 13:04:30 +0000922#define CONTEXT_OLD (1u<<16)
923#define CONTEXT_V6 (1u<<17)
Neil Jerram2fd5bc92015-06-10 22:13:06 +0100924#define CONTEXT_RA_OFF_LINK (1u<<18)
Simon Kelleyef1a94a2013-07-26 13:59:03 +0100925
Simon Kelley3d8df262005-08-29 12:19:27 +0100926struct ping_result {
927 struct in_addr addr;
928 time_t time;
Simon Kelley7de060b2011-08-26 17:24:52 +0100929 unsigned int hash;
Simon Kelley3d8df262005-08-29 12:19:27 +0100930 struct ping_result *next;
931};
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000932
Simon Kelley832af0b2007-01-21 20:01:28 +0000933struct tftp_file {
934 int refcount, fd;
935 off_t size;
Simon Kelley5aabfc72007-08-29 11:24:47 +0100936 dev_t dev;
937 ino_t inode;
Simon Kelley832af0b2007-01-21 20:01:28 +0000938 char filename[];
939};
940
941struct tftp_transfer {
942 int sockfd;
943 time_t timeout;
944 int backoff;
Simon Kelley9e038942008-05-30 20:06:34 +0100945 unsigned int block, blocksize, expansion;
946 off_t offset;
Simon Kelley28866e92011-02-14 20:19:14 +0000947 union mysockaddr peer;
Simon Kelley9e038942008-05-30 20:06:34 +0100948 char opt_blocksize, opt_transize, netascii, carrylf;
Simon Kelley832af0b2007-01-21 20:01:28 +0000949 struct tftp_file *file;
950 struct tftp_transfer *next;
951};
952
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100953struct addr_list {
954 struct in_addr addr;
955 struct addr_list *next;
956};
957
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100958struct tftp_prefix {
959 char *interface;
960 char *prefix;
Stefan Tomanek30d08792015-03-31 22:32:11 +0100961 int missing;
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100962 struct tftp_prefix *next;
963};
964
Simon Kelleyff7eea22013-09-04 18:01:38 +0100965struct dhcp_relay {
Simon Kelleycc921df2019-01-02 22:48:59 +0000966 union all_addr local, server;
Simon Kelleyff7eea22013-09-04 18:01:38 +0100967 char *interface; /* Allowable interface for replies from server, and dest for IPv6 multicast */
968 int iface_index; /* working - interface in which requests arrived, for return */
969 struct dhcp_relay *current, *next;
970};
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100971
Simon Kelley5aabfc72007-08-29 11:24:47 +0100972extern struct daemon {
Simon Kelley3be34542004-09-11 19:12:13 +0100973 /* datastuctures representing the command-line and
974 config file arguments. All set (including defaults)
975 in option.c */
976
Petr Menšík24b87602018-10-24 22:30:18 +0100977 unsigned int options[OPTION_SIZE];
Simon Kelley3be34542004-09-11 19:12:13 +0100978 struct resolvc default_resolv, *resolv_files;
Simon Kelley9009d742008-11-14 20:04:27 +0000979 time_t last_resolv;
Simon Kelley7b1eae42014-02-20 13:43:28 +0000980 char *servers_file;
Simon Kelley0a852542005-03-23 20:28:59 +0000981 struct mx_srv_record *mxnames;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100982 struct naptr *naptr;
Simon Kelley9f7f3b12012-05-28 21:39:57 +0100983 struct txt_record *txt, *rr;
Simon Kelley832af0b2007-01-21 20:01:28 +0000984 struct ptr_record *ptr;
Simon Kelleye759d422012-03-16 13:18:57 +0000985 struct host_record *host_records, *host_records_tail;
Simon Kelley9009d742008-11-14 20:04:27 +0000986 struct cname *cnames;
Simon Kelley4f7b3042012-11-28 21:27:02 +0000987 struct auth_zone *auth_zones;
Simon Kelleyf2621c72007-04-29 19:47:21 +0100988 struct interface_name *int_names;
Simon Kelley3be34542004-09-11 19:12:13 +0100989 char *mxtarget;
Ed Bardsleya7369be2015-08-05 21:17:18 +0100990 struct mysubnet *add_subnet4;
991 struct mysubnet *add_subnet6;
992 char *lease_file;
Simon Kelley9e038942008-05-30 20:06:34 +0100993 char *username, *groupname, *scriptuser;
Simon Kelleyc72daea2012-01-05 21:33:27 +0000994 char *luascript;
Simon Kelley429798f2012-12-10 20:45:53 +0000995 char *authserver, *hostmaster;
996 struct iname *authinterface;
Simon Kelleye1ff4192012-12-09 17:08:47 +0000997 struct name_list *secondary_forward_server;
Simon Kelley1a6bca82008-07-11 11:11:42 +0100998 int group_set, osport;
Simon Kelley3be34542004-09-11 19:12:13 +0100999 char *domain_suffix;
Simon Kelley2bb73af2013-04-24 17:38:19 +01001000 struct cond_domain *cond_domain, *synth_domains;
Simon Kelley3be34542004-09-11 19:12:13 +01001001 char *runfile;
Simon Kelley7cebd202006-05-06 14:13:33 +01001002 char *lease_change_command;
Simon Kelley2937f8a2013-07-29 19:49:07 +01001003 struct iname *if_names, *if_addrs, *if_except, *dhcp_except, *auth_peers, *tftp_interfaces;
Glen Huang32fc6db2014-12-27 15:28:12 +00001004 struct bogus_addr *bogus_addr, *ignore_addr;
Simon Kelley3be34542004-09-11 19:12:13 +01001005 struct server *servers;
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +00001006 struct ipsets *ipsets;
Simon Kelley849a8352006-06-09 21:02:31 +01001007 int log_fac; /* log facility */
Simon Kelleyf2621c72007-04-29 19:47:21 +01001008 char *log_file; /* optional log file */
1009 int max_logs; /* queue limit */
Simon Kelley208b65c2006-08-05 21:41:37 +01001010 int cachesize, ftabsize;
Hans Dedecker926332a2016-01-23 10:48:12 +00001011 int port, query_port, min_port, max_port;
Simon Kelley832e47b2016-02-24 21:24:45 +00001012 unsigned long local_ttl, neg_ttl, max_ttl, min_cache_ttl, max_cache_ttl, auth_ttl, dhcp_ttl, use_dhcp_ttl;
Simon Kelley33702ab2015-12-28 23:17:15 +00001013 char *dns_client_id;
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001014 struct hostsfile *addn_hosts;
Simon Kelley1f776932012-12-16 19:46:08 +00001015 struct dhcp_context *dhcp, *dhcp6;
Simon Kelleyc4cd95d2013-10-10 20:58:11 +01001016 struct ra_interface *ra_interfaces;
Simon Kelley3be34542004-09-11 19:12:13 +01001017 struct dhcp_config *dhcp_conf;
Simon Kelley3634c542012-02-08 14:22:37 +00001018 struct dhcp_opt *dhcp_opts, *dhcp_match, *dhcp_opts6, *dhcp_match6;
Simon Kelleyc8226202018-08-08 23:46:03 +01001019 struct dhcp_match_name *dhcp_name_match;
Simon Kelley3be34542004-09-11 19:12:13 +01001020 struct dhcp_vendor *dhcp_vendors;
Simon Kelleycdeda282006-03-16 20:16:06 +00001021 struct dhcp_mac *dhcp_macs;
Simon Kelley26128d22004-11-14 16:43:54 +00001022 struct dhcp_boot *boot_config;
Simon Kelley7622fc02009-06-04 20:32:05 +01001023 struct pxe_service *pxe_services;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001024 struct tag_if *tag_if;
1025 struct addr_list *override_relays;
Simon Kelleyff7eea22013-09-04 18:01:38 +01001026 struct dhcp_relay *relay4, *relay6;
Floris Bos503c6092017-04-09 23:07:13 +01001027 struct delay_config *delay_conf;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001028 int override;
Simon Kelley1f15b812009-10-13 17:49:32 +01001029 int enable_pxe;
Simon Kelley1f776932012-12-16 19:46:08 +00001030 int doing_ra, doing_dhcp6;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001031 struct dhcp_netid_list *dhcp_ignore, *dhcp_ignore_names, *dhcp_gen_names;
1032 struct dhcp_netid_list *force_broadcast, *bootp_dynamic;
Simon Kelley70d18732015-01-31 19:59:29 +00001033 struct hostsfile *dhcp_hosts_file, *dhcp_opts_file, *dynamic_dirs;
Simon Kelleybec366b2016-02-24 22:03:26 +00001034 int dhcp_max, tftp_max, tftp_mtu;
Simon Kelley9e038942008-05-30 20:06:34 +01001035 int dhcp_server_port, dhcp_client_port;
Simon Kelley824af852008-02-12 20:43:05 +00001036 int start_tftp_port, end_tftp_port;
Simon Kelley3be34542004-09-11 19:12:13 +01001037 unsigned int min_leasetime;
1038 struct doctor *doctors;
1039 unsigned short edns_pktsz;
Simon Kelley824af852008-02-12 20:43:05 +00001040 char *tftp_prefix;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001041 struct tftp_prefix *if_prefix; /* per-interface TFTP prefixes */
Simon Kelley8b372702012-03-09 17:45:10 +00001042 unsigned int duid_enterprise, duid_config_len;
1043 unsigned char *duid_config;
Simon Kelleyad094272012-08-10 17:10:54 +01001044 char *dbus_name;
Simon Kelley6b173352018-05-08 18:32:14 +01001045 char *dump_file;
1046 int dump_mask;
Simon Kelley4f7b3042012-11-28 21:27:02 +00001047 unsigned long soa_sn, soa_refresh, soa_retry, soa_expiry;
Julian Kornbergeraba8bbb2018-07-21 21:55:08 +01001048 u32 metrics[__METRIC_MAX];
Simon Kelleyc6309242013-03-07 20:59:28 +00001049#ifdef OPTION6_PREFIX_CLASS
1050 struct prefix_class *prefix_classes;
1051#endif
Simon Kelley0fc2f312014-01-08 10:26:58 +00001052#ifdef HAVE_DNSSEC
Simon Kelleyee415862014-02-11 11:07:22 +00001053 struct ds_config *ds;
Simon Kelleyf6e62e22015-03-01 18:17:54 +00001054 char *timestamp_file;
Simon Kelley0fc2f312014-01-08 10:26:58 +00001055#endif
Simon Kelley3be34542004-09-11 19:12:13 +01001056
1057 /* globally used stuff for DNS */
1058 char *packet; /* packet buffer */
Simon Kelley0a852542005-03-23 20:28:59 +00001059 int packet_buff_sz; /* size of above */
Simon Kelley3be34542004-09-11 19:12:13 +01001060 char *namebuff; /* MAXDNAME size buffer */
Simon Kelleyc3e0b9b2013-12-31 13:50:39 +00001061#ifdef HAVE_DNSSEC
1062 char *keyname; /* MAXDNAME size buffer */
Simon Kelley5107ace2014-02-23 10:48:32 +00001063 char *workspacename; /* ditto */
Simon Kelley373e9172017-12-01 22:40:56 +00001064 char *rr_status; /* flags for individual RRs */
1065 int rr_status_sz;
Simon Kelley6b173352018-05-08 18:32:14 +01001066 int dnssec_no_time_check;
1067 int back_to_the_future;
Simon Kelleyc3e0b9b2013-12-31 13:50:39 +00001068#endif
Simon Kelley1a6bca82008-07-11 11:11:42 +01001069 struct frec *frec_list;
Simon Kelley3be34542004-09-11 19:12:13 +01001070 struct serverfd *sfds;
Simon Kelley3d8df262005-08-29 12:19:27 +01001071 struct irec *interfaces;
Simon Kelley3be34542004-09-11 19:12:13 +01001072 struct listener *listeners;
1073 struct server *last_server;
Simon Kelley1f15b812009-10-13 17:49:32 +01001074 time_t forwardtime;
1075 int forwardcount;
Simon Kelleycdeda282006-03-16 20:16:06 +00001076 struct server *srv_save; /* Used for resend on DoD */
1077 size_t packet_len; /* " " */
Simon Kelley3927da42008-07-20 15:10:39 +01001078 struct randfd *rfd_save; /* " " */
Simon Kelley7622fc02009-06-04 20:32:05 +01001079 pid_t tcp_pids[MAX_PROCS];
Simon Kelleya799ca02018-10-18 19:35:29 +01001080 int tcp_pipes[MAX_PROCS];
1081 int pipe_to_parent;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001082 struct randfd randomsocks[RANDOM_SOCKS];
Simon Kelley316e2732010-01-22 20:16:09 +00001083 int v6pktinfo;
Simon Kelleyc8a80482014-03-05 14:29:54 +00001084 struct addrlist *interface_addrs; /* list of all addresses/prefix lengths associated with all local interfaces */
Simon Kelley25cf5e32015-01-09 15:53:03 +00001085 int log_id, log_display_id; /* ids of transactions for logging */
1086 union mysockaddr *log_source_addr;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001087
Simon Kelley3be34542004-09-11 19:12:13 +01001088 /* DHCP state */
Simon Kelley316e2732010-01-22 20:16:09 +00001089 int dhcpfd, helperfd, pxefd;
Simon Kelley04918052015-01-26 11:23:43 +00001090#ifdef HAVE_INOTIFY
1091 int inotifyfd;
1092#endif
Simon Kelley7622fc02009-06-04 20:32:05 +01001093#if defined(HAVE_LINUX_NETWORK)
Simon Kelley04918052015-01-26 11:23:43 +00001094 int netlinkfd;
Simon Kelley7622fc02009-06-04 20:32:05 +01001095#elif defined(HAVE_BSD_NETWORK)
Simon Kelley1ee9be42013-12-09 16:50:19 +00001096 int dhcp_raw_fd, dhcp_icmp_fd, routefd;
Simon Kelley0a852542005-03-23 20:28:59 +00001097#endif
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001098 struct iovec dhcp_packet;
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001099 char *dhcp_buff, *dhcp_buff2, *dhcp_buff3;
Simon Kelley3d8df262005-08-29 12:19:27 +01001100 struct ping_result *ping_results;
Simon Kelleycdeda282006-03-16 20:16:06 +00001101 FILE *lease_stream;
Simon Kelley832af0b2007-01-21 20:01:28 +00001102 struct dhcp_bridge *bridges;
Simon Kelleyc72daea2012-01-05 21:33:27 +00001103#ifdef HAVE_DHCP6
1104 int duid_len;
1105 unsigned char *duid;
1106 struct iovec outpacket;
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001107 int dhcp6fd, icmp6fd;
Simon Kelleyc72daea2012-01-05 21:33:27 +00001108#endif
Simon Kelley3d8df262005-08-29 12:19:27 +01001109 /* DBus stuff */
Simon Kelley3d8df262005-08-29 12:19:27 +01001110 /* void * here to avoid depending on dbus headers outside dbus.c */
1111 void *dbus;
Simon Kelley832af0b2007-01-21 20:01:28 +00001112#ifdef HAVE_DBUS
Simon Kelley3d8df262005-08-29 12:19:27 +01001113 struct watch *watches;
1114#endif
1115
Simon Kelley832af0b2007-01-21 20:01:28 +00001116 /* TFTP stuff */
Simon Kelleya9530962012-03-20 22:07:35 +00001117 struct tftp_transfer *tftp_trans, *tftp_done_trans;
Simon Kelley824af852008-02-12 20:43:05 +00001118
Simon Kelleyc72daea2012-01-05 21:33:27 +00001119 /* utility string buffer, hold max sized IP address as string */
1120 char *addrbuff;
Simon Kelley25cf5e32015-01-09 15:53:03 +00001121 char *addrbuff2; /* only allocated when OPT_EXTRALOG */
Simon Kelleyc72daea2012-01-05 21:33:27 +00001122
Simon Kelley6b173352018-05-08 18:32:14 +01001123#ifdef HAVE_DUMPFILE
1124 /* file for packet dumps. */
1125 int dumpfd;
1126#endif
Simon Kelley5aabfc72007-08-29 11:24:47 +01001127} *daemon;
Simon Kelley3be34542004-09-11 19:12:13 +01001128
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001129/* cache.c */
Simon Kelley5aabfc72007-08-29 11:24:47 +01001130void cache_init(void);
Simon Kelley45d8a242018-07-17 21:01:14 +01001131void next_uid(struct crec *crecp);
Simon Kelleycc921df2019-01-02 22:48:59 +00001132void log_query(unsigned int flags, char *name, union all_addr *addr, char *arg);
Simon Kelley19c51cf2014-03-18 22:38:30 +00001133char *record_source(unsigned int index);
Simon Kelley610e7822014-02-06 14:45:17 +00001134char *querystr(char *desc, unsigned short type);
Simon Kelleyb6f926f2018-08-21 17:46:52 +01001135int cache_find_non_terminal(char *name, time_t now);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001136struct crec *cache_find_by_addr(struct crec *crecp,
Simon Kelleycc921df2019-01-02 22:48:59 +00001137 union all_addr *addr, time_t now,
Simon Kelley12fae492014-02-04 22:03:06 +00001138 unsigned int prot);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001139struct crec *cache_find_by_name(struct crec *crecp,
Simon Kelley12fae492014-02-04 22:03:06 +00001140 char *name, time_t now, unsigned int prot);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001141void cache_end_insert(void);
1142void cache_start_insert(void);
Simon Kelleya799ca02018-10-18 19:35:29 +01001143int cache_recv_insert(time_t now, int fd);
Simon Kelleycc921df2019-01-02 22:48:59 +00001144struct crec *cache_insert(char *name, union all_addr *addr, unsigned short class,
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001145 time_t now, unsigned long ttl, unsigned short flags);
Simon Kelley7622fc02009-06-04 20:32:05 +01001146void cache_reload(void);
Simon Kelleycc921df2019-01-02 22:48:59 +00001147void cache_add_dhcp_entry(char *host_name, int prot, union all_addr *host_address, time_t ttd);
Simon Kelley7de060b2011-08-26 17:24:52 +01001148struct in_addr a_record_from_hosts(char *name, time_t now);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001149void cache_unhash_dhcp(void);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001150void dump_cache(time_t now);
Kevin Darbyshire-Bryant7ac9ae12016-09-09 20:52:08 +01001151#ifndef NO_ID
Simon Kelleyfec216d2014-03-27 20:54:34 +00001152int cache_make_stat(struct txt_record *t);
Kevin Darbyshire-Bryant7ac9ae12016-09-09 20:52:08 +01001153#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001154char *cache_get_name(struct crec *crecp);
Simon Kelleyd56a6042013-10-11 14:39:03 +01001155char *cache_get_cname_target(struct crec *crecp);
Simon Kelleyb75e9362012-12-07 11:50:41 +00001156struct crec *cache_enumerate(int init);
Simon Kelley70d18732015-01-31 19:59:29 +00001157int read_hostsfile(char *filename, unsigned int index, int cache_size,
1158 struct crec **rhash, int hashsz);
Simon Kelley98c098b2014-01-08 17:31:16 +00001159
1160/* blockdata.c */
Simon Kelley7b4ad2e2012-04-04 14:05:35 +01001161#ifdef HAVE_DNSSEC
Simon Kelley82e3f452014-01-31 21:05:48 +00001162void blockdata_init(void);
Simon Kelleyc2207682014-01-08 18:04:20 +00001163void blockdata_report(void);
Simon Kelley3a237152013-12-12 12:15:50 +00001164struct blockdata *blockdata_alloc(char *data, size_t len);
Simon Kelley86bec2d2014-01-13 21:31:20 +00001165void *blockdata_retrieve(struct blockdata *block, size_t len, void *data);
Simon Kelleya799ca02018-10-18 19:35:29 +01001166struct blockdata *blockdata_read(int fd, size_t len);
1167void blockdata_write(struct blockdata *block, size_t len, int fd);
Simon Kelley3a237152013-12-12 12:15:50 +00001168void blockdata_free(struct blockdata *blocks);
Simon Kelley7b4ad2e2012-04-04 14:05:35 +01001169#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001170
Simon Kelley2bb73af2013-04-24 17:38:19 +01001171/* domain.c */
1172char *get_domain(struct in_addr addr);
Simon Kelley2bb73af2013-04-24 17:38:19 +01001173char *get_domain6(struct in6_addr *addr);
Simon Kelleycc921df2019-01-02 22:48:59 +00001174int is_name_synthetic(int flags, char *name, union all_addr *addr);
1175int is_rev_synth(int flag, union all_addr *addr, char *name);
Simon Kelley2bb73af2013-04-24 17:38:19 +01001176
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001177/* rfc1035.c */
Giovanni Bajof53c79c2012-04-22 14:30:53 +02001178int extract_name(struct dns_header *header, size_t plen, unsigned char **pp,
1179 char *name, int isExtract, int extrabytes);
Giovanni Bajo32f82c62012-04-28 01:01:16 +02001180unsigned char *skip_name(unsigned char *ansp, struct dns_header *header, size_t plen, int extrabytes);
Giovanni Bajof53c79c2012-04-22 14:30:53 +02001181unsigned char *skip_questions(struct dns_header *header, size_t plen);
Simon Kelley5107ace2014-02-23 10:48:32 +00001182unsigned char *skip_section(unsigned char *ansp, int count, struct dns_header *header, size_t plen);
Simon Kelley572b41e2011-02-18 18:11:18 +00001183unsigned int extract_request(struct dns_header *header, size_t qlen,
Simon Kelleyc1bb8502004-08-11 18:40:17 +01001184 char *name, unsigned short *typep);
Simon Kelley572b41e2011-02-18 18:11:18 +00001185size_t setup_reply(struct dns_header *header, size_t qlen,
Simon Kelleycc921df2019-01-02 22:48:59 +00001186 union all_addr *addrp, unsigned int flags,
Rosen Penev50a28412017-06-27 22:27:02 +01001187 unsigned long ttl);
1188int extract_addresses(struct dns_header *header, size_t qlen, char *name,
1189 time_t now, char **ipsets, int is_sign, int check_rebind,
Simon Kelley373e9172017-12-01 22:40:56 +00001190 int no_cache_dnssec, int secure, int *doctored);
Simon Kelley572b41e2011-02-18 18:11:18 +00001191size_t answer_request(struct dns_header *header, char *limit, size_t qlen,
Simon Kelley83349b82014-02-10 21:02:01 +00001192 struct in_addr local_addr, struct in_addr local_netmask,
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001193 time_t now, int ad_reqd, int do_bit, int have_pseudoheader);
Simon Kelley572b41e2011-02-18 18:11:18 +00001194int check_for_bogus_wildcard(struct dns_header *header, size_t qlen, char *name,
Rosen Penev50a28412017-06-27 22:27:02 +01001195 struct bogus_addr *baddr, time_t now);
Glen Huang32fc6db2014-12-27 15:28:12 +00001196int check_for_ignored_address(struct dns_header *header, size_t qlen, struct bogus_addr *baddr);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001197int check_for_local_domain(char *name, time_t now);
Rosen Penev50a28412017-06-27 22:27:02 +01001198unsigned int questions_crc(struct dns_header *header, size_t plen, char *name);
Simon Kelley572b41e2011-02-18 18:11:18 +00001199size_t resize_packet(struct dns_header *header, size_t plen,
Simon Kelleycdeda282006-03-16 20:16:06 +00001200 unsigned char *pheader, size_t hlen);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001201int add_resource_record(struct dns_header *header, char *limit, int *truncp,
Simon Kelleyb75e9362012-12-07 11:50:41 +00001202 int nameoffset, unsigned char **pp, unsigned long ttl,
Simon Kelleye1ff4192012-12-09 17:08:47 +00001203 int *offset, unsigned short type, unsigned short class, char *format, ...);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001204unsigned char *skip_questions(struct dns_header *header, size_t plen);
1205int extract_name(struct dns_header *header, size_t plen, unsigned char **pp,
1206 char *name, int isExtract, int extrabytes);
Simon Kelleycc921df2019-01-02 22:48:59 +00001207int in_arpa_name_2_addr(char *namein, union all_addr *addrp);
Simon Kelleydc27e142013-10-16 13:09:53 +01001208int private_net(struct in_addr addr, int ban_localhost);
Simon Kelley4f7b3042012-11-28 21:27:02 +00001209
1210/* auth.c */
Simon Kelley4820dce2012-12-18 18:30:30 +00001211#ifdef HAVE_AUTH
Simon Kelley19b16892013-10-20 10:19:39 +01001212size_t answer_auth(struct dns_header *header, char *limit, size_t qlen,
Simon Kelleyfa14bec2015-12-20 17:12:16 +00001213 time_t now, union mysockaddr *peer_addr, int local_query,
1214 int do_bit, int have_pseudoheader);
Simon Kelleyb485ed92013-10-18 22:00:39 +01001215int in_zone(struct auth_zone *zone, char *name, char **cut);
Simon Kelley4820dce2012-12-18 18:30:30 +00001216#endif
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001217
Giovanni Bajof53c79c2012-04-22 14:30:53 +02001218/* dnssec.c */
Simon Kelleye1791f32018-10-06 23:23:23 +01001219size_t dnssec_generate_query(struct dns_header *header, unsigned char *end, char *name, int class, int type, int edns_pktsz);
Rosen Penev50a28412017-06-27 22:27:02 +01001220int dnssec_validate_by_ds(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname, int class);
Simon Kelleyc3e0b9b2013-12-31 13:50:39 +00001221int dnssec_validate_ds(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname, int class);
Simon Kelley9a31b682015-12-15 10:20:39 +00001222int dnssec_validate_reply(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname, int *class,
Simon Kelley373e9172017-12-01 22:40:56 +00001223 int check_unsigned, int *neganswer, int *nons);
Rosen Penev50a28412017-06-27 22:27:02 +01001224int dnskey_keytag(int alg, int flags, unsigned char *key, int keylen);
Simon Kelley613ad152014-02-25 23:02:28 +00001225size_t filter_rrsigs(struct dns_header *header, size_t plen);
Simon Kelley8a9be9e2014-01-25 23:17:21 +00001226unsigned char* hash_questions(struct dns_header *header, size_t plen, char *name);
Simon Kelley360f2512015-03-07 18:28:06 +00001227int setup_timestamp(void);
Giovanni Bajof53c79c2012-04-22 14:30:53 +02001228
Simon Kelleyad9c6f02017-10-27 22:13:49 +01001229/* crypto.c */
1230const struct nettle_hash *hash_find(char *name);
1231int hash_init(const struct nettle_hash *hash, void **ctxp, unsigned char **digestp);
Simon Kelleyad9c6f02017-10-27 22:13:49 +01001232int verify(struct blockdata *key_data, unsigned int key_len, unsigned char *sig, size_t sig_len,
1233 unsigned char *digest, size_t digest_len, int algo);
1234char *ds_digest_name(int digest);
1235char *algo_digest_name(int algo);
1236char *nsec3_digest_name(int digest);
1237
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001238/* util.c */
Simon Kelley1a6bca82008-07-11 11:11:42 +01001239void rand_init(void);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001240unsigned short rand16(void);
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001241u32 rand32(void);
Simon Kelley6586e832013-11-07 14:20:13 +00001242u64 rand64(void);
Rosen Penev50a28412017-06-27 22:27:02 +01001243int legal_hostname(char *name);
1244char *canonicalise(char *in, int *nomem);
Simon Kelley0549c732017-09-25 18:17:11 +01001245unsigned char *do_rfc1035_name(unsigned char *p, char *sval, char *limit);
Simon Kelley0a852542005-03-23 20:28:59 +00001246void *safe_malloc(size_t size);
Petr Menšík47b45b22018-08-15 18:17:00 +02001247void safe_strncpy(char *dest, const char *src, size_t size);
Simon Kelley1a6bca82008-07-11 11:11:42 +01001248void safe_pipe(int *fd, int read_noblock);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001249void *whine_malloc(size_t size);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001250int sa_len(union mysockaddr *addr);
1251int sockaddr_isequal(union mysockaddr *s1, union mysockaddr *s2);
Simon Kelleyc99df932012-10-12 13:39:04 +01001252int hostname_isequal(const char *a, const char *b);
Simon Kelleyb6f926f2018-08-21 17:46:52 +01001253int hostname_issubdomain(char *a, char *b);
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001254time_t dnsmasq_time(void);
Lung-Pin Changdc8a1b12014-07-02 10:48:05 +08001255int netmask_length(struct in_addr mask);
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001256int is_same_net(struct in_addr a, struct in_addr b, struct in_addr mask);
Simon Kelleyc72daea2012-01-05 21:33:27 +00001257int is_same_net6(struct in6_addr *a, struct in6_addr *b, int prefixlen);
Simon Kelley52b92f42012-01-22 16:05:15 +00001258u64 addr6part(struct in6_addr *addr);
1259void setaddr6part(struct in6_addr *addr, u64 host);
Simon Kelleyff841eb2015-03-11 21:36:30 +00001260int retry_send(ssize_t rc);
Simon Kelley0a852542005-03-23 20:28:59 +00001261void prettyprint_time(char *buf, unsigned int t);
Simon Kelley3d8df262005-08-29 12:19:27 +01001262int prettyprint_addr(union mysockaddr *addr, char *buf);
Simon Kelley0a852542005-03-23 20:28:59 +00001263int parse_hex(char *in, unsigned char *out, int maxlen,
Simon Kelleycdeda282006-03-16 20:16:06 +00001264 unsigned int *wildcard_mask, int *mac_type);
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001265int memcmp_masked(unsigned char *a, unsigned char *b, int len,
1266 unsigned int mask);
1267int expand_buf(struct iovec *iov, size_t size);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001268char *print_mac(char *buff, unsigned char *mac, int len);
Simon Kelley16972692006-10-16 20:04:18 +01001269int read_write(int fd, unsigned char *packet, int size, int rw);
Simon Kelley7cebd202006-05-06 14:13:33 +01001270
Simon Kelley49333cb2013-03-15 20:30:51 +00001271int wildcard_match(const char* wildcard, const char* match);
Neil Jerram70772c92014-06-11 21:22:40 +01001272int wildcard_matchn(const char* wildcard, const char* match, int num);
Simon Kelley49333cb2013-03-15 20:30:51 +00001273
Simon Kelleyf2621c72007-04-29 19:47:21 +01001274/* log.c */
Petr Menšík282eab72018-08-15 19:41:07 +02001275void die(char *message, char *arg1, int exit_code) ATTRIBUTE_NORETURN;
Simon Kelley1a6bca82008-07-11 11:11:42 +01001276int log_start(struct passwd *ent_pw, int errfd);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001277int log_reopen(char *log_file);
Rosen Penevcbd29e52017-06-27 22:29:51 +01001278
Simon Kelleyf2621c72007-04-29 19:47:21 +01001279void my_syslog(int priority, const char *format, ...);
Rosen Penevcbd29e52017-06-27 22:29:51 +01001280
Simon Kelleyb842bc92015-07-12 21:09:11 +01001281void set_log_writer(void);
1282void check_log_writer(int force);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001283void flush_log(void);
Simon Kelleyf2621c72007-04-29 19:47:21 +01001284
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001285/* option.c */
Simon Kelley5aabfc72007-08-29 11:24:47 +01001286void read_opts (int argc, char **argv, char *compile_opts);
Simon Kelley4cb1b322012-02-06 14:30:41 +00001287char *option_string(int prot, unsigned int opt, unsigned char *val,
1288 int opt_len, char *buf, int buf_len);
Simon Kelley824af852008-02-12 20:43:05 +00001289void reread_dhcp(void);
Simon Kelley7b1eae42014-02-20 13:43:28 +00001290void read_servers_file(void);
Simon Kelley28866e92011-02-14 20:19:14 +00001291void set_option_bool(unsigned int opt);
Simon Kelley2b5bae92012-06-26 16:55:23 +01001292void reset_option_bool(unsigned int opt);
Simon Kelley28866e92011-02-14 20:19:14 +00001293struct hostsfile *expand_filelist(struct hostsfile *list);
Simon Kelleyfaafb3f2012-09-20 14:17:39 +01001294char *parse_server(char *arg, union mysockaddr *addr,
1295 union mysockaddr *source_addr, char *interface, int *flags);
Simon Kelley70d18732015-01-31 19:59:29 +00001296int option_read_dynfile(char *file, int flags);
1297
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001298/* forward.c */
Simon Kelley1a6bca82008-07-11 11:11:42 +01001299void reply_query(int fd, int family, time_t now);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001300void receive_query(struct listener *listen, time_t now);
1301unsigned char *tcp_request(int confd, time_t now,
Simon Kelley4f7b3042012-11-28 21:27:02 +00001302 union mysockaddr *local_addr, struct in_addr netmask, int auth_dns);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001303void server_gone(struct server *server);
Simon Kelley3a237152013-12-12 12:15:50 +00001304struct frec *get_new_frec(time_t now, int *wait, int force);
Simon Kelley29689cf2012-03-22 14:01:00 +00001305int send_from(int fd, int nowild, char *packet, size_t len,
Simon Kelleycc921df2019-01-02 22:48:59 +00001306 union mysockaddr *to, union all_addr *source,
Simon Kelley50303b12012-04-04 22:13:17 +01001307 unsigned int iface);
Rosen Penev50a28412017-06-27 22:27:02 +01001308void resend_query(void);
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001309struct randfd *allocate_rfd(int family);
1310void free_rfd(struct randfd *rfd);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001311
1312/* network.c */
Simon Kelley7622fc02009-06-04 20:32:05 +01001313int indextoname(int fd, int index, char *name);
Simon Kelley9d6918d2017-10-13 17:55:09 +01001314int local_bind(int fd, union mysockaddr *addr, char *intname, unsigned int ifindex, int is_tcp);
Simon Kelley1a6bca82008-07-11 11:11:42 +01001315int random_sock(int family);
Simon Kelley824af852008-02-12 20:43:05 +00001316void pre_allocate_sfds(void);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001317int reload_servers(char *fname);
Simon Kelleyd68c2ca2014-02-18 22:30:30 +00001318void mark_servers(int flag);
1319void cleanup_servers(void);
1320void add_update_server(int flags,
1321 union mysockaddr *addr,
1322 union mysockaddr *source_addr,
1323 const char *interface,
1324 const char *domain);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001325void check_servers(void);
Simon Kelley115ac3e2013-05-20 11:28:32 +01001326int enumerate_interfaces(int reset);
Simon Kelley74c95c22011-10-19 09:33:39 +01001327void create_wildcard_listeners(void);
Rosen Penev50a28412017-06-27 22:27:02 +01001328void create_bound_listeners(int dienow);
Simon Kelleydc27e142013-10-16 13:09:53 +01001329void warn_bound_listeners(void);
Petr Menšíkad59f272017-03-17 17:22:19 +00001330void warn_wild_labels(void);
Simon Kelleyf7029f52013-11-21 15:09:09 +00001331void warn_int_names(void);
Simon Kelley74c95c22011-10-19 09:33:39 +01001332int is_dad_listeners(void);
Simon Kelleycc921df2019-01-02 22:48:59 +00001333int iface_check(int family, union all_addr *addr, char *name, int *auth);
1334int loopback_exception(int fd, int family, union all_addr *addr, char *name);
1335int label_exception(int index, int family, union all_addr *addr);
Simon Kelley7cebd202006-05-06 14:13:33 +01001336int fix_fd(int fd);
Simon Kelley22ce5502013-01-22 13:53:04 +00001337int tcp_interface(int fd, int af);
Simon Kelleyc72daea2012-01-05 21:33:27 +00001338int set_ipv6pktinfo(int fd);
Simon Kelley5d162f22012-12-20 14:55:46 +00001339#ifdef HAVE_DHCP6
1340void join_multicast(int dienow);
1341#endif
Simon Kelley1ee9be42013-12-09 16:50:19 +00001342#if defined(HAVE_LINUX_NETWORK) || defined(HAVE_BSD_NETWORK)
1343void newaddress(time_t now);
1344#endif
1345
Simon Kelley3be34542004-09-11 19:12:13 +01001346
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001347/* dhcp.c */
Simon Kelley7622fc02009-06-04 20:32:05 +01001348#ifdef HAVE_DHCP
Simon Kelley5aabfc72007-08-29 11:24:47 +01001349void dhcp_init(void);
Simon Kelley316e2732010-01-22 20:16:09 +00001350void dhcp_packet(time_t now, int pxe_fd);
Simon Kelley824af852008-02-12 20:43:05 +00001351struct dhcp_context *address_available(struct dhcp_context *context,
Rosen Penev50a28412017-06-27 22:27:02 +01001352 struct in_addr taddr,
Simon Kelley824af852008-02-12 20:43:05 +00001353 struct dhcp_netid *netids);
1354struct dhcp_context *narrow_context(struct dhcp_context *context,
1355 struct in_addr taddr,
1356 struct dhcp_netid *netids);
Simon Kelley5ce3e762017-04-28 22:14:20 +01001357struct ping_result *do_icmp_ping(time_t now, struct in_addr addr,
Simon Kelleyc7be0162017-05-10 22:21:53 +01001358 unsigned int hash, int loopback);
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001359int address_allocate(struct dhcp_context *context,
Simon Kelleycdeda282006-03-16 20:16:06 +00001360 struct in_addr *addrp, unsigned char *hwaddr, int hw_len,
Simon Kelleyc7be0162017-05-10 22:21:53 +01001361 struct dhcp_netid *netids, time_t now, int loopback);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001362void dhcp_read_ethers(void);
Simon Kelleydfa666f2004-08-02 18:27:27 +01001363struct dhcp_config *config_find_by_address(struct dhcp_config *configs, struct in_addr addr);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001364char *host_from_dns(struct in_addr addr);
Simon Kelley7622fc02009-06-04 20:32:05 +01001365#endif
Simon Kelley3be34542004-09-11 19:12:13 +01001366
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001367/* lease.c */
Simon Kelley7622fc02009-06-04 20:32:05 +01001368#ifdef HAVE_DHCP
Simon Kelley5aabfc72007-08-29 11:24:47 +01001369void lease_update_file(time_t now);
Simon Kelley353ae4d2012-03-19 20:07:51 +00001370void lease_update_dns(int force);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001371void lease_init(time_t now);
Simon Kelley52b92f42012-01-22 16:05:15 +00001372struct dhcp_lease *lease4_allocate(struct in_addr addr);
Simon Kelleyc72daea2012-01-05 21:33:27 +00001373#ifdef HAVE_DHCP6
Simon Kelley4cb1b322012-02-06 14:30:41 +00001374struct dhcp_lease *lease6_allocate(struct in6_addr *addrp, int lease_type);
1375struct dhcp_lease *lease6_find(unsigned char *clid, int clid_len,
1376 int lease_type, int iaid, struct in6_addr *addr);
Simon Kelleya6ebfac2013-03-06 20:52:35 +00001377void lease6_reset(void);
1378struct dhcp_lease *lease6_find_by_client(struct dhcp_lease *first, int lease_type, unsigned char *clid, int clid_len, int iaid);
Simon Kelley52b92f42012-01-22 16:05:15 +00001379struct dhcp_lease *lease6_find_by_addr(struct in6_addr *net, int prefix, u64 addr);
Simon Kelley07933802012-02-14 20:55:25 +00001380u64 lease_find_max_addr6(struct dhcp_context *context);
Simon Kelley353ae4d2012-03-19 20:07:51 +00001381void lease_ping_reply(struct in6_addr *sender, unsigned char *packet, char *interface);
Simon Kelley0c050242012-12-22 22:13:19 +00001382void lease_update_slaac(time_t now);
Simon Kelley89500e32013-09-20 16:29:20 +01001383void lease_set_iaid(struct dhcp_lease *lease, int iaid);
Simon Kelley3511a922013-11-07 10:28:11 +00001384void lease_make_duid(time_t now);
Simon Kelleyc72daea2012-01-05 21:33:27 +00001385#endif
Nicolas Cavallari64bcff12015-04-28 21:55:18 +01001386void lease_set_hwaddr(struct dhcp_lease *lease, const unsigned char *hwaddr,
1387 const unsigned char *clid, int hw_len, int hw_type,
1388 int clid_len, time_t now, int force);
1389void lease_set_hostname(struct dhcp_lease *lease, const char *name, int auth, char *domain, char *config_domain);
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001390void lease_set_expires(struct dhcp_lease *lease, unsigned int len, time_t now);
Simon Kelley353ae4d2012-03-19 20:07:51 +00001391void lease_set_interface(struct dhcp_lease *lease, int interface, time_t now);
Simon Kelleycdeda282006-03-16 20:16:06 +00001392struct dhcp_lease *lease_find_by_client(unsigned char *hwaddr, int hw_len, int hw_type,
Simon Kelley0a852542005-03-23 20:28:59 +00001393 unsigned char *clid, int clid_len);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001394struct dhcp_lease *lease_find_by_addr(struct in_addr addr);
Simon Kelley7de060b2011-08-26 17:24:52 +01001395struct in_addr lease_find_max_addr(struct dhcp_context *context);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001396void lease_prune(struct dhcp_lease *target, time_t now);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001397void lease_update_from_configs(void);
1398int do_script_run(time_t now);
1399void rerun_scripts(void);
Simon Kelley8b372702012-03-09 17:45:10 +00001400void lease_find_interfaces(time_t now);
Simon Kelleyceae00d2012-02-09 21:28:14 +00001401#ifdef HAVE_SCRIPT
1402void lease_add_extradata(struct dhcp_lease *lease, unsigned char *data,
1403 unsigned int len, int delim);
1404#endif
Simon Kelley7622fc02009-06-04 20:32:05 +01001405#endif
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001406
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001407/* rfc2131.c */
Simon Kelley7622fc02009-06-04 20:32:05 +01001408#ifdef HAVE_DHCP
Simon Kelley824af852008-02-12 20:43:05 +00001409size_t dhcp_reply(struct dhcp_context *context, char *iface_name, int int_index,
Simon Kelleyc7be0162017-05-10 22:21:53 +01001410 size_t sz, time_t now, int unicast_dest, int loopback,
Rosen Penev50a28412017-06-27 22:27:02 +01001411 int *is_inform, int pxe, struct in_addr fallback, time_t recvtime);
Simon Kelley9009d742008-11-14 20:04:27 +00001412unsigned char *extended_hwaddr(int hwtype, int hwlen, unsigned char *hwaddr,
1413 int clid_len, unsigned char *clid, int *len_out);
Simon Kelley7622fc02009-06-04 20:32:05 +01001414#endif
Simon Kelley3be34542004-09-11 19:12:13 +01001415
1416/* dnsmasq.c */
Simon Kelley7622fc02009-06-04 20:32:05 +01001417#ifdef HAVE_DHCP
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001418int make_icmp_sock(void);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001419int icmp_ping(struct in_addr addr);
Floris Bos503c6092017-04-09 23:07:13 +01001420int delay_dhcp(time_t start, int sec, int fd, uint32_t addr, unsigned short id);
Simon Kelley7622fc02009-06-04 20:32:05 +01001421#endif
Simon Kelley47a95162014-07-08 22:22:02 +01001422void queue_event(int event);
Simon Kelley353ae4d2012-03-19 20:07:51 +00001423void send_alarm(time_t event, time_t now);
Simon Kelleyc72daea2012-01-05 21:33:27 +00001424void send_event(int fd, int event, int data, char *msg);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001425void clear_cache_and_reload(time_t now);
Simon Kelley44a2a312004-03-10 20:04:35 +00001426
Simon Kelley0a852542005-03-23 20:28:59 +00001427/* netlink.c */
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001428#ifdef HAVE_LINUX_NETWORK
Simon Kelley5aabfc72007-08-29 11:24:47 +01001429void netlink_init(void);
Simon Kelleya0358e52014-06-07 13:38:48 +01001430void netlink_multicast(void);
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001431#endif
1432
1433/* bpf.c */
Simon Kelley824af852008-02-12 20:43:05 +00001434#ifdef HAVE_BSD_NETWORK
Simon Kelley5aabfc72007-08-29 11:24:47 +01001435void init_bpf(void);
1436void send_via_bpf(struct dhcp_packet *mess, size_t len,
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001437 struct in_addr iface_addr, struct ifreq *ifr);
Simon Kelley1ee9be42013-12-09 16:50:19 +00001438void route_init(void);
Simon Kelleya0358e52014-06-07 13:38:48 +01001439void route_sock(void);
Simon Kelley0a852542005-03-23 20:28:59 +00001440#endif
Simon Kelley3d8df262005-08-29 12:19:27 +01001441
Simon Kelley824af852008-02-12 20:43:05 +00001442/* bpf.c or netlink.c */
Simon Kelley28866e92011-02-14 20:19:14 +00001443int iface_enumerate(int family, void *parm, int (callback)());
Simon Kelley824af852008-02-12 20:43:05 +00001444
Simon Kelley3d8df262005-08-29 12:19:27 +01001445/* dbus.c */
1446#ifdef HAVE_DBUS
Simon Kelley5aabfc72007-08-29 11:24:47 +01001447char *dbus_init(void);
Simon Kelleyb842bc92015-07-12 21:09:11 +01001448void check_dbus_listeners(void);
1449void set_dbus_listeners(void);
Simon Kelley316e2732010-01-22 20:16:09 +00001450# ifdef HAVE_DHCP
Simon Kelley1f15b812009-10-13 17:49:32 +01001451void emit_dbus_signal(int action, struct dhcp_lease *lease, char *hostname);
Simon Kelley316e2732010-01-22 20:16:09 +00001452# endif
Simon Kelley3d8df262005-08-29 12:19:27 +01001453#endif
Simon Kelley16972692006-10-16 20:04:18 +01001454
Julian Kornbergercaf4d572018-07-21 21:45:03 +01001455/* ubus.c */
1456#ifdef HAVE_UBUS
1457void set_ubus_listeners(void);
1458void check_ubus_listeners(void);
1459void ubus_event_bcast(const char *type, const char *mac, const char *ip, const char *name, const char *interface);
1460#endif
1461
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +00001462/* ipset.c */
1463#ifdef HAVE_IPSET
1464void ipset_init(void);
Simon Kelleycc921df2019-01-02 22:48:59 +00001465int add_to_ipset(const char *setname, const union all_addr *ipaddr, int flags, int remove);
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +00001466#endif
1467
Simon Kelley16972692006-10-16 20:04:18 +01001468/* helper.c */
Simon Kelley00683012012-03-19 20:29:55 +00001469#if defined(HAVE_SCRIPT)
Simon Kelley1a6bca82008-07-11 11:11:42 +01001470int create_helper(int event_fd, int err_fd, uid_t uid, gid_t gid, long max_fd);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001471void helper_write(void);
1472void queue_script(int action, struct dhcp_lease *lease,
1473 char *hostname, time_t now);
Simon Kelleya9530962012-03-20 22:07:35 +00001474#ifdef HAVE_TFTP
1475void queue_tftp(off_t file_len, char *filename, union mysockaddr *peer);
1476#endif
Simon Kelley33702ab2015-12-28 23:17:15 +00001477void queue_arp(int action, unsigned char *mac, int maclen,
Simon Kelleycc921df2019-01-02 22:48:59 +00001478 int family, union all_addr *addr);
Simon Kelley16972692006-10-16 20:04:18 +01001479int helper_buf_empty(void);
Simon Kelley5aabfc72007-08-29 11:24:47 +01001480#endif
Simon Kelley832af0b2007-01-21 20:01:28 +00001481
1482/* tftp.c */
1483#ifdef HAVE_TFTP
Simon Kelley5aabfc72007-08-29 11:24:47 +01001484void tftp_request(struct listener *listen, time_t now);
Simon Kelleyb842bc92015-07-12 21:09:11 +01001485void check_tftp_listeners(time_t now);
Simon Kelleya9530962012-03-20 22:07:35 +00001486int do_tftp_script_run(void);
Simon Kelley832af0b2007-01-21 20:01:28 +00001487#endif
Simon Kelley7de060b2011-08-26 17:24:52 +01001488
1489/* conntrack.c */
1490#ifdef HAVE_CONNTRACK
Simon Kelleycc921df2019-01-02 22:48:59 +00001491int get_incoming_mark(union mysockaddr *peer_addr, union all_addr *local_addr,
Simon Kelley7de060b2011-08-26 17:24:52 +01001492 int istcp, unsigned int *markp);
1493#endif
Simon Kelleyc72daea2012-01-05 21:33:27 +00001494
Simon Kelley52b92f42012-01-22 16:05:15 +00001495/* dhcp6.c */
1496#ifdef HAVE_DHCP6
1497void dhcp6_init(void);
1498void dhcp6_packet(time_t now);
Simon Kelley6586e832013-11-07 14:20:13 +00001499struct dhcp_context *address6_allocate(struct dhcp_context *context, unsigned char *clid, int clid_len, int temp_addr,
Simon Kelleyc6309242013-03-07 20:59:28 +00001500 int iaid, int serial, struct dhcp_netid *netids, int plain_range, struct in6_addr *ans);
Simon Kelleyde92b472013-03-15 18:25:10 +00001501int config_valid(struct dhcp_config *config, struct dhcp_context *context, struct in6_addr *addr);
Simon Kelley52b92f42012-01-22 16:05:15 +00001502struct dhcp_context *address6_available(struct dhcp_context *context,
1503 struct in6_addr *taddr,
Simon Kelleyc6309242013-03-07 20:59:28 +00001504 struct dhcp_netid *netids,
1505 int plain_range);
Simon Kelley37c9cce2013-01-09 19:51:04 +00001506struct dhcp_context *address6_valid(struct dhcp_context *context,
1507 struct in6_addr *taddr,
Simon Kelleyc6309242013-03-07 20:59:28 +00001508 struct dhcp_netid *netids,
1509 int plain_range);
Simon Kelleyceae00d2012-02-09 21:28:14 +00001510struct dhcp_config *config_find_by_address6(struct dhcp_config *configs, struct in6_addr *net,
1511 int prefix, u64 addr);
Simon Kelley4cb1b322012-02-06 14:30:41 +00001512void make_duid(time_t now);
Simon Kelley1f776932012-12-16 19:46:08 +00001513void dhcp_construct_contexts(time_t now);
Simon Kelley8939c952013-09-25 11:49:34 +01001514void get_client_mac(struct in6_addr *client, int iface, unsigned char *mac,
Simon Kelley33702ab2015-12-28 23:17:15 +00001515 unsigned int *maclenp, unsigned int *mactypep, time_t now);
Simon Kelley52b92f42012-01-22 16:05:15 +00001516#endif
Simon Kelley8939c952013-09-25 11:49:34 +01001517
Simon Kelleyc72daea2012-01-05 21:33:27 +00001518/* rfc3315.c */
1519#ifdef HAVE_DHCP6
Simon Kelley1d0f91c2012-03-12 11:56:22 +00001520unsigned short dhcp6_reply(struct dhcp_context *context, int interface, char *iface_name,
Simon Kelleyc3a04082014-01-11 22:18:19 +00001521 struct in6_addr *fallback, struct in6_addr *ll_addr, struct in6_addr *ula_addr,
1522 size_t sz, struct in6_addr *client_addr, time_t now);
Simon Kelley33702ab2015-12-28 23:17:15 +00001523void relay_upstream6(struct dhcp_relay *relay, ssize_t sz, struct in6_addr *peer_address,
1524 u32 scope_id, time_t now);
Simon Kelleyff7eea22013-09-04 18:01:38 +01001525
1526unsigned short relay_reply6( struct sockaddr_in6 *peer, ssize_t sz, char *arrival_interface);
Simon Kelleyc72daea2012-01-05 21:33:27 +00001527#endif
Simon Kelley4cb1b322012-02-06 14:30:41 +00001528
1529/* dhcp-common.c */
Simon Kelleyceae00d2012-02-09 21:28:14 +00001530#ifdef HAVE_DHCP
Simon Kelley4cb1b322012-02-06 14:30:41 +00001531void dhcp_common_init(void);
1532ssize_t recv_dhcp_packet(int fd, struct msghdr *msg);
Rosen Penev50a28412017-06-27 22:27:02 +01001533struct dhcp_netid *run_tag_if(struct dhcp_netid *tags);
Simon Kelley4cb1b322012-02-06 14:30:41 +00001534struct dhcp_netid *option_filter(struct dhcp_netid *tags, struct dhcp_netid *context_tags,
1535 struct dhcp_opt *opts);
Rosen Penev50a28412017-06-27 22:27:02 +01001536int match_netid(struct dhcp_netid *check, struct dhcp_netid *pool, int tagnotneeded);
Simon Kelley4cb1b322012-02-06 14:30:41 +00001537char *strip_hostname(char *hostname);
1538void log_tags(struct dhcp_netid *netid, u32 xid);
Simon Kelley3634c542012-02-08 14:22:37 +00001539int match_bytes(struct dhcp_opt *o, unsigned char *p, int len);
Simon Kelleyceae00d2012-02-09 21:28:14 +00001540void dhcp_update_configs(struct dhcp_config *configs);
Simon Kelley40ef23b2012-03-13 21:59:28 +00001541void display_opts(void);
Simon Kelleybd08ae62013-04-19 10:22:06 +01001542int lookup_dhcp_opt(int prot, char *name);
1543int lookup_dhcp_len(int prot, int val);
Simon Kelley40ef23b2012-03-13 21:59:28 +00001544char *option_string(int prot, unsigned int opt, unsigned char *val,
1545 int opt_len, char *buf, int buf_len);
Simon Kelley89500e32013-09-20 16:29:20 +01001546struct dhcp_config *find_config(struct dhcp_config *configs,
1547 struct dhcp_context *context,
1548 unsigned char *clid, int clid_len,
1549 unsigned char *hwaddr, int hw_len,
1550 int hw_type, char *hostname);
1551int config_has_mac(struct dhcp_config *config, unsigned char *hwaddr, int len, int type);
Simon Kelley9380ba72012-04-16 14:41:56 +01001552#ifdef HAVE_LINUX_NETWORK
Simon Kelley3b3f4412013-10-11 16:33:28 +01001553char *whichdevice(void);
1554void bindtodevice(char *device, int fd);
Simon Kelley9380ba72012-04-16 14:41:56 +01001555#endif
Simon Kelley843c96b2012-02-27 17:42:38 +00001556# ifdef HAVE_DHCP6
Simon Kelley40ef23b2012-03-13 21:59:28 +00001557void display_opts6(void);
Simon Kelley843c96b2012-02-27 17:42:38 +00001558# endif
Simon Kelley1f776932012-12-16 19:46:08 +00001559void log_context(int family, struct dhcp_context *context);
Simon Kelleyff7eea22013-09-04 18:01:38 +01001560void log_relay(int family, struct dhcp_relay *relay);
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001561#endif
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001562
1563/* outpacket.c */
1564#ifdef HAVE_DHCP6
1565void end_opt6(int container);
Simon Kelleyfa785732016-07-22 20:56:01 +01001566void reset_counter(void);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001567int save_counter(int newval);
1568void *expand(size_t headroom);
1569int new_opt6(int opt);
1570void *put_opt6(void *data, size_t len);
1571void put_opt6_long(unsigned int val);
1572void put_opt6_short(unsigned int val);
1573void put_opt6_char(unsigned int val);
1574void put_opt6_string(char *s);
1575#endif
1576
1577/* radv.c */
1578#ifdef HAVE_DHCP6
1579void ra_init(time_t now);
Simon Kelley1f776932012-12-16 19:46:08 +00001580void icmp6_packet(time_t now);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001581time_t periodic_ra(time_t now);
Josh Soref730c6742017-02-06 16:14:04 +00001582void ra_start_unsolicited(time_t now, struct dhcp_context *context);
Simon Kelley353ae4d2012-03-19 20:07:51 +00001583#endif
1584
1585/* slaac.c */
1586#ifdef HAVE_DHCP6
Simon Kelleya9ab7322012-04-28 11:29:37 +01001587void slaac_add_addrs(struct dhcp_lease *lease, time_t now, int force);
Simon Kelley353ae4d2012-03-19 20:07:51 +00001588time_t periodic_slaac(time_t now, struct dhcp_lease *leases);
1589void slaac_ping_reply(struct in6_addr *sender, unsigned char *packet, char *interface, struct dhcp_lease *leases);
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001590#endif
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001591
1592/* loop.c */
1593#ifdef HAVE_LOOP
Rosen Penev50a28412017-06-27 22:27:02 +01001594void loop_send_probes(void);
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +01001595int detect_loop(char *query, int type);
1596#endif
1597
Simon Kelley193de4a2014-12-10 17:32:16 +00001598/* inotify.c */
Simon Kelley04918052015-01-26 11:23:43 +00001599#ifdef HAVE_INOTIFY
Rosen Penev50a28412017-06-27 22:27:02 +01001600void inotify_dnsmasq_init(void);
Simon Kelley5f4dc5c2015-01-20 20:51:02 +00001601int inotify_check(time_t now);
Simon Kelley70d18732015-01-31 19:59:29 +00001602void set_dynamic_inotify(int flag, int total_size, struct crec **rhash, int revhashsz);
Simon Kelley193de4a2014-12-10 17:32:16 +00001603#endif
Simon Kelleyb842bc92015-07-12 21:09:11 +01001604
1605/* poll.c */
1606void poll_reset(void);
1607int poll_check(int fd, short event);
1608void poll_listen(int fd, short event);
1609int do_poll(int timeout);
1610
Simon Kelleyc2bcd1e2015-12-15 17:25:21 +00001611/* rrfilter.c */
1612size_t rrfilter(struct dns_header *header, size_t plen, int mode);
1613u16 *rrfilter_desc(int type);
1614int expand_workspace(unsigned char ***wkspc, int *szp, int new);
1615
Simon Kelley1d030162015-12-21 14:17:06 +00001616/* edns0.c */
Simon Kelley5bb88f02015-12-21 16:23:47 +00001617unsigned char *find_pseudoheader(struct dns_header *header, size_t plen,
1618 size_t *len, unsigned char **p, int *is_sign, int *is_last);
Simon Kelley1d030162015-12-21 14:17:06 +00001619size_t add_pseudoheader(struct dns_header *header, size_t plen, unsigned char *limit,
Simon Kelleyc7f3bd22016-02-28 21:48:34 +00001620 unsigned short udp_sz, int optno, unsigned char *opt, size_t optlen, int set_do, int replace);
Simon Kelley33702ab2015-12-28 23:17:15 +00001621size_t add_do_bit(struct dns_header *header, size_t plen, unsigned char *limit);
1622size_t add_edns0_config(struct dns_header *header, size_t plen, unsigned char *limit,
1623 union mysockaddr *source, time_t now, int *check_subnet);
Simon Kelley1d030162015-12-21 14:17:06 +00001624int check_source(struct dns_header *header, size_t plen, unsigned char *pseudoheader, union mysockaddr *peer);
Simon Kelley11867dc2015-12-23 16:15:58 +00001625
1626/* arp.c */
Simon Kelley33702ab2015-12-28 23:17:15 +00001627int find_mac(union mysockaddr *addr, unsigned char *mac, int lazy, time_t now);
1628int do_arp_script_run(void);
Simon Kelley6b173352018-05-08 18:32:14 +01001629
1630/* dump.c */
1631#ifdef HAVE_DUMPFILE
1632void dump_init(void);
1633void dump_packet(int mask, void *packet, size_t len, union mysockaddr *src, union mysockaddr *dst);
1634#endif