chiark / gitweb /
wip about to undo
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 2 Jun 2012 00:23:02 +0000 (01:23 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 2 Jun 2012 00:23:02 +0000 (01:23 +0100)
authbind.h
helper.c
libauthbind.c

index 3911c08db967068da7bf91c90c12cd0515fe6cf2..94abaa0748af502e95fe58d217da495686c3f244 100644 (file)
 # define HELPER "/usr/local/lib/authbind/helper"
 #endif
 
+#ifndef CONFIGDIR
+# define CONFIGDIR "/etc/authbind"
+#endif
+
 #define PRELOAD_VAR "LD_PRELOAD"
 #define AUTHBINDLIB_VAR "AUTHBIND_LIB"
 #define AUTHBIND_LEVELS_VAR "AUTHBIND_LEVELS"
 
+static inline void bytes2hex(const unsigned char *in, char *out, size_t len) {
+  size_t i;
+  for (i=0; i<16; i++)
+    sprintf(out+i*2,"%02x", in[i]);
+}
+
 #endif
index cc4efe25ce7652c8bf4c8db3c751157ffcec85ea..9e8ab865b9ee4ee29d0c23624c295386405dd81f 100644 (file)
--- a/helper.c
+++ b/helper.c
@@ -30,9 +30,7 @@
 #include <netinet/in.h>
 #include <arpa/inet.h>
 
-#ifndef CONFIGDIR
-# define CONFIGDIR "/etc/authbind"
-#endif
+#include "authbind.h"
 
 static void exiterrno(int e) {
   exit(e>0 && e<128 ? e : ENOSYS);
@@ -138,15 +136,21 @@ int main(int argc, const char *const *argv) {
   assert(np);
 
   if (af == AF_INET) {
-    snprintf(fnbuf,sizeof(fnbuf)-1,"byaddr/%s%s:%u",np,tophalfchar,hport);
+    snprintf(fnbuf,sizeof(fnbuf)-1,"byaddr/%s%s:%u",tophalfchar,np,hport);
     if (!access(fnbuf,X_OK)) authorised();
     if (errno != ENOENT) exiterrno(errno);
   }
 
-  snprintf(fnbuf,sizeof(fnbuf)-1,"byaddr/%s%s,%u",np,tophalfchar,hport);
+  snprintf(fnbuf,sizeof(fnbuf)-1,"byaddr/%s%s,%u",tophalfchar,np,hport);
   if (!access(fnbuf,X_OK)) authorised();
   if (errno != ENOENT) exiterrno(errno);
 
+  if (af == AF_INET6) {
+    char sbuf[addrlen_any*2+1];
+    bytes2hex(addr_any,sbuf,addrlen_any);
+    snprintf(fnbuf,sizeof(fnbuf)-1,"byaddr/%s%s,%u",tophalfchar,sbuf,hport);
+  }
+
   uid= getuid(); if (uid==(uid_t)-1) perrorfail("getuid");
   snprintf(fnbuf,sizeof(fnbuf)-1,"byuid/%s%lu",tophalfchar,(unsigned long)uid);
 
index a685ce3fe200c957a5f686a90eaf3e19811fb66b..03905e454d82dc39dce956f94858fe3285ae3aa5 100644 (file)
@@ -185,9 +185,7 @@ int bind(int fd, const struct sockaddr *addr, socklen_t addrlen) {
     break;
   case AF_INET6:
     afarg = "6";
-    for (i=0; i<16; i++)
-      sprintf(addrarg+i*2,"%02x",
-             ((struct sockaddr_in6*)addr)->sin6_addr.s6_addr[i]);
+    bytes2hex(((struct sockaddr_in6*)addr)->sin6_addr.s6_addr, addrarg, 16);
     break;
   default:
     abort();