1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
/* Get Dwarf Frame state for perf stack sample data.
Copyright (C) 2025 Red Hat, Inc.
This file is part of elfutils.
This file is free software; you can redistribute it and/or modify
it under the terms of either
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at
your option) any later version
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at
your option) any later version
or both in parallel, as here.
elfutils is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "libdwfl_stacktraceP.h"
Ebl *default_ebl = NULL;
GElf_Half default_ebl_machine = EM_NONE;
uint64_t dwflst_perf_sample_preferred_regs_mask (GElf_Half machine)
{
/* XXX The most likely case is that this will only be called once,
for the current architecture. So we keep one Ebl* around for
answering this query and replace it in the unlikely case of
getting called with different architectures. */
if (default_ebl != NULL && default_ebl_machine != machine)
{
ebl_closebackend(default_ebl);
default_ebl = NULL;
}
if (default_ebl == NULL)
{
default_ebl = ebl_openbackend_machine(machine);
default_ebl_machine = machine;
}
if (default_ebl != NULL)
return ebl_perf_frame_regs_mask (default_ebl);
return 0;
}
struct sample_info {
pid_t pid;
pid_t tid;
Dwarf_Addr base_addr;
const uint8_t *stack;
size_t stack_size;
const Dwarf_Word *regs;
uint n_regs;
const int *regs_mapping;
size_t n_regs_mapping;
int elfclass;
Dwarf_Addr pc;
};
/* The next few functions imitate the corefile interface for a single
stack sample, with very restricted access to registers and memory. */
/* Just yield the single thread id matching the sample. */
static pid_t
sample_next_thread (Dwfl *dwfl __attribute__ ((unused)), void *dwfl_arg,
void **thread_argp)
{
struct sample_info *sample_arg =
(struct sample_info *)dwfl_arg;
if (*thread_argp == NULL)
{
*thread_argp = (void *)0xea7b3375;
return sample_arg->tid;
}
else
return 0;
}
/* Just check that the thread id matches the sample. */
static bool
sample_getthread (Dwfl *dwfl __attribute__ ((unused)), pid_t tid,
void *dwfl_arg, void **thread_argp)
{
struct sample_info *sample_arg =
(struct sample_info *)dwfl_arg;
*thread_argp = (void *)sample_arg;
if (sample_arg->tid != tid)
{
__libdwfl_seterrno(DWFL_E_INVALID_ARGUMENT);
return false;
}
return true;
}
#define copy_word_64(result, d) \
if ((((uintptr_t) (d)) & (sizeof (uint64_t) - 1)) == 0) \
*(result) = *(uint64_t *)(d); \
else \
memcpy ((result), (d), sizeof (uint64_t));
#define copy_word_32(result, d) \
if ((((uintptr_t) (d)) & (sizeof (uint32_t) - 1)) == 0) \
*(result) = *(uint32_t *)(d); \
else \
memcpy ((result), (d), sizeof (uint32_t));
#define copy_word(result, d, elfclass) \
if ((elfclass) == ELFCLASS64) \
{ copy_word_64((result), (d)); } \
else if ((elfclass) == ELFCLASS32) \
{ copy_word_32((result), (d)); } \
else \
*(result) = 0;
static bool
elf_memory_read (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Word *result, void *arg)
{
struct sample_info *sample_arg =
(struct sample_info *)arg;
Dwfl_Module *mod = INTUSE(dwfl_addrmodule) (dwfl, addr);
Dwarf_Addr bias;
Elf_Scn *section = INTUSE(dwfl_module_address_section) (mod, &addr, &bias);
if (!section)
{
__libdwfl_seterrno(DWFL_E_ADDR_OUTOFRANGE);
return false;
}
Elf_Data *data = elf_getdata(section, NULL);
if (data && data->d_buf && data->d_size > addr) {
uint8_t *d = ((uint8_t *)data->d_buf) + addr;
copy_word(result, d, sample_arg->elfclass);
return true;
}
__libdwfl_seterrno(DWFL_E_ADDR_OUTOFRANGE);
return false;
}
static bool
sample_memory_read (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Word *result, void *arg)
{
struct sample_info *sample_arg =
(struct sample_info *)arg;
/* Imitate read_cached_memory() with the stack sample data as the cache. */
if (addr < sample_arg->base_addr ||
addr - sample_arg->base_addr >= sample_arg->stack_size)
return elf_memory_read(dwfl, addr, result, arg);
const uint8_t *d = &sample_arg->stack[addr - sample_arg->base_addr];
copy_word(result, d, sample_arg->elfclass);
return true;
}
static bool
sample_set_initial_registers (Dwfl_Thread *thread, void *arg)
{
struct sample_info *sample_arg =
(struct sample_info *)arg;
INTUSE(dwfl_thread_state_register_pc) (thread, sample_arg->pc);
Dwfl_Process *process = thread->process;
Ebl *ebl = process->ebl;
return ebl_set_initial_registers_sample
(ebl, sample_arg->regs, sample_arg->n_regs,
sample_arg->regs_mapping, sample_arg->n_regs_mapping,
__libdwfl_set_initial_registers_thread, thread);
}
static void
sample_detach (Dwfl *dwfl __attribute__ ((unused)), void *dwfl_arg)
{
struct sample_info *sample_arg =
(struct sample_info *)dwfl_arg;
free (sample_arg);
}
static const Dwfl_Thread_Callbacks sample_thread_callbacks =
{
sample_next_thread,
sample_getthread,
sample_memory_read,
sample_set_initial_registers,
sample_detach,
NULL, /* sample_thread_detach */
};
int
dwflst_sample_getframes (Dwfl *dwfl, Elf *elf,
pid_t pid, pid_t tid,
const void *stack, size_t stack_size,
const Dwarf_Word *regs, uint n_regs,
const int *regs_mapping, size_t n_regs_mapping,
int (*callback) (Dwfl_Frame *state, void *arg),
void *arg)
{
/* TODO: Lock the dwfl to ensure attach_state does not interfere
with other dwfl_perf_sample_getframes calls. */
struct sample_info *sample_arg;
bool attached = false;
if (dwfl->process != NULL)
{
sample_arg = dwfl->process->callbacks_arg;
attached = true;
}
else
{
sample_arg = malloc (sizeof *sample_arg);
if (sample_arg == NULL)
{
__libdwfl_seterrno(DWFL_E_NOMEM);
return -1;
}
}
sample_arg->pid = pid;
sample_arg->tid = tid;
sample_arg->stack = (const uint8_t *)stack;
sample_arg->stack_size = stack_size;
sample_arg->regs = regs;
sample_arg->n_regs = n_regs;
sample_arg->regs_mapping = regs_mapping;
sample_arg->n_regs_mapping = n_regs_mapping;
if (! attached
&& ! INTUSE(dwfl_attach_state) (dwfl, elf, pid,
&sample_thread_callbacks, sample_arg))
return -1;
Dwfl_Process *process = dwfl->process;
Ebl *ebl = process->ebl;
sample_arg->elfclass = ebl_get_elfclass(ebl);
ebl_sample_sp_pc(ebl, regs, n_regs,
regs_mapping, n_regs_mapping,
&sample_arg->base_addr, &sample_arg->pc);
return INTUSE(dwfl_getthread_frames) (dwfl, tid, callback, arg);
}
int
dwflst_perf_sample_getframes (Dwfl *dwfl, Elf *elf,
pid_t pid, pid_t tid,
const void *stack, size_t stack_size,
const Dwarf_Word *regs, uint32_t n_regs,
uint64_t perf_regs_mask, uint32_t abi,
int (*callback) (Dwfl_Frame *state, void *arg),
void *arg)
{
/* Select the regs_mapping based on architecture. This will be
cached in ebl to avoid having to recompute the regs_mapping array
when perf_regs_mask is consistent for the entire session: */
const int *regs_mapping;
size_t n_regs_mapping;
Dwfl_Process *process = dwfl->process;
Ebl *ebl = process->ebl;
/* XXX May want to check if abi matches ebl_get_elfclass(ebl). */
if (!ebl_sample_perf_regs_mapping(ebl,
perf_regs_mask, abi,
®s_mapping, &n_regs_mapping))
{
__libdwfl_seterrno(DWFL_E_LIBEBL_BAD);
return -1;
}
/* Then we can call dwflst_sample_getframes: */
return dwflst_sample_getframes (dwfl, elf, pid, tid,
stack, stack_size,
regs, n_regs,
regs_mapping, n_regs_mapping,
callback, arg);
}
|