Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 2 | /* |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 3 | * renice implementation for busybox |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 4 | * |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 5 | * Copyright (C) 2005 Manuel Novoa III <mjn3@codepoet.org> |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 6 | * |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 7 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 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 | |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 22 | #include "busybox.h" |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 23 | #include <sys/resource.h> |
| 24 | |
Denis Vlasenko | a7189f0 | 2006-11-17 20:29:00 +0000 | [diff] [blame] | 25 | void BUG_bad_PRIO_PROCESS(void); |
| 26 | void BUG_bad_PRIO_PGRP(void); |
| 27 | void BUG_bad_PRIO_USER(void); |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 28 | |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 29 | int renice_main(int argc, char **argv) |
| 30 | { |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 31 | static const char Xetpriority_msg[] = "%cetpriority"; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 32 | |
| 33 | int retval = EXIT_SUCCESS; |
| 34 | int which = PRIO_PROCESS; /* Default 'which' value. */ |
| 35 | int use_relative = 0; |
| 36 | int adjustment, new_priority; |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 37 | unsigned who; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 38 | char *arg; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 39 | |
Denis Vlasenko | a7189f0 | 2006-11-17 20:29:00 +0000 | [diff] [blame] | 40 | /* Yes, they are not #defines in glibc 2.4! #if won't work */ |
| 41 | if (PRIO_PROCESS < CHAR_MIN || PRIO_PROCESS > CHAR_MAX) |
| 42 | BUG_bad_PRIO_PROCESS(); |
| 43 | if (PRIO_PGRP < CHAR_MIN || PRIO_PGRP > CHAR_MAX) |
| 44 | BUG_bad_PRIO_PGRP(); |
| 45 | if (PRIO_USER < CHAR_MIN || PRIO_USER > CHAR_MAX) |
| 46 | BUG_bad_PRIO_USER(); |
| 47 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 48 | arg = *++argv; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 49 | |
| 50 | /* Check if we are using a relative adjustment. */ |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 51 | if (arg && arg[0] == '-' && arg[1] == 'n') { |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 52 | use_relative = 1; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 53 | if (!arg[2]) |
| 54 | arg = *++argv; |
| 55 | else |
| 56 | arg += 2; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 57 | } |
| 58 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 59 | if (!arg) { /* No args? Then show usage. */ |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 60 | bb_show_usage(); |
| 61 | } |
| 62 | |
| 63 | /* Get the priority adjustment (absolute or relative). */ |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 64 | adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2); |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 65 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 66 | while ((arg = *++argv) != NULL) { |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 67 | /* Check for a mode switch. */ |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 68 | if (arg[0] == '-' && arg[1]) { |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 69 | static const char opts[] |
| 70 | = { 'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER }; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 71 | const char *p = strchr(opts, arg[1]); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 72 | if (p) { |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 73 | which = p[4]; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 74 | if (!arg[2]) |
| 75 | continue; |
| 76 | arg += 2; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 77 | } |
| 78 | } |
| 79 | |
| 80 | /* Process an ID arg. */ |
| 81 | if (which == PRIO_USER) { |
| 82 | struct passwd *p; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 83 | p = getpwnam(arg); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 84 | if (!p) { |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 85 | bb_error_msg("unknown user: %s", arg); |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 86 | goto HAD_ERROR; |
| 87 | } |
| 88 | who = p->pw_uid; |
| 89 | } else { |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 90 | who = bb_strtou(arg, NULL, 10); |
| 91 | if (errno) { |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 92 | bb_error_msg("bad value: %s", arg); |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 93 | goto HAD_ERROR; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /* Get priority to use, and set it. */ |
| 98 | if (use_relative) { |
| 99 | int old_priority; |
| 100 | |
| 101 | errno = 0; /* Needed for getpriority error detection. */ |
| 102 | old_priority = getpriority(which, who); |
| 103 | if (errno) { |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 104 | bb_perror_msg(Xetpriority_msg, 'g'); |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 105 | goto HAD_ERROR; |
| 106 | } |
| 107 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 108 | new_priority = old_priority + adjustment; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 109 | } else { |
| 110 | new_priority = adjustment; |
| 111 | } |
| 112 | |
| 113 | if (setpriority(which, who, new_priority) == 0) { |
| 114 | continue; |
| 115 | } |
| 116 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 117 | bb_perror_msg(Xetpriority_msg, 's'); |
| 118 | HAD_ERROR: |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 119 | retval = EXIT_FAILURE; |
| 120 | } |
| 121 | |
| 122 | /* No need to check for errors outputing to stderr since, if it |
| 123 | * was used, the HAD_ERROR label was reached and retval was set. */ |
| 124 | |
| 125 | return retval; |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 126 | } |