]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
tracing: Show last module text symbols in the stacktrace
authorMasami Hiramatsu (Google) <mhiramat@kernel.org>
Mon, 24 Mar 2025 14:34:52 +0000 (23:34 +0900)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Fri, 28 Mar 2025 12:39:56 +0000 (08:39 -0400)
Since the previous boot trace buffer can include module text address in
the stacktrace. As same as the kernel text address, convert the module
text address using the module address information.

Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Link: https://lore.kernel.org/174282689201.356346.17647540360450727687.stgit@mhiramat.tok.corp.google.com
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/trace.c
kernel/trace/trace.h
kernel/trace/trace_output.c

index 382c7a5623036eefcc8de4f16f8dff46ac9a0a67..fa17397fdc1fd36cdde7e48c75dfdeb32eb75e8d 100644 (file)
@@ -49,6 +49,7 @@
 #include <linux/fsnotify.h>
 #include <linux/irq_work.h>
 #include <linux/workqueue.h>
+#include <linux/sort.h>
 
 #include <asm/setup.h> /* COMMAND_LINE_SIZE and kaslr_offset() */
 
@@ -6001,6 +6002,59 @@ struct trace_scratch {
 
 static DEFINE_MUTEX(scratch_mutex);
 
+static int cmp_mod_entry(const void *key, const void *pivot)
+{
+       unsigned long addr = (unsigned long)key;
+       const struct trace_mod_entry *ent = pivot;
+
+       if (addr >= ent[0].mod_addr && addr < ent[1].mod_addr)
+               return 0;
+       else
+               return addr - ent->mod_addr;
+}
+
+/**
+ * trace_adjust_address() - Adjust prev boot address to current address.
+ * @tr: Persistent ring buffer's trace_array.
+ * @addr: Address in @tr which is adjusted.
+ */
+unsigned long trace_adjust_address(struct trace_array *tr, unsigned long addr)
+{
+       struct trace_module_delta *module_delta;
+       struct trace_scratch *tscratch;
+       struct trace_mod_entry *entry;
+       int idx = 0, nr_entries;
+
+       /* If we don't have last boot delta, return the address */
+       if (!(tr->flags & TRACE_ARRAY_FL_LAST_BOOT))
+               return addr;
+
+       /* tr->module_delta must be protected by rcu. */
+       guard(rcu)();
+       tscratch = tr->scratch;
+       /* if there is no tscrach, module_delta must be NULL. */
+       module_delta = READ_ONCE(tr->module_delta);
+       if (!module_delta || tscratch->entries[0].mod_addr > addr)
+               return addr + tr->text_delta;
+
+       /* Note that entries must be sorted. */
+       nr_entries = tscratch->nr_entries;
+       if (nr_entries == 1 ||
+           tscratch->entries[nr_entries - 1].mod_addr < addr)
+               idx = nr_entries - 1;
+       else {
+               entry = __inline_bsearch((void *)addr,
+                               tscratch->entries,
+                               nr_entries - 1,
+                               sizeof(tscratch->entries[0]),
+                               cmp_mod_entry);
+               if (entry)
+                       idx = entry - tscratch->entries;
+       }
+
+       return addr + module_delta->delta[idx];
+}
+
 #ifdef CONFIG_MODULES
 static int save_mod(struct module *mod, void *data)
 {
@@ -6035,6 +6089,7 @@ static int save_mod(struct module *mod, void *data)
 
 static void update_last_data(struct trace_array *tr)
 {
+       struct trace_module_delta *module_delta;
        struct trace_scratch *tscratch;
 
        if (!(tr->flags & TRACE_ARRAY_FL_BOOT))
@@ -6073,6 +6128,9 @@ static void update_last_data(struct trace_array *tr)
                return;
 
        tscratch = tr->scratch;
+       module_delta = READ_ONCE(tr->module_delta);
+       WRITE_ONCE(tr->module_delta, NULL);
+       kfree_rcu(module_delta, rcu);
 
        /* Set the persistent ring buffer meta data to this address */
 #ifdef CONFIG_RANDOMIZE_BASE
@@ -9355,10 +9413,51 @@ static struct dentry *trace_instance_dir;
 static void
 init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer);
 
+#ifdef CONFIG_MODULES
+static int make_mod_delta(struct module *mod, void *data)
+{
+       struct trace_module_delta *module_delta;
+       struct trace_scratch *tscratch;
+       struct trace_mod_entry *entry;
+       struct trace_array *tr = data;
+       int i;
+
+       tscratch = tr->scratch;
+       module_delta = READ_ONCE(tr->module_delta);
+       for (i = 0; i < tscratch->nr_entries; i++) {
+               entry = &tscratch->entries[i];
+               if (strcmp(mod->name, entry->mod_name))
+                       continue;
+               if (mod->state == MODULE_STATE_GOING)
+                       module_delta->delta[i] = 0;
+               else
+                       module_delta->delta[i] = (unsigned long)mod->mem[MOD_TEXT].base
+                                                - entry->mod_addr;
+               break;
+       }
+       return 0;
+}
+#else
+static int make_mod_delta(struct module *mod, void *data)
+{
+       return 0;
+}
+#endif
+
+static int mod_addr_comp(const void *a, const void *b, const void *data)
+{
+       const struct trace_mod_entry *e1 = a;
+       const struct trace_mod_entry *e2 = b;
+
+       return e1->mod_addr > e2->mod_addr ? 1 : -1;
+}
+
 static void setup_trace_scratch(struct trace_array *tr,
                                struct trace_scratch *tscratch, unsigned int size)
 {
+       struct trace_module_delta *module_delta;
        struct trace_mod_entry *entry;
+       int i, nr_entries;
 
        if (!tscratch)
                return;
@@ -9375,7 +9474,7 @@ static void setup_trace_scratch(struct trace_array *tr,
                goto reset;
 
        /* Check if each module name is a valid string */
-       for (int i = 0; i < tscratch->nr_entries; i++) {
+       for (i = 0; i < tscratch->nr_entries; i++) {
                int n;
 
                entry = &tscratch->entries[i];
@@ -9389,6 +9488,25 @@ static void setup_trace_scratch(struct trace_array *tr,
                if (n == MODULE_NAME_LEN)
                        goto reset;
        }
+
+       /* Sort the entries so that we can find appropriate module from address. */
+       nr_entries = tscratch->nr_entries;
+       sort_r(tscratch->entries, nr_entries, sizeof(struct trace_mod_entry),
+              mod_addr_comp, NULL, NULL);
+
+       if (IS_ENABLED(CONFIG_MODULES)) {
+               module_delta = kzalloc(struct_size(module_delta, delta, nr_entries), GFP_KERNEL);
+               if (!module_delta) {
+                       pr_info("module_delta allocation failed. Not able to decode module address.");
+                       goto reset;
+               }
+               init_rcu_head(&module_delta->rcu);
+       } else
+               module_delta = NULL;
+       WRITE_ONCE(tr->module_delta, module_delta);
+
+       /* Scan modules to make text delta for modules. */
+       module_for_each_mod(make_mod_delta, tr);
        return;
  reset:
        /* Invalid trace modules */
@@ -10105,16 +10223,20 @@ static void trace_module_remove_evals(struct module *mod)
 static inline void trace_module_remove_evals(struct module *mod) { }
 #endif /* CONFIG_TRACE_EVAL_MAP_FILE */
 
-static void trace_module_record(struct module *mod)
+static void trace_module_record(struct module *mod, bool add)
 {
        struct trace_array *tr;
+       unsigned long flags;
 
        list_for_each_entry(tr, &ftrace_trace_arrays, list) {
+               flags = tr->flags & (TRACE_ARRAY_FL_BOOT | TRACE_ARRAY_FL_LAST_BOOT);
                /* Update any persistent trace array that has already been started */
-               if ((tr->flags & (TRACE_ARRAY_FL_BOOT | TRACE_ARRAY_FL_LAST_BOOT)) ==
-                   TRACE_ARRAY_FL_BOOT) {
+               if (flags == TRACE_ARRAY_FL_BOOT && add) {
                        guard(mutex)(&scratch_mutex);
                        save_mod(mod, tr);
+               } else if (flags & TRACE_ARRAY_FL_LAST_BOOT) {
+                       /* Update delta if the module loaded in previous boot */
+                       make_mod_delta(mod, tr);
                }
        }
 }
@@ -10127,10 +10249,11 @@ static int trace_module_notify(struct notifier_block *self,
        switch (val) {
        case MODULE_STATE_COMING:
                trace_module_add_evals(mod);
-               trace_module_record(mod);
+               trace_module_record(mod, true);
                break;
        case MODULE_STATE_GOING:
                trace_module_remove_evals(mod);
+               trace_module_record(mod, false);
                break;
        }
 
index 0d6efb8a1179c244ffaae07f1e5e71a35d90cbc3..ab7c7a1930ccc9d68e31f1e9a0b939e27f804efe 100644 (file)
@@ -312,6 +312,11 @@ struct trace_func_repeats {
        u64             ts_last_call;
 };
 
+struct trace_module_delta {
+       struct rcu_head rcu;
+       long            delta[];
+};
+
 /*
  * The trace array - an array of per-CPU trace arrays. This is the
  * highest level data structure that individual tracers deal with.
@@ -350,6 +355,7 @@ struct trace_array {
        unsigned long           range_addr_size;
        char                    *range_name;
        long                    text_delta;
+       struct trace_module_delta *module_delta;
        void                    *scratch; /* pointer in persistent memory */
        int                     scratch_size;
 
@@ -466,6 +472,8 @@ extern int tracing_set_clock(struct trace_array *tr, const char *clockstr);
 
 extern bool trace_clock_in_ns(struct trace_array *tr);
 
+extern unsigned long trace_adjust_address(struct trace_array *tr, unsigned long addr);
+
 /*
  * The global tracer (top) should be the first trace array added,
  * but we check the flag anyway.
index 03d56f711ad14ee0c5b8d7612840af61ed65f2f3..1ad54fcf25cb980dc3c9e5d73fc1118bd0d4797f 100644 (file)
@@ -5,6 +5,7 @@
  * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
  *
  */
+#include "trace.h"
 #include <linux/module.h>
 #include <linux/mutex.h>
 #include <linux/ftrace.h>
@@ -1248,7 +1249,6 @@ static enum print_line_t trace_stack_print(struct trace_iterator *iter,
        struct trace_seq *s = &iter->seq;
        unsigned long *p;
        unsigned long *end;
-       long delta = iter->tr->text_delta;
 
        trace_assign_type(field, iter->ent);
        end = (unsigned long *)((long)iter->ent + iter->ent_size);
@@ -1265,7 +1265,7 @@ static enum print_line_t trace_stack_print(struct trace_iterator *iter,
                        trace_seq_puts(s, "[FTRACE TRAMPOLINE]\n");
                        continue;
                }
-               seq_print_ip_sym(s, (*p) + delta, flags);
+               seq_print_ip_sym(s, trace_adjust_address(iter->tr, *p), flags);
                trace_seq_putc(s, '\n');
        }