logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/

renice.c (3389B)


  1. // utils-std: Collection of commonly available Unix tools
  2. // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
  3. // SPDX-License-Identifier: MPL-2.0
  4. #define _POSIX_C_SOURCE 200809L
  5. #define _XOPEN_SOURCE 700 // getpriority, setpriority
  6. #include "../lib/getopt_nolong.h"
  7. #include <errno.h>
  8. #include <stdio.h> // fprintf
  9. #include <stdlib.h> // abort
  10. #include <string.h> // strerror
  11. #include <sys/resource.h> // getpriority, setpriority
  12. #include <unistd.h> // getopt, nice
  13. const char *argv0 = "renice";
  14. static int
  15. renice(int which, id_t who, int adj)
  16. {
  17. const char *which_s = NULL;
  18. switch(which)
  19. {
  20. case PRIO_PROCESS:
  21. which_s = "PRIO_PROCESS";
  22. break;
  23. case PRIO_PGRP:
  24. which_s = "PRIO_PGRP";
  25. break;
  26. case PRIO_USER:
  27. which_s = "PRIO_USER";
  28. break;
  29. default:
  30. which_s = NULL;
  31. }
  32. errno = 0;
  33. int prio = getpriority(which, who);
  34. if(errno != 0)
  35. {
  36. fprintf(stderr, "renice: error: getpriority(%s, %d): %s\n", which_s, who, strerror(errno));
  37. return -1;
  38. }
  39. prio += adj;
  40. if(setpriority(which, who, prio) != 0)
  41. {
  42. fprintf(stderr,
  43. "renice: error: setpriority(%s, %d, %d): %s\n",
  44. which_s,
  45. who,
  46. prio,
  47. strerror(errno));
  48. return -1;
  49. }
  50. return 0;
  51. }
  52. static void
  53. usage(void)
  54. {
  55. fprintf(stderr, "\
  56. Usage: renice [-p] -n adj PID...\n\
  57. renice -g -n adj PGID...\n\
  58. renice -u -n adj UID...\n\
  59. ");
  60. }
  61. int
  62. main(int argc, char *argv[])
  63. {
  64. long adj = 0;
  65. int which = PRIO_PROCESS;
  66. for(int c = -1; (c = getopt_nolong(argc, argv, ":gpun:")) != -1;)
  67. {
  68. char *endptr = NULL;
  69. switch(c)
  70. {
  71. case 'g':
  72. which = PRIO_PGRP;
  73. break;
  74. case 'p':
  75. which = PRIO_PROCESS;
  76. break;
  77. case 'u':
  78. which = PRIO_USER;
  79. break;
  80. case 'n':
  81. adj = strtol(optarg, &endptr, 10);
  82. if(endptr && *endptr != 0) errno = EINVAL;
  83. if(errno != 0)
  84. {
  85. fprintf(stderr,
  86. "renice: error: Failed parsing '%s' as a number: %s\n",
  87. optarg,
  88. strerror(errno));
  89. usage();
  90. return 1;
  91. }
  92. if(adj < PRIO_MIN)
  93. {
  94. fprintf(stderr, "renice: error: '-n %ld' is lower than PRIO_MIN(%d)\n", adj, PRIO_MIN);
  95. return 1;
  96. }
  97. if(adj > PRIO_MAX)
  98. {
  99. fprintf(stderr, "renice: error: '-n %ld' is greater than PRIO_MAX(%d)\n", adj, PRIO_MAX);
  100. return 1;
  101. }
  102. if(adj == 0)
  103. {
  104. fprintf(stderr, "renice: error: '-n 0' makes no sense\n");
  105. return 1;
  106. }
  107. break;
  108. case ':':
  109. fprintf(stderr, "renice: error: Missing operand for option: '-%c'\n", optopt);
  110. usage();
  111. return 1;
  112. case '?':
  113. if(!got_long_opt) fprintf(stderr, "renice: error: Unrecognised option: '-%c'\n", optopt);
  114. usage();
  115. return 1;
  116. default:
  117. abort();
  118. }
  119. }
  120. argc -= optind;
  121. argv += optind;
  122. if(argc == 0)
  123. {
  124. fprintf(stderr, "renice: error: No IDs passed\n");
  125. usage();
  126. return 1;
  127. }
  128. if(adj == 0)
  129. {
  130. fprintf(stderr, "renice: error: Mandatory option '-n adj' not passed\n");
  131. usage();
  132. return 1;
  133. }
  134. for(int i = 0; i < argc; i++)
  135. {
  136. char *endptr = NULL;
  137. char *arg = argv[i];
  138. long who = strtol(arg, &endptr, 0);
  139. if(endptr && *endptr != 0) errno = EINVAL;
  140. if(errno != 0)
  141. {
  142. fprintf(stderr,
  143. "renice: error: Failed parsing argument '%s' as a number: %s\n",
  144. arg,
  145. strerror(errno));
  146. usage();
  147. return 1;
  148. }
  149. if(renice(which, who, adj) != 0) return 1;
  150. }
  151. return 0;
  152. }