1 Star 0 Fork 2

HoperunHarmony/stress-ng

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stress-flock.c 5.31 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (C) 2013-2021 Canonical, Ltd.
* Copyright (C) 2022 Colin Ian King.
*
* 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.
*
*/
#include "stress-ng.h"
static const stress_help_t help[] = {
{ NULL, "flock N", "start N workers locking a single file" },
{ NULL, "flock-ops N", "stop after N flock bogo operations" },
{ NULL, NULL, NULL }
};
#if defined(HAVE_FLOCK) && \
defined(LOCK_EX) && \
defined(LOCK_UN)
#define MAX_FLOCK_STRESSORS (3)
static void stress_flock_child(
const stress_args_t *args,
const int fd,
const int bad_fd)
{
bool cont;
int i;
for (i = 0; ; i++) {
int ret;
#if defined(LOCK_EX)
if (flock(fd, LOCK_EX) == 0) {
cont = keep_stressing(args);
if (cont)
inc_counter(args);
(void)flock(fd, LOCK_UN);
if (!cont)
break;
}
#else
UNEXPECTED
#endif
/*
* Exercise flock with invalid fd
*/
ret = flock(bad_fd, LOCK_EX);
(void)ret;
ret = flock(bad_fd, LOCK_UN);
(void)ret;
#if defined(LOCK_NB)
if (flock(fd, LOCK_EX | LOCK_NB) == 0) {
cont = keep_stressing(args);
if (cont)
inc_counter(args);
(void)flock(fd, LOCK_UN);
if (!cont)
break;
}
/*
* Exercise flock with invalid operation
*/
ret = flock(fd, LOCK_NB);
if (ret == 0) {
pr_fail("%s: flock failed expected EINVAL, instead got "
"errno=%d (%s)\n", args->name, errno, strerror(errno));
(void)flock(fd, LOCK_UN);
}
#else
UNEXPECTED
#endif
#if defined(LOCK_SH)
if (!keep_stressing(args))
break;
if (flock(fd, LOCK_SH) == 0) {
cont = keep_stressing(args);
if (cont)
inc_counter(args);
(void)flock(fd, LOCK_UN);
if (!cont)
break;
}
#else
UNEXPECTED
#endif
#if defined(LOCK_SH) && \
defined(LOCK_NB)
if (!keep_stressing(args))
break;
if (flock(fd, LOCK_SH | LOCK_NB) == 0) {
cont = keep_stressing(args);
if (cont)
inc_counter(args);
(void)flock(fd, LOCK_UN);
if (!cont)
break;
}
#else
UNEXPECTED
#endif
#if defined(LOCK_MAND) && \
defined(LOCK_READ)
if (!keep_stressing(args))
break;
if (flock(fd, LOCK_MAND | LOCK_READ) == 0) {
cont = keep_stressing(args);
if (cont)
inc_counter(args);
(void)flock(fd, LOCK_UN);
if (!cont)
break;
}
#else
UNEXPECTED
#endif
#if defined(LOCK_MAND) && \
defined(LOCK_WRITE)
if (!keep_stressing(args))
break;
if (flock(fd, LOCK_MAND | LOCK_WRITE) == 0) {
cont = keep_stressing(args);
if (cont)
inc_counter(args);
(void)flock(fd, LOCK_UN);
if (!cont)
break;
}
#else
UNEXPECTED
#endif
#if defined(LOCK_EX) && \
defined(LOCK_SH)
if (!keep_stressing(args))
break;
/* Exercise invalid lock combination */
if (flock(fd, LOCK_EX | LOCK_SH) == 0) {
cont = keep_stressing(args);
if (cont)
inc_counter(args);
(void)flock(fd, LOCK_UN);
if (!cont)
break;
}
#else
UNEXPECTED
#endif
#if defined(__linux__)
if ((i & 0xff) == 0) {
char buf[4096];
ssize_t rret;
rret = system_read("/proc/locks", buf, sizeof(buf));
(void)rret;
}
#endif
}
}
/*
* stress_flock
* stress file locking
*/
static int stress_flock(const stress_args_t *args)
{
int fd, ret, rc = EXIT_FAILURE;
const int bad_fd = stress_get_bad_fd();
size_t i;
pid_t pids[MAX_FLOCK_STRESSORS];
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());
fd = open(filename, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR);
if (fd < 0) {
pr_err("%s: failed to create %s: errno=%d (%s)\n",
args->name, filename, errno, strerror(errno));
goto err;
}
stress_set_proc_state(args->name, STRESS_STATE_RUN);
(void)memset(pids, 0, sizeof(pids));
for (i = 0; i < MAX_FLOCK_STRESSORS; i++) {
pids[i] = fork();
if (pids[i] < 0) {
goto reap;
} else if (pids[i] == 0) {
(void)setpgid(0, g_pgrp);
stress_parent_died_alarm();
(void)sched_settings_apply(true);
stress_flock_child(args, fd, bad_fd);
_exit(EXIT_SUCCESS);
}
}
stress_flock_child(args, fd, bad_fd);
rc = EXIT_SUCCESS;
reap:
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
(void)close(fd);
for (i = 0; i < MAX_FLOCK_STRESSORS; i++) {
if (pids[i] > 0) {
int status;
(void)kill(pids[i], SIGKILL);
(void)shim_waitpid(pids[i], &status, 0);
}
}
(void)shim_unlink(filename);
err:
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
(void)stress_temp_dir_rm_args(args);
return rc;
}
stressor_info_t stress_flock_info = {
.stressor = stress_flock,
.class = CLASS_FILESYSTEM | CLASS_OS,
.help = help
};
#else
stressor_info_t stress_flock_info = {
.stressor = stress_not_implemented,
.class = CLASS_FILESYSTEM | CLASS_OS,
.help = help
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hoperun_harmony/stress-ng.git
git@gitee.com:hoperun_harmony/stress-ng.git
hoperun_harmony
stress-ng
stress-ng
master

搜索帮助