blob: 47e9897922ba43d21c083c0119e3b543071c1ea3 [file] [log] [blame]
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +00001/* vi: set sw=4 ts=4: */
2/*
3 * taskset - retrieve or set a processes' CPU affinity
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00004 * Copyright (c) 2006 Bernhard Reutner-Fischer
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +00005 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02006 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +00007 */
Denys Vlasenko962c4e82014-08-17 19:36:22 +02008//config:config TASKSET
Denys Vlasenkob097a842018-12-28 03:20:17 +01009//config: bool "taskset (4.2 kb)"
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010010//config: default y
Denys Vlasenko962c4e82014-08-17 19:36:22 +020011//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020012//config: Retrieve or set a processes's CPU affinity.
13//config: This requires sched_{g,s}etaffinity support in your libc.
Denys Vlasenko962c4e82014-08-17 19:36:22 +020014//config:
15//config:config FEATURE_TASKSET_FANCY
16//config: bool "Fancy output"
17//config: default y
18//config: depends on TASKSET
19//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020020//config: Needed for machines with more than 32-64 CPUs:
21//config: affinity parameter 0xHHHHHHHHHHHHHHHHHHHH can be arbitrarily long
22//config: in this case. Otherwise, it is limited to sizeof(long).
Denys Vlasenko162ac7f2019-11-01 15:44:49 +010023//config:
24//config:config FEATURE_TASKSET_CPULIST
25//config: bool "CPU list support (-c option)"
26//config: default y
27//config: depends on FEATURE_TASKSET_FANCY
28//config: help
29//config: Add support for taking/printing affinity as CPU list when '-c'
30//config: option is used. For example, it prints '0-3,7' instead of mask '8f'.
Denys Vlasenko962c4e82014-08-17 19:36:22 +020031
Denys Vlasenko5c527dc2017-08-04 19:55:01 +020032//applet:IF_TASKSET(APPLET_NOEXEC(taskset, taskset, BB_DIR_USR_BIN, BB_SUID_DROP, taskset))
Denys Vlasenko0c4dbd42017-09-18 16:28:43 +020033
Denys Vlasenko962c4e82014-08-17 19:36:22 +020034//kbuild:lib-$(CONFIG_TASKSET) += taskset.o
35
Pere Orga5bc8c002011-04-11 03:29:49 +020036//usage:#define taskset_trivial_usage
Denys Vlasenko25128172021-06-19 17:42:35 +020037//usage: "[-ap] [HEXMASK"IF_FEATURE_TASKSET_CPULIST(" | -c LIST")"] { PID | PROG ARGS }"
Pere Orga5bc8c002011-04-11 03:29:49 +020038//usage:#define taskset_full_usage "\n\n"
39//usage: "Set or get CPU affinity\n"
Denys Vlasenko25128172021-06-19 17:42:35 +020040//usage: "\n -p Operate on PID"
41//usage: "\n -a Operate on all threads"
42//usage: "\n -c Affinity is a list, not mask"
Pere Orga5bc8c002011-04-11 03:29:49 +020043//usage:
44//usage:#define taskset_example_usage
45//usage: "$ taskset 0x7 ./dgemm_test&\n"
46//usage: "$ taskset -p 0x1 $!\n"
47//usage: "pid 4790's current affinity mask: 7\n"
48//usage: "pid 4790's new affinity mask: 1\n"
49//usage: "$ taskset 0x7 /bin/sh -c './taskset -p 0x1 $$'\n"
50//usage: "pid 6671's current affinity mask: 1\n"
51//usage: "pid 6671's new affinity mask: 1\n"
52//usage: "$ taskset -p 1\n"
53//usage: "pid 1's current affinity mask: 3\n"
Denys Vlasenko962c4e82014-08-17 19:36:22 +020054/*
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010055 * Not yet implemented:
Denys Vlasenko962c4e82014-08-17 19:36:22 +020056 * -a/--all-tasks (affect all threads)
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010057 * needs to get TIDs from /proc/PID/task/ and use _them_ as "pid" in sched_setaffinity(pid)
Denys Vlasenko962c4e82014-08-17 19:36:22 +020058 * -c/--cpu-list (specify CPUs via "1,3,5-7")
59 */
Pere Orga5bc8c002011-04-11 03:29:49 +020060
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +000061#include <sched.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000062#include "libbb.h"
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +000063
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010064typedef unsigned long ul;
65#define SZOF_UL (unsigned)(sizeof(ul))
66#define BITS_UL (unsigned)(sizeof(ul)*8)
67#define MASK_UL (unsigned)(sizeof(ul)*8 - 1)
68
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +000069#if ENABLE_FEATURE_TASKSET_FANCY
70#define TASKSET_PRINTF_MASK "%s"
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +000071/* craft a string from the mask */
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010072static char *from_mask(const ul *mask, unsigned sz_in_bytes)
Denis Vlasenko3bba5452006-12-30 17:57:03 +000073{
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010074 char *str = xzalloc((sz_in_bytes+1) * 2); /* we will leak it */
75 char *p = str;
76 for (;;) {
77 ul v = *mask++;
78 if (SZOF_UL == 4)
79 p += sprintf(p, "%08lx", v);
80 if (SZOF_UL == 8)
81 p += sprintf(p, "%016lx", v);
82 if (SZOF_UL == 16)
83 p += sprintf(p, "%032lx", v); /* :) */
84 sz_in_bytes -= SZOF_UL;
85 if ((int)sz_in_bytes <= 0)
86 break;
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +000087 }
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010088 while (str[0] == '0' && str[1])
89 str++;
90 return str;
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +000091}
92#else
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010093#define TASKSET_PRINTF_MASK "%lx"
94static unsigned long long from_mask(ul *mask, unsigned sz_in_bytes UNUSED_PARAM)
Denis Vlasenko0e525412008-07-11 13:57:08 +000095{
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +010096 return *mask;
Denis Vlasenko0e525412008-07-11 13:57:08 +000097}
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +000098#endif
99
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100100static unsigned long *get_aff(int pid, unsigned *sz)
101{
102 int r;
103 unsigned long *mask = NULL;
104 unsigned sz_in_bytes = *sz;
105
106 for (;;) {
107 mask = xrealloc(mask, sz_in_bytes);
108 r = sched_getaffinity(pid, sz_in_bytes, (void*)mask);
109 if (r == 0)
110 break;
111 sz_in_bytes *= 2;
112 if (errno == EINVAL && (int)sz_in_bytes > 0)
113 continue;
114 bb_perror_msg_and_die("can't %cet pid %d's affinity", 'g', pid);
115 }
116 //bb_error_msg("get mask[0]:%lx sz_in_bytes:%d", mask[0], sz_in_bytes);
117 *sz = sz_in_bytes;
118 return mask;
119}
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +0000120
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100121#if ENABLE_FEATURE_TASKSET_CPULIST
122/*
123 * Parse the CPU list and set the mask accordingly.
124 *
125 * The list element can be either a CPU index or a range of CPU indices.
Denys Vlasenkoa82fb1b2019-11-09 17:05:14 +0100126 * Example: "1,3,5-7". Stride can be specified: "0-7:2" is "0,2,4,6".
127 * Note: leading and trailing whitespace is not allowed.
Denys Vlasenkoe5586602019-11-08 16:32:37 +0100128 * util-linux 2.31 allows leading and sometimes trailing whitespace:
129 * ok: taskset -c ' 1, 2'
130 * ok: taskset -c ' 1 , 2'
131 * ok: taskset -c ' 1-7: 2 ,8'
132 * not ok: taskset -c ' 1 '
133 * not ok: taskset -c ' 1-7: 2 '
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100134 */
135static void parse_cpulist(ul *mask, unsigned max, char *s)
136{
137 char *aff = s;
138 for (;;) {
139 unsigned bit, end;
Denys Vlasenkoa82fb1b2019-11-09 17:05:14 +0100140 unsigned stride = 1;
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100141
142 bit = end = bb_strtou(s, &s, 10);
143 if (*s == '-') {
144 s++;
145 end = bb_strtou(s, &s, 10);
Denys Vlasenkoa82fb1b2019-11-09 17:05:14 +0100146 if (*s == ':') {
147 s++;
148 stride = bb_strtou(s, &s, 10);
149 }
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100150 }
151 if ((*s != ',' && *s != '\0')
152 || bit > end
153 || end == UINT_MAX /* bb_strtou returns this on malformed / ERANGE numbers */
Denys Vlasenkob230fdf2019-11-09 17:32:43 +0100154 || (stride - 1) > (UINT_MAX / 4)
155 /* disallow 0, malformed input, and too large stride prone to overflows */
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100156 ) {
157 bb_error_msg_and_die("bad affinity '%s'", aff);
158 }
159 while (bit <= end && bit < max) {
160 mask[bit / BITS_UL] |= (1UL << (bit & MASK_UL));
Denys Vlasenkoa82fb1b2019-11-09 17:05:14 +0100161 bit += stride;
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100162 }
163 if (*s == '\0')
164 break;
165 s++;
166 }
167}
168static void print_cpulist(const ul *mask, unsigned mask_size_in_bytes)
169{
170 const ul *mask_end;
171 const char *delim;
172 unsigned pos;
173 ul bit;
174
175 mask_end = mask + mask_size_in_bytes / sizeof(mask[0]);
176 delim = "";
177 pos = 0;
178 bit = 1;
179 for (;;) {
180 if (*mask & bit) {
181 unsigned onebit = pos + 1;
182 printf("%s%u", delim, pos);
183 do {
184 pos++;
185 bit <<= 1;
186 if (bit == 0) {
187 mask++;
188 if (mask >= mask_end)
189 break;
190 bit = 1;
191 }
192 } while (*mask & bit);
193 if (onebit != pos)
194 printf("-%u", pos - 1);
195 delim = ",";
196 }
197 pos++;
198 bit <<= 1;
199 if (bit == 0) {
200 mask++;
201 if (mask >= mask_end)
202 break;
203 bit = 1;
204 }
205 }
206 bb_putchar('\n');
207}
208#endif
209
Denys Vlasenko25128172021-06-19 17:42:35 +0200210enum {
211 OPT_p = 1 << 0,
212 OPT_a = 1 << 1,
213 OPT_c = (1 << 2) * ENABLE_FEATURE_TASKSET_CPULIST,
214};
215
216static void process_pid_str(const char *pid_str, unsigned opts, char *aff)
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +0000217{
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100218 ul *mask;
219 unsigned mask_size_in_bytes;
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000220 const char *current_new;
Denys Vlasenko25128172021-06-19 17:42:35 +0200221 pid_t pid = xatoi_positive(pid_str);
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +0000222
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100223 mask_size_in_bytes = SZOF_UL;
Denys Vlasenko86663912017-01-29 18:59:38 +0100224 current_new = "current";
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000225 print_aff:
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100226 mask = get_aff(pid, &mask_size_in_bytes);
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100227 if (opts & OPT_p) {
228#if ENABLE_FEATURE_TASKSET_CPULIST
229 if (opts & OPT_c) {
230 printf("pid %d's %s affinity list: ", pid, current_new);
231 print_cpulist(mask, mask_size_in_bytes);
232 } else
233#endif
234 printf("pid %d's %s affinity mask: "TASKSET_PRINTF_MASK"\n",
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100235 pid, current_new, from_mask(mask, mask_size_in_bytes));
Denys Vlasenko25128172021-06-19 17:42:35 +0200236 if (!aff) {
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000237 /* Either it was just "-p <pid>",
238 * or it was "-p <aff> <pid>" and we came here
239 * for the second time (see goto below) */
Denys Vlasenko25128172021-06-19 17:42:35 +0200240 return;
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000241 }
Denys Vlasenko86663912017-01-29 18:59:38 +0100242 current_new = "new";
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +0000243 }
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100244 memset(mask, 0, mask_size_in_bytes);
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +0000245
Denys Vlasenko962c4e82014-08-17 19:36:22 +0200246 if (!ENABLE_FEATURE_TASKSET_FANCY) {
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100247 /* Affinity was specified, translate it into mask */
248 /* it is always in hex, skip "0x" if it exists */
249 if (aff[0] == '0' && (aff[1]|0x20) == 'x')
250 aff += 2;
Denys Vlasenkod6ace662017-01-30 22:20:06 +0100251 mask[0] = xstrtoul(aff, 16);
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100252 }
253#if ENABLE_FEATURE_TASKSET_CPULIST
254 else if (opts & OPT_c) {
255 parse_cpulist(mask, mask_size_in_bytes * 8, aff);
256 }
257#endif
258 else {
Denys Vlasenko962c4e82014-08-17 19:36:22 +0200259 unsigned i;
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100260 char *last_char;
Denys Vlasenko962c4e82014-08-17 19:36:22 +0200261
Denys Vlasenko162ac7f2019-11-01 15:44:49 +0100262 /* Affinity was specified, translate it into mask */
263 /* it is always in hex, skip "0x" if it exists */
264 if (aff[0] == '0' && (aff[1]|0x20) == 'x')
265 aff += 2;
266
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100267 i = 0; /* bit pos in mask[] */
Denys Vlasenko962c4e82014-08-17 19:36:22 +0200268
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100269 /* aff is ASCII hex string, accept very long masks in this form.
270 * Process hex string AABBCCDD... to ulong mask[]
271 * from the rightmost nibble, which is least-significant.
272 * Bits not fitting into mask[] are ignored: (example: 1234
273 * in 12340000000000000000000000000000000000000ff)
274 */
275 last_char = strchrnul(aff, '\0');
276 while (last_char > aff) {
277 char c;
278 ul val;
279
280 last_char--;
281 c = *last_char;
282 if (isdigit(c))
283 val = c - '0';
284 else if ((c|0x20) >= 'a' && (c|0x20) <= 'f')
285 val = (c|0x20) - ('a' - 10);
286 else
Denys Vlasenko962c4e82014-08-17 19:36:22 +0200287 bb_error_msg_and_die("bad affinity '%s'", aff);
Denys Vlasenko962c4e82014-08-17 19:36:22 +0200288
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100289 if (i < mask_size_in_bytes * 8) {
290 mask[i / BITS_UL] |= val << (i & MASK_UL);
Denys Vlasenko962c4e82014-08-17 19:36:22 +0200291 //bb_error_msg("bit %d set", i);
292 }
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100293 /* else:
294 * We can error out here, but we don't.
295 * For one, kernel itself ignores bits in mask[]
Denys Vlasenkod6ace662017-01-30 22:20:06 +0100296 * which do not map to any CPUs:
297 * if mask[] has one 32-bit long element,
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100298 * but you have only 8 CPUs, all bits beyond first 8
299 * are ignored, silently.
300 * No point in making bits past 31th to be errors.
301 */
302 i += 4;
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000303 }
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +0000304 }
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000305
306 /* Set pid's or our own (pid==0) affinity */
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100307 if (sched_setaffinity(pid, mask_size_in_bytes, (void*)mask))
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000308 bb_perror_msg_and_die("can't %cet pid %d's affinity", 's', pid);
Denys Vlasenkoef0e76c2017-01-29 18:19:29 +0100309 //bb_error_msg("set mask[0]:%lx", mask[0]);
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000310
Denys Vlasenko25128172021-06-19 17:42:35 +0200311 if ((opts & OPT_p) && aff) { /* "-p <aff> <pid> [...ignored...]" */
312 aff = NULL;
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000313 goto print_aff; /* print new affinity and exit */
Denys Vlasenko25128172021-06-19 17:42:35 +0200314 }
315}
Denis Vlasenkob44c7902008-03-17 09:29:43 +0000316
Denys Vlasenko25128172021-06-19 17:42:35 +0200317int taskset_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
318int taskset_main(int argc UNUSED_PARAM, char **argv)
319{
320 const char *pid_str;
321 char *aff;
322 unsigned opts;
323
324 /* NB: we mimic util-linux's taskset: -p does not take
325 * an argument, i.e., "-pN" is NOT valid, only "-p N"!
326 * Indeed, util-linux-2.13-pre7 uses:
327 * getopt_long(argc, argv, "+pchV", ...), not "...p:..." */
328
329 opts = getopt32(argv, "^+" "pa"IF_FEATURE_TASKSET_CPULIST("c")
330 "\0" "-1" /* at least 1 arg */);
331 argv += optind;
332
333 aff = *argv++;
334 if (!(opts & OPT_p)) {
335 /* <aff> <cmd...> */
336 if (!*argv)
337 bb_show_usage();
338 process_pid_str("0", opts, aff);
339 BB_EXECVP_or_die(argv);
340 }
341
342 pid_str = aff;
343 if (*argv) /* "-p <aff> <pid> ...rest.is.ignored..." */
344 pid_str = *argv; /* NB: *argv != NULL in this case */
345 else
346 aff = NULL;
347
348 if (opts & OPT_a) {
Denys Vlasenko9c291f22021-06-20 09:02:03 +0200349 char *dn;
Denys Vlasenko25128172021-06-19 17:42:35 +0200350 DIR *dir;
351 struct dirent *ent;
352
Denys Vlasenko9c291f22021-06-20 09:02:03 +0200353 dn = xasprintf("/proc/%s/task", pid_str);
Denys Vlasenko25128172021-06-19 17:42:35 +0200354 dir = opendir(dn);
Denys Vlasenko9c291f22021-06-20 09:02:03 +0200355 IF_FEATURE_CLEAN_UP(free(dn);)
Denys Vlasenko25128172021-06-19 17:42:35 +0200356 if (!dir) {
357 goto no_threads;
358 }
359 while ((ent = readdir(dir)) != NULL) {
360 if (isdigit(ent->d_name[0]))
361 process_pid_str(ent->d_name, opts, aff);
362 }
363 IF_FEATURE_CLEAN_UP(closedir(dir);)
364 } else {
365 no_threads:
366 process_pid_str(pid_str, opts, aff);
367 }
368 return EXIT_SUCCESS;
Bernhard Reutner-Fischer32eddff2006-11-22 16:39:48 +0000369}