device: add fudge factor for handle padding
When CONFIG_USERSPACE is enabled, the ELF file from linker pass 1 is used to create a hash table that identifies kernel objects by address. We therefore can't allow the size of any object in the pass 2 ELF to change in a way that would change those addresses, or we would create a garbage hash table. Simultaneously (and regardless of CONFIG_USERSPACE's value), gen_handles.py must transform arrays of handles from their pass 1 values to their pass 2 values; see the file's docstring for more details on that transformation. The way this works is that gen_handles.py just pads out each pass 2 array so its length is the same as its pass 1 value. The padding value is a repeated run of DEVICE_HANDLE_ENDS values. This value is the terminator which we look for at runtime in places like device_required_handles_get(), so there must be at least one, and we error out in gen_handles.py if there's no room in the pass 2 array for at least one such value. (If there is extra room, we just keep inserting extra DEVICE_HANDLE_ENDS values to pad the array to its original length.) However, it is possible that a device has more direct dependencies in the pass 2 handles array than its corresponding devicetree node had in the pass 1 array. When this happens, users have no recourse, so that's a potential showstopper. To work around this possibility for now, add a new config option, CONFIG_DEVICE_HANDLE_PADDING, whose value defaults to 0. When nonzero, it is a count of padding handles that are inserted into each device handles array. When gen_handles.py errors out due to lack of room, its error message now tells the user how much to increase CONFIG_DEVICE_HANDLE_PADDING by to work around the problem. It looks like a real fix for this is to allocate kernel objects whose addresses are required for hash tables in CONFIG_USERSPACE=y configurations *before* the handle arrays. The handle arrays could then be resized as needed in pass 2, which saves ROM by avoiding unnecessary padding, and would avoid the need for CONFIG_DEVICE_HANDLE_PADDING altogether. However, this 'real fix' is not available and we are facing a deadline to get a temporary solution in for Zephyr v2.7.0, so this is a good enough workaround for now. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
parent
2c99173d64
commit
a627666e06
3 changed files with 69 additions and 2 deletions
|
@ -311,9 +311,15 @@ def main():
|
|||
# address. We can't allow the size of any object in the
|
||||
# final elf to change. We also must make sure at least one
|
||||
# DEVICE_HANDLE_ENDS is inserted.
|
||||
assert len(hdls) < len(hs.handles), "%s no DEVICE_HANDLE_ENDS inserted" % (dev.sym.name,)
|
||||
while len(hdls) < len(hs.handles):
|
||||
padding = len(hs.handles) - len(hdls)
|
||||
assert padding > 0, \
|
||||
(f"device {dev.sym.name}: "
|
||||
"linker pass 1 left no room to insert DEVICE_HANDLE_ENDS. "
|
||||
"To work around, increase CONFIG_DEVICE_HANDLE_PADDING by " +
|
||||
str(1 + (-padding)))
|
||||
while padding > 0:
|
||||
hdls.append(DEVICE_HANDLE_ENDS)
|
||||
padding -= 1
|
||||
assert len(hdls) == len(hs.handles), "%s handle overflow" % (dev.sym.name,)
|
||||
|
||||
lines = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue