2019-05-20 20:08:01 +03:00
/* SPDX-License-Identifier: GPL-2.0-or-later */
2012-09-26 13:09:40 +04:00
/* Module internals
*
* Copyright ( C ) 2012 Red Hat , Inc . All Rights Reserved .
* Written by David Howells ( dhowells @ redhat . com )
*/
2018-06-29 17:37:08 +03:00
# include <linux/elf.h>
2022-03-22 17:03:33 +03:00
# include <linux/compiler.h>
# include <linux/module.h>
2022-03-22 17:03:32 +03:00
# include <linux/mutex.h>
# ifndef ARCH_SHF_SMALL
# define ARCH_SHF_SMALL 0
# endif
/* If this is set, the section belongs in the init part of the module */
# define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG - 1))
/* Maximum number of characters written by module_flags() */
# define MODULE_FLAGS_BUF_SIZE (TAINT_FLAGS_COUNT + 4)
extern struct mutex module_mutex ;
extern struct list_head modules ;
/* Provided by the linker */
extern const struct kernel_symbol __start___ksymtab [ ] ;
extern const struct kernel_symbol __stop___ksymtab [ ] ;
extern const struct kernel_symbol __start___ksymtab_gpl [ ] ;
extern const struct kernel_symbol __stop___ksymtab_gpl [ ] ;
extern const s32 __start___kcrctab [ ] ;
extern const s32 __start___kcrctab_gpl [ ] ;
2018-06-29 17:37:08 +03:00
struct load_info {
const char * name ;
/* pointer to module in temporary copy, freed at end of load_module() */
struct module * mod ;
Elf_Ehdr * hdr ;
unsigned long len ;
Elf_Shdr * sechdrs ;
char * secstrings , * strtab ;
2019-02-25 22:59:58 +03:00
unsigned long symoffs , stroffs , init_typeoffs , core_typeoffs ;
2018-06-29 17:37:08 +03:00
struct _ddebug * debug ;
unsigned int num_debug ;
bool sig_ok ;
# ifdef CONFIG_KALLSYMS
unsigned long mod_kallsyms_init_off ;
2022-01-06 00:55:12 +03:00
# endif
# ifdef CONFIG_MODULE_DECOMPRESS
struct page * * pages ;
unsigned int max_pages ;
unsigned int used_pages ;
2018-06-29 17:37:08 +03:00
# endif
struct {
unsigned int sym , str , mod , vers , info , pcpu ;
} index ;
} ;
2022-03-22 17:03:33 +03:00
int mod_verify_sig ( const void * mod , struct load_info * info ) ;
2022-01-06 00:55:12 +03:00
2022-03-22 17:03:34 +03:00
# ifdef CONFIG_LIVEPATCH
int copy_module_elf ( struct module * mod , struct load_info * info ) ;
void free_module_elf ( struct module * mod ) ;
# else /* !CONFIG_LIVEPATCH */
static inline int copy_module_elf ( struct module * mod , struct load_info * info )
{
return 0 ;
}
static inline void free_module_elf ( struct module * mod ) { }
# endif /* CONFIG_LIVEPATCH */
static inline bool set_livepatch_module ( struct module * mod )
{
# ifdef CONFIG_LIVEPATCH
mod - > klp = true ;
return true ;
# else
return false ;
# endif
}
2022-01-06 00:55:12 +03:00
# ifdef CONFIG_MODULE_DECOMPRESS
int module_decompress ( struct load_info * info , const void * buf , size_t size ) ;
void module_decompress_cleanup ( struct load_info * info ) ;
# else
static inline int module_decompress ( struct load_info * info ,
const void * buf , size_t size )
{
return - EOPNOTSUPP ;
}
2022-03-22 17:03:33 +03:00
2022-01-06 00:55:12 +03:00
static inline void module_decompress_cleanup ( struct load_info * info )
{
}
# endif