ionice.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * ionice implementation for busybox based on linux-utils-ng 2.14
  4. *
  5. * Copyright (C) 2008 by <u173034@informatik.uni-oldenburg.de>
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  8. */
  9. //config:config IONICE
  10. //config: bool "ionice (4 kb)"
  11. //config: default y
  12. //config: help
  13. //config: Set/set program io scheduling class and priority
  14. //config: Requires kernel >= 2.6.13
  15. //applet:IF_IONICE(APPLET_NOEXEC(ionice, ionice, BB_DIR_BIN, BB_SUID_DROP, ionice))
  16. //kbuild:lib-$(CONFIG_IONICE) += ionice.o
  17. //usage:#define ionice_trivial_usage
  18. //usage: "[-c 1-3] [-n 0-7] [-t] { -p PID | PROG ARGS }"
  19. //TODO: | -P PGID | -u UID; also -pPu can take _list of_ IDs
  20. //usage:#define ionice_full_usage "\n\n"
  21. //usage: "Change I/O priority and class\n"
  22. //usage: "\n -c N Class. 1:realtime 2:best-effort 3:idle"
  23. //usage: "\n -n N Priority"
  24. //usage: "\n -t Ignore errors"
  25. #include <sys/syscall.h>
  26. #include <asm/unistd.h>
  27. #include "libbb.h"
  28. static int ioprio_set(int which, int who, int ioprio)
  29. {
  30. return syscall(SYS_ioprio_set, which, who, ioprio);
  31. }
  32. static int ioprio_get(int which, int who)
  33. {
  34. return syscall(SYS_ioprio_get, which, who);
  35. }
  36. enum {
  37. IOPRIO_WHO_PROCESS = 1,
  38. IOPRIO_WHO_PGRP,
  39. IOPRIO_WHO_USER
  40. };
  41. enum {
  42. IOPRIO_CLASS_NONE,
  43. IOPRIO_CLASS_RT,
  44. IOPRIO_CLASS_BE,
  45. IOPRIO_CLASS_IDLE
  46. };
  47. static const char to_prio[] ALIGN1 = "none\0realtime\0best-effort\0idle";
  48. #define IOPRIO_CLASS_SHIFT 13
  49. int ionice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  50. int ionice_main(int argc UNUSED_PARAM, char **argv)
  51. {
  52. /* Defaults */
  53. int ioclass = 0;
  54. int pri = 0;
  55. int pid = 0; /* affect own process */
  56. int opt;
  57. enum {
  58. OPT_n = 1 << 0,
  59. OPT_c = 1 << 1,
  60. OPT_p = 1 << 2,
  61. OPT_t = 1 << 3,
  62. };
  63. /* '+': stop at first non-option */
  64. /* numeric params for -n -c -p */
  65. opt = getopt32(argv, "+""n:+c:+p:+t", &pri, &ioclass, &pid);
  66. argv += optind;
  67. if (opt & OPT_c) {
  68. if (ioclass > 3)
  69. bb_error_msg_and_die("bad class %d", ioclass);
  70. // Do we need this (compat?)?
  71. // if (ioclass == IOPRIO_CLASS_NONE)
  72. // ioclass = IOPRIO_CLASS_BE;
  73. // if (ioclass == IOPRIO_CLASS_IDLE) {
  74. // //if (opt & OPT_n)
  75. // // bb_error_msg("ignoring priority for idle class");
  76. // pri = 7;
  77. // }
  78. }
  79. if (!(opt & (OPT_n|OPT_c))) {
  80. if (!(opt & OPT_p) && *argv)
  81. pid = xatoi_positive(*argv);
  82. pri = ioprio_get(IOPRIO_WHO_PROCESS, pid);
  83. if (pri == -1)
  84. bb_perror_msg_and_die("ioprio_%cet", 'g');
  85. ioclass = (pri >> IOPRIO_CLASS_SHIFT) & 0x3;
  86. pri &= 0xff;
  87. printf((ioclass == IOPRIO_CLASS_IDLE) ? "%s\n" : "%s: prio %d\n",
  88. nth_string(to_prio, ioclass), pri);
  89. } else {
  90. //printf("pri=%d class=%d val=%x\n",
  91. //pri, ioclass, pri | (ioclass << IOPRIO_CLASS_SHIFT));
  92. pri |= (ioclass << IOPRIO_CLASS_SHIFT);
  93. if (ioprio_set(IOPRIO_WHO_PROCESS, pid, pri) == -1)
  94. if (!(opt & OPT_t))
  95. bb_perror_msg_and_die("ioprio_%cet", 's');
  96. if (argv[0]) {
  97. BB_EXECVP_or_die(argv);
  98. }
  99. }
  100. return EXIT_SUCCESS;
  101. }