]> git.ipfire.org Git - thirdparty/util-linux.git/blame - sys-utils/renice.c
lslogins: free after error [coverity scan]
[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
ce4030e4
SK
51const char *idtype[] = {
52 [PRIO_PROCESS] = N_("process ID"),
53 [PRIO_PGRP] = N_("process group ID"),
54 [PRIO_USER] = N_("user ID"),
55};
56
abafd686 57static void __attribute__((__noreturn__)) usage(FILE *out)
628cab7c 58{
6dcc066f 59 fputs(USAGE_HEADER, out);
ae1ae49e 60 fprintf(out,
ae3ca2aa
BS
61 _(" %1$s [-n] <priority> [-p|--pid] <pid>...\n"
62 " %1$s [-n] <priority> -g|--pgrp <pgid>...\n"
63 " %1$s [-n] <priority> -u|--user <user>...\n"),
296351b0 64 program_invocation_short_name);
6dcc066f 65 fputs(USAGE_OPTIONS, out);
94b1623b
SK
66 fputs(_(" -n, --priority <num> specify the nice increment value\n"), out);
67 fputs(_(" -p, --pid <id> interpret argument as process ID (default)\n"), out);
68 fputs(_(" -g, --pgrp <id> interpret argument as process group ID\n"), out);
69 fputs(_(" -u, --user <name|id> interpret argument as username or user ID\n"), out);
70 fputs(USAGE_SEPARATOR, out);
71 fputs(USAGE_HELP, out);
72 fputs(USAGE_VERSION, out);
6dcc066f 73 fprintf(out, USAGE_MAN_TAIL("renice(1)"));
296351b0 74 exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
628cab7c 75}
7cfbafda 76
ce4030e4 77static int getprio(const int which, const int who, int *prio)
00b490f0
SK
78{
79 errno = 0;
80 *prio = getpriority(which, who);
81 if (*prio == -1 && errno) {
ce4030e4 82 warn(_("failed to get priority for %d (%s)"), who, idtype[which]);
00b490f0
SK
83 return -errno;
84 }
85 return 0;
86}
87
ce4030e4 88static int donice(const int which, const int who, const int prio)
00b490f0 89{
5ebcab66 90 int oldprio, newprio;
5ebcab66 91
ce4030e4 92 if (getprio(which, who, &oldprio) != 0)
5ebcab66 93 return 1;
5ebcab66 94 if (setpriority(which, who, prio) < 0) {
ce4030e4 95 warn(_("failed to set priority for %d (%s)"), who, idtype[which]);
5ebcab66
SK
96 return 1;
97 }
ce4030e4 98 if (getprio(which, who, &newprio) != 0)
5ebcab66 99 return 1;
5ebcab66 100 printf(_("%d (%s) old priority %d, new priority %d\n"),
ce4030e4 101 who, idtype[which], oldprio, newprio);
5ebcab66
SK
102 return 0;
103}
104
6dbe3af9 105/*
5cc224f5
BS
106 * Change the priority (the nice value) of processes
107 * or groups of processes which are already running.
6dbe3af9 108 */
00b490f0 109int main(int argc, char **argv)
6dbe3af9
KZ
110{
111 int which = PRIO_PROCESS;
112 int who = 0, prio, errs = 0;
628cab7c 113 char *endptr = NULL;
6dbe3af9 114
7eda085c
KZ
115 setlocale(LC_ALL, "");
116 bindtextdomain(PACKAGE, LOCALEDIR);
117 textdomain(PACKAGE);
efb8854f 118 atexit(close_stdout);
7eda085c 119
628cab7c
LJ
120 argc--;
121 argv++;
122
123 if (argc == 1) {
124 if (strcmp(*argv, "-h") == 0 ||
125 strcmp(*argv, "--help") == 0)
296351b0 126 usage(stdout);
628cab7c
LJ
127
128 if (strcmp(*argv, "-v") == 0 ||
5cc224f5 129 strcmp(*argv, "-V") == 0 ||
628cab7c 130 strcmp(*argv, "--version") == 0) {
6dcc066f
SK
131 printf(UTIL_LINUX_VERSION);
132 return EXIT_SUCCESS;
628cab7c 133 }
6dbe3af9 134 }
628cab7c 135
0bb01bb0 136 if (*argv && (strcmp(*argv, "-n") == 0 || strcmp(*argv, "--priority") == 0)) {
7cfbafda
KZ
137 argc--;
138 argv++;
139 }
140
0bb01bb0
SK
141 if (argc < 2)
142 usage(stderr);
143
628cab7c
LJ
144 prio = strtol(*argv, &endptr, 10);
145 if (*endptr)
296351b0 146 usage(stderr);
628cab7c
LJ
147
148 argc--;
149 argv++;
150
6dbe3af9 151 for (; argc > 0; argc--, argv++) {
628cab7c 152 if (strcmp(*argv, "-g") == 0 || strcmp(*argv, "--pgrp") == 0) {
6dbe3af9
KZ
153 which = PRIO_PGRP;
154 continue;
155 }
628cab7c 156 if (strcmp(*argv, "-u") == 0 || strcmp(*argv, "--user") == 0) {
6dbe3af9
KZ
157 which = PRIO_USER;
158 continue;
159 }
628cab7c 160 if (strcmp(*argv, "-p") == 0 || strcmp(*argv, "--pid") == 0) {
6dbe3af9
KZ
161 which = PRIO_PROCESS;
162 continue;
163 }
164 if (which == PRIO_USER) {
80ca9e20 165 struct passwd *pwd = getpwnam(*argv);
628cab7c 166
80ca9e20
SK
167 if (pwd != NULL)
168 who = pwd->pw_uid;
169 else
170 who = strtol(*argv, &endptr, 10);
171 if (who < 0 || *endptr) {
40cebc2d 172 warnx(_("unknown user %s"), *argv);
665b3c85 173 errs = 1;
6dbe3af9
KZ
174 continue;
175 }
6dbe3af9 176 } else {
628cab7c
LJ
177 who = strtol(*argv, &endptr, 10);
178 if (who < 0 || *endptr) {
ce4030e4 179 warnx(_("bad %s value: %s"), idtype[which], *argv);
665b3c85 180 errs = 1;
6dbe3af9
KZ
181 continue;
182 }
183 }
665b3c85 184 errs |= donice(which, who, prio);
6dbe3af9 185 }
628cab7c 186 return errs != 0 ? EXIT_FAILURE : EXIT_SUCCESS;
6dbe3af9 187}