Initial checkin from my copy of GNU WWW CVS.
[adns] / client / adnslogres.c
CommitLineData
81453aec 1/*
2 * adnslogres.c
3 * - a replacement for the Apache logresolve program using adns
4 */
5/*
23d78b27 6 * This file is
b8b163f9 7 * Copyright (C) 1999 Tony Finch <dot@dotat.at>
2658c305 8 * Copyright (C) 1999-2000 Ian Jackson <ian@davenant.greenend.org.uk>
d942707d 9 *
10 * It is part of adns, which is
2658c305 11 * Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
b8b163f9 12 * Copyright (C) 1999 Tony Finch <dot@dotat.at>
81453aec 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,
23d78b27 26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 *
2658c305 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.
81453aec 31 */
32
33static const char * const cvsid =
34 "$Id$";
35
36#include <sys/types.h>
37#include <sys/time.h>
38
940356bd 39#include <unistd.h>
81453aec 40#include <string.h>
41#include <stdlib.h>
42#include <stdio.h>
43#include <ctype.h>
44#include <errno.h>
5a0be244 45#include <stdarg.h>
81453aec 46
5a0be244 47#include "config.h"
81453aec 48#include "adns.h"
49
67a57aae 50#ifdef ADNS_REGRESS_TEST
51# include "hredirect.h"
52#endif
53
81453aec 54/* maximum number of concurrent DNS queries */
295cf525 55#define MAXMAXPENDING 64000
56#define DEFMAXPENDING 2000
81453aec 57
58/* maximum length of a line */
59#define MAXLINE 1024
60
940356bd 61/* option flags */
62#define OPT_DEBUG 1
63#define OPT_POLL 2
64
67a57aae 65static const char *const progname= "adnslogres";
62fa243d 66static const char *config_text;
81453aec 67
7c409027 68#define guard_null(str) ((str) ? (str) : "")
9715e5f4 69
d0bed398 70#define sensible_ctype(type,ch) (type((unsigned char)(ch)))
71 /* isfoo() functions from ctype.h can't safely be fed char - blech ! */
72
5a0be244 73static void msg(const char *fmt, ...) {
74 va_list al;
75
76 fprintf(stderr, "%s: ", progname);
77 va_start(al,fmt);
78 vfprintf(stderr, fmt, al);
79 va_end(al);
80 fputc('\n',stderr);
81}
82
9715e5f4 83static void aargh(const char *cause) {
84 const char *why = strerror(errno);
85 if (!why) why = "Unknown error";
86 msg("%s: %s (%d)", cause, why, errno);
81453aec 87 exit(1);
88}
89
90/*
91 * Parse the IP address and convert to a reverse domain name.
92 */
940356bd 93static char *ipaddr2domain(char *start, char **addr, char **rest) {
81453aec 94 static char buf[30]; /* "123.123.123.123.in-addr.arpa.\0" */
95 char *ptrs[5];
96 int i;
97
940356bd 98 ptrs[0]= start;
99retry:
d0bed398 100 while (!sensible_ctype(isdigit,*ptrs[0]))
940356bd 101 if (!*ptrs[0]++) {
102 strcpy(buf, "invalid.");
103 *addr= *rest= NULL;
104 return buf;
105 }
bb149f75 106 for (i= 1; i < 5; i++) {
107 ptrs[i]= ptrs[i-1];
d0bed398 108 while (sensible_ctype(isdigit,*ptrs[i]++));
109 if ((i == 4 && !sensible_ctype(isspace,ptrs[i][-1])) ||
bb149f75 110 (i != 4 && ptrs[i][-1] != '.') ||
111 (ptrs[i]-ptrs[i-1] > 4)) {
112 ptrs[0]= ptrs[i]-1;
940356bd 113 goto retry;
bb149f75 114 }
81453aec 115 }
116 sprintf(buf, "%.*s.%.*s.%.*s.%.*s.in-addr.arpa.",
117 ptrs[4]-ptrs[3]-1, ptrs[3],
118 ptrs[3]-ptrs[2]-1, ptrs[2],
119 ptrs[2]-ptrs[1]-1, ptrs[1],
120 ptrs[1]-ptrs[0]-1, ptrs[0]);
121 *addr= ptrs[0];
122 *rest= ptrs[4]-1;
940356bd 123 return buf;
81453aec 124}
125
bb149f75 126static void printline(FILE *outf, char *start, char *addr, char *rest, char *domain) {
81453aec 127 if (domain)
bb149f75 128 fprintf(outf, "%.*s%s%s", addr - start, start, domain, rest);
81453aec 129 else
bb149f75 130 fputs(start, outf);
131 if (ferror(outf)) aargh("write output");
81453aec 132}
133
134typedef struct logline {
135 struct logline *next;
136 char *start, *addr, *rest;
137 adns_query query;
138} logline;
139
bb149f75 140static logline *readline(FILE *inf, adns_state adns, int opts) {
81453aec 141 static char buf[MAXLINE];
142 char *str;
143 logline *line;
144
bb149f75 145 if (fgets(buf, MAXLINE, inf)) {
81453aec 146 str= malloc(sizeof(*line) + strlen(buf) + 1);
147 if (!str) aargh("malloc");
148 line= (logline*)str;
149 line->next= NULL;
150 line->start= str+sizeof(logline);
151 strcpy(line->start, buf);
bb149f75 152 str= ipaddr2domain(line->start, &line->addr, &line->rest);
940356bd 153 if (opts & OPT_DEBUG)
7c409027 154 msg("submitting %.*s -> %s", line->rest-line->addr, guard_null(line->addr), str);
81453aec 155 if (adns_submit(adns, str, adns_r_ptr,
156 adns_qf_quoteok_cname|adns_qf_cname_loose,
157 NULL, &line->query))
158 aargh("adns_submit");
159 return line;
160 }
bb149f75 161 if (!feof(inf))
81453aec 162 aargh("fgets");
163 return NULL;
164}
165
295cf525 166static void proclog(FILE *inf, FILE *outf, int maxpending, int opts) {
81453aec 167 int eof, err, len;
168 adns_state adns;
169 adns_answer *answer;
170 logline *head, *tail, *line;
62fa243d 171 adns_initflags initflags;
81453aec 172
62fa243d 173 initflags= (opts & OPT_DEBUG) ? adns_if_debug : 0;
174 if (config_text) {
175 errno= adns_init_strcfg(&adns, initflags, stderr, config_text);
176 } else {
177 errno= adns_init(&adns, initflags, 0);
178 }
81453aec 179 if (errno) aargh("adns_init");
bb149f75 180 head= tail= readline(inf, adns, opts);
81453aec 181 len= 1; eof= 0;
182 while (head) {
295cf525 183 while (head) {
184 if (opts & OPT_DEBUG)
185 msg("%d in queue; checking %.*s", len,
186 head->rest-head->addr, guard_null(head->addr));
67a57aae 187 if (eof || len >= maxpending) {
295cf525 188 if (opts & OPT_POLL)
189 err= adns_wait_poll(adns, &head->query, &answer, NULL);
190 else
191 err= adns_wait(adns, &head->query, &answer, NULL);
192 } else {
193 err= adns_check(adns, &head->query, &answer, NULL);
194 }
195 if (err == EAGAIN) break;
67a57aae 196 if (err) {
197 fprintf(stderr, "%s: adns_wait/check: %s", progname, strerror(err));
198 exit(1);
199 }
bb149f75 200 printline(outf, head->start, head->addr, head->rest,
201 answer->status == adns_s_ok ? *answer->rrs.str : NULL);
202 line= head; head= head->next;
67a57aae 203 free(line);
204 free(answer);
bb149f75 205 len--;
81453aec 206 }
207 if (!eof) {
bb149f75 208 line= readline(inf, adns, opts);
295cf525 209 if (line) {
210 if (!head) head= line;
211 else tail->next= line;
212 tail= line; len++;
213 } else {
81453aec 214 eof= 1;
81453aec 215 }
216 }
217 }
218 adns_finish(adns);
219}
220
bb149f75 221static void usage(void) {
62fa243d 222 fprintf(stderr, "usage: %s [-d] [-p] [-c concurrency] [-C config] [logfile]\n",
223 progname);
bb149f75 224 exit(1);
225}
226
23d78b27 227int main(int argc, char *argv[]) {
295cf525 228 int c, opts, maxpending;
229 extern char *optarg;
bb149f75 230 FILE *inf;
940356bd 231
295cf525 232 maxpending= DEFMAXPENDING;
233 opts= 0;
62fa243d 234 while ((c= getopt(argc, argv, "c:C:dp")) != -1)
940356bd 235 switch (c) {
295cf525 236 case 'c':
237 maxpending= atoi(optarg);
238 if (maxpending < 1 || maxpending > MAXMAXPENDING) {
239 fprintf(stderr, "%s: unfeasible concurrency %d\n", progname, maxpending);
240 exit(1);
241 }
242 break;
62fa243d 243 case 'C':
244 config_text= optarg;
245 break;
940356bd 246 case 'd':
bb149f75 247 opts|= OPT_DEBUG;
940356bd 248 break;
249 case 'p':
bb149f75 250 opts|= OPT_POLL;
940356bd 251 break;
252 default:
bb149f75 253 usage();
940356bd 254 }
940356bd 255
bb149f75 256 argc-= optind;
257 argv+= optind;
258
259 inf= NULL;
260 if (argc == 0)
261 inf= stdin;
262 else if (argc == 1)
263 inf= fopen(*argv, "r");
264 else
265 usage();
266
267 if (!inf)
268 aargh("couldn't open input");
269
295cf525 270 proclog(inf, stdout, maxpending, opts);
bb149f75 271
272 if (fclose(inf))
273 aargh("fclose input");
274 if (fclose(stdout))
275 aargh("fclose output");
940356bd 276
81453aec 277 return 0;
278}