1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42#include "libbb.h"
43#include <sys/resource.h>
44
45void BUG_bad_PRIO_PROCESS(void);
46void BUG_bad_PRIO_PGRP(void);
47void BUG_bad_PRIO_USER(void);
48
49int renice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
50int renice_main(int argc UNUSED_PARAM, char **argv)
51{
52 static const char Xetpriority_msg[] ALIGN1 = "%cetpriority";
53
54 int retval = EXIT_SUCCESS;
55 int which = PRIO_PROCESS;
56 int use_relative = 0;
57 int adjustment, new_priority;
58 unsigned who;
59 char *arg;
60
61
62 if (PRIO_PROCESS < CHAR_MIN || PRIO_PROCESS > CHAR_MAX)
63 BUG_bad_PRIO_PROCESS();
64 if (PRIO_PGRP < CHAR_MIN || PRIO_PGRP > CHAR_MAX)
65 BUG_bad_PRIO_PGRP();
66 if (PRIO_USER < CHAR_MIN || PRIO_USER > CHAR_MAX)
67 BUG_bad_PRIO_USER();
68
69 arg = *++argv;
70
71
72 if (arg && arg[0] == '-' && arg[1] == 'n') {
73 use_relative = 1;
74 if (!arg[2])
75 arg = *++argv;
76 else
77 arg += 2;
78 }
79
80 if (!arg) {
81 bb_show_usage();
82 }
83
84
85 adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2);
86
87 while ((arg = *++argv) != NULL) {
88
89 if (arg[0] == '-' && arg[1]) {
90 static const char opts[] ALIGN1 = {
91 'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER
92 };
93 const char *p = strchr(opts, arg[1]);
94 if (p) {
95 which = p[4];
96 if (!arg[2])
97 continue;
98 arg += 2;
99 }
100 }
101
102
103 if (which == PRIO_USER) {
104 struct passwd *p;
105 p = getpwnam(arg);
106 if (!p) {
107 bb_error_msg("unknown user %s", arg);
108 goto HAD_ERROR;
109 }
110 who = p->pw_uid;
111 } else {
112 who = bb_strtou(arg, NULL, 10);
113 if (errno) {
114 bb_error_msg("invalid number '%s'", arg);
115 goto HAD_ERROR;
116 }
117 }
118
119
120 if (use_relative) {
121 int old_priority;
122
123 errno = 0;
124 old_priority = getpriority(which, who);
125 if (errno) {
126 bb_perror_msg(Xetpriority_msg, 'g');
127 goto HAD_ERROR;
128 }
129
130 new_priority = old_priority + adjustment;
131 } else {
132 new_priority = adjustment;
133 }
134
135 if (setpriority(which, who, new_priority) == 0) {
136 continue;
137 }
138
139 bb_perror_msg(Xetpriority_msg, 's');
140 HAD_ERROR:
141 retval = EXIT_FAILURE;
142 }
143
144
145
146
147 return retval;
148}
149