From: Willy Tarreau <w@1wt.eu>
To: Christoph Hellwig <hch@infradead.org>
Cc: Denis Efremov <efremov@linux.com>,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/3] floppy: suppress UBSAN warning in setup_rw_floppy()
Date: Wed, 22 Apr 2020 09:17:56 +0200 [thread overview]
Message-ID: <20200422071756.GA16814@1wt.eu> (raw)
In-Reply-To: <20200422070921.GA19116@infradead.org>
On Wed, Apr 22, 2020 at 12:09:21AM -0700, Christoph Hellwig wrote:
> On Tue, Apr 21, 2020 at 03:57:22PM +0300, Denis Efremov wrote:
> > UBSAN: array-index-out-of-bounds in drivers/block/floppy.c:1521:45
> > index 16 is out of range for type 'unsigned char [16]'
> > Call Trace:
> > ...
> > setup_rw_floppy+0x5c3/0x7f0
> > floppy_ready+0x2be/0x13b0
> > process_one_work+0x2c1/0x5d0
> > worker_thread+0x56/0x5e0
> > kthread+0x122/0x170
> > ret_from_fork+0x35/0x40
> >
> > >From include/uapi/linux/fd.h:
> > struct floppy_raw_cmd {
> > ...
> > unsigned char cmd_count;
> > unsigned char cmd[16];
> > unsigned char reply_count;
> > unsigned char reply[16];
> > ...
> > }
> >
> > This out-of-bounds access is intentional. The command in struct
> > floppy_raw_cmd may take up the space initially intended for the reply
> > and the reply count. It is needed for long 82078 commands such as
> > RESTORE, which takes 17 command bytes. Initial cmd size is not enough
> > and since struct setup_rw_floppy is a part of uapi we check that
> > cmd_count is in [0:16+1+16] in raw_cmd_copyin().
> >
> > The patch replaces array subscript with pointer arithetic to suppress
> > UBSAN warning.
>
> Urghh. I think the better way would be to use a union that creates
> a larger cmd field, or something like:
>
> struct floppy_raw_cmd {
> ...
> u8 buf[34];
>
> #define BUF_CMD_COUNT 0
> #define BUF_CMD 1
> #define BUF_REPLY_COUNT 17
> #define BUF_REPLY 18
>
> and use addressing based on that.
But isn't it a problem if struct floppy_raw_cmd is exposed to uapi ?
That said I remember a discussion with Linus who said that most if not
all of the floppy parts leaking to uapi were more of a side effect of
the include files reordering than a deliberate decision to expose it.
So maybe that could remain the best solution indeed.
I must say I don't feel very comfortable either with replacing p[i]
with *(p+i) given that they are all supposed to be interchangeable and
equivalent (as well as i[p] as strange as it can look). So we're not
really protected against a later mechanical change or cleanup that
reintroduces it :-/
Willy
next prev parent reply other threads:[~2020-04-22 7:18 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-21 12:57 [PATCH 0/3] floppy: suppress UBSAN warning in setup_rw_floppy() Denis Efremov
2020-04-21 12:57 ` [PATCH 1/3] floppy: add FD_AUTODETECT_SIZE define for struct floppy_drive_params Denis Efremov
2020-04-21 12:57 ` [PATCH 2/3] floppy: add defines for sizes of cmd & reply buffers of floppy_raw_cmd Denis Efremov
2020-04-21 12:57 ` [PATCH 3/3] floppy: suppress UBSAN warning in setup_rw_floppy() Denis Efremov
2020-04-22 7:09 ` Christoph Hellwig
2020-04-22 7:17 ` Willy Tarreau [this message]
2020-04-22 8:20 ` Denis Efremov
2020-04-22 8:24 ` Christoph Hellwig
2020-04-22 8:32 ` Denis Efremov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200422071756.GA16814@1wt.eu \
--to=w@1wt.eu \
--cc=efremov@linux.com \
--cc=hch@infradead.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.