2005-02-13 20:14:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-07-21 21:32:12 +00:00
|
|
|
/*
|
2005-02-13 20:14:05 +00:00
|
|
|
* renice implementation for busybox
|
2000-07-21 21:32:12 +00:00
|
|
|
*
|
2005-02-13 20:14:05 +00:00
|
|
|
* Copyright (C) 2005 Manuel Novoa III <mjn3@codepoet.org>
|
2000-07-21 21:32:12 +00:00
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2000-07-21 21:32:12 +00:00
|
|
|
*/
|
|
|
|
|
2005-02-13 20:14:05 +00:00
|
|
|
/* 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.
|
|
|
|
*/
|
2016-11-23 05:23:44 +00:00
|
|
|
//config:config RENICE
|
|
|
|
//config: bool "renice"
|
|
|
|
//config: default y
|
|
|
|
//config: help
|
|
|
|
//config: Renice alters the scheduling priority of one or more running
|
|
|
|
//config: processes.
|
|
|
|
|
|
|
|
//applet:IF_RENICE(APPLET(renice, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_RENICE) += renice.o
|
2005-02-13 20:14:05 +00:00
|
|
|
|
2011-04-11 01:29:49 +00:00
|
|
|
//usage:#define renice_trivial_usage
|
2016-03-07 14:21:54 +00:00
|
|
|
//usage: "[-n] PRIORITY [[-p | -g | -u] ID...]..."
|
2011-04-11 01:29:49 +00:00
|
|
|
//usage:#define renice_full_usage "\n\n"
|
2016-03-07 14:21:54 +00:00
|
|
|
//usage: "Change scheduling priority of a running process\n"
|
|
|
|
//usage: "\n -n Add PRIORITY to current nice value"
|
|
|
|
//usage: "\n Without -n, nice value is set to PRIORITY"
|
|
|
|
//usage: "\n -p Process ids (default)"
|
|
|
|
//usage: "\n -g Process group ids"
|
|
|
|
//usage: "\n -u Process user names"
|
2011-04-11 01:29:49 +00:00
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2000-07-21 21:32:12 +00:00
|
|
|
#include <sys/resource.h>
|
|
|
|
|
2006-11-17 20:29:00 +00:00
|
|
|
void BUG_bad_PRIO_PROCESS(void);
|
|
|
|
void BUG_bad_PRIO_PGRP(void);
|
|
|
|
void BUG_bad_PRIO_USER(void);
|
2005-02-13 20:14:05 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int renice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int renice_main(int argc UNUSED_PARAM, char **argv)
|
2000-07-21 21:32:12 +00:00
|
|
|
{
|
2007-08-12 20:58:27 +00:00
|
|
|
static const char Xetpriority_msg[] ALIGN1 = "%cetpriority";
|
2005-02-13 20:14:05 +00:00
|
|
|
|
|
|
|
int retval = EXIT_SUCCESS;
|
2010-10-28 16:57:19 +00:00
|
|
|
int which = PRIO_PROCESS; /* Default 'which' value. */
|
2005-02-13 20:14:05 +00:00
|
|
|
int use_relative = 0;
|
|
|
|
int adjustment, new_priority;
|
2006-10-08 12:49:22 +00:00
|
|
|
unsigned who;
|
2006-10-08 23:36:17 +00:00
|
|
|
char *arg;
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2006-11-17 20:29:00 +00:00
|
|
|
/* 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-08 23:36:17 +00:00
|
|
|
arg = *++argv;
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2005-02-13 20:14:05 +00:00
|
|
|
/* Check if we are using a relative adjustment. */
|
2006-10-08 23:36:17 +00:00
|
|
|
if (arg && arg[0] == '-' && arg[1] == 'n') {
|
2005-02-13 20:14:05 +00:00
|
|
|
use_relative = 1;
|
2006-10-08 23:36:17 +00:00
|
|
|
if (!arg[2])
|
|
|
|
arg = *++argv;
|
|
|
|
else
|
|
|
|
arg += 2;
|
2005-02-13 20:14:05 +00:00
|
|
|
}
|
|
|
|
|
2010-10-28 16:57:19 +00:00
|
|
|
if (!arg) { /* No args? Then show usage. */
|
2005-02-13 20:14:05 +00:00
|
|
|
bb_show_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the priority adjustment (absolute or relative). */
|
2006-10-08 23:36:17 +00:00
|
|
|
adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2);
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2006-10-08 23:36:17 +00:00
|
|
|
while ((arg = *++argv) != NULL) {
|
2005-02-13 20:14:05 +00:00
|
|
|
/* Check for a mode switch. */
|
2006-10-08 23:36:17 +00:00
|
|
|
if (arg[0] == '-' && arg[1]) {
|
2007-08-12 20:58:27 +00:00
|
|
|
static const char opts[] ALIGN1 = {
|
|
|
|
'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER
|
|
|
|
};
|
2006-10-08 23:36:17 +00:00
|
|
|
const char *p = strchr(opts, arg[1]);
|
2006-10-08 12:49:22 +00:00
|
|
|
if (p) {
|
2005-02-13 20:14:05 +00:00
|
|
|
which = p[4];
|
2006-10-08 23:36:17 +00:00
|
|
|
if (!arg[2])
|
|
|
|
continue;
|
|
|
|
arg += 2;
|
2005-02-13 20:14:05 +00:00
|
|
|
}
|
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2005-02-13 20:14:05 +00:00
|
|
|
/* Process an ID arg. */
|
|
|
|
if (which == PRIO_USER) {
|
|
|
|
struct passwd *p;
|
2006-10-08 23:36:17 +00:00
|
|
|
p = getpwnam(arg);
|
2006-10-08 12:49:22 +00:00
|
|
|
if (!p) {
|
2008-07-21 14:41:33 +00:00
|
|
|
bb_error_msg("unknown user %s", arg);
|
2005-02-13 20:14:05 +00:00
|
|
|
goto HAD_ERROR;
|
|
|
|
}
|
|
|
|
who = p->pw_uid;
|
2000-07-21 21:32:12 +00:00
|
|
|
} else {
|
2006-11-27 14:43:21 +00:00
|
|
|
who = bb_strtou(arg, NULL, 10);
|
|
|
|
if (errno) {
|
2010-08-29 11:29:02 +00:00
|
|
|
bb_error_msg("invalid number '%s'", arg);
|
2005-02-13 20:14:05 +00:00
|
|
|
goto HAD_ERROR;
|
|
|
|
}
|
2000-07-21 21:32:12 +00:00
|
|
|
}
|
2005-02-13 20:14:05 +00:00
|
|
|
|
|
|
|
/* Get priority to use, and set it. */
|
|
|
|
if (use_relative) {
|
|
|
|
int old_priority;
|
|
|
|
|
2010-10-28 16:57:19 +00:00
|
|
|
errno = 0; /* Needed for getpriority error detection. */
|
2005-02-13 20:14:05 +00:00
|
|
|
old_priority = getpriority(which, who);
|
|
|
|
if (errno) {
|
2006-10-08 23:36:17 +00:00
|
|
|
bb_perror_msg(Xetpriority_msg, 'g');
|
2005-02-13 20:14:05 +00:00
|
|
|
goto HAD_ERROR;
|
|
|
|
}
|
|
|
|
|
2006-10-08 23:36:17 +00:00
|
|
|
new_priority = old_priority + adjustment;
|
2005-02-13 20:14:05 +00:00
|
|
|
} else {
|
|
|
|
new_priority = adjustment;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setpriority(which, who, new_priority) == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-10-08 23:36:17 +00:00
|
|
|
bb_perror_msg(Xetpriority_msg, 's');
|
|
|
|
HAD_ERROR:
|
2005-02-13 20:14:05 +00:00
|
|
|
retval = EXIT_FAILURE;
|
2000-07-21 21:32:12 +00:00
|
|
|
}
|
2000-12-05 20:07:27 +00:00
|
|
|
|
2005-02-13 20:14:05 +00:00
|
|
|
/* 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-21 21:32:12 +00:00
|
|
|
}
|