252 lines
5.2 KiB
C
252 lines
5.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2004 Daniel McNeil <daniel@osdl.org>
|
|
* 2004 Open Source Development Lab
|
|
*
|
|
* Copyright (c) 2004 Marty Ridgeway <mridge@us.ibm.com>
|
|
*
|
|
* Copyright (c) 2011 Cyril Hrubis <chrubis@suse.cz>
|
|
* Copyright (C) 2021 SUSE LLC Andrea Cervesato <andrea.cervesato@suse.com>
|
|
*/
|
|
|
|
/*\
|
|
* [Description]
|
|
*
|
|
* Create a sparse file and write zeroes to it using libaio while other
|
|
* processes are doing buffered reads and check if the buffer reads always see
|
|
* zero.
|
|
*/
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include "tst_test.h"
|
|
|
|
#ifdef HAVE_LIBAIO
|
|
#include <stdlib.h>
|
|
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
#include <libaio.h>
|
|
#include "common.h"
|
|
|
|
static volatile int *run_child;
|
|
|
|
static char *str_numchildren;
|
|
static char *str_writesize;
|
|
static char *str_filesize;
|
|
static char *str_numaio;
|
|
|
|
static int numchildren = 16;
|
|
static long long writesize = 1024;
|
|
static long long filesize = 100 * 1024 * 1024;
|
|
static long long alignment;
|
|
static int numaio = 16;
|
|
|
|
static void check_event(struct io_event event)
|
|
{
|
|
struct iocb *iocbp;
|
|
|
|
iocbp = (struct iocb *)event.obj;
|
|
if (event.res2 != 0 || event.res != iocbp->u.c.nbytes) {
|
|
tst_brk(TBROK, "AIO write offset %lld expected %ld got %ld",
|
|
iocbp->u.c.offset, iocbp->u.c.nbytes, event.res);
|
|
}
|
|
}
|
|
|
|
static void aiodio_sparse(char *filename, long long align, long long ws,
|
|
long long fs, int naio)
|
|
{
|
|
int fd;
|
|
int i, w;
|
|
struct iocb **iocbs;
|
|
struct iocb *iocb;
|
|
off_t offset;
|
|
io_context_t myctx;
|
|
struct io_event event;
|
|
int aio_inflight;
|
|
|
|
fd = SAFE_OPEN(filename, O_DIRECT | O_WRONLY | O_CREAT, 0666);
|
|
SAFE_FTRUNCATE(fd, fs);
|
|
|
|
memset(&myctx, 0, sizeof(myctx));
|
|
io_queue_init(naio, &myctx);
|
|
|
|
iocbs = SAFE_MALLOC(sizeof(struct iocb *) * naio);
|
|
iocb = SAFE_MALLOC(sizeof(struct iocb) * naio);
|
|
|
|
for (i = 0; i < naio; i++)
|
|
iocbs[i] = iocb + i;
|
|
|
|
offset = 0;
|
|
for (i = 0; i < naio; i++) {
|
|
void *bufptr;
|
|
|
|
bufptr = SAFE_MEMALIGN(align, ws);
|
|
memset(bufptr, 0, ws);
|
|
io_prep_pwrite(iocbs[i], fd, bufptr, ws, offset);
|
|
offset += ws;
|
|
}
|
|
|
|
w = io_submit(myctx, naio, iocbs);
|
|
if (w < 0)
|
|
tst_brk(TBROK, "io_submit: %s", tst_strerrno(-w));
|
|
|
|
aio_inflight = naio;
|
|
|
|
while (offset < fs) {
|
|
int n;
|
|
struct iocb *iocbp;
|
|
|
|
n = io_getevents(myctx, 1, 1, &event, 0);
|
|
|
|
if (-n == EINTR)
|
|
continue;
|
|
|
|
if (n != 1)
|
|
tst_brk(TBROK, "io_getevents: %s", tst_strerrno(-n));
|
|
|
|
aio_inflight--;
|
|
|
|
check_event(event);
|
|
|
|
/* start next write */
|
|
iocbp = (struct iocb *)event.obj;
|
|
|
|
io_prep_pwrite(iocbp, fd, iocbp->u.c.buf, ws, offset);
|
|
offset += ws;
|
|
w = io_submit(myctx, 1, &iocbp);
|
|
if (w < 0)
|
|
tst_brk(TBROK, "io_submit: %s", tst_strerrno(-w));
|
|
|
|
aio_inflight++;
|
|
}
|
|
|
|
while (aio_inflight > 0) {
|
|
int n;
|
|
|
|
n = io_getevents(myctx, 1, 1, &event, 0);
|
|
|
|
if (-n == EINTR)
|
|
continue;
|
|
|
|
if (n != 1)
|
|
tst_brk(TBROK, "io_getevents failed");
|
|
|
|
aio_inflight--;
|
|
|
|
check_event(event);
|
|
}
|
|
|
|
free(iocb);
|
|
free(iocbs);
|
|
}
|
|
|
|
static void setup(void)
|
|
{
|
|
struct stat sb;
|
|
|
|
if (tst_parse_int(str_numchildren, &numchildren, 1, INT_MAX)) {
|
|
tst_brk(TBROK, "Invalid number of children '%s'",
|
|
str_numchildren);
|
|
}
|
|
|
|
if (tst_parse_filesize(str_writesize, &writesize, 1, LLONG_MAX))
|
|
tst_brk(TBROK, "Invalid write blocks size '%s'", str_writesize);
|
|
|
|
if (tst_parse_filesize(str_filesize, &filesize, 1, LLONG_MAX))
|
|
tst_brk(TBROK, "Invalid file size '%s'", str_filesize);
|
|
|
|
if (tst_parse_int(str_numaio, &numaio, 1, INT_MAX)) {
|
|
tst_brk(TBROK, "Invalid number of AIO control blocks '%s'",
|
|
str_numaio);
|
|
}
|
|
|
|
if ((numaio * writesize) > filesize) {
|
|
numaio = filesize / writesize;
|
|
tst_res(TINFO,
|
|
"Numbers of AIO have been reduced to %d so we fit filesize",
|
|
numaio);
|
|
}
|
|
|
|
SAFE_STAT(".", &sb);
|
|
alignment = sb.st_blksize;
|
|
|
|
run_child = SAFE_MMAP(NULL, sizeof(int), PROT_READ | PROT_WRITE,
|
|
MAP_SHARED | MAP_ANONYMOUS, -1, 0);
|
|
|
|
tst_res(TINFO, "Dirtying free blocks");
|
|
dirty_freeblocks(filesize);
|
|
}
|
|
|
|
static void cleanup(void)
|
|
{
|
|
if (run_child) {
|
|
*run_child = 0;
|
|
SAFE_MUNMAP((void *)run_child, sizeof(int));
|
|
}
|
|
}
|
|
|
|
static void run(void)
|
|
{
|
|
char *filename = "file.bin";
|
|
int i, pid;
|
|
|
|
*run_child = 1;
|
|
|
|
for (i = 0; i < numchildren; i++) {
|
|
if (!SAFE_FORK()) {
|
|
io_read(filename, filesize, run_child);
|
|
return;
|
|
}
|
|
}
|
|
|
|
pid = SAFE_FORK();
|
|
if (!pid) {
|
|
aiodio_sparse(filename, alignment, writesize, filesize, numaio);
|
|
return;
|
|
}
|
|
|
|
tst_res(TINFO, "Child %i creates a sparse file", pid);
|
|
|
|
for (;;) {
|
|
if (SAFE_WAITPID(pid, NULL, WNOHANG))
|
|
break;
|
|
|
|
sleep(1);
|
|
|
|
if (!tst_remaining_runtime()) {
|
|
tst_res(TINFO, "Test out of runtime, exiting");
|
|
kill(pid, SIGKILL);
|
|
SAFE_WAITPID(pid, NULL, 0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
*run_child = 0;
|
|
|
|
if (!tst_validate_children(numchildren))
|
|
tst_res(TPASS, "All bytes read were zeroed");
|
|
}
|
|
|
|
static struct tst_test test = {
|
|
.test_all = run,
|
|
.setup = setup,
|
|
.cleanup = cleanup,
|
|
.needs_tmpdir = 1,
|
|
.forks_child = 1,
|
|
.options = (struct tst_option[]) {
|
|
{"n:", &str_numchildren, "Number of threads (default 16)"},
|
|
{"w:", &str_writesize, "Size of writing blocks (default 1K)"},
|
|
{"s:", &str_filesize, "Size of file (default 100M)"},
|
|
{"o:", &str_numaio, "Number of AIO control blocks (default 16)"},
|
|
{},
|
|
},
|
|
.skip_filesystems = (const char *[]) {
|
|
"tmpfs",
|
|
NULL
|
|
},
|
|
.max_runtime = 1800,
|
|
};
|
|
#else
|
|
TST_TEST_TCONF("test requires libaio and its development packages");
|
|
#endif
|