2005-02-14 01:44:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-07-22 03:02:12 +05:30
|
|
|
/*
|
2005-02-14 01:44:05 +05:30
|
|
|
* renice implementation for busybox
|
2000-07-22 03:02:12 +05:30
|
|
|
*
|
2005-02-14 01:44:05 +05:30
|
|
|
* Copyright (C) 2005 Manuel Novoa III <mjn3@codepoet.org>
|
2000-07-22 03:02:12 +05:30
|
|
|
*
|
2006-06-03 02:26:16 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-07-22 03:02:12 +05:30
|
|
|
*/
|
|
|
|
|
2005-02-14 01:44:05 +05:30
|
|
|
/* Notes:
|
|
|
|
* Setting an absolute priority was obsoleted in SUSv2 and removed
|
|
|
|
* in SUSv3. However, the common linux version of renice does
|
|
|
|
* absolute and not relative. So we'll continue supporting absolute,
|
|
|
|
* although the stdout logging has been removed since both SUSv2 and
|
|
|
|
* SUSv3 specify that stdout isn't used.
|
|
|
|
*
|
|
|
|
* This version is lenient in that it doesn't require any IDs. The
|
|
|
|
* options -p, -g, and -u are treated as mode switches for the
|
|
|
|
* following IDs (if any). Multiple switches are allowed.
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-07-22 03:02:12 +05:30
|
|
|
#include <sys/resource.h>
|
|
|
|
|
2006-11-18 01:59:00 +05:30
|
|
|
void BUG_bad_PRIO_PROCESS(void);
|
|
|
|
void BUG_bad_PRIO_PGRP(void);
|
|
|
|
void BUG_bad_PRIO_USER(void);
|
2005-02-14 01:44:05 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int renice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int renice_main(int argc UNUSED_PARAM, char **argv)
|
2000-07-22 03:02:12 +05:30
|
|
|
{
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char Xetpriority_msg[] ALIGN1 = "%cetpriority";
|
2005-02-14 01:44:05 +05:30
|
|
|
|
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
int which = PRIO_PROCESS; /* Default 'which' value. */
|
|
|
|
int use_relative = 0;
|
|
|
|
int adjustment, new_priority;
|
2006-10-08 18:19:22 +05:30
|
|
|
unsigned who;
|
2006-10-09 05:06:17 +05:30
|
|
|
char *arg;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2006-11-18 01:59:00 +05:30
|
|
|
/* Yes, they are not #defines in glibc 2.4! #if won't work */
|
|
|
|
if (PRIO_PROCESS < CHAR_MIN || PRIO_PROCESS > CHAR_MAX)
|
|
|
|
BUG_bad_PRIO_PROCESS();
|
|
|
|
if (PRIO_PGRP < CHAR_MIN || PRIO_PGRP > CHAR_MAX)
|
|
|
|
BUG_bad_PRIO_PGRP();
|
|
|
|
if (PRIO_USER < CHAR_MIN || PRIO_USER > CHAR_MAX)
|
|
|
|
BUG_bad_PRIO_USER();
|
|
|
|
|
2006-10-09 05:06:17 +05:30
|
|
|
arg = *++argv;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2005-02-14 01:44:05 +05:30
|
|
|
/* Check if we are using a relative adjustment. */
|
2006-10-09 05:06:17 +05:30
|
|
|
if (arg && arg[0] == '-' && arg[1] == 'n') {
|
2005-02-14 01:44:05 +05:30
|
|
|
use_relative = 1;
|
2006-10-09 05:06:17 +05:30
|
|
|
if (!arg[2])
|
|
|
|
arg = *++argv;
|
|
|
|
else
|
|
|
|
arg += 2;
|
2005-02-14 01:44:05 +05:30
|
|
|
}
|
|
|
|
|
2006-10-09 05:06:17 +05:30
|
|
|
if (!arg) { /* No args? Then show usage. */
|
2005-02-14 01:44:05 +05:30
|
|
|
bb_show_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the priority adjustment (absolute or relative). */
|
2006-10-09 05:06:17 +05:30
|
|
|
adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2006-10-09 05:06:17 +05:30
|
|
|
while ((arg = *++argv) != NULL) {
|
2005-02-14 01:44:05 +05:30
|
|
|
/* Check for a mode switch. */
|
2006-10-09 05:06:17 +05:30
|
|
|
if (arg[0] == '-' && arg[1]) {
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char opts[] ALIGN1 = {
|
|
|
|
'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER
|
|
|
|
};
|
2006-10-09 05:06:17 +05:30
|
|
|
const char *p = strchr(opts, arg[1]);
|
2006-10-08 18:19:22 +05:30
|
|
|
if (p) {
|
2005-02-14 01:44:05 +05:30
|
|
|
which = p[4];
|
2006-10-09 05:06:17 +05:30
|
|
|
if (!arg[2])
|
|
|
|
continue;
|
|
|
|
arg += 2;
|
2005-02-14 01:44:05 +05:30
|
|
|
}
|
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2005-02-14 01:44:05 +05:30
|
|
|
/* Process an ID arg. */
|
|
|
|
if (which == PRIO_USER) {
|
|
|
|
struct passwd *p;
|
2006-10-09 05:06:17 +05:30
|
|
|
p = getpwnam(arg);
|
2006-10-08 18:19:22 +05:30
|
|
|
if (!p) {
|
2008-07-21 20:11:33 +05:30
|
|
|
bb_error_msg("unknown user %s", arg);
|
2005-02-14 01:44:05 +05:30
|
|
|
goto HAD_ERROR;
|
|
|
|
}
|
|
|
|
who = p->pw_uid;
|
2000-07-22 03:02:12 +05:30
|
|
|
} else {
|
2006-11-27 20:13:21 +05:30
|
|
|
who = bb_strtou(arg, NULL, 10);
|
|
|
|
if (errno) {
|
2006-10-09 05:06:17 +05:30
|
|
|
bb_error_msg("bad value: %s", arg);
|
2005-02-14 01:44:05 +05:30
|
|
|
goto HAD_ERROR;
|
|
|
|
}
|
2000-07-22 03:02:12 +05:30
|
|
|
}
|
2005-02-14 01:44:05 +05:30
|
|
|
|
|
|
|
/* Get priority to use, and set it. */
|
|
|
|
if (use_relative) {
|
|
|
|
int old_priority;
|
|
|
|
|
|
|
|
errno = 0; /* Needed for getpriority error detection. */
|
|
|
|
old_priority = getpriority(which, who);
|
|
|
|
if (errno) {
|
2006-10-09 05:06:17 +05:30
|
|
|
bb_perror_msg(Xetpriority_msg, 'g');
|
2005-02-14 01:44:05 +05:30
|
|
|
goto HAD_ERROR;
|
|
|
|
}
|
|
|
|
|
2006-10-09 05:06:17 +05:30
|
|
|
new_priority = old_priority + adjustment;
|
2005-02-14 01:44:05 +05:30
|
|
|
} else {
|
|
|
|
new_priority = adjustment;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setpriority(which, who, new_priority) == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-10-09 05:06:17 +05:30
|
|
|
bb_perror_msg(Xetpriority_msg, 's');
|
|
|
|
HAD_ERROR:
|
2005-02-14 01:44:05 +05:30
|
|
|
retval = EXIT_FAILURE;
|
2000-07-22 03:02:12 +05:30
|
|
|
}
|
2000-12-06 01:37:27 +05:30
|
|
|
|
2005-02-14 01:44:05 +05:30
|
|
|
/* No need to check for errors outputing to stderr since, if it
|
|
|
|
* was used, the HAD_ERROR label was reached and retval was set. */
|
|
|
|
|
|
|
|
return retval;
|
2000-07-22 03:02:12 +05:30
|
|
|
}
|