linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ACPI: SPCR: check if table->serial_port.access_width is too wide
@ 2021-09-16 19:49 Mark Langsdorf
  2021-09-24 16:10 ` Rafael J. Wysocki
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Langsdorf @ 2021-09-16 19:49 UTC (permalink / raw)
  To: linux-acpi

If table->serial_port.access_width is more than 29, it causes
undefined behavior when ACPI_ACCESS_BIT_WIDTH shifts it to
(1 << ((size) + 2)):

[    0.000000] UBSAN: Undefined behaviour in drivers/acpi/spcr.c:114:11
[    0.000000] shift exponent 102 is too large for 32-bit type 'int'

Test that serial_port.access_width is less than 30 and set it to 6
if it is not.

Signed-off-by: Mark Langsdorf <mlangsdo@redhat.com>
---
 drivers/acpi/spcr.c    |  8 ++++++--
 include/acpi/actypes.h | 10 ++++++++--
 2 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/drivers/acpi/spcr.c b/drivers/acpi/spcr.c
index 134f7f60cf8102..52f17d631d24e9 100644
--- a/drivers/acpi/spcr.c
+++ b/drivers/acpi/spcr.c
@@ -111,8 +111,12 @@ int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console)
 		pr_info("SPCR table version %d\n", table->header.revision);
 
 	if (table->serial_port.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
-		switch (ACPI_ACCESS_BIT_WIDTH((
-			table->serial_port.access_width))) {
+		u32 bit_width = table->serial_port.access_width;
+		if(bit_width > ACPI_ACCESS_BIT_MAX) {
+			pr_err("Unacceptable wide SPCR Access Width.  Defaulting to byte size\n");
+			bit_width = ACPI_ACCESS_BIT_DEFAULT;
+		}
+		switch (ACPI_ACCESS_BIT_WIDTH((bit_width))) {
 		default:
 			pr_err("Unexpected SPCR Access Width.  Defaulting to byte size\n");
 			fallthrough;
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h
index 92c71dfce0d5d9..cefbb7ad253e02 100644
--- a/include/acpi/actypes.h
+++ b/include/acpi/actypes.h
@@ -536,8 +536,14 @@ typedef u64 acpi_integer;
  * Can be used with access_width of struct acpi_generic_address and access_size of
  * struct acpi_resource_generic_register.
  */
-#define ACPI_ACCESS_BIT_WIDTH(size)     (1 << ((size) + 2))
-#define ACPI_ACCESS_BYTE_WIDTH(size)    (1 << ((size) - 1))
+#define ACPI_ACCESS_BIT_SHIFT		2
+#define ACPI_ACCESS_BYTE_SHIFT		-1
+#define ACPI_ACCESS_BIT_MAX		(31 - ACPI_ACCESS_BIT_SHIFT)
+#define ACPI_ACCESS_BYTE_MAX		(31 - ACPI_ACCESS_BYTE_SHIFT)
+#define ACPI_ACCESS_BIT_DEFAULT		(8 - ACPI_ACCESS_BIT_SHIFT)
+#define ACPI_ACCESS_BYTE_DEFAULT	(8 - ACPI_ACCESS_BYTE_SHIFT)
+#define ACPI_ACCESS_BIT_WIDTH(size)	(1 << ((size) + ACPI_ACCESS_BIT_SHIFT))
+#define ACPI_ACCESS_BYTE_WIDTH(size)	(1 << ((size) + ACPI_ACCESS_BYTE_SHIFT))
 
 /*******************************************************************************
  *
-- 
2.26.3


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

* Re: [PATCH] ACPI: SPCR: check if table->serial_port.access_width is too wide
  2021-09-16 19:49 [PATCH] ACPI: SPCR: check if table->serial_port.access_width is too wide Mark Langsdorf
@ 2021-09-24 16:10 ` Rafael J. Wysocki
  2021-09-24 17:11   ` Mark Langsdorf
  0 siblings, 1 reply; 5+ messages in thread
From: Rafael J. Wysocki @ 2021-09-24 16:10 UTC (permalink / raw)
  To: Mark Langsdorf; +Cc: ACPI Devel Maling List, Robert Moore

On Thu, Sep 16, 2021 at 9:50 PM Mark Langsdorf <mlangsdo@redhat.com> wrote:
>
> If table->serial_port.access_width is more than 29, it causes
> undefined behavior when ACPI_ACCESS_BIT_WIDTH shifts it to
> (1 << ((size) + 2)):
>
> [    0.000000] UBSAN: Undefined behaviour in drivers/acpi/spcr.c:114:11
> [    0.000000] shift exponent 102 is too large for 32-bit type 'int'
>
> Test that serial_port.access_width is less than 30 and set it to 6
> if it is not.
>
> Signed-off-by: Mark Langsdorf <mlangsdo@redhat.com>

This consists of a Linux part and an ACPICA part (the changes in
actypes.h).  The ACPICA part needs to be submitted to the upstream
project before applying this.

> ---
>  drivers/acpi/spcr.c    |  8 ++++++--
>  include/acpi/actypes.h | 10 ++++++++--
>  2 files changed, 14 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/acpi/spcr.c b/drivers/acpi/spcr.c
> index 134f7f60cf8102..52f17d631d24e9 100644
> --- a/drivers/acpi/spcr.c
> +++ b/drivers/acpi/spcr.c
> @@ -111,8 +111,12 @@ int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console)
>                 pr_info("SPCR table version %d\n", table->header.revision);
>
>         if (table->serial_port.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
> -               switch (ACPI_ACCESS_BIT_WIDTH((
> -                       table->serial_port.access_width))) {
> +               u32 bit_width = table->serial_port.access_width;
> +               if(bit_width > ACPI_ACCESS_BIT_MAX) {
> +                       pr_err("Unacceptable wide SPCR Access Width.  Defaulting to byte size\n");
> +                       bit_width = ACPI_ACCESS_BIT_DEFAULT;
> +               }
> +               switch (ACPI_ACCESS_BIT_WIDTH((bit_width))) {
>                 default:
>                         pr_err("Unexpected SPCR Access Width.  Defaulting to byte size\n");
>                         fallthrough;
> diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h
> index 92c71dfce0d5d9..cefbb7ad253e02 100644
> --- a/include/acpi/actypes.h
> +++ b/include/acpi/actypes.h
> @@ -536,8 +536,14 @@ typedef u64 acpi_integer;
>   * Can be used with access_width of struct acpi_generic_address and access_size of
>   * struct acpi_resource_generic_register.
>   */
> -#define ACPI_ACCESS_BIT_WIDTH(size)     (1 << ((size) + 2))
> -#define ACPI_ACCESS_BYTE_WIDTH(size)    (1 << ((size) - 1))
> +#define ACPI_ACCESS_BIT_SHIFT          2
> +#define ACPI_ACCESS_BYTE_SHIFT         -1
> +#define ACPI_ACCESS_BIT_MAX            (31 - ACPI_ACCESS_BIT_SHIFT)
> +#define ACPI_ACCESS_BYTE_MAX           (31 - ACPI_ACCESS_BYTE_SHIFT)
> +#define ACPI_ACCESS_BIT_DEFAULT                (8 - ACPI_ACCESS_BIT_SHIFT)
> +#define ACPI_ACCESS_BYTE_DEFAULT       (8 - ACPI_ACCESS_BYTE_SHIFT)
> +#define ACPI_ACCESS_BIT_WIDTH(size)    (1 << ((size) + ACPI_ACCESS_BIT_SHIFT))
> +#define ACPI_ACCESS_BYTE_WIDTH(size)   (1 << ((size) + ACPI_ACCESS_BYTE_SHIFT))
>
>  /*******************************************************************************
>   *
> --
> 2.26.3
>

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

* Re: [PATCH] ACPI: SPCR: check if table->serial_port.access_width is too wide
  2021-09-24 16:10 ` Rafael J. Wysocki
