/* * 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" #if defined(HAVE_SYS_SELECT_H) static const uint64_t wrap_mask = 0xffff000000000000ULL; #endif static const stress_help_t help[] = { { NULL, "fifo N", "start N workers exercising fifo I/O" }, { NULL, "fifo-ops N", "stop after N fifo bogo operations" }, { NULL, "fifo-readers N", "number of fifo reader stessors to start" }, { NULL, NULL, NULL } }; static int stress_set_fifo_readers(const char *opt) { uint64_t fifo_readers; fifo_readers = stress_get_uint64(opt); stress_check_range("fifo-readers", fifo_readers, MIN_FIFO_READERS, MAX_FIFO_READERS); return stress_set_setting("fifo-readers", TYPE_ID_UINT64, &fifo_readers); } static const stress_opt_set_func_t opt_set_funcs[] = { { OPT_fifo_readers, stress_set_fifo_readers }, { 0, NULL } }; #if defined(HAVE_SYS_SELECT_H) /* * fifo_spawn() * spawn a process */ static pid_t fifo_spawn( const stress_args_t *args, void (*func)(const stress_args_t *args, const char *name, const char *fifoname), const char *name, const char *fifoname) { pid_t pid; pid = fork(); if (pid < 0) { return -1; } if (pid == 0) { (void)setpgid(0, g_pgrp); stress_parent_died_alarm(); (void)sched_settings_apply(true); func(args, name, fifoname); _exit(EXIT_SUCCESS); } (void)setpgid(pid, g_pgrp); return pid; } /* * stress_fifo_readers() * read fifo */ static void stress_fifo_reader( const stress_args_t *args, const char *name, const char *fifoname) { int fd; uint64_t val, lastval = 0; fd = open(fifoname, O_RDONLY | O_NONBLOCK); if (fd < 0) { pr_err("%s: fifo read open failed: errno=%d (%s)\n", name, errno, strerror(errno)); return; } while (keep_stressing_flag()) { ssize_t sz; int ret; struct timeval timeout; fd_set rdfds; FD_ZERO(&rdfds); FD_SET(fd, &rdfds); redo: timeout.tv_sec = 1; timeout.tv_usec = 0; ret = select(fd + 1, &rdfds, NULL, NULL, &timeout); if (ret < 0) { if ((errno == EAGAIN) || (errno == EINTR)) continue; pr_err("%s: select failed: errno=%d (%s)\n", name, errno, strerror(errno)); break; } else if (ret == 0) { /* * nothing to read, timed-out, retry * as this can happen on a highly * overloaded stressed system */ if (keep_stressing()) goto redo; break; } sz = read(fd, &val, sizeof(val)); if (sz < 0) { if ((errno == EAGAIN) || (errno == EINTR)) continue; pr_err("%s: fifo read failed: errno=%d (%s)\n", name, errno, strerror(errno)); break; } if (sz == 0) break; if (sz != sizeof(val)) { pr_err("%s: fifo read did not get uint64\n", name); break; } if ((val < lastval) && ((~val & wrap_mask) && (lastval & wrap_mask))) { pr_err("%s: fifo read did not get " "expected value\n", name); break; } lastval = val; } (void)close(fd); } /* * stress_fifo * stress by heavy fifo I/O */ static int stress_fifo(const stress_args_t *args) { pid_t pids[MAX_FIFO_READERS]; int fd; char fifoname[PATH_MAX]; uint64_t i, val = 0ULL; uint64_t fifo_readers = DEFAULT_FIFO_READERS; int rc = EXIT_SUCCESS; if (!stress_get_setting("fifo-readers", &fifo_readers)) { if (g_opt_flags & OPT_FLAGS_MAXIMIZE) fifo_readers = MAX_FIFO_READERS; if (g_opt_flags & OPT_FLAGS_MINIMIZE) fifo_readers = MIN_FIFO_READERS; } rc = stress_temp_dir_mk_args(args); if (rc < 0) return exit_status(-rc); (void)stress_temp_filename_args(args, fifoname, sizeof(fifoname), stress_mwc32()); if (mkfifo(fifoname, S_IRUSR | S_IWUSR) < 0) { rc = exit_status(errno); pr_err("%s: mkfifo failed: errno=%d (%s)\n", args->name, errno, strerror(errno)); goto tidy; } (void)memset(pids, 0, sizeof(pids)); for (i = 0; i < fifo_readers; i++) { pids[i] = fifo_spawn(args, stress_fifo_reader, args->name, fifoname); if (pids[i] < 0) { rc = EXIT_NO_RESOURCE; goto reap; } if (!keep_stressing_flag()) { rc = EXIT_SUCCESS; goto reap; } } fd = open(fifoname, O_WRONLY); if (fd < 0) { if (errno == EINTR) { rc = 0; } else { rc = exit_status(fd); pr_err("%s: fifo write open failed: " "errno=%d (%s)\n", args->name, errno, strerror(errno)); } goto reap; } do { ssize_t ret; ret = write(fd, &val, sizeof(val)); if (ret <= 0) { if ((errno == EAGAIN) || (errno == EINTR)) continue; if (errno) { pr_fail("%s: write failed, errno=%d (%s)\n", args->name, errno, strerror(errno)); rc = EXIT_FAILURE; break; } continue; } val++; val &= ~wrap_mask; inc_counter(args); } while (keep_stressing()); (void)close(fd); reap: for (i = 0; i < fifo_readers; i++) { if (pids[i] > 0) { int status; (void)kill(pids[i], SIGKILL); (void)shim_waitpid(pids[i], &status, 0); } } tidy: (void)unlink(fifoname); (void)stress_temp_dir_rm_args(args); return rc; } stressor_info_t stress_fifo_info = { .stressor = stress_fifo, .class = CLASS_PIPE_IO | CLASS_OS | CLASS_SCHEDULER, .opt_set_funcs = opt_set_funcs, .help = help }; #else stressor_info_t stress_fifo_info = { .stressor = stress_not_implemented, .class = CLASS_PIPE_IO | CLASS_OS | CLASS_SCHEDULER, .opt_set_funcs = opt_set_funcs, .help = help }; #endif