lpr: add more accurate comments
[oweals/busybox.git] / networking / dnsd.c
index 9ca4105d388c473cad32a94df1bab46b92a45043..cb62d2081ed5268af4770911e6cf0f8b4bde72b0 100644 (file)
@@ -1,9 +1,11 @@
+/* vi: set sw=4 ts=4: */
 /*
  * Mini DNS server implementation for busybox
  *
  * Copyright (C) 2005 Roberto A. Foglietta (me@roberto.foglietta.name)
  * Copyright (C) 2005 Odd Arild Olsen (oao at fibula dot no)
  * Copyright (C) 2003 Paul Sheer
+ *
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  *
  * Odd Arild Olsen started out with the sheerdns [1] of Paul Sheer and rewrote
  * the first porting of oao' scdns to busybox also.
  */
 
-#include <unistd.h>
-#include <string.h>
-#include <signal.h>
-#include <arpa/inet.h>
-#include <sys/socket.h>
-#include <ctype.h>
 #include "libbb.h"
+#include <syslog.h>
 
-static char *fileconf = "/etc/dnsd.conf";
-#define LOCK_FILE       "/var/run/dnsd.lock"
-#define LOG_FILE        "/var/log/dnsd.log"
+//#define DEBUG 1
+#define DEBUG 0
 
 enum {
        MAX_HOST_LEN = 16,      // longest host name allowed is 15
@@ -40,7 +36,7 @@ enum {
    ttl(4B) + rlen(2B) + r (MAX_NAME_LEN =21B) +
    2*querystring (2 MAX_NAME_LEN= 42B), all together 90 Byte
 */
-       MAX_PACK_LEN = 512 + 1,
+       MAX_PACK_LEN = 512,
 
        DEFAULT_TTL = 30,       // increase this when not testing?
 
@@ -48,12 +44,6 @@ enum {
        REQ_PTR = 12
 };
 
-struct dns_repl {              // resource record, add 0 or 1 to accepted dns_msg in resp
-       uint16_t rlen;
-       uint8_t *r;             // resource
-       uint16_t flags;
-};
-
 struct dns_head {              // the message from client and first part of response mag
        uint16_t id;
        uint16_t flags;
@@ -73,115 +63,104 @@ struct dns_entry {                // element of known name, ip address and reversed ip address
        char name[MAX_HOST_LEN];
 };
 
-static struct dns_entry *dnsentry = NULL;
-static int daemonmode = 0;
+static struct dns_entry *dnsentry;
 static uint32_t ttl = DEFAULT_TTL;
 
+static const char *fileconf = "/etc/dnsd.conf";
+
+// Must match getopt32 call
+#define OPT_daemon  (option_mask32 & 0x10)
+#define OPT_verbose (option_mask32 & 0x20)
+
+
 /*
  * Convert host name from C-string to dns length/string.
  */
-static void
-convname(char *a, uint8_t *q)
+static void convname(char *a, uint8_t *q)
 {
        int i = (q[0] == '.') ? 0 : 1;
-       for(; i < MAX_HOST_LEN-1 && *q; i++, q++)
+       for (; i < MAX_HOST_LEN-1 && *q; i++, q++)
                a[i] = tolower(*q);
        a[0] = i - 1;
        a[i] = 0;
 }
 
 /*
- * Insert length of substrings insetad of dots
+ * Insert length of substrings instead of dots
  */
-static void
-undot(uint8_t * rip)
+static void undot(uint8_t * rip)
 {
        int i = 0, s = 0;
-       while(rip[i]) i++;
-       for(--i; i >= 0; i--) {
-               if(rip[i] == '.') {
+       while (rip[i])
+               i++;
+       for (--i; i >= 0; i--) {
+               if (rip[i] == '.') {
                        rip[i] = s;
                        s = 0;
                } else s++;
        }
 }
 
-/*
- * Append message to log file
- */
-static void
-log_message(char *filename, char *message)
-{
-       FILE *logfile;
-       if (!daemonmode)
-               return;
-       logfile = fopen(filename, "a");
-       if (!logfile)
-               return;
-       fprintf(logfile, "%s\n", message);
-       fclose(logfile);
-}
-
 /*
  * Read one line of hostname/IP from file
  * Returns 0 for each valid entry read, -1 at EOF
  * Assumes all host names are lower case only
- * Hostnames with more than one label is not handled correctly.
+ * Hostnames with more than one label are not handled correctly.
  * Presently the dot is copied into name without
  * converting to a length/string substring for that label.
  */
-
-static int
-getfileentry(FILE * fp, struct dns_entry *s, int verb)
+static int getfileentry(FILE * fp, struct dns_entry *s)
 {
        unsigned int a,b,c,d;
-       char *r, *name;
+       char *line, *r, *name;
 
-restart:
-       if(!(r = bb_get_line_from_file(fp)))
+ restart:
+       line = r = xmalloc_fgets(fp);
+       if (!r)
                return -1;
-       while(*r == ' ' || *r == '\t') {
+       while (*r == ' ' || *r == '\t') {
                r++;
-               if(!*r || *r == '#' || *r == '\n')
+               if (!*r || *r == '#' || *r == '\n') {
+                       free(line);
                        goto restart; /* skipping empty/blank and commented lines  */
+               }
        }
        name = r;
-       while(*r != ' ' && *r != '\t')
+       while (*r != ' ' && *r != '\t')
                r++;
-       *r++ = 0;
-       if(sscanf(r,"%u.%u.%u.%u",&a,&b,&c,&d) != 4)
-                       goto restart; /* skipping wrong lines */
+       *r++ = '\0';
+       if (sscanf(r, ".%u.%u.%u.%u"+1, &a, &b, &c, &d) != 4) {
+               free(line);
+               goto restart; /* skipping wrong lines */
+       }
 
-       sprintf(s->ip,"%u.%u.%u.%u",a,b,c,d);
-       sprintf(s->rip,".%u.%u.%u.%u",d,c,b,a);
+       sprintf(s->ip, ".%u.%u.%u.%u"+1, a, b, c, d);
+       sprintf(s->rip, ".%u.%u.%u.%u", d, c, b, a);
        undot((uint8_t*)s->rip);
-       convname(s->name,(uint8_t*)name);
+       convname(s->name, (uint8_t*)name);
 
-       if(verb)
-               fprintf(stderr,"\tname:%s, ip:%s\n",&(s->name[1]),s->ip);
+       if (OPT_verbose)
+               fprintf(stderr, "\tname:%s, ip:%s\n", &(s->name[1]),s->ip);
 
-       return 0; /* warningkiller */
+       free(line);
+       return 0;
 }
 
 /*
  * Read hostname/IP records from file
  */
-static void
-dnsentryinit(int verb)
+static void dnsentryinit(void)
 {
        FILE *fp;
        struct dns_entry *m, *prev;
-       prev = dnsentry = NULL;
 
-       if(!(fp = fopen(fileconf, "r")))
-               bb_perror_msg_and_die("open %s",fileconf);
+       prev = dnsentry = NULL;
+       fp = xfopen(fileconf, "r");
 
        while (1) {
-               if(!(m = (struct dns_entry *)malloc(sizeof(struct dns_entry))))
-                       bb_perror_msg_and_die("malloc dns_entry");
-
-               m->next = NULL;
-               if (getfileentry(fp, m, verb))
+               m = xzalloc(sizeof(*m));
+               /*m->next = NULL;*/
+               if (getfileentry(fp, m))
                        break;
 
                if (prev == NULL)
@@ -193,109 +172,81 @@ dnsentryinit(int verb)
        fclose(fp);
 }
 
-
-/*
- * Set up UDP socket
- */
-static int
-listen_socket(char *iface_addr, int listen_port)
-{
-       struct sockaddr_in a;
-       char msg[100];
-       int s;
-       int yes = 1;
-       if ((s = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
-               bb_perror_msg_and_die("socket() failed");
-#ifdef SO_REUSEADDR
-       if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&yes, sizeof(yes)) < 0)
-               bb_perror_msg_and_die("setsockopt() failed");
-#endif
-       memset(&a, 0, sizeof(a));
-       a.sin_port = htons(listen_port);
-       a.sin_family = AF_INET;
-       if (!inet_aton(iface_addr, &a.sin_addr))
-               bb_perror_msg_and_die("bad iface address");
-       if (bind(s, (struct sockaddr *)&a, sizeof(a)) < 0)
-               bb_perror_msg_and_die("bind() failed");
-       listen(s, 50);
-       sprintf(msg, "accepting UDP packets on addr:port %s:%d\n",
-               iface_addr, (int)listen_port);
-       log_message(LOG_FILE, msg);
-       return s;
-}
-
 /*
  * Look query up in dns records and return answer if found
  * qs is the query string, first byte the string length
  */
-static int
-table_lookup(uint16_t type, uint8_t * as, uint8_t * qs)
+static int table_lookup(uint16_t type, uint8_t * as, uint8_t * qs)
 {
        int i;
-       struct dns_entry *d=dnsentry;
+       struct dns_entry *d = dnsentry;
 
        do {
-#ifdef DEBUG
+#if DEBUG
                char *p,*q;
                q = (char *)&(qs[1]);
                p = &(d->name[1]);
-               fprintf(stderr, "\ntest: %d <%s> <%s> %d", strlen(p), p, q, strlen(q));
+               fprintf(stderr, "\n%s: %d/%d p:%s q:%s %d",
+                       __FUNCTION__, (int)strlen(p), (int)(d->name[0]),
+                       p, q, (int)strlen(q));
 #endif
                if (type == REQ_A) { /* search by host name */
-                       for(i = 1; i <= (int)(d->name[0]); i++)
-                               if(tolower(qs[i]) != d->name[i])
-                                       continue;
-#ifdef DEBUG
-                       fprintf(stderr, " OK");
+                       for (i = 1; i <= (int)(d->name[0]); i++)
+                               if (tolower(qs[i]) != d->name[i])
+                                       break;
+                       if (i > (int)(d->name[0])) {
+                               strcpy((char *)as, d->ip);
+#if DEBUG
+                               fprintf(stderr, " OK as:%s\n", as);
 #endif
-                       strcpy((char *)as, d->ip);
-#ifdef DEBUG
-                       fprintf(stderr, " %s ", as);
-#endif
-                                       return 0;
-                               }
-               else if (type == REQ_PTR) { /* search by IP-address */
+                               return 0;
+                       }
+               } else if (type == REQ_PTR) { /* search by IP-address */
                        if (!strncmp((char*)&d->rip[1], (char*)&qs[1], strlen(d->rip)-1)) {
                                strcpy((char *)as, d->name);
                                return 0;
                        }
                }
-       } while ((d = d->next) != NULL);
+               d = d->next;
+       } while (d);
        return -1;
 }
 
-
 /*
  * Decode message and generate answer
  */
-#define eret(s) do { fprintf (stderr, "%s\n", s); return -1; } while (0)
-static int
-process_packet(uint8_t * buf)
+static int process_packet(uint8_t *buf)
 {
+       uint8_t answstr[MAX_NAME_LEN + 1];
        struct dns_head *head;
        struct dns_prop *qprop;
-       struct dns_repl outr;
-       void *next, *from, *answb;
-
-       uint8_t answstr[MAX_NAME_LEN + 1];
-       int lookup_result, type, len, packet_len;
+       uint8_t *from, *answb;
+       uint16_t outr_rlen;
+       uint16_t outr_flags;
        uint16_t flags;
+       int lookup_result, type, packet_len;
+       int querystr_len;
 
        answstr[0] = '\0';
 
        head = (struct dns_head *)buf;
-       if (head->nquer == 0)
-               eret("no queries");
+       if (head->nquer == 0) {
+               bb_error_msg("no queries");
+               return -1;
+       }
 
-       if ((head->flags & 0x8000))
-               eret("ignoring response packet");
+       if (head->flags & 0x8000) {
+               bb_error_msg("ignoring response packet");
+               return -1;
+       }
 
        from = (void *)&head[1];        //  start of query string
-       next = answb = from + strlen((char *)&head[1]) + 1 + sizeof(struct dns_prop);   // where to append answer block
+//FIXME: strlen of untrusted data??!
+       querystr_len = strlen((char *)from) + 1 + sizeof(struct dns_prop);
+       answb = from + querystr_len;   // where to append answer block
 
-       outr.rlen = 0;                  // may change later
-       outr.r = NULL;
-       outr.flags = 0;
+       outr_rlen = 0;
+       outr_flags = 0;
 
        qprop = (struct dns_prop *)(answb - 4);
        type = ntohs(qprop->type);
@@ -306,7 +257,7 @@ process_packet(uint8_t * buf)
        }
 
        if (ntohs(qprop->class) != 1 /* class INET */ ) {
-               outr.flags = 4; /* not supported */
+               outr_flags = 4; /* not supported */
                goto empty_packet;
        }
        /* we only support standard queries */
@@ -315,158 +266,142 @@ process_packet(uint8_t * buf)
                goto empty_packet;
 
        // We have a standard query
-
-       log_message(LOG_FILE, (char *)head);
-       lookup_result = table_lookup(type, answstr, (uint8_t*)(&head[1]));
+       bb_info_msg("%s", (char *)from);
+       lookup_result = table_lookup(type, answstr, from);
        if (lookup_result != 0) {
-               outr.flags = 3 | 0x0400;        //name do not exist and auth
+               outr_flags = 3 | 0x0400;        // name do not exist and auth
                goto empty_packet;
        }
        if (type == REQ_A) {    // return an address
-               struct in_addr a;
-               if (!inet_aton((char*)answstr, &a)) {//dotted dec to long conv
-                       outr.flags = 1; /* Frmt err */
+               struct in_addr a; // NB! its "struct { unsigned __long__ s_addr; }"
+               uint32_t v32;
+               if (!inet_aton((char*)answstr, &a)) { //dotted dec to long conv
+                       outr_flags = 1; /* Frmt err */
                        goto empty_packet;
                }
-               memcpy(answstr, &a.s_addr, 4);  // save before a disappears
-               outr.rlen = 4;                  // uint32_t IP
-       }
-       else
-               outr.rlen = strlen((char *)answstr) + 1;        // a host name
-       outr.r = answstr;                       // 32 bit ip or a host name
-       outr.flags |= 0x0400;                   /* authority-bit */
+               v32 = a.s_addr; /* in case long != int */
+               memcpy(answstr, &v32, 4);
+               outr_rlen = 4;                  // uint32_t IP
+       } else
+               outr_rlen = strlen((char *)answstr) + 1;        // a host name
+       outr_flags |= 0x0400;                   /* authority-bit */
        // we have an answer
        head->nansw = htons(1);
 
        // copy query block to answer block
-       len = answb - from;
-       memcpy(answb, from, len);
-       next += len;
+       memcpy(answb, from, querystr_len);
+       answb += querystr_len;
 
        // and append answer rr
-       *(uint32_t *) next = htonl(ttl);
-       next += 4;
-       *(uint16_t *) next = htons(outr.rlen);
-       next += 2;
-       memcpy(next, (void *)answstr, outr.rlen);
-       next += outr.rlen;
+// FIXME: unaligned accesses??
+       *(uint32_t *) answb = htonl(ttl);
+       answb += 4;
+       *(uint16_t *) answb = htons(outr_rlen);
+       answb += 2;
+       memcpy(answb, answstr, outr_rlen);
+       answb += outr_rlen;
 
     empty_packet:
+ empty_packet:
 
        flags = ntohs(head->flags);
        // clear rcode and RA, set responsebit and our new flags
-       flags |= (outr.flags & 0xff80) | 0x8000;
+       flags |= (outr_flags & 0xff80) | 0x8000;
        head->flags = htons(flags);
-       head->nauth = head->nadd = htons(0);
+       head->nauth = head->nadd = 0;
        head->nquer = htons(1);
 
-       packet_len = next - (void *)buf;
+       packet_len = answb - buf;
        return packet_len;
 }
 
 /*
  * Exit on signal
  */
-static void
-interrupt(int x)
+static void interrupt(int sig)
 {
-       unlink(LOCK_FILE);
-       write(2, "interrupt exiting\n", 18);
-       exit(2);
+       /* unlink("/var/run/dnsd.lock"); */
+       bb_error_msg("interrupt, exiting\n");
+       kill_myself_with_sig(sig);
 }
 
-#define is_daemon()  (flags&16)
-#define is_verbose() (flags&32)
-//#define DEBUG 1
-
-int dnsd_main(int argc, char **argv)
+int dnsd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
+int dnsd_main(int argc ATTRIBUTE_UNUSED, char **argv)
 {
+       const char *listen_interface = "0.0.0.0";
+       char *sttl, *sport;
+       len_and_sockaddr *lsa, *from, *to;
+       unsigned lsa_size;
        int udps;
        uint16_t port = 53;
-       uint8_t buf[MAX_PACK_LEN];
-       unsigned long flags = 0;
-       char *listen_interface = "0.0.0.0";
-       char *sttl=NULL, *sport=NULL;
-
-       if(argc > 1)
-               flags = bb_getopt_ulflags(argc, argv, "i:c:t:p:dv", &listen_interface, &fileconf, &sttl, &sport);
-       if(sttl)
-               if(!(ttl = atol(sttl)))
-                       bb_show_usage();
-       if(sport)
-               if(!(port = atol(sport)))
-                       bb_show_usage();
-
-       if(is_verbose()) {
-               fprintf(stderr,"listen_interface: %s\n", listen_interface);
-               fprintf(stderr,"ttl: %d, port: %d\n", ttl, port);
-               fprintf(stderr,"fileconf: %s\n", fileconf);
+       /* Paranoid sizing: querystring x2 + ttl + outr_rlen + answstr */
+       /* I'd rather see process_packet() fixed instead... */
+       uint8_t buf[MAX_PACK_LEN * 2 + 4 + 2 + (MAX_NAME_LEN+1)];
+
+       getopt32(argv, "i:c:t:p:dv", &listen_interface, &fileconf, &sttl, &sport);
+       //if (option_mask32 & 0x1) // -i
+       //if (option_mask32 & 0x2) // -c
+       if (option_mask32 & 0x4) // -t
+               ttl = xatou_range(sttl, 1, 0xffffffff);
+       if (option_mask32 & 0x8) // -p
+               port = xatou_range(sport, 1, 0xffff);
+
+       if (OPT_verbose) {
+               bb_info_msg("listen_interface: %s", listen_interface);
+               bb_info_msg("ttl: %d, port: %d", ttl, port);
+               bb_info_msg("fileconf: %s", fileconf);
        }
 
-       if(is_daemon())
-#if defined(__uClinux__)
-               /* reexec for vfork() do continue parent */
-               vfork_daemon_rexec(1, 0, argc, argv, "-d");
-#else                                                  /* uClinux */
-               if (daemon(1, 0) < 0) {
-                       bb_perror_msg_and_die("daemon");
-               }
-#endif                                                 /* uClinuvx */
+       if (OPT_daemon) {
+               bb_daemonize_or_rexec(DAEMON_CLOSE_EXTRA_FDS, argv);
+               openlog(applet_name, LOG_PID, LOG_DAEMON);
+               logmode = LOGMODE_SYSLOG;
+       }
 
-       dnsentryinit(is_verbose());
+       dnsentryinit();
 
        signal(SIGINT, interrupt);
-       signal(SIGPIPE, SIG_IGN);
-       signal(SIGHUP, SIG_IGN);
+       bb_signals(0
+               /* why? + (1 << SIGPIPE) */
+               + (1 << SIGHUP)
 #ifdef SIGTSTP
-       signal(SIGTSTP, SIG_IGN);
+               + (1 << SIGTSTP)
 #endif
 #ifdef SIGURG
-       signal(SIGURG, SIG_IGN);
+               + (1 << SIGURG)
 #endif
+               , SIG_IGN);
 
-       udps = listen_socket(listen_interface, port);
-       if (udps < 0)
-               exit(1);
+       lsa = xdotted2sockaddr(listen_interface, port);
+       udps = xsocket(lsa->u.sa.sa_family, SOCK_DGRAM, 0);
+       xbind(udps, &lsa->u.sa, lsa->len);
+       socket_want_pktinfo(udps); /* needed for recv_from_to to work */
+       lsa_size = LSA_LEN_SIZE + lsa->len;
+       from = xzalloc(lsa_size);
+       to = xzalloc(lsa_size);
+
+       bb_info_msg("Accepting UDP packets on %s",
+                       xmalloc_sockaddr2dotted(&lsa->u.sa));
 
        while (1) {
-               fd_set fdset;
                int r;
-
-               FD_ZERO(&fdset);
-               FD_SET(udps, &fdset);
-               // Block until a message arrives
-               if((r = select(udps + 1, &fdset, NULL, NULL, NULL)) < 0)
-                       bb_perror_msg_and_die("select error");
-               else
-               if(r == 0)
-                       bb_perror_msg_and_die("select spurious return");
-
-               /* Can this test ever be false? */
-               if (FD_ISSET(udps, &fdset)) {
-                       struct sockaddr_in from;
-                       int fromlen = sizeof(from);
-                       r = recvfrom(udps, buf, sizeof(buf), 0,
-                                    (struct sockaddr *)&from,
-                                    (void *)&fromlen);
-                       if(is_verbose())
-                               fprintf(stderr, "\n--- Got UDP  ");
-                       log_message(LOG_FILE, "\n--- Got UDP  ");
-
-                       if (r < 12 || r > 512) {
-                               bb_error_msg("invalid packet size");
-                               continue;
-                       }
-                       if (r > 0) {
-                               r = process_packet(buf);
-                               if (r > 0)
-                                       sendto(udps, buf,
-                                              r, 0, (struct sockaddr *)&from,
-                                              fromlen);
-                       }
-               }               // end if
-       }                       // end while
+               /* Try to get *DEST* address (to which of our addresses
+                * this query was directed), and reply from the same address.
+                * Or else we can exhibit usual UDP ugliness:
+                * [ip1.multihomed.ip2] <=  query to ip1  <= peer
+                * [ip1.multihomed.ip2] => reply from ip2 => peer (confused) */
+               memcpy(to, lsa, lsa_size);
+               r = recv_from_to(udps, buf, MAX_PACK_LEN + 1, 0, &from->u.sa, &to->u.sa, lsa->len);
+               if (r < 12 || r > MAX_PACK_LEN) {
+                       bb_error_msg("invalid packet size");
+                       continue;
+               }
+               if (OPT_verbose)
+                       bb_info_msg("Got UDP packet");
+               buf[r] = '\0'; /* paranoia */
+               r = process_packet(buf);
+               if (r <= 0)
+                       continue;
+               send_to_from(udps, buf, r, 0, &to->u.sa, &from->u.sa, lsa->len);
+       }
        return 0;
 }
-
-