mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
ring-buffer: Don't reset persistent ring-buffer meta saved addresses
The text and data address is saved in the meta data so that it can be used to know the delta of the text and data addresses of the last boot compared to the text and data addresses of the current boot. The delta is used to convert function pointer entries in the ring buffer to something that can be used by kallsyms (note this only works for built-in functions). But the saved addresses get reset on boot up. If the buffer is not used and there's another reboot, then the saved text and data addresses will be of the last boot and not that of the boot that created the content in the ring buffer. To get an idea of the issue: # trace-cmd start -B boot_mapped -p function # reboot # trace-cmd show -B boot_mapped | tail <...>-1 [000] d..1. 461.983243: native_apic_msr_write <-native_kick_ap <...>-1 [000] d..1. 461.983244: __pfx_native_apic_msr_eoi <-native_kick_ap <...>-1 [000] d..1. 461.983244: reserve_irq_vector_locked <-native_kick_ap <...>-1 [000] d..1. 461.983262: branch_emulate_op <-native_kick_ap <...>-1 [000] d..1. 461.983262: __ia32_sys_ia32_pread64 <-native_kick_ap <...>-1 [000] d..1. 461.983263: native_kick_ap <-__smpboot_create_thread <...>-1 [000] d..1. 461.983263: store_cache_disable <-native_kick_ap <...>-1 [000] d..1. 461.983279: acpi_power_off_prepare <-native_kick_ap <...>-1 [000] d..1. 461.983280: __pfx_acpi_ns_delete_node <-acpi_suspend_enter <...>-1 [000] d..1. 461.983280: __pfx_acpi_os_release_lock <-acpi_suspend_enter # reboot # trace-cmd show -B boot_mapped |tail <...>-1 [000] d..1. 461.983243: 0xffffffffa9669220 <-0xffffffffa965f3db <...>-1 [000] d..1. 461.983244: 0xffffffffa96690f0 <-0xffffffffa965f3db <...>-1 [000] d..1. 461.983244: 0xffffffffa9663fa0 <-0xffffffffa965f3db <...>-1 [000] d..1. 461.983262: 0xffffffffa9672e80 <-0xffffffffa965f3e0 <...>-1 [000] d..1. 461.983262: 0xffffffffa962b940 <-0xffffffffa965f3ec <...>-1 [000] d..1. 461.983263: 0xffffffffa965f540 <-0xffffffffa96e1362 <...>-1 [000] d..1. 461.983263: 0xffffffffa963c940 <-0xffffffffa965f55b <...>-1 [000] d..1. 461.983279: 0xffffffffa9ee30c0 <-0xffffffffa965f59b <...>-1 [000] d..1. 461.983280: 0xffffffffa9f16c10 <-0xffffffffa9ee3157 <...>-1 [000] d..1. 461.983280: 0xffffffffa9ee02e0 <-0xffffffffa9ee3157 By not updating the saved text and data addresses in the meta data at every boot up and only updating them when the buffer is reset, it allows multiple boots to see the same data. Cc: Masami Hiramatsu <mhiramat@kernel.org> Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: Vincent Donnefort <vdonnefort@google.com> Link: https://lore.kernel.org/20240815113629.0dc90af8@rorschach.local.home Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
This commit is contained in:
parent
4c57d0be52
commit
bca704f62d
@ -1817,12 +1817,19 @@ static void rb_meta_validate_events(struct ring_buffer_per_cpu *cpu_buffer)
|
||||
/* Used to calculate data delta */
|
||||
static char rb_data_ptr[] = "";
|
||||
|
||||
#define THIS_TEXT_PTR ((unsigned long)rb_meta_init_text_addr)
|
||||
#define THIS_DATA_PTR ((unsigned long)rb_data_ptr)
|
||||
|
||||
static void rb_meta_init_text_addr(struct ring_buffer_meta *meta)
|
||||
{
|
||||
meta->text_addr = THIS_TEXT_PTR;
|
||||
meta->data_addr = THIS_DATA_PTR;
|
||||
}
|
||||
|
||||
static void rb_range_meta_init(struct trace_buffer *buffer, int nr_pages)
|
||||
{
|
||||
struct ring_buffer_meta *meta;
|
||||
unsigned long delta;
|
||||
unsigned long this_text = (unsigned long)rb_range_meta_init;
|
||||
unsigned long this_data = (unsigned long)rb_data_ptr;
|
||||
void *subbuf;
|
||||
int cpu;
|
||||
int i;
|
||||
@ -1839,10 +1846,8 @@ static void rb_range_meta_init(struct trace_buffer *buffer, int nr_pages)
|
||||
meta->first_buffer += delta;
|
||||
meta->head_buffer += delta;
|
||||
meta->commit_buffer += delta;
|
||||
buffer->last_text_delta = this_text - meta->text_addr;
|
||||
buffer->last_data_delta = this_data - meta->data_addr;
|
||||
meta->text_addr = this_text;
|
||||
meta->data_addr = this_data;
|
||||
buffer->last_text_delta = THIS_TEXT_PTR - meta->text_addr;
|
||||
buffer->last_data_delta = THIS_DATA_PTR - meta->data_addr;
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -1859,8 +1864,7 @@ static void rb_range_meta_init(struct trace_buffer *buffer, int nr_pages)
|
||||
subbuf = rb_subbufs_from_meta(meta);
|
||||
|
||||
meta->first_buffer = (unsigned long)subbuf;
|
||||
meta->text_addr = this_text;
|
||||
meta->data_addr = this_data;
|
||||
rb_meta_init_text_addr(meta);
|
||||
|
||||
/*
|
||||
* The buffers[] array holds the order of the sub-buffers
|
||||
@ -5990,6 +5994,7 @@ static void reset_disabled_cpu_buffer(struct ring_buffer_per_cpu *cpu_buffer)
|
||||
void ring_buffer_reset_cpu(struct trace_buffer *buffer, int cpu)
|
||||
{
|
||||
struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
|
||||
struct ring_buffer_meta *meta;
|
||||
|
||||
if (!cpumask_test_cpu(cpu, buffer->cpumask))
|
||||
return;
|
||||
@ -6008,6 +6013,11 @@ void ring_buffer_reset_cpu(struct trace_buffer *buffer, int cpu)
|
||||
atomic_dec(&cpu_buffer->record_disabled);
|
||||
atomic_dec(&cpu_buffer->resize_disabled);
|
||||
|
||||
/* Make sure persistent meta now uses this buffer's addresses */
|
||||
meta = rb_range_meta(buffer, 0, cpu_buffer->cpu);
|
||||
if (meta)
|
||||
rb_meta_init_text_addr(meta);
|
||||
|
||||
mutex_unlock(&buffer->mutex);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(ring_buffer_reset_cpu);
|
||||
@ -6022,6 +6032,7 @@ EXPORT_SYMBOL_GPL(ring_buffer_reset_cpu);
|
||||
void ring_buffer_reset_online_cpus(struct trace_buffer *buffer)
|
||||
{
|
||||
struct ring_buffer_per_cpu *cpu_buffer;
|
||||
struct ring_buffer_meta *meta;
|
||||
int cpu;
|
||||
|
||||
/* prevent another thread from changing buffer sizes */
|
||||
@ -6049,6 +6060,11 @@ void ring_buffer_reset_online_cpus(struct trace_buffer *buffer)
|
||||
|
||||
reset_disabled_cpu_buffer(cpu_buffer);
|
||||
|
||||
/* Make sure persistent meta now uses this buffer's addresses */
|
||||
meta = rb_range_meta(buffer, 0, cpu_buffer->cpu);
|
||||
if (meta)
|
||||
rb_meta_init_text_addr(meta);
|
||||
|
||||
atomic_dec(&cpu_buffer->record_disabled);
|
||||
atomic_sub(RESET_BIT, &cpu_buffer->resize_disabled);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user