2 * Copyright (c) 2006 nCircle Network Security, Inc.
3 * Copyright (c) 2007 Robert N. M. Watson
6 * This software was developed by Robert N. M. Watson for the TrustedBSD
7 * Project under contract to nCircle Network Security, Inc.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR, NCIRCLE NETWORK SECURITY,
22 * INC., OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 * Test that raising current resource limits above hard resource limits
35 * requires privilege. We test three cases:
37 * - Raise the current above the maximum (privileged).
38 * - Raise the current to the maximum (unprivileged).
39 * - Raise the maximum (privileged).
42 #include <sys/types.h>
44 #include <sys/resource.h>
52 static int initialized
;
53 static struct rlimit rl_base
;
54 static struct rlimit rl_lowered
;
57 priv_proc_setrlimit_setup(int asroot
, int injail
, struct test
*test
)
60 if (getrlimit(RLIMIT_DATA
, &rl_base
) < 0) {
61 warn("priv_proc_setrlimit_setup: getrlimit");
66 * Must lower current and limit to make sure there's room to try to
67 * raise them during tests. Set current lower than max so we can
68 * raise it later also.
71 rl_lowered
.rlim_cur
-= 20;
72 rl_lowered
.rlim_max
-= 10;
73 if (setrlimit(RLIMIT_DATA
, &rl_lowered
) < 0) {
74 warn("priv_proc_setrlimit_setup: setrlimit");
82 * Try increasing the maximum limits on the process, which requires
86 priv_proc_setrlimit_raisemax(int asroot
, int injail
, struct test
*test
)
92 rl
.rlim_max
= rl_base
.rlim_max
;
93 error
= setrlimit(RLIMIT_DATA
, &rl
);
95 expect("priv_proc_setrlimit_raisemax(asroot, injail)", error
,
97 if (asroot
&& !injail
)
98 expect("priv_proc_setrlimit_raisemax(asroot, !injail)",
100 if (!asroot
&& injail
)
101 expect("priv_proc_setrlimit_raisemax(!asroot, injail)",
103 if (!asroot
&& !injail
)
104 expect("priv_proc_setrlimit_raisemax(!asroot, !injail)",
109 * Try setting the current limit to the current maximum, which is allowed
113 priv_proc_setrlimit_raisecur_nopriv(int asroot
, int injail
,
120 rl
.rlim_cur
= rl
.rlim_max
;
121 error
= setrlimit(RLIMIT_DATA
, &rl
);
122 if (asroot
&& injail
)
123 expect("priv_proc_setrlimit_raiscur_nopriv(asroot, injail)",
125 if (asroot
&& !injail
)
126 expect("priv_proc_setrlimit_raisecur_nopriv(asroot, !injail)",
128 if (!asroot
&& injail
)
129 expect("priv_proc_setrlimit_raisecur_nopriv(!asroot, injail)",
131 if (!asroot
&& !injail
)
132 expect("priv_proc_setrlimit_raisecur_nopriv(!asroot, !injail)",
137 * Try raising the current limits above the maximum, which requires
141 priv_proc_setrlimit_raisecur(int asroot
, int injail
, struct test
*test
)
147 rl
.rlim_cur
= rl
.rlim_max
+ 10;
148 error
= setrlimit(RLIMIT_DATA
, &rl
);
149 if (asroot
&& injail
)
150 expect("priv_proc_setrlimit_raisecur(asroot, injail)", error
,
152 if (asroot
&& !injail
)
153 expect("priv_proc_setrlimit_raisecur(asroot, !injail)",
155 if (!asroot
&& injail
)
156 expect("priv_proc_setrlimit_raisecur(!asroot, injail)",
158 if (!asroot
&& !injail
)
159 expect("priv_proc_setrlimit_raisecur(!asroot, !injail)",
164 priv_proc_setrlimit_cleanup(int asroot
, int injail
, struct test
*test
)
168 (void)setrlimit(RLIMIT_DATA
, &rl_base
);