vdso 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. What: vDSO
  2. Date: July 2011
  3. KernelVersion: 3.0
  4. Contact: Andy Lutomirski <[email protected]>
  5. Description:
  6. On some architectures, when the kernel loads any userspace program it
  7. maps an ELF DSO into that program's address space. This DSO is called
  8. the vDSO and it often contains useful and highly-optimized alternatives
  9. to real syscalls.
  10. These functions are called just like ordinary C function according to
  11. your platform's ABI. Call them from a sensible context. (For example,
  12. if you set CS on x86 to something strange, the vDSO functions are
  13. within their rights to crash.) In addition, if you pass a bad
  14. pointer to a vDSO function, you might get SIGSEGV instead of -EFAULT.
  15. To find the DSO, parse the auxiliary vector passed to the program's
  16. entry point. The AT_SYSINFO_EHDR entry will point to the vDSO.
  17. The vDSO uses symbol versioning; whenever you request a symbol from the
  18. vDSO, specify the version you are expecting.
  19. Programs that dynamically link to glibc will use the vDSO automatically.
  20. Otherwise, you can use the reference parser in
  21. tools/testing/selftests/vDSO/parse_vdso.c.
  22. Unless otherwise noted, the set of symbols with any given version and the
  23. ABI of those symbols is considered stable. It may vary across architectures,
  24. though.
  25. Note:
  26. As of this writing, this ABI documentation as been confirmed for x86_64.
  27. The maintainers of the other vDSO-using architectures should confirm
  28. that it is correct for their architecture.