acpi_table: Add asserts in IORT
authorPatrick Rudolph <patrick.rudolph@9elements.com>
Sun, 16 Mar 2025 08:32:53 +0000 (09:32 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 3 Apr 2025 17:38:14 +0000 (11:38 -0600)
Check that the provided offsets are really pointing to a node
that have been previously written and are of the correct type.

Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
lib/acpi/acpi_table.c

index 0e0a7cc..97cd8e8 100644 (file)
@@ -635,6 +635,7 @@ int acpi_iort_add_rc(struct acpi_ctx *ctx,
                     const struct acpi_iort_id_mapping *map)
 {
        struct acpi_iort_id_mapping *mapping;
+       struct acpi_iort_node *output_node;
        struct acpi_iort_node *node;
        struct acpi_iort_rc *rc;
        int offset;
@@ -661,6 +662,13 @@ int acpi_iort_add_rc(struct acpi_ctx *ctx,
 
        mapping = (struct acpi_iort_id_mapping *)(rc + 1);
        for (int i = 0; i < num_mappings; i++) {
+               /* Validate input */
+               output_node = (struct acpi_iort_node *)ctx->tab_start + map[i].output_reference;
+               /* ID mappings can use SMMUs or ITS groups as output references */
+               assert(output_node && ((output_node->type == ACPI_IORT_NODE_ITS_GROUP) ||
+                                      (output_node->type == ACPI_IORT_NODE_SMMU) ||
+                                      (output_node->type == ACPI_IORT_NODE_SMMU_V3)));
+
                memcpy(mapping, &map[i], sizeof(struct acpi_iort_id_mapping));
                mapping++;
        }
@@ -685,6 +693,7 @@ int acpi_iort_add_smmu_v3(struct acpi_ctx *ctx,
                          const struct acpi_iort_id_mapping *map)
 {
        struct acpi_iort_node *node;
+       struct acpi_iort_node *output_node;
        struct acpi_iort_smmu_v3 *smmu;
        struct acpi_iort_id_mapping *mapping;
        int offset;
@@ -718,6 +727,14 @@ int acpi_iort_add_smmu_v3(struct acpi_ctx *ctx,
 
        mapping = (struct acpi_iort_id_mapping *)(smmu + 1);
        for (int i = 0; i < num_mappings; i++) {
+               /* Validate input */
+               output_node = (struct acpi_iort_node *)ctx->tab_start + map[i].output_reference;
+               /*
+                * ID mappings of an SMMUv3 node can only have ITS group nodes
+                * as output references.
+                */
+               assert(output_node && output_node->type == ACPI_IORT_NODE_ITS_GROUP);
+
                memcpy(mapping, &map[i], sizeof(struct acpi_iort_id_mapping));
                mapping++;
        }