]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
alloc_tag: populate memory for module tags as needed
authorSuren Baghdasaryan <surenb@google.com>
Wed, 23 Oct 2024 17:07:57 +0000 (10:07 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Thu, 7 Nov 2024 22:25:16 +0000 (14:25 -0800)
The memory reserved for module tags does not need to be backed by physical
pages until there are tags to store there.  Change the way we reserve this
memory to allocate only virtual area for the tags and populate it with
physical pages as needed when we load a module.

[surenb@google.com: avoid execmem_vmap() when !MMU]
Link: https://lkml.kernel.org/r/20241031233611.3833002-1-surenb@google.com
Link: https://lkml.kernel.org/r/20241023170759.999909-5-surenb@google.com
Signed-off-by: Suren Baghdasaryan <surenb@google.com>
Reviewed-by: Pasha Tatashin <pasha.tatashin@soleen.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Borislav Petkov (AMD) <bp@alien8.de>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Daniel Gomez <da.gomez@samsung.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Cc: David Rientjes <rientjes@google.com>
Cc: Dennis Zhou <dennis@kernel.org>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: John Hubbard <jhubbard@nvidia.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Kalesh Singh <kaleshsingh@google.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Kent Overstreet <kent.overstreet@linux.dev>
Cc: Liam R. Howlett <Liam.Howlett@Oracle.com>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Cc: Matthew Wilcox <willy@infradead.org>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Mike Rapoport (Microsoft) <rppt@kernel.org>
Cc: Minchan Kim <minchan@google.com>
Cc: Paul E. McKenney <paulmck@kernel.org>
Cc: Petr Pavlu <petr.pavlu@suse.com>
Cc: Roman Gushchin <roman.gushchin@linux.dev>
Cc: Sami Tolvanen <samitolvanen@google.com>
Cc: Sourav Panda <souravpanda@google.com>
Cc: Steven Rostedt (Google) <rostedt@goodmis.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Thomas Huth <thuth@redhat.com>
Cc: Uladzislau Rezki (Sony) <urezki@gmail.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Xiongwei Song <xiongwei.song@windriver.com>
Cc: Yu Zhao <yuzhao@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/execmem.h
include/linux/vmalloc.h
lib/Kconfig.debug
lib/alloc_tag.c
mm/execmem.c
mm/internal.h
mm/vmalloc.c

index 1517fa196bf73fa5f62d454ad4d2bc81d4f9e8b7..64130ae19690a903eeb106f8592ddb073fe66046 100644 (file)
@@ -139,6 +139,18 @@ void *execmem_alloc(enum execmem_type type, size_t size);
  */
 void execmem_free(void *ptr);
 
+#ifdef CONFIG_MMU
+/**
+ * execmem_vmap - create virtual mapping for EXECMEM_MODULE_DATA memory
+ * @size: size of the virtual mapping in bytes
+ *
+ * Maps virtually contiguous area in the range suitable for EXECMEM_MODULE_DATA.
+ *
+ * Return: the area descriptor on success or %NULL on failure.
+ */
+struct vm_struct *execmem_vmap(size_t size);
+#endif
+
 /**
  * execmem_update_copy - copy an update to executable memory
  * @dst:  destination address to update
index 27408f21e501e9ea450649b2f3950c606a6cae41..31e9ffd936e39334ddaff910222d4751c18da5e7 100644 (file)
@@ -202,6 +202,9 @@ extern int remap_vmalloc_range_partial(struct vm_area_struct *vma,
 extern int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
                                                        unsigned long pgoff);
 
+int vmap_pages_range(unsigned long addr, unsigned long end, pgprot_t prot,
+                    struct page **pages, unsigned int page_shift);
+
 /*
  * Architectures can set this mask to a combination of PGTBL_P?D_MODIFIED values
  * and let generic vmalloc and ioremap code know when arch_sync_kernel_mappings()
index 7312ae7c3cc57b9d7e12286b4218206811d9705b..6798bbbcbd321f961999aded7671799be827369a 100644 (file)
@@ -993,6 +993,7 @@ config CODE_TAGGING
 config MEM_ALLOC_PROFILING
        bool "Enable memory allocation profiling"
        default n
+       depends on MMU
        depends on PROC_FS
        depends on !DEBUG_FORCE_WEAK_PER_CPU
        select CODE_TAGGING
index 5f9cd1642d58eaa49905a45e735c0986dd769e00..4a7fc081b7899e405825d2c91e82de72cdfec37d 100644 (file)
@@ -8,14 +8,15 @@
 #include <linux/proc_fs.h>
 #include <linux/seq_buf.h>
 #include <linux/seq_file.h>
+#include <linux/vmalloc.h>
 
 #define ALLOCINFO_FILE_NAME            "allocinfo"
 #define MODULE_ALLOC_TAG_VMAP_SIZE     (100000UL * sizeof(struct alloc_tag))
 
 #ifdef CONFIG_MEM_ALLOC_PROFILING_ENABLED_BY_DEFAULT
-static bool mem_profiling_support __meminitdata = true;
+static bool mem_profiling_support = true;
 #else
-static bool mem_profiling_support __meminitdata;
+static bool mem_profiling_support;
 #endif
 
 static struct codetag_type *alloc_tag_cttype;
@@ -154,7 +155,7 @@ size_t alloc_tag_top_users(struct codetag_bytes *tags, size_t count, bool can_sl
        return nr;
 }
 
-static void __init shutdown_mem_profiling(void)
+static void shutdown_mem_profiling(void)
 {
        if (mem_alloc_profiling_enabled())
                static_branch_disable(&mem_alloc_profiling_key);
@@ -179,6 +180,7 @@ static void __init procfs_init(void)
 #ifdef CONFIG_MODULES
 
 static struct maple_tree mod_area_mt = MTREE_INIT(mod_area_mt, MT_FLAGS_ALLOC_RANGE);
+static struct vm_struct *vm_module_tags;
 /* A dummy object used to indicate an unloaded module */
 static struct module unloaded_mod;
 /* A dummy object used to indicate a module prepended area */
@@ -252,6 +254,33 @@ repeat:
        return false;
 }
 
