blob: d354341f8cc0c3e2cb00a89790523b43c32ddc7c [file] [log] [blame]
Rusty Russell106a4ee2012-09-26 10:09:40 +01001/* 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 Yuf314dfe2018-06-29 16:37:08 +020012#include <linux/elf.h>
13#include <asm/module.h>
14
15struct 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 Loh1c7651f2019-02-25 11:59:58 -080023 unsigned long symoffs, stroffs, init_typeoffs, core_typeoffs;
Jessica Yuf314dfe2018-06-29 16:37:08 +020024 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
35extern int mod_verify_sig(const void *mod, struct load_info *info);