linux-i386-ipa.cc 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /* GNU/Linux/x86 specific low level interface, for the in-process
  2. agent library for GDB.
  3. Copyright (C) 2010-2022 Free Software Foundation, Inc.
  4. This file is part of GDB.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. #include "server.h"
  16. #include <sys/mman.h>
  17. #include "tracepoint.h"
  18. #include "linux-x86-tdesc.h"
  19. #include "gdbsupport/x86-xstate.h"
  20. /* GDB register numbers. */
  21. enum i386_gdb_regnum
  22. {
  23. I386_EAX_REGNUM, /* %eax */
  24. I386_ECX_REGNUM, /* %ecx */
  25. I386_EDX_REGNUM, /* %edx */
  26. I386_EBX_REGNUM, /* %ebx */
  27. I386_ESP_REGNUM, /* %esp */
  28. I386_EBP_REGNUM, /* %ebp */
  29. I386_ESI_REGNUM, /* %esi */
  30. I386_EDI_REGNUM, /* %edi */
  31. I386_EIP_REGNUM, /* %eip */
  32. I386_EFLAGS_REGNUM, /* %eflags */
  33. I386_CS_REGNUM, /* %cs */
  34. I386_SS_REGNUM, /* %ss */
  35. I386_DS_REGNUM, /* %ds */
  36. I386_ES_REGNUM, /* %es */
  37. I386_FS_REGNUM, /* %fs */
  38. I386_GS_REGNUM, /* %gs */
  39. I386_ST0_REGNUM /* %st(0) */
  40. };
  41. #define i386_num_regs 16
  42. #define FT_CR_EAX 15
  43. #define FT_CR_ECX 14
  44. #define FT_CR_EDX 13
  45. #define FT_CR_EBX 12
  46. #define FT_CR_UESP 11
  47. #define FT_CR_EBP 10
  48. #define FT_CR_ESI 9
  49. #define FT_CR_EDI 8
  50. #define FT_CR_EIP 7
  51. #define FT_CR_EFL 6
  52. #define FT_CR_DS 5
  53. #define FT_CR_ES 4
  54. #define FT_CR_FS 3
  55. #define FT_CR_GS 2
  56. #define FT_CR_SS 1
  57. #define FT_CR_CS 0
  58. /* Mapping between the general-purpose registers in jump tracepoint
  59. format and GDB's register array layout. */
  60. static const int i386_ft_collect_regmap[] =
  61. {
  62. FT_CR_EAX * 4, FT_CR_ECX * 4, FT_CR_EDX * 4, FT_CR_EBX * 4,
  63. FT_CR_UESP * 4, FT_CR_EBP * 4, FT_CR_ESI * 4, FT_CR_EDI * 4,
  64. FT_CR_EIP * 4, FT_CR_EFL * 4, FT_CR_CS * 4, FT_CR_SS * 4,
  65. FT_CR_DS * 4, FT_CR_ES * 4, FT_CR_FS * 4, FT_CR_GS * 4
  66. };
  67. void
  68. supply_fast_tracepoint_registers (struct regcache *regcache,
  69. const unsigned char *buf)
  70. {
  71. int i;
  72. for (i = 0; i < i386_num_regs; i++)
  73. {
  74. int regval;
  75. if (i >= I386_CS_REGNUM && i <= I386_GS_REGNUM)
  76. regval = *(short *) (((char *) buf) + i386_ft_collect_regmap[i]);
  77. else
  78. regval = *(int *) (((char *) buf) + i386_ft_collect_regmap[i]);
  79. supply_register (regcache, i, &regval);
  80. }
  81. }
  82. ULONGEST
  83. get_raw_reg (const unsigned char *raw_regs, int regnum)
  84. {
  85. /* This should maybe be allowed to return an error code, or perhaps
  86. better, have the emit_reg detect this, and emit a constant zero,
  87. or something. */
  88. if (regnum > i386_num_regs)
  89. return 0;
  90. else if (regnum >= I386_CS_REGNUM && regnum <= I386_GS_REGNUM)
  91. return *(short *) (raw_regs + i386_ft_collect_regmap[regnum]);
  92. else
  93. return *(int *) (raw_regs + i386_ft_collect_regmap[regnum]);
  94. }
  95. #ifdef HAVE_UST
  96. #include <ust/processor.h>
  97. /* "struct registers" is the UST object type holding the registers at
  98. the time of the static tracepoint marker call. This doesn't
  99. contain EIP, but we know what it must have been (the marker
  100. address). */
  101. #define ST_REGENTRY(REG) \
  102. { \
  103. offsetof (struct registers, REG), \
  104. sizeof (((struct registers *) NULL)->REG) \
  105. }
  106. static struct
  107. {
  108. int offset;
  109. int size;
  110. } i386_st_collect_regmap[] =
  111. {
  112. ST_REGENTRY(eax),
  113. ST_REGENTRY(ecx),
  114. ST_REGENTRY(edx),
  115. ST_REGENTRY(ebx),
  116. ST_REGENTRY(esp),
  117. ST_REGENTRY(ebp),
  118. ST_REGENTRY(esi),
  119. ST_REGENTRY(edi),
  120. { -1, 0 }, /* eip */
  121. ST_REGENTRY(eflags),
  122. ST_REGENTRY(cs),
  123. ST_REGENTRY(ss),
  124. };
  125. #define i386_NUM_ST_COLLECT_GREGS \
  126. (sizeof (i386_st_collect_regmap) / sizeof (i386_st_collect_regmap[0]))
  127. void
  128. supply_static_tracepoint_registers (struct regcache *regcache,
  129. const unsigned char *buf,
  130. CORE_ADDR pc)
  131. {
  132. int i;
  133. unsigned int newpc = pc;
  134. supply_register (regcache, I386_EIP_REGNUM, &newpc);
  135. for (i = 0; i < i386_NUM_ST_COLLECT_GREGS; i++)
  136. if (i386_st_collect_regmap[i].offset != -1)
  137. {
  138. switch (i386_st_collect_regmap[i].size)
  139. {
  140. case 4:
  141. supply_register (regcache, i,
  142. ((char *) buf)
  143. + i386_st_collect_regmap[i].offset);
  144. break;
  145. case 2:
  146. {
  147. unsigned long reg
  148. = * (short *) (((char *) buf)
  149. + i386_st_collect_regmap[i].offset);
  150. reg &= 0xffff;
  151. supply_register (regcache, i, &reg);
  152. }
  153. break;
  154. default:
  155. internal_error (__FILE__, __LINE__, "unhandled register size: %d",
  156. i386_st_collect_regmap[i].size);
  157. }
  158. }
  159. }
  160. #endif /* HAVE_UST */
  161. /* This is only needed because reg-i386-linux-lib.o references it. We
  162. may use it proper at some point. */
  163. const char *gdbserver_xmltarget;
  164. /* Attempt to allocate memory for trampolines in the first 64 KiB of
  165. memory to enable smaller jump patches. */
  166. static void
  167. initialize_fast_tracepoint_trampoline_buffer (void)
  168. {
  169. const CORE_ADDR buffer_end = 64 * 1024;
  170. /* Ensure that the buffer will be at least 1 KiB in size, which is
  171. enough space for over 200 fast tracepoints. */
  172. const int min_buffer_size = 1024;
  173. char buf[IPA_BUFSIZ];
  174. CORE_ADDR mmap_min_addr = buffer_end + 1;
  175. ULONGEST buffer_size;
  176. FILE *f = fopen ("/proc/sys/vm/mmap_min_addr", "r");
  177. if (!f)
  178. {
  179. snprintf (buf, sizeof (buf), "mmap_min_addr open failed: %s",
  180. safe_strerror (errno));
  181. set_trampoline_buffer_space (0, 0, buf);
  182. return;
  183. }
  184. if (fgets (buf, IPA_BUFSIZ, f))
  185. sscanf (buf, "%llu", &mmap_min_addr);
  186. fclose (f);
  187. buffer_size = buffer_end - mmap_min_addr;
  188. if (buffer_size >= min_buffer_size)
  189. {
  190. if (mmap ((void *) (uintptr_t) mmap_min_addr, buffer_size,
  191. PROT_READ | PROT_EXEC | PROT_WRITE,
  192. MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS,
  193. -1, 0)
  194. != MAP_FAILED)
  195. set_trampoline_buffer_space (mmap_min_addr, buffer_end, NULL);
  196. else
  197. {
  198. snprintf (buf, IPA_BUFSIZ, "low-64K-buffer mmap() failed: %s",
  199. safe_strerror (errno));
  200. set_trampoline_buffer_space (0, 0, buf);
  201. }
  202. }
  203. else
  204. {
  205. snprintf (buf, IPA_BUFSIZ, "mmap_min_addr is %d, must be %d or less",
  206. (int) mmap_min_addr, (int) buffer_end - min_buffer_size);
  207. set_trampoline_buffer_space (0, 0, buf);
  208. }
  209. }
  210. /* Map the tdesc index to xcr0 mask. */
  211. static uint64_t idx2mask[X86_TDESC_LAST] = {
  212. X86_XSTATE_X87_MASK,
  213. X86_XSTATE_SSE_MASK,
  214. X86_XSTATE_AVX_MASK,
  215. X86_XSTATE_MPX_MASK,
  216. X86_XSTATE_AVX_MPX_MASK,
  217. X86_XSTATE_AVX_AVX512_MASK,
  218. X86_XSTATE_AVX_MPX_AVX512_PKU_MASK,
  219. };
  220. /* Return target_desc to use for IPA, given the tdesc index passed by
  221. gdbserver. */
  222. const struct target_desc *
  223. get_ipa_tdesc (int idx)
  224. {
  225. if (idx >= X86_TDESC_LAST)
  226. {
  227. internal_error (__FILE__, __LINE__,
  228. "unknown ipa tdesc index: %d", idx);
  229. }
  230. return i386_linux_read_description (idx2mask[idx]);
  231. }
  232. /* Allocate buffer for the jump pads. On i386, we can reach an arbitrary
  233. address with a jump instruction, so just allocate normally. */
  234. void *
  235. alloc_jump_pad_buffer (size_t size)
  236. {
  237. void *res = mmap (NULL, size, PROT_READ | PROT_WRITE | PROT_EXEC,
  238. MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
  239. if (res == MAP_FAILED)
  240. return NULL;
  241. return res;
  242. }
  243. void
  244. initialize_low_tracepoint (void)
  245. {
  246. initialize_fast_tracepoint_trampoline_buffer ();
  247. for (auto i = 0; i < X86_TDESC_LAST; i++)
  248. i386_linux_read_description (idx2mask[i]);
  249. }