+ * Add list of tested platforms in INSTALL file.
[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
d942707d 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>
d942707d 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>
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
940356bd 54/* option flags */
55#define OPT_DEBUG 1
56#define OPT_POLL 2
57
81453aec 58static const char *progname;
59
9715e5f4 60#define msg(fmt, args...) fprintf(stderr, "%s: " fmt "\n", progname, ##args)
7c409027 61#define guard_null(str) ((str) ? (str) : "")
9715e5f4 62
d0bed398 63#define sensible_ctype(type,ch) (type((unsigned char)(ch)))
64 /* isfoo() functions from ctype.h can't safely be fed char - blech ! */
65
9715e5f4 66static 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);
81453aec 70 exit(1);
71}
72
73/*
74 * Parse the IP address and convert to a reverse domain name.
75 */
940356bd 76static char *ipaddr2domain(char *start, char **addr, char **rest) {
81453aec 77 static char buf[30]; /* "123.123.123.123.in-addr.arpa.\0" */
78 char *ptrs[5];
79 int i;
80
940356bd 81 ptrs[0]= start;
82retry:
d0bed398 83 while (!sensible_ctype(isdigit,*ptrs[0]))
940356bd 84 if (!*ptrs[0]++) {
85 strcpy(buf, "invalid.");
86 *addr= *rest= NULL;
87 return buf;
88 }
bb149f75 89 for (i= 1; i < 5; i++) {
90 ptrs[i]= ptrs[i-1];
d0bed398 91 while (sensible_ctype(isdigit,*ptrs[i]++));
92 if ((i == 4 && !sensible_ctype(isspace,ptrs[i][-1])) ||
bb149f75 93 (i != 4 && ptrs[i][-1] != '.') ||
94 (ptrs[i]-ptrs[i-1] > 4)) {
95 ptrs[0]= ptrs[i]-1;
940356bd 96 goto retry;
bb149f75 97 }
81453aec 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;
940356bd 106 return buf;
81453aec 107}
108
bb149f75 109static void printline(FILE *outf, char *start, char *addr, char *rest, char *domain) {
81453aec 110 if (domain)
bb149f75 111 fprintf(outf, "%.*s%s%s", addr - start, start, domain, rest);
81453aec 112 else
bb149f75 113 fputs(start, outf);
114 if (ferror(outf)) aargh("write output");
81453aec 115}
116
117typedef struct logline {
118 struct logline *next;
119 char *start, *addr, *rest;
120 adns_query query;
121} logline;
122
bb149f75 123static logline *readline(FILE *inf, adns_state adns, int opts) {
81453aec 124 static char buf[MAXLINE];
125 char *str;
126 logline *line;
127
bb149f75 128 if (fgets(buf, MAXLINE, inf)) {
81453aec 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);
bb149f75 135 str= ipaddr2domain(line->start, &line->addr, &line->rest);
940356bd 136 if (opts & OPT_DEBUG)
7c409027 137 msg("submitting %.*s -> %s", line->rest-line->addr, guard_null(line->addr), str);
81453aec 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 }
bb149f75 144 if (!feof(inf))
81453aec 145 aargh("fgets");
146 return NULL;
147}
148
bb149f75 149static void proclog(FILE *inf, FILE *outf, int opts) {
81453aec 150 int eof, err, len;
151 adns_state adns;
152 adns_answer *answer;
153 logline *head, *tail, *line;
154
940356bd 155 errno= adns_init(&adns, (opts & OPT_DEBUG) ? adns_if_debug : 0, 0);
81453aec 156 if (errno) aargh("adns_init");
bb149f75 157 head= tail= readline(inf, adns, opts);
81453aec 158 len= 1; eof= 0;
159 while (head) {
bb149f75 160 if (opts & OPT_DEBUG)
161 msg("%d in queue; checking %.*s", len,
7c409027 162 head->rest-head->addr, guard_null(head->addr));
e32d0f9e 163 if (eof || len > MAXPENDING) {
940356bd 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);
e32d0f9e 168 } else {
81453aec 169 err= adns_check(adns, &head->query, &answer, NULL);
e32d0f9e 170 }
226c5eef 171 if (err != EAGAIN) {
bb149f75 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--;
81453aec 177 }
178 if (!eof) {
bb149f75 179 line= readline(inf, adns, opts);
81453aec 180 if (!line)
181 eof= 1;
182 else {
183 if (!head)
bb149f75 184 head= line;
81453aec 185 else
bb149f75 186 tail->next= line;
187 tail= line;
81453aec 188 len++;
189 }
190 }
191 }
192 adns_finish(adns);
193}
194
bb149f75 195static void usage(void) {
196 fprintf(stderr, "usage: %s [-d] [-p] [logfile]\n", progname);
197 exit(1);
198}
199
23d78b27 200int main(int argc, char *argv[]) {
940356bd 201 int c, opts;
bb149f75 202 FILE *inf;
940356bd 203
bb149f75 204 progname= strrchr(*argv, '/');
205 if (progname)
206 progname++;
207 else
208 progname= *argv;
940356bd 209 opts= 0;
210
bb149f75 211 while ((c= getopt(argc, argv, "dp")) != -1)
940356bd 212 switch (c) {
213 case 'd':
bb149f75 214 opts|= OPT_DEBUG;
940356bd 215 break;
216 case 'p':
bb149f75 217 opts|= OPT_POLL;
940356bd 218 break;
219 default:
bb149f75 220 usage();
940356bd 221 }
940356bd 222
bb149f75 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");
940356bd 243
81453aec 244 return 0;
245}