/* * Copyright (C) 2013-2020 Canonical, Ltd. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * This code is a complete clean re-write of the stress tool by * Colin Ian King and attempts to be * backwardly compatible with the stress tool by Amos Waterland * but has more stress tests and more * functionality. * */ #include "stress-ng.h" static const stress_help_t help[] = { { NULL, "ioprio N", "start N workers exercising set/get iopriority" }, { NULL, "ioprio-ops N", "stop after N io bogo iopriority operations" }, { NULL, NULL, NULL } }; #if defined(HAVE_IOPRIO_GET) && \ defined(HAVE_IOPRIO_SET) && \ defined(HAVE_PWRITEV) #define MAX_IOV (4) #define BUF_SIZE (32) /* * stress set/get io priorities * stress system by rapid io priority changes */ static int stress_ioprio(const stress_args_t *args) { const uid_t uid = getuid(); #if defined(HAVE_GETPGRP) const pid_t grp = getpgrp(); #endif int fd, rc = EXIT_FAILURE, ret; char filename[PATH_MAX]; ret = stress_temp_dir_mk_args(args); if (ret < 0) return exit_status(-ret); (void)stress_temp_filename_args(args, filename, sizeof(filename), stress_mwc32()); if ((fd = open(filename, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR)) < 0) { rc = exit_status(errno); pr_fail("%s: open %s failed, errno=%d (%s)\n", args->name, filename, errno, strerror(errno)); goto cleanup_dir; } (void)unlink(filename); do { int i; struct iovec iov[MAX_IOV]; char buffer[MAX_IOV][BUF_SIZE]; if (shim_ioprio_get(IOPRIO_WHO_PROCESS, args->pid) < 0) { if (errno != EINVAL) { pr_fail("%s: ioprio_get(OPRIO_WHO_PROCESS, %d), " "errno = %d (%s)\n", args->name, args->pid, errno, strerror(errno)); goto cleanup_file; } } if (!keep_stressing()) break; if (shim_ioprio_get(IOPRIO_WHO_PROCESS, 0) < 0) { if (errno != EINVAL) { pr_fail("%s: ioprio_get(OPRIO_WHO_PROCESS, 0), " "errno = %d (%s)\n", args->name, errno, strerror(errno)); goto cleanup_file; } } if (!keep_stressing()) break; #if defined(HAVE_GETPGRP) if (shim_ioprio_get(IOPRIO_WHO_PGRP, grp) < 0) { if (errno != EINVAL) { pr_fail("%s: ioprio_get(OPRIO_WHO_PGRP, %d), " "errno = %d (%s)\n", args->name, g_pgrp, errno, strerror(errno)); goto cleanup_file; } } if (!keep_stressing()) break; #endif if (shim_ioprio_get(IOPRIO_WHO_PGRP, 0) < 0) { if (errno != EINVAL) { pr_fail("%s: ioprio_get(OPRIO_WHO_PGRP, 0), " "errno = %d (%s)\n", args->name, errno, strerror(errno)); goto cleanup_file; } } if (!keep_stressing()) break; if (shim_ioprio_get(IOPRIO_WHO_USER, uid) < 0) { if (errno != EINVAL) { pr_fail("%s: ioprio_get(OPRIO_WHO_USR, %d), " "errno = %d (%s)\n", args->name, uid, errno, strerror(errno)); goto cleanup_file; } } if (!keep_stressing()) break; for (i = 0; i < MAX_IOV; i++) { (void)memset(buffer[i], stress_mwc8(), BUF_SIZE); iov[i].iov_base = buffer[i]; iov[i].iov_len = BUF_SIZE; } if (pwritev(fd, iov, MAX_IOV, (off_t)512 * stress_mwc16()) < 0) { if (errno != ENOSPC) { pr_fail("%s: pwritev failed, errno=%d (%s)\n", args->name, errno, strerror(errno)); goto cleanup_file; } } if (!keep_stressing()) break; (void)shim_fsync(fd); if (!keep_stressing()) break; if (shim_ioprio_set(IOPRIO_WHO_PROCESS, args->pid, IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0)) < 0) { if ((errno != EPERM) && (errno != EINVAL)) { pr_fail("%s: ioprio_set(" "IOPRIO_WHO_PROCESS, %d, " "(IOPRIO_CLASS_IDLE, 0)), " "errno = %d (%s)\n", args->name, args->pid, errno, strerror(errno)); goto cleanup_file; } } if (!keep_stressing()) break; if (pwritev(fd, iov, MAX_IOV, (off_t)512 * stress_mwc16()) < 0) { if (errno != ENOSPC) { pr_fail("%s: pwritev failed, errno=%d (%s)\n", args->name, errno, strerror(errno)); goto cleanup_file; } } if (!keep_stressing()) break; (void)shim_fsync(fd); if (!keep_stressing()) break; for (i = 0; i < 8; i++) { if (shim_ioprio_set(IOPRIO_WHO_PROCESS, args->pid, IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, i)) < 0) { if ((errno != EPERM) && (errno != EINVAL)) { pr_fail("%s: ioprio_set(" "IOPRIO_WHO_PROCESS, %d, " "(IOPRIO_CLASS_BE, %d)), " "errno = %d (%s)\n", args->name, args->pid, i, errno, strerror(errno)); goto cleanup_file; } } if (pwritev(fd, iov, MAX_IOV, (off_t)512 * stress_mwc16()) < 0) { if (errno != ENOSPC) { pr_fail("%s: pwritev failed, errno=%d (%s)\n", args->name, errno, strerror(errno)); goto cleanup_file; } } (void)shim_fsync(fd); } if (!keep_stressing()) break; for (i = 0; i < 8; i++) { if (shim_ioprio_set(IOPRIO_WHO_PROCESS, args->pid, IOPRIO_PRIO_VALUE(IOPRIO_CLASS_RT, i)) < 0) { if ((errno != EPERM) && (errno != EINVAL)) { pr_fail("%s: ioprio_set(" "IOPRIO_WHO_PROCESS, %d, " "(IOPRIO_CLASS_RT, %d)), " "errno = %d (%s)\n", args->name, args->pid, i, errno, strerror(errno)); goto cleanup_file; } } if (pwritev(fd, iov, MAX_IOV, (off_t)512 * stress_mwc16()) < 0) { if (errno != ENOSPC) { pr_fail("%s: pwritev failed, errno=%d (%s)\n", args->name, errno, strerror(errno)); goto cleanup_file; } } (void)shim_fsync(fd); } inc_counter(args); } while (keep_stressing()); rc = EXIT_SUCCESS; cleanup_file: (void)close(fd); cleanup_dir: (void)stress_temp_dir_rm_args(args); return rc; } stressor_info_t stress_ioprio_info = { .stressor = stress_ioprio, .class = CLASS_FILESYSTEM | CLASS_OS, .help = help }; #else stressor_info_t stress_ioprio_info = { .stressor = stress_not_implemented, .class = CLASS_FILESYSTEM | CLASS_OS, .help = help }; #endif