README.pretty-printers 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. README for the glibc Python pretty printers
  2. ===========================================
  3. Pretty printers are gdb extensions that allow it to print useful, human-readable
  4. information about a program's variables. For example, for a pthread_mutex_t
  5. gdb would usually output something like this:
  6. (gdb) print mutex
  7. $1 = {
  8. __data = {
  9. __lock = 22020096,
  10. __count = 0,
  11. __owner = 0,
  12. __nusers = 0,
  13. __kind = 576,
  14. __spins = 0,
  15. __list = {
  16. __prev = 0x0,
  17. __next = 0x0
  18. }
  19. },
  20. __size = "\000\000P\001", '\000' <repeats 12 times>, "@\002", '\000' <repeats 21 times>,
  21. __align = 22020096
  22. }
  23. However, with a pretty printer gdb will output something like this:
  24. (gdb) print mutex
  25. $1 = pthread_mutex_t = {
  26. Type = Normal,
  27. Status = Not acquired,
  28. Robust = No,
  29. Shared = No,
  30. Protocol = Priority protect,
  31. Priority ceiling = 42
  32. }
  33. Before printing a value, gdb will first check if there's a pretty printer
  34. registered for it. If there is, it'll use it, otherwise it'll print the value
  35. as usual. Pretty printers can be registered in various ways; for our purposes
  36. we register them for the current objfile by calling
  37. gdb.printing.register_pretty_printer().
  38. Currently our printers are based on gdb.RegexpCollectionPrettyPrinter, which
  39. means they'll be triggered if the type of the variable we're printing matches
  40. a given regular expression. For example, MutexPrinter will be triggered if
  41. our variable's type matches the regexp '^pthread_mutex_t$'.
  42. Besides the printers themselves, each module may have a constants file which the
  43. printers will import. These constants are generated from C headers during the
  44. build process, and need to be in the Python search path when loading the
  45. printers.
  46. Installing and loading
  47. ----------------------
  48. The pretty printers and their constant files may be installed in different paths
  49. for each distro, though gdb should be able to automatically load them by itself.
  50. When in doubt, you can use the 'info pretty-printer' gdb command to list the
  51. loaded pretty printers.
  52. If the printers aren't automatically loaded for some reason, you should add the
  53. following to your .gdbinit:
  54. python
  55. import sys
  56. sys.path.insert(0, '/path/to/constants/file/directory')
  57. end
  58. source /path/to/printers.py
  59. If you're building glibc manually, '/path/to/constants/file/directory' should be
  60. '/path/to/glibc-build/submodule', where 'submodule' is e.g. nptl.
  61. Testing
  62. -------
  63. The pretty printers come with a small test suite based on PExpect, which is a
  64. Python module with Expect-like features for spawning and controlling interactive
  65. programs. Each printer has a corresponding C program and a Python script
  66. that uses PExpect to drive gdb through the program and compare its output to
  67. the expected printer's.
  68. The tests run on the glibc host, which is assumed to have both gdb and PExpect;
  69. if any of those is absent the tests will fail with code 77 (UNSUPPORTED).
  70. Native builds can be tested simply by doing 'make check'; cross builds must use
  71. cross-test-ssh.sh as test-wrapper, like this:
  72. make test-wrapper='/path/to/scripts/cross-test-ssh.sh user@host' check
  73. (Remember to share the build system's filesystem with the glibc host's through
  74. NFS or something similar).
  75. Running 'make check' on a cross build will only compile the test programs,
  76. without running the scripts.
  77. Adding new pretty printers
  78. --------------------------
  79. Adding new pretty printers to glibc requires following these steps:
  80. 1. Identify which constants must be generated from C headers, and write the
  81. corresponding .pysym file. See scripts/gen-as-const.py for more information
  82. on how this works. The name of the .pysym file must be added to the
  83. 'gen-py-const-headers' variable in your submodule's Makefile (without the .pysym
  84. extension).
  85. 2. Write the pretty printer code itself. For this you can follow the gdb
  86. Python API documentation, and use the existing printers as examples. The printer
  87. code must import the generated constants file (which will have the same name
  88. as your .pysym file). The names of the pretty printer files must be added
  89. to the 'pretty-printers' variable in your submodule's Makefile (without the .py
  90. extension).
  91. 3. Write the unit tests for your pretty printers. The build system calls each
  92. test script passing it the paths to the test program source, the test program
  93. binary, and the printer files you added to 'pretty-printers' in the previous
  94. step. The test scripts, in turn, must import scripts/test_printers_common
  95. and call the init_test function passing it, among other things, the name of the
  96. set of pretty printers to enable (as seen by running 'info pretty-printer').
  97. You can use the existing unit tests as examples.
  98. 4. Add the names of the pretty printer tests to the 'tests-printers' variable
  99. in your submodule's Makefile (without extensions). In addition, for each test
  100. program you must define a corresponding CFLAGS-* and CPPFLAGS-* variable and
  101. set it to $(CFLAGS-printers-tests) to ensure they're compiled correctly. For
  102. example, test-foo-printer.c requires the following:
  103. CFLAGS-test-foo-printer.c := $(CFLAGS-printers-tests)
  104. CPPFLAGS-test-foo-printer.c := $(CFLAGS-printers-tests)
  105. Finally, if your programs need to be linked with a specific library, you can add
  106. its name to the 'tests-printers-libs' variable in your submodule's Makefile.
  107. Known issues
  108. ------------
  109. * Pretty printers are inherently coupled to the code they're targeting, thus
  110. any changes to the target code must also update the corresponding printers.
  111. On the plus side, the printer code itself may serve as a kind of documentation
  112. for the target code.
  113. * There's no guarantee that the information the pretty printers provide is
  114. complete, i.e. some details might be left off. For example, the pthread_mutex_t
  115. printers won't report whether a thread is spin-waiting in an attempt to acquire
  116. the mutex.
  117. * Older versions of the gdb Python API have a bug where
  118. gdb.RegexpCollectionPrettyPrinter would not be able to get a value's real type
  119. if it was typedef'd. This would cause gdb to ignore the pretty printers for
  120. types like pthread_mutex_t, which is defined as:
  121. typedef union
  122. {
  123. ...
  124. } pthread_mutex_t;
  125. This was fixed in commit 1b588015839caafc608a6944a78aea170f5fb2f6, and released
  126. as part of gdb 7.8. However, typedef'ing an already typedef'd type may cause
  127. a similar issue, e.g.:
  128. typedef pthread_mutex_t mutex;
  129. mutex a_mutex;
  130. Here, trying to print a_mutex won't trigger the pthread_mutex_t printer.
  131. * The test programs must be compiled without optimizations. This is necessary
  132. because the test scripts rely on the C code structure being preserved when
  133. stepping through the programs. Things like aggressive instruction reordering
  134. or optimizing variables out may make this kind of testing impossible.