@ 2021-09-24 17:11   ` Mark Langsdorf
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Langsdorf @ 2021-09-24 17:11 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: ACPI Devel Maling List, Robert Moore

On 9/24/21 11:10 AM, Rafael J. Wysocki wrote:
> On Thu, Sep 16, 2021 at 9:50 PM Mark Langsdorf <mlangsdo@redhat.com> wrote:
>> If table->serial_port.access_width is more than 29, it causes
>> undefined behavior when ACPI_ACCESS_BIT_WIDTH shifts it to
>> (1 << ((size) + 2)):
>>
>> [    0.000000] UBSAN: Undefined behaviour in drivers/acpi/spcr.c:114:11
>> [    0.000000] shift exponent 102 is too large for 32-bit type 'int'
>>
>> Test that serial_port.access_width is less than 30 and set it to 6
>> if it is not.
>>
>> This consists of a Linux part and an ACPICA part (the changes in
>> actypes.h).  The ACPICA part needs to be submitted to the upstream
>> project before applying this.

Thanks, I wasn't sure of the procedure. I'll get the ACPICA part 
accepted and come back with the rest.

--Mark Langsdorf


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

* Re: [PATCH] ACPI: SPCR: check if table->serial_port.access_width is too wide
  2022-01-05 17:47 Mark Langsdorf
@ 2022-01-11 15:41 ` Rafael J. Wysocki
  0 siblings, 0 replies; 5+ messages in thread
