mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] firmware: socfpga: Fix a bug in fpgamgr_program_write_buf()
@ 2015-04-13 12:11 Andrey Smirnov
  2015-04-14 18:46 ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Andrey Smirnov @ 2015-04-13 12:11 UTC (permalink / raw)
  To: barebox; +Cc: Andrey Smirnov

Fix a bug in fpgamgr_program_write_buf() where .rbf file whose length
is not a multiple of 4 would cause an integer overflow which would
result in infinite loop.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 drivers/firmware/socfpga.c | 26 ++++++++++++++++++++++----
 1 file changed, 22 insertions(+), 4 deletions(-)

diff --git a/drivers/firmware/socfpga.c b/drivers/firmware/socfpga.c
index a5dc607..75fb050 100644
--- a/drivers/firmware/socfpga.c
+++ b/drivers/firmware/socfpga.c
@@ -321,14 +321,32 @@ static int fpgamgr_program_write_buf(struct firmware_handler *fh, const void *bu
 		size_t size)
 {
 	struct fpgamgr *mgr = container_of(fh, struct fpgamgr, fh);
-	const uint32_t *buf32 = buf;
+	const uint8_t *buffer = buf;
+	uint32_t word;
+	size_t chunk_size;
+	size_t offset = 0;
 
 	/* write to FPGA Manager AXI data */
 	while (size) {
-		writel(*buf32, mgr->regs_data);
+		chunk_size = min(size, sizeof(uint32_t));
+		size -= chunk_size;
+
+		if (likely(chunk_size == sizeof(uint32_t))) {
+			word = *(uint32_t *)(buffer + offset);
+			offset += sizeof(uint32_t);
+		} else {
+			word = buffer[offset++];
+			word <<= 8;
+			chunk_size--;
+
+			while (chunk_size--) {
+				word |= buffer[offset++];
+				word <<= 8;
+			}
+		}
+
+		writel(word, mgr->regs_data);
 		readl(mgr->regs + FPGAMGRREGS_MON_GPIO_EXT_PORTA_ADDRESS);
-		buf32++;
-		size -= sizeof(uint32_t);
 	}
 
 	return 0;
-- 
2.1.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] firmware: socfpga: Fix a bug in fpgamgr_program_write_buf()
  2015-04-13 12:11 [PATCH] firmware: socfpga: Fix a bug in fpgamgr_program_write_buf() Andrey Smirnov
@ 2015-04-14 18:46 ` Sascha Hauer
  2015-04-14 19:46   ` Andrey Smirnov
  0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2015-04-14 18:46 UTC (permalink / raw)
  To: Andrey Smirnov; +Cc: barebox

Hi Andrey,

