kernel_samsung_a53x/fs/fuse
Jann Horn 2ffd618642 fuse: use unsigned type for getxattr/listxattr size truncation
commit b18915248a15eae7d901262f108d6ff0ffb4ffc1 upstream.

The existing code uses min_t(ssize_t, outarg.size, XATTR_LIST_MAX) when
parsing the FUSE daemon's response to a zero-length getxattr/listxattr
request.
On 32-bit kernels, where ssize_t and outarg.size are the same size, this is
wrong: The min_t() will pass through any size values that are negative when
interpreted as signed.
fuse_listxattr() will then return this userspace-supplied negative value,
which callers will treat as an error value.

This kind of bug pattern can lead to fairly bad security bugs because of
how error codes are used in the Linux kernel. If a caller were to convert
the numeric error into an error pointer, like so:

    struct foo *func(...) {
      int len = fuse_getxattr(..., NULL, 0);
      if (len < 0)
        return ERR_PTR(len);
      ...
    }

then it would end up returning this userspace-supplied negative value cast
to a pointer - but the caller of this function wouldn't recognize it as an
error pointer (IS_ERR_VALUE() only detects values in the narrow range in
which legitimate errno values are), and so it would just be treated as a
kernel pointer.

I think there is at least one theoretical codepath where this could happen,
but that path would involve virtio-fs with submounts plus some weird
SELinux configuration, so I think it's probably not a concern in practice.

Cc: stable@vger.kernel.org # v4.9
Fixes: 63401ccdb2ca ("fuse: limit xattr returned size")
Signed-off-by: Jann Horn <jannh@google.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-11-23 23:21:00 +01:00
..
acl.c
control.c fuse: name fs_context consistently 2024-11-23 23:20:18 +01:00
cuse.c
dax.c fuse: dax: set fc->dax to NULL in fuse_dax_conn_free() 2024-11-18 12:11:50 +01:00
dev.c fuse: Initialize beyond-EOF page contents before setting uptodate 2024-11-23 23:20:42 +01:00
dir.c fuse: fix root lookup with nonzero generation 2024-11-19 09:22:18 +01:00
file.c fuse: update stats for pages in dropped aux writeback list 2024-11-23 23:21:00 +01:00
fuse_i.h fuse: don't unhash root 2024-11-19 09:22:18 +01:00
inode.c fuse: verify {g,u}id mount options correctly 2024-11-23 23:20:18 +01:00
Kconfig
Makefile
passthrough.c
readdir.c
virtio_fs.c virtiofs: forbid newlines in tags 2024-11-23 23:20:45 +01:00
xattr.c fuse: use unsigned type for getxattr/listxattr size truncation 2024-11-23 23:21:00 +01:00