Fix crash caused by spurious aliases phandles. #161
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
If a device tree has specified a phandle for an aliases node, perhaps appearing as "aliases: aliases" in the device tree source, the phandle property will occur in the device tree data for the node.
If this property value is not decoded appropriately by prop_value, fdt_scan_node will raise a TypeError trying to use the inappropriately decoded value as a dictionary key when recording a phandle-to-node association. This effectively crashes the tool.
This modification lets prop_value decode property values normally instead of treating aliases nodes as a special case. Any phandle associated with such a node will then be reported by the validator in a message of the following form:
aliases: phandle: 26 is not of type 'array'
This is somewhat opaque and could arguably be reported in a more helpful way, but it indicates the presence of the spurious phandle instead of terminating abruptly.