This repository has been archived by the owner on Mar 21, 2020. It is now read-only.
forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstress-dentry.c
322 lines (273 loc) · 6.82 KB
/
stress-dentry.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
/*
* Copyright (C) 2013-2018 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 <[email protected]> and attempts to be
* backwardly compatible with the stress tool by Amos Waterland
* <[email protected]> but has more stress tests and more
* functionality.
*
*/
#include "stress-ng.h"
#define ORDER_FORWARD 0x00
#define ORDER_REVERSE 0x01
#define ORDER_STRIDE 0x02
#define ORDER_RANDOM 0x03
#define ORDER_NONE 0x04
typedef struct {
const char *name;
const uint8_t denty_order;
} dentry_removal_t;
static const dentry_removal_t dentry_removals[] = {
{ "forward", ORDER_FORWARD },
{ "reverse", ORDER_REVERSE },
{ "stride", ORDER_STRIDE },
{ "random", ORDER_RANDOM },
{ NULL, ORDER_NONE },
};
int stress_set_dentries(const char *opt)
{
uint64_t dentries;
dentries = get_uint64(opt);
check_range("dentries", dentries,
MIN_DENTRIES, MAX_DENTRIES);
return set_setting("dentries", TYPE_ID_UINT64, &dentries);
}
/*
* stress_set_dentry_order()
* set dentry ordering from give option
*/
int stress_set_dentry_order(const char *opt)
{
const dentry_removal_t *dr;
for (dr = dentry_removals; dr->name; dr++) {
if (!strcmp(dr->name, opt)) {
uint8_t dentry_order = dr->denty_order;
set_setting("dentry-order",
TYPE_ID_UINT8, &dentry_order);
return 0;
}
}
(void)fprintf(stderr, "dentry-order must be one of:");
for (dr = dentry_removals; dr->name; dr++) {
(void)fprintf(stderr, " %s", dr->name);
}
(void)fprintf(stderr, "\n");
return -1;
}
/*
* stress_dentry_unlink()
* remove all dentries
*/
static void stress_dentry_unlink(
const args_t *args,
const uint64_t n,
const uint8_t dentry_order)
{
uint64_t i, j;
uint64_t prime;
const uint8_t ord = (dentry_order == ORDER_RANDOM) ?
mwc32() % 3 : dentry_order;
switch (ord) {
case ORDER_REVERSE:
for (i = 0; i < n; i++) {
char path[PATH_MAX];
uint64_t gray_code;
j = (n - 1) - i;
gray_code = (j >> 1) ^ j;
stress_temp_filename_args(args,
path, sizeof(path), gray_code * 2);
(void)unlink(path);
}
break;
case ORDER_STRIDE:
prime = stress_get_prime64(n);
for (i = 0, j = prime; i < n; i++, j += prime) {
char path[PATH_MAX];
uint64_t k = j % n;
uint64_t gray_code = (k >> 1) ^ k;
stress_temp_filename_args(args,
path, sizeof(path), gray_code * 2);
(void)unlink(path);
}
break;
case ORDER_FORWARD:
default:
for (i = 0; i < n; i++) {
char path[PATH_MAX];
uint64_t gray_code = (i >> 1) ^ i;
stress_temp_filename_args(args,
path, sizeof(path), gray_code * 2);
(void)unlink(path);
}
break;
}
sync();
}
/*
* stress_dentry_misc()
* misc ways to exercise a directory file
*/
static void stress_dentry_misc(const char *path)
{
int fd, flags = O_RDONLY, ret;
off_t offset;
struct stat statbuf;
struct timeval timeout;
fd_set rdfds;
char buf[1024];
#if defined(O_DIRECTORY)
flags |= O_DIRECTORY;
#endif
fd = open(path, flags);
if (fd < 0)
return;
ret = fstat(fd, &statbuf);
(void)ret;
/* Not really legal */
offset = lseek(fd, 0, SEEK_END);
(void)offset;
offset = lseek(fd, 0, SEEK_SET);
(void)offset;
/* Not allowed */
ret = read(fd, buf, sizeof(buf));
(void)ret;
FD_ZERO(&rdfds);
FD_SET(fd, &rdfds);
timeout.tv_sec = 0;
timeout.tv_usec = 0;
ret = select(fd + 1, &rdfds, NULL, NULL, &timeout);
(void)ret;
#if defined(LOCK_EX) && defined(LOCK_UN)
/*
* flock capable systems..
*/
ret = flock(fd, LOCK_EX);
if (ret == 0) {
ret = flock(fd, LOCK_UN);
(void)ret;
}
#elif defined(F_SETLKW) && defined(F_RDLCK) && defined(F_UNLCK)
/*
* ..otherwise fall back to fcntl (e.g. Solaris)
*/
{
struct flock lock;
lock.l_start = 0;
lock.l_len = 0;
lock.l_whence = SEEK_SET;
lock.l_type = F_RDLCK;
ret = fcntl(fd, F_SETLKW, &lock);
if (ret == 0) {
lock.l_start = 0;
lock.l_len = 0;
lock.l_whence = SEEK_SET;
lock.l_type = F_UNLCK;
ret = fcntl(fd, F_SETLKW, &lock);
(void)ret;
}
}
#endif
#if defined(F_GETFL)
{
int flag;
ret = fcntl(fd, F_GETFL, &flag);
(void)ret;
}
#endif
(void)close(fd);
}
/*
* stress_dentry
* stress dentries. file names are based
* on a gray-coded value multiplied by two.
* Even numbered files exist, odd don't exist.
*/
static int stress_dentry(const args_t *args)
{
int ret;
uint64_t dentries = DEFAULT_DENTRIES;
uint8_t dentry_order = ORDER_RANDOM;
char dir_path[PATH_MAX];
if (!get_setting("dentries", &dentries)) {
if (g_opt_flags & OPT_FLAGS_MAXIMIZE)
dentries = MAX_DENTRIES;
if (g_opt_flags & OPT_FLAGS_MINIMIZE)
dentries = MIN_DENTRIES;
}
(void)get_setting("dentry-order", &dentry_order);
ret = stress_temp_dir_mk_args(args);
if (ret < 0)
return exit_status(-ret);
(void)stress_temp_dir(dir_path, sizeof(dir_path), args->name, args->pid, args->instance);
do {
uint64_t i, n = dentries;
char path[PATH_MAX];
for (i = 0; i < n; i++) {
const uint64_t gray_code = (i >> 1) ^ i;
int fd;
stress_temp_filename_args(args,
path, sizeof(path), gray_code * 2);
if ((fd = open(path, O_CREAT | O_RDWR,
S_IRUSR | S_IWUSR)) < 0) {
if (errno != ENOSPC)
pr_fail_err("open");
n = i;
break;
}
(void)close(fd);
if (!keep_stressing())
goto abort;
inc_counter(args);
}
stress_dentry_misc(dir_path);
/*
* Now look up some bogus names to exercise
* lookup failures
*/
for (i = 0; i < n; i++) {
const uint64_t gray_code = (i >> 1) ^ i;
int rc;
if (!keep_stressing())
goto abort;
stress_temp_filename_args(args,
path, sizeof(path), (gray_code * 2) + 1);
/* The following should fail, ignore error return */
rc = access(path, R_OK);
(void)rc;
}
/*
* And remove
*/
stress_dentry_unlink(args, n, dentry_order);
stress_dentry_misc(dir_path);
if (!g_keep_stressing_flag)
break;
sync();
} while (keep_stressing());
abort:
/* force unlink of all files */
pr_tidy("%s: removing %" PRIu64 " entries\n",
args->name, dentries);
stress_dentry_unlink(args, dentries, dentry_order);
(void)stress_temp_dir_rm_args(args);
return EXIT_SUCCESS;
}
stressor_info_t stress_dentry_info = {
.stressor = stress_dentry,
.class = CLASS_FILESYSTEM | CLASS_OS
};