/* * 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" #define MAX_NANOSLEEP_THREADS (8) #if defined(HAVE_LIB_PTHREAD) && \ defined(HAVE_NANOSLEEP) typedef struct { const stress_args_t *args; uint64_t counter; pthread_t pthread; } stress_ctxt_t; static volatile bool thread_terminate; static sigset_t set; #endif static const stress_help_t help[] = { { NULL, "nanosleep N", "start N workers performing short sleeps" }, { NULL, "nanosleep-ops N", "stop after N bogo sleep operations" }, { NULL, NULL, NULL } }; #if defined(HAVE_LIB_PTHREAD) static void MLOCKED_TEXT stress_sigalrm_handler(int signum) { (void)signum; thread_terminate = true; } /* * stress_pthread_func() * pthread that performs different ranges of sleeps */ static void *stress_pthread_func(void *c) { static void *nowt = NULL; stress_ctxt_t *ctxt = (stress_ctxt_t *)c; const stress_args_t *args = ctxt->args; const uint64_t max_ops = args->max_ops ? (args->max_ops / MAX_NANOSLEEP_THREADS) + 1 : 0; while (keep_stressing() && !thread_terminate && (!max_ops || ctxt->counter < max_ops)) { struct timespec tv; unsigned long i; for (i = 1 << 18; i > 0; i >>=1) { tv.tv_sec = 0; tv.tv_nsec = (stress_mwc32() % i) + 8; if (nanosleep(&tv, NULL) < 0) break; } ctxt->counter++; } return &nowt; } /* * stress_nanosleep() * stress nanosleep by many sleeping threads */ static int stress_nanosleep(const stress_args_t *args) { uint64_t i, n, limited = 0; static stress_ctxt_t ctxts[MAX_NANOSLEEP_THREADS]; int ret = EXIT_SUCCESS; if (stress_sighandler(args->name, SIGALRM, stress_sigalrm_handler, NULL) < 0) return EXIT_FAILURE; (void)memset(ctxts, 0, sizeof(ctxts)); (void)sigfillset(&set); for (n = 0; n < MAX_NANOSLEEP_THREADS; n++) { ctxts[n].args = args; ret = pthread_create(&ctxts[n].pthread, NULL, stress_pthread_func, &ctxts[n]); if (ret) { /* Out of resources, don't try any more */ if (ret == EAGAIN) { limited++; break; } /* Something really unexpected */ pr_fail("%s: pthread create failed, errno=%d (%s)\n", args->name, ret, strerror(ret)); ret = EXIT_NO_RESOURCE; goto tidy; } /* Timed out? abort! */ if (!keep_stressing_flag()) goto tidy; } do { set_counter(args, 0); (void)shim_usleep_interruptible(10000); for (i = 0; i < n; i++) add_counter(args, ctxts[i].counter); } while (!thread_terminate && keep_stressing()); ret = EXIT_SUCCESS; tidy: thread_terminate = true; for (i = 0; i < n; i++) { ret = pthread_join(ctxts[i].pthread, NULL); (void)ret; /* if (ret) pr_dbg("%s: pthread join, ret=%d\n", args->name, ret); */ } if (limited) { pr_inf("%s: %.2f%% of iterations could not reach " "requested %d threads (instance %" PRIu32 ")\n", args->name, 100.0 * (double)limited / (double)MAX_NANOSLEEP_THREADS, MAX_NANOSLEEP_THREADS, args->instance); } return ret; } stressor_info_t stress_nanosleep_info = { .stressor = stress_nanosleep, .class = CLASS_INTERRUPT | CLASS_SCHEDULER | CLASS_OS, .help = help }; #else stressor_info_t stress_nanosleep_info = { .stressor = stress_not_implemented, .class = CLASS_INTERRUPT | CLASS_SCHEDULER | CLASS_OS, .help = help }; #endif