On Mon, Apr 13, 2015 at 05:11:50AM -0700, Andrey Smirnov wrote:
> Fix a bug in fpgamgr_program_write_buf() where .rbf file whose length
> is not a multiple of 4 would cause an integer overflow which would
> result in infinite loop.
> 
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> ---
>  drivers/firmware/socfpga.c | 26 ++++++++++++++++++++++----
>  1 file changed, 22 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/firmware/socfpga.c b/drivers/firmware/socfpga.c
> index a5dc607..75fb050 100644
> --- a/drivers/firmware/socfpga.c
> +++ b/drivers/firmware/socfpga.c
> @@ -321,14 +321,32 @@ static int fpgamgr_program_write_buf(struct firmware_handler *fh, const void *bu
>  		size_t size)
>  {
>  	struct fpgamgr *mgr = container_of(fh, struct fpgamgr, fh);
> -	const uint32_t *buf32 = buf;
> +	const uint8_t *buffer = buf;
> +	uint32_t word;
> +	size_t chunk_size;
> +	size_t offset = 0;
>  
>  	/* write to FPGA Manager AXI data */
>  	while (size) {

This code probably looks better when you change this loop to
while (size >= sizeof(uint32_t)){} followed by a if (size) {}

> -		writel(*buf32, mgr->regs_data);
> +		chunk_size = min(size, sizeof(uint32_t));
> +		size -= chunk_size;
> +
> +		if (likely(chunk_size == sizeof(uint32_t))) {
> +			word = *(uint32_t *)(buffer + offset);
> +			offset += sizeof(uint32_t);
> +		} else {
> +			word = buffer[offset++];
> +			word <<= 8;
> +			chunk_size--;
> +
> +			while (chunk_size--) {
> +				word |= buffer[offset++];
> +				word <<= 8;
> +			}

Isn't this the same as:

			word = 0;
			while (chunk_size--) {
				word |= buffer[offset++];
				word <<= 8;
			}


Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] firmware: socfpga: Fix a bug in fpgamgr_program_write_buf()
  2015-04-14 18:46 ` Sascha Hauer
@ 2015-04-14 19:46   ` Andrey Smirnov
  0 siblings, 0 replies; 3+ messages in thread
From: Andrey Smirnov @ 2015-04-14 19:46 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: barebox

On Tue, Apr 14, 2015 at 11:46 AM, Sascha Hauer <s.hauer@pengutronix.de> wrote:
> Hi Andrey,
>
> On Mon, Apr 13, 2015 at 05:11:50AM -0700, Andrey Smirnov wrote:
>> Fix a bug in fpgamgr_program_write_buf() where .rbf file whose length
>> is not a multiple of 4 would cause an integer overflow which would
>> result in infinite loop.
>>
>> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
>> ---
>>  drivers/firmware/socfpga.c | 26 ++++++++++++++++++++++----
>>  1 file changed, 22 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/firmware/socfpga.c b/drivers/firmware/socfpga.c
>> index a5dc607..75fb050 100644
>> --- a/drivers/firmware/socfpga.c
>> +++ b/drivers/firmware/socfpga.c
>> @@ -321,14 +321,32 @@ static int fpgamgr_program_write_buf(struct firmware_handler *fh, const void *bu
>>               size_t size)
>>  {
>>       struct fpgamgr *mgr = container_of(fh, struct fpgamgr, fh);
>> -     const uint32_t *buf32 = buf;
>> +     const uint8_t *buffer = buf;
>> +     uint32_t word;
>> +     size_t chunk_size;
>> +     size_t offset = 0;
>>
>>       /* write to FPGA Manager AXI data */
>>       while (size) {
>
> This code probably looks better when you change this loop to
> while (size >= sizeof(uint32_t)){} followed by a if (size) {}

Yeah, I agree. I'll update it in the next version of the patch.

>
>> -             writel(*buf32, mgr->regs_data);
>> +             chunk_size = min(size, sizeof(uint32_t));
>> +             size -= chunk_size;
>> +
>> +             if (likely(chunk_size == sizeof(uint32_t))) {
>> +                     word = *(uint32_t *)(buffer + offset);
>> +                     offset += sizeof(uint32_t);
>> +             } else {
>> +                     word = buffer[offset++];
>> +                     word <<= 8;
>> +                     chunk_size--;
>> +
>> +                     while (chunk_size--) {
>> +                             word |= buffer[offset++];
>> +                             word <<= 8;
>> +                     }
>
> Isn't this the same as:
>
>                         word = 0;
>                         while (chunk_size--) {
>                                 word |= buffer[offset++];
>                                 word <<= 8;
>                         }
>

That's how I originally wrote it, but then the "unnecessary"
assignment to zero started to bother me for some reason and I
un-rolled one iteration of the loop. I can change it back in the next
version of the patch


>
> Sascha
>
> --
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-04-14 19:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-13 12:11 [PATCH] firmware: socfpga: Fix a bug in fpgamgr_program_write_buf() Andrey Smirnov
2015-04-14 18:46 ` Sascha Hauer
2015-04-14 19:46   ` Andrey Smirnov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox