1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
#include "stress-ng.h"
#include "core-capabilities.h"
#if defined(__NR_syslog)
#define HAVE_SYSLOG
#endif
static const stress_help_t help[] = {
{ NULL, "klog N", "start N workers exercising kernel syslog interface" },
{ NULL, "klog-ops N", "stop after N klog bogo operations" },
{ NULL, NULL, NULL }
};
#if defined(HAVE_SYSLOG)
#define SYSLOG_ACTION_CLOSE (0)
#define SYSLOG_ACTION_OPEN (1)
#define SYSLOG_ACTION_READ (2)
#define SYSLOG_ACTION_READ_ALL (3)
#define SYSLOG_ACTION_READ_CLEAR (4)
#define SYSLOG_ACTION_CLEAR (5)
#define SYSLOG_ACTION_CONSOLE_OFF (6)
#define SYSLOG_ACTION_CONSOLE_ON (7)
#define SYSLOG_ACTION_CONSOLE_LEVEL (8)
#define SYSLOG_ACTION_SIZE_UNREAD (9)
#define SYSLOG_ACTION_SIZE_BUFFER (10)
static int stress_klog_supported(const char *name)
{
if (shim_klogctl(SYSLOG_ACTION_SIZE_BUFFER, NULL, 0) < 0) {
pr_inf_skip("%s stressor will be skipped, cannot access klog, "
"probably need to be running with CAP_SYS_ADMIN "
"rights for this stressor\n", name);
return -1;
}
return 0;
}
static int stress_klog(stress_args_t *args)
{
char *buffer;
ssize_t len;
const bool klog_capable = stress_check_capability(SHIM_CAP_SYS_ADMIN) ||
stress_check_capability(SHIM_CAP_SYSLOG);
len = shim_klogctl(SYSLOG_ACTION_SIZE_BUFFER, NULL, 0);
if (len < 0) {
if (!args->instance) {
if (errno == EPERM) {
if (args->instance == 0)
pr_inf_skip("%s: cannot access syslog buffer, "
"not permitted, skipping stressor\n",
args->name);
} else {
pr_fail("%s: cannot determine syslog buffer "
"size: errno=%d (%s)\n",
args->name, errno, strerror(errno));
}
}
return EXIT_NO_RESOURCE;
}
if (len == 0) {
if (!args->instance)
pr_inf_skip("%s: zero sized syslog buffer, skipping stressor.\n", args->name);
return EXIT_NO_RESOURCE;
}
if (len > (ssize_t)(4 * MB)) {
if (!args->instance)
pr_inf("%s: truncating syslog buffer to 4MB\n", args->name);
len = 4 * MB;
}
buffer = (char *)malloc((size_t)len);
if (!buffer) {
pr_err("%s: cannot allocate syslog buffer\n", args->name);
return EXIT_NO_RESOURCE;
}
stress_set_proc_state(args->name, STRESS_STATE_SYNC_WAIT);
stress_sync_start_wait(args);
stress_set_proc_state(args->name, STRESS_STATE_RUN);
do {
int ret;
const int buflen = (int)stress_mwc32modn((uint32_t)len) + 1;
(void)shim_klogctl(SYSLOG_ACTION_READ, buffer, -1);
(void)shim_klogctl(SYSLOG_ACTION_READ_ALL, buffer, -1);
(void)shim_klogctl(SYSLOG_ACTION_READ, NULL, 0);
(void)shim_klogctl(SYSLOG_ACTION_READ_ALL, NULL, 0);
(void)shim_klogctl(SYSLOG_ACTION_READ, buffer, 0);
(void)shim_klogctl(SYSLOG_ACTION_READ_ALL, buffer, 0);
ret = shim_klogctl(SYSLOG_ACTION_READ_ALL, buffer, buflen);
if (ret < 0)
pr_fail("%s: syslog ACTION_READ_ALL failed, errno=%d (%s)\n",
args->name, errno, strerror(errno));
if (ret > buflen)
pr_fail("%s: syslog ACTION_READ_ALL returned more "
"data than was requested.\n", args->name);
(void)shim_klogctl(SYSLOG_ACTION_OPEN, NULL, 0);
(void)shim_klogctl(SYSLOG_ACTION_CLOSE, NULL, 0);
(void)shim_klogctl(SYSLOG_ACTION_SIZE_UNREAD, NULL, 0);
(void)shim_klogctl(SYSLOG_ACTION_SIZE_BUFFER, NULL, 0);
if (!klog_capable) {
(void)shim_klogctl(SYSLOG_ACTION_CLEAR, NULL, 0);
(void)shim_klogctl(SYSLOG_ACTION_READ_CLEAR, buffer, buflen);
(void)shim_klogctl(SYSLOG_ACTION_CONSOLE_OFF, NULL, 0);
(void)shim_klogctl(SYSLOG_ACTION_CONSOLE_ON, NULL, 0);
}
(void)shim_klogctl(SYSLOG_ACTION_CONSOLE_LEVEL, NULL, -1);
(void)shim_klogctl(SYSLOG_ACTION_CONSOLE_LEVEL, NULL, 0x7ffffff);
(void)shim_klogctl(-1, NULL, 0);
(void)shim_klogctl(SYSLOG_ACTION_READ_ALL, NULL, buflen);
(void)shim_klogctl(SYSLOG_ACTION_READ_ALL, buffer, -1);
(void)shim_klogctl(SYSLOG_ACTION_READ_ALL, buffer, 0);
stress_bogo_inc(args);
} while (stress_continue(args));
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
free(buffer);
return EXIT_SUCCESS;
}
const stressor_info_t stress_klog_info = {
.stressor = stress_klog,
.class = CLASS_OS,
.help = help,
.verify = VERIFY_ALWAYS,
.supported = stress_klog_supported
};
#else
const stressor_info_t stress_klog_info = {
.stressor = stress_unimplemented,
.class = CLASS_OS,
.verify = VERIFY_ALWAYS,
.help = help,
.unimplemented_reason = "built without syslog() system call or klogctl()"
};
#endif
|