[PATCH libaio 14/14] Fix io_pgetevents() syscall wrapper on 32-bit userland on 64...
authorGuillem Jover <guillem@hadrons.org>
Fri, 16 Aug 2019 00:33:46 +0000 (02:33 +0200)
committerGuillem Jover <guillem@debian.org>
Tue, 19 Apr 2022 13:57:07 +0000 (14:57 +0100)
commitc02a6b41bd812a9cddc72f4438736bd94764afc5
tree9cada3bb8fee78693af9f9500c54d199c67ccaee
parentb6ec2cbda650ca5333a226ef6c0721df2804909f
[PATCH libaio 14/14] Fix io_pgetevents() syscall wrapper on 32-bit userland on 64-bit kernels

The kernel compat syscall in the kernel got introduced with a broken
layout, which requires a pointer to the actual sigset_t variable but
with the size of the running kernel, not the size of the compat code.

This means that when the wrapper sends the expected compat (32-bit)
pointer, the kernel reads a 64-bit pointer, eating with it also the
sigset size member. And then proceeds to fail the comparison of the
sigset_t size and returns EINVAL.

This really needs to be fixed in the kernel, as there's no apparent
user of the broken compat layout (from codesearch.debian.org, nor a
quick github.com search). But we have to workaround it in libaio so
that we can use kernels that have not yet been fixed.

We do that, by trying the non-broken layout (that would be used with
a 32-bit userland on a 32-bit kernel), and if that fails with -EINVAL
we retry with a structure padded to what the kernel expects.

Signed-off-by: Guillem Jover <guillem@hadrons.org>
Gbp-Pq: Name 0014-Fix-io_pgetevents-syscall-wrapper-on-32-bit-userland.patch
src/io_pgetevents.c
src/libaio.h