/* * 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, "tee N", "start N workers exercising the tee system call" }, { NULL, "tee-ops N", "stop after N tee bogo operations" }, { NULL, NULL, NULL } }; #if defined(HAVE_TEE) && \ defined(SPLICE_F_NONBLOCK) #define TEE_IO_SIZE (65536) /* * stress_tee_spawn() * spawn off tee I/O processes */ static pid_t stress_tee_spawn( const stress_args_t *args, void (*func)(int fds[2]), int fds[2]) { pid_t pid; if (pipe(fds) < 0) { pr_err("%s: pipe failed: %d (%s)\n", args->name, errno, strerror(errno)); return -1; } again: pid = fork(); if (pid < 0) { if (keep_stressing_flag() && (errno == EAGAIN)) goto again; (void)close(fds[0]); (void)close(fds[1]); pr_err("%s: fork failed: %d (%s)\n", args->name, errno, strerror(errno)); return -1; } if (pid == 0) { (void)setpgid(0, g_pgrp); stress_parent_died_alarm(); (void)sched_settings_apply(true); func(fds); _exit(EXIT_SUCCESS); } (void)setpgid(pid, g_pgrp); return pid; } /* * stress_tee_pipe_write() * write data down a pipe */ static void stress_tee_pipe_write(int fds[2]) { static char buffer[TEE_IO_SIZE]; (void)close(fds[0]); (void)memset(buffer, 0, sizeof(buffer)); while (keep_stressing_flag()) { ssize_t ret; ret = write(fds[1], buffer, sizeof(buffer)); if (ret < 0) { if (errno != EAGAIN) break; } } (void)close(fds[1]); } /* * stress_tee_pipe_read() * read data from a pipe */ static void stress_tee_pipe_read(int fds[2]) { static char buffer[TEE_IO_SIZE]; (void)close(fds[1]); while (keep_stressing_flag()) { ssize_t ret; ret = read(fds[0], buffer, sizeof(buffer)); if (ret < 0) if (errno != EAGAIN) break; } (void)close(fds[1]); } /* * stress_tee() * stress the Linux tee syscall */ static int stress_tee(const stress_args_t *args) { ssize_t len, slen; int fd, pipe_in[2], pipe_out[2]; pid_t pids[2]; int ret = EXIT_FAILURE, status; fd = open("/dev/null", O_WRONLY); if (fd < 0) { pr_err("%s: open /dev/null failed: errno=%d (%s)\n", args->name, errno, strerror(errno)); return EXIT_FAILURE; } pids[0] = stress_tee_spawn(args, stress_tee_pipe_write, pipe_in); if (pids[0] < 0) { (void)close(fd); return EXIT_FAILURE; } (void)close(pipe_in[1]); pids[1] = stress_tee_spawn(args, stress_tee_pipe_read, pipe_out); if (pids[0] < 0) goto tidy_child1; (void)close(pipe_out[0]); do { len = tee(pipe_in[0], pipe_out[1], INT_MAX, 0 & SPLICE_F_NONBLOCK); if (len < 0) { if (errno == EAGAIN) continue; if (errno == EINTR) break; if (errno == ENOMEM) { pr_inf("%s: skipping stressor, out of memory\n", args->name); ret = EXIT_NO_RESOURCE; goto tidy_child2; } pr_err("%s: tee failed: errno=%d (%s)\n", args->name, errno, strerror(errno)); goto tidy_child2; } else { if (len == 0) break; } while (len > 0) { slen = splice(pipe_in[0], NULL, fd, NULL, len, SPLICE_F_MOVE); if (errno == EINTR) break; if (slen < 0) { pr_err("%s: splice failed: errno=%d (%s)\n", args->name, errno, strerror(errno)); goto tidy_child2; } len -= slen; } inc_counter(args); } while (keep_stressing()); ret = EXIT_SUCCESS; tidy_child2: (void)close(pipe_out[1]); (void)kill(pids[1], SIGKILL); (void)shim_waitpid(pids[1], &status, 0); tidy_child1: (void)close(pipe_in[0]); (void)kill(pids[0], SIGKILL); (void)shim_waitpid(pids[0], &status, 0); (void)close(fd); return ret; } stressor_info_t stress_tee_info = { .stressor = stress_tee, .class = CLASS_PIPE_IO | CLASS_OS | CLASS_SCHEDULER, .help = help }; #else stressor_info_t stress_tee_info = { .stressor = stress_not_implemented, .class = CLASS_PIPE_IO | CLASS_OS | CLASS_SCHEDULER, .help = help }; #endif