blob: 434903fe1b5fb8bd743cc7d940e7c2b21b319a39 [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +00002/*
3 * Mini DNS server implementation for busybox
4 *
5 * Copyright (C) 2005 Roberto A. Foglietta (me@roberto.foglietta.name)
6 * Copyright (C) 2005 Odd Arild Olsen (oao at fibula dot no)
7 * Copyright (C) 2003 Paul Sheer
Bernhard Reutner-Fischer2c998512006-04-12 18:09:26 +00008 *
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10 *
11 * Odd Arild Olsen started out with the sheerdns [1] of Paul Sheer and rewrote
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000012 * it into a shape which I believe is both easier to understand and maintain.
13 * I also reused the input buffer for output and removed services he did not
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000014 * need. [1] http://threading.2038bug.com/sheerdns/
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000015 *
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000016 * Some bugfix and minor changes was applied by Roberto A. Foglietta who made
17 * the first porting of oao' scdns to busybox also.
18 */
19
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000020#include "libbb.h"
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +000021#include <syslog.h>
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000022
Denis Vlasenkoc12f5302006-10-06 09:49:47 +000023//#define DEBUG 1
Denis Vlasenko2c916522007-01-12 14:57:37 +000024#define DEBUG 0
Denis Vlasenkoc12f5302006-10-06 09:49:47 +000025
Rob Landleybc68cd12006-03-10 19:22:06 +000026enum {
27 MAX_HOST_LEN = 16, // longest host name allowed is 15
28 IP_STRING_LEN = 18, // .xxx.xxx.xxx.xxx\0
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000029
30//must be strlen('.in-addr.arpa') larger than IP_STRING_LEN
Rob Landleybc68cd12006-03-10 19:22:06 +000031 MAX_NAME_LEN = (IP_STRING_LEN + 13),
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000032
33/* Cannot get bigger packets than 512 per RFC1035
34 In practice this can be set considerably smaller:
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000035 Length of response packet is header (12B) + 2*type(4B) + 2*class(4B) +
36 ttl(4B) + rlen(2B) + r (MAX_NAME_LEN =21B) +
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000037 2*querystring (2 MAX_NAME_LEN= 42B), all together 90 Byte
38*/
Denis Vlasenko081eb712008-03-17 09:02:21 +000039 MAX_PACK_LEN = 512,
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000040
Rob Landleybc68cd12006-03-10 19:22:06 +000041 DEFAULT_TTL = 30, // increase this when not testing?
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000042
Rob Landleybc68cd12006-03-10 19:22:06 +000043 REQ_A = 1,
44 REQ_PTR = 12
45};
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000046
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000047struct dns_head { // the message from client and first part of response mag
48 uint16_t id;
49 uint16_t flags;
50 uint16_t nquer; // accepts 0
51 uint16_t nansw; // 1 in response
52 uint16_t nauth; // 0
53 uint16_t nadd; // 0
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000054};
55struct dns_prop {
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000056 uint16_t type;
57 uint16_t class;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000058};
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000059struct dns_entry { // element of known name, ip address and reversed ip address
60 struct dns_entry *next;
61 char ip[IP_STRING_LEN]; // dotted decimal IP
62 char rip[IP_STRING_LEN]; // length decimal reversed IP
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000063 char name[MAX_HOST_LEN];
64};
65
Denis Vlasenkod3bac032007-03-24 12:13:04 +000066static struct dns_entry *dnsentry;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000067static uint32_t ttl = DEFAULT_TTL;
68
Denis Vlasenkod3bac032007-03-24 12:13:04 +000069static const char *fileconf = "/etc/dnsd.conf";
70
71// Must match getopt32 call
72#define OPT_daemon (option_mask32 & 0x10)
73#define OPT_verbose (option_mask32 & 0x20)
74
75
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000076/*
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000077 * Convert host name from C-string to dns length/string.
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000078 */
Rob Landleya6e131d2006-05-29 06:43:55 +000079static void convname(char *a, uint8_t *q)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000080{
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000081 int i = (q[0] == '.') ? 0 : 1;
Denis Vlasenkoc12f5302006-10-06 09:49:47 +000082 for (; i < MAX_HOST_LEN-1 && *q; i++, q++)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000083 a[i] = tolower(*q);
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000084 a[0] = i - 1;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000085 a[i] = 0;
86}
87
88/*
Bernhard Reutner-Fischerc418d482006-05-31 10:19:51 +000089 * Insert length of substrings instead of dots
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000090 */
Rob Landleya6e131d2006-05-29 06:43:55 +000091static void undot(uint8_t * rip)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000092{
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +000093 int i = 0, s = 0;
Denis Vlasenkoc12f5302006-10-06 09:49:47 +000094 while (rip[i])
95 i++;
96 for (--i; i >= 0; i--) {
97 if (rip[i] == '.') {
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +000098 rip[i] = s;
99 s = 0;
100 } else s++;
101 }
102}
103
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000104/*
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000105 * Read hostname/IP records from file
106 */
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000107static void dnsentryinit(void)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000108{
Denis Vlasenko084266e2008-07-26 23:08:31 +0000109 char *token[2];
Denis Vlasenkoa34f1ed2008-07-20 17:48:59 +0000110 parser_t *parser;
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000111 struct dns_entry *m, *prev;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000112
Denis Vlasenko6cd2d2b2007-01-22 14:06:03 +0000113 prev = dnsentry = NULL;
Denis Vlasenkoa34f1ed2008-07-20 17:48:59 +0000114 parser = config_open(fileconf);
Denis Vlasenko084266e2008-07-26 23:08:31 +0000115 while (config_read(parser, token, 2, 2, "# \t", PARSE_NORMAL)) {
116 unsigned a, b, c, d;
117 /*
118 * Assumes all host names are lower case only
119 * Hostnames with more than one label are not handled correctly.
120 * Presently the dot is copied into name without
121 * converting to a length/string substring for that label.
122 */
123// if (!token[1] || sscanf(token[1], ".%u.%u.%u.%u"+1, &a, &b, &c, &d) != 4)
124 if (sscanf(token[1], ".%u.%u.%u.%u"+1, &a, &b, &c, &d) != 4)
125 continue;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000126
Denis Vlasenko084266e2008-07-26 23:08:31 +0000127 m = xzalloc(sizeof(*m));
128 /*m->next = NULL;*/
129 sprintf(m->ip, ".%u.%u.%u.%u"+1, a, b, c, d);
130 sprintf(m->rip, ".%u.%u.%u.%u", d, c, b, a);
131 undot((uint8_t*)m->rip);
132 convname(m->name, (uint8_t*)token[0]);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000133
Denis Vlasenko084266e2008-07-26 23:08:31 +0000134 if (OPT_verbose)
135 fprintf(stderr, "\tname:%s, ip:%s\n", &(m->name[1]), m->ip);
Denis Vlasenkoa34f1ed2008-07-20 17:48:59 +0000136
Denis Vlasenko084266e2008-07-26 23:08:31 +0000137 if (prev == NULL)
138 dnsentry = m;
139 else
140 prev->next = m;
141 prev = m;
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000142 }
Denis Vlasenko084266e2008-07-26 23:08:31 +0000143 config_close(parser);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000144}
145
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000146/*
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000147 * Look query up in dns records and return answer if found
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000148 * qs is the query string, first byte the string length
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000149 */
Rob Landleya6e131d2006-05-29 06:43:55 +0000150static int table_lookup(uint16_t type, uint8_t * as, uint8_t * qs)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000151{
152 int i;
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000153 struct dns_entry *d = dnsentry;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000154
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000155 do {
Denis Vlasenko91f20ab2007-01-20 01:47:44 +0000156#if DEBUG
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000157 char *p,*q;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000158 q = (char *)&(qs[1]);
159 p = &(d->name[1]);
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000160 fprintf(stderr, "\n%s: %d/%d p:%s q:%s %d",
Denis Vlasenko91f20ab2007-01-20 01:47:44 +0000161 __FUNCTION__, (int)strlen(p), (int)(d->name[0]),
162 p, q, (int)strlen(q));
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000163#endif
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000164 if (type == REQ_A) { /* search by host name */
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000165 for (i = 1; i <= (int)(d->name[0]); i++)
166 if (tolower(qs[i]) != d->name[i])
167 break;
Denis Vlasenkoe9b76e12008-05-22 17:41:01 +0000168 if (i > (int)(d->name[0]) ||
169 (d->name[0] == 1 && d->name[1] == '*')) {
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000170 strcpy((char *)as, d->ip);
Denis Vlasenko91f20ab2007-01-20 01:47:44 +0000171#if DEBUG
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000172 fprintf(stderr, " OK as:%s\n", as);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000173#endif
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000174 return 0;
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000175 }
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000176 } else if (type == REQ_PTR) { /* search by IP-address */
Denis Vlasenkoe9b76e12008-05-22 17:41:01 +0000177 if ((d->name[0] != 1 || d->name[1] != '*') &&
178 !strncmp((char*)&d->rip[1], (char*)&qs[1], strlen(d->rip)-1)) {
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000179 strcpy((char *)as, d->name);
180 return 0;
181 }
182 }
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000183 d = d->next;
184 } while (d);
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000185 return -1;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000186}
187
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000188/*
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000189 * Decode message and generate answer
190 */
Denis Vlasenko081eb712008-03-17 09:02:21 +0000191static int process_packet(uint8_t *buf)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000192{
Denis Vlasenko081eb712008-03-17 09:02:21 +0000193 uint8_t answstr[MAX_NAME_LEN + 1];
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000194 struct dns_head *head;
195 struct dns_prop *qprop;
Denis Vlasenko081eb712008-03-17 09:02:21 +0000196 uint8_t *from, *answb;
197 uint16_t outr_rlen;
198 uint16_t outr_flags;
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000199 uint16_t flags;
Denis Vlasenko081eb712008-03-17 09:02:21 +0000200 int lookup_result, type, packet_len;
201 int querystr_len;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000202
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000203 answstr[0] = '\0';
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000204
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000205 head = (struct dns_head *)buf;
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000206 if (head->nquer == 0) {
207 bb_error_msg("no queries");
Denis Vlasenkob5b45a92007-03-24 13:09:07 +0000208 return -1;
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000209 }
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000210
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000211 if (head->flags & 0x8000) {
212 bb_error_msg("ignoring response packet");
Denis Vlasenkob5b45a92007-03-24 13:09:07 +0000213 return -1;
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000214 }
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000215
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000216 from = (void *)&head[1]; // start of query string
Denis Vlasenko081eb712008-03-17 09:02:21 +0000217//FIXME: strlen of untrusted data??!
218 querystr_len = strlen((char *)from) + 1 + sizeof(struct dns_prop);
219 answb = from + querystr_len; // where to append answer block
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000220
Denis Vlasenko081eb712008-03-17 09:02:21 +0000221 outr_rlen = 0;
222 outr_flags = 0;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000223
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000224 qprop = (struct dns_prop *)(answb - 4);
225 type = ntohs(qprop->type);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000226
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000227 // only let REQ_A and REQ_PTR pass
228 if (!(type == REQ_A || type == REQ_PTR)) {
229 goto empty_packet; /* we can't handle the query type */
230 }
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000231
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000232 if (ntohs(qprop->class) != 1 /* class INET */ ) {
Denis Vlasenko081eb712008-03-17 09:02:21 +0000233 outr_flags = 4; /* not supported */
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000234 goto empty_packet;
235 }
236 /* we only support standard queries */
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000237
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000238 if ((ntohs(head->flags) & 0x7800) != 0)
239 goto empty_packet;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000240
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000241 // We have a standard query
Denis Vlasenko2c916522007-01-12 14:57:37 +0000242 bb_info_msg("%s", (char *)from);
Denis Vlasenko081eb712008-03-17 09:02:21 +0000243 lookup_result = table_lookup(type, answstr, from);
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000244 if (lookup_result != 0) {
Denis Vlasenko081eb712008-03-17 09:02:21 +0000245 outr_flags = 3 | 0x0400; // name do not exist and auth
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000246 goto empty_packet;
247 }
248 if (type == REQ_A) { // return an address
Denis Vlasenko081eb712008-03-17 09:02:21 +0000249 struct in_addr a; // NB! its "struct { unsigned __long__ s_addr; }"
250 uint32_t v32;
251 if (!inet_aton((char*)answstr, &a)) { //dotted dec to long conv
252 outr_flags = 1; /* Frmt err */
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000253 goto empty_packet;
254 }
Denis Vlasenko081eb712008-03-17 09:02:21 +0000255 v32 = a.s_addr; /* in case long != int */
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000256 move_to_unaligned32(answstr, v32);
Denis Vlasenko081eb712008-03-17 09:02:21 +0000257 outr_rlen = 4; // uint32_t IP
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000258 } else
Denis Vlasenko081eb712008-03-17 09:02:21 +0000259 outr_rlen = strlen((char *)answstr) + 1; // a host name
260 outr_flags |= 0x0400; /* authority-bit */
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000261 // we have an answer
262 head->nansw = htons(1);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000263
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000264 // copy query block to answer block
Denis Vlasenko081eb712008-03-17 09:02:21 +0000265 memcpy(answb, from, querystr_len);
266 answb += querystr_len;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000267
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000268 // and append answer rr
Denis Vlasenko081eb712008-03-17 09:02:21 +0000269// FIXME: unaligned accesses??
270 *(uint32_t *) answb = htonl(ttl);
271 answb += 4;
272 *(uint16_t *) answb = htons(outr_rlen);
273 answb += 2;
274 memcpy(answb, answstr, outr_rlen);
275 answb += outr_rlen;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000276
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000277 empty_packet:
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000278
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000279 flags = ntohs(head->flags);
280 // clear rcode and RA, set responsebit and our new flags
Denis Vlasenko081eb712008-03-17 09:02:21 +0000281 flags |= (outr_flags & 0xff80) | 0x8000;
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000282 head->flags = htons(flags);
Denis Vlasenko081eb712008-03-17 09:02:21 +0000283 head->nauth = head->nadd = 0;
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000284 head->nquer = htons(1);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000285
Denis Vlasenko081eb712008-03-17 09:02:21 +0000286 packet_len = answb - buf;
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000287 return packet_len;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000288}
289
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000290/*
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000291 * Exit on signal
292 */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000293static void interrupt(int sig)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000294{
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000295 /* unlink("/var/run/dnsd.lock"); */
Denis Vlasenko2c916522007-01-12 14:57:37 +0000296 bb_error_msg("interrupt, exiting\n");
Denis Vlasenko68404f12008-03-17 09:00:54 +0000297 kill_myself_with_sig(sig);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000298}
299
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000300int dnsd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000301int dnsd_main(int argc UNUSED_PARAM, char **argv)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000302{
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000303 const char *listen_interface = "0.0.0.0";
Denis Vlasenko2c916522007-01-12 14:57:37 +0000304 char *sttl, *sport;
Denis Vlasenko081eb712008-03-17 09:02:21 +0000305 len_and_sockaddr *lsa, *from, *to;
306 unsigned lsa_size;
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000307 int udps;
308 uint16_t port = 53;
Denis Vlasenko081eb712008-03-17 09:02:21 +0000309 /* Paranoid sizing: querystring x2 + ttl + outr_rlen + answstr */
310 /* I'd rather see process_packet() fixed instead... */
311 uint8_t buf[MAX_PACK_LEN * 2 + 4 + 2 + (MAX_NAME_LEN+1)];
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000312
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000313 getopt32(argv, "i:c:t:p:dv", &listen_interface, &fileconf, &sttl, &sport);
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000314 //if (option_mask32 & 0x1) // -i
315 //if (option_mask32 & 0x2) // -c
316 if (option_mask32 & 0x4) // -t
Denis Vlasenko2c916522007-01-12 14:57:37 +0000317 ttl = xatou_range(sttl, 1, 0xffffffff);
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000318 if (option_mask32 & 0x8) // -p
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000319 port = xatou_range(sport, 1, 0xffff);
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000320
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000321 if (OPT_verbose) {
322 bb_info_msg("listen_interface: %s", listen_interface);
323 bb_info_msg("ttl: %d, port: %d", ttl, port);
324 bb_info_msg("fileconf: %s", fileconf);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000325 }
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000326
Denis Vlasenko2c916522007-01-12 14:57:37 +0000327 if (OPT_daemon) {
Denis Vlasenko5a142022007-03-26 13:20:54 +0000328 bb_daemonize_or_rexec(DAEMON_CLOSE_EXTRA_FDS, argv);
Denis Vlasenko5b27fbe2007-03-24 14:06:51 +0000329 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenko2c916522007-01-12 14:57:37 +0000330 logmode = LOGMODE_SYSLOG;
331 }
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000332
Denis Vlasenkoc12f5302006-10-06 09:49:47 +0000333 dnsentryinit();
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000334
335 signal(SIGINT, interrupt);
Denis Vlasenko25591c32008-02-16 22:58:56 +0000336 bb_signals(0
337 /* why? + (1 << SIGPIPE) */
338 + (1 << SIGHUP)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000339#ifdef SIGTSTP
Denis Vlasenko25591c32008-02-16 22:58:56 +0000340 + (1 << SIGTSTP)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000341#endif
342#ifdef SIGURG
Denis Vlasenko25591c32008-02-16 22:58:56 +0000343 + (1 << SIGURG)
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000344#endif
Denis Vlasenko25591c32008-02-16 22:58:56 +0000345 , SIG_IGN);
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000346
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000347 lsa = xdotted2sockaddr(listen_interface, port);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000348 udps = xsocket(lsa->u.sa.sa_family, SOCK_DGRAM, 0);
349 xbind(udps, &lsa->u.sa, lsa->len);
Denis Vlasenko081eb712008-03-17 09:02:21 +0000350 socket_want_pktinfo(udps); /* needed for recv_from_to to work */
351 lsa_size = LSA_LEN_SIZE + lsa->len;
352 from = xzalloc(lsa_size);
353 to = xzalloc(lsa_size);
354
Denis Vlasenko2c916522007-01-12 14:57:37 +0000355 bb_info_msg("Accepting UDP packets on %s",
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000356 xmalloc_sockaddr2dotted(&lsa->u.sa));
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000357
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000358 while (1) {
"Vladimir N. Oleynik"2e5ee8e2006-01-25 14:40:24 +0000359 int r;
Denis Vlasenko081eb712008-03-17 09:02:21 +0000360 /* Try to get *DEST* address (to which of our addresses
361 * this query was directed), and reply from the same address.
362 * Or else we can exhibit usual UDP ugliness:
363 * [ip1.multihomed.ip2] <= query to ip1 <= peer
364 * [ip1.multihomed.ip2] => reply from ip2 => peer (confused) */
365 memcpy(to, lsa, lsa_size);
366 r = recv_from_to(udps, buf, MAX_PACK_LEN + 1, 0, &from->u.sa, &to->u.sa, lsa->len);
367 if (r < 12 || r > MAX_PACK_LEN) {
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000368 bb_error_msg("invalid packet size");
369 continue;
Denis Vlasenko2c916522007-01-12 14:57:37 +0000370 }
Denis Vlasenko081eb712008-03-17 09:02:21 +0000371 if (OPT_verbose)
372 bb_info_msg("Got UDP packet");
373 buf[r] = '\0'; /* paranoia */
Denis Vlasenkod3bac032007-03-24 12:13:04 +0000374 r = process_packet(buf);
375 if (r <= 0)
376 continue;
Denis Vlasenkoe9b76e12008-05-22 17:41:01 +0000377 send_to_from(udps, buf, r, 0, &from->u.sa, &to->u.sa, lsa->len);
Denis Vlasenko2c916522007-01-12 14:57:37 +0000378 }
Denis Vlasenkob5b45a92007-03-24 13:09:07 +0000379 return 0;
"Vladimir N. Oleynik"7b4aa6f2006-01-25 14:19:11 +0000380}