Speedup closing of fds before exec.
* src/posix-io.c [__linux__]: Include dirent.h. (get_max_fds) [__linux__]: Try to figure out the highest used fd. -- Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
3915842657
commit
89d22f9229
@ -47,6 +47,12 @@
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
|
|
||||||
|
#if __linux__
|
||||||
|
# include <sys/types.h>
|
||||||
|
# include <dirent.h>
|
||||||
|
#endif /*__linux__ */
|
||||||
|
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "priv-io.h"
|
#include "priv-io.h"
|
||||||
#include "sema.h"
|
#include "sema.h"
|
||||||
@ -280,16 +286,50 @@ get_max_fds (void)
|
|||||||
long int fds = -1;
|
long int fds = -1;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
#ifdef RLIMIT_NOFILE
|
/* Under Linux we can figure out the highest used file descriptor by
|
||||||
|
* reading /proc/self/fd. This is in the common cases much fast than
|
||||||
|
* for example doing 4096 close calls where almost all of them will
|
||||||
|
* fail. */
|
||||||
|
#ifdef __linux__
|
||||||
{
|
{
|
||||||
struct rlimit rl;
|
DIR *dir = NULL;
|
||||||
rc = getrlimit (RLIMIT_NOFILE, &rl);
|
struct dirent *dir_entry;
|
||||||
if (rc == 0)
|
const char *s;
|
||||||
|
int x;
|
||||||
|
|
||||||
|
dir = opendir ("/proc/self/fd");
|
||||||
|
if (dir)
|
||||||
{
|
{
|
||||||
source = "RLIMIT_NOFILE";
|
while ((dir_entry = readdir (dir)))
|
||||||
fds = rl.rlim_max;
|
{
|
||||||
|
s = dir_entry->d_name;
|
||||||
|
if ( *s < '0' || *s > '9')
|
||||||
|
continue;
|
||||||
|
x = atoi (s);
|
||||||
|
if (x > fds)
|
||||||
|
fds = x;
|
||||||
|
}
|
||||||
|
closedir (dir);
|
||||||
}
|
}
|
||||||
}
|
if (fds != -1)
|
||||||
|
{
|
||||||
|
fds++;
|
||||||
|
source = "/proc";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif /* __linux__ */
|
||||||
|
|
||||||
|
#ifdef RLIMIT_NOFILE
|
||||||
|
if (fds == -1)
|
||||||
|
{
|
||||||
|
struct rlimit rl;
|
||||||
|
rc = getrlimit (RLIMIT_NOFILE, &rl);
|
||||||
|
if (rc == 0)
|
||||||
|
{
|
||||||
|
source = "RLIMIT_NOFILE";
|
||||||
|
fds = rl.rlim_max;
|
||||||
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef RLIMIT_OFILE
|
#ifdef RLIMIT_OFILE
|
||||||
if (fds == -1)
|
if (fds == -1)
|
||||||
|
Loading…
Reference in New Issue
Block a user