提交 15afae60 编写于 作者: G Gary Hade 提交者: Len Brown

ACPI, APEI: Fix incorrect APEI register bit width check and usage

The current code incorrectly assumes that
(1) the APEI register bit width is always 8, 16, 32, or 64 and
(2) the APEI register bit width is always equal to the APEI
    register access width.

ERST serialization instructions entries such as:

[030h 0048   1]                       Action : 00 [Begin Write Operation]
[031h 0049   1]                  Instruction : 03 [Write Register Value]
[032h 0050   1]        Flags (decoded below) : 01
                      Preserve Register Bits : 1
[033h 0051   1]                     Reserved : 00

[034h 0052  12]              Register Region : [Generic Address Structure]
[034h 0052   1]                     Space ID : 00 [SystemMemory]
[035h 0053   1]                    Bit Width : 03
[036h 0054   1]                   Bit Offset : 00
[037h 0055   1]         Encoded Access Width : 03 [DWord Access:32]
[038h 0056   8]                      Address : 000000007F2D7038

[040h 0064   8]                        Value : 0000000000000001
[048h 0072   8]                         Mask : 0000000000000007

break this assumption by yielding:
  [Firmware Bug]: APEI: Invalid bit width in GAR [0x7f2d7038/3/0]

I have found no ACPI specification requirements corresponding
with the above assumptions.  There is even a good example in
the Serialization Instruction Entries section (ACPI 4.0 section
17.4,1.2, ACPI 4.0a section 2.5.1.2, ACPI 5.0 section 18.5.1.2)
that mentions a serialization instruction with a bit range of
[6:2] which is 5 bits wide, _not_ 8, 16, 32, or 64 bits wide.

