Merge "Fix integer wrap sanitisation." into sc-dev
This commit is contained in:
commit
c8e7fc5297
1 changed files with 14 additions and 5 deletions
19
libfdt/fdt.c
19
libfdt/fdt.c
|
@ -180,12 +180,20 @@ uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset)
|
|||
break;
|
||||
|
||||
case FDT_PROP:
|
||||
lenp = fdt_offset_ptr(fdt, offset, sizeof(*lenp));
|
||||
lenp = fdt_offset_ptr(fdt, offset, sizeof(struct fdt_property) - FDT_TAGSIZE);
|
||||
if (!can_assume(VALID_DTB) && !lenp)
|
||||
return FDT_END; /* premature end */
|
||||
/* skip-name offset, length and value */
|
||||
offset += sizeof(struct fdt_property) - FDT_TAGSIZE
|
||||
+ fdt32_to_cpu(*lenp);
|
||||
|
||||
/* skip name offset, length */
|
||||
offset += sizeof(struct fdt_property) - FDT_TAGSIZE;
|
||||
|
||||
if (!can_assume(VALID_DTB)
|
||||
&& !fdt_offset_ptr(fdt, offset, fdt32_to_cpu(*lenp)))
|
||||
return FDT_END; /* premature end */
|
||||
|
||||
/* skip value */
|
||||
offset += fdt32_to_cpu(*lenp);
|
||||
|
||||
if (!can_assume(LATEST) &&
|
||||
fdt_version(fdt) < 0x10 && fdt32_to_cpu(*lenp) >= 8 &&
|
||||
((offset - fdt32_to_cpu(*lenp)) % 8) != 0)
|
||||
|
@ -201,7 +209,8 @@ uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset)
|
|||
return FDT_END;
|
||||
}
|
||||
|
||||
if (!fdt_offset_ptr(fdt, startoffset, offset - startoffset))
|
||||
if (!can_assume(VALID_DTB) && (offset <= startoffset
|
||||
|| !fdt_offset_ptr(fdt, startoffset, offset - startoffset)))
|
||||
return FDT_END; /* premature end */
|
||||
|
||||
*nextoffset = FDT_TAGALIGN(offset);
|
||||
|
|
Loading…
Reference in a new issue