1 /* vi: set sw=4 ts=4: */
3 * Mini DNS server implementation for busybox
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
9 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
11 * Odd Arild Olsen started out with the sheerdns [1] of Paul Sheer and rewrote
12 * 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
14 * need. [1] http://threading.2038bug.com/sheerdns/
16 * Some bugfix and minor changes was applied by Roberto A. Foglietta who made
17 * the first porting of oao' scdns to busybox also.
22 static const char *fileconf = "/etc/dnsd.conf";
23 #define LOCK_FILE "/var/run/dnsd.lock"
25 // Must match getopt32 call
26 #define OPT_daemon (option_mask32 & 0x10)
27 #define OPT_verbose (option_mask32 & 0x20)
33 MAX_HOST_LEN = 16, // longest host name allowed is 15
34 IP_STRING_LEN = 18, // .xxx.xxx.xxx.xxx\0
36 //must be strlen('.in-addr.arpa') larger than IP_STRING_LEN
37 MAX_NAME_LEN = (IP_STRING_LEN + 13),
39 /* Cannot get bigger packets than 512 per RFC1035
40 In practice this can be set considerably smaller:
41 Length of response packet is header (12B) + 2*type(4B) + 2*class(4B) +
42 ttl(4B) + rlen(2B) + r (MAX_NAME_LEN =21B) +
43 2*querystring (2 MAX_NAME_LEN= 42B), all together 90 Byte
45 MAX_PACK_LEN = 512 + 1,
47 DEFAULT_TTL = 30, // increase this when not testing?
53 struct dns_repl { // resource record, add 0 or 1 to accepted dns_msg in resp
55 uint8_t *r; // resource
59 struct dns_head { // the message from client and first part of response mag
62 uint16_t nquer; // accepts 0
63 uint16_t nansw; // 1 in response
71 struct dns_entry { // element of known name, ip address and reversed ip address
72 struct dns_entry *next;
73 char ip[IP_STRING_LEN]; // dotted decimal IP
74 char rip[IP_STRING_LEN]; // length decimal reversed IP
75 char name[MAX_HOST_LEN];
78 static struct dns_entry *dnsentry = NULL;
79 static uint32_t ttl = DEFAULT_TTL;
82 * Convert host name from C-string to dns length/string.
84 static void convname(char *a, uint8_t *q)
86 int i = (q[0] == '.') ? 0 : 1;
87 for (; i < MAX_HOST_LEN-1 && *q; i++, q++)
94 * Insert length of substrings instead of dots
96 static void undot(uint8_t * rip)
101 for (--i; i >= 0; i--) {
110 * Read one line of hostname/IP from file
111 * Returns 0 for each valid entry read, -1 at EOF
112 * Assumes all host names are lower case only
113 * Hostnames with more than one label is not handled correctly.
114 * Presently the dot is copied into name without
115 * converting to a length/string substring for that label.
118 static int getfileentry(FILE * fp, struct dns_entry *s)
120 unsigned int a,b,c,d;
124 r = xmalloc_fgets(fp);
127 while (*r == ' ' || *r == '\t') {
129 if (!*r || *r == '#' || *r == '\n')
130 goto restart; /* skipping empty/blank and commented lines */
133 while (*r != ' ' && *r != '\t')
136 if (sscanf(r, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
137 goto restart; /* skipping wrong lines */
139 sprintf(s->ip, "%u.%u.%u.%u", a, b, c, d);
140 sprintf(s->rip, ".%u.%u.%u.%u", d, c, b, a);
141 undot((uint8_t*)s->rip);
142 convname(s->name,(uint8_t*)name);
145 fprintf(stderr, "\tname:%s, ip:%s\n", &(s->name[1]),s->ip);
151 * Read hostname/IP records from file
153 static void dnsentryinit(void)
156 struct dns_entry *m, *prev;
157 prev = dnsentry = NULL;
159 fp = xfopen(fileconf, "r");
162 m = xmalloc(sizeof(struct dns_entry));
165 if (getfileentry(fp, m))
178 * Look query up in dns records and return answer if found
179 * qs is the query string, first byte the string length
181 static int table_lookup(uint16_t type, uint8_t * as, uint8_t * qs)
184 struct dns_entry *d=dnsentry;
189 q = (char *)&(qs[1]);
191 fprintf(stderr, "\n%s: %d/%d p:%s q:%s %d",
192 __FUNCTION__, (int)strlen(p), (int)(d->name[0]),
193 p, q, (int)strlen(q));
195 if (type == REQ_A) { /* search by host name */
196 for (i = 1; i <= (int)(d->name[0]); i++)
197 if (tolower(qs[i]) != d->name[i])
199 if (i > (int)(d->name[0])) {
201 fprintf(stderr, " OK");
203 strcpy((char *)as, d->ip);
205 fprintf(stderr, " as:%s\n", as);
210 if (type == REQ_PTR) { /* search by IP-address */
211 if (!strncmp((char*)&d->rip[1], (char*)&qs[1], strlen(d->rip)-1)) {
212 strcpy((char *)as, d->name);
223 * Decode message and generate answer
225 #define eret(s) do { fputs(s, stderr); return -1; } while (0)
226 static int process_packet(uint8_t * buf)
228 struct dns_head *head;
229 struct dns_prop *qprop;
230 struct dns_repl outr;
231 void *next, *from, *answb;
233 uint8_t answstr[MAX_NAME_LEN + 1];
234 int lookup_result, type, len, packet_len;
239 head = (struct dns_head *)buf;
240 if (head->nquer == 0)
241 eret("no queries\n");
243 if (head->flags & 0x8000)
244 eret("ignoring response packet\n");
246 from = (void *)&head[1]; // start of query string
247 next = answb = from + strlen((char *)from) + 1 + sizeof(struct dns_prop); // where to append answer block
249 outr.rlen = 0; // may change later
253 qprop = (struct dns_prop *)(answb - 4);
254 type = ntohs(qprop->type);
256 // only let REQ_A and REQ_PTR pass
257 if (!(type == REQ_A || type == REQ_PTR)) {
258 goto empty_packet; /* we can't handle the query type */
261 if (ntohs(qprop->class) != 1 /* class INET */ ) {
262 outr.flags = 4; /* not supported */
265 /* we only support standard queries */
267 if ((ntohs(head->flags) & 0x7800) != 0)
270 // We have a standard query
271 bb_info_msg("%s", (char *)from);
272 lookup_result = table_lookup(type, answstr, (uint8_t*)from);
273 if (lookup_result != 0) {
274 outr.flags = 3 | 0x0400; //name do not exist and auth
277 if (type == REQ_A) { // return an address
279 if (!inet_aton((char*)answstr, &a)) {//dotted dec to long conv
280 outr.flags = 1; /* Frmt err */
283 memcpy(answstr, &a.s_addr, 4); // save before a disappears
284 outr.rlen = 4; // uint32_t IP
287 outr.rlen = strlen((char *)answstr) + 1; // a host name
288 outr.r = answstr; // 32 bit ip or a host name
289 outr.flags |= 0x0400; /* authority-bit */
291 head->nansw = htons(1);
293 // copy query block to answer block
295 memcpy(answb, from, len);
298 // and append answer rr
299 *(uint32_t *) next = htonl(ttl);
301 *(uint16_t *) next = htons(outr.rlen);
303 memcpy(next, (void *)answstr, outr.rlen);
308 flags = ntohs(head->flags);
309 // clear rcode and RA, set responsebit and our new flags
310 flags |= (outr.flags & 0xff80) | 0x8000;
311 head->flags = htons(flags);
312 head->nauth = head->nadd = htons(0);
313 head->nquer = htons(1);
315 packet_len = next - (void *)buf;
322 static void interrupt(int x)
325 bb_error_msg("interrupt, exiting\n");
329 int dnsd_main(int argc, char **argv)
331 char *listen_interface = NULL;
333 len_and_sockaddr *lsa;
336 uint8_t buf[MAX_PACK_LEN];
338 getopt32(argc, argv, "i:c:t:p:dv", &listen_interface, &fileconf, &sttl, &sport);
339 //if (option_mask32 & 0x1) // -i
340 //if (option_mask32 & 0x2) // -c
341 if (option_mask32 & 0x4) // -t
342 ttl = xatou_range(sttl, 1, 0xffffffff);
343 if (option_mask32 & 0x8) // -p
344 port = xatou_range(sttl, 1, 0xffff);
347 bb_info_msg("listen_interface: %s", listen_interface);
348 bb_info_msg("ttl: %d, port: %d", ttl, port);
349 bb_info_msg("fileconf: %s", fileconf);
353 //FIXME: NOMMU will NOT set LOGMODE_SYSLOG!
355 /* reexec for vfork() do continue parent */
356 vfork_daemon_rexec(1, 0, argc, argv, "-d");
360 logmode = LOGMODE_SYSLOG;
365 signal(SIGINT, interrupt);
366 signal(SIGPIPE, SIG_IGN);
367 signal(SIGHUP, SIG_IGN);
369 signal(SIGTSTP, SIG_IGN);
372 signal(SIGURG, SIG_IGN);
375 lsa = host2sockaddr(listen_interface, port);
376 udps = xsocket(lsa->sa.sa_family, SOCK_DGRAM, 0);
377 xbind(udps, &lsa->sa, lsa->len);
378 // xlisten(udps, 50); - ?!! DGRAM sockets are never listened on I think?
379 bb_info_msg("Accepting UDP packets on %s",
380 xmalloc_sockaddr2dotted(&lsa->sa, lsa->len));
387 FD_SET(udps, &fdset);
388 // Block until a message arrives
389 // FIXME: Fantastic. select'ing on just one fd??
390 // Why no just block on it doing recvfrom() ?
391 r = select(udps + 1, &fdset, NULL, NULL, NULL);
393 bb_perror_msg_and_die("select error");
395 bb_perror_msg_and_die("select spurious return");
397 /* Can this test ever be false? - yes */
398 if (FD_ISSET(udps, &fdset)) {
399 socklen_t fromlen = lsa->len;
400 // FIXME: need to get *DEST* address (to which of our addresses
401 // this query was directed), and reply from the same address.
402 // Or else we can exhibit usual UDP ugliness:
403 // [ip1.multihomed.ip2] <= query to ip1 <= peer
404 // [ip1.multihomed.ip2] => reply from ip2 => peer (confused)
405 r = recvfrom(udps, buf, sizeof(buf), 0, &lsa->sa, &fromlen);
407 bb_info_msg("Got UDP packet");
409 if (r < 12 || r > 512) {
410 bb_error_msg("invalid packet size");
415 r = process_packet(buf);
418 sendto(udps, buf, r, 0, &lsa->sa, fromlen);