blob: ed72c8b8cdb7472d33331865f60f5fe66d7b54e5 [file] [log] [blame]
Denis Vlasenko9bff26c2006-10-20 19:40:44 +00001/*
2Copyright (c) 2001-2006, Gerrit Pape
3All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are met:
7
8 1. Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13 3. The name of the author may not be used to endorse or promote products
14 derived from this software without specific prior written permission.
15
16THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26*/
27
Denis Vlasenkod18f52b2008-03-02 12:53:15 +000028/* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
Denis Vlasenko83ea6432006-11-16 02:27:24 +000029/* Dependencies on runit_lib.c removed */
Denis Vlasenko9bff26c2006-10-20 19:40:44 +000030
Pere Orga5bc8c002011-04-11 03:29:49 +020031//usage:#define chpst_trivial_usage
32//usage: "[-vP012] [-u USER[:GRP]] [-U USER[:GRP]] [-e DIR]\n"
33//usage: " [-/ DIR] [-n NICE] [-m BYTES] [-d BYTES] [-o N]\n"
34//usage: " [-p N] [-f BYTES] [-c BYTES] PROG ARGS"
35//usage:#define chpst_full_usage "\n\n"
36//usage: "Change the process state, run PROG\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020037//usage: "\n -u USER[:GRP] Set uid and gid"
38//usage: "\n -U USER[:GRP] Set $UID and $GID in environment"
39//usage: "\n -e DIR Set environment variables as specified by files"
40//usage: "\n in DIR: file=1st_line_of_file"
41//usage: "\n -/ DIR Chroot to DIR"
42//usage: "\n -n NICE Add NICE to nice value"
43//usage: "\n -m BYTES Same as -d BYTES -s BYTES -l BYTES"
44//usage: "\n -d BYTES Limit data segment"
45//usage: "\n -o N Limit number of open files per process"
46//usage: "\n -p N Limit number of processes per uid"
47//usage: "\n -f BYTES Limit output file sizes"
48//usage: "\n -c BYTES Limit core file size"
49//usage: "\n -v Verbose"
50//usage: "\n -P Create new process group"
51//usage: "\n -0 Close stdin"
52//usage: "\n -1 Close stdout"
53//usage: "\n -2 Close stderr"
54//usage:
55//usage:#define envdir_trivial_usage
56//usage: "DIR PROG ARGS"
57//usage:#define envdir_full_usage "\n\n"
58//usage: "Set various environment variables as specified by files\n"
59//usage: "in the directory DIR, run PROG"
60//usage:
61//usage:#define envuidgid_trivial_usage
62//usage: "USER PROG ARGS"
63//usage:#define envuidgid_full_usage "\n\n"
64//usage: "Set $UID to USER's uid and $GID to USER's gid, run PROG"
65//usage:
66//usage:#define setuidgid_trivial_usage
67//usage: "USER PROG ARGS"
68//usage:#define setuidgid_full_usage "\n\n"
69//usage: "Set uid and gid to USER's uid and gid, drop supplementary group ids,\n"
70//usage: "run PROG"
71//usage:
72//usage:#define softlimit_trivial_usage
73//usage: "[-a BYTES] [-m BYTES] [-d BYTES] [-s BYTES] [-l BYTES]\n"
74//usage: " [-f BYTES] [-c BYTES] [-r BYTES] [-o N] [-p N] [-t N]\n"
75//usage: " PROG ARGS"
76//usage:#define softlimit_full_usage "\n\n"
77//usage: "Set soft resource limits, then run PROG\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020078//usage: "\n -a BYTES Limit total size of all segments"
79//usage: "\n -m BYTES Same as -d BYTES -s BYTES -l BYTES -a BYTES"
80//usage: "\n -d BYTES Limit data segment"
81//usage: "\n -s BYTES Limit stack segment"
82//usage: "\n -l BYTES Limit locked memory size"
83//usage: "\n -o N Limit number of open files per process"
84//usage: "\n -p N Limit number of processes per uid"
85//usage: "\nOptions controlling file sizes:"
86//usage: "\n -f BYTES Limit output file sizes"
87//usage: "\n -c BYTES Limit core file size"
88//usage: "\nEfficiency opts:"
89//usage: "\n -r BYTES Limit resident set size"
90//usage: "\n -t N Limit CPU time, process receives"
91//usage: "\n a SIGXCPU after N seconds"
92
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000093#include "libbb.h"
Mike Frysingerc5fe9f72012-07-05 23:19:09 -040094#include <sys/resource.h> /* getrlimit */
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +000095
Denis Vlasenkob3571492008-07-30 21:23:26 +000096/*
97Five applets here: chpst, envdir, envuidgid, setuidgid, softlimit.
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +000098
Denis Vlasenkob3571492008-07-30 21:23:26 +000099Only softlimit and chpst are taking options:
100
101# common
102-o N Limit number of open files per process
103-p N Limit number of processes per uid
104-m BYTES Same as -d BYTES -s BYTES -l BYTES [-a BYTES]
105-d BYTES Limit data segment
106-f BYTES Limit output file sizes
107-c BYTES Limit core file size
108# softlimit
109-a BYTES Limit total size of all segments
110-s BYTES Limit stack segment
111-l BYTES Limit locked memory size
112-r BYTES Limit resident set size
113-t N Limit CPU time
114# chpst
115-u USER[:GRP] Set uid and gid
116-U USER[:GRP] Set $UID and $GID in environment
117-e DIR Set environment variables as specified by files in DIR
118-/ DIR Chroot to DIR
119-n NICE Add NICE to nice value
120-v Verbose
121-P Create new process group
122-0 -1 -2 Close fd 0,1,2
123
124Even though we accept all these options for both softlimit and chpst,
125they are not to be advertised on their help texts.
126We have enough problems with feature creep in other people's
127software, don't want to add our own.
128
129envdir, envuidgid, setuidgid take no options, but they reuse code which
130handles -e, -U and -u.
131*/
132
133enum {
134 OPT_a = (1 << 0) * ENABLE_SOFTLIMIT,
135 OPT_c = (1 << 1) * (ENABLE_SOFTLIMIT || ENABLE_CHPST),
136 OPT_d = (1 << 2) * (ENABLE_SOFTLIMIT || ENABLE_CHPST),
137 OPT_f = (1 << 3) * (ENABLE_SOFTLIMIT || ENABLE_CHPST),
138 OPT_l = (1 << 4) * ENABLE_SOFTLIMIT,
139 OPT_m = (1 << 5) * (ENABLE_SOFTLIMIT || ENABLE_CHPST),
140 OPT_o = (1 << 6) * (ENABLE_SOFTLIMIT || ENABLE_CHPST),
141 OPT_p = (1 << 7) * (ENABLE_SOFTLIMIT || ENABLE_CHPST),
142 OPT_r = (1 << 8) * ENABLE_SOFTLIMIT,
143 OPT_s = (1 << 9) * ENABLE_SOFTLIMIT,
144 OPT_t = (1 << 10) * ENABLE_SOFTLIMIT,
145 OPT_u = (1 << 11) * (ENABLE_CHPST || ENABLE_SETUIDGID),
146 OPT_U = (1 << 12) * (ENABLE_CHPST || ENABLE_ENVUIDGID),
147 OPT_e = (1 << 13) * (ENABLE_CHPST || ENABLE_ENVDIR),
148 OPT_root = (1 << 14) * ENABLE_CHPST,
149 OPT_n = (1 << 15) * ENABLE_CHPST,
150 OPT_v = (1 << 16) * ENABLE_CHPST,
151 OPT_P = (1 << 17) * ENABLE_CHPST,
152 OPT_0 = (1 << 18) * ENABLE_CHPST,
153 OPT_1 = (1 << 19) * ENABLE_CHPST,
154 OPT_2 = (1 << 20) * ENABLE_CHPST,
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000155};
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000156
Bernhard Reutner-Fischerca254492009-10-26 23:27:07 +0100157/* TODO: use recursive_action? */
Denys Vlasenkoadf922e2009-10-08 14:35:37 +0200158static NOINLINE void edir(const char *directory_name)
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000159{
160 int wdir;
161 DIR *dir;
162 struct dirent *d;
163 int fd;
164
165 wdir = xopen(".", O_RDONLY | O_NDELAY);
166 xchdir(directory_name);
Bernhard Reutner-Fischerca254492009-10-26 23:27:07 +0100167 dir = xopendir(".");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000168 for (;;) {
Denys Vlasenko695fa512010-01-06 18:16:39 +0100169 char buf[256];
Denis Vlasenko9895dfd2008-04-01 16:13:14 +0000170 char *tail;
171 int size;
172
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000173 errno = 0;
174 d = readdir(dir);
175 if (!d) {
Denis Vlasenko83ea6432006-11-16 02:27:24 +0000176 if (errno)
177 bb_perror_msg_and_die("readdir %s",
178 directory_name);
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000179 break;
180 }
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000181 if (d->d_name[0] == '.')
182 continue;
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000183 fd = open(d->d_name, O_RDONLY | O_NDELAY);
184 if (fd < 0) {
Denis Vlasenkob3571492008-07-30 21:23:26 +0000185 if ((errno == EISDIR) && directory_name) {
186 if (option_mask32 & OPT_v)
Denis Vlasenko83ea6432006-11-16 02:27:24 +0000187 bb_perror_msg("warning: %s/%s is a directory",
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200188 directory_name, d->d_name);
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000189 continue;
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200190 }
191 bb_perror_msg_and_die("open %s/%s",
Denis Vlasenko83ea6432006-11-16 02:27:24 +0000192 directory_name, d->d_name);
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000193 }
Denis Vlasenko9895dfd2008-04-01 16:13:14 +0000194 size = full_read(fd, buf, sizeof(buf)-1);
195 close(fd);
196 if (size < 0)
197 bb_perror_msg_and_die("read %s/%s",
198 directory_name, d->d_name);
199 if (size == 0) {
200 unsetenv(d->d_name);
201 continue;
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000202 }
Denis Vlasenko9895dfd2008-04-01 16:13:14 +0000203 buf[size] = '\n';
204 tail = strchr(buf, '\n');
205 /* skip trailing whitespace */
206 while (1) {
207 *tail = '\0';
208 tail--;
209 if (tail < buf || !isspace(*tail))
210 break;
211 }
212 xsetenv(d->d_name, buf);
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000213 }
214 closedir(dir);
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000215 if (fchdir(wdir) == -1)
216 bb_perror_msg_and_die("fchdir");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000217 close(wdir);
218}
219
220static void limit(int what, long l)
221{
222 struct rlimit r;
223
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000224 /* Never fails under Linux (except if you pass it bad arguments) */
225 getrlimit(what, &r);
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000226 if ((l < 0) || (l > r.rlim_max))
227 r.rlim_cur = r.rlim_max;
228 else
229 r.rlim_cur = l;
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000230 if (setrlimit(what, &r) == -1)
231 bb_perror_msg_and_die("setrlimit");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000232}
233
Denis Vlasenkob3571492008-07-30 21:23:26 +0000234int chpst_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
235int chpst_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000236{
Denis Vlasenkob3571492008-07-30 21:23:26 +0000237 struct bb_uidgid_t ugid;
Denis Vlasenkoec73d302008-08-05 17:43:29 +0000238 char *set_user = set_user; /* for compiler */
239 char *env_user = env_user;
240 char *env_dir = env_dir;
Denis Vlasenkob3571492008-07-30 21:23:26 +0000241 char *root;
242 char *nicestr;
243 unsigned limita;
244 unsigned limitc;
245 unsigned limitd;
246 unsigned limitf;
247 unsigned limitl;
248 unsigned limitm;
249 unsigned limito;
250 unsigned limitp;
251 unsigned limitr;
252 unsigned limits;
253 unsigned limitt;
254 unsigned opt;
255
256 if ((ENABLE_CHPST && applet_name[0] == 'c')
257 || (ENABLE_SOFTLIMIT && applet_name[1] == 'o')
258 ) {
259 // FIXME: can we live with int-sized limits?
260 // can we live with 40000 days?
261 // if yes -> getopt converts strings to numbers for us
262 opt_complementary = "-1:a+:c+:d+:f+:l+:m+:o+:p+:r+:s+:t+";
263 opt = getopt32(argv, "+a:c:d:f:l:m:o:p:r:s:t:u:U:e:"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000264 IF_CHPST("/:n:vP012"),
Denis Vlasenkob3571492008-07-30 21:23:26 +0000265 &limita, &limitc, &limitd, &limitf, &limitl,
266 &limitm, &limito, &limitp, &limitr, &limits, &limitt,
267 &set_user, &env_user, &env_dir
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000268 IF_CHPST(, &root, &nicestr));
Denis Vlasenkob3571492008-07-30 21:23:26 +0000269 argv += optind;
270 if (opt & OPT_m) { // -m means -asld
271 limita = limits = limitl = limitd = limitm;
272 opt |= (OPT_s | OPT_l | OPT_a | OPT_d);
273 }
274 } else {
275 option_mask32 = opt = 0;
276 argv++;
Denis Vlasenkob9c262b2008-08-20 22:19:27 +0000277 if (!*argv)
278 bb_show_usage();
Denis Vlasenkob3571492008-07-30 21:23:26 +0000279 }
280
281 // envdir?
282 if (ENABLE_ENVDIR && applet_name[3] == 'd') {
283 env_dir = *argv++;
284 opt |= OPT_e;
285 }
286
287 // setuidgid?
Denis Vlasenkob9c262b2008-08-20 22:19:27 +0000288 if (ENABLE_SETUIDGID && applet_name[1] == 'e') {
Denis Vlasenkob3571492008-07-30 21:23:26 +0000289 set_user = *argv++;
290 opt |= OPT_u;
291 }
292
293 // envuidgid?
Denis Vlasenko69ed3092008-08-15 21:03:17 +0000294 if (ENABLE_ENVUIDGID && applet_name[0] == 'e' && applet_name[3] == 'u') {
Denis Vlasenkob3571492008-07-30 21:23:26 +0000295 env_user = *argv++;
296 opt |= OPT_U;
297 }
298
299 // we must have PROG [ARGS]
300 if (!*argv)
301 bb_show_usage();
302
303 // set limits
304 if (opt & OPT_d) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000305#ifdef RLIMIT_DATA
306 limit(RLIMIT_DATA, limitd);
307#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000308 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000309 bb_error_msg("system does not support RLIMIT_%s",
310 "DATA");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000311#endif
312 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000313 if (opt & OPT_s) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000314#ifdef RLIMIT_STACK
315 limit(RLIMIT_STACK, limits);
316#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000317 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000318 bb_error_msg("system does not support RLIMIT_%s",
319 "STACK");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000320#endif
321 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000322 if (opt & OPT_l) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000323#ifdef RLIMIT_MEMLOCK
324 limit(RLIMIT_MEMLOCK, limitl);
325#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000326 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000327 bb_error_msg("system does not support RLIMIT_%s",
328 "MEMLOCK");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000329#endif
330 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000331 if (opt & OPT_a) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000332#ifdef RLIMIT_VMEM
333 limit(RLIMIT_VMEM, limita);
334#else
335#ifdef RLIMIT_AS
336 limit(RLIMIT_AS, limita);
337#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000338 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000339 bb_error_msg("system does not support RLIMIT_%s",
340 "VMEM");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000341#endif
342#endif
343 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000344 if (opt & OPT_o) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000345#ifdef RLIMIT_NOFILE
346 limit(RLIMIT_NOFILE, limito);
347#else
348#ifdef RLIMIT_OFILE
349 limit(RLIMIT_OFILE, limito);
350#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000351 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000352 bb_error_msg("system does not support RLIMIT_%s",
353 "NOFILE");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000354#endif
355#endif
356 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000357 if (opt & OPT_p) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000358#ifdef RLIMIT_NPROC
359 limit(RLIMIT_NPROC, limitp);
360#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000361 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000362 bb_error_msg("system does not support RLIMIT_%s",
363 "NPROC");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000364#endif
365 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000366 if (opt & OPT_f) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000367#ifdef RLIMIT_FSIZE
368 limit(RLIMIT_FSIZE, limitf);
369#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000370 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000371 bb_error_msg("system does not support RLIMIT_%s",
372 "FSIZE");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000373#endif
374 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000375 if (opt & OPT_c) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000376#ifdef RLIMIT_CORE
377 limit(RLIMIT_CORE, limitc);
378#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000379 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000380 bb_error_msg("system does not support RLIMIT_%s",
381 "CORE");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000382#endif
383 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000384 if (opt & OPT_r) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000385#ifdef RLIMIT_RSS
386 limit(RLIMIT_RSS, limitr);
387#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000388 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000389 bb_error_msg("system does not support RLIMIT_%s",
390 "RSS");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000391#endif
392 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000393 if (opt & OPT_t) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000394#ifdef RLIMIT_CPU
395 limit(RLIMIT_CPU, limitt);
396#else
Denis Vlasenkob3571492008-07-30 21:23:26 +0000397 if (opt & OPT_v)
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000398 bb_error_msg("system does not support RLIMIT_%s",
399 "CPU");
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000400#endif
401 }
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000402
Denis Vlasenkob3571492008-07-30 21:23:26 +0000403 if (opt & OPT_P)
404 setsid();
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000405
Denis Vlasenkob3571492008-07-30 21:23:26 +0000406 if (opt & OPT_e)
407 edir(env_dir);
Denis Vlasenko23e3e252007-10-05 21:23:49 +0000408
Denys Vlasenkoc74a79f2011-09-16 11:54:13 +0200409 if (opt & (OPT_u|OPT_U))
Denys Vlasenkod18ef6c2011-09-16 11:52:43 +0200410 xget_uidgid(&ugid, set_user);
Denys Vlasenkod18ef6c2011-09-16 11:52:43 +0200411
Denys Vlasenkoc74a79f2011-09-16 11:54:13 +0200412 // chrooted jail must have /etc/passwd if we move this after chroot.
413 // OTOH chroot fails for non-roots.
414 // Solution: cache uid/gid before chroot, apply uid/gid after.
Denis Vlasenkob3571492008-07-30 21:23:26 +0000415 if (opt & OPT_U) {
Denis Vlasenkob3571492008-07-30 21:23:26 +0000416 xsetenv("GID", utoa(ugid.gid));
417 xsetenv("UID", utoa(ugid.uid));
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000418 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000419
Denis Vlasenkob3571492008-07-30 21:23:26 +0000420 if (opt & OPT_root) {
Denys Vlasenko0687a5b2012-03-08 00:28:24 +0100421 xchroot(root);
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000422 }
Denis Vlasenkob3571492008-07-30 21:23:26 +0000423
424 if (opt & OPT_u) {
425 if (setgroups(1, &ugid.gid) == -1)
426 bb_perror_msg_and_die("setgroups");
427 xsetgid(ugid.gid);
428 xsetuid(ugid.uid);
429 }
430
431 if (opt & OPT_n) {
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000432 errno = 0;
Denis Vlasenkob3571492008-07-30 21:23:26 +0000433 if (nice(xatoi(nicestr)) == -1)
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000434 bb_perror_msg_and_die("nice");
435 }
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000436
Denis Vlasenkob3571492008-07-30 21:23:26 +0000437 if (opt & OPT_0)
438 close(STDIN_FILENO);
439 if (opt & OPT_1)
440 close(STDOUT_FILENO);
441 if (opt & OPT_2)
442 close(STDERR_FILENO);
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000443
Pascal Bellard21e8e8d2010-07-04 00:57:03 +0200444 BB_EXECVP_or_die(argv);
Denis Vlasenkof0a97fb2006-10-03 17:52:24 +0000445}