3 * - a replacement for the Apache logresolve program using adns
7 * Copyright (C) 1999 Tony Finch <dot@dotat.at>
8 * Copyright (C) 1999-2000 Ian Jackson <ian@davenant.greenend.org.uk>
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>
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)
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.
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.
28 * This version was originally supplied by Tony Finch, but has been
29 * modified by Ian Jackson as it was incorporated into adns and
33 static const char * const cvsid =
34 "$Id: adnslogres.c,v 1.9 2000/03/20 01:50:08 ian Exp $";
36 #include <sys/types.h>
48 /* maximum number of concurrent DNS queries */
49 #define MAXPENDING 1000
51 /* maximum length of a line */
58 static const char *progname;
60 #define msg(fmt, args...) fprintf(stderr, "%s: " fmt "\n", progname, ##args)
62 #define sensible_ctype(type,ch) (type((unsigned char)(ch)))
63 /* isfoo() functions from ctype.h can't safely be fed char - blech ! */
65 static void aargh(const char *cause) {
66 const char *why = strerror(errno);
67 if (!why) why = "Unknown error";
68 msg("%s: %s (%d)", cause, why, errno);
73 * Parse the IP address and convert to a reverse domain name.
75 static char *ipaddr2domain(char *start, char **addr, char **rest) {
76 static char buf[30]; /* "123.123.123.123.in-addr.arpa.\0" */
82 while (!sensible_ctype(isdigit,*ptrs[0]))
84 strcpy(buf, "invalid.");
88 for (i= 1; i < 5; i++) {
90 while (sensible_ctype(isdigit,*ptrs[i]++));
91 if ((i == 4 && !sensible_ctype(isspace,ptrs[i][-1])) ||
92 (i != 4 && ptrs[i][-1] != '.') ||
93 (ptrs[i]-ptrs[i-1] > 4)) {
98 sprintf(buf, "%.*s.%.*s.%.*s.%.*s.in-addr.arpa.",
99 ptrs[4]-ptrs[3]-1, ptrs[3],
100 ptrs[3]-ptrs[2]-1, ptrs[2],
101 ptrs[2]-ptrs[1]-1, ptrs[1],
102 ptrs[1]-ptrs[0]-1, ptrs[0]);
108 static void printline(FILE *outf, char *start, char *addr, char *rest, char *domain) {
110 fprintf(outf, "%.*s%s%s", addr - start, start, domain, rest);
113 if (ferror(outf)) aargh("write output");
116 typedef struct logline {
117 struct logline *next;
118 char *start, *addr, *rest;
122 static logline *readline(FILE *inf, adns_state adns, int opts) {
123 static char buf[MAXLINE];
127 if (fgets(buf, MAXLINE, inf)) {
128 str= malloc(sizeof(*line) + strlen(buf) + 1);
129 if (!str) aargh("malloc");
132 line->start= str+sizeof(logline);
133 strcpy(line->start, buf);
134 str= ipaddr2domain(line->start, &line->addr, &line->rest);
135 if (opts & OPT_DEBUG)
136 msg("submitting %.*s -> %s", line->rest-line->addr, line->addr, str);
137 if (adns_submit(adns, str, adns_r_ptr,
138 adns_qf_quoteok_cname|adns_qf_cname_loose,
140 aargh("adns_submit");
148 static void proclog(FILE *inf, FILE *outf, int opts) {
152 logline *head, *tail, *line;
154 errno= adns_init(&adns, (opts & OPT_DEBUG) ? adns_if_debug : 0, 0);
155 if (errno) aargh("adns_init");
156 head= tail= readline(inf, adns, opts);
159 if (opts & OPT_DEBUG)
160 msg("%d in queue; checking %.*s", len,
161 head->rest-head->addr, head->addr);
162 if (eof || len > MAXPENDING)
164 err= adns_wait_poll(adns, &head->query, &answer, NULL);
166 err= adns_wait(adns, &head->query, &answer, NULL);
168 err= adns_check(adns, &head->query, &answer, NULL);
170 printline(outf, head->start, head->addr, head->rest,
171 answer->status == adns_s_ok ? *answer->rrs.str : NULL);
172 line= head; head= head->next;
173 free(line); free(answer);
177 line= readline(inf, adns, opts);
193 static void usage(void) {
194 fprintf(stderr, "usage: %s [-d] [-p] [logfile]\n", progname);
198 int main(int argc, char *argv[]) {
202 progname= strrchr(*argv, '/');
209 while ((c= getopt(argc, argv, "dp")) != -1)
228 inf= fopen(*argv, "r");
233 aargh("couldn't open input");
235 proclog(inf, stdout, opts);
238 aargh("fclose input");
240 aargh("fclose output");