chiark / gitweb /
Test cases for long labels and domains.
[adns.git] / client / adh-query.c
1 /*
2  * adh-query.c
3  * - useful general-purpose resolver client program
4  *   make queries and print answers
5  */
6 /*
7  *  This file is
8  *    Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
9  *
10  *  It is part of adns, which is
11  *    Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
12  *    Copyright (C) 1999 Tony Finch <dot@dotat.at>
13  *  
14  *  This program is free software; you can redistribute it and/or modify
15  *  it under the terms of the GNU General Public License as published by
16  *  the Free Software Foundation; either version 2, or (at your option)
17  *  any later version.
18  *  
19  *  This program is distributed in the hope that it will be useful,
20  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *  GNU General Public License for more details.
23  *  
24  *  You should have received a copy of the GNU General Public License
25  *  along with this program; if not, write to the Free Software Foundation,
26  *  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
27  */
28
29 #include "adnshost.h"
30
31 adns_state ads;
32 struct outstanding_list outstanding;
33
34 static unsigned long idcounter;
35
36 void ensure_adns_init(void) {
37   int r;
38   
39   if (ads) return;
40
41   if (signal(SIGPIPE,SIG_IGN) == SIG_ERR) sysfail("ignore SIGPIPE",errno);
42   r= adns_init(&ads,
43                adns_if_noautosys|adns_if_nosigpipe |
44                (ov_env ? 0 : adns_if_noenv) |
45                ov_verbose,
46                0);
47   if (r) sysfail("adns_init",r);
48
49   if (ov_format == fmt_default)
50     ov_format= ov_asynch ? fmt_asynch : fmt_simple;
51 }
52
53 static void prep_query(struct query_node **qun_r, int *quflags_r) {
54   struct query_node *qun;
55   char idbuf[20];
56   
57   if (ov_pipe && !ads) usageerr("-f/--pipe not consistent with domains on command line");
58   ensure_adns_init();
59   
60   qun= malloc(sizeof(*qun));
61   qun->pqfr= ov_pqfr;
62   if (ov_id) {
63     qun->id= xstrsave(ov_id);
64   } else {
65     sprintf(idbuf,"%lu",idcounter++);
66     idcounter &= 0x0fffffffflu;
67     qun->id= xstrsave(idbuf);
68   }
69
70   *quflags_r=
71     (ov_search ? adns_qf_search : 0) |
72     (ov_tcp ? adns_qf_usevc : 0) |
73     ((ov_pqfr.show_owner || ov_format == fmt_simple) ? adns_qf_owner : 0) |
74     (ov_qc_query ? adns_qf_quoteok_query : 0) |
75     (ov_qc_anshost ? adns_qf_quoteok_anshost : 0) |
76     (ov_qc_cname ? 0 : adns_qf_quoteok_cname) |
77     ov_cname,
78     
79   *qun_r= qun;
80 }
81   
82 void of_ptr(const struct optioninfo *oi, const char *arg) {
83   struct query_node *qun;
84   int quflags, r;
85   struct sockaddr_in sa;
86
87   memset(&sa,0,sizeof(sa));
88   sa.sin_family= AF_INET;
89   if (!inet_aton(arg,&sa.sin_addr)) usageerr("invalid IP address %s",arg);
90
91   prep_query(&qun,&quflags);
92   qun->owner= xstrsave(arg);
93   r= adns_submit_reverse(ads,
94                          (struct sockaddr*)&sa,
95                          ov_type == adns_r_none ? adns_r_ptr : ov_type,
96                          quflags,
97                          qun,
98                          &qun->qu);
99   if (r) sysfail("adns_submit_reverse",r);
100
101   LIST_LINK_TAIL(outstanding,qun);
102 }
103
104 void query_do(const char *domain) {
105   struct query_node *qun;
106   int quflags, r;
107
108   prep_query(&qun,&quflags);
109   qun->owner= xstrsave(domain);
110   r= adns_submit(ads, domain,
111                  ov_type == adns_r_none ? adns_r_addr : ov_type,
112                  quflags,
113                  qun,
114                  &qun->qu);
115   if (r) sysfail("adns_submit",r);
116
117   LIST_LINK_TAIL(outstanding,qun);
118 }
119
120 static void dequeue_query(struct query_node *qun) {
121   LIST_UNLINK(outstanding,qun);
122   free(qun->id);
123   free(qun);
124 }
125
126 static void print_withspace(const char *str) {
127   if (printf("%s ", str) == EOF) outerr();
128 }
129
130 static void print_ttl(struct query_node *qun, adns_answer *answer) {
131   unsigned long ttl;
132   time_t now;
133   
134   switch (qun->pqfr.ttl) {
135   case tm_none:
136     return;
137   case tm_rel:
138     if (time(&now) == (time_t)-1) sysfail("get current time",errno);
139     ttl= answer->expires < now ? 0 : answer->expires - now;
140     break;
141   case tm_abs:
142     ttl= answer->expires;
143     break;
144   default:
145     abort();
146   }
147   if (printf("%lu ",ttl) == EOF) outerr();
148 }
149
150 static const char *owner_show(struct query_node *qun, adns_answer *answer) {
151   return answer->owner ? answer->owner : qun->owner;
152 }
153
154 static void print_owner_ttl(struct query_node *qun, adns_answer *answer) {
155   if (qun->pqfr.show_owner) print_withspace(owner_show(qun,answer));
156   print_ttl(qun,answer);
157 }
158
159 static void check_status(adns_status st) {
160   static const adns_status statuspoints[]= {
161     adns_s_ok,
162     adns_s_max_localfail, adns_s_max_remotefail, adns_s_max_tempfail,
163     adns_s_max_misconfig, adns_s_max_misquery
164   };
165
166   const adns_status *spp;
167   int minrcode;
168
169   for (minrcode=0, spp=statuspoints;
170        spp < statuspoints + (sizeof(statuspoints)/sizeof(statuspoints[0]));
171        spp++)
172     if (st > *spp) minrcode++;
173   if (rcode < minrcode) rcode= minrcode;
174 }
175
176 static void print_status(adns_status st, struct query_node *qun, adns_answer *answer) {
177   const char *statustypeabbrev, *statusabbrev, *statusstring;
178
179   statustypeabbrev= adns_errtypeabbrev(st);
180   statusabbrev= adns_errabbrev(st);
181   statusstring= adns_strerror(st);
182   assert(!strchr(statusstring,'"'));
183
184   if (printf("%s %d %s ", statustypeabbrev, st, statusabbrev)
185       == EOF) outerr();
186   print_owner_ttl(qun,answer);
187   if (qun->pqfr.show_cname)
188     print_withspace(answer->cname ? answer->cname : "$");
189   if (printf("\"%s\"\n", statusstring) == EOF) outerr();
190 }
191
192 static void print_dnsfail(adns_status st, struct query_node *qun, adns_answer *answer) {
193   int r;
194   const char *typename, *statusstring;
195   adns_status ist;
196   
197   if (ov_format == fmt_inline) {
198     if (fputs("; failed ",stdout) == EOF) outerr();
199     print_status(st,qun,answer);
200     return;
201   }
202   assert(ov_format == fmt_simple);
203   if (st == adns_s_nxdomain) {
204     r= fprintf(stderr,"%s does not exist\n", owner_show(qun,answer));
205   } else {
206     ist= adns_rr_info(answer->type, &typename, 0,0,0,0);
207     if (st == adns_s_nodata) {
208       r= fprintf(stderr,"%s has no %s record\n", owner_show(qun,answer), typename);
209     } else {
210       statusstring= adns_strerror(st);
211       r= fprintf(stderr,"Error during DNS %s lookup for %s: %s\n",
212                  typename, owner_show(qun,answer), statusstring);
213     }
214   }
215   if (r == EOF) sysfail("write error message to stderr",errno);
216 }
217     
218 void query_done(struct query_node *qun, adns_answer *answer) {
219   adns_status st, ist;
220   int rrn, nrrs;
221   const char *rrp, *realowner, *typename;
222   char *datastr;
223
224   st= answer->status;
225   nrrs= answer->nrrs;
226   if (ov_format == fmt_asynch) {
227     check_status(st);
228     if (printf("%s %d ", qun->id, nrrs) == EOF) outerr();
229     print_status(st,qun,answer);
230   } else {
231     if (qun->pqfr.show_cname && answer->cname) {
232       print_owner_ttl(qun,answer);
233       if (qun->pqfr.show_type) print_withspace("CNAME");
234       if (printf("%s\n", answer->cname) == EOF) outerr();
235     }
236     if (st) {
237       check_status(st);
238       print_dnsfail(st,qun,answer);
239     }
240   }
241   if (qun->pqfr.show_owner) {
242     realowner= answer->cname ? answer->cname : owner_show(qun,answer);
243     assert(realowner);
244   } else {
245     realowner= 0;
246   }
247   if (nrrs) {
248     for (rrn=0, rrp = answer->rrs.untyped;
249          rrn < nrrs;
250          rrn++, rrp += answer->rrsz) {
251       if (realowner) print_withspace(realowner);
252       print_ttl(qun,answer);
253       ist= adns_rr_info(answer->type, &typename, 0, 0, rrp, &datastr);
254       if (ist == adns_s_nomemory) sysfail("adns_rr_info failed",ENOMEM);
255       assert(!ist);
256       if (qun->pqfr.show_type) print_withspace(typename);
257       if (printf("%s\n",datastr) == EOF) outerr();
258       free(datastr);
259     }
260   }
261   if (fflush(stdout)) outerr();
262   free(answer);
263   dequeue_query(qun);
264 }
265
266 void of_asynch_id(const struct optioninfo *oi, const char *arg) {
267   free(ov_id);
268   ov_id= xstrsave(arg);
269 }
270
271 void of_cancel_id(const struct optioninfo *oi, const char *arg) {
272   struct query_node *qun;
273
274   for (qun= outstanding.head;
275        qun && strcmp(qun->id,arg);
276        qun= qun->next);
277   if (!qun) return;
278   adns_cancel(qun->qu);
279   dequeue_query(qun);
280 }