of: overlay: Fix out-of-bounds write in init_overlay_changeset()
authorGeert Uytterhoeven <geert+renesas@glider.be>
Fri, 8 Dec 2017 13:13:02 +0000 (14:13 +0100)
committerRob Herring <robh@kernel.org>
Fri, 8 Dec 2017 15:32:10 +0000 (09:32 -0600)
commit35e691eddca565f475ba69ff84ca0c9db3b3257b
tree9f317f1df3badfd882e93412bff8475abbaff013
parent5e4748175fe942c86cbab840e2fa41a92b4d6cf6
of: overlay: Fix out-of-bounds write in init_overlay_changeset()

If an overlay has no "__symbols__" node, but it has nodes without
"__overlay__" subnodes at the end (e.g. a "__fixups__" node), after
filling in all fragments for nodes with "__overlay__" subnodes,
"fragment = &fragments[cnt]" will point beyond the end of the allocated
array.

Hence writing to "fragment->overlay" will overwrite unallocated memory,
which may lead to a crash later.

Fix this by deferring both the assignment to "fragment" and the
offending write afterwards until we know for sure the node has an
"__overlay__" subnode, and thus a valid entry in "fragments[]".

Fixes: 61b4de4e0b384f4a ("of: overlay: minor restructuring")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/overlay.c