From: Rafael J. Wysocki @ 2022-01-11 15:41 UTC (permalink / raw)
  To: Mark Langsdorf; +Cc: ACPI Devel Maling List

On Wed, Jan 5, 2022 at 6:47 PM Mark Langsdorf <mlangsdo@redhat.com> wrote:
>
> If table->serial_port.access_width is more than 29, it causes
> undefined behavior when ACPI_ACCESS_BIT_WIDTH shifts it to
> (1 << ((size) + 2)):
>
> [    0.000000] UBSAN: Undefined behaviour in drivers/acpi/spcr.c:114:11
> [    0.000000] shift exponent 102 is too large for 32-bit type 'int'
>
> Use the new ACPI_ACCESS_ defines to test that serial_port.access_width
> is less than 30 and set it to 6 if it is not.
>
> Signed-off-by: Mark Langsdorf <mlangsdo@redhat.com>
> ---
>  drivers/acpi/spcr.c | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/acpi/spcr.c b/drivers/acpi/spcr.c
> index 25c2d0be953e..d589543875b8 100644
> --- a/drivers/acpi/spcr.c
> +++ b/drivers/acpi/spcr.c
> @@ -107,8 +107,13 @@ int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console)
>                 pr_info("SPCR table version %d\n", table->header.revision);
>
>         if (table->serial_port.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
> -               switch (ACPI_ACCESS_BIT_WIDTH((
> -                       table->serial_port.access_width))) {
> +               u32 bit_width = table->serial_port.access_width;
> +
> +               if (bit_width > ACPI_ACCESS_BIT_MAX) {
> +                       pr_err("Unacceptable wide SPCR Access Width.  Defaulting to byte size\n");
> +                       bit_width = ACPI_ACCESS_BIT_DEFAULT;
> +               }
> +               switch (ACPI_ACCESS_BIT_WIDTH((bit_width))) {
>                 default:
>                         pr_err("Unexpected SPCR Access Width.  Defaulting to byte size\n");
>                         fallthrough;
> --

Applied as 5.17-rc material, thanks!

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

* [PATCH] ACPI: SPCR: check if table->serial_port.access_width is too wide
@ 2022-01-05 17:47 Mark Langsdorf
  2022-01-11 15:41 ` Rafael J. Wysocki
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Langsdorf @ 2022-01-05 17:47 UTC (permalink / raw)
  To: linux-acpi

If table->serial_port.access_width is more than 29, it causes
undefined behavior when ACPI_ACCESS_BIT_WIDTH shifts it to
(1 << ((size) + 2)):

[    0.000000] UBSAN: Undefined behaviour in drivers/acpi/spcr.c:114:11
[    0.000000] shift exponent 102 is too large for 32-bit type 'int'

Use the new ACPI_ACCESS_ defines to test that serial_port.access_width
is less than 30 and set it to 6 if it is not.

Signed-off-by: Mark Langsdorf <mlangsdo@redhat.com>
---
 drivers/acpi/spcr.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/acpi/spcr.c b/drivers/acpi/spcr.c
index 25c2d0be953e..d589543875b8 100644
--- a/drivers/acpi/spcr.c
+++ b/drivers/acpi/spcr.c
@@ -107,8 +107,13 @@ int __init acpi_parse_spcr(bool enable_earlycon, bool enable_console)
 		pr_info("SPCR table version %d\n", table->header.revision);
 
 	if (table->serial_port.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
-		switch (ACPI_ACCESS_BIT_WIDTH((
-			table->serial_port.access_width))) {
+		u32 bit_width = table->serial_port.access_width;
+
+		if (bit_width > ACPI_ACCESS_BIT_MAX) {
+			pr_err("Unacceptable wide SPCR Access Width.  Defaulting to byte size\n");
+			bit_width = ACPI_ACCESS_BIT_DEFAULT;
+		}
+		switch (ACPI_ACCESS_BIT_WIDTH((bit_width))) {
 		default:
 			pr_err("Unexpected SPCR Access Width.  Defaulting to byte size\n");
 			fallthrough;
-- 
2.26.3


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

end of thread, other threads:[~2022-01-11 15:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-16 19:49 [PATCH] ACPI: SPCR: check if table->serial_port.access_width is too wide Mark Langsdorf
2021-09-24 16:10 ` Rafael J. Wysocki
2021-09-24 17:11   ` Mark Langsdorf
2022-01-05 17:47 Mark Langsdorf
2022-01-11 15:41 ` Rafael J. Wysocki

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).