3 * - a replacement for the Apache logresolve program using adns
7 * Copyright (C) 1999 Tony Finch <dot@dotat.at>
8 * Copyright (C) 1999 Ian Jackson <ian@davenant.greenend.org.uk>
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>
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.
32 static const char * const cvsid =
33 "$Id: adnslogres.c,v 1.8 2000/03/20 01:46:07 ian Exp $";
35 #include <sys/types.h>
47 /* maximum number of concurrent DNS queries */
48 #define MAXPENDING 1000
50 /* maximum length of a line */
57 static const char *progname;
59 #define msg(fmt, args...) fprintf(stderr, "%s: " fmt "\n", progname, ##args)
61 #define sensible_ctype(type,ch) (type((unsigned char)(ch)))
62 /* isfoo() functions from ctype.h can't safely be fed char - blech ! */
64 static void aargh(const char *cause) {
65 const char *why = strerror(errno);
66 if (!why) why = "Unknown error";
67 msg("%s: %s (%d)", cause, why, errno);
72 * Parse the IP address and convert to a reverse domain name.
74 static char *ipaddr2domain(char *start, char **addr, char **rest) {
75 static char buf[30]; /* "123.123.123.123.in-addr.arpa.\0" */
81 while (!sensible_ctype(isdigit,*ptrs[0]))
83 strcpy(buf, "invalid.");
87 for (i= 1; i < 5; i++) {
89 while (sensible_ctype(isdigit,*ptrs[i]++));
90 if ((i == 4 && !sensible_ctype(isspace,ptrs[i][-1])) ||
91 (i != 4 && ptrs[i][-1] != '.') ||
92 (ptrs[i]-ptrs[i-1] > 4)) {
97 sprintf(buf, "%.*s.%.*s.%.*s.%.*s.in-addr.arpa.",
98 ptrs[4]-ptrs[3]-1, ptrs[3],
99 ptrs[3]-ptrs[2]-1, ptrs[2],
100 ptrs[2]-ptrs[1]-1, ptrs[1],
101 ptrs[1]-ptrs[0]-1, ptrs[0]);
107 static void printline(FILE *outf, char *start, char *addr, char *rest, char *domain) {
109 fprintf(outf, "%.*s%s%s", addr - start, start, domain, rest);
112 if (ferror(outf)) aargh("write output");
115 typedef struct logline {
116 struct logline *next;
117 char *start, *addr, *rest;
121 static logline *readline(FILE *inf, adns_state adns, int opts) {
122 static char buf[MAXLINE];
126 if (fgets(buf, MAXLINE, inf)) {
127 str= malloc(sizeof(*line) + strlen(buf) + 1);
128 if (!str) aargh("malloc");
131 line->start= str+sizeof(logline);
132 strcpy(line->start, buf);
133 str= ipaddr2domain(line->start, &line->addr, &line->rest);
134 if (opts & OPT_DEBUG)
135 msg("submitting %.*s -> %s", line->rest-line->addr, line->addr, str);
136 if (adns_submit(adns, str, adns_r_ptr,
137 adns_qf_quoteok_cname|adns_qf_cname_loose,
139 aargh("adns_submit");
147 static void proclog(FILE *inf, FILE *outf, int opts) {
151 logline *head, *tail, *line;
153 errno= adns_init(&adns, (opts & OPT_DEBUG) ? adns_if_debug : 0, 0);
154 if (errno) aargh("adns_init");
155 head= tail= readline(inf, adns, opts);
158 if (opts & OPT_DEBUG)
159 msg("%d in queue; checking %.*s", len,
160 head->rest-head->addr, head->addr);
161 if (eof || len > MAXPENDING)
163 err= adns_wait_poll(adns, &head->query, &answer, NULL);
165 err= adns_wait(adns, &head->query, &answer, NULL);
167 err= adns_check(adns, &head->query, &answer, NULL);
169 printline(outf, head->start, head->addr, head->rest,
170 answer->status == adns_s_ok ? *answer->rrs.str : NULL);
171 line= head; head= head->next;
172 free(line); free(answer);
176 line= readline(inf, adns, opts);
192 static void usage(void) {
193 fprintf(stderr, "usage: %s [-d] [-p] [logfile]\n", progname);
197 int main(int argc, char *argv[]) {
201 progname= strrchr(*argv, '/');
208 while ((c= getopt(argc, argv, "dp")) != -1)
227 inf= fopen(*argv, "r");
232 aargh("couldn't open input");
234 proclog(inf, stdout, opts);
237 aargh("fclose input");
239 aargh("fclose output");