90 lines
2.7 KiB
Diff
90 lines
2.7 KiB
Diff
|
Author: Steve Dickson <steved@redhat.com>
|
||
|
Date: Sat Jan 31 05:30:13 2009 -0500
|
||
|
|
||
|
Only hash on IP address and Program number. Including the Procedure
|
||
|
number only creates needles extra hash entries.
|
||
|
|
||
|
Signed-off-by: Steve Dickson <steved@redhat.com>
|
||
|
|
||
|
diff -up nfs-utils-1.1.4/support/misc/tcpwrapper.c.orig nfs-utils-1.1.4/support/misc/tcpwrapper.c
|
||
|
--- nfs-utils-1.1.4/support/misc/tcpwrapper.c.orig 2009-01-31 06:22:35.000000000 -0500
|
||
|
+++ nfs-utils-1.1.4/support/misc/tcpwrapper.c 2009-01-31 06:23:22.000000000 -0500
|
||
|
@@ -106,8 +106,8 @@ typedef struct _hash_head {
|
||
|
TAILQ_HEAD(host_list, _haccess_t) h_head;
|
||
|
} hash_head;
|
||
|
hash_head haccess_tbl[HASH_TABLE_SIZE];
|
||
|
-static haccess_t *haccess_lookup(struct sockaddr_in *addr, u_long, u_long);
|
||
|
-static void haccess_add(struct sockaddr_in *addr, u_long, u_long, int);
|
||
|
+static haccess_t *haccess_lookup(struct sockaddr_in *addr, u_long);
|
||
|
+static void haccess_add(struct sockaddr_in *addr, u_long, int);
|
||
|
|
||
|
inline unsigned int strtoint(char *str)
|
||
|
{
|
||
|
@@ -124,11 +124,10 @@ inline int hashint(unsigned int num)
|
||
|
{
|
||
|
return num % HASH_TABLE_SIZE;
|
||
|
}
|
||
|
-#define HASH(_addr, _proc, _prog) \
|
||
|
- hashint((strtoint((_addr))+(_proc)+(_prog)))
|
||
|
+#define HASH(_addr, _prog) \
|
||
|
+ hashint((strtoint((_addr))+(_prog)))
|
||
|
|
||
|
-void haccess_add(struct sockaddr_in *addr, u_long proc,
|
||
|
- u_long prog, int access)
|
||
|
+void haccess_add(struct sockaddr_in *addr, u_long prog, int access)
|
||
|
{
|
||
|
hash_head *head;
|
||
|
haccess_t *hptr;
|
||
|
@@ -138,7 +137,7 @@ void haccess_add(struct sockaddr_in *add
|
||
|
if (hptr == NULL)
|
||
|
return;
|
||
|
|
||
|
- hash = HASH(inet_ntoa(addr->sin_addr), proc, prog);
|
||
|
+ hash = HASH(inet_ntoa(addr->sin_addr), prog);
|
||
|
head = &(haccess_tbl[hash]);
|
||
|
|
||
|
hptr->access = access;
|
||
|
@@ -149,13 +148,13 @@ void haccess_add(struct sockaddr_in *add
|
||
|
else
|
||
|
TAILQ_INSERT_TAIL(&head->h_head, hptr, list);
|
||
|
}
|
||
|
-haccess_t *haccess_lookup(struct sockaddr_in *addr, u_long proc, u_long prog)
|
||
|
+haccess_t *haccess_lookup(struct sockaddr_in *addr, u_long prog)
|
||
|
{
|
||
|
hash_head *head;
|
||
|
haccess_t *hptr;
|
||
|
int hash;
|
||
|
|
||
|
- hash = HASH(inet_ntoa(addr->sin_addr), proc, prog);
|
||
|
+ hash = HASH(inet_ntoa(addr->sin_addr), prog);
|
||
|
head = &(haccess_tbl[hash]);
|
||
|
|
||
|
TAILQ_FOREACH(hptr, &head->h_head, list) {
|
||
|
@@ -300,7 +299,7 @@ u_long prog;
|
||
|
haccess_t *acc = NULL;
|
||
|
int changed = check_files();
|
||
|
|
||
|
- acc = haccess_lookup(addr, proc, prog);
|
||
|
+ acc = haccess_lookup(addr, prog);
|
||
|
if (acc && changed == 0)
|
||
|
return (acc->access);
|
||
|
|
||
|
@@ -309,7 +308,7 @@ u_long prog;
|
||
|
if (acc)
|
||
|
acc->access = FALSE;
|
||
|
else
|
||
|
- haccess_add(addr, proc, prog, FALSE);
|
||
|
+ haccess_add(addr, prog, FALSE);
|
||
|
return (FALSE);
|
||
|
}
|
||
|
if (verboselog)
|
||
|
@@ -318,7 +317,7 @@ u_long prog;
|
||
|
if (acc)
|
||
|
acc->access = TRUE;
|
||
|
else
|
||
|
- haccess_add(addr, proc, prog, TRUE);
|
||
|
+ haccess_add(addr, prog, TRUE);
|
||
|
return (TRUE);
|
||
|
}
|
||
|
|