forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stress-fiemap.c
271 lines (242 loc) · 6.64 KB
/
stress-fiemap.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
/*
* Copyright (C) 2016-2017 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"
#if defined(__linux__) && defined(FS_IOC_FIEMAP)
#include <linux/fs.h>
#include <linux/fiemap.h>
#endif
#define MAX_FIEMAP_PROCS (4) /* Number of FIEMAP stressors */
void stress_set_fiemap_bytes(const char *opt)
{
uint64_t fiemap_bytes;
fiemap_bytes = get_uint64_byte_filesystem(opt, 1);
check_range_bytes("fiemap-bytes", fiemap_bytes,
MIN_FIEMAP_SIZE, MAX_FIEMAP_SIZE);
set_setting("fiemap-bytes", TYPE_ID_UINT64, &fiemap_bytes);
}
#if defined(__linux__) && defined(FS_IOC_FIEMAP)
/*
* stress_fiemap_writer()
* write data in random places and punch holes
* in data in random places to try and maximize
* extents in the file
*/
static int stress_fiemap_writer(
const args_t *args,
const int fd,
const uint64_t fiemap_bytes,
uint64_t *counters)
{
uint8_t buf[1];
uint64_t len = (off_t)fiemap_bytes - sizeof(buf);
uint64_t counter;
int rc = EXIT_FAILURE;
#if defined(FALLOC_FL_PUNCH_HOLE) && \
defined(FALLOC_FL_KEEP_SIZE)
bool punch_hole = true;
#endif
stress_strnrnd((char *)buf, sizeof(buf));
do {
uint64_t offset;
size_t i;
counter = 0;
offset = (mwc64() % len) & ~0x1fff;
if (lseek(fd, (off_t)offset, SEEK_SET) < 0)
break;
if (write(fd, buf, sizeof(buf)) < 0) {
if ((errno != EAGAIN) && (errno != EINTR)) {
pr_fail_err("write");
goto tidy;
}
}
#if defined(FALLOC_FL_PUNCH_HOLE) && \
defined(FALLOC_FL_KEEP_SIZE)
if (!punch_hole)
continue;
offset = mwc64() % len;
if (shim_fallocate(fd, FALLOC_FL_PUNCH_HOLE |
FALLOC_FL_KEEP_SIZE, offset, 8192) < 0) {
if (errno == EOPNOTSUPP)
punch_hole = false;
}
#endif
for (i = 0; i < MAX_FIEMAP_PROCS; i++)
counter += counters[i];
} while (keep_stressing());
rc = EXIT_SUCCESS;
tidy:
(void)close(fd);
return rc;
}
/*
* stress_fiemap_ioctl()
* exercise the FIEMAP ioctl
*/
static void stress_fiemap_ioctl(const args_t *args, int fd)
{
do {
struct fiemap *fiemap, *tmp;
size_t extents_size;
fiemap = (struct fiemap *)calloc(1, sizeof(struct fiemap));
if (!fiemap) {
pr_err("Out of memory allocating fiemap\n");
break;
}
fiemap->fm_length = ~0;
/* Find out how many extents there are */
if (ioctl(fd, FS_IOC_FIEMAP, fiemap) < 0) {
pr_fail_err("FS_IOC_FIEMAP ioctl()");
free(fiemap);
break;
}
/* Read in the extents */
extents_size = sizeof(struct fiemap_extent) *
(fiemap->fm_mapped_extents);
/* Resize fiemap to allow us to read in the extents */
tmp = (struct fiemap *)realloc(fiemap,
sizeof(struct fiemap) + extents_size);
if (!tmp) {
pr_fail_err("FS_IOC_FIEMAP ioctl()");
free(fiemap);
break;
}
fiemap = tmp;
(void)memset(fiemap->fm_extents, 0, extents_size);
fiemap->fm_extent_count = fiemap->fm_mapped_extents;
fiemap->fm_mapped_extents = 0;
if (ioctl(fd, FS_IOC_FIEMAP, fiemap) < 0) {
pr_fail_err("FS_IOC_FIEMAP ioctl()");
free(fiemap);
break;
}
free(fiemap);
inc_counter(args);
} while (keep_stressing());
}
/*
* stress_fiemap_spawn()
* helper to spawn off fiemap stressor
*/
static inline pid_t stress_fiemap_spawn(
const args_t *args,
const int fd)
{
pid_t pid;
pid = fork();
if (pid < 0)
return -1;
if (pid == 0) {
(void)setpgid(0, g_pgrp);
stress_parent_died_alarm();
stress_fiemap_ioctl(args, fd);
exit(EXIT_SUCCESS);
}
(void)setpgid(pid, g_pgrp);
return pid;
}
/*
* stress_fiemap
* stress fiemap IOCTL
*/
int stress_fiemap(const args_t *args)
{
pid_t pids[MAX_FIEMAP_PROCS];
int ret, fd, rc = EXIT_FAILURE, status;
char filename[PATH_MAX];
size_t i;
const size_t counters_sz = sizeof(uint64_t) * MAX_FIEMAP_PROCS;
uint64_t *counters;
uint64_t ops_per_proc = args->max_ops / MAX_FIEMAP_PROCS;
uint64_t ops_remaining = args->max_ops % MAX_FIEMAP_PROCS;
uint64_t fiemap_bytes = DEFAULT_FIEMAP_SIZE;
if (!get_setting("fiemap-bytes", &fiemap_bytes)) {
if (g_opt_flags & OPT_FLAGS_MAXIMIZE)
fiemap_bytes = MAX_SEEK_SIZE;
if (g_opt_flags & OPT_FLAGS_MINIMIZE)
fiemap_bytes = MIN_SEEK_SIZE;
}
fiemap_bytes /= args->num_instances;
if (fiemap_bytes < MIN_FIEMAP_SIZE)
fiemap_bytes = MIN_FIEMAP_SIZE;
/* We need some share memory for counter accounting */
counters = mmap(NULL, counters_sz, PROT_READ | PROT_WRITE,
MAP_SHARED | MAP_ANONYMOUS, -1, 0);
if (counters == MAP_FAILED) {
pr_err("%s: mmap failed: errno=%d (%s)\n",
args->name, errno, strerror(errno));
return EXIT_NO_RESOURCE;
}
(void)memset(counters, 0, counters_sz);
ret = stress_temp_dir_mk_args(args);
if (ret < 0) {
rc = exit_status(-ret);
goto clean;
}
(void)stress_temp_filename_args(args,
filename, sizeof(filename), mwc32());
(void)umask(0077);
if ((fd = open(filename, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR)) < 0) {
rc = exit_status(errno);
pr_fail_err("open");
goto clean;
}
(void)unlink(filename);
for (i = 0; i < MAX_FIEMAP_PROCS; i++) {
uint64_t proc_max_ops = ops_per_proc +
((i == 0) ? ops_remaining : 0);
const args_t new_args = {
.counter = &counters[i],
.name = args->name,
.max_ops = proc_max_ops,
.instance = args->instance,
.num_instances = args->num_instances,
.pid = args->pid,
.ppid = args->ppid,
.page_size = args->page_size
};
pids[i] = stress_fiemap_spawn(&new_args, fd);
if (pids[i] < 0)
goto fail;
}
rc = stress_fiemap_writer(args, fd, fiemap_bytes, counters);
/* And reap stressors */
for (i = 0; i < MAX_FIEMAP_PROCS; i++) {
(void)kill(pids[i], SIGKILL);
(void)waitpid(pids[i], &status, 0);
(*args->counter) += counters[i];
}
fail:
(void)close(fd);
clean:
(void)munmap(counters, counters_sz);
(void)stress_temp_dir_rm_args(args);
return rc;
}
#else
int stress_fiemap(const args_t *args)
{
return stress_not_implemented(args);
}
#endif