* [Qemu-devel] [PATCH] hw/ide/ahci.c: Fix shift left into sign bit
@ 2015-10-16 17:48 Peter Maydell
2015-10-16 20:43 ` John Snow
0 siblings, 1 reply; 3+ messages in thread
From: Peter Maydell @ 2015-10-16 17:48 UTC (permalink / raw)
To: qemu-devel; +Cc: John Snow, qemu-block, patches
Avoid undefined behaviour from shifting left into the sign bit:
hw/ide/ahci.c:551:36: runtime error: left shift of 255 by 24 places cannot be represented in type 'int'
(Unfortunately C's promotion rules mean that in the expression
"some_uint8_t_variable << 24" the LHS gets promoted to signed
int before shifting.)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
clang's undefined sanitizer produces a lot of copies of this warning during
'make check'...
hw/ide/ahci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
index 796be15..21f76ed 100644
--- a/hw/ide/ahci.c
+++ b/hw/ide/ahci.c
@@ -548,7 +548,7 @@ static void ahci_init_d2h(AHCIDevice *ad)
ad->init_d2h_sent = true;
/* We're emulating receiving the first Reg H2D Fis from the device;
* Update the SIG register, but otherwise proceed as normal. */
- pr->sig = (ide_state->hcyl << 24) |
+ pr->sig = ((uint32_t)ide_state->hcyl << 24) |
(ide_state->lcyl << 16) |
(ide_state->sector << 8) |
(ide_state->nsector & 0xFF);
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] hw/ide/ahci.c: Fix shift left into sign bit
2015-10-16 17:48 [Qemu-devel] [PATCH] hw/ide/ahci.c: Fix shift left into sign bit Peter Maydell
@ 2015-10-16 20:43 ` John Snow
2015-10-18 14:17 ` Peter Maydell
0 siblings, 1 reply; 3+ messages in thread
From: John Snow @ 2015-10-16 20:43 UTC (permalink / raw)
To: Peter Maydell, qemu-devel; +Cc: qemu-block, patches
On 10/16/2015 01:48 PM, Peter Maydell wrote:
> Avoid undefined behaviour from shifting left into the sign bit:
>
> hw/ide/ahci.c:551:36: runtime error: left shift of 255 by 24 places cannot be represented in type 'int'
>
> (Unfortunately C's promotion rules mean that in the expression
> "some_uint8_t_variable << 24" the LHS gets promoted to signed
> int before shifting.)
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> clang's undefined sanitizer produces a lot of copies of this warning during
> 'make check'...
>
> hw/ide/ahci.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
> index 796be15..21f76ed 100644
> --- a/hw/ide/ahci.c
> +++ b/hw/ide/ahci.c
> @@ -548,7 +548,7 @@ static void ahci_init_d2h(AHCIDevice *ad)
> ad->init_d2h_sent = true;
> /* We're emulating receiving the first Reg H2D Fis from the device;
> * Update the SIG register, but otherwise proceed as normal. */
> - pr->sig = (ide_state->hcyl << 24) |
> + pr->sig = ((uint32_t)ide_state->hcyl << 24) |
> (ide_state->lcyl << 16) |
> (ide_state->sector << 8) |
> (ide_state->nsector & 0xFF);
>
Reviewed-by: John Snow <jsnow@redhat.com>
Since the "patches" tool seems to still be hiccuping, do you want to
just apply this directly?
--js
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] hw/ide/ahci.c: Fix shift left into sign bit
2015-10-16 20:43 ` John Snow
@ 2015-10-18 14:17 ` Peter Maydell
0 siblings, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2015-10-18 14:17 UTC (permalink / raw)
To: John Snow; +Cc: QEMU Developers, Qemu-block, Patch Tracking
On 16 October 2015 at 21:43, John Snow <jsnow@redhat.com> wrote:
>
>
> On 10/16/2015 01:48 PM, Peter Maydell wrote:
>> Avoid undefined behaviour from shifting left into the sign bit:
>>
>> hw/ide/ahci.c:551:36: runtime error: left shift of 255 by 24 places cannot be represented in type 'int'
>>
>> (Unfortunately C's promotion rules mean that in the expression
>> "some_uint8_t_variable << 24" the LHS gets promoted to signed
>> int before shifting.)
>>
>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
>> ---
>> clang's undefined sanitizer produces a lot of copies of this warning during
>> 'make check'...
>>
>> hw/ide/ahci.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
>> index 796be15..21f76ed 100644
>> --- a/hw/ide/ahci.c
>> +++ b/hw/ide/ahci.c
>> @@ -548,7 +548,7 @@ static void ahci_init_d2h(AHCIDevice *ad)
>> ad->init_d2h_sent = true;
>> /* We're emulating receiving the first Reg H2D Fis from the device;
>> * Update the SIG register, but otherwise proceed as normal. */
>> - pr->sig = (ide_state->hcyl << 24) |
>> + pr->sig = ((uint32_t)ide_state->hcyl << 24) |
>> (ide_state->lcyl << 16) |
>> (ide_state->sector << 8) |
>> (ide_state->nsector & 0xFF);
>>
>
> Reviewed-by: John Snow <jsnow@redhat.com>
>
> Since the "patches" tool seems to still be hiccuping, do you want to
> just apply this directly?
OK, applied to master.
thanks
-- PMM
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-18 14:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-16 17:48 [Qemu-devel] [PATCH] hw/ide/ahci.c: Fix shift left into sign bit Peter Maydell
2015-10-16 20:43 ` John Snow
2015-10-18 14:17 ` Peter Maydell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).