]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
module: Split module_enable_rodata_ro()
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Thu, 5 Dec 2024 19:46:15 +0000 (20:46 +0100)
committerPetr Pavlu <petr.pavlu@suse.com>
Sun, 26 Jan 2025 12:05:24 +0000 (13:05 +0100)
module_enable_rodata_ro() is called twice, once before module init
to set rodata sections readonly and once after module init to set
rodata_after_init section readonly.

The second time, only the rodata_after_init section needs to be
set to read-only, no need to re-apply it to already set rodata.

Split module_enable_rodata_ro() in two.

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Tested-by: Daniel Gomez <da.gomez@samsung.com>
Reviewed-by: Luis Chamberlain <mcgrof@kernel.org>
Link: https://lore.kernel.org/r/e3b6ff0df7eac281c58bb02cecaeb377215daff3.1733427536.git.christophe.leroy@csgroup.eu
Signed-off-by: Petr Pavlu <petr.pavlu@suse.com>
kernel/module/internal.h
kernel/module/main.c
kernel/module/strict_rwx.c

index ac73da5f15bccfa6e280669c6ce048868120822b..b35c0ec54a895f1bc780aa4e6dd8a0ea933e036c 100644 (file)
@@ -327,7 +327,8 @@ static inline struct module *mod_find(unsigned long addr, struct mod_tree_root *
 }
 #endif /* CONFIG_MODULES_TREE_LOOKUP */
 
-int module_enable_rodata_ro(const struct module *mod, bool after_init);
+int module_enable_rodata_ro(const struct module *mod);
+int module_enable_rodata_ro_after_init(const struct module *mod);
 int module_enable_data_nx(const struct module *mod);
 int module_enable_text_rox(const struct module *mod);
 int module_enforce_rwx_sections(Elf_Ehdr *hdr, Elf_Shdr *sechdrs,
index 8154e1665cdb0954024b4be5703092d43afde736..8acec43e97dcce2df2dea7d0bcd29f545cf893bb 100644 (file)
@@ -2953,7 +2953,7 @@ static noinline int do_init_module(struct module *mod)
        /* Switch to core kallsyms now init is done: kallsyms may be walking! */
        rcu_assign_pointer(mod->kallsyms, &mod->core_kallsyms);
 #endif
-       ret = module_enable_rodata_ro(mod, true);
+       ret = module_enable_rodata_ro_after_init(mod);
        if (ret)
                goto fail_mutex_unlock;
        mod_tree_remove_init(mod);
@@ -3123,7 +3123,7 @@ static int complete_formation(struct module *mod, struct load_info *info)
        module_bug_finalize(info->hdr, info->sechdrs, mod);
        module_cfi_finalize(info->hdr, info->sechdrs, mod);
 
-       err = module_enable_rodata_ro(mod, false);
+       err = module_enable_rodata_ro(mod);
        if (err)
                goto out_strict_rwx;
        err = module_enable_data_nx(mod);
index 239e5013359d987d5d72c2f2bfe4b030f760f138..74834ba15615fa02d1fa72b913feedd7400af779 100644 (file)
@@ -47,7 +47,7 @@ int module_enable_text_rox(const struct module *mod)
        return 0;
 }
 
-int module_enable_rodata_ro(const struct module *mod, bool after_init)
+int module_enable_rodata_ro(const struct module *mod)
 {
        int ret;
 
@@ -61,12 +61,17 @@ int module_enable_rodata_ro(const struct module *mod, bool after_init)
        if (ret)
                return ret;
 
-       if (after_init)
-               return module_set_memory(mod, MOD_RO_AFTER_INIT, set_memory_ro);
-
        return 0;
 }
 
+int module_enable_rodata_ro_after_init(const struct module *mod)
+{
+       if (!IS_ENABLED(CONFIG_STRICT_MODULE_RWX) || !rodata_enabled)
+               return 0;
+
+       return module_set_memory(mod, MOD_RO_AFTER_INIT, set_memory_ro);
+}
+
 int module_enable_data_nx(const struct module *mod)
 {
        if (!IS_ENABLED(CONFIG_STRICT_MODULE_RWX))