Page MenuHomeFreeBSD

x86/xen: stop assuming kernel memory loading order in PVH
ClosedPublic

Authored by royger on Jun 28 2022, 3:53 PM.
Tags
None
Referenced Files
F110147442: D35628.diff
Fri, Feb 14, 6:57 AM
Unknown Object (File)
Fri, Jan 24, 4:57 PM
Unknown Object (File)
Wed, Jan 22, 5:06 AM
Unknown Object (File)
Sat, Jan 18, 9:41 PM
Unknown Object (File)
Dec 15 2024, 12:43 AM
Unknown Object (File)
Nov 19 2024, 4:23 AM
Unknown Object (File)
Nov 19 2024, 4:22 AM
Unknown Object (File)
Nov 4 2024, 3:08 PM
Subscribers

Details

Summary

Do not assume that start_info will always be loaded at the highest
memory address, and instead check the position of all the loaded
elements in order to find the last loaded one, and thus a likely safe
place to use as early boot allocation memory space.

Reported by: markj, cpercival
Sponsored by: Citrix Systems R&D

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sys/x86/xen/pv.c
154

max() is not really appropriate here. It only compares a pair of unsigned ints. (Yes, it's too confusing.) The MAX() macro is a better alternative. I think this happens to work because the addresses involved are small, but it'd still be better to switch away from its use.

176

Extra newline.

royger added inline comments.
sys/x86/xen/pv.c
154

Yes, all addresses should be below 4G, and hence fit in an unsigned int. That mess with max() is confusing, will switch to MAX() instead.

  • Use MAX() instead of max().
  • Remove extra newline.
This revision is now accepted and ready to land.Jun 29 2022, 3:04 PM