+static int vm_module_tags_populate(void)
+{
+       unsigned long phys_size = vm_module_tags->nr_pages << PAGE_SHIFT;
+
+       if (phys_size < module_tags.size) {
+               struct page **next_page = vm_module_tags->pages + vm_module_tags->nr_pages;
+               unsigned long addr = module_tags.start_addr + phys_size;
+               unsigned long more_pages;
+               unsigned long nr;
+
+               more_pages = ALIGN(module_tags.size - phys_size, PAGE_SIZE) >> PAGE_SHIFT;
+               nr = alloc_pages_bulk_array_node(GFP_KERNEL | __GFP_NOWARN,
+                                                NUMA_NO_NODE, more_pages, next_page);
+               if (nr < more_pages ||
+                   vmap_pages_range(addr, addr + (nr << PAGE_SHIFT), PAGE_KERNEL,
+                                    next_page, PAGE_SHIFT) < 0) {
+                       /* Clean up and error out */
+                       for (int i = 0; i < nr; i++)
+                               __free_page(next_page[i]);
+                       return -ENOMEM;
+               }
+               vm_module_tags->nr_pages += nr;
+       }
+
+       return 0;
+}
+
 static void *reserve_module_tags(struct module *mod, unsigned long size,
                                 unsigned int prepend, unsigned long align)
 {
@@ -310,8 +339,18 @@ unlock:
        if (IS_ERR(ret))
                return ret;
 
-       if (module_tags.size < offset + size)
+       if (module_tags.size < offset + size) {
+               int grow_res;
+
                module_tags.size = offset + size;
+               grow_res = vm_module_tags_populate();
+               if (grow_res) {
+                       shutdown_mem_profiling();
+                       pr_err("Failed to allocate memory for allocation tags in the module %s. Memory allocation profiling is disabled!\n",
+                              mod->name);
+                       return ERR_PTR(grow_res);
+               }
+       }
 
        return (struct alloc_tag *)(module_tags.start_addr + offset);
 }
