Undo errant checkin of fanf's changes.
[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
50/* maximum number of concurrent DNS queries */
b8b163f9 51#define MAXPENDING 1000
81453aec 52
53/* maximum length of a line */
54#define MAXLINE 1024
55
940356bd 56/* option flags */
57#define OPT_DEBUG 1
58#define OPT_POLL 2
59
81453aec 60static const char *progname;
61
7c409027 62#define guard_null(str) ((str) ? (str) : "")
9715e5f4 63
d0bed398 64#define sensible_ctype(type,ch) (type((unsigned char)(ch)))
65 /* isfoo() functions from ctype.h can't safely be fed char - blech ! */
66
5a0be244 67static void msg(const char *fmt, ...) {
68 va_list al;
69
70 fprintf(stderr, "%s: ", progname);
71 va_start(al,fmt);
72 vfprintf(stderr, fmt, al);
73 va_end(al);
74 fputc('\n',stderr);
75}
76
9715e5f4 77static void aargh(const char *cause) {
78 const char *why = strerror(errno);
79 if (!why) why = "Unknown error";
80 msg("%s: %s (%d)", cause, why, errno);
81453aec 81 exit(1);
82}
83
84/*
85 * Parse the IP address and convert to a reverse domain name.
86 */
940356bd 87static char *ipaddr2domain(char *start, char **addr, char **rest) {
81453aec 88 static char buf[30]; /* "123.123.123.123.in-addr.arpa.\0" */
89 char *ptrs[5];
90 int i;
91
940356bd 92 ptrs[0]= start;
93retry:
d0bed398 94 while (!sensible_ctype(isdigit,*ptrs[0]))
940356bd 95 if (!*ptrs[0]++) {
96 strcpy(buf, "invalid.");
97 *addr= *rest= NULL;
98 return buf;
99 }
bb149f75 100 for (i= 1; i < 5; i++) {
101 ptrs[i]= ptrs[i-1];
d0bed398 102 while (sensible_ctype(isdigit,*ptrs[i]++));
103 if ((i == 4 && !sensible_ctype(isspace,ptrs[i][-1])) ||
bb149f75 104 (i != 4 && ptrs[i][-1] != '.') ||
105 (ptrs[i]-ptrs[i-1] > 4)) {
106 ptrs[0]= ptrs[i]-1;
940356bd 107 goto retry;
bb149f75 108 }
81453aec 109 }
110 sprintf(buf, "%.*s.%.*s.%.*s.%.*s.in-addr.arpa.",
111 ptrs[4]-ptrs[3]-1, ptrs[3],
112 ptrs[3]-ptrs[2]-1, ptrs[2],
113 ptrs[2]-ptrs[1]-1, ptrs[1],
114 ptrs[1]-ptrs[0]-1, ptrs[0]);
115 *addr= ptrs[0];
116 *rest= ptrs[4]-1;
940356bd 117 return buf;
81453aec 118}
119
bb149f75 120static void printline(FILE *outf, char *start, char *addr, char *rest, char *domain) {
81453aec 121 if (domain)
bb149f75 122 fprintf(outf, "%.*s%s%s", addr - start, start, domain, rest);
81453aec 123 else
bb149f75 124 fputs(start, outf);
125 if (ferror(outf)) aargh("write output");
81453aec 126}
127
128typedef struct logline {
129 struct logline *next;
130 char *start, *addr, *rest;
131 adns_query query;
132} logline;
133
bb149f75 134static logline *readline(FILE *inf, adns_state adns, int opts) {
81453aec 135 static char buf[MAXLINE];
136 char *str;
137 logline *line;
138
bb149f75 139 if (fgets(buf, MAXLINE, inf)) {
81453aec 140 str= malloc(sizeof(*line) + strlen(buf) + 1);
141 if (!str) aargh("malloc");
142 line= (logline*)str;
143 line->next= NULL;
144 line->start= str+sizeof(logline);
145 strcpy(line->start, buf);
bb149f75 146 str= ipaddr2domain(line->start, &line->addr, &line->rest);
940356bd 147 if (opts & OPT_DEBUG)
7c409027 148 msg("submitting %.*s -> %s", line->rest-line->addr, guard_null(line->addr), str);
81453aec 149 if (adns_submit(adns, str, adns_r_ptr,
150 adns_qf_quoteok_cname|adns_qf_cname_loose,
151 NULL, &line->query))
152 aargh("adns_submit");
153 return line;
154 }
bb149f75 155 if (!feof(inf))
81453aec 156 aargh("fgets");
157 return NULL;
158}
159
bb149f75 160static void proclog(FILE *inf, FILE *outf, int opts) {
81453aec 161 int eof, err, len;
162 adns_state adns;
163 adns_answer *answer;
164 logline *head, *tail, *line;
165
940356bd 166 errno= adns_init(&adns, (opts & OPT_DEBUG) ? adns_if_debug : 0, 0);
81453aec 167 if (errno) aargh("adns_init");
bb149f75 168 head= tail= readline(inf, adns, opts);
81453aec 169 len= 1; eof= 0;
170 while (head) {
bb149f75 171 if (opts & OPT_DEBUG)
172 msg("%d in queue; checking %.*s", len,
7c409027 173 head->rest-head->addr, guard_null(head->addr));
e32d0f9e 174 if (eof || len > MAXPENDING) {
940356bd 175 if (opts & OPT_POLL)
176 err= adns_wait_poll(adns, &head->query, &answer, NULL);
177 else
178 err= adns_wait(adns, &head->query, &answer, NULL);
e32d0f9e 179 } else {
81453aec 180 err= adns_check(adns, &head->query, &answer, NULL);
e32d0f9e 181 }
226c5eef 182 if (err != EAGAIN) {
bb149f75 183 printline(outf, head->start, head->addr, head->rest,
184 answer->status == adns_s_ok ? *answer->rrs.str : NULL);
185 line= head; head= head->next;
186 free(line); free(answer);
187 len--;
81453aec 188 }
189 if (!eof) {
bb149f75 190 line= readline(inf, adns, opts);
81453aec 191 if (!line)
192 eof= 1;
193 else {
194 if (!head)
bb149f75 195 head= line;
81453aec 196 else
bb149f75 197 tail->next= line;
198 tail= line;
81453aec 199 len++;
200 }
201 }
202 }
203 adns_finish(adns);
204}
205
bb149f75 206static void usage(void) {
b8b163f9 207 fprintf(stderr, "usage: %s [-d] [-p] [logfile]\n", progname);
bb149f75 208 exit(1);
209}
210
23d78b27 211int main(int argc, char *argv[]) {
b8b163f9 212 int c, opts;
bb149f75 213 FILE *inf;
940356bd 214
bb149f75 215 progname= strrchr(*argv, '/');
216 if (progname)
217 progname++;
218 else
219 progname= *argv;
564bdb3f 220 opts= 0;
b8b163f9 221
222 while ((c= getopt(argc, argv, "dp")) != -1)
940356bd 223 switch (c) {
224 case 'd':
bb149f75 225 opts|= OPT_DEBUG;
940356bd 226 break;
227 case 'p':
bb149f75 228 opts|= OPT_POLL;
940356bd 229 break;
230 default:
bb149f75 231 usage();
940356bd 232 }
940356bd 233
bb149f75 234 argc-= optind;
235 argv+= optind;
236
237 inf= NULL;
238 if (argc == 0)
239 inf= stdin;
240 else if (argc == 1)
241 inf= fopen(*argv, "r");
242 else
243 usage();
244
245 if (!inf)
246 aargh("couldn't open input");
247
b8b163f9 248 proclog(inf, stdout, opts);
bb149f75 249
250 if (fclose(inf))
251 aargh("fclose input");
252 if (fclose(stdout))
253 aargh("fclose output");
940356bd 254
81453aec 255 return 0;
256}