blob: 8d494337566a678f146973c83146bc1f8ef7da98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/*++
/* NAME
/* open_limit 3
/* SUMMARY
/* set/get open file limit
/* SYNOPSIS
/* #include <iostuff.h>
/*
/* int open_limit(int limit)
/* DESCRIPTION
/* The \fIopen_limit\fR() routine attempts to change the maximum
/* number of open files to the specified limit. Specify a null
/* argument to effect no change. The result is the actual open file
/* limit for the current process. The number can be smaller or larger
/* than the requested limit.
/* DIAGNOSTICS
/* open_limit() returns -1 in case of problems. The errno
/* variable gives hints about the nature of the problem.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
/* System libraries. */
#include "sys_defs.h"
#include <sys/time.h>
#include <sys/resource.h>
#include <errno.h>
#ifdef USE_MAX_FILES_PER_PROC
#include <sys/sysctl.h>
#define MAX_FILES_PER_PROC "kern.maxfilesperproc"
#endif
/* Application-specific. */
#include "iostuff.h"
/*
* 44BSD compatibility.
*/
#ifndef RLIMIT_NOFILE
#ifdef RLIMIT_OFILE
#define RLIMIT_NOFILE RLIMIT_OFILE
#endif
#endif
/* open_limit - set/query file descriptor limit */
int open_limit(int limit)
{
#ifdef RLIMIT_NOFILE
struct rlimit rl;
#endif
if (limit < 0) {
errno = EINVAL;
return (-1);
}
#ifdef RLIMIT_NOFILE
if (getrlimit(RLIMIT_NOFILE, &rl) < 0)
return (-1);
if (limit > 0) {
/*
* MacOSX incorrectly reports rlim_max as RLIM_INFINITY. The true
* hard limit is finite and equals the kern.maxfilesperproc value.
*/
#ifdef USE_MAX_FILES_PER_PROC
int max_files_per_proc;
size_t len = sizeof(max_files_per_proc);
if (sysctlbyname(MAX_FILES_PER_PROC, &max_files_per_proc, &len,
(void *) 0, (size_t) 0) < 0)
return (-1);
if (limit > max_files_per_proc)
limit = max_files_per_proc;
#endif
if (limit > rl.rlim_max)
rl.rlim_cur = rl.rlim_max;
else
rl.rlim_cur = limit;
if (setrlimit(RLIMIT_NOFILE, &rl) < 0)
return (-1);
}
return (rl.rlim_cur);
#endif
#ifndef RLIMIT_NOFILE
return (getdtablesize());
#endif
}
|