chiark / gitweb /
+ * Add list of tested platforms in INSTALL file.
[adns.git] / client / adnslogres.c
1 /*
2  * adnslogres.c
3  * - a replacement for the Apache logresolve program using adns
4  */
5 /*
6  *  This file is
7  *   Copyright (C) 1999 Tony Finch <dot@dotat.at>
8  *   Copyright (C) 1999-2000 Ian Jackson <ian@davenant.greenend.org.uk>
9  *
10  *  It is part of adns, which is
11  *    Copyright (C) 1997-2000 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  *  This version was originally supplied by Tony Finch, but has been
29  *  modified by Ian Jackson as it was incorporated into adns and
30  *  subsequently.
31  */
32
33 static const char * const cvsid =
34         "$Id$";
35
36 #include <sys/types.h>
37 #include <sys/time.h>
38
39 #include <unistd.h>
40 #include <string.h>
41 #include <stdlib.h>
42 #include <stdio.h>
43 #include <ctype.h>
44 #include <errno.h>
45
46 #include "adns.h"
47
48 /* maximum number of concurrent DNS queries */
49 #define MAXPENDING 1000
50
51 /* maximum length of a line */
52 #define MAXLINE 1024
53
54 /* option flags */
55 #define OPT_DEBUG 1
56 #define OPT_POLL 2
57
58 static const char *progname;
59
60 #define msg(fmt, args...) fprintf(stderr, "%s: " fmt "\n", progname, ##args)
61 #define guard_null(str) ((str) ? (str) : "")
62
63 #define sensible_ctype(type,ch) (type((unsigned char)(ch)))
64   /* isfoo() functions from ctype.h can't safely be fed char - blech ! */
65
66 static void aargh(const char *cause) {
67   const char *why = strerror(errno);
68   if (!why) why = "Unknown error";
69   msg("%s: %s (%d)", cause, why, errno);
70   exit(1);
71 }
72
73 /*
74  * Parse the IP address and convert to a reverse domain name.
75  */
76 static char *ipaddr2domain(char *start, char **addr, char **rest) {
77   static char buf[30]; /* "123.123.123.123.in-addr.arpa.\0" */
78   char *ptrs[5];
79   int i;
80
81   ptrs[0]= start;
82 retry:
83   while (!sensible_ctype(isdigit,*ptrs[0]))
84     if (!*ptrs[0]++) {
85       strcpy(buf, "invalid.");
86       *addr= *rest= NULL;
87       return buf;
88     }
89   for (i= 1; i < 5; i++) {
90     ptrs[i]= ptrs[i-1];
91     while (sensible_ctype(isdigit,*ptrs[i]++));
92     if ((i == 4 && !sensible_ctype(isspace,ptrs[i][-1])) ||
93         (i != 4 && ptrs[i][-1] != '.') ||
94         (ptrs[i]-ptrs[i-1] > 4)) {
95       ptrs[0]= ptrs[i]-1;
96       goto retry;
97     }
98   }
99   sprintf(buf, "%.*s.%.*s.%.*s.%.*s.in-addr.arpa.",
100           ptrs[4]-ptrs[3]-1, ptrs[3],
101           ptrs[3]-ptrs[2]-1, ptrs[2],
102           ptrs[2]-ptrs[1]-1, ptrs[1],
103           ptrs[1]-ptrs[0]-1, ptrs[0]);
104   *addr= ptrs[0];
105   *rest= ptrs[4]-1;
106   return buf;
107 }
108
109 static void printline(FILE *outf, char *start, char *addr, char *rest, char *domain) {
110   if (domain)
111     fprintf(outf, "%.*s%s%s", addr - start, start, domain, rest);
112   else
113     fputs(start, outf);
114   if (ferror(outf)) aargh("write output");
115 }
116
117 typedef struct logline {
118   struct logline *next;
119   char *start, *addr, *rest;
120   adns_query query;
121 } logline;
122
123 static logline *readline(FILE *inf, adns_state adns, int opts) {
124   static char buf[MAXLINE];
125   char *str;
126   logline *line;
127
128   if (fgets(buf, MAXLINE, inf)) {
129     str= malloc(sizeof(*line) + strlen(buf) + 1);
130     if (!str) aargh("malloc");
131     line= (logline*)str;
132     line->next= NULL;
133     line->start= str+sizeof(logline);
134     strcpy(line->start, buf);
135     str= ipaddr2domain(line->start, &line->addr, &line->rest);
136     if (opts & OPT_DEBUG)
137       msg("submitting %.*s -> %s", line->rest-line->addr, guard_null(line->addr), str);
138     if (adns_submit(adns, str, adns_r_ptr,
139                     adns_qf_quoteok_cname|adns_qf_cname_loose,
140                     NULL, &line->query))
141       aargh("adns_submit");
142     return line;
143   }
144   if (!feof(inf))
145     aargh("fgets");
146   return NULL;
147 }
148         
149 static void proclog(FILE *inf, FILE *outf, int opts) {
150   int eof, err, len;
151   adns_state adns;
152   adns_answer *answer;
153   logline *head, *tail, *line;
154
155   errno= adns_init(&adns, (opts & OPT_DEBUG) ? adns_if_debug : 0, 0);
156   if (errno) aargh("adns_init");
157   head= tail= readline(inf, adns, opts);
158   len= 1; eof= 0;
159   while (head) {
160     if (opts & OPT_DEBUG)
161       msg("%d in queue; checking %.*s", len,
162           head->rest-head->addr, guard_null(head->addr));
163     if (eof || len > MAXPENDING) {
164       if (opts & OPT_POLL)
165         err= adns_wait_poll(adns, &head->query, &answer, NULL);
166       else
167         err= adns_wait(adns, &head->query, &answer, NULL);
168     } else {
169       err= adns_check(adns, &head->query, &answer, NULL);
170     }
171     if (err != EAGAIN) {
172       printline(outf, head->start, head->addr, head->rest,
173                 answer->status == adns_s_ok ? *answer->rrs.str : NULL);
174       line= head; head= head->next;
175       free(line); free(answer);
176       len--;
177     }
178     if (!eof) {
179       line= readline(inf, adns, opts);
180       if (!line)
181         eof= 1;
182       else {
183         if (!head)
184           head= line;
185         else
186           tail->next= line;
187         tail= line;
188         len++;
189       }
190     }
191   }
192   adns_finish(adns);
193 }
194
195 static void usage(void) {
196   fprintf(stderr, "usage: %s [-d] [-p] [logfile]\n", progname);
197   exit(1);
198 }
199
200 int main(int argc, char *argv[]) {
201   int c, opts;
202   FILE *inf;
203
204   progname= strrchr(*argv, '/');
205   if (progname)
206     progname++;
207   else
208     progname= *argv;
209   opts= 0;
210
211   while ((c= getopt(argc, argv, "dp")) != -1)
212     switch (c) {
213     case 'd':
214       opts|= OPT_DEBUG;
215       break;
216     case 'p':
217       opts|= OPT_POLL;
218       break;
219     default:
220       usage();
221     }
222
223   argc-= optind;
224   argv+= optind;
225
226   inf= NULL;
227   if (argc == 0)
228     inf= stdin;
229   else if (argc == 1)
230     inf= fopen(*argv, "r");
231   else
232     usage();
233
234   if (!inf)
235     aargh("couldn't open input");
236
237   proclog(inf, stdout, opts);
238
239   if (fclose(inf))
240     aargh("fclose input");
241   if (fclose(stdout))
242     aargh("fclose output");
243
244   return 0;
245 }