+ Core library bugfixes:
[adns] / client / adnstest.c
CommitLineData
e576be50 1/*
b0f83da6 2 * adnstest.c
e576be50 3 * - simple test program, not part of the library
4 */
5/*
d942707d 6 * This file is
7 * Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
8 *
9 * It is part of adns, which is
10 * Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
11 * Copyright (C) 1999 Tony Finch <dot@dotat.at>
e576be50 12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
16 * any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software Foundation,
25 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 */
964344fc 27
28#include <stdio.h>
73dba56e 29#include <sys/time.h>
350d37d9 30#include <unistd.h>
86e7b8d9 31#include <assert.h>
32#include <stdlib.h>
9da4a044 33#include <string.h>
fc6a52ae 34#include <errno.h>
16cf5367 35
36#include "adns.h"
37
38#include "config.h"
964344fc 39
7d251914 40#ifndef OUTPUTSTREAM
41# define OUTPUTSTREAM stdout
42#endif
43
16cf5367 44#ifndef HAVE_POLL
45#undef poll
46int poll(struct pollfd *ufds, int nfds, int timeout) {
47 fputs("poll(2) not supported on this system\n",stderr);
2345cc9b 48 exit(5);
16cf5367 49}
50#define adns_beforepoll(a,b,c,d,e) 0
51#define adns_afterpoll(a,b,c,d) 0
52#endif
964344fc 53
2345cc9b 54static void failure_status(const char *what, adns_status st) NONRETURNING;
9da4a044 55static void failure_status(const char *what, adns_status st) {
86e7b8d9 56 fprintf(stderr,"adns failure: %s: %s\n",what,adns_strerror(st));
57 exit(2);
58}
59
2345cc9b 60static void failure_errno(const char *what, int errnoval) NONRETURNING;
9da4a044 61static void failure_errno(const char *what, int errnoval) {
62 fprintf(stderr,"adns failure: %s: errno=%d\n",what,errnoval);
63 exit(2);
64}
65
2345cc9b 66static void usageerr(const char *why) NONRETURNING;
67static void usageerr(const char *why) {
68 fprintf(stderr,
69 "bad usage: %s\n"
70 "usage: adnstest [-<initflagsnum>[,<owninitflags>]] [/<initstring>]\n"
71 " [ :<typenum>,... ]\n"
72 " [ [<queryflagsnum>[,<ownqueryflags>]/]<domain> ... ]\n"
73 "initflags: p use poll(2) instead of select(2)\n"
74 " s use adns_wait with specified query, instead of 0\n"
75 "queryflags: a print status abbrevs instead of strings\n"
76 "exit status: 0 ok (though some queries may have failed)\n"
77 " 1 used by test harness to indicate test failed\n"
78 " 2 unable to submit or init or some such\n"
79 " 3 unexpected failure\n"
80 " 4 usage error\n"
81 " 5 operation not supported on this system\n",
82 why);
83 exit(4);
84}
86e7b8d9 85
ffbda80c 86static const adns_rrtype defaulttypes[]= {
87 adns_r_a,
88 adns_r_ns_raw,
89 adns_r_cname,
9ec44266 90 adns_r_soa_raw,
ffbda80c 91 adns_r_ptr_raw,
9ec44266 92 adns_r_hinfo,
e062dcae 93 adns_r_mx_raw,
1b644113 94 adns_r_txt,
1dfe95d8 95 adns_r_rp_raw,
9ec44266 96
828d89bd 97 adns_r_addr,
1dfe95d8 98 adns_r_ns,
a6536d8b 99 adns_r_ptr,
9ec44266 100 adns_r_mx,
101
102 adns_r_soa,
103 adns_r_rp,
104
ffbda80c 105 adns_r_none
106};
107
e062dcae 108static void dumptype(adns_status ri, const char *rrtn, const char *fmtn) {
109 fprintf(stdout, "%s(%s)%s%s",
110 ri ? "?" : rrtn, ri ? "?" : fmtn ? fmtn : "-",
111 ri ? " " : "", ri ? adns_strerror(ri) : "");
112}
113
9da4a044 114static void fdom_split(const char *fdom, const char **dom_r, int *qf_r,
115 char *ownflags, int ownflags_l) {
5476fe64 116 int qf;
117 char *ep;
118
119 qf= strtoul(fdom,&ep,0);
9da4a044 120 if (*ep == ',' && strchr(ep,'/')) {
121 ep++;
122 while (*ep != '/') {
123 if (--ownflags_l <= 0) { fputs("too many flags\n",stderr); exit(3); }
124 *ownflags++= *ep++;
125 }
126 }
5476fe64 127 if (*ep != '/') { *dom_r= fdom; *qf_r= 0; }
128 else { *dom_r= ep+1; *qf_r= qf; }
9da4a044 129 *ownflags= 0;
5476fe64 130}
131
fc6a52ae 132static int consistsof(const char *string, const char *accept) {
133 return strspn(string,accept) == strlen(string);
134}
135
e062dcae 136int main(int argc, char *const *argv) {
669f9df5 137 struct myctx {
138 adns_query qu;
e42ce2b2 139 int doneyet, found;
140 const char *fdom;
669f9df5 141 };
142
964344fc 143 adns_state ads;
669f9df5 144 adns_query qu;
e42ce2b2 145 struct myctx *mcs, *mc, *mcw;
669f9df5 146 void *mcr;
4353a5c4 147 adns_answer *ans;
12c5b204 148 const char *initstring, *rrtn, *fmtn;
5476fe64 149 const char *const *fdomlist, *domain;
e062dcae 150 char *show, *cp;
6d682204 151 int len, i, qc, qi, tc, ti, ch, qflags, initflagsnum;
636b69b1 152 adns_status ri;
153 int r;
ffbda80c 154 const adns_rrtype *types;
73dba56e 155 struct timeval now;
e062dcae 156 adns_rrtype *types_a;
9da4a044 157 char ownflags[10];
fc6a52ae 158 char *ep;
159 const char *initflags, *owninitflags;
86e7b8d9 160
fc6a52ae 161 if (argv[0] && argv[1] && argv[1][0] == '-') {
162 initflags= argv[1]+1;
163 argv++;
164 } else {
165 initflags= "";
166 }
12c5b204 167 if (argv[0] && argv[1] && argv[1][0] == '/') {
168 initstring= argv[1]+1;
169 argv++;
170 } else {
171 initstring= 0;
172 }
fc6a52ae 173
174 initflagsnum= strtoul(initflags,&ep,0);
175 if (*ep == ',') {
176 owninitflags= ep+1;
2345cc9b 177 if (!consistsof(owninitflags,"ps")) usageerr("unknown owninitflag");
fc6a52ae 178 } else if (!*ep) {
179 owninitflags= "";
180 } else {
2345cc9b 181 usageerr("bad <initflagsnum>[,<owninitflags>]");
fc6a52ae 182 }
12c5b204 183
e062dcae 184 if (argv[0] && argv[1] && argv[1][0] == ':') {
185 for (cp= argv[1]+1, tc=1; (ch= *cp); cp++)
186 if (ch==',') tc++;
e3d42241 187 types_a= malloc(sizeof(*types_a)*(tc+1));
e062dcae 188 if (!types_a) { perror("malloc types"); exit(3); }
189 for (cp= argv[1]+1, ti=0; ti<tc; ti++) {
190 types_a[ti]= strtoul(cp,&cp,10);
191 if ((ch= *cp)) {
2345cc9b 192 if (ch != ',') usageerr("unexpected char (not comma) in or between types");
e062dcae 193 cp++;
194 }
195 }
e3d42241 196 *cp++= adns_r_none;
e062dcae 197 types= types_a;
198 argv++;
199 } else {
200 types= defaulttypes;
201 }
202
2345cc9b 203 if (!(argv[0] && argv[1])) usageerr("no query domains supplied");
204 fdomlist= (const char *const*)argv+1;
ffbda80c 205
5476fe64 206 for (qc=0; fdomlist[qc]; qc++);
ffbda80c 207 for (tc=0; types[tc] != adns_r_none; tc++);
669f9df5 208 mcs= malloc(sizeof(*mcs)*qc*tc);
209 if (!mcs) { perror("malloc mcs"); exit(3); }
964344fc 210
12c5b204 211 if (initstring) {
fc6a52ae 212 r= adns_init_strcfg(&ads,
3e2e5fab 213 (adns_if_debug|adns_if_noautosys|adns_if_checkc_freq)
214 ^initflagsnum,
fc6a52ae 215 stdout,initstring);
12c5b204 216 } else {
fc6a52ae 217 r= adns_init(&ads,
218 (adns_if_debug|adns_if_noautosys)^initflagsnum,
219 0);
12c5b204 220 }
9da4a044 221 if (r) failure_errno("init",r);
86e7b8d9 222
223 for (qi=0; qi<qc; qi++) {
9da4a044 224 fdom_split(fdomlist[qi],&domain,&qflags,ownflags,sizeof(ownflags));
2345cc9b 225 if (!consistsof(ownflags,"a")) usageerr("unknown ownqueryflag");
ffbda80c 226 for (ti=0; ti<tc; ti++) {
669f9df5 227 mc= &mcs[qi*tc+ti];
228 mc->doneyet= 0;
e42ce2b2 229 mc->fdom= fdomlist[qi];
669f9df5 230
1aa0213d 231 fprintf(stdout,"%s flags %d type %d",domain,qflags,types[ti]);
669f9df5 232 r= adns_submit(ads,domain,types[ti],qflags,mc,&mc->qu);
636b69b1 233 if (r == ENOSYS) {
916c16ca 234 fprintf(stdout," not implemented\n");
669f9df5 235 mc->qu= 0;
236 mc->doneyet= 1;
916c16ca 237 } else if (r) {
9da4a044 238 failure_errno("submit",r);
916c16ca 239 } else {
e062dcae 240 ri= adns_rr_info(types[ti], &rrtn,&fmtn,0, 0,0);
7d251914 241 putc(' ',stdout);
e062dcae 242 dumptype(ri,rrtn,fmtn);
916c16ca 243 fprintf(stdout," submitted\n");
244 }
ffbda80c 245 }
86e7b8d9 246 }
350d37d9 247
e42ce2b2 248 for (;;) {
249 for (qi=0; qi<qc; qi++) {
250 for (ti=0; ti<tc; ti++) {
251 mc= &mcs[qi*tc+ti];
252 mc->found= 0;
253 }
254 }
255 for (adns_forallqueries_begin(ads);
256 (qu= adns_forallqueries_next(ads,&mcr));
257 ) {
258 mc= mcr;
259 assert(qu == mc->qu);
260 assert(!mc->doneyet);
261 mc->found= 1;
262 }
263 mcw= 0;
264 for (qi=0; qi<qc; qi++) {
265 for (ti=0; ti<tc; ti++) {
266 mc= &mcs[qi*tc+ti];
267 if (mc->doneyet) continue;
268 assert(mc->found);
269 if (!mcw) mcw= mc;
270 }
271 }
272 if (!mcw) break;
669f9df5 273
8ce38e76 274 if (strchr(owninitflags,'s')) {
275 qu= mcw->qu;
276 mc= mcw;
277 } else {
278 qu= 0;
279 mc= 0;
280 }
fc6a52ae 281
207130d4 282 if (strchr(owninitflags,'p')) {
940356bd 283 r= adns_wait_poll(ads,&qu,&ans,&mcr);
207130d4 284 } else {
285 r= adns_wait(ads,&qu,&ans,&mcr);
286 }
287 if (r) failure_errno("wait/check",r);
288
8ce38e76 289 if (mc) assert(mcr==mc);
290 else mc= mcr;
291 assert(qu==mc->qu);
292 assert(!mc->doneyet);
293
207130d4 294 fdom_split(mc->fdom,&domain,&qflags,ownflags,sizeof(ownflags));
669f9df5 295
207130d4 296 if (gettimeofday(&now,0)) { perror("gettimeofday"); exit(3); }
73dba56e 297
207130d4 298 ri= adns_rr_info(ans->type, &rrtn,&fmtn,&len, 0,0);
299 fprintf(stdout, "%s flags %d type ",domain,qflags);
300 dumptype(ri,rrtn,fmtn);
301 fprintf(stdout, "%s%s: %s; nrrs=%d; cname=%s; owner=%s; ttl=%ld\n",
302 ownflags[0] ? " ownflags=" : "", ownflags,
303 strchr(ownflags,'a')
304 ? adns_errabbrev(ans->status)
305 : adns_strerror(ans->status),
306 ans->nrrs,
307 ans->cname ? ans->cname : "$",
308 ans->owner ? ans->owner : "$",
309 (long)ans->expires - (long)now.tv_sec);
310 if (ans->nrrs) {
311 assert(!ri);
312 for (i=0; i<ans->nrrs; i++) {
636b69b1 313 ri= adns_rr_info(ans->type, 0,0,0, ans->rrs.bytes + i*len, &show);
314 if (ri) failure_status("info",ri);
207130d4 315 fprintf(stdout," %s\n",show);
316 free(show);
86e7b8d9 317 }
207130d4 318 }
319 free(ans);
e42ce2b2 320
207130d4 321 mc->doneyet= 1;
86e7b8d9 322 }
4353a5c4 323
669f9df5 324 free(mcs);
9ec44266 325 adns_finish(ads);
326
964344fc 327 exit(0);
328}