-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathcore-madvise.c
More file actions
430 lines (407 loc) · 8.46 KB
/
core-madvise.c
File metadata and controls
430 lines (407 loc) · 8.46 KB
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/*
* Copyright (C) 2013-2021 Canonical, Ltd.
* Copyright (C) 2022-2026 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"
#include "core-madvise.h"
/*
* madvise options
*/
#if defined(HAVE_MADVISE)
const int madvise_options[] = {
#if defined(MADV_NORMAL)
MADV_NORMAL,
#else
0,
#endif
#if defined(MADV_RANDOM)
MADV_RANDOM,
#endif
#if defined(MADV_SEQUENTIAL)
MADV_SEQUENTIAL,
#endif
#if defined(MADV_WILLNEED)
MADV_WILLNEED,
#endif
#if defined(MADV_DONTNEED)
MADV_DONTNEED,
#endif
#if defined(MADV_REMOVE)
MADV_REMOVE,
#endif
#if defined(MADV_DONTFORK)
MADV_DONTFORK,
#endif
#if defined(MADV_DOFORK)
MADV_DOFORK,
#endif
#if defined(MADV_MERGEABLE)
MADV_MERGEABLE,
#endif
#if defined(MADV_UNMERGEABLE)
MADV_UNMERGEABLE,
#endif
#if defined(MADV_SOFT_OFFLINE)
MADV_SOFT_OFFLINE,
#endif
#if defined(MADV_HUGEPAGE)
MADV_HUGEPAGE,
#endif
#if defined(MADV_NOHUGEPAGE)
MADV_NOHUGEPAGE,
#endif
#if defined(MADV_DONTDUMP)
MADV_DONTDUMP,
#endif
#if defined(MADV_DODUMP)
MADV_DODUMP,
#endif
#if defined(MADV_FREE)
MADV_FREE,
#endif
#if defined(MADV_HWPOISON)
MADV_HWPOISON,
#endif
#if defined(MADV_WIPEONFORK)
MADV_WIPEONFORK,
#endif
#if defined(MADV_KEEPONFORK)
MADV_KEEPONFORK,
#endif
#if defined(MADV_INHERIT_ZERO)
MADV_INHERIT_ZERO,
#endif
#if defined(MADV_COLD)
MADV_COLD,
#endif
#if defined(MADV_PAGEOUT)
MADV_PAGEOUT,
#endif
/* Linux 5.14 */
#if defined(MADV_POPULATE_READ)
MADV_POPULATE_READ,
#endif
/* Linux 5.14 */
#if defined(MADV_POPULATE_WRITE)
MADV_POPULATE_WRITE,
#endif
#if defined(MADV_DONTNEED_LOCKED)
MADV_DONTNEED_LOCKED,
#endif
/* Linux 6.0 */
#if defined(MADV_COLLAPSE)
MADV_COLLAPSE,
#endif
/* FreeBSD */
#if defined(MADV_AUTOSYNC)
MADV_AUTOSYNC,
#endif
/* FreeBSD and DragonFlyBSD */
#if defined(MADV_CORE)
MADV_CORE,
#endif
/* FreeBSD */
#if defined(MADV_PROTECT)
MADV_PROTECT,
#endif
/* Linux 6.12 */
#if defined(MADV_GUARD_INSTALL) && \
defined(MADV_NORMAL)
/* This makes a page non writable, disable it to avoid SIGSEGVs */
/* MADV_GUARD_INSTALL, */
#endif
#if defined(MADV_GUARD_REMOVE)
/* Should always fail as MADV_GUARD_INSTALL is not used */
MADV_GUARD_REMOVE,
#endif
/* OpenBSD */
#if defined(MADV_SPACEAVAIL)
MADV_SPACEAVAIL,
#endif
/* OS X */
#if defined(MADV_ZERO_WIRED_PAGES)
MADV_ZERO_WIRED_PAGES,
#endif
/* Solaris */
#if defined(MADV_ACCESS_DEFAULT)
MADV_ACCESS_DEFAULT,
#endif
/* Solaris */
#if defined(MADV_ACCESS_LWP)
MADV_ACCESS_LWP,
#endif
/* Solaris */
#if defined(MADV_ACCESS_MANY)
MADV_ACCESS_MANY,
#endif
/* DragonFlyBSD */
#if defined(MADV_INVAL)
MADV_INVAL,
#endif
/* DragonFlyBSD */
#if defined(MADV_NOCORE)
MADV_NOCORE,
#endif
};
const size_t madvise_options_elements = SIZEOF_ARRAY(madvise_options);
#endif
#if defined(HAVE_MADVISE)
static const int madvise_random_options[] = {
#if defined(MADV_NORMAL)
MADV_NORMAL,
#endif
#if defined(MADV_RANDOM)
MADV_RANDOM,
#endif
#if defined(MADV_SEQUENTIAL)
MADV_SEQUENTIAL,
#endif
#if defined(MADV_WILLNEED)
MADV_WILLNEED,
#endif
/*
* Don't use DONTNEED as this can zero fill
* pages that don't have backing store which
* trips checksum errors when we check that
* the pages are sane.
*
#if defined(MADV_DONTNEED)
MADV_DONTNEED,
#endif
*/
#if defined(MADV_DONTFORK)
MADV_DONTFORK,
#endif
#if defined(MADV_DOFORK)
MADV_DOFORK,
#endif
#if defined(MADV_MERGEABLE)
MADV_MERGEABLE,
#endif
#if defined(MADV_UNMERGEABLE)
MADV_UNMERGEABLE,
#endif
#if defined(MADV_HUGEPAGE)
MADV_HUGEPAGE,
#endif
#if defined(MADV_NOHUGEPAGE)
MADV_NOHUGEPAGE,
#endif
#if defined(MADV_DONTDUMP)
MADV_DONTDUMP,
#endif
#if defined(MADV_DODUMP)
MADV_DODUMP,
#endif
#if defined(MADV_COLD)
MADV_COLD,
#endif
#if defined(MADV_PAGEOUT)
MADV_PAGEOUT,
#endif
/*
* Don't use MADV_FREE as this can zero fill
* pages that don't have backing store which
* trips checksum errors when we check that
* the pages are sane.
*
#if defined(MADV_FREE)
MADV_FREE
#endif
*/
/* Linux 5.14 */
#if defined(MADV_POPULATE_READ)
MADV_POPULATE_READ,
#endif
/* Linux 5.14 */
#if defined(MADV_POPULATE_WRITE)
MADV_POPULATE_WRITE,
#endif
};
#endif
/*
* stress_advice_check()
* return MADV_NORMAL if advice should be ignored
* otherwise retuen advice
*/
int stress_advice_check(const int advice)
{
switch (advice) {
#if defined(MADV_GUARD_INSTALL)
case MADV_GUARD_INSTALL:
return MADV_NORMAL;
#endif
default:
break;
}
return advice;
}
/*
* stress_madvise_randomize()
* apply random madvise setting to a memory region
*/
int stress_madvise_randomize(void *addr, const size_t length)
{
#if defined(HAVE_MADVISE)
if (g_opt_flags & OPT_FLAGS_MMAP_MADVISE) {
const int i = stress_mwc32modn((uint32_t)SIZEOF_ARRAY(madvise_random_options));
const int advice = stress_advice_check(madvise_random_options[i]);
return madvise(addr, length, advice);
}
#else
UNEXPECTED
(void)addr;
(void)length;
#endif
return 0;
}
/*
* stress_madvise_random()
* apply MADV_RANDOM for page read order hint
*/
int stress_madvise_random(void *addr, const size_t length)
{
#if defined(HAVE_MADVISE) && \
defined(MADV_RANDOM)
return madvise(addr, length, MADV_RANDOM);
#else
(void)addr;
(void)length;
return 0;
#endif
}
/*
* stress_madvise_mergeable()
* apply MADV_MERGEABLE for kernel same page merging
*/
int stress_madvise_mergeable(void *addr, const size_t length)
{
#if defined(HAVE_MADVISE) && \
defined(MADV_MERGEABLE)
return madvise(addr, length, MADV_MERGEABLE);
#else
(void)addr;
(void)length;
return 0;
#endif
}
/*
* stress_madvise_collapse()
* where possible collapse mapping into THP
*/
int stress_madvise_collapse(void *addr, size_t length)
{
#if defined(HAVE_MADVISE) && \
defined(MADV_COLLAPSE)
return madvise(addr, length, MADV_COLLAPSE);
#else
(void)addr;
(void)length;
return 0;
#endif
}
/*
* stress_madvise_willneed()
* where possible fetch pages early
*/
int stress_madvise_willneed(void *addr, size_t length)
{
#if defined(HAVE_MADVISE) && \
defined(MADV_WILLNEED)
return madvise(addr, length, MADV_WILLNEED);
#else
(void)addr;
(void)length;
return 0;
#endif
}
/*
* stress_madvise_nohugepage()
* apply MADV_NOHUGEPAGE to force as many PTEs as possible
*/
int stress_madvise_nohugepage(void *addr, const size_t length)
{
#if defined(HAVE_MADVISE) && \
defined(MADV_NOHUGEPAGE)
return madvise(addr, length, MADV_NOHUGEPAGE);
#else
(void)addr;
(void)length;
return 0;
#endif
}
/*
* stress_madvise_pid_all_pages()
* apply madvise advise to all pages in a progress
*/
void stress_madvise_pid_all_pages(
const pid_t pid,
const int *advice,
const size_t n_advice)
{
#if defined(HAVE_MADVISE) && \
defined(__linux__)
FILE *fp;
char path[4096];
char buf[4096];
(void)snprintf(path, sizeof(path), "/proc/%" PRIdMAX "/maps", (intmax_t)pid);
fp = fopen(path, "r");
if (!fp)
return;
while (fgets(buf, sizeof(buf), fp)) {
void *start, *end, *offset;
int n;
unsigned int major, minor;
uint64_t inode;
const size_t page_size = stress_memory_page_size_get();
char prot[5];
n = sscanf(buf, "%p-%p %4s %p %x:%x %" PRIu64 " %4095s\n",
&start, &end, prot, &offset, &major, &minor,
&inode, path);
if (n < 7)
continue; /* bad sscanf data */
if (start >= end)
continue; /* invalid address range */
if (n_advice == 1) {
VOID_RET(int, madvise(start, (size_t)((uint8_t *)end - (uint8_t *)start), advice[0]));
} else {
register uint8_t *ptr;
for (ptr = (uint8_t *)start; ptr < (uint8_t *)end; ptr += page_size) {
size_t idx = stress_mwc8modn((uint8_t)n_advice);
const int new_advice = advice[idx];
VOID_RET(int, madvise((void *)ptr, page_size, new_advice));
}
}
/*
* Readable protection? read pages
*/
if ((prot[0] == 'r') && (path[0] != '[')) {
register volatile uint8_t *vptr = (volatile uint8_t *)start;
while (vptr < (uint8_t *)end) {
(*vptr);
vptr += page_size;
}
}
}
(void)fclose(fp);
#else
(void)pid;
(void)advice;
(void)n_advice;
#endif
}