]> git.ipfire.org Git - people/ms/dnsmasq.git/blame - src/dnsmasq.h
Fix FTBFS with Nettle-3.0.
[people/ms/dnsmasq.git] / src / dnsmasq.h
CommitLineData
c47e3ba4 1/* dnsmasq is Copyright (c) 2000-2014 Simon Kelley
824af85b 2
9e4abcb5
SK
3 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
824af85b
SK
5 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
9e4abcb5
SK
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
824af85b 12
73a08a24
SK
13 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/>.
9e4abcb5
SK
15*/
16
c47e3ba4 17#define COPYRIGHT "Copyright (c) 2000-2014 Simon Kelley"
9e4abcb5 18
1a6bca81 19#ifndef NO_LARGEFILE
9e038946 20/* Ensure we can use files >2GB (log files may grow this big) */
1a6bca81
SK
21# define _LARGEFILE_SOURCE 1
22# define _FILE_OFFSET_BITS 64
23#endif
9e038946 24
8ef5ada2
SK
25/* Get linux C library versions and define _GNU_SOURCE for kFreeBSD. */
26#if defined(__linux__) || defined(__GLIBC__)
572b41eb
SK
27# ifndef __ANDROID__
28# define _GNU_SOURCE
29# endif
9e038946
SK
30# include <features.h>
31#endif
32
316e2730
SK
33/* Need these defined early */
34#if defined(__sun) || defined(__sun__)
35# define _XPG4_2
36# define __EXTENSIONS__
37#endif
38
9e4abcb5 39/* get these before config.h for IPv6 stuff... */
44a2a316 40#include <sys/types.h>
1f15b81d 41#include <sys/socket.h>
c72daea8
SK
42
43#ifdef __APPLE__
44/* Define before netinet/in.h to select API. OSX Lion onwards. */
45# define __APPLE_USE_RFC_3542
46#endif
9e4abcb5
SK
47#include <netinet/in.h>
48
c72daea8 49/* Also needed before config.h. */
59353a6b
SK
50#include <getopt.h>
51
9e4abcb5 52#include "config.h"
c3a04081 53#include "ip6addr.h"
b8187c80 54
572b41eb
SK
55typedef unsigned char u8;
56typedef unsigned short u16;
57typedef unsigned int u32;
52b92f4d 58typedef unsigned long long u64;
572b41eb 59
28c62557
GB
60#define countof(x) (long)(sizeof(x) / sizeof(x[0]))
61#define MIN(a,b) ((a) < (b) ? (a) : (b))
62
c239f7de
SK
63#include "dns-protocol.h"
64#include "dhcp-protocol.h"
c72daea8 65#ifdef HAVE_DHCP6
c239f7de
SK
66#include "dhcp6-protocol.h"
67#include "radv-protocol.h"
c72daea8 68#endif
572b41eb 69
b8187c80 70#define gettext_noop(S) (S)
824af85b 71#ifndef LOCALEDIR
b8187c80
SK
72# define _(S) (S)
73#else
74# include <libintl.h>
75# include <locale.h>
76# define _(S) gettext(S)
77#endif
78
9e4abcb5
SK
79#include <arpa/inet.h>
80#include <sys/stat.h>
9e4abcb5 81#include <sys/ioctl.h>
824af85b 82#if defined(HAVE_SOLARIS_NETWORK)
316e2730 83# include <sys/sockio.h>
824af85b 84#endif
9e4abcb5 85#include <sys/select.h>
feba5c1d 86#include <sys/wait.h>
9e4abcb5 87#include <sys/time.h>
f2621c7f 88#include <sys/un.h>
8a911ccc 89#include <limits.h>
9e4abcb5 90#include <net/if.h>
316e2730
SK
91#if defined(HAVE_SOLARIS_NETWORK) && !defined(ifr_mtu)
92/* Some solaris net/if./h omit this. */
93# define ifr_mtu ifr_ifru.ifru_metric
94#endif
9e4abcb5
SK
95#include <unistd.h>
96#include <stdio.h>
97#include <string.h>
98#include <stdlib.h>
99#include <fcntl.h>
100#include <ctype.h>
101#include <signal.h>
9e038946 102#include <stddef.h>
9e4abcb5
SK
103#include <time.h>
104#include <errno.h>
105#include <pwd.h>
106#include <grp.h>
f6b7dc47 107#include <stdarg.h>
572b41eb 108#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__sun__) || defined (__sun) || defined (__ANDROID__)
44a2a316
SK
109# include <netinet/if_ether.h>
110#else
111# include <net/ethernet.h>
112#endif
9e4abcb5
SK
113#include <net/if_arp.h>
114#include <netinet/in_systm.h>
115#include <netinet/ip.h>
3be34541 116#include <netinet/ip_icmp.h>
5e9e0efb 117#include <sys/uio.h>
849a8357
SK
118#include <syslog.h>
119#include <dirent.h>
5e9e0efb 120#ifndef HAVE_LINUX_NETWORK
44a2a316 121# include <net/if_dl.h>
9e4abcb5 122#endif
5e9e0efb 123
824af85b 124#if defined(HAVE_LINUX_NETWORK)
5e9e0efb
SK
125#include <linux/capability.h>
126/* There doesn't seem to be a universally-available
9e038946 127 userpace header for these. */
5e9e0efb 128extern int capset(cap_user_header_t header, cap_user_data_t data);
9e038946
SK
129extern int capget(cap_user_header_t header, cap_user_data_t data);
130#define LINUX_CAPABILITY_VERSION_1 0x19980330
131#define LINUX_CAPABILITY_VERSION_2 0x20071026
1a6bca81 132#define LINUX_CAPABILITY_VERSION_3 0x20080522
9e038946 133
5e9e0efb 134#include <sys/prctl.h>
7622fc06 135#elif defined(HAVE_SOLARIS_NETWORK)
824af85b 136#include <priv.h>
5e9e0efb 137#endif
9e4abcb5 138
824af85b 139/* daemon is function in the C library.... */
5aabfc78
SK
140#define daemon dnsmasq_daemon
141
142/* Async event queue */
143struct event_desc {
c72daea8 144 int event, data, msg_sz;
5aabfc78
SK
145};
146
147#define EVENT_RELOAD 1
148#define EVENT_DUMP 2
149#define EVENT_ALARM 3
150#define EVENT_TERM 4
151#define EVENT_CHILD 5
152#define EVENT_REOPEN 6
153#define EVENT_EXITED 7
154#define EVENT_KILLED 8
155#define EVENT_EXEC_ERR 9
156#define EVENT_PIPE_ERR 10
9e038946 157#define EVENT_USER_ERR 11
1a6bca81
SK
158#define EVENT_CAP_ERR 12
159#define EVENT_PIDFILE 13
160#define EVENT_HUSER_ERR 14
161#define EVENT_GROUP_ERR 15
162#define EVENT_DIE 16
163#define EVENT_LOG_ERR 17
7622fc06 164#define EVENT_FORK_ERR 18
c72daea8 165#define EVENT_LUA_ERR 19
8b3ae2fd 166#define EVENT_TFTP_ERR 20
e98bd52e 167#define EVENT_INIT 21
a0358e5d 168#define EVENT_NEWADDR 22
5aabfc78
SK
169
170/* Exit codes. */
171#define EC_GOOD 0
172#define EC_BADCONF 1
173#define EC_BADNET 2
174#define EC_FILE 3
175#define EC_NOMEM 4
176#define EC_MISC 5
177#define EC_INIT_OFFSET 10
178
0a852541
SK
179/* Min buffer size: we check after adding each record, so there must be
180 memory for the largest packet, and the largest record so the
181 min for DNS is PACKETSZ+MAXDNAME+RRFIXEDSZ which is < 1000.
182 This might be increased is EDNS packet size if greater than the minimum.
cdeda28f
SK
183*/
184#define DNSMASQ_PACKETSZ PACKETSZ+MAXDNAME+RRFIXEDSZ
44a2a316 185
572b41eb 186/* Trust the compiler dead-code eliminator.... */
28866e95
SK
187#define option_bool(x) (((x) < 32) ? daemon->options & (1u << (x)) : daemon->options2 & (1u << ((x) - 32)))
188
189#define OPT_BOGUSPRIV 0
190#define OPT_FILTER 1
191#define OPT_LOG 2
192#define OPT_SELFMX 3
193#define OPT_NO_HOSTS 4
194#define OPT_NO_POLL 5
195#define OPT_DEBUG 6
196#define OPT_ORDER 7
197#define OPT_NO_RESOLV 8
198#define OPT_EXPAND 9
199#define OPT_LOCALMX 10
200#define OPT_NO_NEG 11
201#define OPT_NODOTS_LOCAL 12
202#define OPT_NOWILD 13
203#define OPT_ETHERS 14
204#define OPT_RESOLV_DOMAIN 15
205#define OPT_NO_FORK 16
206#define OPT_AUTHORITATIVE 17
207#define OPT_LOCALISE 18
208#define OPT_DBUS 19
209#define OPT_DHCP_FQDN 20
210#define OPT_NO_PING 21
211#define OPT_LEASE_RO 22
212#define OPT_ALL_SERVERS 23
213#define OPT_RELOAD 24
214#define OPT_LOCAL_REBIND 25
215#define OPT_TFTP_SECURE 26
216#define OPT_TFTP_NOBLOCK 27
217#define OPT_LOG_OPTS 28
218#define OPT_TFTP_APREF 29
219#define OPT_NO_OVERRIDE 30
220#define OPT_NO_REBIND 31
221#define OPT_ADD_MAC 32
237724c0 222#define OPT_DNSSEC_PROXY 33
7de060b0
SK
223#define OPT_CONSEC_ADDR 34
224#define OPT_CONNTRACK 35
c72daea8 225#define OPT_FQDN_UPDATE 36
c5ad4e79 226#define OPT_RA 37
61ce600b 227#define OPT_TFTP_LC 38
54dd393f 228#define OPT_CLEVERBIND 39
8bc4cece 229#define OPT_TFTP 40
6bd3a09f 230#define OPT_CLIENT_SUBNET 41
8c0b73d3
KDB
231#define OPT_QUIET_DHCP 42
232#define OPT_QUIET_DHCP6 43
233#define OPT_QUIET_RA 44
3a237152 234#define OPT_DNSSEC_VALID 45
e98bd52e 235#define OPT_DNSSEC_TIME 46
5b3bf921 236#define OPT_DNSSEC_DEBUG 47
00a5b5d4 237#define OPT_DNSSEC_NO_SIGN 48
c8a80487
SK
238#define OPT_LOCAL_SERVICE 49
239#define OPT_LAST 50
9e4abcb5 240
7622fc06
SK
241/* extra flags for my_syslog, we use a couple of facilities since they are known
242 not to occupy the same bits as priorities, no matter how syslog.h is set up. */
243#define MS_TFTP LOG_USER
244#define MS_DHCP LOG_DAEMON
245
9e4abcb5
SK
246struct all_addr {
247 union {
248 struct in_addr addr4;
249#ifdef HAVE_IPV6
250 struct in6_addr addr6;
251#endif
51ea3ca2 252 /* for log_query */
0fc2f313 253 unsigned int keytag;
51ea3ca2
SK
254 /* for cache_insert if RRSIG, DNSKEY, DS */
255 struct {
256 unsigned short class, type;
257 } dnssec;
9e4abcb5
SK
258 } addr;
259};
260
261struct bogus_addr {
262 struct in_addr addr;
263 struct bogus_addr *next;
264};
265
1cff166d
SK
266/* dns doctor param */
267struct doctor {
73a08a24 268 struct in_addr in, end, out, mask;
1cff166d
SK
269 struct doctor *next;
270};
271
0a852541
SK
272struct mx_srv_record {
273 char *name, *target;
3d8df260
SK
274 int issrv, srvport, priority, weight;
275 unsigned int offset;
0a852541 276 struct mx_srv_record *next;
de37951c
SK
277};
278
1a6bca81
SK
279struct naptr {
280 char *name, *replace, *regexp, *services, *flags;
281 unsigned int order, pref;
282 struct naptr *next;
283};
284
fec216df
SK
285#define TXT_STAT_CACHESIZE 1
286#define TXT_STAT_INSERTS 2
287#define TXT_STAT_EVICTIONS 3
288#define TXT_STAT_MISSES 4
289#define TXT_STAT_HITS 5
290#define TXT_STAT_AUTH 6
291#define TXT_STAT_SERVERS 7
292
0a852541 293struct txt_record {
28866e95
SK
294 char *name;
295 unsigned char *txt;
0a852541 296 unsigned short class, len;
fec216df 297 int stat;
0a852541 298 struct txt_record *next;
f6b7dc47
SK
299};
300
832af0ba
SK
301struct ptr_record {
302 char *name, *ptr;
303 struct ptr_record *next;
304};
305
9009d746
SK
306struct cname {
307 char *alias, *target;
308 struct cname *next;
376d48c7
SK
309};
310
ee415867
SK
311struct ds_config {
312 char *name, *digest;
313 int digestlen, class, algo, keytag, digest_type;
314 struct ds_config *next;
0fc2f313
SK
315};
316
376d48c7
SK
317#define ADDRLIST_LITERAL 1
318#define ADDRLIST_IPV6 2
319
320struct addrlist {
321 struct all_addr addr;
322 int flags, prefixlen;
323 struct addrlist *next;
9009d746
SK
324};
325
376d48c7
SK
326#define AUTH6 1
327#define AUTH4 2
328
4f7b304f
SK
329struct auth_zone {
330 char *domain;
376d48c7
SK
331 struct auth_name_list {
332 char *name;
333 int flags;
334 struct auth_name_list *next;
335 } *interface_names;
336 struct addrlist *subnet;
4f7b304f
SK
337 struct auth_zone *next;
338};
339
340
e759d426
SK
341struct host_record {
342 struct name_list {
343 char *name;
344 struct name_list *next;
345 } *names;
346 struct in_addr addr;
347#ifdef HAVE_IPV6
348 struct in6_addr addr6;
349#endif
350 struct host_record *next;
351};
352
f2621c7f
SK
353struct interface_name {
354 char *name; /* domain name */
355 char *intr; /* interface name */
f7029f5c 356 int family; /* AF_INET, AF_INET6 or zero for both */
376d48c7 357 struct addrlist *addr;
f2621c7f
SK
358 struct interface_name *next;
359};
360
9e4abcb5
SK
361union bigname {
362 char name[MAXDNAME];
363 union bigname *next; /* freelist */
364};
365
c3e0b9b6
SK
366struct blockdata {
367 struct blockdata *next;
7b4ad2eb
SK
368 unsigned char key[KEYBLOCK_LEN];
369};
370
9e4abcb5
SK
371struct crec {
372 struct crec *next, *prev, *hash_next;
cdbee9a4 373 /* union is 16 bytes when doing IPv6, 8 bytes on 32 bit machines without IPv6 */
fd9fa481
SK
374 union {
375 struct all_addr addr;
376 struct {
d56a604a
SK
377 union {
378 struct crec *cache;
379 struct interface_name *int_name;
380 } target;
3f7483e8 381 unsigned int uid; /* 0 if union is interface-name */
fd9fa481 382 } cname;
7b4ad2eb 383 struct {
3a237152 384 struct blockdata *keydata;
824202ef 385 unsigned short keylen, flags, keytag;
51ea3ca2
SK
386 unsigned char algo;
387 } key;
388 struct {
389 struct blockdata *keydata;
824202ef 390 unsigned short keylen, keytag;
7b4ad2eb 391 unsigned char algo;
51ea3ca2
SK
392 unsigned char digest;
393 } ds;
394 struct {
395 struct blockdata *keydata;
824202ef 396 unsigned short keylen, type_covered, keytag;
e7829aef 397 char algo;
51ea3ca2 398 } sig;
fd9fa481 399 } addr;
cdbee9a4 400 time_t ttd; /* time to die */
824202ef 401 /* used as class if DNSKEY/DS/RRSIG, index to source for F_HOSTS */
3f7483e8 402 unsigned int uid;
9e4abcb5
SK
403 unsigned short flags;
404 union {
405 char sname[SMALLDNAME];
406 union bigname *bname;
407 char *namep;
408 } name;
409};
410
28866e95
SK
411#define F_IMMORTAL (1u<<0)
412#define F_NAMEP (1u<<1)
413#define F_REVERSE (1u<<2)
414#define F_FORWARD (1u<<3)
415#define F_DHCP (1u<<4)
416#define F_NEG (1u<<5)
417#define F_HOSTS (1u<<6)
418#define F_IPV4 (1u<<7)
419#define F_IPV6 (1u<<8)
420#define F_BIGNAME (1u<<9)
421#define F_NXDOMAIN (1u<<10)
422#define F_CNAME (1u<<11)
7b4ad2eb 423#define F_DNSKEY (1u<<12)
28866e95 424#define F_CONFIG (1u<<13)
7b4ad2eb
SK
425#define F_DS (1u<<14)
426#define F_DNSSECOK (1u<<15)
427
28866e95
SK
428/* below here are only valid as args to log_query: cache
429 entries are limited to 16 bits */
430#define F_UPSTREAM (1u<<16)
431#define F_RRNAME (1u<<17)
432#define F_SERVER (1u<<18)
433#define F_QUERY (1u<<19)
7b4ad2eb 434#define F_NOERR (1u<<20)
4f7b304f 435#define F_AUTH (1u<<21)
0fc2f313
SK
436#define F_DNSSEC (1u<<22)
437#define F_KEYTAG (1u<<23)
438#define F_SECSTAT (1u<<24)
12fae49f 439#define F_NO_RR (1u<<25)
49752b90 440#define F_IPSET (1u<<26)
4f7b304f 441
19c51cfa
SK
442/* Values of uid in crecs with F_CONFIG bit set. */
443#define SRC_INTERFACE 0
444#define SRC_CONFIG 1
445#define SRC_HOSTS 2
446#define SRC_AH 3
447
9e4abcb5
SK
448
449/* struct sockaddr is not large enough to hold any address,
cdeda28f 450 and specifically not big enough to hold an IPv6 address.
9e4abcb5
SK
451 Blech. Roll our own. */
452union mysockaddr {
453 struct sockaddr sa;
454 struct sockaddr_in in;
7622fc06 455#if defined(HAVE_IPV6)
9e4abcb5
SK
456 struct sockaddr_in6 in6;
457#endif
458};
459
bad7b875
SK
460/* bits in flag param to IPv6 callbacks from iface_enumerate() */
461#define IFACE_TENTATIVE 1
462#define IFACE_DEPRECATED 2
4568a6f8 463#define IFACE_PERMANENT 4
bad7b875
SK
464
465
0a852541
SK
466#define SERV_FROM_RESOLV 1 /* 1 for servers from resolv, 0 for command line. */
467#define SERV_NO_ADDR 2 /* no server, this domain is local only */
468#define SERV_LITERAL_ADDRESS 4 /* addr is the answer, not the server */
5aabfc78
SK
469#define SERV_HAS_DOMAIN 8 /* server for one domain only */
470#define SERV_HAS_SOURCE 16 /* source address defined */
0a852541
SK
471#define SERV_FOR_NODOTS 32 /* server for names with no domain part only */
472#define SERV_WARNED_RECURSIVE 64 /* avoid warning spam */
3d8df260
SK
473#define SERV_FROM_DBUS 128 /* 1 if source is DBus */
474#define SERV_MARK 256 /* for mark-and-delete */
9e4abcb5 475#define SERV_TYPE (SERV_HAS_DOMAIN | SERV_FOR_NODOTS)
824af85b 476#define SERV_COUNTED 512 /* workspace for log code */
8ef5ada2
SK
477#define SERV_USE_RESOLV 1024 /* forward this domain in the normal way */
478#define SERV_NO_REBIND 2048 /* inhibit dns-rebind protection */
7b1eae4f 479#define SERV_FROM_FILE 4096 /* read from --servers-file */
9e4abcb5
SK
480
481struct serverfd {
482 int fd;
483 union mysockaddr source_addr;
824af85b 484 char interface[IF_NAMESIZE+1];
9e4abcb5
SK
485 struct serverfd *next;
486};
487
1a6bca81
SK
488struct randfd {
489 int fd;
490 unsigned short refcount, family;
491};
492
9e4abcb5
SK
493struct server {
494 union mysockaddr addr, source_addr;
824af85b 495 char interface[IF_NAMESIZE+1];
1697269c 496 struct serverfd *sfd;
9e4abcb5 497 char *domain; /* set if this server only handles a domain. */
feba5c1d 498 int flags, tcpfd;
824af85b 499 unsigned int queries, failed_queries;
9e4abcb5
SK
500 struct server *next;
501};
502
13d86c73
JD
503struct ipsets {
504 char **sets;
505 char *domain;
506 struct ipsets *next;
507};
508
9e4abcb5
SK
509struct irec {
510 union mysockaddr addr;
f6b7dc47 511 struct in_addr netmask; /* only valid for IPv4 */
08619211 512 int tftp_ok, dhcp_ok, mtu, done, warned, dad, dns_auth, index, multicast_done, found;
5d162f20 513 char *name;
9e4abcb5
SK
514 struct irec *next;
515};
516
44a2a316 517struct listener {
832af0ba 518 int fd, tcpfd, tftpfd, family;
52d4abf2 519 struct irec *iface; /* only sometimes valid for non-wildcard */
44a2a316
SK
520 struct listener *next;
521};
522
9e4abcb5
SK
523/* interface and address parms from command line. */
524struct iname {
525 char *name;
526 union mysockaddr addr;
4ce4f377 527 int used;
9e4abcb5
SK
528 struct iname *next;
529};
530
531/* resolv-file parms from command-line */
532struct resolvc {
533 struct resolvc *next;
3d8df260
SK
534 int is_default, logged;
535 time_t mtime;
9e4abcb5
SK
536 char *name;
537};
538
28866e95 539/* adn-hosts parms from command-line (also dhcp-hostsfile and dhcp-optsfile */
7622fc06
SK
540#define AH_DIR 1
541#define AH_INACTIVE 2
fd9fa481
SK
542struct hostsfile {
543 struct hostsfile *next;
7622fc06 544 int flags;
fd9fa481 545 char *fname;
19c51cfa 546 unsigned int index; /* matches to cache entries for logging */
fd9fa481
SK
547};
548
3a237152
SK
549
550/* DNSSEC status values. */
551#define STAT_SECURE 1
552#define STAT_INSECURE 2
553#define STAT_BOGUS 3
554#define STAT_NEED_DS 4
555#define STAT_NEED_KEY 5
5d3b87a4 556#define STAT_TRUNCATED 6
5107ace1 557#define STAT_SECURE_WILDCARD 7
00a5b5d4
SK
558#define STAT_NO_SIG 8
559#define STAT_NO_DS 9
560#define STAT_NEED_DS_NEG 10
561#define STAT_CHASE_CNAME 11
3a237152 562
28866e95
SK
563#define FREC_NOREBIND 1
564#define FREC_CHECKING_DISABLED 2
ed4c0767 565#define FREC_HAS_SUBNET 4
9d633048
SK
566#define FREC_DNSKEY_QUERY 8
567#define FREC_DS_QUERY 16
83349b8a 568#define FREC_AD_QUESTION 32
613ad15d
SK
569#define FREC_DO_QUESTION 64
570#define FREC_ADDED_PHEADER 128
00a5b5d4 571#define FREC_CHECK_NOSIGN 256
28866e95 572
8a9be9e4
SK
573#ifdef HAVE_DNSSEC
574#define HASH_SIZE 20 /* SHA-1 digest size */
575#else
576#define HASH_SIZE sizeof(int)
577#endif
578
9e4abcb5
SK
579struct frec {
580 union mysockaddr source;
44a2a316 581 struct all_addr dest;
832af0ba 582 struct server *sentto; /* NULL means free */
1a6bca81
SK
583 struct randfd *rfd4;
584#ifdef HAVE_IPV6
585 struct randfd *rfd6;
586#endif
dfa666f2 587 unsigned int iface;
9e4abcb5 588 unsigned short orig_id, new_id;
28866e95 589 int fd, forwardall, flags;
9e4abcb5 590 time_t time;
8a9be9e4
SK
591 unsigned char *hash[HASH_SIZE];
592#ifdef HAVE_DNSSEC
7fa836e1 593 int class, work_counter;
3a237152
SK
594 struct blockdata *stash; /* Saved reply, whilst we validate */
595 size_t stash_len;
596 struct frec *dependent; /* Query awaiting internally-generated DNSKEY or DS query */
597 struct frec *blocking_query; /* Query which is blocking us. */
598#endif
9e4abcb5
SK
599 struct frec *next;
600};
601
40ef23b5
SK
602/* flags in top of length field for DHCP-option tables */
603#define OT_ADDR_LIST 0x8000
604#define OT_RFC1035_NAME 0x4000
605#define OT_INTERNAL 0x2000
606#define OT_NAME 0x1000
607#define OT_CSTRING 0x0800
608#define OT_DEC 0x0400
23245c0c 609#define OT_TIME 0x0200
40ef23b5 610
1697269c
SK
611/* actions in the daemon->helper RPC */
612#define ACTION_DEL 1
613#define ACTION_OLD_HOSTNAME 2
614#define ACTION_OLD 3
615#define ACTION_ADD 4
a9530964 616#define ACTION_TFTP 5
1697269c 617
4cb1b320
SK
618#define LEASE_NEW 1 /* newly created */
619#define LEASE_CHANGED 2 /* modified */
620#define LEASE_AUX_CHANGED 4 /* CLID or expiry changed */
621#define LEASE_AUTH_NAME 8 /* hostname came from config, not from client */
622#define LEASE_USED 16 /* used this DHCPv6 transaction */
623#define LEASE_NA 32 /* IPv6 no-temporary lease */
624#define LEASE_TA 64 /* IPv6 temporary lease */
353ae4d2 625#define LEASE_HAVE_HWADDR 128 /* Have set hwaddress */
4cb1b320 626
9e4abcb5
SK
627struct dhcp_lease {
628 int clid_len; /* length of client identifier */
629 unsigned char *clid; /* clientid */
630 char *hostname, *fqdn; /* name from client-hostname option or config */
1697269c 631 char *old_hostname; /* hostname before it moved to another lease */
4cb1b320 632 int flags;
9e4abcb5 633 time_t expires; /* lease expiry */
5e9e0efb
SK
634#ifdef HAVE_BROKEN_RTC
635 unsigned int length;
636#endif
89500e31
SK
637 int hwaddr_len, hwaddr_type;
638 unsigned char hwaddr[DHCP_CHADDR_MAX];
1f15b81d 639 struct in_addr addr, override, giaddr;
316e2730
SK
640 unsigned char *extradata;
641 unsigned int extradata_len, extradata_size;
824af85b 642 int last_interface;
353ae4d2 643#ifdef HAVE_DHCP6
89500e31
SK
644 struct in6_addr addr6;
645 int iaid;
353ae4d2 646 struct slaac_address {
875b8160 647 struct in6_addr addr;
353ae4d2
SK
648 time_t ping_time;
649 int backoff; /* zero -> confirmed */
650 struct slaac_address *next;
651 } *slaac_address;
6f9aaa93 652 int vendorclass_count;
353ae4d2 653#endif
9e4abcb5
SK
654 struct dhcp_lease *next;
655};
656
a222641c
SK
657struct dhcp_netid {
658 char *net;
659 struct dhcp_netid *next;
660};
661
26128d27
SK
662struct dhcp_netid_list {
663 struct dhcp_netid *list;
664 struct dhcp_netid_list *next;
665};
1697269c 666
8ef5ada2
SK
667struct tag_if {
668 struct dhcp_netid_list *set;
669 struct dhcp_netid *tag;
670 struct tag_if *next;
671};
672
9009d746
SK
673struct hwaddr_config {
674 int hwaddr_len, hwaddr_type;
675 unsigned char hwaddr[DHCP_CHADDR_MAX];
676 unsigned int wildcard_mask;
677 struct hwaddr_config *next;
678};
679
9e4abcb5 680struct dhcp_config {
33820b7e 681 unsigned int flags;
9e4abcb5
SK
682 int clid_len; /* length of client identifier */
683 unsigned char *clid; /* clientid */
9009d746 684 char *hostname, *domain;
8ef5ada2 685 struct dhcp_netid_list *netid;
52b92f4d
SK
686#ifdef HAVE_DHCP6
687 struct in6_addr addr6;
688#endif
9e4abcb5 689 struct in_addr addr;
849a8357 690 time_t decline_time;
9009d746
SK
691 unsigned int lease_time;
692 struct hwaddr_config *hwaddr;
9e4abcb5
SK
693 struct dhcp_config *next;
694};
695
4cb1b320
SK
696#define have_config(config, mask) ((config) && ((config)->flags & (mask)))
697
0a852541
SK
698#define CONFIG_DISABLE 1
699#define CONFIG_CLID 2
0a852541
SK
700#define CONFIG_TIME 8
701#define CONFIG_NAME 16
702#define CONFIG_ADDR 32
0a852541 703#define CONFIG_NOCLID 128
849a8357
SK
704#define CONFIG_FROM_ETHERS 256 /* entry created by /etc/ethers */
705#define CONFIG_ADDR_HOSTS 512 /* address added by from /etc/hosts */
706#define CONFIG_DECLINED 1024 /* address declined by client */
5aabfc78 707#define CONFIG_BANK 2048 /* from dhcp hosts file */
52b92f4d 708#define CONFIG_ADDR6 4096
30393100 709#define CONFIG_WILDCARD 8192
33820b7e 710
9e4abcb5 711struct dhcp_opt {
cdeda28f 712 int opt, len, flags;
73a08a24
SK
713 union {
714 int encap;
715 unsigned int wildcard_mask;
716 unsigned char *vendor_class;
717 } u;
718 unsigned char *val;
26128d27 719 struct dhcp_netid *netid;
9e4abcb5 720 struct dhcp_opt *next;
a84fa1d0
SK
721};
722
cdeda28f
SK
723#define DHOPT_ADDR 1
724#define DHOPT_STRING 2
6b01084f 725#define DHOPT_ENCAPSULATE 4
73a08a24 726#define DHOPT_ENCAP_MATCH 8
6b01084f 727#define DHOPT_FORCE 16
824af85b 728#define DHOPT_BANK 32
73a08a24
SK
729#define DHOPT_ENCAP_DONE 64
730#define DHOPT_MATCH 128
731#define DHOPT_VENDOR 256
732#define DHOPT_HEX 512
7622fc06 733#define DHOPT_VENDOR_MATCH 1024
316e2730 734#define DHOPT_RFC3925 2048
7de060b0 735#define DHOPT_TAGOK 4096
4cb1b320 736#define DHOPT_ADDR6 8192
cdeda28f 737
26128d27 738struct dhcp_boot {
7de060b0 739 char *file, *sname, *tftp_sname;
26128d27
SK
740 struct in_addr next_server;
741 struct dhcp_netid *netid;
742 struct dhcp_boot *next;
743};
744
7622fc06
SK
745struct pxe_service {
746 unsigned short CSA, type;
751d6f4a 747 char *menu, *basename, *sname;
7622fc06
SK
748 struct in_addr server;
749 struct dhcp_netid *netid;
750 struct pxe_service *next;
751};
752
f2621c7f
SK
753#define MATCH_VENDOR 1
754#define MATCH_USER 2
755#define MATCH_CIRCUIT 3
756#define MATCH_REMOTE 4
757#define MATCH_SUBSCRIBER 5
758
759/* vendorclass, userclass, remote-id or cicuit-id */
a84fa1d0 760struct dhcp_vendor {
a5c72ab5
SK
761 int len, match_type;
762 unsigned int enterprise;
a222641c
SK
763 char *data;
764 struct dhcp_netid netid;
a84fa1d0
SK
765 struct dhcp_vendor *next;
766};
9e4abcb5 767
cdeda28f
SK
768struct dhcp_mac {
769 unsigned int mask;
770 int hwaddr_len, hwaddr_type;
771 unsigned char hwaddr[DHCP_CHADDR_MAX];
772 struct dhcp_netid netid;
773 struct dhcp_mac *next;
774};
775
832af0ba
SK
776struct dhcp_bridge {
777 char iface[IF_NAMESIZE];
778 struct dhcp_bridge *alias, *next;
779};
832af0ba 780
9009d746 781struct cond_domain {
48fd1c4d 782 char *domain, *prefix;
9009d746 783 struct in_addr start, end;
d74942a0
SK
784#ifdef HAVE_IPV6
785 struct in6_addr start6, end6;
786#endif
787 int is6;
9009d746 788 struct cond_domain *next;
1f776932 789};
9009d746 790
a6ebfacf
SK
791#ifdef OPTION6_PREFIX_CLASS
792struct prefix_class {
793 int class;
c630924d 794 struct dhcp_netid tag;
a6ebfacf
SK
795 struct prefix_class *next;
796};
797#endif
798
c4cd95df
SK
799struct ra_interface {
800 char *name;
801 int interval, lifetime, prio;
802 struct ra_interface *next;
803};
804
9e4abcb5 805struct dhcp_context {
feba5c1d 806 unsigned int lease_time, addr_epoch;
0a852541
SK
807 struct in_addr netmask, broadcast;
808 struct in_addr local, router;
a84fa1d0 809 struct in_addr start, end; /* range of available addresses */
c72daea8
SK
810#ifdef HAVE_DHCP6
811 struct in6_addr start6, end6; /* range of available addresses */
e44ddcac 812 struct in6_addr local6;
353ae4d2 813 int prefix, if_index;
ef1a94ab
SK
814 unsigned int valid, preferred, saved_valid;
815 time_t ra_time, ra_short_period_start, address_lost_time;
1f776932 816 char *template_interface;
c72daea8 817#endif
0a852541 818 int flags;
cdeda28f 819 struct dhcp_netid netid, *filter;
36717eee 820 struct dhcp_context *next, *current;
9e4abcb5
SK
821};
822
89500e31
SK
823#define CONTEXT_STATIC (1u<<0)
824#define CONTEXT_NETMASK (1u<<1)
825#define CONTEXT_BRDCAST (1u<<2)
826#define CONTEXT_PROXY (1u<<3)
7ea3d3fd 827#define CONTEXT_RA_ROUTER (1u<<4)
89500e31
SK
828#define CONTEXT_RA_DONE (1u<<5)
829#define CONTEXT_RA_NAME (1u<<6)
830#define CONTEXT_RA_STATELESS (1u<<7)
831#define CONTEXT_DHCP (1u<<8)
832#define CONTEXT_DEPRECATE (1u<<9)
833#define CONTEXT_TEMPLATE (1u<<10) /* create contexts using addresses */
834#define CONTEXT_CONSTRUCTED (1u<<11)
835#define CONTEXT_GC (1u<<12)
836#define CONTEXT_RA (1u<<13)
837#define CONTEXT_CONF_USED (1u<<14)
838#define CONTEXT_USED (1u<<15)
376d48c7
SK
839#define CONTEXT_OLD (1u<<16)
840#define CONTEXT_V6 (1u<<17)
ef1a94ab 841
3d8df260
SK
842struct ping_result {
843 struct in_addr addr;
844 time_t time;
7de060b0 845 unsigned int hash;
3d8df260
SK
846 struct ping_result *next;
847};
9e4abcb5 848
832af0ba
SK
849struct tftp_file {
850 int refcount, fd;
851 off_t size;
5aabfc78
SK
852 dev_t dev;
853 ino_t inode;
832af0ba
SK
854 char filename[];
855};
856
857struct tftp_transfer {
858 int sockfd;
859 time_t timeout;
860 int backoff;
9e038946
SK
861 unsigned int block, blocksize, expansion;
862 off_t offset;
28866e95 863 union mysockaddr peer;
9e038946 864 char opt_blocksize, opt_transize, netascii, carrylf;
832af0ba
SK
865 struct tftp_file *file;
866 struct tftp_transfer *next;
867};
868
8ef5ada2
SK
869struct addr_list {
870 struct in_addr addr;
871 struct addr_list *next;
872};
873
8ef5ada2
SK
874struct tftp_prefix {
875 char *interface;
876 char *prefix;
877 struct tftp_prefix *next;
878};
879
ff7eea27
SK
880struct dhcp_relay {
881 struct all_addr local, server;
882 char *interface; /* Allowable interface for replies from server, and dest for IPv6 multicast */
883 int iface_index; /* working - interface in which requests arrived, for return */
884 struct dhcp_relay *current, *next;
885};
8ef5ada2 886
5aabfc78 887extern struct daemon {
3be34541
SK
888 /* datastuctures representing the command-line and
889 config file arguments. All set (including defaults)
890 in option.c */
891
28866e95 892 unsigned int options, options2;
3be34541 893 struct resolvc default_resolv, *resolv_files;
9009d746 894 time_t last_resolv;
7b1eae4f 895 char *servers_file;
0a852541 896 struct mx_srv_record *mxnames;
1a6bca81 897 struct naptr *naptr;
9f7f3b12 898 struct txt_record *txt, *rr;
832af0ba 899 struct ptr_record *ptr;
e759d426 900 struct host_record *host_records, *host_records_tail;
9009d746 901 struct cname *cnames;
4f7b304f 902 struct auth_zone *auth_zones;
f2621c7f 903 struct interface_name *int_names;
3be34541 904 char *mxtarget;
ed4c0767
SK
905 int addr4_netmask;
906 int addr6_netmask;
3be34541 907 char *lease_file;
9e038946 908 char *username, *groupname, *scriptuser;
c72daea8 909 char *luascript;
429798fd
SK
910 char *authserver, *hostmaster;
911 struct iname *authinterface;
e1ff419c 912 struct name_list *secondary_forward_server;
1a6bca81 913 int group_set, osport;
3be34541 914 char *domain_suffix;
2bb73af7 915 struct cond_domain *cond_domain, *synth_domains;
3be34541 916 char *runfile;
7cebd20f 917 char *lease_change_command;
2937f8a0 918 struct iname *if_names, *if_addrs, *if_except, *dhcp_except, *auth_peers, *tftp_interfaces;
3be34541
SK
919 struct bogus_addr *bogus_addr;
920 struct server *servers;
13d86c73 921 struct ipsets *ipsets;
849a8357 922 int log_fac; /* log facility */
f2621c7f
SK
923 char *log_file; /* optional log file */
924 int max_logs; /* queue limit */
208b65c5 925 int cachesize, ftabsize;
1a6bca81 926 int port, query_port, min_port;
4f7b304f 927 unsigned long local_ttl, neg_ttl, max_ttl, max_cache_ttl, auth_ttl;
fd9fa481 928 struct hostsfile *addn_hosts;
1f776932 929 struct dhcp_context *dhcp, *dhcp6;
c4cd95df 930 struct ra_interface *ra_interfaces;
3be34541 931 struct dhcp_config *dhcp_conf;
3634c54e 932 struct dhcp_opt *dhcp_opts, *dhcp_match, *dhcp_opts6, *dhcp_match6;
3be34541 933 struct dhcp_vendor *dhcp_vendors;
cdeda28f 934 struct dhcp_mac *dhcp_macs;
26128d27 935 struct dhcp_boot *boot_config;
7622fc06 936 struct pxe_service *pxe_services;
8ef5ada2
SK
937 struct tag_if *tag_if;
938 struct addr_list *override_relays;
ff7eea27 939 struct dhcp_relay *relay4, *relay6;
8ef5ada2 940 int override;
1f15b81d 941 int enable_pxe;
1f776932 942 int doing_ra, doing_dhcp6;
8ef5ada2
SK
943 struct dhcp_netid_list *dhcp_ignore, *dhcp_ignore_names, *dhcp_gen_names;
944 struct dhcp_netid_list *force_broadcast, *bootp_dynamic;
28866e95 945 struct hostsfile *dhcp_hosts_file, *dhcp_opts_file;
824af85b 946 int dhcp_max, tftp_max;
9e038946 947 int dhcp_server_port, dhcp_client_port;
824af85b 948 int start_tftp_port, end_tftp_port;
3be34541
SK
949 unsigned int min_leasetime;
950 struct doctor *doctors;
951 unsigned short edns_pktsz;
824af85b 952 char *tftp_prefix;
8ef5ada2 953 struct tftp_prefix *if_prefix; /* per-interface TFTP prefixes */
8b372704
SK
954 unsigned int duid_enterprise, duid_config_len;
955 unsigned char *duid_config;
ad094275 956 char *dbus_name;
4f7b304f 957 unsigned long soa_sn, soa_refresh, soa_retry, soa_expiry;
c630924d
SK
958#ifdef OPTION6_PREFIX_CLASS
959 struct prefix_class *prefix_classes;
960#endif
0fc2f313 961#ifdef HAVE_DNSSEC
ee415867 962 struct ds_config *ds;
0fc2f313 963#endif
3be34541
SK
964
965 /* globally used stuff for DNS */
966 char *packet; /* packet buffer */
0a852541 967 int packet_buff_sz; /* size of above */
3be34541 968 char *namebuff; /* MAXDNAME size buffer */
c3e0b9b6
SK
969#ifdef HAVE_DNSSEC
970 char *keyname; /* MAXDNAME size buffer */
5107ace1 971 char *workspacename; /* ditto */
c3e0b9b6 972#endif
b485ed97 973 unsigned int local_answer, queries_forwarded, auth_answer;
1a6bca81 974 struct frec *frec_list;
3be34541 975 struct serverfd *sfds;
3d8df260 976 struct irec *interfaces;
3be34541
SK
977 struct listener *listeners;
978 struct server *last_server;
1f15b81d
SK
979 time_t forwardtime;
980 int forwardcount;
cdeda28f
SK
981 struct server *srv_save; /* Used for resend on DoD */
982 size_t packet_len; /* " " */
3927da46 983 struct randfd *rfd_save; /* " " */
7622fc06 984 pid_t tcp_pids[MAX_PROCS];
1a6bca81 985 struct randfd randomsocks[RANDOM_SOCKS];
316e2730 986 int v6pktinfo;
c8a80487 987 struct addrlist *interface_addrs; /* list of all addresses/prefix lengths associated with all local interfaces */
1a6bca81 988
3be34541 989 /* DHCP state */
316e2730 990 int dhcpfd, helperfd, pxefd;
7622fc06 991#if defined(HAVE_LINUX_NETWORK)
0a852541 992 int netlinkfd;
7622fc06 993#elif defined(HAVE_BSD_NETWORK)
1ee9be4c 994 int dhcp_raw_fd, dhcp_icmp_fd, routefd;
0a852541 995#endif
5e9e0efb 996 struct iovec dhcp_packet;
8ef5ada2 997 char *dhcp_buff, *dhcp_buff2, *dhcp_buff3;
3d8df260 998 struct ping_result *ping_results;
cdeda28f 999 FILE *lease_stream;
832af0ba 1000 struct dhcp_bridge *bridges;
c72daea8
SK
1001#ifdef HAVE_DHCP6
1002 int duid_len;
1003 unsigned char *duid;
1004 struct iovec outpacket;
c5ad4e79 1005 int dhcp6fd, icmp6fd;
c72daea8 1006#endif
3d8df260 1007 /* DBus stuff */
3d8df260
SK
1008 /* void * here to avoid depending on dbus headers outside dbus.c */
1009 void *dbus;
832af0ba 1010#ifdef HAVE_DBUS
3d8df260
SK
1011 struct watch *watches;
1012#endif
1013
832af0ba 1014 /* TFTP stuff */
a9530964 1015 struct tftp_transfer *tftp_trans, *tftp_done_trans;
824af85b 1016
c72daea8
SK
1017 /* utility string buffer, hold max sized IP address as string */
1018 char *addrbuff;
1019
5aabfc78 1020} *daemon;
3be34541 1021
9e4abcb5 1022/* cache.c */
5aabfc78 1023void cache_init(void);
28866e95 1024void log_query(unsigned int flags, char *name, struct all_addr *addr, char *arg);
19c51cfa 1025char *record_source(unsigned int index);
610e782a 1026char *querystr(char *desc, unsigned short type);
9e4abcb5
SK
1027struct crec *cache_find_by_addr(struct crec *crecp,
1028 struct all_addr *addr, time_t now,
12fae49f 1029 unsigned int prot);
9e4abcb5 1030struct crec *cache_find_by_name(struct crec *crecp,
12fae49f 1031 char *name, time_t now, unsigned int prot);
9e4abcb5
SK
1032void cache_end_insert(void);
1033void cache_start_insert(void);
fd9fa481
SK
1034struct crec *cache_insert(char *name, struct all_addr *addr,
1035 time_t now, unsigned long ttl, unsigned short flags);
7622fc06 1036void cache_reload(void);
4cb1b320 1037void cache_add_dhcp_entry(char *host_name, int prot, struct all_addr *host_address, time_t ttd);
7de060b0 1038struct in_addr a_record_from_hosts(char *name, time_t now);
9e4abcb5 1039void cache_unhash_dhcp(void);
5aabfc78 1040void dump_cache(time_t now);
fec216df 1041int cache_make_stat(struct txt_record *t);
9e4abcb5 1042char *cache_get_name(struct crec *crecp);
d56a604a 1043char *cache_get_cname_target(struct crec *crecp);
b75e9363 1044struct crec *cache_enumerate(int init);
98c098bf
SK
1045
1046/* blockdata.c */
7b4ad2eb 1047#ifdef HAVE_DNSSEC
82e3f45a 1048void blockdata_init(void);
c2207688 1049void blockdata_report(void);
3a237152 1050struct blockdata *blockdata_alloc(char *data, size_t len);
86bec2d3 1051void *blockdata_retrieve(struct blockdata *block, size_t len, void *data);
3a237152 1052void blockdata_free(struct blockdata *blocks);
7b4ad2eb 1053#endif
9e4abcb5 1054
2bb73af7
SK
1055/* domain.c */
1056char *get_domain(struct in_addr addr);
1057#ifdef HAVE_IPV6
1058char *get_domain6(struct in6_addr *addr);
1059#endif
1060int is_name_synthetic(int flags, char *name, struct all_addr *addr);
1061int is_rev_synth(int flag, struct all_addr *addr, char *name);
1062
9e4abcb5 1063/* rfc1035.c */
f53c79c0
GB
1064int extract_name(struct dns_header *header, size_t plen, unsigned char **pp,
1065 char *name, int isExtract, int extrabytes);
32f82c62 1066unsigned char *skip_name(unsigned char *ansp, struct dns_header *header, size_t plen, int extrabytes);
f53c79c0 1067unsigned char *skip_questions(struct dns_header *header, size_t plen);
5107ace1 1068unsigned char *skip_section(unsigned char *ansp, int count, struct dns_header *header, size_t plen);
572b41eb 1069unsigned int extract_request(struct dns_header *header, size_t qlen,
c1bb8504 1070 char *name, unsigned short *typep);
572b41eb 1071size_t setup_reply(struct dns_header *header, size_t qlen,
28866e95 1072 struct all_addr *addrp, unsigned int flags,
cdeda28f 1073 unsigned long local_ttl);
572b41eb 1074int extract_addresses(struct dns_header *header, size_t qlen, char *namebuff,
13d86c73 1075 time_t now, char **ipsets, int is_sign, int checkrebind,
6938f347 1076 int no_cache, int secure, int *doctored);
572b41eb 1077size_t answer_request(struct dns_header *header, char *limit, size_t qlen,
83349b8a 1078 struct in_addr local_addr, struct in_addr local_netmask,
613ad15d 1079 time_t now, int *ad_reqd, int *do_bit);
572b41eb 1080int check_for_bogus_wildcard(struct dns_header *header, size_t qlen, char *name,
9e4abcb5 1081 struct bogus_addr *addr, time_t now);
572b41eb 1082unsigned char *find_pseudoheader(struct dns_header *header, size_t plen,
832af0ba 1083 size_t *len, unsigned char **p, int *is_sign);
5aabfc78 1084int check_for_local_domain(char *name, time_t now);
572b41eb
SK
1085unsigned int questions_crc(struct dns_header *header, size_t plen, char *buff);
1086size_t resize_packet(struct dns_header *header, size_t plen,
cdeda28f 1087 unsigned char *pheader, size_t hlen);
572b41eb 1088size_t add_mac(struct dns_header *header, size_t plen, char *limit, union mysockaddr *l3);
ed4c0767 1089size_t add_source_addr(struct dns_header *header, size_t plen, char *limit, union mysockaddr *source);
3a237152
SK
1090#ifdef HAVE_DNSSEC
1091size_t add_do_bit(struct dns_header *header, size_t plen, char *limit);
1092#endif
ed4c0767 1093int check_source(struct dns_header *header, size_t plen, unsigned char *pseudoheader, union mysockaddr *peer);
4f7b304f 1094int add_resource_record(struct dns_header *header, char *limit, int *truncp,
b75e9363 1095 int nameoffset, unsigned char **pp, unsigned long ttl,
e1ff419c 1096 int *offset, unsigned short type, unsigned short class, char *format, ...);
4f7b304f
SK
1097unsigned char *skip_questions(struct dns_header *header, size_t plen);
1098int extract_name(struct dns_header *header, size_t plen, unsigned char **pp,
1099 char *name, int isExtract, int extrabytes);
1100int in_arpa_name_2_addr(char *namein, struct all_addr *addrp);
dc27e148 1101int private_net(struct in_addr addr, int ban_localhost);
4f7b304f
SK
1102
1103/* auth.c */
4820dce9 1104#ifdef HAVE_AUTH
19b16891
SK
1105size_t answer_auth(struct dns_header *header, char *limit, size_t qlen,
1106 time_t now, union mysockaddr *peer_addr, int local_query);
b485ed97 1107int in_zone(struct auth_zone *zone, char *name, char **cut);
4820dce9 1108#endif
9e4abcb5 1109
f53c79c0 1110/* dnssec.c */
60b68069 1111size_t dnssec_generate_query(struct dns_header *header, char *end, char *name, int class, int type, union mysockaddr *addr);
c3e0b9b6
SK
1112int dnssec_validate_by_ds(time_t now, struct dns_header *header, size_t n, char *name, char *keyname, int class);
1113int dnssec_validate_ds(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname, int class);
00a5b5d4
SK
1114int dnssec_validate_reply(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname, int *class, int *neganswer);
1115int dnssec_chase_cname(time_t now, struct dns_header *header, size_t plen, char *name, char *keyname);
0fc2f313 1116int dnskey_keytag(int alg, int flags, unsigned char *rdata, int rdlen);
613ad15d 1117size_t filter_rrsigs(struct dns_header *header, size_t plen);
8a9be9e4 1118unsigned char* hash_questions(struct dns_header *header, size_t plen, char *name);
f53c79c0 1119
9e4abcb5 1120/* util.c */
1a6bca81 1121void rand_init(void);
9e4abcb5 1122unsigned short rand16(void);
6586e835 1123u64 rand64(void);
1f15b81d
SK
1124int legal_hostname(char *c);
1125char *canonicalise(char *s, int *nomem);
3d8df260 1126unsigned char *do_rfc1035_name(unsigned char *p, char *sval);
0a852541 1127void *safe_malloc(size_t size);
1a6bca81 1128void safe_pipe(int *fd, int read_noblock);
5aabfc78 1129void *whine_malloc(size_t size);
9e4abcb5
SK
1130int sa_len(union mysockaddr *addr);
1131int sockaddr_isequal(union mysockaddr *s1, union mysockaddr *s2);
c99df938 1132int hostname_isequal(const char *a, const char *b);
5e9e0efb 1133time_t dnsmasq_time(void);
a84fa1d0 1134int is_same_net(struct in_addr a, struct in_addr b, struct in_addr mask);
c72daea8
SK
1135#ifdef HAVE_IPV6
1136int is_same_net6(struct in6_addr *a, struct in6_addr *b, int prefixlen);
52b92f4d
SK
1137u64 addr6part(struct in6_addr *addr);
1138void setaddr6part(struct in6_addr *addr, u64 host);
c72daea8 1139#endif
fd9fa481 1140int retry_send(void);
0a852541 1141void prettyprint_time(char *buf, unsigned int t);
3d8df260 1142int prettyprint_addr(union mysockaddr *addr, char *buf);
0a852541 1143int parse_hex(char *in, unsigned char *out, int maxlen,
cdeda28f 1144 unsigned int *wildcard_mask, int *mac_type);
5e9e0efb
SK
1145int memcmp_masked(unsigned char *a, unsigned char *b, int len,
1146 unsigned int mask);
1147int expand_buf(struct iovec *iov, size_t size);
5aabfc78 1148char *print_mac(char *buff, unsigned char *mac, int len);
1697269c 1149void bump_maxfd(int fd, int *max);
1697269c 1150int read_write(int fd, unsigned char *packet, int size, int rw);
7cebd20f 1151
49333cbd 1152int wildcard_match(const char* wildcard, const char* match);
70772c90 1153int wildcard_matchn(const char* wildcard, const char* match, int num);
49333cbd 1154
f2621c7f 1155/* log.c */
5aabfc78 1156void die(char *message, char *arg1, int exit_code);
1a6bca81 1157int log_start(struct passwd *ent_pw, int errfd);
5aabfc78 1158int log_reopen(char *log_file);
f2621c7f
SK
1159void my_syslog(int priority, const char *format, ...);
1160void set_log_writer(fd_set *set, int *maxfdp);
1161void check_log_writer(fd_set *set);
5aabfc78 1162void flush_log(void);
f2621c7f 1163
9e4abcb5 1164/* option.c */
5aabfc78 1165void read_opts (int argc, char **argv, char *compile_opts);
4cb1b320
SK
1166char *option_string(int prot, unsigned int opt, unsigned char *val,
1167 int opt_len, char *buf, int buf_len);
824af85b 1168void reread_dhcp(void);
7b1eae4f 1169void read_servers_file(void);
28866e95 1170void set_option_bool(unsigned int opt);
2b5bae9a 1171void reset_option_bool(unsigned int opt);
28866e95 1172struct hostsfile *expand_filelist(struct hostsfile *list);
faafb3f7
SK
1173char *parse_server(char *arg, union mysockaddr *addr,
1174 union mysockaddr *source_addr, char *interface, int *flags);
9e4abcb5
SK
1175
1176/* forward.c */
1a6bca81 1177void reply_query(int fd, int family, time_t now);
5aabfc78
SK
1178void receive_query(struct listener *listen, time_t now);
1179unsigned char *tcp_request(int confd, time_t now,
4f7b304f 1180 union mysockaddr *local_addr, struct in_addr netmask, int auth_dns);
5aabfc78 1181void server_gone(struct server *server);
3a237152 1182struct frec *get_new_frec(time_t now, int *wait, int force);
29689cfa 1183int send_from(int fd, int nowild, char *packet, size_t len,
c72daea8 1184 union mysockaddr *to, struct all_addr *source,
50303b19 1185 unsigned int iface);
3be34541 1186
9e4abcb5 1187/* network.c */
7622fc06 1188int indextoname(int fd, int index, char *name);
824af85b 1189int local_bind(int fd, union mysockaddr *addr, char *intname, int is_tcp);
1a6bca81 1190int random_sock(int family);
824af85b 1191void pre_allocate_sfds(void);
5aabfc78 1192int reload_servers(char *fname);
d68c2ca2
SK
1193void mark_servers(int flag);
1194void cleanup_servers(void);
1195void add_update_server(int flags,
1196 union mysockaddr *addr,
1197 union mysockaddr *source_addr,
1198 const char *interface,
1199 const char *domain);
5aabfc78 1200void check_servers(void);
115ac3e4 1201int enumerate_interfaces(int reset);
74c95c25
SK
1202void create_wildcard_listeners(void);
1203void create_bound_listeners(int die);
dc27e148 1204void warn_bound_listeners(void);
f7029f5c 1205void warn_int_names(void);
74c95c25 1206int is_dad_listeners(void);
4f7b304f 1207int iface_check(int family, struct all_addr *addr, char *name, int *auth_dns);
e25db1f2 1208int loopback_exception(int fd, int family, struct all_addr *addr, char *name);
3f2873d4 1209int label_exception(int index, int family, struct all_addr *addr);
7cebd20f 1210int fix_fd(int fd);
22ce550e 1211int tcp_interface(int fd, int af);
c72daea8
SK
1212#ifdef HAVE_IPV6
1213int set_ipv6pktinfo(int fd);
1214#endif
5d162f20
SK
1215#ifdef HAVE_DHCP6
1216void join_multicast(int dienow);
1217#endif
1ee9be4c
SK
1218#if defined(HAVE_LINUX_NETWORK) || defined(HAVE_BSD_NETWORK)
1219void newaddress(time_t now);
1220#endif
1221
3be34541 1222
9e4abcb5 1223/* dhcp.c */
7622fc06 1224#ifdef HAVE_DHCP
5aabfc78 1225void dhcp_init(void);
316e2730 1226void dhcp_packet(time_t now, int pxe_fd);
824af85b
SK
1227struct dhcp_context *address_available(struct dhcp_context *context,
1228 struct in_addr addr,
1229 struct dhcp_netid *netids);
1230struct dhcp_context *narrow_context(struct dhcp_context *context,
1231 struct in_addr taddr,
1232 struct dhcp_netid *netids);
8ef5ada2 1233int address_allocate(struct dhcp_context *context,
cdeda28f 1234 struct in_addr *addrp, unsigned char *hwaddr, int hw_len,
3d8df260 1235 struct dhcp_netid *netids, time_t now);
5aabfc78 1236void dhcp_read_ethers(void);
dfa666f2 1237struct dhcp_config *config_find_by_address(struct dhcp_config *configs, struct in_addr addr);
5aabfc78 1238char *host_from_dns(struct in_addr addr);
7622fc06 1239#endif
3be34541 1240
9e4abcb5 1241/* lease.c */
7622fc06 1242#ifdef HAVE_DHCP
5aabfc78 1243void lease_update_file(time_t now);
353ae4d2 1244void lease_update_dns(int force);
5aabfc78 1245void lease_init(time_t now);
52b92f4d 1246struct dhcp_lease *lease4_allocate(struct in_addr addr);
c72daea8 1247#ifdef HAVE_DHCP6
4cb1b320
SK
1248struct dhcp_lease *lease6_allocate(struct in6_addr *addrp, int lease_type);
1249struct dhcp_lease *lease6_find(unsigned char *clid, int clid_len,
1250 int lease_type, int iaid, struct in6_addr *addr);
a6ebfacf
SK
1251void lease6_reset(void);
1252struct dhcp_lease *lease6_find_by_client(struct dhcp_lease *first, int lease_type, unsigned char *clid, int clid_len, int iaid);
52b92f4d 1253struct dhcp_lease *lease6_find_by_addr(struct in6_addr *net, int prefix, u64 addr);
0793380b 1254u64 lease_find_max_addr6(struct dhcp_context *context);
353ae4d2 1255void lease_ping_reply(struct in6_addr *sender, unsigned char *packet, char *interface);
0c050242 1256void lease_update_slaac(time_t now);
89500e31 1257void lease_set_iaid(struct dhcp_lease *lease, int iaid);
3511a928 1258void lease_make_duid(time_t now);
c72daea8 1259#endif
7cebd20f 1260void lease_set_hwaddr(struct dhcp_lease *lease, unsigned char *hwaddr,
a9ab732e 1261 unsigned char *clid, int hw_len, int hw_type, int clid_len, time_t now, int force);
70c5e3e0 1262void lease_set_hostname(struct dhcp_lease *lease, char *name, int auth, char *domain, char *config_domain);
5e9e0efb 1263void lease_set_expires(struct dhcp_lease *lease, unsigned int len, time_t now);
353ae4d2 1264void lease_set_interface(struct dhcp_lease *lease, int interface, time_t now);
cdeda28f 1265struct dhcp_lease *lease_find_by_client(unsigned char *hwaddr, int hw_len, int hw_type,
0a852541 1266 unsigned char *clid, int clid_len);
9e4abcb5 1267struct dhcp_lease *lease_find_by_addr(struct in_addr addr);
7de060b0 1268struct in_addr lease_find_max_addr(struct dhcp_context *context);
9e4abcb5 1269void lease_prune(struct dhcp_lease *target, time_t now);
5aabfc78
SK
1270void lease_update_from_configs(void);
1271int do_script_run(time_t now);
1272void rerun_scripts(void);
8b372704 1273void lease_find_interfaces(time_t now);
ceae00dd
SK
1274#ifdef HAVE_SCRIPT
1275void lease_add_extradata(struct dhcp_lease *lease, unsigned char *data,
1276 unsigned int len, int delim);
1277#endif
7622fc06 1278#endif
a84fa1d0 1279
9e4abcb5 1280/* rfc2131.c */
7622fc06 1281#ifdef HAVE_DHCP
824af85b 1282size_t dhcp_reply(struct dhcp_context *context, char *iface_name, int int_index,
7de060b0 1283 size_t sz, time_t now, int unicast_dest, int *is_inform, int pxe_fd, struct in_addr fallback);
9009d746
SK
1284unsigned char *extended_hwaddr(int hwtype, int hwlen, unsigned char *hwaddr,
1285 int clid_len, unsigned char *clid, int *len_out);
7622fc06 1286#endif
3be34541
SK
1287
1288/* dnsmasq.c */
7622fc06 1289#ifdef HAVE_DHCP
5e9e0efb 1290int make_icmp_sock(void);
5aabfc78 1291int icmp_ping(struct in_addr addr);
7622fc06 1292#endif
a0358e5d 1293void send_newaddr(void);
353ae4d2 1294void send_alarm(time_t event, time_t now);
c72daea8 1295void send_event(int fd, int event, int data, char *msg);
5aabfc78 1296void clear_cache_and_reload(time_t now);
8ef5ada2 1297void poll_resolv(int force, int do_reload, time_t now);
44a2a316 1298
0a852541 1299/* netlink.c */
5e9e0efb 1300#ifdef HAVE_LINUX_NETWORK
5aabfc78 1301void netlink_init(void);
a0358e5d 1302void netlink_multicast(void);
5e9e0efb
SK
1303#endif
1304
1305/* bpf.c */
824af85b 1306#ifdef HAVE_BSD_NETWORK
5aabfc78
SK
1307void init_bpf(void);
1308void send_via_bpf(struct dhcp_packet *mess, size_t len,
5e9e0efb 1309 struct in_addr iface_addr, struct ifreq *ifr);
1ee9be4c 1310void route_init(void);
a0358e5d 1311void route_sock(void);
0a852541 1312#endif
3d8df260 1313
824af85b 1314/* bpf.c or netlink.c */
28866e95 1315int iface_enumerate(int family, void *parm, int (callback)());
824af85b 1316
3d8df260
SK
1317/* dbus.c */
1318#ifdef HAVE_DBUS
5aabfc78
SK
1319char *dbus_init(void);
1320void check_dbus_listeners(fd_set *rset, fd_set *wset, fd_set *eset);
1321void set_dbus_listeners(int *maxfdp, fd_set *rset, fd_set *wset, fd_set *eset);
316e2730 1322# ifdef HAVE_DHCP
1f15b81d 1323void emit_dbus_signal(int action, struct dhcp_lease *lease, char *hostname);
316e2730 1324# endif
3d8df260 1325#endif
1697269c 1326
13d86c73
JD
1327/* ipset.c */
1328#ifdef HAVE_IPSET
1329void ipset_init(void);
1330int add_to_ipset(const char *setname, const struct all_addr *ipaddr, int flags, int remove);
1331#endif
1332
1697269c 1333/* helper.c */
0068301d 1334#if defined(HAVE_SCRIPT)
1a6bca81 1335int create_helper(int event_fd, int err_fd, uid_t uid, gid_t gid, long max_fd);
5aabfc78
SK
1336void helper_write(void);
1337void queue_script(int action, struct dhcp_lease *lease,
1338 char *hostname, time_t now);
a9530964
SK
1339#ifdef HAVE_TFTP
1340void queue_tftp(off_t file_len, char *filename, union mysockaddr *peer);
1341#endif
1697269c 1342int helper_buf_empty(void);
5aabfc78 1343#endif
832af0ba
SK
1344
1345/* tftp.c */
1346#ifdef HAVE_TFTP
5aabfc78
SK
1347void tftp_request(struct listener *listen, time_t now);
1348void check_tftp_listeners(fd_set *rset, time_t now);
a9530964 1349int do_tftp_script_run(void);
832af0ba 1350#endif
7de060b0
SK
1351
1352/* conntrack.c */
1353#ifdef HAVE_CONNTRACK
1354int get_incoming_mark(union mysockaddr *peer_addr, struct all_addr *local_addr,
1355 int istcp, unsigned int *markp);
1356#endif
c72daea8 1357
52b92f4d
SK
1358/* dhcp6.c */
1359#ifdef HAVE_DHCP6
1360void dhcp6_init(void);
1361void dhcp6_packet(time_t now);
6586e835 1362struct dhcp_context *address6_allocate(struct dhcp_context *context, unsigned char *clid, int clid_len, int temp_addr,
c630924d 1363 int iaid, int serial, struct dhcp_netid *netids, int plain_range, struct in6_addr *ans);
de92b479 1364int config_valid(struct dhcp_config *config, struct dhcp_context *context, struct in6_addr *addr);
52b92f4d
SK
1365struct dhcp_context *address6_available(struct dhcp_context *context,
1366 struct in6_addr *taddr,
c630924d
SK
1367 struct dhcp_netid *netids,
1368 int plain_range);
37c9cceb
SK
1369struct dhcp_context *address6_valid(struct dhcp_context *context,
1370 struct in6_addr *taddr,
c630924d
SK
1371 struct dhcp_netid *netids,
1372 int plain_range);
ceae00dd
SK
1373struct dhcp_config *config_find_by_address6(struct dhcp_config *configs, struct in6_addr *net,
1374 int prefix, u64 addr);
4cb1b320 1375void make_duid(time_t now);
1f776932 1376void dhcp_construct_contexts(time_t now);
8939c95f
SK
1377void get_client_mac(struct in6_addr *client, int iface, unsigned char *mac,
1378 unsigned int *maclenp, unsigned int *mactypep);
52b92f4d 1379#endif
8939c95f 1380
c72daea8
SK
1381/* rfc3315.c */
1382#ifdef HAVE_DHCP6
1d0f91c4 1383unsigned short dhcp6_reply(struct dhcp_context *context, int interface, char *iface_name,
c3a04081
SK
1384 struct in6_addr *fallback, struct in6_addr *ll_addr, struct in6_addr *ula_addr,
1385 size_t sz, struct in6_addr *client_addr, time_t now);
8939c95f 1386void relay_upstream6(struct dhcp_relay *relay, ssize_t sz, struct in6_addr *peer_address, u32 scope_id);
ff7eea27
SK
1387
1388unsigned short relay_reply6( struct sockaddr_in6 *peer, ssize_t sz, char *arrival_interface);
c72daea8 1389#endif
4cb1b320
SK
1390
1391/* dhcp-common.c */
ceae00dd 1392#ifdef HAVE_DHCP
4cb1b320
SK
1393void dhcp_common_init(void);
1394ssize_t recv_dhcp_packet(int fd, struct msghdr *msg);
1395struct dhcp_netid *run_tag_if(struct dhcp_netid *input);
1396struct dhcp_netid *option_filter(struct dhcp_netid *tags, struct dhcp_netid *context_tags,
1397 struct dhcp_opt *opts);
1398int match_netid(struct dhcp_netid *check, struct dhcp_netid *pool, int negonly);
1399char *strip_hostname(char *hostname);
1400void log_tags(struct dhcp_netid *netid, u32 xid);
3634c54e 1401int match_bytes(struct dhcp_opt *o, unsigned char *p, int len);
ceae00dd 1402void dhcp_update_configs(struct dhcp_config *configs);
40ef23b5 1403void display_opts(void);
bd08ae67
SK
1404int lookup_dhcp_opt(int prot, char *name);
1405int lookup_dhcp_len(int prot, int val);
40ef23b5
SK
1406char *option_string(int prot, unsigned int opt, unsigned char *val,
1407 int opt_len, char *buf, int buf_len);
89500e31
SK
1408struct dhcp_config *find_config(struct dhcp_config *configs,
1409 struct dhcp_context *context,
1410 unsigned char *clid, int clid_len,
1411 unsigned char *hwaddr, int hw_len,
1412 int hw_type, char *hostname);
1413int config_has_mac(struct dhcp_config *config, unsigned char *hwaddr, int len, int type);
9380ba70 1414#ifdef HAVE_LINUX_NETWORK
3b3f4411
SK
1415char *whichdevice(void);
1416void bindtodevice(char *device, int fd);
9380ba70 1417#endif
843c96b4 1418# ifdef HAVE_DHCP6
40ef23b5 1419void display_opts6(void);
843c96b4 1420# endif
1f776932 1421void log_context(int family, struct dhcp_context *context);
ff7eea27 1422void log_relay(int family, struct dhcp_relay *relay);
c72daea8 1423#endif
c5ad4e79
SK
1424
1425/* outpacket.c */
1426#ifdef HAVE_DHCP6
1427void end_opt6(int container);
1428int save_counter(int newval);
1429void *expand(size_t headroom);
1430int new_opt6(int opt);
1431void *put_opt6(void *data, size_t len);
1432void put_opt6_long(unsigned int val);
1433void put_opt6_short(unsigned int val);
1434void put_opt6_char(unsigned int val);
1435void put_opt6_string(char *s);
1436#endif
1437
1438/* radv.c */
1439#ifdef HAVE_DHCP6
1440void ra_init(time_t now);
1f776932 1441void icmp6_packet(time_t now);
c5ad4e79 1442time_t periodic_ra(time_t now);
353ae4d2
SK
1443void ra_start_unsolicted(time_t now, struct dhcp_context *context);
1444#endif
1445
1446/* slaac.c */
1447#ifdef HAVE_DHCP6
a9ab732e 1448void slaac_add_addrs(struct dhcp_lease *lease, time_t now, int force);
353ae4d2
SK
1449time_t periodic_slaac(time_t now, struct dhcp_lease *leases);
1450void slaac_ping_reply(struct in6_addr *sender, unsigned char *packet, char *interface, struct dhcp_lease *leases);
c5ad4e79 1451#endif