aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-08-15 20:41:18 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2021-08-15 20:41:18 +0200
commit319e20b56b281c9ce552f918b1a1d4c5577d38d6 (patch)
tree11f3de786120e0e4953380c617d698ca95e437a9
parentac2d4d88ce54d418b579a50ae18434fbf5ffa58a (diff)
downloadbusybox-w32-319e20b56b281c9ce552f918b1a1d4c5577d38d6.tar.gz
busybox-w32-319e20b56b281c9ce552f918b1a1d4c5577d38d6.tar.bz2
busybox-w32-319e20b56b281c9ce552f918b1a1d4c5577d38d6.zip
taskset: disallow "taskset -p 0"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--util-linux/taskset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/taskset.c b/util-linux/taskset.c
index afe2f04d2..d2ef9b98f 100644
--- a/util-linux/taskset.c
+++ b/util-linux/taskset.c
@@ -218,7 +218,7 @@ static int process_pid_str(const char *pid_str, unsigned opts, char *aff)
218 ul *mask; 218 ul *mask;
219 unsigned mask_size_in_bytes; 219 unsigned mask_size_in_bytes;
220 const char *current_new; 220 const char *current_new;
221 pid_t pid = xatoi_positive(pid_str); 221 pid_t pid = !pid_str ? 0 : xatou_range(pid_str, 1, INT_MAX); /* disallow "0": "taskset -p 0" should fail */
222 222
223 mask_size_in_bytes = SZOF_UL; 223 mask_size_in_bytes = SZOF_UL;
224 current_new = "current"; 224 current_new = "current";
@@ -343,7 +343,7 @@ int taskset_main(int argc UNUSED_PARAM, char **argv)
343 /* <aff> <cmd...> */ 343 /* <aff> <cmd...> */
344 if (!*argv) 344 if (!*argv)
345 bb_show_usage(); 345 bb_show_usage();
346 process_pid_str("0", opts, aff); 346 process_pid_str(NULL, opts, aff);
347 BB_EXECVP_or_die(argv); 347 BB_EXECVP_or_die(argv);
348 } 348 }
349 349