5level-paging.rst 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .. SPDX-License-Identifier: GPL-2.0
  2. ==============
  3. 5-level paging
  4. ==============
  5. Overview
  6. ========
  7. Original x86-64 was limited by 4-level paging to 256 TiB of virtual address
  8. space and 64 TiB of physical address space. We are already bumping into
  9. this limit: some vendors offer servers with 64 TiB of memory today.
  10. To overcome the limitation upcoming hardware will introduce support for
  11. 5-level paging. It is a straight-forward extension of the current page
  12. table structure adding one more layer of translation.
  13. It bumps the limits to 128 PiB of virtual address space and 4 PiB of
  14. physical address space. This "ought to be enough for anybody" ©.
  15. QEMU 2.9 and later support 5-level paging.
  16. Virtual memory layout for 5-level paging is described in
  17. Documentation/x86/x86_64/mm.rst
  18. Enabling 5-level paging
  19. =======================
  20. CONFIG_X86_5LEVEL=y enables the feature.
  21. Kernel with CONFIG_X86_5LEVEL=y still able to boot on 4-level hardware.
  22. In this case additional page table level -- p4d -- will be folded at
  23. runtime.
  24. User-space and large virtual address space
  25. ==========================================
  26. On x86, 5-level paging enables 56-bit userspace virtual address space.
  27. Not all user space is ready to handle wide addresses. It's known that
  28. at least some JIT compilers use higher bits in pointers to encode their
  29. information. It collides with valid pointers with 5-level paging and
  30. leads to crashes.
  31. To mitigate this, we are not going to allocate virtual address space
  32. above 47-bit by default.
  33. But userspace can ask for allocation from full address space by
  34. specifying hint address (with or without MAP_FIXED) above 47-bits.
  35. If hint address set above 47-bit, but MAP_FIXED is not specified, we try
  36. to look for unmapped area by specified address. If it's already
  37. occupied, we look for unmapped area in *full* address space, rather than
  38. from 47-bit window.
  39. A high hint address would only affect the allocation in question, but not
  40. any future mmap()s.
  41. Specifying high hint address on older kernel or on machine without 5-level
  42. paging support is safe. The hint will be ignored and kernel will fall back
  43. to allocation from 47-bit address space.
  44. This approach helps to easily make application's memory allocator aware
  45. about large address space without manually tracking allocated virtual
  46. address space.
  47. One important case we need to handle here is interaction with MPX.
  48. MPX (without MAWA extension) cannot handle addresses above 47-bit, so we
  49. need to make sure that MPX cannot be enabled we already have VMA above
  50. the boundary and forbid creating such VMAs once MPX is enabled.