aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/ndb/dnsquery.c
blob: ca52010bd8f413662105f7d8ef8dd93562052565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <u.h>
#include <libc.h>
#include <bio.h>
#include <ndb.h>
#include <thread.h>
#include <9pclient.h>
#include "dns.h"
#include "ip.h"

void
usage(void)
{
	fprint(2, "usage: dnsquery [-x dns]\n");
	threadexitsall("usage");
}

void
threadmain(int argc, char *argv[])
{
	CFid *fd;
	int n, len;
	Biobuf in;
	char line[1024], *lp, *p, *np, *dns;
	char buf[1024];

	dns = "dns";
	ARGBEGIN{
	case 'x':
		dns = EARGF(usage());
		break;
	default:
		usage();
	}ARGEND;

	if(argc)
		usage();

	fd = nsopen(dns, nil, "dns", ORDWR);
	if(fd == nil)
		sysfatal("open %s!dns: %r", dns);

	Binit(&in, 0, OREAD);
	for(print("> "); lp = Brdline(&in, '\n'); print("> ")){
		n = Blinelen(&in)-1;
		strncpy(line, lp, n);
		line[n] = 0;
		if (n<=1)
			continue;
		/* default to an "ip" request if alpha, "ptr" if numeric */
		if (strchr(line, ' ')==0) {
			if(strcmp(ipattr(line), "ip") == 0) {
				strcat(line, " ptr");
				n += 4;
			} else {
				strcat(line, " ip");
				n += 3;
			}
		}

		/* inverse queries may need to be permuted */
		if(n > 4 && strcmp("ptr", &line[n-3]) == 0
		&& strstr(line, "IN-ADDR") == 0 && strstr(line, "in-addr") == 0){
			for(p = line; *p; p++)
				if(*p == ' '){
					*p = '.';
					break;
				}
			np = buf;
			len = 0;
			while(p >= line){
				len++;
				p--;
				if(*p == '.'){
					memmove(np, p+1, len);
					np += len;
					len = 0;
				}
			}
			memmove(np, p+1, len);
			np += len;
			strcpy(np, "in-addr.arpa ptr");
			strcpy(line, buf);
			n = strlen(line);
		}

		fsseek(fd, 0, 0);
		if(fswrite(fd, line, n) < 0) {
			print("!%r\n");
			continue;
		}
		fsseek(fd, 0, 0);
		while((n = fsread(fd, buf, sizeof(buf))) > 0){
			buf[n] = 0;
			print("%s\n", buf);
		}
	}
	threadexitsall(0);
}