blob: d2dcf152c2101fe71b716bb6a242d343144f5425 [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 *
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +00007 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
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 */
21
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000022#include "libbb.h"
Eric Andersenbf960f52000-07-21 21:32:12 +000023#include <sys/resource.h>
24
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000025void BUG_bad_PRIO_PROCESS(void);
26void BUG_bad_PRIO_PGRP(void);
27void BUG_bad_PRIO_USER(void);
Eric Andersenbf960f52000-07-21 21:32:12 +000028
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000029int renice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +000030int renice_main(int argc ATTRIBUTE_UNUSED, char **argv)
Manuel Novoa III 2c511602005-02-13 20:14:05 +000031{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000032 static const char Xetpriority_msg[] ALIGN1 = "%cetpriority";
Manuel Novoa III 2c511602005-02-13 20:14:05 +000033
34 int retval = EXIT_SUCCESS;
35 int which = PRIO_PROCESS; /* Default 'which' value. */
36 int use_relative = 0;
37 int adjustment, new_priority;
Denis Vlasenko13858992006-10-08 12:49:22 +000038 unsigned who;
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000039 char *arg;
Manuel Novoa III 2c511602005-02-13 20:14:05 +000040
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000041 /* Yes, they are not #defines in glibc 2.4! #if won't work */
42 if (PRIO_PROCESS < CHAR_MIN || PRIO_PROCESS > CHAR_MAX)
43 BUG_bad_PRIO_PROCESS();
44 if (PRIO_PGRP < CHAR_MIN || PRIO_PGRP > CHAR_MAX)
45 BUG_bad_PRIO_PGRP();
46 if (PRIO_USER < CHAR_MIN || PRIO_USER > CHAR_MAX)
47 BUG_bad_PRIO_USER();
48
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000049 arg = *++argv;
Manuel Novoa III 2c511602005-02-13 20:14:05 +000050
51 /* Check if we are using a relative adjustment. */
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000052 if (arg && arg[0] == '-' && arg[1] == 'n') {
Manuel Novoa III 2c511602005-02-13 20:14:05 +000053 use_relative = 1;
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000054 if (!arg[2])
55 arg = *++argv;
56 else
57 arg += 2;
Manuel Novoa III 2c511602005-02-13 20:14:05 +000058 }
59
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000060 if (!arg) { /* No args? Then show usage. */
Manuel Novoa III 2c511602005-02-13 20:14:05 +000061 bb_show_usage();
62 }
63
64 /* Get the priority adjustment (absolute or relative). */
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000065 adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2);
Manuel Novoa III 2c511602005-02-13 20:14:05 +000066
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000067 while ((arg = *++argv) != NULL) {
Manuel Novoa III 2c511602005-02-13 20:14:05 +000068 /* Check for a mode switch. */
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000069 if (arg[0] == '-' && arg[1]) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000070 static const char opts[] ALIGN1 = {
71 'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER
72 };
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000073 const char *p = strchr(opts, arg[1]);
Denis Vlasenko13858992006-10-08 12:49:22 +000074 if (p) {
Manuel Novoa III 2c511602005-02-13 20:14:05 +000075 which = p[4];
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000076 if (!arg[2])
77 continue;
78 arg += 2;
Manuel Novoa III 2c511602005-02-13 20:14:05 +000079 }
80 }
81
82 /* Process an ID arg. */
83 if (which == PRIO_USER) {
84 struct passwd *p;
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000085 p = getpwnam(arg);
Denis Vlasenko13858992006-10-08 12:49:22 +000086 if (!p) {
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000087 bb_error_msg("unknown user: %s", arg);
Manuel Novoa III 2c511602005-02-13 20:14:05 +000088 goto HAD_ERROR;
89 }
90 who = p->pw_uid;
91 } else {
Denis Vlasenkod686a042006-11-27 14:43:21 +000092 who = bb_strtou(arg, NULL, 10);
93 if (errno) {
Denis Vlasenkoca3c9812006-10-08 23:36:17 +000094 bb_error_msg("bad value: %s", arg);
Manuel Novoa III 2c511602005-02-13 20:14:05 +000095 goto HAD_ERROR;
96 }
97 }
98
99 /* Get priority to use, and set it. */
100 if (use_relative) {
101 int old_priority;
102
103 errno = 0; /* Needed for getpriority error detection. */
104 old_priority = getpriority(which, who);
105 if (errno) {
Denis Vlasenkoca3c9812006-10-08 23:36:17 +0000106 bb_perror_msg(Xetpriority_msg, 'g');
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000107 goto HAD_ERROR;
108 }
109
Denis Vlasenkoca3c9812006-10-08 23:36:17 +0000110 new_priority = old_priority + adjustment;
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000111 } else {
112 new_priority = adjustment;
113 }
114
115 if (setpriority(which, who, new_priority) == 0) {
116 continue;
117 }
118
Denis Vlasenkoca3c9812006-10-08 23:36:17 +0000119 bb_perror_msg(Xetpriority_msg, 's');
120 HAD_ERROR:
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000121 retval = EXIT_FAILURE;
122 }
123
124 /* No need to check for errors outputing to stderr since, if it
125 * was used, the HAD_ERROR label was reached and retval was set. */
126
127 return retval;
Eric Andersenbf960f52000-07-21 21:32:12 +0000128}