2006-10-21 01:10:44 +05:30
|
|
|
/*
|
|
|
|
Copyright (c) 2001-2006, Gerrit Pape
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
3. The name of the author may not be used to endorse or promote products
|
|
|
|
derived from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Busyboxed by Denis Vlasenko <vda.linux@googlemail.com> */
|
2006-11-16 07:57:24 +05:30
|
|
|
/* Dependencies on runit_lib.c removed */
|
2006-10-21 01:10:44 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-10-03 23:22:24 +05:30
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2006-10-06 04:20:22 +05:30
|
|
|
// Must match constants in chpst_main!
|
2006-10-06 15:19:47 +05:30
|
|
|
#define OPT_verbose (option_mask32 & 0x2000)
|
|
|
|
#define OPT_pgrp (option_mask32 & 0x4000)
|
|
|
|
#define OPT_nostdin (option_mask32 & 0x8000)
|
|
|
|
#define OPT_nostdout (option_mask32 & 0x10000)
|
|
|
|
#define OPT_nostderr (option_mask32 & 0x20000)
|
2006-10-03 23:22:24 +05:30
|
|
|
|
2007-10-06 02:53:49 +05:30
|
|
|
struct globals {
|
|
|
|
char *set_user;
|
|
|
|
char *env_user;
|
|
|
|
const char *env_dir;
|
|
|
|
const char *root;
|
|
|
|
long limitd; /* limitX are initialized to -2 */
|
|
|
|
long limits;
|
|
|
|
long limitl;
|
|
|
|
long limita;
|
|
|
|
long limito;
|
|
|
|
long limitp;
|
|
|
|
long limitf;
|
|
|
|
long limitc;
|
|
|
|
long limitr;
|
|
|
|
long limitt;
|
|
|
|
int nicelvl;
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
|
|
|
#define set_user (G.set_user)
|
|
|
|
#define env_user (G.env_user)
|
|
|
|
#define env_dir (G.env_dir )
|
|
|
|
#define root (G.root )
|
|
|
|
#define limitd (G.limitd )
|
|
|
|
#define limits (G.limits )
|
|
|
|
#define limitl (G.limitl )
|
|
|
|
#define limita (G.limita )
|
|
|
|
#define limito (G.limito )
|
|
|
|
#define limitp (G.limitp )
|
|
|
|
#define limitf (G.limitf )
|
|
|
|
#define limitc (G.limitc )
|
|
|
|
#define limitr (G.limitr )
|
|
|
|
#define limitt (G.limitt )
|
|
|
|
#define nicelvl (G.nicelvl )
|
|
|
|
#define INIT_G() do { \
|
|
|
|
long *p = &limitd; \
|
|
|
|
do *p++ = -2; while (p <= &limitt); \
|
|
|
|
} while (0)
|
2006-10-03 23:22:24 +05:30
|
|
|
|
2006-10-06 04:20:22 +05:30
|
|
|
static void suidgid(char *user)
|
2006-10-03 23:22:24 +05:30
|
|
|
{
|
2006-10-06 04:20:22 +05:30
|
|
|
struct bb_uidgid_t ugid;
|
2006-10-03 23:22:24 +05:30
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
if (!get_uidgid(&ugid, user, 1)) {
|
2006-10-06 04:20:22 +05:30
|
|
|
bb_error_msg_and_die("unknown user/group: %s", user);
|
2006-10-03 23:22:24 +05:30
|
|
|
}
|
2006-10-06 04:20:22 +05:30
|
|
|
if (setgroups(1, &ugid.gid) == -1)
|
2006-10-03 23:22:24 +05:30
|
|
|
bb_perror_msg_and_die("setgroups");
|
2006-10-06 04:20:22 +05:30
|
|
|
xsetgid(ugid.gid);
|
2006-10-03 23:22:24 +05:30
|
|
|
xsetuid(ugid.uid);
|
|
|
|
}
|
|
|
|
|
2006-10-06 04:20:22 +05:30
|
|
|
static void euidgid(char *user)
|
2006-10-03 23:22:24 +05:30
|
|
|
{
|
2006-10-06 04:20:22 +05:30
|
|
|
struct bb_uidgid_t ugid;
|
2006-10-03 23:22:24 +05:30
|
|
|
|
2006-12-28 11:14:47 +05:30
|
|
|
if (!get_uidgid(&ugid, user, 1)) {
|
2006-10-06 04:20:22 +05:30
|
|
|
bb_error_msg_and_die("unknown user/group: %s", user);
|
2006-10-03 23:22:24 +05:30
|
|
|
}
|
2006-10-06 04:20:22 +05:30
|
|
|
xsetenv("GID", utoa(ugid.gid));
|
2006-10-03 23:22:24 +05:30
|
|
|
xsetenv("UID", utoa(ugid.uid));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void edir(const char *directory_name)
|
|
|
|
{
|
|
|
|
int wdir;
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *d;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
wdir = xopen(".", O_RDONLY | O_NDELAY);
|
|
|
|
xchdir(directory_name);
|
|
|
|
dir = opendir(".");
|
|
|
|
if (!dir)
|
|
|
|
bb_perror_msg_and_die("opendir %s", directory_name);
|
|
|
|
for (;;) {
|
|
|
|
errno = 0;
|
|
|
|
d = readdir(dir);
|
|
|
|
if (!d) {
|
2006-11-16 07:57:24 +05:30
|
|
|
if (errno)
|
|
|
|
bb_perror_msg_and_die("readdir %s",
|
|
|
|
directory_name);
|
2006-10-03 23:22:24 +05:30
|
|
|
break;
|
|
|
|
}
|
2007-10-06 02:53:49 +05:30
|
|
|
if (d->d_name[0] == '.')
|
|
|
|
continue;
|
2006-10-03 23:22:24 +05:30
|
|
|
fd = open(d->d_name, O_RDONLY | O_NDELAY);
|
|
|
|
if (fd < 0) {
|
|
|
|
if ((errno == EISDIR) && env_dir) {
|
|
|
|
if (OPT_verbose)
|
2006-11-16 07:57:24 +05:30
|
|
|
bb_perror_msg("warning: %s/%s is a directory",
|
|
|
|
directory_name, d->d_name);
|
2006-10-03 23:22:24 +05:30
|
|
|
continue;
|
|
|
|
} else
|
2006-11-16 07:57:24 +05:30
|
|
|
bb_perror_msg_and_die("open %s/%s",
|
|
|
|
directory_name, d->d_name);
|
2006-10-03 23:22:24 +05:30
|
|
|
}
|
|
|
|
if (fd >= 0) {
|
|
|
|
char buf[256];
|
|
|
|
char *tail;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
size = safe_read(fd, buf, sizeof(buf)-1);
|
|
|
|
if (size < 0)
|
2006-11-16 07:57:24 +05:30
|
|
|
bb_perror_msg_and_die("read %s/%s",
|
|
|
|
directory_name, d->d_name);
|
2006-10-03 23:22:24 +05:30
|
|
|
if (size == 0) {
|
2006-10-06 14:24:49 +05:30
|
|
|
unsetenv(d->d_name);
|
2006-10-03 23:22:24 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
buf[size] = '\n';
|
|
|
|
tail = memchr(buf, '\n', sizeof(buf));
|
|
|
|
/* skip trailing whitespace */;
|
|
|
|
while (1) {
|
2007-10-06 02:53:49 +05:30
|
|
|
if (tail[0] == ' ') tail[0] = '\0';
|
|
|
|
if (tail[0] == '\t') tail[0] = '\0';
|
|
|
|
if (tail[0] == '\n') tail[0] = '\0';
|
2006-10-03 23:22:24 +05:30
|
|
|
if (tail == buf) break;
|
|
|
|
tail--;
|
|
|
|
}
|
|
|
|
xsetenv(d->d_name, buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
2007-10-06 02:53:49 +05:30
|
|
|
if (fchdir(wdir) == -1)
|
|
|
|
bb_perror_msg_and_die("fchdir");
|
2006-10-03 23:22:24 +05:30
|
|
|
close(wdir);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void limit(int what, long l)
|
|
|
|
{
|
|
|
|
struct rlimit r;
|
|
|
|
|
2007-10-06 02:53:49 +05:30
|
|
|
if (getrlimit(what, &r) == -1)
|
|
|
|
bb_perror_msg_and_die("getrlimit");
|
2006-10-03 23:22:24 +05:30
|
|
|
if ((l < 0) || (l > r.rlim_max))
|
|
|
|
r.rlim_cur = r.rlim_max;
|
|
|
|
else
|
|
|
|
r.rlim_cur = l;
|
2007-10-06 02:53:49 +05:30
|
|
|
if (setrlimit(what, &r) == -1)
|
|
|
|
bb_perror_msg_and_die("setrlimit");
|
2006-10-03 23:22:24 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void slimit(void)
|
|
|
|
{
|
|
|
|
if (limitd >= -1) {
|
|
|
|
#ifdef RLIMIT_DATA
|
|
|
|
limit(RLIMIT_DATA, limitd);
|
|
|
|
#else
|
2007-10-06 02:53:49 +05:30
|
|
|
if (OPT_verbose)
|
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"DATA");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limits >= -1) {
|
|
|
|
#ifdef RLIMIT_STACK
|
|
|
|
limit(RLIMIT_STACK, limits);
|
|
|
|
#else
|
2007-10-06 02:53:49 +05:30
|
|
|
if (OPT_verbose)
|
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"STACK");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limitl >= -1) {
|
|
|
|
#ifdef RLIMIT_MEMLOCK
|
|
|
|
limit(RLIMIT_MEMLOCK, limitl);
|
|
|
|
#else
|
2007-10-06 02:53:49 +05:30
|
|
|
if (OPT_verbose)
|
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"MEMLOCK");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limita >= -1) {
|
|
|
|
#ifdef RLIMIT_VMEM
|
|
|
|
limit(RLIMIT_VMEM, limita);
|
|
|
|
#else
|
|
|
|
#ifdef RLIMIT_AS
|
|
|
|
limit(RLIMIT_AS, limita);
|
|
|
|
#else
|
|
|
|
if (OPT_verbose)
|
2007-10-06 02:53:49 +05:30
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"VMEM");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limito >= -1) {
|
|
|
|
#ifdef RLIMIT_NOFILE
|
|
|
|
limit(RLIMIT_NOFILE, limito);
|
|
|
|
#else
|
|
|
|
#ifdef RLIMIT_OFILE
|
|
|
|
limit(RLIMIT_OFILE, limito);
|
|
|
|
#else
|
|
|
|
if (OPT_verbose)
|
2007-10-06 02:53:49 +05:30
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"NOFILE");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limitp >= -1) {
|
|
|
|
#ifdef RLIMIT_NPROC
|
|
|
|
limit(RLIMIT_NPROC, limitp);
|
|
|
|
#else
|
2007-10-06 02:53:49 +05:30
|
|
|
if (OPT_verbose)
|
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"NPROC");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limitf >= -1) {
|
|
|
|
#ifdef RLIMIT_FSIZE
|
|
|
|
limit(RLIMIT_FSIZE, limitf);
|
|
|
|
#else
|
2007-10-06 02:53:49 +05:30
|
|
|
if (OPT_verbose)
|
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"FSIZE");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limitc >= -1) {
|
|
|
|
#ifdef RLIMIT_CORE
|
|
|
|
limit(RLIMIT_CORE, limitc);
|
|
|
|
#else
|
2007-10-06 02:53:49 +05:30
|
|
|
if (OPT_verbose)
|
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"CORE");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limitr >= -1) {
|
|
|
|
#ifdef RLIMIT_RSS
|
|
|
|
limit(RLIMIT_RSS, limitr);
|
|
|
|
#else
|
2007-10-06 02:53:49 +05:30
|
|
|
if (OPT_verbose)
|
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"RSS");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (limitt >= -1) {
|
|
|
|
#ifdef RLIMIT_CPU
|
|
|
|
limit(RLIMIT_CPU, limitt);
|
|
|
|
#else
|
2007-10-06 02:53:49 +05:30
|
|
|
if (OPT_verbose)
|
|
|
|
bb_error_msg("system does not support RLIMIT_%s",
|
|
|
|
"CPU");
|
2006-10-03 23:22:24 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* argv[0] */
|
2007-10-06 02:53:49 +05:30
|
|
|
static void setuidgid(int, char **) ATTRIBUTE_NORETURN;
|
|
|
|
static void envuidgid(int, char **) ATTRIBUTE_NORETURN;
|
|
|
|
static void envdir(int, char **) ATTRIBUTE_NORETURN;
|
|
|
|
static void softlimit(int, char **) ATTRIBUTE_NORETURN;
|
2006-10-03 23:22:24 +05:30
|
|
|
|
2007-02-03 22:58:39 +05:30
|
|
|
int chpst_main(int argc, char **argv);
|
2006-10-03 23:22:24 +05:30
|
|
|
int chpst_main(int argc, char **argv)
|
|
|
|
{
|
2007-10-06 02:53:49 +05:30
|
|
|
INIT_G();
|
|
|
|
|
2006-10-04 02:30:43 +05:30
|
|
|
if (applet_name[3] == 'd') envdir(argc, argv);
|
|
|
|
if (applet_name[1] == 'o') softlimit(argc, argv);
|
|
|
|
if (applet_name[0] == 's') setuidgid(argc, argv);
|
|
|
|
if (applet_name[0] == 'e') envuidgid(argc, argv);
|
2006-11-25 03:24:44 +05:30
|
|
|
// otherwise we are chpst
|
2006-10-03 23:22:24 +05:30
|
|
|
|
|
|
|
{
|
|
|
|
char *m,*d,*o,*p,*f,*c,*r,*t,*n;
|
2007-08-18 21:02:12 +05:30
|
|
|
getopt32(argv, "+u:U:e:m:d:o:p:f:c:r:t:/:n:vP012",
|
2006-10-03 23:22:24 +05:30
|
|
|
&set_user,&env_user,&env_dir,
|
|
|
|
&m,&d,&o,&p,&f,&c,&r,&t,&root,&n);
|
2006-10-06 15:19:47 +05:30
|
|
|
// if (option_mask32 & 0x1) // -u
|
|
|
|
// if (option_mask32 & 0x2) // -U
|
|
|
|
// if (option_mask32 & 0x4) // -e
|
2006-10-08 18:19:22 +05:30
|
|
|
if (option_mask32 & 0x8) limits = limitl = limita = limitd = xatoul(m); // -m
|
|
|
|
if (option_mask32 & 0x10) limitd = xatoul(d); // -d
|
|
|
|
if (option_mask32 & 0x20) limito = xatoul(o); // -o
|
|
|
|
if (option_mask32 & 0x40) limitp = xatoul(p); // -p
|
|
|
|
if (option_mask32 & 0x80) limitf = xatoul(f); // -f
|
|
|
|
if (option_mask32 & 0x100) limitc = xatoul(c); // -c
|
|
|
|
if (option_mask32 & 0x200) limitr = xatoul(r); // -r
|
|
|
|
if (option_mask32 & 0x400) limitt = xatoul(t); // -t
|
2006-10-06 15:19:47 +05:30
|
|
|
// if (option_mask32 & 0x800) // -/
|
2006-10-08 18:19:22 +05:30
|
|
|
if (option_mask32 & 0x1000) nicelvl = xatoi(n); // -n
|
2006-10-03 23:22:24 +05:30
|
|
|
// The below consts should match #defines at top!
|
2006-10-06 15:19:47 +05:30
|
|
|
//if (option_mask32 & 0x2000) OPT_verbose = 1; // -v
|
|
|
|
//if (option_mask32 & 0x4000) OPT_pgrp = 1; // -P
|
|
|
|
//if (option_mask32 & 0x8000) OPT_nostdin = 1; // -0
|
|
|
|
//if (option_mask32 & 0x10000) OPT_nostdout = 1; // -1
|
|
|
|
//if (option_mask32 & 0x20000) OPT_nostderr = 1; // -2
|
2006-10-03 23:22:24 +05:30
|
|
|
}
|
2006-10-06 14:24:49 +05:30
|
|
|
argv += optind;
|
2006-10-03 23:22:24 +05:30
|
|
|
if (!argv || !*argv) bb_show_usage();
|
2007-01-11 22:50:00 +05:30
|
|
|
|
2006-10-03 23:22:24 +05:30
|
|
|
if (OPT_pgrp) setsid();
|
|
|
|
if (env_dir) edir(env_dir);
|
|
|
|
if (root) {
|
|
|
|
xchdir(root);
|
|
|
|
if (chroot(".") == -1)
|
|
|
|
bb_perror_msg_and_die("chroot");
|
|
|
|
}
|
|
|
|
slimit();
|
|
|
|
if (nicelvl) {
|
|
|
|
errno = 0;
|
|
|
|
if (nice(nicelvl) == -1)
|
|
|
|
bb_perror_msg_and_die("nice");
|
|
|
|
}
|
2006-10-06 04:20:22 +05:30
|
|
|
if (env_user) euidgid(env_user);
|
|
|
|
if (set_user) suidgid(set_user);
|
2006-10-03 23:22:24 +05:30
|
|
|
if (OPT_nostdin) close(0);
|
|
|
|
if (OPT_nostdout) close(1);
|
|
|
|
if (OPT_nostderr) close(2);
|
2007-02-06 06:50:12 +05:30
|
|
|
BB_EXECVP(argv[0], argv);
|
2006-10-03 23:22:24 +05:30
|
|
|
bb_perror_msg_and_die("exec %s", argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setuidgid(int argc, char **argv)
|
|
|
|
{
|
|
|
|
const char *account;
|
|
|
|
|
|
|
|
account = *++argv;
|
|
|
|
if (!account) bb_show_usage();
|
|
|
|
if (!*++argv) bb_show_usage();
|
2006-10-06 04:20:22 +05:30
|
|
|
suidgid((char*)account);
|
2007-02-06 06:50:12 +05:30
|
|
|
BB_EXECVP(argv[0], argv);
|
2006-10-03 23:22:24 +05:30
|
|
|
bb_perror_msg_and_die("exec %s", argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void envuidgid(int argc, char **argv)
|
|
|
|
{
|
|
|
|
const char *account;
|
|
|
|
|
|
|
|
account = *++argv;
|
|
|
|
if (!account) bb_show_usage();
|
|
|
|
if (!*++argv) bb_show_usage();
|
2006-10-06 04:20:22 +05:30
|
|
|
euidgid((char*)account);
|
2007-02-06 06:50:12 +05:30
|
|
|
BB_EXECVP(argv[0], argv);
|
2006-10-03 23:22:24 +05:30
|
|
|
bb_perror_msg_and_die("exec %s", argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void envdir(int argc, char **argv)
|
|
|
|
{
|
|
|
|
const char *dir;
|
|
|
|
|
|
|
|
dir = *++argv;
|
|
|
|
if (!dir) bb_show_usage();
|
|
|
|
if (!*++argv) bb_show_usage();
|
|
|
|
edir(dir);
|
2007-02-06 06:50:12 +05:30
|
|
|
BB_EXECVP(argv[0], argv);
|
2006-10-03 23:22:24 +05:30
|
|
|
bb_perror_msg_and_die("exec %s", argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void softlimit(int argc, char **argv)
|
|
|
|
{
|
|
|
|
char *a,*c,*d,*f,*l,*m,*o,*p,*r,*s,*t;
|
2007-08-18 21:02:12 +05:30
|
|
|
getopt32(argv, "+a:c:d:f:l:m:o:p:r:s:t:",
|
2006-10-03 23:22:24 +05:30
|
|
|
&a,&c,&d,&f,&l,&m,&o,&p,&r,&s,&t);
|
2006-10-08 18:19:22 +05:30
|
|
|
if (option_mask32 & 0x001) limita = xatoul(a); // -a
|
|
|
|
if (option_mask32 & 0x002) limitc = xatoul(c); // -c
|
|
|
|
if (option_mask32 & 0x004) limitd = xatoul(d); // -d
|
|
|
|
if (option_mask32 & 0x008) limitf = xatoul(f); // -f
|
|
|
|
if (option_mask32 & 0x010) limitl = xatoul(l); // -l
|
|
|
|
if (option_mask32 & 0x020) limits = limitl = limita = limitd = xatoul(m); // -m
|
|
|
|
if (option_mask32 & 0x040) limito = xatoul(o); // -o
|
|
|
|
if (option_mask32 & 0x080) limitp = xatoul(p); // -p
|
|
|
|
if (option_mask32 & 0x100) limitr = xatoul(r); // -r
|
|
|
|
if (option_mask32 & 0x200) limits = xatoul(s); // -s
|
|
|
|
if (option_mask32 & 0x400) limitt = xatoul(t); // -t
|
2006-10-03 23:22:24 +05:30
|
|
|
argv += optind;
|
|
|
|
if (!argv[0]) bb_show_usage();
|
|
|
|
slimit();
|
2007-02-06 06:50:12 +05:30
|
|
|
BB_EXECVP(argv[0], argv);
|
2006-10-03 23:22:24 +05:30
|
|
|
bb_perror_msg_and_die("exec %s", argv[0]);
|
|
|
|
}
|