The blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

119 lines
4.5 KiB

  1. ---
  2. title: "CTF + ARMeb + debugging"
  3. description: >
  4. CTF + ARMeb + debugging
  5. created: !!timestamp '2014-03-05'
  6. time: 7:21 PM
  7. tags:
  8. - ctf
  9. - debugging
  10. ---
  11. I've been working on making the AVILA board work again with FreeBSD.
  12. Thanks to Jim from Netgate for sending me a board to do this work.
  13. I still have a pending patch waiting to go through bde to fix an
  14. unaligned off_t store which gets things farther, but with the patch I'm
  15. getting a: `panic: vm_page_alloc: page 0xc0805db0 is wired` shortly after
  16. the machine launches the daemons.
  17. I did work to get cross gdb working for armeb (committed in r261787 and
  18. r261788), but that didn't help as there is no kernel gdb support on
  19. armeb. As I'm doing this debugging over the network, I can't dump a
  20. core.
  21. I didn't feel like hand decoding a `struct vm_page`, so I thought of other
  22. methods, and one way is to use CTF to parse the data type and decode the
  23. data. I know python and ctypes, so I decided to wrap libctf and see
  24. what I could do.
  25. Getting the initial python wrapper working was easy, but my initial test
  26. data was the kernel on my amd64 box that I am developing on. Now I
  27. needed to use real armeb CTF data. I point it to my kernel, and I get:
  28. "`File uses more recent ELF version than libctf`". Ok, extract the CTF
  29. data from the kernel (ctf data is stored in a section named `.SUNW_ctf`)
  30. and work on that directly:
  31. ```
  32. $ objcopy -O binary --set-section-flags optfiles=load,alloc -j .SUNW_ctf /tftpboot/kernel.avila.avila /dev/null
  33. objcopy: /tftpboot/kernel.avila.avila: File format not recognized
  34. ```
  35. Well, ok, that's not too surprising since it's an ARMEB binary, lets try:
  36. ```
  37. $ /usr/obj/arm.armeb/usr/src.avila/tmp/usr/bin/objcopy -O binary --set-section-flags optfiles=load,alloc -j .SUNW_ctf /tftpboot/kernel.avila.avila /tmp/test.avila.ctf
  38. $ ls -l /tmp/test.avila.ctf
  39. -rwxr-xr-x 1 jmg wheel 0 Mar 5 17:59 /tmp/test.avila.ctf
  40. ```
  41. Hmm, that didn't work too well, ok, lets just use dd to extract the data
  42. using info from `objdump -x`.
  43. Ok, now that I've done that, I get:
  44. ```
  45. ValueError: '/tmp/avila.ctf': File is not in CTF or ELF format
  46. ```
  47. Hmm, why is that? Well, it turns out that the endian of the CTF data
  48. is wrong. The magic is `cf f1`, but the magic on amd64 is `f1 cf`, it's
  49. endian swapped. That's annoying. After spending some time trying to
  50. build an cross shared version of libctf, I find that it has the same
  51. issue.
  52. After a bit of looking around, I discover the CTF can only ever read
  53. native endianness, but `ctfmerge` has a magic option that will write out
  54. endian swapped data if necessary depending upon the ELF file it's
  55. putting in. This means that the CTF data in an armeb object file will
  56. be different depending upon the endian you compiled it on, so the object
  57. file isn't cross compatible. But, this does mean that the data in the
  58. object files will be readable by libctf, just not the data written into
  59. the kernel.
  60. So, I create a sacrificial amd64 binary:
  61. ```
  62. $ echo 'int main() {}' | cc -o /tmp/avila2.ctf -x c -
  63. ```
  64. And use `ctfmerge` to put the data in it:
  65. ```
  66. $ ctfmerge -L fldkj -o /tmp/avila2.ctf /usr/obj/arm.armeb/usr/src.avila/sys/AVILA/*.o
  67. ```
  68. and again use `dd` to extract the `.SUNW_ctf` section into a separate file.
  69. With all this work, I finally have the CTF data in a format that libctf
  70. can parse, so, I try to parse some data. Now the interesting thing is
  71. that the CTF data does encode sizes of integers, but it uses the native
  72. arch's pointer sizes for `CTF_K_POINTER` types, which means that pointers
  73. appear to be 8 bytes in size instead of the correct 4 bytes. A little
  74. more hacking on the ctf.py script to force all pointers to be 4 bytes,
  75. and a little help to convert ddb output to a string and finally, I have
  76. a dump of the <code>struct&nbsp;vm_page</code> that I was trying to get all along:
  77. ```
  78. {'act_count': '\x00',
  79. 'aflags': '\x00',
  80. 'busy_lock': 1,
  81. 'dirty': '\xff',
  82. 'flags': 0,
  83. 'hold_count': 0,
  84. 'listq': {'tqe_next': 0xc0805e00, 'tqe_prev': 0xc06d18a0},
  85. 'md': {'pv_kva': 3235856384,
  86. 'pv_list': {'tqh_first': 0x0, 'tqh_last': 0xc0805de0},
  87. 'pv_memattr': '\x00',
  88. 'pvh_attrs': 0},
  89. 'object': 0xc06d1878,
  90. 'oflags': '\x04',
  91. 'order': '\t',
  92. 'phys_addr': 17776640,
  93. 'pindex': 3572,
  94. 'plinks': {'memguard': {'p': 0, 'v': 3228376932},
  95. 'q': {'tqe_next': 0x0, 'tqe_prev': 0xc06d1f64},
  96. 's': {'pv': 0xc06d1f64, 'ss': {'sle_next': 0x0}}},
  97. 'pool': '\x00',
  98. 'queue': '\xff',
  99. 'segind': '\x01',
  100. 'valid': '\xff',
  101. 'wire_count': 1}
  102. ```
  103. So, the above was produced w/ the final [ctf.py](https://www.funkthat.com/~jmg/ctf.py) script.