[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: Fedora 11 slapd "too many open files": /lib64/libnspr4.so
- From: Bernie Innocenti <bernie codewiz org>
- To: Development discussions related to Fedora <fedora-devel-list redhat com>
- Cc: Anthony Messina <amessina messinet com>, Stefano Fedrigo <aleph develer com>, Simone Roselli <sroselli develer com>, fedora-list redhat com
- Subject: Re: Fedora 11 slapd "too many open files": /lib64/libnspr4.so
- Date: Thu, 13 Aug 2009 07:56:34 +0200
El Thu, 13-08-2009 a las 07:12 +0200, Bernie Innocenti escribió:
> Ping?
>
> This bug is pretty nasty: we have to restart slapd
> 2 or 3 times a day :-/
Ok, I think I'm starting to see the light here, but perhaps
it's just because it's already dawn.
nss-3.12.3.99.3/mozilla/security/nss/lib/freebl/stubs.c
dlopen()s nspr4.so like so:
-----8<----------8<----------8<----------8<----------8<-----
#define freebl_getLibrary(libName) \
dlopen (libName, RTLD_LAZY|RTLD_NOLOAD)
#define freebl_releaseLibrary(lib) \
if (lib) dlclose(lib)
#endif
extern SECStatus
FREEBL_InitStubs()
{
SECStatus rv = SECSuccess;
#ifdef FREEBL_NO_WEAK
void *nspr = NULL;
void *nssutil = NULL;
/* NSPR should be first */
if (!ptr_PR_DestroyLock) {
nspr = freebl_getLibrary(nsprLibName);
if (!nspr) {
return SECFailure;
}
rv = freebl_InitNSPR(nspr);
if (rv != SECSuccess) {
freebl_releaseLibrary(nspr);
return rv;
}
}
/* now load NSSUTIL */
if (!ptr_SECITEM_ZfreeItem_Util) {
nssutil= freebl_getLibrary(nssutilLibName);
if (!nssutil) {
return SECFailure;
}
rv = freebl_InitNSSUtil(nssutil);
if (rv != SECSuccess) {
freebl_releaseLibrary(nssutil);
return rv;
}
}
#endif
return rv;
}
-----8<----------8<----------8<----------8<----------8<-----
There's no corresponding place in the code to call dlclose().
If slapd enters this multiple times (perhaps from multiple threads),
it might indeed leak file descriptors.
It remains to be determined what codepath in openldap does this.
--
// Bernie Innocenti - http://codewiz.org/
\X/ Sugar Labs - http://sugarlabs.org/
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]