More reply stuff.
[adns] / src / internal.h
CommitLineData
37e28fde 1/**/
2
3#ifndef ADNS_INTERNAL_H_INCLUDED
4#define ADNS_INTERNAL_H_INCLUDED
5
4353a5c4 6#define PRINTFFORMAT(a,b) __attribute__((format(printf,a,b)))
7typedef unsigned char byte;
8
9#include <stdarg.h>
10#include <assert.h>
11#include <unistd.h>
12
37e28fde 13#include <sys/time.h>
14
15#include "adns.h"
16
17/* Configuration and constants */
18
19#define MAXSERVERS 5
b9de380c 20#define UDPMAXRETRIES /*15*/5
37e28fde 21#define UDPRETRYMS 2000
22#define TCPMS 30000
23#define LOCALRESOURCEMS 20
b9de380c 24
25#define DNS_UDPPORT 53
26#define DNS_MAXUDP 512
27#define DNS_MAXDOMAIN 255
28#define DNS_HDRSIZE 12
29#define DNS_CLASS_IN 1
37e28fde 30
31/* Shared data structures */
32
4353a5c4 33typedef union {
37e28fde 34 adns_status status;
35 char *cp;
36 adns_rrtype type;
4353a5c4 37 int i;
37e28fde 38 struct in_addr ia;
39 unsigned long ul;
4353a5c4 40} rr_align;
41
42typedef struct {
43 int used, avail;
44 byte *buf;
45} vbuf;
46
47typedef union {
48 void *ext;
49 int dmaddr_index;
50} qcontext;
37e28fde 51
0ba0614a 52typedef struct {
53 unsigned long searchkey; /* flags and typecode swapped */
54 adns_rrtype type;
55} typeinfo;
56
37e28fde 57struct adns__query {
58 /* FIXME: make sure this is all init'd properly */
ddfda861 59 enum { query_udp, query_tcpwait, query_tcpsent, query_child, query_done } state;
4353a5c4 60 adns_query back, next, parent;
37e28fde 61 struct { adns_query head, tail; } children;
62 struct { adns_query back, next; } siblings;
0ba0614a 63
64 const typeinfo *typei;
b9de380c 65 vbuf ans;
ddfda861 66 int id, flags, udpretries;
4353a5c4 67 int udpnextserver;
68 unsigned long udpsent, tcpfailed; /* bitmap indexed by server */
37e28fde 69 struct timeval timeout;
4353a5c4 70 byte *querymsg;
37e28fde 71 int querylen;
4353a5c4 72 qcontext context;
37e28fde 73 char owner[1];
4353a5c4 74 /* After the owner name and nul comes the query message, pointed to by querymsg */
ddfda861 75
37e28fde 76 /* Possible states:
ddfda861 77 *
78 * state Queue child id answer nextudpserver sentudp failedtcp
79 *
80 * udp NONE null >=0 null 0 zero zero
81 * udp timew null >=0 null any nonzero zero
82 * udp NONE null >=0 null any nonzero zero
83 *
84 * tcpwait timew null >=0 null irrelevant zero any
85 * tcpsent timew null >=0 null irrelevant zero any
86 *
87 * child childw set >=0 partial irrelevant irrelevant irrelevant
88 * done output null -1 set/null irrelevant irrelevant irrelevant
89 *
90 * +------------------------+
91 * START -----> | udp/NONE |
92 * +------------------------+
93 * / |\ \
94 * too big for UDP / UDP timeout \ \ send via UDP
95 * do this ASAP! / more retries \ \ do this ASAP!
96 * |_ desired \ _|
97 * +---------------+ +-----------+
98 * | tcpwait/timew | ____ | udp/timew |
99 * +---------------+ \ +-----------+
100 * | ^ | | |
101 * TCP conn'd; | | TCP died | | |
102 * send via TCP | | more | UDP timeout | |
103 * do this ASAP! | | servers | no more | |
104 * v | to try | retries | |
105 * +---------------+ | desired | |
106 * | tcpsent/timew | ____ | | |
107 * +---------------+ \| | |
108 * \ \ TCP died | TCP | |
109 * \ \ no more | timeout / |
110 * \ \ servers | / |
111 * \ \ to try | / |
112 * got \ \ v |_ / got
113 * reply \ _| +------------------+ / reply
114 * \ | done/output FAIL | /
115 * \ +------------------+ /
116 * \ /
117 * _| |_
118 * (..... got reply ....)
119 * / \
120 * need child query/ies / \ no child query
121 * / \
122 * |_ _|
123 * +--------------+ +----------------+
124 * | child/childw | ----------------> | done/output OK |
125 * +--------------+ children done +----------------+
37e28fde 126 */
127};
128
37e28fde 129struct adns__state {
37e28fde 130 adns_initflags iflags;
131 FILE *diagfile;
ddfda861 132 struct { adns_query head, tail; } timew, childw, output;
4353a5c4 133 int nextid, udpsocket, tcpsocket;
134 vbuf rqbuf, tcpsend, tcprecv;
37e28fde 135 int nservers, tcpserver;
8402e34c 136 enum adns__tcpstate { server_disconnected, server_connecting, server_ok } tcpstate;
37e28fde 137 struct timeval tcptimeout;
138 struct server {
139 struct in_addr addr;
140 } servers[MAXSERVERS];
141};
142
143/* From setup.c: */
144
4353a5c4 145void adns__vdiag(adns_state ads, const char *pfx, adns_initflags prevent,
37e28fde 146 int serv, const char *fmt, va_list al);
8402e34c 147void adns__debug(adns_state ads, int serv, const char *fmt, ...) PRINTFFORMAT(3,4);
148void adns__warn(adns_state ads, int serv, const char *fmt, ...) PRINTFFORMAT(3,4);
149void adns__diag(adns_state ads, int serv, const char *fmt, ...) PRINTFFORMAT(3,4);
37e28fde 150
4353a5c4 151int adns__vbuf_ensure(vbuf *vb, int want);
152int adns__vbuf_append(vbuf *vb, const byte *data, int len);
ddfda861 153/* 1=>success, 0=>realloc failed */
4353a5c4 154void adns__vbuf_appendq(vbuf *vb, const byte *data, int len);
155void adns__vbuf_init(vbuf *vb);
156
157int adns__setnonblock(adns_state ads, int fd); /* => errno value */
ddfda861 158
37e28fde 159/* From submit.c: */
160
4353a5c4 161void adns__query_nomem(adns_state ads, adns_query qu);
37e28fde 162void adns__query_fail(adns_state ads, adns_query qu, adns_status stat);
163
164/* From query.c: */
165
ddfda861 166void adns__query_udp(adns_state ads, adns_query qu, struct timeval now);
167void adns__query_tcp(adns_state ads, adns_query qu, struct timeval now);
4bec51a4 168adns_status adns__mkquery(adns_state ads, const char *owner, int ol, int id,
4353a5c4 169 adns_rrtype type, adns_queryflags flags);
170
171/* From reply.c: */
172
173void adns__procdgram(adns_state ads, const byte *dgram, int len, int serv);
8402e34c 174
175/* From event.c: */
4353a5c4 176
8402e34c 177void adns__tcp_broken(adns_state ads, const char *what, const char *why);
4353a5c4 178void adns__tcp_tryconnect(adns_state ads, struct timeval now);
179void adns__autosys(adns_state ads, struct timeval now);
37e28fde 180
181/* Useful static inline functions: */
182
183static inline void timevaladd(struct timeval *tv_io, long ms) {
184 struct timeval tmp;
185 assert(ms>=0);
186 tmp= *tv_io;
94436798 187 tmp.tv_usec += (ms%1000)*1000000;
37e28fde 188 tmp.tv_sec += ms/1000;
94436798 189 if (tmp.tv_usec >= 1000000) { tmp.tv_sec++; tmp.tv_usec -= 1000; }
37e28fde 190 *tv_io= tmp;
ddfda861 191}
37e28fde 192
193static inline int ctype_whitespace(int c) { return c==' ' || c=='\n' || c=='\t'; }
194static inline int ctype_digit(int c) { return c>='0' && c<='9'; }
195
196/* Useful macros */
197
4353a5c4 198#define LIST_INIT(list) ((list).head= (list).tail= 0)
199
37e28fde 200#define LIST_UNLINK_PART(list,node,part) \
201 do { \
202 if ((node)->back) (node)->back->part next= (node)->part next; \
203 else (list).head= (node)->part next; \
204 if ((node)->next) (node)->next->part back= (node)->part back; \
205 else (list).tail= (node)->part back; \
206 } while(0)
207
208#define LIST_LINK_TAIL_PART(list,node,part) \
209 do { \
210 (node)->part back= 0; \
211 (node)->part next= (list).tail; \
212 if ((list).tail) (list).tail->part back= (node); else (list).part head= (node); \
213 (list).tail= (node); \
214 } while(0)
215
216#define LIST_UNLINK(list,node) LIST_UNLINK_PART(list,node,)
4353a5c4 217#define LIST_LINK_TAIL(list,node) LIST_LINK_TAIL_PART(list,node,)
37e28fde 218
219#endif