]> git.ipfire.org Git - people/ms/dnsmasq.git/blame - src/dnsmasq.h
import of dnsmasq-2.41.tar.gz
[people/ms/dnsmasq.git] / src / dnsmasq.h
CommitLineData
824af85b
SK
1/* dnsmasq is Copyright (c) 2000-2008 Simon Kelley
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
SK
12
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
824af85b 17#define COPYRIGHT "Copyright (C) 2000-2008 Simon Kelley"
9e4abcb5 18
9e4abcb5 19/* get these before config.h for IPv6 stuff... */
44a2a316 20#include <sys/types.h>
9e4abcb5
SK
21#include <netinet/in.h>
22
f6b7dc47
SK
23#ifdef __APPLE__
24/* need this before arpa/nameser.h */
25# define BIND_8_COMPAT
26#endif
3be34541 27#include <arpa/nameser.h>
9e4abcb5 28
59353a6b
SK
29/* and this. */
30#include <getopt.h>
31
9e4abcb5 32#include "config.h"
b8187c80
SK
33
34#define gettext_noop(S) (S)
824af85b 35#ifndef LOCALEDIR
b8187c80
SK
36# define _(S) (S)
37#else
38# include <libintl.h>
39# include <locale.h>
40# define _(S) gettext(S)
41#endif
42
9e4abcb5
SK
43#include <arpa/inet.h>
44#include <sys/stat.h>
45#include <sys/socket.h>
9e4abcb5 46#include <sys/ioctl.h>
824af85b
SK
47#if defined(HAVE_SOLARIS_NETWORK)
48#include <sys/sockio.h>
49#endif
9e4abcb5 50#include <sys/select.h>
feba5c1d 51#include <sys/wait.h>
9e4abcb5 52#include <sys/time.h>
f2621c7f 53#include <sys/un.h>
8a911ccc 54#include <limits.h>
9e4abcb5
SK
55#include <net/if.h>
56#include <unistd.h>
57#include <stdio.h>
58#include <string.h>
59#include <stdlib.h>
60#include <fcntl.h>
61#include <ctype.h>
62#include <signal.h>
9e4abcb5
SK
63#include <time.h>
64#include <errno.h>
65#include <pwd.h>
66#include <grp.h>
f6b7dc47 67#include <stdarg.h>
824af85b 68#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__sun__)
44a2a316
SK
69# include <netinet/if_ether.h>
70#else
71# include <net/ethernet.h>
72#endif
9e4abcb5
SK
73#include <net/if_arp.h>
74#include <netinet/in_systm.h>
75#include <netinet/ip.h>
3be34541 76#include <netinet/ip_icmp.h>
5e9e0efb 77#include <sys/uio.h>
849a8357
SK
78#include <syslog.h>
79#include <dirent.h>
5e9e0efb 80#ifndef HAVE_LINUX_NETWORK
44a2a316 81# include <net/if_dl.h>
9e4abcb5 82#endif
5e9e0efb 83
824af85b 84#if defined(HAVE_LINUX_NETWORK)
5e9e0efb
SK
85#include <linux/capability.h>
86/* There doesn't seem to be a universally-available
87 userpace header for this. */
88extern int capset(cap_user_header_t header, cap_user_data_t data);
89#include <sys/prctl.h>
824af85b
SK
90#elif defined(HAVE_SOLARIS_PRIVS)
91#include <priv.h>
5e9e0efb 92#endif
9e4abcb5 93
824af85b 94/* daemon is function in the C library.... */
5aabfc78
SK
95#define daemon dnsmasq_daemon
96
97/* Async event queue */
98struct event_desc {
99 int event, data;
100};
101
102#define EVENT_RELOAD 1
103#define EVENT_DUMP 2
104#define EVENT_ALARM 3
105#define EVENT_TERM 4
106#define EVENT_CHILD 5
107#define EVENT_REOPEN 6
108#define EVENT_EXITED 7
109#define EVENT_KILLED 8
110#define EVENT_EXEC_ERR 9
111#define EVENT_PIPE_ERR 10
112
113/* Exit codes. */
114#define EC_GOOD 0
115#define EC_BADCONF 1
116#define EC_BADNET 2
117#define EC_FILE 3
118#define EC_NOMEM 4
119#define EC_MISC 5
120#define EC_INIT_OFFSET 10
121
0a852541
SK
122/* Min buffer size: we check after adding each record, so there must be
123 memory for the largest packet, and the largest record so the
124 min for DNS is PACKETSZ+MAXDNAME+RRFIXEDSZ which is < 1000.
125 This might be increased is EDNS packet size if greater than the minimum.
cdeda28f
SK
126*/
127#define DNSMASQ_PACKETSZ PACKETSZ+MAXDNAME+RRFIXEDSZ
44a2a316 128
832af0ba
SK
129#define OPT_BOGUSPRIV (1<<0)
130#define OPT_FILTER (1<<1)
131#define OPT_LOG (1<<2)
132#define OPT_SELFMX (1<<3)
133#define OPT_NO_HOSTS (1<<4)
134#define OPT_NO_POLL (1<<5)
135#define OPT_DEBUG (1<<6)
136#define OPT_ORDER (1<<7)
137#define OPT_NO_RESOLV (1<<8)
138#define OPT_EXPAND (1<<9)
139#define OPT_LOCALMX (1<<10)
140#define OPT_NO_NEG (1<<11)
141#define OPT_NODOTS_LOCAL (1<<12)
142#define OPT_NOWILD (1<<13)
143#define OPT_ETHERS (1<<14)
144#define OPT_RESOLV_DOMAIN (1<<15)
145#define OPT_NO_FORK (1<<16)
146#define OPT_AUTHORITATIVE (1<<17)
147#define OPT_LOCALISE (1<<18)
148#define OPT_DBUS (1<<19)
149#define OPT_BOOTP_DYNAMIC (1<<20)
150#define OPT_NO_PING (1<<21)
151#define OPT_LEASE_RO (1<<22)
824af85b 152#define OPT_ALL_SERVERS (1<<23)
832af0ba
SK
153#define OPT_RELOAD (1<<24)
154#define OPT_TFTP (1<<25)
155#define OPT_TFTP_SECURE (1<<26)
6b01084f 156#define OPT_TFTP_NOBLOCK (1<<27)
f2621c7f 157#define OPT_LOG_OPTS (1<<28)
5aabfc78 158#define OPT_TFTP_APREF (1<<29)
824af85b
SK
159#define OPT_NO_OVERRIDE (1<<30)
160#define OPT_NO_REBIND (1<<31)
9e4abcb5
SK
161
162struct all_addr {
163 union {
164 struct in_addr addr4;
165#ifdef HAVE_IPV6
166 struct in6_addr addr6;
167#endif
168 } addr;
169};
170
171struct bogus_addr {
172 struct in_addr addr;
173 struct bogus_addr *next;
174};
175
1cff166d
SK
176/* dns doctor param */
177struct doctor {
178 struct in_addr in, out, mask;
179 struct doctor *next;
180};
181
0a852541
SK
182struct mx_srv_record {
183 char *name, *target;
3d8df260
SK
184 int issrv, srvport, priority, weight;
185 unsigned int offset;
0a852541 186 struct mx_srv_record *next;
de37951c
SK
187};
188
0a852541
SK
189struct txt_record {
190 char *name, *txt;
191 unsigned short class, len;
192 struct txt_record *next;
f6b7dc47
SK
193};
194
832af0ba
SK
195struct ptr_record {
196 char *name, *ptr;
197 struct ptr_record *next;
198};
199
f2621c7f
SK
200struct interface_name {
201 char *name; /* domain name */
202 char *intr; /* interface name */
203 struct interface_name *next;
204};
205
9e4abcb5
SK
206union bigname {
207 char name[MAXDNAME];
208 union bigname *next; /* freelist */
209};
210
211struct crec {
212 struct crec *next, *prev, *hash_next;
213 time_t ttd; /* time to die */
fd9fa481
SK
214 int uid;
215 union {
216 struct all_addr addr;
217 struct {
218 struct crec *cache;
219 int uid;
220 } cname;
221 } addr;
9e4abcb5
SK
222 unsigned short flags;
223 union {
224 char sname[SMALLDNAME];
225 union bigname *bname;
226 char *namep;
227 } name;
228};
229
230#define F_IMMORTAL 1
fd9fa481 231#define F_CONFIG 2
9e4abcb5
SK
232#define F_REVERSE 4
233#define F_FORWARD 8
234#define F_DHCP 16
235#define F_NEG 32
236#define F_HOSTS 64
237#define F_IPV4 128
238#define F_IPV6 256
239#define F_BIGNAME 512
240#define F_UPSTREAM 1024
241#define F_SERVER 2048
242#define F_NXDOMAIN 4096
243#define F_QUERY 8192
fd9fa481 244#define F_CNAME 16384
9e4abcb5
SK
245#define F_NOERR 32768
246
247/* struct sockaddr is not large enough to hold any address,
cdeda28f 248 and specifically not big enough to hold an IPv6 address.
9e4abcb5
SK
249 Blech. Roll our own. */
250union mysockaddr {
251 struct sockaddr sa;
252 struct sockaddr_in in;
253#ifdef HAVE_BROKEN_SOCKADDR_IN6
254 /* early versions of glibc don't include sin6_scope_id in sockaddr_in6
255 but latest kernels _require_ it to be set. The choice is to have
256 dnsmasq fail to compile on back-level libc or fail to run
257 on latest kernels with IPv6. Or to do this: sorry that it's so gross. */
258 struct my_sockaddr_in6 {
259 sa_family_t sin6_family; /* AF_INET6 */
260 uint16_t sin6_port; /* transport layer port # */
261 uint32_t sin6_flowinfo; /* IPv6 traffic class & flow info */
262 struct in6_addr sin6_addr; /* IPv6 address */
263 uint32_t sin6_scope_id; /* set of interfaces for a scope */
264 } in6;
265#elif defined(HAVE_IPV6)
266 struct sockaddr_in6 in6;
267#endif
268};
269
0a852541
SK
270#define SERV_FROM_RESOLV 1 /* 1 for servers from resolv, 0 for command line. */
271#define SERV_NO_ADDR 2 /* no server, this domain is local only */
272#define SERV_LITERAL_ADDRESS 4 /* addr is the answer, not the server */
5aabfc78
SK
273#define SERV_HAS_DOMAIN 8 /* server for one domain only */
274#define SERV_HAS_SOURCE 16 /* source address defined */
0a852541
SK
275#define SERV_FOR_NODOTS 32 /* server for names with no domain part only */
276#define SERV_WARNED_RECURSIVE 64 /* avoid warning spam */
3d8df260
SK
277#define SERV_FROM_DBUS 128 /* 1 if source is DBus */
278#define SERV_MARK 256 /* for mark-and-delete */
9e4abcb5 279#define SERV_TYPE (SERV_HAS_DOMAIN | SERV_FOR_NODOTS)
824af85b 280#define SERV_COUNTED 512 /* workspace for log code */
9e4abcb5
SK
281
282struct serverfd {
283 int fd;
284 union mysockaddr source_addr;
824af85b 285 char interface[IF_NAMESIZE+1];
9e4abcb5
SK
286 struct serverfd *next;
287};
288
289struct server {
290 union mysockaddr addr, source_addr;
824af85b 291 char interface[IF_NAMESIZE+1];
1697269c 292 struct serverfd *sfd;
9e4abcb5 293 char *domain; /* set if this server only handles a domain. */
feba5c1d 294 int flags, tcpfd;
824af85b 295 unsigned int queries, failed_queries;
9e4abcb5
SK
296 struct server *next;
297};
298
9e4abcb5
SK
299struct irec {
300 union mysockaddr addr;
f6b7dc47 301 struct in_addr netmask; /* only valid for IPv4 */
832af0ba 302 int dhcp_ok;
9e4abcb5
SK
303 struct irec *next;
304};
305
44a2a316 306struct listener {
832af0ba 307 int fd, tcpfd, tftpfd, family;
f6b7dc47 308 struct irec *iface; /* only valid for non-wildcard */
44a2a316
SK
309 struct listener *next;
310};
311
9e4abcb5
SK
312/* interface and address parms from command line. */
313struct iname {
314 char *name;
315 union mysockaddr addr;
de37951c 316 int isloop, used;
9e4abcb5
SK
317 struct iname *next;
318};
319
320/* resolv-file parms from command-line */
321struct resolvc {
322 struct resolvc *next;
3d8df260
SK
323 int is_default, logged;
324 time_t mtime;
9e4abcb5
SK
325 char *name;
326};
327
fd9fa481
SK
328/* adn-hosts parms from command-line */
329struct hostsfile {
330 struct hostsfile *next;
331 char *fname;
cdeda28f 332 int index; /* matches to cache entries for logging */
fd9fa481
SK
333};
334
9e4abcb5
SK
335struct frec {
336 union mysockaddr source;
44a2a316 337 struct all_addr dest;
832af0ba 338 struct server *sentto; /* NULL means free */
dfa666f2 339 unsigned int iface;
9e4abcb5 340 unsigned short orig_id, new_id;
0a852541 341 int fd, forwardall;
fd9fa481 342 unsigned int crc;
9e4abcb5
SK
343 time_t time;
344 struct frec *next;
345};
346
1697269c
SK
347/* actions in the daemon->helper RPC */
348#define ACTION_DEL 1
349#define ACTION_OLD_HOSTNAME 2
350#define ACTION_OLD 3
351#define ACTION_ADD 4
352
cdeda28f
SK
353#define DHCP_CHADDR_MAX 16
354
9e4abcb5
SK
355struct dhcp_lease {
356 int clid_len; /* length of client identifier */
357 unsigned char *clid; /* clientid */
358 char *hostname, *fqdn; /* name from client-hostname option or config */
1697269c 359 char *old_hostname; /* hostname before it moved to another lease */
7cebd20f
SK
360 char auth_name; /* hostname came from config, not from client */
361 char new; /* newly created */
208b65c5
SK
362 char changed; /* modified */
363 char aux_changed; /* CLID or expiry changed */
9e4abcb5 364 time_t expires; /* lease expiry */
5e9e0efb
SK
365#ifdef HAVE_BROKEN_RTC
366 unsigned int length;
367#endif
cdeda28f
SK
368 int hwaddr_len, hwaddr_type;
369 unsigned char hwaddr[DHCP_CHADDR_MAX];
9e4abcb5 370 struct in_addr addr;
1697269c
SK
371 unsigned char *vendorclass, *userclass;
372 unsigned int vendorclass_len, userclass_len;
824af85b 373 int last_interface;
9e4abcb5
SK
374 struct dhcp_lease *next;
375};
376
a222641c
SK
377struct dhcp_netid {
378 char *net;
379 struct dhcp_netid *next;
380};
381
26128d27
SK
382struct dhcp_netid_list {
383 struct dhcp_netid *list;
384 struct dhcp_netid_list *next;
385};
1697269c 386
9e4abcb5 387struct dhcp_config {
33820b7e 388 unsigned int flags;
9e4abcb5
SK
389 int clid_len; /* length of client identifier */
390 unsigned char *clid; /* clientid */
cdeda28f
SK
391 int hwaddr_len, hwaddr_type;
392 unsigned char hwaddr[DHCP_CHADDR_MAX];
a222641c
SK
393 char *hostname;
394 struct dhcp_netid netid;
9e4abcb5 395 struct in_addr addr;
849a8357 396 time_t decline_time;
0a852541 397 unsigned int lease_time, wildcard_mask;
9e4abcb5
SK
398 struct dhcp_config *next;
399};
400
0a852541
SK
401#define CONFIG_DISABLE 1
402#define CONFIG_CLID 2
403#define CONFIG_HWADDR 4
404#define CONFIG_TIME 8
405#define CONFIG_NAME 16
406#define CONFIG_ADDR 32
407#define CONFIG_NETID 64
408#define CONFIG_NOCLID 128
849a8357
SK
409#define CONFIG_FROM_ETHERS 256 /* entry created by /etc/ethers */
410#define CONFIG_ADDR_HOSTS 512 /* address added by from /etc/hosts */
411#define CONFIG_DECLINED 1024 /* address declined by client */
5aabfc78 412#define CONFIG_BANK 2048 /* from dhcp hosts file */
33820b7e 413
9e4abcb5 414struct dhcp_opt {
cdeda28f 415 int opt, len, flags;
91dccd09 416 unsigned char *val, *vendor_class;
26128d27 417 struct dhcp_netid *netid;
9e4abcb5 418 struct dhcp_opt *next;
a84fa1d0
SK
419};
420
cdeda28f
SK
421#define DHOPT_ADDR 1
422#define DHOPT_STRING 2
6b01084f
SK
423#define DHOPT_ENCAPSULATE 4
424#define DHOPT_VENDOR_MATCH 8
425#define DHOPT_FORCE 16
824af85b 426#define DHOPT_BANK 32
cdeda28f 427
26128d27
SK
428struct dhcp_boot {
429 char *file, *sname;
430 struct in_addr next_server;
431 struct dhcp_netid *netid;
432 struct dhcp_boot *next;
433};
434
f2621c7f
SK
435#define MATCH_VENDOR 1
436#define MATCH_USER 2
437#define MATCH_CIRCUIT 3
438#define MATCH_REMOTE 4
439#define MATCH_SUBSCRIBER 5
824af85b 440#define MATCH_OPTION 6
f2621c7f
SK
441
442/* vendorclass, userclass, remote-id or cicuit-id */
a84fa1d0 443struct dhcp_vendor {
824af85b 444 int len, match_type, option;
a222641c
SK
445 char *data;
446 struct dhcp_netid netid;
a84fa1d0
SK
447 struct dhcp_vendor *next;
448};
9e4abcb5 449
cdeda28f
SK
450struct dhcp_mac {
451 unsigned int mask;
452 int hwaddr_len, hwaddr_type;
453 unsigned char hwaddr[DHCP_CHADDR_MAX];
454 struct dhcp_netid netid;
455 struct dhcp_mac *next;
456};
457
832af0ba
SK
458#if defined(__FreeBSD__) || defined(__DragonFly__)
459struct dhcp_bridge {
460 char iface[IF_NAMESIZE];
461 struct dhcp_bridge *alias, *next;
462};
463#endif
464
9e4abcb5 465struct dhcp_context {
feba5c1d 466 unsigned int lease_time, addr_epoch;
0a852541
SK
467 struct in_addr netmask, broadcast;
468 struct in_addr local, router;
a84fa1d0 469 struct in_addr start, end; /* range of available addresses */
0a852541 470 int flags;
cdeda28f 471 struct dhcp_netid netid, *filter;
36717eee 472 struct dhcp_context *next, *current;
9e4abcb5
SK
473};
474
0a852541 475#define CONTEXT_STATIC 1
cdeda28f
SK
476#define CONTEXT_NETMASK 2
477#define CONTEXT_BRDCAST 4
0a852541
SK
478
479
9e4abcb5
SK
480typedef unsigned char u8;
481typedef unsigned short u16;
482typedef unsigned int u32;
483
484
5e9e0efb
SK
485struct dhcp_packet {
486 u8 op, htype, hlen, hops;
487 u32 xid;
488 u16 secs, flags;
489 struct in_addr ciaddr, yiaddr, siaddr, giaddr;
490 u8 chaddr[DHCP_CHADDR_MAX], sname[64], file[128];
491 u8 options[312];
9e4abcb5
SK
492};
493
3d8df260
SK
494struct ping_result {
495 struct in_addr addr;
496 time_t time;
497 struct ping_result *next;
498};
9e4abcb5 499
832af0ba
SK
500struct tftp_file {
501 int refcount, fd;
502 off_t size;
5aabfc78
SK
503 dev_t dev;
504 ino_t inode;
832af0ba
SK
505 char filename[];
506};
507
508struct tftp_transfer {
509 int sockfd;
510 time_t timeout;
511 int backoff;
512 unsigned int block, blocksize;
513 struct sockaddr_in peer;
514 char opt_blocksize, opt_transize;
515 struct tftp_file *file;
516 struct tftp_transfer *next;
517};
518
5aabfc78 519extern struct daemon {
3be34541
SK
520 /* datastuctures representing the command-line and
521 config file arguments. All set (including defaults)
522 in option.c */
523
524 unsigned int options;
525 struct resolvc default_resolv, *resolv_files;
0a852541
SK
526 struct mx_srv_record *mxnames;
527 struct txt_record *txt;
832af0ba 528 struct ptr_record *ptr;
f2621c7f 529 struct interface_name *int_names;
3be34541
SK
530 char *mxtarget;
531 char *lease_file;
532 char *username, *groupname;
533 char *domain_suffix;
534 char *runfile;
7cebd20f 535 char *lease_change_command;
3d8df260 536 struct iname *if_names, *if_addrs, *if_except, *dhcp_except;
3be34541
SK
537 struct bogus_addr *bogus_addr;
538 struct server *servers;
849a8357 539 int log_fac; /* log facility */
f2621c7f
SK
540 char *log_file; /* optional log file */
541 int max_logs; /* queue limit */
208b65c5 542 int cachesize, ftabsize;
3be34541 543 int port, query_port;
824af85b 544 unsigned long local_ttl, neg_ttl;
fd9fa481 545 struct hostsfile *addn_hosts;
3be34541
SK
546 struct dhcp_context *dhcp;
547 struct dhcp_config *dhcp_conf;
6b01084f 548 struct dhcp_opt *dhcp_opts;
3be34541 549 struct dhcp_vendor *dhcp_vendors;
cdeda28f 550 struct dhcp_mac *dhcp_macs;
26128d27 551 struct dhcp_boot *boot_config;
824af85b
SK
552 struct dhcp_netid_list *dhcp_ignore, *dhcp_ignore_names, *force_broadcast;
553 char *dhcp_hosts_file, *dhcp_opts_file;
554 int dhcp_max, tftp_max;
555 int start_tftp_port, end_tftp_port;
3be34541
SK
556 unsigned int min_leasetime;
557 struct doctor *doctors;
558 unsigned short edns_pktsz;
824af85b 559 char *tftp_prefix;
3be34541
SK
560
561 /* globally used stuff for DNS */
562 char *packet; /* packet buffer */
0a852541 563 int packet_buff_sz; /* size of above */
3be34541 564 char *namebuff; /* MAXDNAME size buffer */
824af85b 565 unsigned int local_answer, queries_forwarded;
3be34541 566 struct serverfd *sfds;
3d8df260 567 struct irec *interfaces;
3be34541
SK
568 struct listener *listeners;
569 struct server *last_server;
cdeda28f
SK
570 struct server *srv_save; /* Used for resend on DoD */
571 size_t packet_len; /* " " */
1697269c
SK
572 pid_t tcp_pids[MAX_PROCS];
573
3be34541 574 /* DHCP state */
1697269c 575 int dhcpfd, helperfd;
5e9e0efb 576#ifdef HAVE_LINUX_NETWORK
0a852541 577 int netlinkfd;
5e9e0efb
SK
578#else
579 int dhcp_raw_fd, dhcp_icmp_fd;
0a852541 580#endif
5e9e0efb 581 struct iovec dhcp_packet;
3be34541 582 char *dhcp_buff, *dhcp_buff2;
3d8df260 583 struct ping_result *ping_results;
cdeda28f 584 FILE *lease_stream;
832af0ba
SK
585#if defined(__FreeBSD__) || defined(__DragonFly__)
586 struct dhcp_bridge *bridges;
587#endif
3d8df260
SK
588
589 /* DBus stuff */
3d8df260
SK
590 /* void * here to avoid depending on dbus headers outside dbus.c */
591 void *dbus;
832af0ba 592#ifdef HAVE_DBUS
3d8df260
SK
593 struct watch *watches;
594#endif
595
832af0ba
SK
596 /* TFTP stuff */
597 struct tftp_transfer *tftp_trans;
824af85b 598
5aabfc78 599} *daemon;
3be34541 600
9e4abcb5 601/* cache.c */
5aabfc78 602void cache_init(void);
fd9fa481
SK
603void log_query(unsigned short flags, char *name, struct all_addr *addr,
604 unsigned short type, struct hostsfile *addn_hosts, int index);
9e4abcb5
SK
605struct crec *cache_find_by_addr(struct crec *crecp,
606 struct all_addr *addr, time_t now,
607 unsigned short prot);
608struct crec *cache_find_by_name(struct crec *crecp,
609 char *name, time_t now, unsigned short prot);
610void cache_end_insert(void);
611void cache_start_insert(void);
fd9fa481
SK
612struct crec *cache_insert(char *name, struct all_addr *addr,
613 time_t now, unsigned long ttl, unsigned short flags);
614void cache_reload(int opts, char *buff, char *domain_suffix, struct hostsfile *addn_hosts);
5aabfc78 615void cache_add_dhcp_entry(char *host_name, struct in_addr *host_address, time_t ttd);
9e4abcb5 616void cache_unhash_dhcp(void);
5aabfc78 617void dump_cache(time_t now);
9e4abcb5
SK
618char *cache_get_name(struct crec *crecp);
619
620/* rfc1035.c */
cdeda28f 621unsigned short extract_request(HEADER *header, size_t qlen,
c1bb8504 622 char *name, unsigned short *typep);
cdeda28f
SK
623size_t setup_reply(HEADER *header, size_t qlen,
624 struct all_addr *addrp, unsigned short flags,
625 unsigned long local_ttl);
824af85b 626int extract_addresses(HEADER *header, size_t qlen, char *namebuff, time_t now);
5aabfc78 627size_t answer_request(HEADER *header, char *limit, size_t qlen,
f6b7dc47 628 struct in_addr local_addr, struct in_addr local_netmask, time_t now);
cdeda28f 629int check_for_bogus_wildcard(HEADER *header, size_t qlen, char *name,
9e4abcb5 630 struct bogus_addr *addr, time_t now);
cdeda28f 631unsigned char *find_pseudoheader(HEADER *header, size_t plen,
832af0ba 632 size_t *len, unsigned char **p, int *is_sign);
5aabfc78 633int check_for_local_domain(char *name, time_t now);
cdeda28f
SK
634unsigned int questions_crc(HEADER *header, size_t plen, char *buff);
635size_t resize_packet(HEADER *header, size_t plen,
636 unsigned char *pheader, size_t hlen);
9e4abcb5
SK
637
638/* util.c */
639unsigned short rand16(void);
640int legal_char(char c);
641int canonicalise(char *s);
3d8df260 642unsigned char *do_rfc1035_name(unsigned char *p, char *sval);
0a852541 643void *safe_malloc(size_t size);
5aabfc78 644void *whine_malloc(size_t size);
9e4abcb5
SK
645int sa_len(union mysockaddr *addr);
646int sockaddr_isequal(union mysockaddr *s1, union mysockaddr *s2);
3d8df260 647int hostname_isequal(char *a, char *b);
5e9e0efb 648time_t dnsmasq_time(void);
a84fa1d0 649int is_same_net(struct in_addr a, struct in_addr b, struct in_addr mask);
fd9fa481 650int retry_send(void);
0a852541 651void prettyprint_time(char *buf, unsigned int t);
3d8df260 652int prettyprint_addr(union mysockaddr *addr, char *buf);
0a852541 653int parse_hex(char *in, unsigned char *out, int maxlen,
cdeda28f 654 unsigned int *wildcard_mask, int *mac_type);
5e9e0efb
SK
655int memcmp_masked(unsigned char *a, unsigned char *b, int len,
656 unsigned int mask);
657int expand_buf(struct iovec *iov, size_t size);
5aabfc78 658char *print_mac(char *buff, unsigned char *mac, int len);
1697269c 659void bump_maxfd(int fd, int *max);
1697269c 660int read_write(int fd, unsigned char *packet, int size, int rw);
7cebd20f 661
f2621c7f 662/* log.c */
5aabfc78
SK
663void die(char *message, char *arg1, int exit_code);
664void log_start(struct passwd *ent_pw);
665int log_reopen(char *log_file);
f2621c7f
SK
666void my_syslog(int priority, const char *format, ...);
667void set_log_writer(fd_set *set, int *maxfdp);
668void check_log_writer(fd_set *set);
5aabfc78 669void flush_log(void);
f2621c7f 670
9e4abcb5 671/* option.c */
5aabfc78 672void read_opts (int argc, char **argv, char *compile_opts);
f2621c7f 673char *option_string(unsigned char opt);
824af85b 674void reread_dhcp(void);
9e4abcb5
SK
675
676/* forward.c */
5aabfc78
SK
677void reply_query(struct serverfd *sfd, time_t now);
678void receive_query(struct listener *listen, time_t now);
679unsigned char *tcp_request(int confd, time_t now,
3d8df260 680 struct in_addr local_addr, struct in_addr netmask);
5aabfc78
SK
681void server_gone(struct server *server);
682struct frec *get_new_frec(time_t now, int *wait);
3be34541 683
9e4abcb5 684/* network.c */
824af85b
SK
685int local_bind(int fd, union mysockaddr *addr, char *intname, int is_tcp);
686void pre_allocate_sfds(void);
5aabfc78
SK
687int reload_servers(char *fname);
688void check_servers(void);
689int enumerate_interfaces();
690struct listener *create_wildcard_listeners(void);
691struct listener *create_bound_listeners(void);
692int iface_check(int family, struct all_addr *addr,
832af0ba 693 struct ifreq *ifr, int *indexp);
7cebd20f 694int fix_fd(int fd);
5aabfc78 695struct in_addr get_ifaddr(char *intr);
3be34541 696
9e4abcb5 697/* dhcp.c */
5aabfc78
SK
698void dhcp_init(void);
699void dhcp_packet(time_t now);
3be34541 700
824af85b
SK
701struct dhcp_context *address_available(struct dhcp_context *context,
702 struct in_addr addr,
703 struct dhcp_netid *netids);
704struct dhcp_context *narrow_context(struct dhcp_context *context,
705 struct in_addr taddr,
706 struct dhcp_netid *netids);
cdeda28f 707int match_netid(struct dhcp_netid *check, struct dhcp_netid *pool, int negonly);
5aabfc78 708int address_allocate(struct dhcp_context *context,
cdeda28f 709 struct in_addr *addrp, unsigned char *hwaddr, int hw_len,
3d8df260 710 struct dhcp_netid *netids, time_t now);
9e4abcb5
SK
711struct dhcp_config *find_config(struct dhcp_config *configs,
712 struct dhcp_context *context,
713 unsigned char *clid, int clid_len,
cdeda28f
SK
714 unsigned char *hwaddr, int hw_len,
715 int hw_type, char *hostname);
44a2a316 716void dhcp_update_configs(struct dhcp_config *configs);
5aabfc78 717void dhcp_read_ethers(void);
824af85b 718void check_dhcp_hosts(int fatal);
dfa666f2 719struct dhcp_config *config_find_by_address(struct dhcp_config *configs, struct in_addr addr);
5aabfc78
SK
720char *strip_hostname(char *hostname);
721char *host_from_dns(struct in_addr addr);
3be34541 722
9e4abcb5 723/* lease.c */
5aabfc78
SK
724void lease_update_file(time_t now);
725void lease_update_dns();
726void lease_init(time_t now);
7cebd20f
SK
727struct dhcp_lease *lease_allocate(struct in_addr addr);
728void lease_set_hwaddr(struct dhcp_lease *lease, unsigned char *hwaddr,
cdeda28f 729 unsigned char *clid, int hw_len, int hw_type, int clid_len);
b8187c80
SK
730void lease_set_hostname(struct dhcp_lease *lease, char *name,
731 char *suffix, int auth);
5e9e0efb 732void lease_set_expires(struct dhcp_lease *lease, unsigned int len, time_t now);
824af85b 733void lease_set_interface(struct dhcp_lease *lease, int interface);
cdeda28f 734struct dhcp_lease *lease_find_by_client(unsigned char *hwaddr, int hw_len, int hw_type,
0a852541 735 unsigned char *clid, int clid_len);
9e4abcb5
SK
736struct dhcp_lease *lease_find_by_addr(struct in_addr addr);
737void lease_prune(struct dhcp_lease *target, time_t now);
5aabfc78
SK
738void lease_update_from_configs(void);
739int do_script_run(time_t now);
740void rerun_scripts(void);
a84fa1d0 741
9e4abcb5 742/* rfc2131.c */
824af85b 743size_t dhcp_reply(struct dhcp_context *context, char *iface_name, int int_index,
5aabfc78 744 size_t sz, time_t now, int unicast_dest, int *is_inform);
3be34541
SK
745
746/* dnsmasq.c */
5e9e0efb 747int make_icmp_sock(void);
5aabfc78
SK
748int icmp_ping(struct in_addr addr);
749void send_event(int fd, int event, int data);
750void clear_cache_and_reload(time_t now);
44a2a316 751
33820b7e
SK
752/* isc.c */
753#ifdef HAVE_ISC_READER
5aabfc78 754void load_dhcp(time_t now);
33820b7e 755#endif
feba5c1d 756
0a852541 757/* netlink.c */
5e9e0efb 758#ifdef HAVE_LINUX_NETWORK
5aabfc78 759void netlink_init(void);
5aabfc78 760void netlink_multicast(void);
5e9e0efb
SK
761#endif
762
763/* bpf.c */
824af85b 764#ifdef HAVE_BSD_NETWORK
5aabfc78
SK
765void init_bpf(void);
766void send_via_bpf(struct dhcp_packet *mess, size_t len,
5e9e0efb 767 struct in_addr iface_addr, struct ifreq *ifr);
0a852541 768#endif
3d8df260 769
824af85b
SK
770/* bpf.c or netlink.c */
771int iface_enumerate(void *parm, int (*ipv4_callback)(), int (*ipv6_callback)());
772
3d8df260
SK
773/* dbus.c */
774#ifdef HAVE_DBUS
5aabfc78
SK
775char *dbus_init(void);
776void check_dbus_listeners(fd_set *rset, fd_set *wset, fd_set *eset);
777void set_dbus_listeners(int *maxfdp, fd_set *rset, fd_set *wset, fd_set *eset);
3d8df260 778#endif
1697269c
SK
779
780/* helper.c */
5aabfc78
SK
781#ifndef NO_FORK
782int create_helper(int log_fd, long max_fd);
783void helper_write(void);
784void queue_script(int action, struct dhcp_lease *lease,
785 char *hostname, time_t now);
1697269c 786int helper_buf_empty(void);
5aabfc78 787#endif
832af0ba
SK
788
789/* tftp.c */
790#ifdef HAVE_TFTP
5aabfc78
SK
791void tftp_request(struct listener *listen, time_t now);
792void check_tftp_listeners(fd_set *rset, time_t now);
832af0ba 793#endif