renice.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  8. */
  9. /* Notes:
  10. * Setting an absolute priority was obsoleted in SUSv2 and removed
  11. * in SUSv3. However, the common linux version of renice does
  12. * absolute and not relative. So we'll continue supporting absolute,
  13. * although the stdout logging has been removed since both SUSv2 and
  14. * SUSv3 specify that stdout isn't used.
  15. *
  16. * This version is lenient in that it doesn't require any IDs. The
  17. * options -p, -g, and -u are treated as mode switches for the
  18. * following IDs (if any). Multiple switches are allowed.
  19. */
  20. //config:config RENICE
  21. //config: bool "renice"
  22. //config: default y
  23. //config: help
  24. //config: Renice alters the scheduling priority of one or more running
  25. //config: processes.
  26. //applet:IF_RENICE(APPLET(renice, BB_DIR_USR_BIN, BB_SUID_DROP))
  27. //kbuild:lib-$(CONFIG_RENICE) += renice.o
  28. //usage:#define renice_trivial_usage
  29. //usage: "[-n] PRIORITY [[-p | -g | -u] ID...]..."
  30. //usage:#define renice_full_usage "\n\n"
  31. //usage: "Change scheduling priority of a running process\n"
  32. //usage: "\n -n Add PRIORITY to current nice value"
  33. //usage: "\n Without -n, nice value is set to PRIORITY"
  34. //usage: "\n -p Process ids (default)"
  35. //usage: "\n -g Process group ids"
  36. //usage: "\n -u Process user names"
  37. #include "libbb.h"
  38. #include <sys/resource.h>
  39. void BUG_bad_PRIO_PROCESS(void);
  40. void BUG_bad_PRIO_PGRP(void);
  41. void BUG_bad_PRIO_USER(void);
  42. int renice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  43. int renice_main(int argc UNUSED_PARAM, char **argv)
  44. {
  45. static const char Xetpriority_msg[] ALIGN1 = "%cetpriority";
  46. int retval = EXIT_SUCCESS;
  47. int which = PRIO_PROCESS; /* Default 'which' value. */
  48. int use_relative = 0;
  49. int adjustment, new_priority;
  50. unsigned who;
  51. char *arg;
  52. /* Yes, they are not #defines in glibc 2.4! #if won't work */
  53. if (PRIO_PROCESS < CHAR_MIN || PRIO_PROCESS > CHAR_MAX)
  54. BUG_bad_PRIO_PROCESS();
  55. if (PRIO_PGRP < CHAR_MIN || PRIO_PGRP > CHAR_MAX)
  56. BUG_bad_PRIO_PGRP();
  57. if (PRIO_USER < CHAR_MIN || PRIO_USER > CHAR_MAX)
  58. BUG_bad_PRIO_USER();
  59. arg = *++argv;
  60. /* Check if we are using a relative adjustment. */
  61. if (arg && arg[0] == '-' && arg[1] == 'n') {
  62. use_relative = 1;
  63. if (!arg[2])
  64. arg = *++argv;
  65. else
  66. arg += 2;
  67. }
  68. if (!arg) { /* No args? Then show usage. */
  69. bb_show_usage();
  70. }
  71. /* Get the priority adjustment (absolute or relative). */
  72. adjustment = xatoi_range(arg, INT_MIN/2, INT_MAX/2);
  73. while ((arg = *++argv) != NULL) {
  74. /* Check for a mode switch. */
  75. if (arg[0] == '-' && arg[1]) {
  76. static const char opts[] ALIGN1 = {
  77. 'p', 'g', 'u', 0, PRIO_PROCESS, PRIO_PGRP, PRIO_USER
  78. };
  79. const char *p = strchr(opts, arg[1]);
  80. if (p) {
  81. which = p[4];
  82. if (!arg[2])
  83. continue;
  84. arg += 2;
  85. }
  86. }
  87. /* Process an ID arg. */
  88. if (which == PRIO_USER) {
  89. struct passwd *p;
  90. p = getpwnam(arg);
  91. if (!p) {
  92. bb_error_msg("unknown user %s", arg);
  93. goto HAD_ERROR;
  94. }
  95. who = p->pw_uid;
  96. } else {
  97. who = bb_strtou(arg, NULL, 10);
  98. if (errno) {
  99. bb_error_msg("invalid number '%s'", arg);
  100. goto HAD_ERROR;
  101. }
  102. }
  103. /* Get priority to use, and set it. */
  104. if (use_relative) {
  105. int old_priority;
  106. errno = 0; /* Needed for getpriority error detection. */
  107. old_priority = getpriority(which, who);
  108. if (errno) {
  109. bb_perror_msg(Xetpriority_msg, 'g');
  110. goto HAD_ERROR;
  111. }
  112. new_priority = old_priority + adjustment;
  113. } else {
  114. new_priority = adjustment;
  115. }
  116. if (setpriority(which, who, new_priority) == 0) {
  117. continue;
  118. }
  119. bb_perror_msg(Xetpriority_msg, 's');
  120. HAD_ERROR:
  121. retval = EXIT_FAILURE;
  122. }
  123. /* No need to check for errors outputting to stderr since, if it
  124. * was used, the HAD_ERROR label was reached and retval was set. */
  125. return retval;
  126. }