forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstress-bind-mount.c
196 lines (172 loc) · 5.07 KB
/
stress-bind-mount.c
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
/*
* 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"
#if defined(HAVE_SYS_MOUNT_H)
#include <sys/mount.h>
#endif
static const stress_help_t help[] = {
{ NULL, "bind-mount N", "start N workers exercising bind mounts" },
{ NULL, "bind-mount-ops N", "stop after N bogo bind mount operations" },
{ NULL, NULL, NULL }
};
#if defined(__linux__) && \
defined(MS_BIND) && \
defined(MS_REC) && \
defined(HAVE_CLONE) && \
defined(CLONE_NEWUSER) && \
defined(CLONE_NEWNS) && \
defined(CLONE_VM)
#define CLONE_STACK_SIZE (128*1024)
static void MLOCKED_TEXT stress_bind_mount_child_handler(int signum)
{
if (signum == SIGALRM) {
keep_stressing_set_flag(false);
return;
}
_exit(0);
}
/*
* stress_bind_mount_child()
* aggressively perform bind mounts, this can force out of memory
* situations
*/
static int stress_bind_mount_child(void *parg)
{
const stress_args_t *args = ((stress_pthread_args_t *)parg)->args;
char path[PATH_MAX];
int ret;
if (stress_sighandler(args->name, SIGALRM,
stress_bind_mount_child_handler, NULL) < 0) {
pr_fail("%s: SIGALRM sighandler failed, errno=%d (%s)\n",
args->name, errno, strerror(errno));
return EXIT_FAILURE;
}
if (stress_sighandler(args->name, SIGSEGV,
stress_bind_mount_child_handler, NULL) < 0) {
pr_fail("%s: SIGSEGV sighandler failed, errno=%d (%s)\n",
args->name, errno, strerror(errno));
return EXIT_FAILURE;
}
(void)setpgid(0, g_pgrp);
stress_parent_died_alarm();
(void)stress_temp_dir(path, sizeof(path), args->name, getpid(), args->instance);
ret = mkdir(path, S_IRUSR | S_IRWXU);
if (ret < 0) {
(void)shim_rmdir(path);
pr_err("%s: mkdir %s failed, errno=%d (%s)\n",
args->name, path, errno, strerror(errno));
return EXIT_NO_RESOURCE;
}
do {
int rc, retries;
DIR *dir;
struct dirent *d;
rc = mount("/", path, "", MS_BIND | MS_REC | MS_RDONLY, 0);
if (rc < 0) {
if (errno != ENOSPC)
pr_fail("%s: bind mount failed, errno=%d (%s)\n",
args->name, errno, strerror(errno));
break;
}
/*
* Check if we can stat the files in the bound mount path
*/
dir = opendir("/");
if (!dir)
goto bind_umount;
while ((d = readdir(dir)) != NULL) {
char bindpath[PATH_MAX + sizeof(d->d_name) + 1];
const char *name = d->d_name;
struct stat statbuf;
if (*name == '.')
continue;
(void)snprintf(bindpath, sizeof(bindpath), "%s/%s", path, name);
rc = stat(bindpath, &statbuf);
if (rc < 0) {
pr_fail("%s: failed to stat bind mounted file %s, errno=%d (%s)\n",
args->name, bindpath, errno, strerror(errno));
}
}
(void)closedir(dir);
bind_umount:
for (retries = 0; retries < 15; retries++) {
#if defined(HAVE_UMOUNT2) && \
defined(MNT_DETACH)
rc = umount2(path, MNT_DETACH);
if (rc == 0)
break;
(void)shim_usleep(50000);
#else
/*
* The following fails with -EBUSY, but try it anyhow
* just to make the kernel work harder
*/
rc = umount(path);
if (rc == 0)
break;
#endif
}
inc_counter(args);
} while (keep_stressing_flag() &&
(!args->max_ops || (get_counter(args) < args->max_ops)));
(void)shim_rmdir(path);
return 0;
}
/*
* stress_bind_mount()
* stress bind mounting
*/
static int stress_bind_mount(const stress_args_t *args)
{
int pid = 0, status;
stress_pthread_args_t pargs = { args, NULL, 0 };
stress_set_proc_state(args->name, STRESS_STATE_RUN);
do {
static char stack[CLONE_STACK_SIZE];
char *stack_top = (char *)stress_get_stack_top((void *)stack, CLONE_STACK_SIZE);
(void)memset(stack, 0, sizeof stack);
pid = clone(stress_bind_mount_child,
stress_align_stack(stack_top),
CLONE_NEWUSER | CLONE_NEWNS | CLONE_VM | SIGCHLD,
(void *)&pargs, 0);
if (pid < 0) {
int rc = exit_status(errno);
pr_fail("%s: clone failed, errno=%d (%s)\n",
args->name, errno, strerror(errno));
return rc;
}
VOID_RET(int, shim_waitpid(pid, &status, 0));
} while (keep_stressing(args));
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
return EXIT_SUCCESS;
}
stressor_info_t stress_bind_mount_info = {
.stressor = stress_bind_mount,
.class = CLASS_FILESYSTEM | CLASS_OS | CLASS_PATHOLOGICAL,
.verify = VERIFY_ALWAYS,
.help = help
};
#else
stressor_info_t stress_bind_mount_info = {
.stressor = stress_not_implemented,
.class = CLASS_FILESYSTEM | CLASS_OS | CLASS_PATHOLOGICAL,
.help = help
};
#endif