Compile and boot tested with 3.3.0-rc7 on a IBM HX5.
Signed-off-by: NGary Hade <garyhade@us.ibm.com>
Signed-off-by: NLen Brown <len.brown@intel.com>
上级 6ef19ab7
...@@ -558,33 +558,48 @@ void apei_resources_release(struct apei_resources *resources) ...@@ -558,33 +558,48 @@ void apei_resources_release(struct apei_resources *resources)
} }
EXPORT_SYMBOL_GPL(apei_resources_release); EXPORT_SYMBOL_GPL(apei_resources_release);
static int apei_check_gar(struct acpi_generic_address *reg, u64 *paddr) static int apei_check_gar(struct acpi_generic_address *reg, u64 *paddr,
u32 *access_bit_width)
{ {
u32 width, space_id; u32 bit_width, bit_offset, access_size_code, space_id;
width = reg->bit_width; bit_width = reg->bit_width;
bit_offset = reg->bit_offset;
access_size_code = reg->access_width;
space_id = reg->space_id; space_id = reg->space_id;
/* Handle possible alignment issues */ /* Handle possible alignment issues */
memcpy(paddr, &reg->address, sizeof(*paddr)); memcpy(paddr, &reg->address, sizeof(*paddr));
if (!*paddr) { if (!*paddr) {
pr_warning(FW_BUG APEI_PFX pr_warning(FW_BUG APEI_PFX
"Invalid physical address in GAR [0x%llx/%u/%u]\n", "Invalid physical address in GAR [0x%llx/%u/%u/%u/%u]\n",
*paddr, width, space_id); *paddr, bit_width, bit_offset, access_size_code,
space_id);
return -EINVAL; return -EINVAL;
} }
if ((width != 8) && (width != 16) && (width != 32) && (width != 64)) { if (access_size_code < 1 || access_size_code > 4) {
pr_warning(FW_BUG APEI_PFX pr_warning(FW_BUG APEI_PFX
"Invalid bit width in GAR [0x%llx/%u/%u]\n", "Invalid access size code in GAR [0x%llx/%u/%u/%u/%u]\n",
*paddr, width, space_id); *paddr, bit_width, bit_offset, access_size_code,
space_id);
return -EINVAL;
}
*access_bit_width = 1UL << (access_size_code + 2);
if ((bit_width + bit_offset) > *access_bit_width) {
pr_warning(FW_BUG APEI_PFX
"Invalid bit width + offset in GAR [0x%llx/%u/%u/%u/%u]\n",
*paddr, bit_width, bit_offset, access_size_code,
space_id);
return -EINVAL; return -EINVAL;
} }
if (space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY && if (space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY &&
space_id != ACPI_ADR_SPACE_SYSTEM_IO) { space_id != ACPI_ADR_SPACE_SYSTEM_IO) {
pr_warning(FW_BUG APEI_PFX pr_warning(FW_BUG APEI_PFX
"Invalid address space type in GAR [0x%llx/%u/%u]\n", "Invalid address space type in GAR [0x%llx/%u/%u/%u/%u]\n",
*paddr, width, space_id); *paddr, bit_width, bit_offset, access_size_code,
space_id);
return -EINVAL; return -EINVAL;
} }
...@@ -595,23 +610,25 @@ static int apei_check_gar(struct acpi_generic_address *reg, u64 *paddr) ...@@ -595,23 +610,25 @@ static int apei_check_gar(struct acpi_generic_address *reg, u64 *paddr)
int apei_read(u64 *val, struct acpi_generic_address *reg) int apei_read(u64 *val, struct acpi_generic_address *reg)
{ {
int rc; int rc;
u32 access_bit_width;
u64 address; u64 address;
acpi_status status; acpi_status status;
rc = apei_check_gar(reg, &address); rc = apei_check_gar(reg, &address, &access_bit_width);
if (rc) if (rc)
return rc; return rc;
*val = 0; *val = 0;
switch(reg->space_id) { switch(reg->space_id) {
case ACPI_ADR_SPACE_SYSTEM_MEMORY: case ACPI_ADR_SPACE_SYSTEM_MEMORY:
status = acpi_os_read_memory64((acpi_physical_address) status = acpi_os_read_memory64((acpi_physical_address) address,
address, val, reg->bit_width); val, access_bit_width);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return -EIO; return -EIO;
break; break;
case ACPI_ADR_SPACE_SYSTEM_IO: case ACPI_ADR_SPACE_SYSTEM_IO:
status = acpi_os_read_port(address, (u32 *)val, reg->bit_width); status = acpi_os_read_port(address, (u32 *)val,
access_bit_width);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return -EIO; return -EIO;
break; break;
...@@ -627,22 +644,23 @@ EXPORT_SYMBOL_GPL(apei_read); ...@@ -627,22 +644,23 @@ EXPORT_SYMBOL_GPL(apei_read);
int apei_write(u64 val, struct acpi_generic_address *reg) int apei_write(u64 val, struct acpi_generic_address *reg)
{ {
int rc; int rc;
u32 access_bit_width;
u64 address; u64 address;
acpi_status status; acpi_status status;
rc = apei_check_gar(reg, &address); rc = apei_check_gar(reg, &address, &access_bit_width);
if (rc) if (rc)
return rc; return rc;
switch (reg->space_id) { switch (reg->space_id) {
case ACPI_ADR_SPACE_SYSTEM_MEMORY: case ACPI_ADR_SPACE_SYSTEM_MEMORY:
status = acpi_os_write_memory64((acpi_physical_address) status = acpi_os_write_memory64((acpi_physical_address) address,
address, val, reg->bit_width); val, access_bit_width);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return -EIO; return -EIO;
break; break;
case ACPI_ADR_SPACE_SYSTEM_IO: case ACPI_ADR_SPACE_SYSTEM_IO:
status = acpi_os_write_port(address, val, reg->bit_width); status = acpi_os_write_port(address, val, access_bit_width);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
return -EIO; return -EIO;
break; break;
...@@ -661,23 +679,24 @@ static int collect_res_callback(struct apei_exec_context *ctx, ...@@ -661,23 +679,24 @@ static int collect_res_callback(struct apei_exec_context *ctx,
struct apei_resources *resources = data; struct apei_resources *resources = data;
struct acpi_generic_address *reg = &entry->register_region; struct acpi_generic_address *reg = &entry->register_region;
u8 ins = entry->instruction; u8 ins = entry->instruction;
u32 access_bit_width;
u64 paddr; u64 paddr;
int rc; int rc;
if (!(ctx->ins_table[ins].flags & APEI_EXEC_INS_ACCESS_REGISTER)) if (!(ctx->ins_table[ins].flags & APEI_EXEC_INS_ACCESS_REGISTER))
return 0; return 0;
rc = apei_check_gar(reg, &paddr); rc = apei_check_gar(reg, &paddr, &access_bit_width);
if (rc) if (rc)
return rc; return rc;
switch (reg->space_id) { switch (reg->space_id) {
case ACPI_ADR_SPACE_SYSTEM_MEMORY: case ACPI_ADR_SPACE_SYSTEM_MEMORY:
return apei_res_add(&resources->iomem, paddr, return apei_res_add(&resources->iomem, paddr,
reg->bit_width / 8); access_bit_width / 8);
case ACPI_ADR_SPACE_SYSTEM_IO: case ACPI_ADR_SPACE_SYSTEM_IO:
return apei_res_add(&resources->ioport, paddr, return apei_res_add(&resources->ioport, paddr,
reg->bit_width / 8); access_bit_width / 8);
default: default:
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册