core_dump_internals.rst 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Anatomy of core dump image
  2. --------------------------
  3. Core dump component can be configured to use old legacy binary format or the new ELF one. The ELF format is recommended for new designs. It provides more information about the CPU and memory state of a program at the moment when panic handler is entered.
  4. The memory state embeds a snapshot of all tasks mapped in the memory space of the program. The CPU state contains register values when the core dump has been generated. Core dump file uses a subset of the ELF structures to register these information.
  5. Loadable ELF segments are used for the memory state of the process while ELF notes (ELF.PT_NOTE) are used for process metadata (pid, registers, signal, ...). Especially, the CPU status is stored in a note with a special name and type (``CORE``, ``NT_PRSTATUS type``).
  6. Here is an overview of coredump layout:
  7. .. figure:: ../../_static/core_dump_format_elf.png
  8. :align: center
  9. :alt: Core dump image format
  10. :figclass: align-center
  11. Core dump ELF image format
  12. .. figure:: ../../_static/core_dump_format_bin.png
  13. :align: center
  14. :alt: Core dump binary image format
  15. :figclass: align-center
  16. Core dump binary image format
  17. Note: The format of image file showed on the above pictures represents current version of image and can be changed in future releases.
  18. Overview of implementation
  19. --------------------------
  20. The figure below describes some basic aspects related to implementation of core dump:
  21. .. figure:: ../../_static/core_dump_impl.png
  22. :align: center
  23. :alt: Core dump implementation overview
  24. :figclass: align-center
  25. Core dump implementation overview
  26. Note: The diagram above hide some details and represents current implementation of the core dump and can be changed later.