1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_MODULELOADER_H
3 #define _LINUX_MODULELOADER_H
4 /* The stuff needed for archs to support modules. */
6 #include <linux/module.h>
9 /* These may be implemented by architectures that need to hook into the
10 * module loader code. Architectures that don't need to do anything special
11 * can just rely on the 'weak' default hooks defined in kernel/module.c.
12 * Note, however, that at least one of apply_relocate or apply_relocate_add
13 * must be implemented by each architecture.
16 /* arch may override to do additional checking of ELF header architecture */
17 bool module_elf_check_arch(Elf_Ehdr *hdr);
19 /* Adjust arch-specific sections. Return 0 on success. */
20 int module_frob_arch_sections(Elf_Ehdr *hdr,
25 /* Additional bytes needed by arch in front of individual sections */
26 unsigned int arch_mod_section_prepend(struct module *mod, unsigned int section);
28 /* Allocator used for allocating struct module, core sections and init
29 sections. Returns NULL on failure. */
30 void *module_alloc(unsigned long size);
32 /* Free memory returned from module_alloc. */
33 void module_memfree(void *module_region);
35 /* Determines if the section name is an init section (that is only used during
38 bool module_init_section(const char *name);
40 /* Determines if the section name is an exit section (that is only used during
43 bool module_exit_section(const char *name);
46 * Apply the given relocation to the (simplified) ELF. Return -error
49 #ifdef CONFIG_MODULES_USE_ELF_REL
50 int apply_relocate(Elf_Shdr *sechdrs,
52 unsigned int symindex,
56 static inline int apply_relocate(Elf_Shdr *sechdrs,
58 unsigned int symindex,
62 printk(KERN_ERR "module %s: REL relocation unsupported\n",
69 * Apply the given add relocation to the (simplified) ELF. Return
72 #ifdef CONFIG_MODULES_USE_ELF_RELA
73 int apply_relocate_add(Elf_Shdr *sechdrs,
75 unsigned int symindex,
79 static inline int apply_relocate_add(Elf_Shdr *sechdrs,
81 unsigned int symindex,
85 printk(KERN_ERR "module %s: REL relocation unsupported\n",
91 /* Any final processing of module before access. Return -error or 0. */
92 int module_finalize(const Elf_Ehdr *hdr,
93 const Elf_Shdr *sechdrs,
96 /* Any cleanup needed when module leaves. */
97 void module_arch_cleanup(struct module *mod);
99 /* Any cleanup before freeing mod->module_init */
100 void module_arch_freeing_init(struct module *mod);
102 #if (defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)) && \
103 !defined(CONFIG_KASAN_VMALLOC)
104 #include <linux/kasan.h>
105 #define MODULE_ALIGN (PAGE_SIZE << KASAN_SHADOW_SCALE_SHIFT)
107 #define MODULE_ALIGN PAGE_SIZE