static __fsword_t get_fs_type(int fd)
{ struct statfs fs; int ret;
do {
ret = fstatfs(fd, &fs);
} while (ret && errno == EINTR);
return ret ? 0 : fs.f_type;
}
staticbool fs_is_unknown(__fsword_t fs_type)
{ /* * We only support some filesystems in our tests when dealing with * R/W long-term pinning. For these filesystems, we can be fairly sure * whether they support it or not.
*/ switch (fs_type) { case TMPFS_MAGIC: case HUGETLBFS_MAGIC: case BTRFS_SUPER_MAGIC: case EXT4_SUPER_MAGIC: case XFS_SUPER_MAGIC: returnfalse; default: returntrue;
}
}
staticbool fs_supports_writable_longterm_pinning(__fsword_t fs_type)
{
assert(!fs_is_unknown(fs_type)); switch (fs_type) { case TMPFS_MAGIC: case HUGETLBFS_MAGIC: returntrue; default: returnfalse;
}
}
staticvoid do_test(int fd, size_t size, enum test_type type, bool shared)
{
__fsword_t fs_type = get_fs_type(fd); bool should_work; char *mem; int result = KSFT_PASS; int ret;
if (fd < 0) {
result = KSFT_FAIL; goto report;
}
if (ftruncate(fd, size)) { if (errno == ENOENT) {
skip_test_dodgy_fs("ftruncate()");
} else {
ksft_print_msg("ftruncate() failed (%s)\n",
strerror(errno));
result = KSFT_FAIL; goto report;
} return;
}
if (fallocate(fd, 0, 0, size)) { /* * Some filesystems (eg, NFSv3) don't support * fallocate(), report this as a skip rather than a * test failure.
*/ if (errno == EOPNOTSUPP) {
ksft_print_msg("fallocate() not supported by filesystem\n");
result = KSFT_SKIP;
} elseif (size == pagesize) {
ksft_print_msg("fallocate() failed (%s)\n", strerror(errno));
result = KSFT_FAIL;
} else {
ksft_print_msg("need more free huge pages\n");
result = KSFT_SKIP;
} goto report;
}
mem = mmap(NULL, size, PROT_READ | PROT_WRITE,
shared ? MAP_SHARED : MAP_PRIVATE, fd, 0); if (mem == MAP_FAILED) { if (size == pagesize || shared) {
ksft_print_msg("mmap() failed (%s)\n", strerror(errno));
result = KSFT_FAIL;
} else {
ksft_print_msg("need more free huge pages\n");
result = KSFT_SKIP;
} goto report;
}
/* Fault in the page such that GUP-fast can pin it directly. */
memset(mem, 0, size);
switch (type) { case TEST_TYPE_RO: case TEST_TYPE_RO_FAST: /* * Cover more cases regarding unsharing decisions when * long-term R/O pinning by mapping the page R/O.
*/
ret = mprotect(mem, size, PROT_READ); if (ret) {
ksft_print_msg("mprotect() failed (%s)\n", strerror(errno));
result = KSFT_FAIL; goto munmap;
} /* FALLTHROUGH */ case TEST_TYPE_RW: case TEST_TYPE_RW_FAST: { struct pin_longterm_test args; constbool fast = type == TEST_TYPE_RO_FAST ||
type == TEST_TYPE_RW_FAST; constbool rw = type == TEST_TYPE_RW ||
type == TEST_TYPE_RW_FAST;
if (gup_fd < 0) {
ksft_print_msg("gup_test not available\n");
result = KSFT_SKIP; break;
}
if (rw && shared && fs_is_unknown(fs_type)) {
ksft_print_msg("Unknown filesystem\n");
result = KSFT_SKIP; return;
} /* * R/O pinning or pinning in a private mapping is always * expected to work. Otherwise, we expect long-term R/W pinning * to only succeed for special filesystems.
*/
should_work = !shared || !rw ||
fs_supports_writable_longterm_pinning(fs_type);
args.addr = (__u64)(uintptr_t)mem;
args.size = size;
args.flags = fast ? PIN_LONGTERM_TEST_FLAG_USE_FAST : 0;
args.flags |= rw ? PIN_LONGTERM_TEST_FLAG_USE_WRITE : 0;
ret = ioctl(gup_fd, PIN_LONGTERM_TEST_START, &args); if (ret && errno == EINVAL) {
ksft_print_msg("PIN_LONGTERM_TEST_START failed (EINVAL)n");
result = KSFT_SKIP; break;
} elseif (ret && errno == EFAULT) { if (should_work)
result = KSFT_FAIL; else
result = KSFT_PASS; break;
} elseif (ret) {
ksft_print_msg("PIN_LONGTERM_TEST_START failed (%s)\n",
strerror(errno));
result = KSFT_FAIL; break;
}
if (ioctl(gup_fd, PIN_LONGTERM_TEST_STOP))
ksft_print_msg("[INFO] PIN_LONGTERM_TEST_STOP failed (%s)\n",
strerror(errno));
/* * TODO: if the kernel ever supports long-term R/W pinning on * some previously unsupported filesystems, we might want to * perform some additional tests for possible data corruptions.
*/ if (should_work)
result = KSFT_PASS; else
result = KSFT_FAIL; break;
} #ifdef LOCAL_CONFIG_HAVE_LIBURING case TEST_TYPE_IOURING: { struct io_uring ring; struct iovec iov;
/* Skip on errors, as we might just lack kernel support. */
ret = io_uring_queue_init(1, &ring, 0); if (ret < 0) {
ksft_print_msg("io_uring_queue_init() failed (%s)\n",
strerror(-ret));
result = KSFT_SKIP; break;
} /* * Register the range as a fixed buffer. This will FOLL_WRITE | * FOLL_PIN | FOLL_LONGTERM the range.
*/
iov.iov_base = mem;
iov.iov_len = size;
ret = io_uring_register_buffers(&ring, &iov, 1); /* Only new kernels return EFAULT. */ if (ret && (errno == ENOSPC || errno == EOPNOTSUPP ||
errno == EFAULT)) { if (should_work) {
ksft_print_msg("Should have failed (%s)\n",
strerror(errno));
result = KSFT_FAIL;
} else {
result = KSFT_PASS;
}
} elseif (ret) { /* * We might just lack support or have insufficient * MEMLOCK limits.
*/
ksft_print_msg("io_uring_register_buffers() failed (%s)\n",
strerror(-ret));
result = KSFT_SKIP;
} else { if (should_work) {
result = KSFT_PASS;
} else {
ksft_print_msg("Should have worked\n");
result = KSFT_FAIL;
}
io_uring_unregister_buffers(&ring);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.