@@ -372,12 +411,23 @@ static void replace_module(struct module *mod, struct module *new_mod)
 
 static int __init alloc_mod_tags_mem(void)
 {
-       /* Allocate space to copy allocation tags */
-       module_tags.start_addr = (unsigned long)execmem_alloc(EXECMEM_MODULE_DATA,
-                                                             MODULE_ALLOC_TAG_VMAP_SIZE);
-       if (!module_tags.start_addr)
+       /* Map space to copy allocation tags */
+       vm_module_tags = execmem_vmap(MODULE_ALLOC_TAG_VMAP_SIZE);
+       if (!vm_module_tags) {
+               pr_err("Failed to map %lu bytes for module allocation tags\n",
+                       MODULE_ALLOC_TAG_VMAP_SIZE);
+               module_tags.start_addr = 0;
                return -ENOMEM;
+       }
 
+       vm_module_tags->pages = kmalloc_array(get_vm_area_size(vm_module_tags) >> PAGE_SHIFT,
+                                       sizeof(struct page *), GFP_KERNEL | __GFP_ZERO);
+       if (!vm_module_tags->pages) {
+               free_vm_area(vm_module_tags);
+               return -ENOMEM;
+       }
+
+       module_tags.start_addr = (unsigned long)vm_module_tags->addr;
        module_tags.end_addr = module_tags.start_addr + MODULE_ALLOC_TAG_VMAP_SIZE;
 
        return 0;
@@ -385,8 +435,13 @@ static int __init alloc_mod_tags_mem(void)
 
 static void __init free_mod_tags_mem(void)
 {
-       execmem_free((void *)module_tags.start_addr);
+       int i;
+
        module_tags.start_addr = 0;
+       for (i = 0; i < vm_module_tags->nr_pages; i++)
+               __free_page(vm_module_tags->pages[i]);
+       kfree(vm_module_tags->pages);
+       free_vm_area(vm_module_tags);
 }
 
 #else /* CONFIG_MODULES */
index 576a57e2161f9b8cc7253b5a947f6d0cca4931b8..317b6a8d35be070a0a426eb1eba8d947e8b7e5f5 100644 (file)
@@ -64,6 +64,22 @@ static void *execmem_vmalloc(struct execmem_range *range, size_t size,
 
        return p;
 }
+
+struct vm_struct *execmem_vmap(size_t size)
+{
+       struct execmem_range *range = &execmem_info->ranges[EXECMEM_MODULE_DATA];
+       struct vm_struct *area;
+
+       area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
+                                 range->start, range->end, NUMA_NO_NODE,
+                                 GFP_KERNEL, __builtin_return_address(0));
+       if (!area && range->fallback_start)
+               area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
+                                         range->fallback_start, range->fallback_end,
+                                         NUMA_NO_NODE, GFP_KERNEL, __builtin_return_address(0));
+
+       return area;
+}
 #else
 static void *execmem_vmalloc(struct execmem_range *range, size_t size,
                             pgprot_t pgprot, unsigned long vm_flags)
index 3dc745ba76dd45249157ee7af1526949e41a3e43..cd96848be245cf47fa59c2fc45f7969253eb69b5 100644 (file)
@@ -1263,6 +1263,12 @@ int numa_migrate_check(struct folio *folio, struct vm_fault *vmf,
 void free_zone_device_folio(struct folio *folio);
 int migrate_device_coherent_folio(struct folio *folio);
 
+struct vm_struct *__get_vm_area_node(unsigned long size,
+                                    unsigned long align, unsigned long shift,
+                                    unsigned long flags, unsigned long start,
+                                    unsigned long end, int node, gfp_t gfp_mask,
+                                    const void *caller);
+
 /*
  * mm/gup.c
  */
index 74c0a5eae2102a7ea7a52ef72666c789b3d8c4e6..7ed39d1042015cd63f43ba24ac02a6aa8b13d5d1 100644 (file)
@@ -653,7 +653,7 @@ int vmap_pages_range_noflush(unsigned long addr, unsigned long end,
  * RETURNS:
  * 0 on success, -errno on failure.
  */
-static int vmap_pages_range(unsigned long addr, unsigned long end,
+int vmap_pages_range(unsigned long addr, unsigned long end,
                pgprot_t prot, struct page **pages, unsigned int page_shift)
 {
        int err;
@@ -3106,7 +3106,7 @@ static void clear_vm_uninitialized_flag(struct vm_struct *vm)
        vm->flags &= ~VM_UNINITIALIZED;
 }
 
-static struct vm_struct *__get_vm_area_node(unsigned long size,
+struct vm_struct *__get_vm_area_node(unsigned long size,
                unsigned long align, unsigned long shift, unsigned long flags,
                unsigned long start, unsigned long end, int node,
                gfp_t gfp_mask, const void *caller)