Blame SOURCES/vsftpd-2.1.0-pam_hostname.patch

d83721
diff -up vsftpd-2.2.0/sysdeputil.c.pam_hostname vsftpd-2.2.0/sysdeputil.c
d83721
--- vsftpd-2.2.0/sysdeputil.c.pam_hostname	2009-08-08 03:51:10.000000000 +0200
d83721
+++ vsftpd-2.2.0/sysdeputil.c	2009-08-24 12:24:07.220623773 +0200
d83721
@@ -16,6 +16,10 @@
d83721
 #include "tunables.h"
d83721
 #include "builddefs.h"
d83721
 
d83721
+/* For gethostbyaddr, inet_addr */
d83721
+#include <netdb.h>
d83721
+#include <arpa/inet.h>
d83721
+
d83721
 /* For Linux, this adds nothing :-) */
d83721
 #include "port/porting_junk.h"
d83721
 
d83721
@@ -325,6 +329,10 @@ vsf_sysdep_check_auth(struct mystr* p_us
d83721
                       const struct mystr* p_remote_host)
d83721
 {
d83721
   int retval = -1;
d83721
+#ifdef PAM_RHOST
d83721
+  struct sockaddr_in sin;
d83721
+  struct hostent *host;
d83721
+#endif
d83721
   pam_item_t item;
d83721
   const char* pam_user_name = 0;
d83721
   struct pam_conv the_conv =
d83721
@@ -345,7 +353,12 @@ vsf_sysdep_check_auth(struct mystr* p_us
d83721
     return 0;
d83721
   }
d83721
 #ifdef PAM_RHOST
d83721
-  retval = pam_set_item(s_pamh, PAM_RHOST, str_getbuf(p_remote_host));
d83721
+  sin.sin_addr.s_addr = inet_addr(str_getbuf(p_remote_host));
d83721
+  host = gethostbyaddr((char*)&sin.sin_addr.s_addr,sizeof(struct in_addr),AF_INET);
d83721
+  if (host != (struct hostent*)0)
d83721
+    retval = pam_set_item(s_pamh, PAM_RHOST, host->h_name);
d83721
+  else
d83721
+    retval = pam_set_item(s_pamh, PAM_RHOST, str_getbuf(p_remote_host));
d83721
   if (retval != PAM_SUCCESS)
d83721
   {
d83721
     (void) pam_end(s_pamh, retval);
d83721
@@ -558,7 +571,7 @@ vsf_sysdep_has_capabilities(void)
d83721
   }
d83721
   return s_runtime_has_caps;
d83721
 }
d83721
-  
d83721
+
d83721
   #ifndef VSF_SYSDEP_HAVE_LIBCAP
d83721
 static int
d83721
 do_checkcap(void)
d83721
@@ -1080,7 +1093,7 @@ vsf_sysutil_recv_fd(const int sock_fd)
d83721
   msg.msg_flags = 0;
d83721
   /* In case something goes wrong, set the fd to -1 before the syscall */
d83721
   p_fd = (int*)CMSG_DATA(CMSG_FIRSTHDR(&msg));
d83721
-  *p_fd = -1;  
d83721
+  *p_fd = -1;
d83721
   retval = recvmsg(sock_fd, &msg, 0);
d83721
   if (retval != 1)
d83721
   {