Factored ICMP structs and defs into icmpdefs.h.
[icmp-dn.git] / src / idnlookup.c
CommitLineData
3d6143ec
DC
1/*
2 * idnlookup - ICMP Domain Name lookup utility for Linux
ecbdf1d6 3 * Should be installed SUID root, even though I don't know if it's secure yet. :-)
3d6143ec
DC
4 * Copyright (C) 2005 Fredrik Tolf <fredrik@dolda2000.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19*/
51a62941
DC
20#include <stdlib.h>
21#include <unistd.h>
22#include <stdio.h>
23#include <string.h>
24#include <errno.h>
3d6143ec 25#include <netdb.h>
51a62941
DC
26#include <sys/socket.h>
27#include <netinet/in.h>
3d6143ec 28#include <netinet/ip.h>
c9d75321 29#include <netinet/ip6.h>
51a62941
DC
30#include <arpa/inet.h>
31#include <sys/types.h>
3d6143ec
DC
32#include <sys/poll.h>
33#include <sys/time.h>
25415ec8 34#ifdef HAVE_CONFIG_H
2269406c 35#include "config.h"
25415ec8 36#endif
51a62941 37
29183b09 38#include "icmpdefs.h"
51a62941 39
3d6143ec
DC
40unsigned char buf[65536];
41
42/* DN decompression not yet implemented, since I don't know where to
43 * begin counting the offset from -- the beginning of the ICMP
44 * payload, or from the beginning of the DN data buffer? */
c9d75321 45void printdn(FILE *f, unsigned char *dnbuf, size_t size, int onlyfirst)
3d6143ec
DC
46{
47 unsigned char *p;
48
49 p = dnbuf;
50 while(p - dnbuf < size) {
51 while(*p != 0) {
52 if(*p & 0xc0) {
53 fprintf(stderr, "domain name decompression not implemented, aborting\n");
54 exit(1);
55 }
9533e44b 56 if((int)*p + (p - dnbuf) >= size) {
57 fprintf(stderr, "malformed domain name\n");
58 return;
59 }
bfd59ca0 60 fprintf(f, "%.*s", (int)*p, p + 1);
3d6143ec 61 p += 1 + (int)*p;
bfd59ca0
DC
62 if(*p != 0)
63 fprintf(f, ".");
3d6143ec
DC
64 }
65 p++;
bfd59ca0 66 fprintf(f, "\n");
c9d75321
DC
67 if(onlyfirst)
68 break;
3d6143ec
DC
69 }
70}
71
72void cksum(void *hdr, size_t len)
73{
74 struct icmphdr *ih;
75 u_int8_t *cb;
76 int i;
9cc7607e 77 int b1, b2;
3d6143ec
DC
78
79 ih = (struct icmphdr *)hdr;
80 cb = (u_int8_t *)hdr;
81 ih->checksum = 0;
82 b1 = b2 = 0;
83 for(i = 0; i < (len & ~1); i += 2) {
84 b1 += cb[i];
85 b2 += cb[i + 1];
86 }
87 if(i & 1)
88 b1 += cb[len - 1];
9cc7607e
DC
89 while(1) {
90 if(b1 >= 256) {
91 b2 += b1 >> 8;
92 b1 &= 0xff;
93 continue;
94 }
95 if(b2 >= 256) {
96 b1 += b2 >> 8;
97 b2 &= 0xff;
98 continue;
99 }
100 break;
101 }
3d6143ec 102 cb = (u_int8_t *)&ih->checksum;
9cc7607e
DC
103 cb[0] = ~(u_int8_t)b1;
104 cb[1] = ~(u_int8_t)b2;
3d6143ec
DC
105}
106
107void usage(void)
108{
c9d75321 109 fprintf(stderr, "usage: idnlookup [-hTa] [-t timeout] host\n");
3d6143ec
DC
110}
111
51a62941
DC
112int main(int argc, char **argv)
113{
114 int ret;
3d6143ec
DC
115 int s, c;
116 int id;
117 int namelen;
118 struct reqhdr req;
119 struct rephdr rep;
120 struct iphdr iphdr;
c9d75321 121 size_t hdrlen;
3d6143ec
DC
122 struct addrinfo *ai, *cai, aihint;
123 struct pollfd pfd;
124 struct timeval tvb, tvc;
125 struct sockaddr_storage name;
c9d75321
DC
126 int timeout, dispttl, onlyfirst;
127 int elapsed, timedout, found;
51a62941 128
3d6143ec 129 timeout = 3000;
e172b003 130 dispttl = 0;
c9d75321
DC
131 onlyfirst = 1;
132 while((c = getopt(argc, argv, "haTt:")) != -1) {
3d6143ec
DC
133 switch(c) {
134 case 't':
135 timeout = atoi(optarg);
136 break;
c9d75321
DC
137 case 'a':
138 onlyfirst = 0;
139 break;
e172b003
DC
140 case 'T':
141 dispttl = 1;
142 break;
3d6143ec
DC
143 case 'h':
144 case '?':
145 case ':':
146 default:
147 usage();
148 exit((c == 'h')?0:1);
149 }
51a62941
DC
150 }
151
3d6143ec
DC
152 if(argc - optind < 1) {
153 usage();
154 exit(1);
155 }
51a62941 156
3d6143ec 157 memset(&aihint, 0, sizeof(aihint));
3d6143ec
DC
158 aihint.ai_socktype = SOCK_RAW;
159 aihint.ai_protocol = IPPROTO_ICMP;
160 ret = getaddrinfo(argv[optind], NULL, &aihint, &ai);
51a62941 161
3d6143ec
DC
162 for(cai = ai; cai != NULL; cai = cai->ai_next) {
163 if((s = socket(cai->ai_family, SOCK_RAW, IPPROTO_ICMP)) < 0) {
164 perror("could not create raw socket");
165 exit(1);
166 }
167
168 id = random() % 65536;
169 memset(&req, 0, sizeof(req));
170 req.type = ICMP_NAMEREQ;
171 req.id = htons(id);
172 cksum(&req, sizeof(req));
173
174 ret = sendto(s, &req, sizeof(req), 0, cai->ai_addr, cai->ai_addrlen);
175 if(ret < 0) {
176 perror("sendto");
177 exit(1);
178 } else if(ret != sizeof(req)) {
179 fprintf(stderr, "socket would not send entire packet\n");
180 exit(1);
181 }
182
c9d75321
DC
183 timedout = 0;
184 found = 0;
3d6143ec
DC
185 gettimeofday(&tvb, NULL);
186 while(1) {
187 pfd.fd = s;
188 pfd.events = POLLIN;
189 gettimeofday(&tvc, NULL);
190 elapsed = ((tvc.tv_sec - tvb.tv_sec) * 1000) + ((tvc.tv_usec - tvb.tv_usec) / 1000);
899ad19e 191 if(elapsed >= timeout) {
c9d75321
DC
192 timedout = 1;
193 break;
3d6143ec
DC
194 }
195 ret = poll(&pfd, 1, timeout - elapsed);
196 if(ret < 0) {
197 perror("idnlookup: reading data");
198 exit(1);
199 }
200
201 if(pfd.revents & POLLIN) {
202 namelen = sizeof(name);
203 ret = recvfrom(s, buf, sizeof(buf), 0, (struct sockaddr *)&name, &namelen);
204 if(ret < 0) {
205 perror("idnlookup: receiving data");
206 exit(1);
207 }
208
209 if(name.ss_family != cai->ai_addr->sa_family)
210 continue;
211 if(name.ss_family == AF_INET) {
212 if(memcmp(&(((struct sockaddr_in *)&name)->sin_addr), &(((struct sockaddr_in *)cai->ai_addr)->sin_addr), sizeof(struct in_addr)))
213 continue;
c9d75321
DC
214 if(ret < sizeof(iphdr) + sizeof(rep))
215 continue;
216 hdrlen = sizeof(iphdr);
217 memcpy(&iphdr, buf, sizeof(iphdr));
218 if(iphdr.protocol != IPPROTO_ICMP)
219 continue;
3d6143ec
DC
220 } else if(name.ss_family == AF_INET6) {
221 if(memcmp(&(((struct sockaddr_in6 *)&name)->sin6_addr), &(((struct sockaddr_in6 *)cai->ai_addr)->sin6_addr), sizeof(struct in6_addr)))
222 continue;
c9d75321
DC
223 if(ret < sizeof(rep))
224 continue;
225 hdrlen = 0;
3d6143ec
DC
226 } else {
227 continue;
228 }
229
c9d75321 230 memcpy(&rep, buf + hdrlen, sizeof(rep));
3d6143ec
DC
231 if(rep.type != ICMP_NAMEREP)
232 continue;
233 if((ntohs(rep.id) != id) || (ntohs(rep.seq != 0)))
234 continue;
235
c9d75321 236 found = 1;
3d6143ec
DC
237 break;
238 }
239 }
240
3d6143ec 241 close(s);
c9d75321
DC
242
243 if(found) {
244 if(dispttl)
245 printf("%i\n", ntohl(rep.ttl));
246 printdn(stdout, buf + hdrlen + sizeof(rep), ret - hdrlen - sizeof(rep), onlyfirst);
247 break;
248 }
249 }
250
251 if(timedout) {
252 fprintf(stderr, "idnlookup: timeout\n");
253 exit(1);
51a62941 254 }
3d6143ec 255
51a62941
DC
256 return(0);
257}
ecbdf1d6
DC
258
259/*
260 * Local Variables:
9155cd45 261 * compile-command: "make CFLAGS='-Wall -g'"
ecbdf1d6
DC
262 * End:
263 */