]> git.ipfire.org Git - thirdparty/util-linux.git/blame - sys-utils/renice.c
Merge branch 'uuid-time64_t' of https://github.com/thkukuk/util-linux
[thirdparty/util-linux.git] / sys-utils / renice.c
CommitLineData
6dbe3af9
KZ
1/*
2 * Copyright (c) 1983, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
b50945d4 34 /* 1999-02-22 Arkadiusz Miƛkiewicz <misiek@pld.ORG.PL>
7eda085c
KZ
35 * - added Native Language Support
36 */
37
6dbe3af9
KZ
38#include <sys/types.h>
39#include <sys/time.h>
40#include <sys/resource.h>
41
42#include <stdio.h>
43#include <pwd.h>
fd6b7a7f 44#include <stdlib.h>
66ee8158 45#include <string.h>
7eda085c
KZ
46#include <errno.h>
47#include "nls.h"
eb76ca98 48#include "c.h"
efb8854f 49#include "closestream.h"
fd6b7a7f 50
2ba641e5 51static const char *idtype[] = {
ce4030e4
SK
52 [PRIO_PROCESS] = N_("process ID"),
53 [PRIO_PGRP] = N_("process group ID"),
54 [PRIO_USER] = N_("user ID"),
55};
56
9325dbfd 57static void __attribute__((__noreturn__)) usage(void)
628cab7c 58{
9325dbfd 59 FILE *out = stdout;
6dcc066f 60 fputs(USAGE_HEADER, out);
ae1ae49e 61 fprintf(out,
56ce8f61
DA
62 _(" %1$s [-n|--priority|--relative] <priority> [-p|--pid] <pid>...\n"
63 " %1$s [-n|--priority|--relative] <priority> -g|--pgrp <pgid>...\n"
64 " %1$s [-n|--priority|--relative] <priority> -u|--user <user>...\n"),
296351b0 65 program_invocation_short_name);
451dbcfa
BS
66
67 fputs(USAGE_SEPARATOR, out);
68 fputs(_("Alter the priority of running processes.\n"), out);
69
6dcc066f 70 fputs(USAGE_OPTIONS, out);
56ce8f61
DA
71 fputs(_(" -n <num> specify the nice value\n"), out);
72 fputs(_(" If POSIXLY_CORRECT flag is set in environment\n"), out);
37c6b24c
DA
73 fputs(_(" then the priority is 'relative' to current\n"), out);
74 fputs(_(" process priority. Otherwise it is 'absolute'.\n"), out);
56ce8f61
DA
75 fputs(_(" --priority <num> specify the 'absolute' nice value\n"), out);
76 fputs(_(" --relative <num> specify the 'relative' nice value\n"), out);
390ba85c
KZ
77 fputs(_(" -p, --pid interpret arguments as process ID (default)\n"), out);
78 fputs(_(" -g, --pgrp interpret arguments as process group ID\n"), out);
79 fputs(_(" -u, --user interpret arguments as username or user ID\n"), out);
94b1623b 80 fputs(USAGE_SEPARATOR, out);
bad4c729
MY
81 fprintf(out, USAGE_HELP_OPTIONS(24));
82 fprintf(out, USAGE_MAN_TAIL("renice(1)"));
9325dbfd 83 exit(EXIT_SUCCESS);
628cab7c 84}
7cfbafda 85
ce4030e4 86static int getprio(const int which, const int who, int *prio)
00b490f0
SK
87{
88 errno = 0;
89 *prio = getpriority(which, who);
90 if (*prio == -1 && errno) {
ce4030e4 91 warn(_("failed to get priority for %d (%s)"), who, idtype[which]);
00b490f0
SK
92 return -errno;
93 }
94 return 0;
95}
96
56ce8f61 97static int donice(const int which, const int who, const int prio, const int relative)
00b490f0 98{
5ebcab66 99 int oldprio, newprio;
5ebcab66 100
ce4030e4 101 if (getprio(which, who, &oldprio) != 0)
5ebcab66 102 return 1;
bad4c729 103
37c6b24c 104 newprio = prio; // if not relative, set absolute priority
56ce8f61 105
56ce8f61 106 if (relative)
37c6b24c 107 newprio = oldprio + prio;
56ce8f61
DA
108
109 if (setpriority(which, who, newprio) < 0) {
ce4030e4 110 warn(_("failed to set priority for %d (%s)"), who, idtype[which]);
5ebcab66
SK
111 return 1;
112 }
ce4030e4 113 if (getprio(which, who, &newprio) != 0)
5ebcab66 114 return 1;
5ebcab66 115 printf(_("%d (%s) old priority %d, new priority %d\n"),
ce4030e4 116 who, idtype[which], oldprio, newprio);
5ebcab66
SK
117 return 0;
118}
119
6dbe3af9 120/*
5cc224f5
BS
121 * Change the priority (the nice value) of processes
122 * or groups of processes which are already running.
6dbe3af9 123 */
00b490f0 124int main(int argc, char **argv)
6dbe3af9
KZ
125{
126 int which = PRIO_PROCESS;
127 int who = 0, prio, errs = 0;
56ce8f61 128 int relative = 0;
628cab7c 129 char *endptr = NULL;
6dbe3af9 130
7eda085c
KZ
131 setlocale(LC_ALL, "");
132 bindtextdomain(PACKAGE, LOCALEDIR);
133 textdomain(PACKAGE);
2c308875 134 close_stdout_atexit();
7eda085c 135
628cab7c
LJ
136 argc--;
137 argv++;
138
139 if (argc == 1) {
140 if (strcmp(*argv, "-h") == 0 ||
141 strcmp(*argv, "--help") == 0)
9325dbfd 142 usage();
628cab7c
LJ
143
144 if (strcmp(*argv, "-v") == 0 ||
5cc224f5 145 strcmp(*argv, "-V") == 0 ||
2c308875
KZ
146 strcmp(*argv, "--version") == 0)
147 print_version(EXIT_SUCCESS);
6dbe3af9 148 }
628cab7c 149
56ce8f61
DA
150 if (*argv)
151 {
152 if (strcmp(*argv, "-n") == 0)
153 {
154 // Fully conform to posix only if POSIXLY_CORRECT is
155 // set in the environment. If not, use the absolute
156 // value as it's been used (incorrectly) since 2009
157 relative = getenv("POSIXLY_CORRECT") == NULL ? 0 : 1;
158 argc--;
159 argv++;
160 }
161 else if (strcmp(*argv, "--relative") == 0)
162 {
163 relative = 1;
164 argc--;
165 argv++;
166 }
167 else if (strcmp(*argv, "--priority") == 0) {
168 relative = 0;
169 argc--;
170 argv++;
171 }
7cfbafda
KZ
172 }
173
9f74aa07 174 if (argc < 2 || !*argv) {
9325dbfd
RM
175 warnx(_("not enough arguments"));
176 errtryhelp(EXIT_FAILURE);
177 }
0bb01bb0 178
628cab7c 179 prio = strtol(*argv, &endptr, 10);
9325dbfd 180 if (*endptr) {
e2215a85 181 warnx(_("invalid priority '%s'"), *argv);
9325dbfd
RM
182 errtryhelp(EXIT_FAILURE);
183 }
628cab7c
LJ
184 argc--;
185 argv++;
186
6dbe3af9 187 for (; argc > 0; argc--, argv++) {
628cab7c 188 if (strcmp(*argv, "-g") == 0 || strcmp(*argv, "--pgrp") == 0) {
6dbe3af9
KZ
189 which = PRIO_PGRP;
190 continue;
191 }
628cab7c 192 if (strcmp(*argv, "-u") == 0 || strcmp(*argv, "--user") == 0) {
6dbe3af9
KZ
193 which = PRIO_USER;
194 continue;
195 }
628cab7c 196 if (strcmp(*argv, "-p") == 0 || strcmp(*argv, "--pid") == 0) {
6dbe3af9
KZ
197 which = PRIO_PROCESS;
198 continue;
199 }
200 if (which == PRIO_USER) {
80ca9e20 201 struct passwd *pwd = getpwnam(*argv);
628cab7c 202
80ca9e20
SK
203 if (pwd != NULL)
204 who = pwd->pw_uid;
205 else
206 who = strtol(*argv, &endptr, 10);
207 if (who < 0 || *endptr) {
40cebc2d 208 warnx(_("unknown user %s"), *argv);
665b3c85 209 errs = 1;
6dbe3af9
KZ
210 continue;
211 }
6dbe3af9 212 } else {
628cab7c
LJ
213 who = strtol(*argv, &endptr, 10);
214 if (who < 0 || *endptr) {
09638694
BS
215 /* TRANSLATORS: The first %s is one of the above
216 * three ID names. Read: "bad value for %s: %s" */
ce4030e4 217 warnx(_("bad %s value: %s"), idtype[which], *argv);
665b3c85 218 errs = 1;
6dbe3af9
KZ
219 continue;
220 }
221 }
56ce8f61 222 errs |= donice(which, who, prio, relative);
6dbe3af9 223 }
628cab7c 224 return errs != 0 ? EXIT_FAILURE : EXIT_SUCCESS;
6dbe3af9 225}