Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 1 | /* Module internals |
| 2 | * |
| 3 | * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public Licence |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the Licence, or (at your option) any later version. |
| 10 | */ |
| 11 | |
Jessica Yu | f314dfe | 2018-06-29 16:37:08 +0200 | [diff] [blame] | 12 | #include <linux/elf.h> |
| 13 | #include <asm/module.h> |
| 14 | |
| 15 | struct load_info { |
| 16 | const char *name; |
| 17 | /* pointer to module in temporary copy, freed at end of load_module() */ |
| 18 | struct module *mod; |
| 19 | Elf_Ehdr *hdr; |
| 20 | unsigned long len; |
| 21 | Elf_Shdr *sechdrs; |
| 22 | char *secstrings, *strtab; |
Eugene Loh | 1c7651f | 2019-02-25 11:59:58 -0800 | [diff] [blame^] | 23 | unsigned long symoffs, stroffs, init_typeoffs, core_typeoffs; |
Jessica Yu | f314dfe | 2018-06-29 16:37:08 +0200 | [diff] [blame] | 24 | struct _ddebug *debug; |
| 25 | unsigned int num_debug; |
| 26 | bool sig_ok; |
| 27 | #ifdef CONFIG_KALLSYMS |
| 28 | unsigned long mod_kallsyms_init_off; |
| 29 | #endif |
| 30 | struct { |
| 31 | unsigned int sym, str, mod, vers, info, pcpu; |
| 32 | } index; |
| 33 | }; |
| 34 | |
| 35 | extern int mod_verify_sig(const void *mod, struct load_info *info); |