Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 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 | * |
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. |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 8 | */ |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 9 | //config:config IONICE |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 10 | //config: bool "ionice (3.8 kb)" |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 11 | //config: default y |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 12 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 13 | //config: Set/set program io scheduling class and priority |
| 14 | //config: Requires kernel >= 2.6.13 |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 15 | |
Denys Vlasenko | 5c527dc | 2017-08-04 19:55:01 +0200 | [diff] [blame] | 16 | //applet:IF_IONICE(APPLET_NOEXEC(ionice, ionice, BB_DIR_BIN, BB_SUID_DROP, ionice)) |
Denys Vlasenko | f88e3bf | 2016-11-22 23:54:17 +0100 | [diff] [blame] | 17 | |
| 18 | //kbuild:lib-$(CONFIG_IONICE) += ionice.o |
| 19 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 20 | //usage:#define ionice_trivial_usage |
Denys Vlasenko | f02b64d | 2021-06-17 13:45:13 +0200 | [diff] [blame] | 21 | //usage: "[-c 1-3] [-n 0-7] [-t] { -p PID | PROG ARGS }" |
Denys Vlasenko | e2b9215 | 2021-06-14 20:47:20 +0200 | [diff] [blame] | 22 | //TODO: | -P PGID | -u UID; also -pPu can take _list of_ IDs |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 23 | //usage:#define ionice_full_usage "\n\n" |
| 24 | //usage: "Change I/O priority and class\n" |
Denys Vlasenko | a2f18d9 | 2020-12-18 04:12:51 +0100 | [diff] [blame] | 25 | //usage: "\n -c N Class. 1:realtime 2:best-effort 3:idle" |
| 26 | //usage: "\n -n N Priority" |
Denys Vlasenko | f02b64d | 2021-06-17 13:45:13 +0200 | [diff] [blame] | 27 | //usage: "\n -t Ignore errors" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 28 | |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 29 | #include <sys/syscall.h> |
| 30 | #include <asm/unistd.h> |
| 31 | #include "libbb.h" |
| 32 | |
| 33 | static int ioprio_set(int which, int who, int ioprio) |
| 34 | { |
| 35 | return syscall(SYS_ioprio_set, which, who, ioprio); |
| 36 | } |
| 37 | |
| 38 | static int ioprio_get(int which, int who) |
| 39 | { |
| 40 | return syscall(SYS_ioprio_get, which, who); |
| 41 | } |
| 42 | |
| 43 | enum { |
| 44 | IOPRIO_WHO_PROCESS = 1, |
| 45 | IOPRIO_WHO_PGRP, |
| 46 | IOPRIO_WHO_USER |
| 47 | }; |
| 48 | |
| 49 | enum { |
| 50 | IOPRIO_CLASS_NONE, |
| 51 | IOPRIO_CLASS_RT, |
| 52 | IOPRIO_CLASS_BE, |
| 53 | IOPRIO_CLASS_IDLE |
| 54 | }; |
| 55 | |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 56 | static const char to_prio[] ALIGN1 = "none\0realtime\0best-effort\0idle"; |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 57 | |
| 58 | #define IOPRIO_CLASS_SHIFT 13 |
| 59 | |
| 60 | int ionice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 61 | int ionice_main(int argc UNUSED_PARAM, char **argv) |
| 62 | { |
| 63 | /* Defaults */ |
| 64 | int ioclass = 0; |
| 65 | int pri = 0; |
Denys Vlasenko | a2f18d9 | 2020-12-18 04:12:51 +0100 | [diff] [blame] | 66 | int pid = 0; /* affect own process */ |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 67 | int opt; |
| 68 | enum { |
Denys Vlasenko | f02b64d | 2021-06-17 13:45:13 +0200 | [diff] [blame] | 69 | OPT_n = 1 << 0, |
| 70 | OPT_c = 1 << 1, |
| 71 | OPT_p = 1 << 2, |
| 72 | OPT_t = 1 << 3, |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 73 | }; |
| 74 | |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 75 | /* '+': stop at first non-option */ |
Denys Vlasenko | f02b64d | 2021-06-17 13:45:13 +0200 | [diff] [blame] | 76 | /* numeric params for -n -c -p */ |
| 77 | opt = getopt32(argv, "+""n:+c:+p:+t", &pri, &ioclass, &pid); |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 78 | argv += optind; |
Denis Vlasenko | 3266aa9 | 2009-04-01 11:24:04 +0000 | [diff] [blame] | 79 | |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 80 | if (opt & OPT_c) { |
| 81 | if (ioclass > 3) |
| 82 | bb_error_msg_and_die("bad class %d", ioclass); |
| 83 | // Do we need this (compat?)? |
| 84 | // if (ioclass == IOPRIO_CLASS_NONE) |
| 85 | // ioclass = IOPRIO_CLASS_BE; |
| 86 | // if (ioclass == IOPRIO_CLASS_IDLE) { |
| 87 | // //if (opt & OPT_n) |
| 88 | // // bb_error_msg("ignoring priority for idle class"); |
| 89 | // pri = 7; |
| 90 | // } |
| 91 | } |
Denis Vlasenko | 3266aa9 | 2009-04-01 11:24:04 +0000 | [diff] [blame] | 92 | |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 93 | if (!(opt & (OPT_n|OPT_c))) { |
| 94 | if (!(opt & OPT_p) && *argv) |
Denys Vlasenko | 7783248 | 2010-08-12 14:14:45 +0200 | [diff] [blame] | 95 | pid = xatoi_positive(*argv); |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 96 | |
| 97 | pri = ioprio_get(IOPRIO_WHO_PROCESS, pid); |
| 98 | if (pri == -1) |
| 99 | bb_perror_msg_and_die("ioprio_%cet", 'g'); |
| 100 | |
| 101 | ioclass = (pri >> IOPRIO_CLASS_SHIFT) & 0x3; |
| 102 | pri &= 0xff; |
| 103 | printf((ioclass == IOPRIO_CLASS_IDLE) ? "%s\n" : "%s: prio %d\n", |
| 104 | nth_string(to_prio, ioclass), pri); |
| 105 | } else { |
| 106 | //printf("pri=%d class=%d val=%x\n", |
| 107 | //pri, ioclass, pri | (ioclass << IOPRIO_CLASS_SHIFT)); |
| 108 | pri |= (ioclass << IOPRIO_CLASS_SHIFT); |
| 109 | if (ioprio_set(IOPRIO_WHO_PROCESS, pid, pri) == -1) |
Denys Vlasenko | f02b64d | 2021-06-17 13:45:13 +0200 | [diff] [blame] | 110 | if (!(opt & OPT_t)) |
| 111 | bb_perror_msg_and_die("ioprio_%cet", 's'); |
Denys Vlasenko | 41ddd9f | 2010-06-25 01:46:53 +0200 | [diff] [blame] | 112 | if (argv[0]) { |
Pascal Bellard | 21e8e8d | 2010-07-04 00:57:03 +0200 | [diff] [blame] | 113 | BB_EXECVP_or_die(argv); |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 114 | } |
| 115 | } |
| 116 | |
| 117 | return EXIT_SUCCESS; |
| 118 | } |