blob: 65a80001b14d4e032b847722669004b5a390e902 [file] [log] [blame]
Manuel Novoa III 2c511602005-02-13 20:14:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersenbf960f52000-07-21 21:32:12 +00002/*
Manuel Novoa III 2c511602005-02-13 20:14:05 +00003 * renice implementation for busybox
Eric Andersenbf960f52000-07-21 21:32:12 +00004 *
Manuel Novoa III 2c511602005-02-13 20:14:05 +00005 * Copyright (C) 2005 Manuel Novoa III <mjn3@codepoet.org>
Eric Andersenbf960f52000-07-21 21:32:12 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenbf960f52000-07-21 21:32:12 +00008 */
9
Manuel Novoa III 2c511602005-02-13 20:14:05 +000010/* Notes:
11 * Setting an absolute priority was obsoleted in SUSv2 and removed
12 * in SUSv3. However, the common linux version of renice does
13 * absolute and not relative. So we'll continue supporting absolute,
14 * although the stdout logging has been removed since both SUSv2 and
15 * SUSv3 specify that stdout isn't used.
16 *
17 * This version is lenient in that it doesn't require any IDs. The
18 * options -p, -g, and -u are treated as mode switches for the
19 * following IDs (if any). Multiple switches are allowed.
20 */
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010021//config:config RENICE
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020022//config: bool "renice (3.8 kb)"
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010023//config: default y
24//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020025//config: Renice alters the scheduling priority of one or more running
26//config: processes.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010027
Denys Vlasenko1a1203f2017-08-07 16:47:34 +020028//applet:IF_RENICE(APPLET_NOEXEC(renice, renice, BB_DIR_USR_BIN, BB_SUID_DROP, renice))
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010029
30//kbuild:lib-$(CONFIG_RENICE) += renice.o
Manuel Novoa III 2c511602005-02-13 20:14:05 +000031
Pere Orga5bc8c002011-04-11 03:29:49 +020032//usage:#define renice_trivial_usage
Denys Vlasenkod2b820b2016-03-07 15:21:54 +010033//usage: "[-n] PRIORITY [[-p | -g | -u] ID...]..."
Pere Orga5bc8c002011-04-11 03:29:49 +020034//usage:#define renice_full_usage "\n\n"
Denys Vlasenkod2b820b2016-03-07 15:21:54 +010035//usage: "Change scheduling priority of a running process\n"
36//usage: "\n -n Add PRIORITY to current nice value"
37//usage: "\n Without -n, nice value is set to PRIORITY"
38//usage: "\n -p Process ids (default)"
39//usage: "\n -g Process group ids"
40//usage: "\n -u Process user names"
Pere Orga5bc8c002011-04-11 03:29:49 +020041
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000042#include "libbb.h"
Eric Andersenbf960f52000-07-21 21:32:12 +000043#include <sys/resource.h>
44
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000045int renice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000046int renice_main(int argc UNUSED_PARAM, char **argv)
Manuel Novoa III 2c511602005-02-13 20:14:05 +000047{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000048 static const char Xetpriority_msg[] ALIGN1 = "%cetpriority";
Manuel Novoa III 2c511602005-02-13 20:14:05 +000049
50 int retval = EXIT_SUCCESS;
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020051 int which = PRIO_PROCESS; /* Default 'which' value. */
Manuel Novoa III 2c511602005-02-13 20:14:05 +000052 int use_relative = 0;
53 int adjustment, new_priority;
Denis Vlasenko13858992006-10-08 12:49:22 +000054 unsigned who;
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000055 char *arg;
Manuel Novoa III 2c511602005-02-13 20:14:05 +000056
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000057 /* Yes, they are not #defines in glibc 2.4! #if won't work */
Denys Vlasenko99679782018-01-14 19:05:02 +010058 BUILD_BUG_ON(PRIO_PROCESS < CHAR_MIN || PRIO_PROCESS > CHAR_MAX);
59 BUILD_BUG_ON(PRIO_PGRP < CHAR_MIN || PRIO_PGRP > CHAR_MAX);
60 BUILD_BUG_ON(PRIO_USER < CHAR_MIN || PRIO_USER > CHAR_MAX);
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000061
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000062 arg = *++argv;
Manuel Novoa III 2c511602005-02-13 20:14:05 +000063
64 /* Check if we are using a relative adjustment. */
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000065 if (arg && arg[0] == '-' && arg[1] == 'n') {
Manuel Novoa III 2c511602005-02-13 20:14:05 +000066 use_relative = 1;
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000067 if (!arg[2])
68 arg = *++argv;
69 else
70 arg += 2;
Manuel Novoa III 2c511602005-02-13 20:14:05 +000071 }
72
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020073 if (!arg) { /* No args? Then show usage. */
Manuel Novoa III 2c511602005-02-13 20:14:05 +000074 bb_show_usage();
75 }
76
77 /* Get the priority adjustment (absolute or relative). */
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000078 adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2);
Manuel Novoa III 2c511602005-02-13 20:14:05 +000079
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000080 while ((arg = *++argv) != NULL) {
Manuel Novoa III 2c511602005-02-13 20:14:05 +000081 /* Check for a mode switch. */
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000082 if (arg[0] == '-' && arg[1]) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000083 static const char opts[] ALIGN1 = {
84 'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER
85 };
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000086 const char *p = strchr(opts, arg[1]);
Denis Vlasenko13858992006-10-08 12:49:22 +000087 if (p) {
Manuel Novoa III 2c511602005-02-13 20:14:05 +000088 which = p[4];
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000089 if (!arg[2])
90 continue;
91 arg += 2;
Manuel Novoa III 2c511602005-02-13 20:14:05 +000092 }
93 }
94
95 /* Process an ID arg. */
96 if (which == PRIO_USER) {
97 struct passwd *p;
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000098 p = getpwnam(arg);
Denis Vlasenko13858992006-10-08 12:49:22 +000099 if (!p) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +0000100 bb_error_msg("unknown user %s", arg);
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000101 goto HAD_ERROR;
102 }
103 who = p->pw_uid;
104 } else {
Denis Vlasenkod686a042006-11-27 14:43:21 +0000105 who = bb_strtou(arg, NULL, 10);
106 if (errno) {
Denys Vlasenkob32a5432010-08-29 13:29:02 +0200107 bb_error_msg("invalid number '%s'", arg);
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000108 goto HAD_ERROR;
109 }
110 }
111
112 /* Get priority to use, and set it. */
113 if (use_relative) {
114 int old_priority;
115
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200116 errno = 0; /* Needed for getpriority error detection. */
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000117 old_priority = getpriority(which, who);
118 if (errno) {
Denis Vlasenkoca3c9812006-10-08 23:36:17 +0000119 bb_perror_msg(Xetpriority_msg, 'g');
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000120 goto HAD_ERROR;
121 }
122
Denis Vlasenkoca3c9812006-10-08 23:36:17 +0000123 new_priority = old_priority + adjustment;
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000124 } else {
125 new_priority = adjustment;
126 }
127
128 if (setpriority(which, who, new_priority) == 0) {
129 continue;
130 }
131
Denis Vlasenkoca3c9812006-10-08 23:36:17 +0000132 bb_perror_msg(Xetpriority_msg, 's');
133 HAD_ERROR:
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000134 retval = EXIT_FAILURE;
135 }
136
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200137 /* No need to check for errors outputting to stderr since, if it
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000138 * was used, the HAD_ERROR label was reached and retval was set. */
139
140 return retval;
Eric Andersenbf960f52000-07-21 21:32:12 +0000141}