forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstress-dir.c
366 lines (314 loc) · 7.92 KB
/
stress-dir.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
/*
* 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"
#define MIN_DIR_DIRS (64)
#define MAX_DIR_DIRS (65536)
#define DEFAULT_DIR_DIRS (8192)
#if defined(HAVE_LIBGEN_H)
#include <libgen.h>
#endif
static const stress_help_t help[] = {
{ NULL, "dir N", "start N directory thrashing stressors" },
{ NULL, "dir-ops N", "stop after N directory bogo operations" },
{ NULL, "dir-dirs N", "select number of directories to exercise dir on" },
{ NULL, NULL, NULL }
};
/*
* stress_set_dir_dirs()
* set number of dir directories from given option string
*/
static int stress_set_dir_dirs(const char *opt)
{
uint64_t dir_dirs;
dir_dirs = stress_get_uint64(opt);
stress_check_range("dir-dirs", dir_dirs,
MIN_DIR_DIRS, MAX_DIR_DIRS);
return stress_set_setting("dir-dirs", TYPE_ID_UINT64, &dir_dirs);
}
#if defined(__DragonFly__)
#define d_reclen d_namlen
#endif
#if defined(HAVE_MODE_T)
typedef mode_t shim_mode_t;
#else
typedef int shim_mode_t;
#endif
/*
* stress_dir_sync()
* attempt to sync a directory
*/
static inline void stress_dir_sync(const int dir_fd)
{
#if defined(O_DIRECTORY)
/*
* The interesting part of fsync is that in
* theory we can fsync a read only file and
* this could be a directory too. So try and
* sync.
*/
(void)shim_fsync(dir_fd);
#else
(void)dir_fd;
#endif
}
/*
* stress_dir_flock()
* naive exercising of a flock on a directory fd
*/
static inline void stress_dir_flock(const int dir_fd)
{
#if defined(HAVE_FLOCK) && \
defined(LOCK_EX) && \
defined(LOCK_UN) && \
defined(O_DIRECTORY)
if (dir_fd >= 0) {
if (flock(dir_fd, LOCK_EX) == 0)
(void)flock(dir_fd, LOCK_UN);
}
#else
(void)dir_fd;
#endif
}
/*
* stress_dir_truncate()
* exercise illegal truncate call on directory fd
*/
static inline void stress_dir_truncate(const char *path, const int dir_fd)
{
if (dir_fd >= 0) {
/* Invalid ftruncate */
VOID_RET(int, ftruncate(dir_fd, 0));
}
/* Invalid truncate */
VOID_RET(int, truncate(path, 0));
}
/*
* stress_dir_mmap()
* attempt to mmap a directory
*/
static inline void stress_dir_mmap(const int dir_fd, const size_t page_size)
{
#if defined(O_DIRECTORY)
if (dir_fd >= 0) {
void *ptr;
ptr = mmap(NULL, page_size, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, dir_fd, 0);
if (ptr != MAP_FAILED)
(void)munmap(ptr, page_size);
}
#else
(void)dir_fd;
(void)page_size;
#endif
}
/*
* stress_dir_read()
* read and stat all dentries
*/
static void stress_dir_read(
const stress_args_t *args,
const char *path)
{
DIR *dp;
struct dirent *de;
dp = opendir(path);
if (!dp)
return;
while (keep_stressing(args) && ((de = readdir(dp)) != NULL)) {
char filename[PATH_MAX];
struct stat statbuf;
if (de->d_reclen == 0) {
pr_fail("%s: read a zero sized directory entry\n", args->name);
break;
}
stress_mk_filename(filename, sizeof(filename), path, de->d_name);
(void)stat(filename, &statbuf);
}
(void)closedir(dp);
}
/*
* stress_dir_tidy()
* remove all dentries
*/
static void stress_dir_tidy(
const stress_args_t *args,
const uint64_t n)
{
uint64_t i;
for (i = 0; i < n; i++) {
char path[PATH_MAX];
uint64_t gray_code = (i >> 1) ^ i;
(void)stress_temp_filename_args(args,
path, sizeof(path), gray_code);
(void)shim_rmdir(path);
}
}
/*
* stress_mkdir()
* exercise mdir/mkdirat calls
*/
static int stress_mkdir(const int dir_fd, const char *path, const int mode)
{
int ret;
#if defined(HAVE_MKDIRAT)
/*
* 50% of the time use mkdirat rather than mkdir
*/
if ((dir_fd >= 0) && stress_mwc1()) {
char tmp[PATH_MAX], *filename;
(void)shim_strlcpy(tmp, path, sizeof(tmp));
filename = basename(tmp);
ret = mkdirat(dir_fd, filename, (shim_mode_t)mode);
} else {
ret = mkdir(path, (shim_mode_t)mode);
}
#else
ret = mkdir(path, mode);
#endif
(void)dir_fd;
return ret;
}
/*
* stress_invalid_mkdir()
* exercise invalid mkdir path
*/
static void stress_invalid_mkdir(const char *path)
{
int ret;
char filename[PATH_MAX + 16];
size_t len;
(void)shim_strlcpy(filename, path, sizeof(filename));
(void)shim_strlcat(filename, "/", sizeof(filename));
len = strlen(filename);
(void)stress_strnrnd(filename + len, sizeof(filename) - len);
ret = mkdir(filename, S_IRUSR | S_IWUSR);
if (ret == 0)
(void)shim_rmdir(filename);
}
/*
* stress_invalid_mkdirat()
* exercise invalid mkdirat fd
*/
static void stress_invalid_mkdirat(const int bad_fd)
{
#if defined(HAVE_MKDIRAT)
VOID_RET(int, mkdirat(bad_fd, "bad", S_IRUSR | S_IWUSR));
#else
(void)bad_fd;
#endif
}
/*
* stress_invalid_rmdir()
* exercise invalid rmdir paths
*/
static void stress_invalid_rmdir(const char *path)
{
char filename[PATH_MAX + 16];
(void)shim_strlcpy(filename, path, sizeof(filename));
/* remove . - exercise EINVAL error */
(void)shim_strlcat(filename, "/.", sizeof(filename));
VOID_RET(int, shim_rmdir(filename));
/* remove /.. - exercise ENOTEMPTY error */
(void)shim_strlcat(filename, ".", sizeof(filename));
VOID_RET(int, shim_rmdir(filename));
/* remove / - exercise EBUSY error */
VOID_RET(int, shim_rmdir("/"));
}
/*
* stress_dir
* stress directory mkdir and rmdir
*/
static int stress_dir(const stress_args_t *args)
{
int ret;
uint64_t dir_dirs = DEFAULT_DIR_DIRS;
char pathname[PATH_MAX];
int dir_fd = -1;
const int bad_fd = stress_get_bad_fd();
stress_temp_dir(pathname, sizeof(pathname), args->name, args->pid, args->instance);
(void)stress_get_setting("dir-dirs", &dir_dirs);
ret = stress_temp_dir_mk_args(args);
if (ret < 0)
return exit_status(-ret);
#if defined(O_DIRECTORY)
dir_fd = open(pathname, O_DIRECTORY | O_RDONLY);
#endif
stress_set_proc_state(args->name, STRESS_STATE_RUN);
do {
uint64_t i, n = dir_dirs;
stress_dir_mmap(dir_fd, args->page_size);
stress_dir_flock(dir_fd);
stress_dir_truncate(pathname, dir_fd);
for (i = 0; keep_stressing(args) && (i < n); i++) {
char path[PATH_MAX];
uint64_t gray_code = (i >> 1) ^ i;
(void)stress_temp_filename_args(args,
path, sizeof(path), gray_code);
(void)shim_force_rmdir(path);
if (stress_mkdir(dir_fd, path, S_IRUSR | S_IWUSR) < 0) {
if ((errno != ENOSPC) &&
(errno != ENOMEM) &&
(errno != EMLINK)) {
pr_fail("%s: mkdir %s failed, errno=%d (%s)\n",
args->name, path, errno, strerror(errno));
break;
}
}
inc_counter(args);
}
stress_invalid_mkdir(pathname);
stress_invalid_rmdir(pathname);
stress_invalid_mkdirat(bad_fd);
if (!keep_stressing(args)) {
stress_dir_tidy(args, i);
break;
}
stress_dir_read(args, pathname);
stress_dir_tidy(args, i);
if (!keep_stressing(args))
break;
stress_dir_sync(dir_fd);
(void)sync();
inc_counter(args);
} while (keep_stressing(args));
/* exercise invalid path */
{
int rmret;
rmret = shim_rmdir("");
(void)rmret;
}
#if defined(O_DIRECTORY)
if (dir_fd >= 0)
(void)close(dir_fd);
#endif
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
(void)stress_temp_dir_rm_args(args);
return ret;
}
static const stress_opt_set_func_t opt_set_funcs[] = {
{ OPT_dir_dirs, stress_set_dir_dirs },
{ 0, NULL }
};
stressor_info_t stress_dir_info = {
.stressor = stress_dir,
.class = CLASS_FILESYSTEM | CLASS_OS,
.opt_set_funcs = opt_set_funcs,
.verify = VERIFY_ALWAYS,
.help = help
};