]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
tracing: Have reserve_mem use phys_to_virt() and separate from memmap buffer
authorSteven Rostedt <rostedt@goodmis.org>
Wed, 2 Apr 2025 14:49:05 +0000 (10:49 -0400)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Wed, 2 Apr 2025 15:02:26 +0000 (11:02 -0400)
The reserve_mem kernel command line option may pass back a physical
address, but the memory is still part of the normal memory just like
using memblock_alloc() would be. This means that the physical memory
returned by the reserve_mem command line option can be converted directly
to virtual memory by simply using phys_to_virt().

When freeing the buffer there's no need to call vunmap() anymore as the
memory allocated by reserve_mem is freed by the call to
reserve_mem_release_by_name().

Because the persistent ring buffer can also be allocated via the memmap
option, which *is* different than normal memory as it cannot be added back
to the buddy system, it must be treated differently. It still needs to be
virtually mapped to have access to it. It also can not be freed nor can it
ever be memory mapped to user space.

Create a new trace_array flag called TRACE_ARRAY_FL_MEMMAP which gets set
if the buffer is created by the memmap option, and this will prevent the
buffer from being memory mapped by user space.

Also increment the ref count for memmap'ed buffers so that they can never
be freed.

Link: https://lore.kernel.org/all/Z-wFszhJ_9o4dc8O@kernel.org/
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Vincent Donnefort <vdonnefort@google.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Jann Horn <jannh@google.com>
Link: https://lore.kernel.org/20250402144953.583750106@goodmis.org
Suggested-by: Mike Rapoport <rppt@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/trace.c
kernel/trace/trace.h

index 96129985e81c1793aa35420e3d189c2c1d9766ce..e58b72e615732ba90b4d4630e0a4fe3f7780eac2 100644 (file)
@@ -8492,6 +8492,10 @@ static int tracing_buffers_mmap(struct file *filp, struct vm_area_struct *vma)
        struct trace_iterator *iter = &info->iter;
        int ret = 0;
 
+       /* A memmap'ed buffer is not supported for user space mmap */
+       if (iter->tr->flags & TRACE_ARRAY_FL_MEMMAP)
+               return -ENODEV;
+
        /* Currently the boot mapped buffer is not supported for mmap */
        if (iter->tr->flags & TRACE_ARRAY_FL_BOOT)
                return -ENODEV;
@@ -9600,9 +9604,6 @@ static void free_trace_buffers(struct trace_array *tr)
 #ifdef CONFIG_TRACER_MAX_TRACE
        free_trace_buffer(&tr->max_buffer);
 #endif
-
-       if (tr->range_addr_start)
-               vunmap((void *)tr->range_addr_start);
 }
 
 static void init_trace_flags_index(struct trace_array *tr)
@@ -10696,6 +10697,7 @@ static inline void do_allocate_snapshot(const char *name) { }
 __init static void enable_instances(void)
 {
        struct trace_array *tr;
+       bool memmap_area = false;
        char *curr_str;
        char *name;
        char *str;
@@ -10764,6 +10766,7 @@ __init static void enable_instances(void)
                                        name);
                                continue;
                        }
+                       memmap_area = true;
                } else if (tok) {
                        if (!reserve_mem_find_by_name(tok, &start, &size)) {
                                start = 0;
@@ -10784,7 +10787,10 @@ __init static void enable_instances(void)
                                continue;
                        }
 
-                       addr = map_pages(start, size);
+                       if (memmap_area)
+                               addr = map_pages(start, size);
+                       else
+                               addr = (unsigned long)phys_to_virt(start);
                        if (addr) {
                                pr_info("Tracing: mapped boot instance %s at physical memory %pa of size 0x%lx\n",
                                        name, &start, (unsigned long)size);
@@ -10811,10 +10817,13 @@ __init static void enable_instances(void)
                        update_printk_trace(tr);
 
                /*
-                * If start is set, then this is a mapped buffer, and
-                * cannot be deleted by user space, so keep the reference
-                * to it.
+                * memmap'd buffers can not be freed.
                 */
+               if (memmap_area) {
+                       tr->flags |= TRACE_ARRAY_FL_MEMMAP;
+                       tr->ref++;
+               }
+
                if (start) {
                        tr->flags |= TRACE_ARRAY_FL_BOOT | TRACE_ARRAY_FL_LAST_BOOT;
                        tr->range_name = no_free_ptr(rname);
index ab7c7a1930ccc9d68e31f1e9a0b939e27f804efe..9d9dcfad62696fe5fbb6b309fdd44c6028c8359a 100644 (file)
@@ -446,6 +446,7 @@ enum {
        TRACE_ARRAY_FL_BOOT             = BIT(1),
        TRACE_ARRAY_FL_LAST_BOOT        = BIT(2),
        TRACE_ARRAY_FL_MOD_INIT         = BIT(3),
+       TRACE_ARRAY_FL_MEMMAP           = BIT(4),
 };
 
 #ifdef CONFIG_MODULES