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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
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 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 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" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 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 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 31 | #include "libbb.h" |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 32 | #include <sys/resource.h> |
| 33 | |
Denis Vlasenko | a7189f0 | 2006-11-17 20:29:00 +0000 | [diff] [blame] | 34 | void BUG_bad_PRIO_PROCESS(void); |
| 35 | void BUG_bad_PRIO_PGRP(void); |
| 36 | void BUG_bad_PRIO_USER(void); |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 37 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 38 | int renice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 39 | int renice_main(int argc UNUSED_PARAM, char **argv) |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 40 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 41 | static const char Xetpriority_msg[] ALIGN1 = "%cetpriority"; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 42 | |
| 43 | int retval = EXIT_SUCCESS; |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 44 | int which = PRIO_PROCESS; /* Default 'which' value. */ |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 45 | int use_relative = 0; |
| 46 | int adjustment, new_priority; |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 47 | unsigned who; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 48 | char *arg; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 49 | |
Denis Vlasenko | a7189f0 | 2006-11-17 20:29:00 +0000 | [diff] [blame] | 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(); |
| 57 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 58 | arg = *++argv; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 59 | |
| 60 | /* Check if we are using a relative adjustment. */ |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 61 | if (arg && arg[0] == '-' && arg[1] == 'n') { |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 62 | use_relative = 1; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 63 | if (!arg[2]) |
| 64 | arg = *++argv; |
| 65 | else |
| 66 | arg += 2; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 69 | if (!arg) { /* No args? Then show usage. */ |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 70 | bb_show_usage(); |
| 71 | } |
| 72 | |
| 73 | /* Get the priority adjustment (absolute or relative). */ |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 74 | adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2); |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 75 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 76 | while ((arg = *++argv) != NULL) { |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 77 | /* Check for a mode switch. */ |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 78 | if (arg[0] == '-' && arg[1]) { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 79 | static const char opts[] ALIGN1 = { |
| 80 | 'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER |
| 81 | }; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 82 | const char *p = strchr(opts, arg[1]); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 83 | if (p) { |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 84 | which = p[4]; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 85 | if (!arg[2]) |
| 86 | continue; |
| 87 | arg += 2; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | |
| 91 | /* Process an ID arg. */ |
| 92 | if (which == PRIO_USER) { |
| 93 | struct passwd *p; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 94 | p = getpwnam(arg); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 95 | if (!p) { |
Bernhard Reutner-Fischer | d73cbd3 | 2008-07-21 14:41:33 +0000 | [diff] [blame] | 96 | bb_error_msg("unknown user %s", arg); |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 97 | goto HAD_ERROR; |
| 98 | } |
| 99 | who = p->pw_uid; |
| 100 | } else { |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 101 | who = bb_strtou(arg, NULL, 10); |
| 102 | if (errno) { |
Denys Vlasenko | b32a543 | 2010-08-29 13:29:02 +0200 | [diff] [blame] | 103 | bb_error_msg("invalid number '%s'", arg); |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 104 | goto HAD_ERROR; |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | /* Get priority to use, and set it. */ |
| 109 | if (use_relative) { |
| 110 | int old_priority; |
| 111 | |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 112 | errno = 0; /* Needed for getpriority error detection. */ |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 113 | old_priority = getpriority(which, who); |
| 114 | if (errno) { |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 115 | bb_perror_msg(Xetpriority_msg, 'g'); |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 116 | goto HAD_ERROR; |
| 117 | } |
| 118 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 119 | new_priority = old_priority + adjustment; |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 120 | } else { |
| 121 | new_priority = adjustment; |
| 122 | } |
| 123 | |
| 124 | if (setpriority(which, who, new_priority) == 0) { |
| 125 | continue; |
| 126 | } |
| 127 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 128 | bb_perror_msg(Xetpriority_msg, 's'); |
| 129 | HAD_ERROR: |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 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; |
Eric Andersen | bf960f5 | 2000-07-21 21:32:12 +0000 | [diff] [blame] | 137 | } |