source: MondoRescue/branches/3.2/mindi-busybox/procps/renice.c@ 3232

Last change on this file since 3232 was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
File size: 3.6 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * renice implementation for busybox
4 *
5 * Copyright (C) 2005 Manuel Novoa III <mjn3@codepoet.org>
6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]8 */
9
10/* 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
[3232]22//usage:#define renice_trivial_usage
23//usage: "{{-n INCREMENT} | PRIORITY} [[-p | -g | -u] ID...]"
24//usage:#define renice_full_usage "\n\n"
25//usage: "Change scheduling priority for a running process\n"
26//usage: "\n -n Adjust current nice value (smaller is faster)"
27//usage: "\n -p Process id(s) (default)"
28//usage: "\n -g Process group id(s)"
29//usage: "\n -u Process user name(s) and/or id(s)"
30
[1765]31#include "libbb.h"
[821]32#include <sys/resource.h>
33
[1765]34void BUG_bad_PRIO_PROCESS(void);
35void BUG_bad_PRIO_PGRP(void);
36void BUG_bad_PRIO_USER(void);
[821]37
[2725]38int renice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
39int renice_main(int argc UNUSED_PARAM, char **argv)
[821]40{
[1765]41 static const char Xetpriority_msg[] ALIGN1 = "%cetpriority";
[821]42
43 int retval = EXIT_SUCCESS;
[2725]44 int which = PRIO_PROCESS; /* Default 'which' value. */
[821]45 int use_relative = 0;
46 int adjustment, new_priority;
[1765]47 unsigned who;
48 char *arg;
[821]49
[1765]50 /* Yes, they are not #defines in glibc 2.4! #if won't work */
51 if (PRIO_PROCESS < CHAR_MIN || PRIO_PROCESS > CHAR_MAX)
52 BUG_bad_PRIO_PROCESS();
53 if (PRIO_PGRP < CHAR_MIN || PRIO_PGRP > CHAR_MAX)
54 BUG_bad_PRIO_PGRP();
55 if (PRIO_USER < CHAR_MIN || PRIO_USER > CHAR_MAX)
56 BUG_bad_PRIO_USER();
[821]57
[1765]58 arg = *++argv;
59
[821]60 /* Check if we are using a relative adjustment. */
[1765]61 if (arg && arg[0] == '-' && arg[1] == 'n') {
[821]62 use_relative = 1;
[1765]63 if (!arg[2])
64 arg = *++argv;
65 else
66 arg += 2;
[821]67 }
68
[2725]69 if (!arg) { /* No args? Then show usage. */
[821]70 bb_show_usage();
71 }
72
73 /* Get the priority adjustment (absolute or relative). */
[1765]74 adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2);
[821]75
[1765]76 while ((arg = *++argv) != NULL) {
[821]77 /* Check for a mode switch. */
[1765]78 if (arg[0] == '-' && arg[1]) {
79 static const char opts[] ALIGN1 = {
80 'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER
81 };
82 const char *p = strchr(opts, arg[1]);
83 if (p) {
[821]84 which = p[4];
[1765]85 if (!arg[2])
86 continue;
87 arg += 2;
[821]88 }
89 }
90
91 /* Process an ID arg. */
92 if (which == PRIO_USER) {
93 struct passwd *p;
[1765]94 p = getpwnam(arg);
95 if (!p) {
[2725]96 bb_error_msg("unknown user %s", arg);
[821]97 goto HAD_ERROR;
98 }
99 who = p->pw_uid;
100 } else {
[1765]101 who = bb_strtou(arg, NULL, 10);
102 if (errno) {
[2725]103 bb_error_msg("invalid number '%s'", arg);
[821]104 goto HAD_ERROR;
105 }
106 }
107
108 /* Get priority to use, and set it. */
109 if (use_relative) {
110 int old_priority;
111
[2725]112 errno = 0; /* Needed for getpriority error detection. */
[821]113 old_priority = getpriority(which, who);
114 if (errno) {
[1765]115 bb_perror_msg(Xetpriority_msg, 'g');
[821]116 goto HAD_ERROR;
117 }
118
[1765]119 new_priority = old_priority + adjustment;
[821]120 } else {
121 new_priority = adjustment;
122 }
123
124 if (setpriority(which, who, new_priority) == 0) {
125 continue;
126 }
127
[1765]128 bb_perror_msg(Xetpriority_msg, 's');
129 HAD_ERROR:
[821]130 retval = EXIT_FAILURE;
131 }
132
133 /* No need to check for errors outputing to stderr since, if it
134 * was used, the HAD_ERROR label was reached and retval was set. */
135
136 return retval;
137}
Note: See TracBrowser for help on using the repository browser.