]> code.citadel.org Git - citadel.git/blobdiff - citadel/locate_host.c
- pass -Wcast-qual to gcc
[citadel.git] / citadel / locate_host.c
index a18d6e99a39c406659b194c81b2458120aa04dac..7e30b46f2aea6732dc06b88b44812ef6a38ce889 100644 (file)
@@ -1,8 +1,14 @@
 /*
- * locate the originating host
  * $Id$
+ *
+ * locate the originating host
+ *
  */
 
+#ifdef DLL_EXPORT
+#define IN_LIBCIT
+#endif
+
 #include "sysdep.h"
 #include <stdlib.h>
 #include <unistd.h>
 #include <limits.h>
 #include <netdb.h>
 #include <string.h>
-#ifdef HAVE_PTHREAD_H
-#include <pthread.h>
-#endif
 #include "citadel.h"
 #include "server.h"
+#include "dynloader.h"
 #include "locate_host.h"
+#include "sysdep_decls.h"
 #include "config.h"
+#include "tools.h"
 
-void locate_host(char *tbuf)
+void locate_host(char *tbuf, size_t n, const struct in_addr *addr)
 {
-       struct sockaddr_in cs;
-       struct hostent *ch, *ch2;
-       int len;
-       char *i;
+       struct hostent *ch;
+       const char *i;
+       char *j;
        int a1, a2, a3, a4;
 
-       len = sizeof(cs);
-       if (getpeername(CC->client_socket, (struct sockaddr *) &cs, &len) < 0) {
-               strcpy(tbuf, config.c_fqdn);
-               return;
-       }
+       lprintf(9, "locate_host() called\n");
+
 #ifdef HAVE_NONREENTRANT_NETDB
        begin_critical_section(S_NETDB);
 #endif
 
-       if ((ch = gethostbyaddr((char *) &cs.sin_addr, sizeof(cs.sin_addr),
-                               AF_INET)) == NULL) {
+       if ((ch = gethostbyaddr((const char *) addr, sizeof(*addr), AF_INET)) ==
+           NULL) {
              bad_dns:
-               i = (char *) &cs.sin_addr;
+               i = (const char *) addr;
                a1 = ((*i++) & 0xff);
                a2 = ((*i++) & 0xff);
                a3 = ((*i++) & 0xff);
                a4 = ((*i++) & 0xff);
-               sprintf(tbuf, "%d.%d.%d.%d", a1, a2, a3, a4);
+               snprintf(tbuf, n, "%d.%d.%d.%d", a1, a2, a3, a4);
                goto end;       /* because we might need to end the critical
                                   section */
        }
        /* check if the forward DNS agrees; if not, they're spoofing */
-       if ((ch2 = gethostbyname(ch->h_name)) == NULL)
+       j = strdoop(ch->h_name);
+       ch = gethostbyname(j);
+       phree(j);
+       if (ch == NULL)
                goto bad_dns;
 
        /* check address for consistency */
-       for (; *ch2->h_addr_list; ch2->h_addr_list++)
-               if (!memcmp(*ch2->h_addr_list, &cs.sin_addr,
-                           sizeof cs.sin_addr)) {
-                       strncpy(tbuf, ch->h_name, 24);
+       for (; *ch->h_addr_list; ch->h_addr_list++)
+               if (!memcmp(*ch->h_addr_list, addr,
+                           sizeof *addr)) {
+                       safestrncpy(tbuf, ch->h_name, 63);
                        goto end;
                }
        goto bad_dns;           /* they were spoofing. report a numeric IP
@@ -71,5 +76,6 @@ void locate_host(char *tbuf)
        end_critical_section(S_NETDB);
 #endif
 
-       tbuf[24] = 0;
+       tbuf[63] = 0;
+       lprintf(9, "locate_host() exiting\n");
 }