From: Joe Perches <joe@perches.com>
To: Jacob von Chorus <jacobvonchorus@cwphoto.ca>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Insop Song <insop.song@gainspeed.com>
Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org,
dan.carpenter@oracle.com
Subject: Re: [PATCH v2 2/2] staging: gs_fpgaboot: change char to u8
Date: Mon, 17 Jul 2017 18:22:08 -0700 [thread overview]
Message-ID: <1500340928.25934.18.camel@perches.com> (raw)
In-Reply-To: <20170718004726.17227-2-jacobvonchorus@cwphoto.ca>
On Mon, 2017-07-17 at 20:47 -0400, Jacob von Chorus wrote:
> The bitstream storage variables were changed from char to u8 arrays to
> prevent issues such as negative lengths. This change makes the code
> compatible with the "data" field in "struct firmware" which is of type
> u8.
>
> Signed-off-by: Jacob von Chorus <jacobvonchorus@cwphoto.ca>
> ---
> drivers/staging/gs_fpgaboot/gs_fpgaboot.c | 24 ++++++++++++------------
> drivers/staging/gs_fpgaboot/gs_fpgaboot.h | 2 +-
> 2 files changed, 13 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/staging/gs_fpgaboot/gs_fpgaboot.c b/drivers/staging/gs_fpgaboot/gs_fpgaboot.c
> index 008ef99f05..467a0ad81f 100644
> --- a/drivers/staging/gs_fpgaboot/gs_fpgaboot.c
> +++ b/drivers/staging/gs_fpgaboot/gs_fpgaboot.c
> @@ -41,16 +41,16 @@ static char *file = "xlinx_fpga_firmware.bit";
> module_param(file, charp, 0444);
> MODULE_PARM_DESC(file, "Xilinx FPGA firmware file.");
>
> -static void read_bitstream(char *bitdata, char *buf, int *offset, int rdsize)
> +static void read_bitstream(u8 *bitdata, u8 *buf, int *offset, int rdsize)
> {
> memcpy(buf, bitdata + *offset, rdsize);
> *offset += rdsize;
> }
>
> -static int readinfo_bitstream(char *bitdata, char *buf, int size, int *offset)
> +static int readinfo_bitstream(u8 *bitdata, u8 *buf, int size, int *offset)
> {
> - char tbuf[64];
> - s32 len;
> + u8 tbuf[64];
> + u16 len;
>
> /* read section char */
> read_bitstream(bitdata, tbuf, offset, 1);
read_bitstream takes an int rdsize, not a u16.
and this function will overflow tbuf if len > 64
static void readinfo_bitstream(char *bitdata, char *buf, int *offset)
{
char tbuf[64];
s32 len;
/* read section char */
read_bitstream(bitdata, tbuf, offset, 1);
/* read length */
read_bitstream(bitdata, tbuf, offset, 2);
len = tbuf[0] << 8 | tbuf[1];
read_bitstream(bitdata, buf, offset, len);
buf[len] = '\0';
}
len is up to 64k but tbuf is 64 bytes.
len = get_unaligned_le16(tbuf)
might be nicer than
len = tbuf[0] << 8 | tbuf[1];
next prev parent reply other threads:[~2017-07-18 1:22 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-18 0:47 [PATCH v2 1/2] staging: gs_fpgaboot: add buffer overflow checks Jacob von Chorus
2017-07-18 0:47 ` [PATCH v2 2/2] staging: gs_fpgaboot: change char to u8 Jacob von Chorus
2017-07-18 1:22 ` Joe Perches [this message]
2017-07-18 1:56 ` Jacob von Chorus
2017-07-18 7:00 ` [PATCH v2 1/2] staging: gs_fpgaboot: add buffer overflow checks Greg Kroah-Hartman
2017-07-18 9:15 ` Dan Carpenter
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=1500340928.25934.18.camel@perches.com \
--to=joe@perches.com \
--cc=dan.carpenter@oracle.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=insop.song@gainspeed.com \
--cc=jacobvonchorus@cwphoto.ca \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox