aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoveSy <shana@zju.edu.cn>2021-12-15 17:30:11 +0800
committerDavid Gibson <david@gibson.dropbear.id.au>2021-12-28 20:11:11 +1100
commitc0c2e115f82ed3bc5f9d3f9e5380f0f7e81a1c21 (patch)
tree1945a091c938d70ffc1511983085b4d64cfe9262
parentcd5f69cbc0d4bc34a509b5f6f62234e25893b684 (diff)
downloaddtc-c0c2e115f82ed3bc5f9d3f9e5380f0f7e81a1c21.tar.gz
Fix a UB when fdt_get_string return null
When fdt_get_string return null, `namep` is not correctly reset. From the document of `fdt_getprop_by_offset`, the parameter `namep` will be always overwritten (that is, it will be overwritten without exception of error occurance). As for the caller (like https://github.com/topjohnwu/Magisk/blob/e097c097feb881f6097b6d1dc346f310bc92f5d6/native/jni/magiskboot/dtb.cpp#L42), the code may be like: ```cpp size_t size; const char *name; auto *value = fdt_getprop_by_offset(fdt, prop, &name, &size); ``` and if `value == nullptr`, `size` is also be overwritten correctly but `name` is not, which is quite inconsistent. This commit makes sure `name` and `size` behavior consistently (reset to reasonable value) when error occurs. Signed-off-by: LoveSy <shana@zju.edu.cn> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r--libfdt/fdt_ro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libfdt/fdt_ro.c b/libfdt/fdt_ro.c
index 17584da..9f6c551 100644
--- a/libfdt/fdt_ro.c
+++ b/libfdt/fdt_ro.c
@@ -481,12 +481,12 @@ const void *fdt_getprop_by_offset(const void *fdt, int offset,
if (!can_assume(VALID_INPUT)) {
name = fdt_get_string(fdt, fdt32_ld_(&prop->nameoff),
&namelen);
+ *namep = name;
if (!name) {
if (lenp)
*lenp = namelen;
return NULL;
}
- *namep = name;
} else {
*namep = fdt_string(fdt, fdt32_ld_(&prop->nameoff));
}