blob: 0d55e32992ceba35ee2bc323922219cc92ea4c92 [file] [log] [blame]
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +00001/* vi: set sw=4 ts=4: */
2/*
3 * chrt - manipulate real-time attributes of a process
4 * Copyright (c) 2006-2007 Bernhard Fischer
5 *
6 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
7 */
8
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +00009#include <sched.h>
10#include <getopt.h> /* optind */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000011#include "libbb.h"
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000012#ifndef _POSIX_PRIORITY_SCHEDULING
13#warning your system may be foobared
14#endif
15static const struct {
Denis Vlasenkob44c7902008-03-17 09:29:43 +000016 int policy;
17 char name[12];
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000018} policies[] = {
19 {SCHED_OTHER, "SCHED_OTHER"},
20 {SCHED_FIFO, "SCHED_FIFO"},
21 {SCHED_RR, "SCHED_RR"}
22};
23
Denis Vlasenkoac678ec2007-04-16 22:32:04 +000024static void show_min_max(int pol)
25{
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000026 const char *fmt = "%s min/max priority\t: %d/%d\n\0%s not supported?\n";
27 int max, min;
28 max = sched_get_priority_max(pol);
29 min = sched_get_priority_min(pol);
30 if (max >= 0 && min >= 0)
31 printf(fmt, policies[pol].name, min, max);
32 else {
33 fmt += 29;
34 printf(fmt, policies[pol].name);
35 }
36}
37
38#define OPT_m (1<<0)
39#define OPT_p (1<<1)
40#define OPT_r (1<<2)
41#define OPT_f (1<<3)
42#define OPT_o (1<<4)
43
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000044int chrt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkob44c7902008-03-17 09:29:43 +000045int chrt_main(int argc ATTRIBUTE_UNUSED, char **argv)
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000046{
47 pid_t pid = 0;
48 unsigned opt;
49 struct sched_param sp;
Denis Vlasenkob44c7902008-03-17 09:29:43 +000050 char *pid_str;
51 char *priority = priority; /* for compiler */
52 const char *current_new;
53 int policy = SCHED_RR;
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000054
Denis Vlasenkob44c7902008-03-17 09:29:43 +000055 /* at least 1 arg; only one policy accepted */
56 opt_complementary = "-1:r--fo:f--ro:r--fo";
57 opt = getopt32(argv, "+mprfo");
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000058 if (opt & OPT_r)
59 policy = SCHED_RR;
60 if (opt & OPT_f)
61 policy = SCHED_FIFO;
62 if (opt & OPT_o)
63 policy = SCHED_OTHER;
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000064 if (opt & OPT_m) { /* print min/max */
65 show_min_max(SCHED_FIFO);
66 show_min_max(SCHED_RR);
67 show_min_max(SCHED_OTHER);
68 fflush_stdout_and_exit(EXIT_SUCCESS);
69 }
Denis Vlasenkob44c7902008-03-17 09:29:43 +000070
71 argv += optind;
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000072 if (opt & OPT_p) {
Denis Vlasenkob44c7902008-03-17 09:29:43 +000073 pid_str = *argv++;
74 if (*argv) { /* "-p <priority> <pid> [...]" */
75 priority = pid_str;
76 pid_str = *argv;
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000077 }
Denis Vlasenkob44c7902008-03-17 09:29:43 +000078 /* else "-p <pid>", and *argv == NULL */
79 pid = xatoul_range(pid_str, 1, ((unsigned)(pid_t)ULONG_MAX) >> 1);
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000080 } else {
Denis Vlasenkob44c7902008-03-17 09:29:43 +000081 priority = *argv++;
82 if (!*argv)
83 bb_show_usage();
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000084 }
85
Denis Vlasenkob44c7902008-03-17 09:29:43 +000086 current_new = "current\0new";
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000087 if (opt & OPT_p) {
Denis Vlasenkob44c7902008-03-17 09:29:43 +000088 int pol;
89 print_rt_info:
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000090 pol = sched_getscheduler(pid);
91 if (pol < 0)
Denis Vlasenkob44c7902008-03-17 09:29:43 +000092 bb_perror_msg_and_die("can't %cet pid %d's policy", 'g', pid);
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000093 printf("pid %d's %s scheduling policy: %s\n",
Denis Vlasenkob44c7902008-03-17 09:29:43 +000094 pid, current_new, policies[pol].name);
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000095 if (sched_getparam(pid, &sp))
Denis Vlasenkob44c7902008-03-17 09:29:43 +000096 bb_perror_msg_and_die("can't get pid %d's attributes", pid);
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +000097 printf("pid %d's %s scheduling priority: %d\n",
Denis Vlasenkob44c7902008-03-17 09:29:43 +000098 pid, current_new, sp.sched_priority);
99 if (!*argv) {
100 /* Either it was just "-p <pid>",
101 * or it was "-p <priority> <pid>" and we came here
102 * for the second time (see goto below) */
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +0000103 return EXIT_SUCCESS;
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000104 }
105 *argv = NULL;
106 current_new += 8;
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +0000107 }
108
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000109 /* from the manpage of sched_getscheduler:
110 [...] sched_priority can have a value in the range 0 to 99.
111 [...] SCHED_OTHER or SCHED_BATCH must be assigned static priority 0.
112 [...] SCHED_FIFO or SCHED_RR can have static priority in 1..99 range.
113 */
114 sp.sched_priority = xstrtou_range(priority, 0, policy != SCHED_OTHER ? 1 : 0, 99);
115
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +0000116 if (sched_setscheduler(pid, policy, &sp) < 0)
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000117 bb_perror_msg_and_die("can't %cet pid %d's policy", 's', pid);
118
119 if (!*argv) /* "-p <priority> <pid> [...]" */
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +0000120 goto print_rt_info;
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000121
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +0000122 BB_EXECVP(*argv, argv);
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000123 bb_simple_perror_msg_and_die(*argv);
Bernhard Reutner-Fischer71bc71a2007-03-09 16:56:38 +0000124}