blob: d4ce66d2e97dfa274cec5868a15959b7a3c30c32 [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 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Manuel Novoa III 2c511602005-02-13 20:14:05 +000023/* Notes:
24 * Setting an absolute priority was obsoleted in SUSv2 and removed
25 * in SUSv3. However, the common linux version of renice does
26 * absolute and not relative. So we'll continue supporting absolute,
27 * although the stdout logging has been removed since both SUSv2 and
28 * SUSv3 specify that stdout isn't used.
29 *
30 * This version is lenient in that it doesn't require any IDs. The
31 * options -p, -g, and -u are treated as mode switches for the
32 * following IDs (if any). Multiple switches are allowed.
33 */
34
Eric Andersenbf960f52000-07-21 21:32:12 +000035#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000036#include <stdlib.h>
Manuel Novoa III 2c511602005-02-13 20:14:05 +000037#include <string.h>
38#include <limits.h>
39#include <errno.h>
40#include <unistd.h>
Eric Andersenbf960f52000-07-21 21:32:12 +000041#include <sys/time.h>
42#include <sys/resource.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000043#include "busybox.h"
Eric Andersenbf960f52000-07-21 21:32:12 +000044
Manuel Novoa III 2c511602005-02-13 20:14:05 +000045#if (PRIO_PROCESS < CHAR_MIN) || (PRIO_PROCESS > CHAR_MAX)
46#error Assumption violated : PRIO_PROCESS value
47#endif
48#if (PRIO_PGRP < CHAR_MIN) || (PRIO_PGRP > CHAR_MAX)
49#error Assumption violated : PRIO_PGRP value
50#endif
51#if (PRIO_USER < CHAR_MIN) || (PRIO_USER > CHAR_MAX)
52#error Assumption violated : PRIO_USER value
53#endif
Eric Andersenbf960f52000-07-21 21:32:12 +000054
Manuel Novoa III 2c511602005-02-13 20:14:05 +000055static inline int int_add_no_wrap(int a, int b)
Eric Andersenbf960f52000-07-21 21:32:12 +000056{
Manuel Novoa III 2c511602005-02-13 20:14:05 +000057 int s = a + b;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000058
Manuel Novoa III 2c511602005-02-13 20:14:05 +000059 if (b < 0) {
60 if (s > a) s = INT_MIN;
61 } else {
62 if (s < a) s = INT_MAX;
Eric Andersenbf960f52000-07-21 21:32:12 +000063 }
Matt Kraaideb9d4d2000-12-05 20:07:27 +000064
Manuel Novoa III 2c511602005-02-13 20:14:05 +000065 return s;
66}
67
68int renice_main(int argc, char **argv)
69{
70 static const char Xetpriority_msg[] = "%d : %cetpriority";
71
72 int retval = EXIT_SUCCESS;
73 int which = PRIO_PROCESS; /* Default 'which' value. */
74 int use_relative = 0;
75 int adjustment, new_priority;
76 id_t who;
77
78 ++argv;
79
80 /* Check if we are using a relative adjustment. */
81 if (argv[0] && (argv[0][0] == '-') && (argv[0][1] == 'n') && !argv[0][2]) {
82 use_relative = 1;
83 ++argv;
84 }
85
86 if (!*argv) { /* No args? Then show usage. */
87 bb_show_usage();
88 }
89
90 /* Get the priority adjustment (absolute or relative). */
91 adjustment = bb_xgetlarg(*argv, 10, INT_MIN, INT_MAX);
92
93 while (*++argv) {
94 /* Check for a mode switch. */
95 if ((argv[0][0] == '-') && argv[0][1] && !argv[0][2]) {
96 static const char opts[]
97 = { 'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER };
98 const char *p;
99 if ((p = strchr(opts, argv[0][1]))) {
100 which = p[4];
101 continue;
102 }
103 }
104
105 /* Process an ID arg. */
106 if (which == PRIO_USER) {
107 struct passwd *p;
108 if (!(p = getpwnam(*argv))) {
109 bb_error_msg("unknown user: %s", *argv);
110 goto HAD_ERROR;
111 }
112 who = p->pw_uid;
113 } else {
114 char *e;
115 errno = 0;
116 who = strtoul(*argv, &e, 10);
117 if (*e || (*argv == e) || errno) {
118 bb_error_msg("bad value: %s", *argv);
119 goto HAD_ERROR;
120 }
121 }
122
123 /* Get priority to use, and set it. */
124 if (use_relative) {
125 int old_priority;
126
127 errno = 0; /* Needed for getpriority error detection. */
128 old_priority = getpriority(which, who);
129 if (errno) {
130 bb_perror_msg(Xetpriority_msg, who, 'g');
131 goto HAD_ERROR;
132 }
133
134 new_priority = int_add_no_wrap(old_priority, adjustment);
135 } else {
136 new_priority = adjustment;
137 }
138
139 if (setpriority(which, who, new_priority) == 0) {
140 continue;
141 }
142
143 bb_perror_msg(Xetpriority_msg, who, 's');
144 HAD_ERROR:
145 retval = EXIT_FAILURE;
146 }
147
148 /* No need to check for errors outputing to stderr since, if it
149 * was used, the HAD_ERROR label was reached and retval was set. */
150
151 return retval;
Eric Andersenbf960f52000-07-21 21:32:12 +0000152}