forked from pool/nfs-utils
This commit is contained in:
parent
ffbd354de7
commit
aedeade8d4
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 7 22:20:05 CET 2008 - nfbrown@suse.de
|
||||||
|
|
||||||
|
- gssd-mem-leak
|
||||||
|
* set better expiry date for cached auth info
|
||||||
|
so kernel does not run out of memory
|
||||||
|
bnc#442490
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 5 02:43:20 CET 2008 - nfbrown@suse.de
|
Fri Dec 5 02:43:20 CET 2008 - nfbrown@suse.de
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ BuildRequires: libevent
|
|||||||
Url: http://nfs.sourceforge.net
|
Url: http://nfs.sourceforge.net
|
||||||
Summary: Support Utilities for Kernel nfsd
|
Summary: Support Utilities for Kernel nfsd
|
||||||
Version: 1.1.3
|
Version: 1.1.3
|
||||||
Release: 15
|
Release: 16
|
||||||
Group: Productivity/Networking/NFS
|
Group: Productivity/Networking/NFS
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -52,6 +52,7 @@ Patch3: sm-notify-no-sync.patch
|
|||||||
Patch4: rpc.gssd-catch-signal.patch
|
Patch4: rpc.gssd-catch-signal.patch
|
||||||
Patch5: fork-start-statd.patch
|
Patch5: fork-start-statd.patch
|
||||||
Patch6: warn-nfs-udp.patch
|
Patch6: warn-nfs-udp.patch
|
||||||
|
Patch7: svcgssd-mem-leak
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package contains the NFS utilities. You can tune the number of
|
This package contains the NFS utilities. You can tune the number of
|
||||||
@ -135,6 +136,7 @@ Authors:
|
|||||||
%patch4 -p1
|
%patch4 -p1
|
||||||
%patch5 -p1
|
%patch5 -p1
|
||||||
%patch6 -p1
|
%patch6 -p1
|
||||||
|
%patch7 -p1
|
||||||
cp %{S:6} .
|
cp %{S:6} .
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -289,6 +291,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%doc nfs/*.html nfs/*.ps linux-nfs/* README.NFSv4
|
%doc nfs/*.html nfs/*.ps linux-nfs/* README.NFSv4
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Dec 07 2008 nfbrown@suse.de
|
||||||
|
- gssd-mem-leak
|
||||||
|
* set better expiry date for cached auth info
|
||||||
|
so kernel does not run out of memory
|
||||||
|
bnc#442490
|
||||||
* Fri Dec 05 2008 nfbrown@suse.de
|
* Fri Dec 05 2008 nfbrown@suse.de
|
||||||
- nfs.init
|
- nfs.init
|
||||||
* Don't signal an error if asked to stop 'nfs'
|
* Don't signal an error if asked to stop 'nfs'
|
||||||
|
49
svcgssd-mem-leak
Normal file
49
svcgssd-mem-leak
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
Set a more reasonable timeout for gss auth cache.
|
||||||
|
|
||||||
|
svcgssd gives info to the kernel to gss authentication
|
||||||
|
and encryption.
|
||||||
|
This information currently has no expiry time and is never
|
||||||
|
flushed so it will collected forever and eventually
|
||||||
|
cause a significant waste of memory.
|
||||||
|
|
||||||
|
So set the expiry times smaller.
|
||||||
|
For session initialisation, the context info should only be needed once.
|
||||||
|
So set a timeout of one minutes.
|
||||||
|
|
||||||
|
For ongoing context information it could be needed for some time,
|
||||||
|
so set a timeot of one hour.
|
||||||
|
|
||||||
|
See bnc#442490
|
||||||
|
|
||||||
|
From: NeilBrown <neilb@suse.de>
|
||||||
|
Signed-off-by: NeilBrown <neilb@suse.de>
|
||||||
|
|
||||||
|
---
|
||||||
|
utils/svcgssd/svcgssd_proc.c | 7 +++++--
|
||||||
|
1 file changed, 5 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
Index: nfs-utils-1.1.3/utils/gssd/svcgssd_proc.c
|
||||||
|
===================================================================
|
||||||
|
--- nfs-utils-1.1.3.orig/utils/gssd/svcgssd_proc.c
|
||||||
|
+++ nfs-utils-1.1.3/utils/gssd/svcgssd_proc.c
|
||||||
|
@@ -86,7 +86,9 @@ do_svc_downcall(gss_buffer_desc *out_han
|
||||||
|
}
|
||||||
|
qword_printhex(f, out_handle->value, out_handle->length);
|
||||||
|
/* XXX are types OK for the rest of this? */
|
||||||
|
- qword_printint(f, 0x7fffffff); /*XXX need a better timeout */
|
||||||
|
+
|
||||||
|
+ /* 'context' could be needed for a while. */
|
||||||
|
+ qword_printint(f, time(0) + 60*60);
|
||||||
|
qword_printint(f, cred->cr_uid);
|
||||||
|
qword_printint(f, cred->cr_gid);
|
||||||
|
qword_printint(f, cred->cr_ngroups);
|
||||||
|
@@ -130,7 +132,8 @@ send_response(FILE *f, gss_buffer_desc *
|
||||||
|
|
||||||
|
qword_addhex(&bp, &blen, in_handle->value, in_handle->length);
|
||||||
|
qword_addhex(&bp, &blen, in_token->value, in_token->length);
|
||||||
|
- qword_addint(&bp, &blen, 0x7fffffff); /*XXX need a better timeout */
|
||||||
|
+ /* INIT context info will only be needed for a short while */
|
||||||
|
+ qword_addint(&bp, &blen, time(0) + 60);
|
||||||
|
qword_adduint(&bp, &blen, maj_stat);
|
||||||
|
qword_adduint(&bp, &blen, min_stat);
|
||||||
|
qword_addhex(&bp, &blen, out_handle->value, out_handle->length);
|
Loading…
x
Reference in New Issue
Block a user