Patch from Denis Vlasenko turning static const int (which gets emitted into
[platform/upstream/busybox.git] / networking / dnsd.c
1 /*
2  * Mini DNS server implementation for busybox
3  *
4  * Copyright (C) 2005 Roberto A. Foglietta (me@roberto.foglietta.name)
5  * Copyright (C) 2005 Odd Arild Olsen (oao at fibula dot no)
6  * Copyright (C) 2003 Paul Sheer
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  *
9  * Odd Arild Olsen started out with the sheerdns [1] of Paul Sheer and rewrote
10  * it into a shape which I believe is both easier to understand and maintain.
11  * I also reused the input buffer for output and removed services he did not
12  * need.  [1] http://threading.2038bug.com/sheerdns/
13  *
14  * Some bugfix and minor changes was applied by Roberto A. Foglietta who made
15  * the first porting of oao' scdns to busybox also.
16  */
17
18 #include <unistd.h>
19 #include <string.h>
20 #include <signal.h>
21 #include <arpa/inet.h>
22 #include <sys/socket.h>
23 #include <ctype.h>
24 #include "libbb.h"
25
26 static char *fileconf = "/etc/dnsd.conf";
27 #define LOCK_FILE       "/var/run/dnsd.lock"
28 #define LOG_FILE        "/var/log/dnsd.log"
29
30 enum {
31         MAX_HOST_LEN = 16,      // longest host name allowed is 15
32         IP_STRING_LEN = 18,     // .xxx.xxx.xxx.xxx\0
33
34 //must be strlen('.in-addr.arpa') larger than IP_STRING_LEN
35         MAX_NAME_LEN = (IP_STRING_LEN + 13),
36
37 /* Cannot get bigger packets than 512 per RFC1035
38    In practice this can be set considerably smaller:
39    Length of response packet is  header (12B) + 2*type(4B) + 2*class(4B) +
40    ttl(4B) + rlen(2B) + r (MAX_NAME_LEN =21B) +
41    2*querystring (2 MAX_NAME_LEN= 42B), all together 90 Byte
42 */
43         MAX_PACK_LEN = 512 + 1,
44
45         DEFAULT_TTL = 30,       // increase this when not testing?
46
47         REQ_A = 1,
48         REQ_PTR = 12
49 };
50
51 struct dns_repl {               // resource record, add 0 or 1 to accepted dns_msg in resp
52         uint16_t rlen;
53         uint8_t *r;             // resource
54         uint16_t flags;
55 };
56
57 struct dns_head {               // the message from client and first part of response mag
58         uint16_t id;
59         uint16_t flags;
60         uint16_t nquer;         // accepts 0
61         uint16_t nansw;         // 1 in response
62         uint16_t nauth;         // 0
63         uint16_t nadd;          // 0
64 };
65 struct dns_prop {
66         uint16_t type;
67         uint16_t class;
68 };
69 struct dns_entry {              // element of known name, ip address and reversed ip address
70         struct dns_entry *next;
71         char ip[IP_STRING_LEN];         // dotted decimal IP
72         char rip[IP_STRING_LEN];        // length decimal reversed IP
73         char name[MAX_HOST_LEN];
74 };
75
76 static struct dns_entry *dnsentry = NULL;
77 static int daemonmode = 0;
78 static uint32_t ttl = DEFAULT_TTL;
79
80 /*
81  * Convert host name from C-string to dns length/string.
82  */
83 static void
84 convname(char *a, uint8_t *q)
85 {
86         int i = (q[0] == '.') ? 0 : 1;
87         for(; i < MAX_HOST_LEN-1 && *q; i++, q++)
88                 a[i] = tolower(*q);
89         a[0] = i - 1;
90         a[i] = 0;
91 }
92
93 /*
94  * Insert length of substrings insetad of dots
95  */
96 static void
97 undot(uint8_t * rip)
98 {
99         int i = 0, s = 0;
100         while(rip[i]) i++;
101         for(--i; i >= 0; i--) {
102                 if(rip[i] == '.') {
103                         rip[i] = s;
104                         s = 0;
105                 } else s++;
106         }
107 }
108
109 /*
110  * Append message to log file
111  */
112 static void
113 log_message(char *filename, char *message)
114 {
115         FILE *logfile;
116         if (!daemonmode)
117                 return;
118         logfile = fopen(filename, "a");
119         if (!logfile)
120                 return;
121         fprintf(logfile, "%s\n", message);
122         fclose(logfile);
123 }
124
125 /*
126  * Read one line of hostname/IP from file
127  * Returns 0 for each valid entry read, -1 at EOF
128  * Assumes all host names are lower case only
129  * Hostnames with more than one label is not handled correctly.
130  * Presently the dot is copied into name without
131  * converting to a length/string substring for that label.
132  */
133
134 static int
135 getfileentry(FILE * fp, struct dns_entry *s, int verb)
136 {
137         unsigned int a,b,c,d;
138         char *r, *name;
139
140 restart:
141         if(!(r = bb_get_line_from_file(fp)))
142                 return -1;
143         while(*r == ' ' || *r == '\t') {
144                 r++;
145                 if(!*r || *r == '#' || *r == '\n')
146                         goto restart; /* skipping empty/blank and commented lines  */
147         }
148         name = r;
149         while(*r != ' ' && *r != '\t')
150                 r++;
151         *r++ = 0;
152         if(sscanf(r,"%u.%u.%u.%u",&a,&b,&c,&d) != 4)
153                         goto restart; /* skipping wrong lines */
154
155         sprintf(s->ip,"%u.%u.%u.%u",a,b,c,d);
156         sprintf(s->rip,".%u.%u.%u.%u",d,c,b,a);
157         undot((uint8_t*)s->rip);
158         convname(s->name,(uint8_t*)name);
159
160         if(verb)
161                 fprintf(stderr,"\tname:%s, ip:%s\n",&(s->name[1]),s->ip);
162
163         return 0; /* warningkiller */
164 }
165
166 /*
167  * Read hostname/IP records from file
168  */
169 static void
170 dnsentryinit(int verb)
171 {
172         FILE *fp;
173         struct dns_entry *m, *prev;
174         prev = dnsentry = NULL;
175
176         if(!(fp = fopen(fileconf, "r")))
177                 bb_perror_msg_and_die("open %s",fileconf);
178
179         while (1) {
180                 if(!(m = (struct dns_entry *)malloc(sizeof(struct dns_entry))))
181                         bb_perror_msg_and_die("malloc dns_entry");
182
183                 m->next = NULL;
184                 if (getfileentry(fp, m, verb))
185                         break;
186
187                 if (prev == NULL)
188                         dnsentry = m;
189                 else
190                         prev->next = m;
191                 prev = m;
192         }
193         fclose(fp);
194 }
195
196
197 /*
198  * Set up UDP socket
199  */
200 static int
201 listen_socket(char *iface_addr, int listen_port)
202 {
203         struct sockaddr_in a;
204         char msg[100];
205         int s;
206         int yes = 1;
207         if ((s = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
208                 bb_perror_msg_and_die("socket() failed");
209 #ifdef SO_REUSEADDR
210         if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&yes, sizeof(yes)) < 0)
211                 bb_perror_msg_and_die("setsockopt() failed");
212 #endif
213         memset(&a, 0, sizeof(a));
214         a.sin_port = htons(listen_port);
215         a.sin_family = AF_INET;
216         if (!inet_aton(iface_addr, &a.sin_addr))
217                 bb_perror_msg_and_die("bad iface address");
218         if (bind(s, (struct sockaddr *)&a, sizeof(a)) < 0)
219                 bb_perror_msg_and_die("bind() failed");
220         listen(s, 50);
221         sprintf(msg, "accepting UDP packets on addr:port %s:%d\n",
222                 iface_addr, (int)listen_port);
223         log_message(LOG_FILE, msg);
224         return s;
225 }
226
227 /*
228  * Look query up in dns records and return answer if found
229  * qs is the query string, first byte the string length
230  */
231 static int
232 table_lookup(uint16_t type, uint8_t * as, uint8_t * qs)
233 {
234         int i;
235         struct dns_entry *d=dnsentry;
236
237         do {
238 #ifdef DEBUG
239                 char *p,*q;
240                 q = (char *)&(qs[1]);
241                 p = &(d->name[1]);
242                 fprintf(stderr, "\ntest: %d <%s> <%s> %d", strlen(p), p, q, strlen(q));
243 #endif
244                 if (type == REQ_A) { /* search by host name */
245                         for(i = 1; i <= (int)(d->name[0]); i++)
246                                 if(tolower(qs[i]) != d->name[i])
247                                         continue;
248 #ifdef DEBUG
249                         fprintf(stderr, " OK");
250 #endif
251                         strcpy((char *)as, d->ip);
252 #ifdef DEBUG
253                         fprintf(stderr, " %s ", as);
254 #endif
255                                         return 0;
256                                 }
257                 else if (type == REQ_PTR) { /* search by IP-address */
258                         if (!strncmp((char*)&d->rip[1], (char*)&qs[1], strlen(d->rip)-1)) {
259                                 strcpy((char *)as, d->name);
260                                 return 0;
261                         }
262                 }
263         } while ((d = d->next) != NULL);
264         return -1;
265 }
266
267
268 /*
269  * Decode message and generate answer
270  */
271 #define eret(s) do { fprintf (stderr, "%s\n", s); return -1; } while (0)
272 static int
273 process_packet(uint8_t * buf)
274 {
275         struct dns_head *head;
276         struct dns_prop *qprop;
277         struct dns_repl outr;
278         void *next, *from, *answb;
279
280         uint8_t answstr[MAX_NAME_LEN + 1];
281         int lookup_result, type, len, packet_len;
282         uint16_t flags;
283
284         answstr[0] = '\0';
285
286         head = (struct dns_head *)buf;
287         if (head->nquer == 0)
288                 eret("no queries");
289
290         if ((head->flags & 0x8000))
291                 eret("ignoring response packet");
292
293         from = (void *)&head[1];        //  start of query string
294         next = answb = from + strlen((char *)&head[1]) + 1 + sizeof(struct dns_prop);   // where to append answer block
295
296         outr.rlen = 0;                  // may change later
297         outr.r = NULL;
298         outr.flags = 0;
299
300         qprop = (struct dns_prop *)(answb - 4);
301         type = ntohs(qprop->type);
302
303         // only let REQ_A and REQ_PTR pass
304         if (!(type == REQ_A || type == REQ_PTR)) {
305                 goto empty_packet;      /* we can't handle the query type */
306         }
307
308         if (ntohs(qprop->class) != 1 /* class INET */ ) {
309                 outr.flags = 4; /* not supported */
310                 goto empty_packet;
311         }
312         /* we only support standard queries */
313
314         if ((ntohs(head->flags) & 0x7800) != 0)
315                 goto empty_packet;
316
317         // We have a standard query
318
319         log_message(LOG_FILE, (char *)head);
320         lookup_result = table_lookup(type, answstr, (uint8_t*)(&head[1]));
321         if (lookup_result != 0) {
322                 outr.flags = 3 | 0x0400;        //name do not exist and auth
323                 goto empty_packet;
324         }
325         if (type == REQ_A) {    // return an address
326                 struct in_addr a;
327                 if (!inet_aton((char*)answstr, &a)) {//dotted dec to long conv
328                         outr.flags = 1; /* Frmt err */
329                         goto empty_packet;
330                 }
331                 memcpy(answstr, &a.s_addr, 4);  // save before a disappears
332                 outr.rlen = 4;                  // uint32_t IP
333         }
334         else
335                 outr.rlen = strlen((char *)answstr) + 1;        // a host name
336         outr.r = answstr;                       // 32 bit ip or a host name
337         outr.flags |= 0x0400;                   /* authority-bit */
338         // we have an answer
339         head->nansw = htons(1);
340
341         // copy query block to answer block
342         len = answb - from;
343         memcpy(answb, from, len);
344         next += len;
345
346         // and append answer rr
347         *(uint32_t *) next = htonl(ttl);
348         next += 4;
349         *(uint16_t *) next = htons(outr.rlen);
350         next += 2;
351         memcpy(next, (void *)answstr, outr.rlen);
352         next += outr.rlen;
353
354       empty_packet:
355
356         flags = ntohs(head->flags);
357         // clear rcode and RA, set responsebit and our new flags
358         flags |= (outr.flags & 0xff80) | 0x8000;
359         head->flags = htons(flags);
360         head->nauth = head->nadd = htons(0);
361         head->nquer = htons(1);
362
363         packet_len = next - (void *)buf;
364         return packet_len;
365 }
366
367 /*
368  * Exit on signal
369  */
370 static void
371 interrupt(int x)
372 {
373         unlink(LOCK_FILE);
374         write(2, "interrupt exiting\n", 18);
375         exit(2);
376 }
377
378 #define is_daemon()  (flags&16)
379 #define is_verbose() (flags&32)
380 //#define DEBUG 1
381
382 int dnsd_main(int argc, char **argv)
383 {
384         int udps;
385         uint16_t port = 53;
386         uint8_t buf[MAX_PACK_LEN];
387         unsigned long flags = 0;
388         char *listen_interface = "0.0.0.0";
389         char *sttl=NULL, *sport=NULL;
390
391         if(argc > 1)
392                 flags = bb_getopt_ulflags(argc, argv, "i:c:t:p:dv", &listen_interface, &fileconf, &sttl, &sport);
393         if(sttl)
394                 if(!(ttl = atol(sttl)))
395                         bb_show_usage();
396         if(sport)
397                 if(!(port = atol(sport)))
398                         bb_show_usage();
399
400         if(is_verbose()) {
401                 fprintf(stderr,"listen_interface: %s\n", listen_interface);
402                 fprintf(stderr,"ttl: %d, port: %d\n", ttl, port);
403                 fprintf(stderr,"fileconf: %s\n", fileconf);
404         }
405
406         if(is_daemon())
407 #if defined(__uClinux__)
408                 /* reexec for vfork() do continue parent */
409                 vfork_daemon_rexec(1, 0, argc, argv, "-d");
410 #else                                                   /* uClinux */
411                 if (daemon(1, 0) < 0) {
412                         bb_perror_msg_and_die("daemon");
413                 }
414 #endif                                                  /* uClinuvx */
415
416         dnsentryinit(is_verbose());
417
418         signal(SIGINT, interrupt);
419         signal(SIGPIPE, SIG_IGN);
420         signal(SIGHUP, SIG_IGN);
421 #ifdef SIGTSTP
422         signal(SIGTSTP, SIG_IGN);
423 #endif
424 #ifdef SIGURG
425         signal(SIGURG, SIG_IGN);
426 #endif
427
428         udps = listen_socket(listen_interface, port);
429         if (udps < 0)
430                 exit(1);
431
432         while (1) {
433                 fd_set fdset;
434                 int r;
435
436                 FD_ZERO(&fdset);
437                 FD_SET(udps, &fdset);
438                 // Block until a message arrives
439                 if((r = select(udps + 1, &fdset, NULL, NULL, NULL)) < 0)
440                         bb_perror_msg_and_die("select error");
441                 else
442                 if(r == 0)
443                         bb_perror_msg_and_die("select spurious return");
444
445                 /* Can this test ever be false? */
446                 if (FD_ISSET(udps, &fdset)) {
447                         struct sockaddr_in from;
448                         int fromlen = sizeof(from);
449                         r = recvfrom(udps, buf, sizeof(buf), 0,
450                                      (struct sockaddr *)&from,
451                                      (void *)&fromlen);
452                         if(is_verbose())
453                                 fprintf(stderr, "\n--- Got UDP  ");
454                         log_message(LOG_FILE, "\n--- Got UDP  ");
455
456                         if (r < 12 || r > 512) {
457                                 bb_error_msg("invalid packet size");
458                                 continue;
459                         }
460                         if (r > 0) {
461                                 r = process_packet(buf);
462                                 if (r > 0)
463                                         sendto(udps, buf,
464                                                r, 0, (struct sockaddr *)&from,
465                                                fromlen);
466                         }
467                 }               // end if
468         }                       // end while
469         return 0;
470 }
471
472