Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | Copyright (C) 2002 Richard Henderson |
Rusty Russell | 51f3d0f | 2010-08-05 12:59:13 -0600 | [diff] [blame] | 3 | Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | This program is free software; you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation; either version 2 of the License, or |
| 8 | (at your option) any later version. |
| 9 | |
| 10 | This program is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License |
| 16 | along with this program; if not, write to the Free Software |
| 17 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 19 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/moduleloader.h> |
Steven Rostedt | 6d72373 | 2009-04-10 14:53:50 -0400 | [diff] [blame] | 21 | #include <linux/ftrace_event.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/init.h> |
Alexey Dobriyan | ae84e32 | 2007-05-08 00:28:38 -0700 | [diff] [blame] | 23 | #include <linux/kallsyms.h> |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 24 | #include <linux/file.h> |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 25 | #include <linux/fs.h> |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 26 | #include <linux/sysfs.h> |
Randy Dunlap | 9f15833 | 2005-09-13 01:25:16 -0700 | [diff] [blame] | 27 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/slab.h> |
| 29 | #include <linux/vmalloc.h> |
| 30 | #include <linux/elf.h> |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 31 | #include <linux/proc_fs.h> |
Kees Cook | 2e72d51 | 2012-10-16 07:32:07 +1030 | [diff] [blame] | 32 | #include <linux/security.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/seq_file.h> |
| 34 | #include <linux/syscalls.h> |
| 35 | #include <linux/fcntl.h> |
| 36 | #include <linux/rcupdate.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 37 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/cpu.h> |
| 39 | #include <linux/moduleparam.h> |
| 40 | #include <linux/errno.h> |
| 41 | #include <linux/err.h> |
| 42 | #include <linux/vermagic.h> |
| 43 | #include <linux/notifier.h> |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 44 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/device.h> |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 46 | #include <linux/string.h> |
Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 47 | #include <linux/mutex.h> |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 48 | #include <linux/rculist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <asm/cacheflush.h> |
Bernd Schmidt | eb8cdec | 2009-09-21 17:03:57 -0700 | [diff] [blame] | 51 | #include <asm/mmu_context.h> |
Sam Ravnborg | b817f6f | 2006-06-09 21:53:55 +0200 | [diff] [blame] | 52 | #include <linux/license.h> |
Christoph Lameter | 6d76239 | 2008-02-08 04:18:42 -0800 | [diff] [blame] | 53 | #include <asm/sections.h> |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 54 | #include <linux/tracepoint.h> |
Steven Rostedt | 90d595f | 2008-08-14 15:45:09 -0400 | [diff] [blame] | 55 | #include <linux/ftrace.h> |
Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 56 | #include <linux/async.h> |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 57 | #include <linux/percpu.h> |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 58 | #include <linux/kmemleak.h> |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 59 | #include <linux/jump_label.h> |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 60 | #include <linux/pfn.h> |
Alessio Igor Bogani | 403ed27 | 2011-04-20 11:10:52 +0200 | [diff] [blame] | 61 | #include <linux/bsearch.h> |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 62 | #include <uapi/linux/module.h> |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 63 | #include "module-internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Li Zefan | 7ead8b8 | 2009-08-17 16:56:28 +0800 | [diff] [blame] | 65 | #define CREATE_TRACE_POINTS |
| 66 | #include <trace/events/module.h> |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #ifndef ARCH_SHF_SMALL |
| 69 | #define ARCH_SHF_SMALL 0 |
| 70 | #endif |
| 71 | |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 72 | /* |
| 73 | * Modules' sections will be aligned on page boundaries |
| 74 | * to ensure complete separation of code and data, but |
| 75 | * only when CONFIG_DEBUG_SET_MODULE_RONX=y |
| 76 | */ |
| 77 | #ifdef CONFIG_DEBUG_SET_MODULE_RONX |
| 78 | # define debug_align(X) ALIGN(X, PAGE_SIZE) |
| 79 | #else |
| 80 | # define debug_align(X) (X) |
| 81 | #endif |
| 82 | |
| 83 | /* |
| 84 | * Given BASE and SIZE this macro calculates the number of pages the |
| 85 | * memory regions occupies |
| 86 | */ |
| 87 | #define MOD_NUMBER_OF_PAGES(BASE, SIZE) (((SIZE) > 0) ? \ |
| 88 | (PFN_DOWN((unsigned long)(BASE) + (SIZE) - 1) - \ |
| 89 | PFN_DOWN((unsigned long)BASE) + 1) \ |
| 90 | : (0UL)) |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* If this is set, the section belongs in the init part of the module */ |
| 93 | #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1)) |
| 94 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 95 | /* |
| 96 | * Mutex protects: |
| 97 | * 1) List of modules (also safely readable with preempt_disable), |
| 98 | * 2) module_use links, |
| 99 | * 3) module_addr_min/module_addr_max. |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 100 | * (delete and add uses RCU list operations). */ |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 101 | DEFINE_MUTEX(module_mutex); |
| 102 | EXPORT_SYMBOL_GPL(module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | static LIST_HEAD(modules); |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 104 | #ifdef CONFIG_KGDB_KDB |
| 105 | struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */ |
| 106 | #endif /* CONFIG_KGDB_KDB */ |
| 107 | |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 108 | #ifdef CONFIG_MODULE_SIG |
| 109 | #ifdef CONFIG_MODULE_SIG_FORCE |
| 110 | static bool sig_enforce = true; |
| 111 | #else |
| 112 | static bool sig_enforce = false; |
| 113 | |
| 114 | static int param_set_bool_enable_only(const char *val, |
| 115 | const struct kernel_param *kp) |
| 116 | { |
| 117 | int err; |
| 118 | bool test; |
| 119 | struct kernel_param dummy_kp = *kp; |
| 120 | |
| 121 | dummy_kp.arg = &test; |
| 122 | |
| 123 | err = param_set_bool(val, &dummy_kp); |
| 124 | if (err) |
| 125 | return err; |
| 126 | |
| 127 | /* Don't let them unset it once it's set! */ |
| 128 | if (!test && sig_enforce) |
| 129 | return -EROFS; |
| 130 | |
| 131 | if (test) |
| 132 | sig_enforce = true; |
| 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | static const struct kernel_param_ops param_ops_bool_enable_only = { |
Jani Nikula | 6a4c264 | 2014-08-27 06:21:23 +0930 | [diff] [blame] | 137 | .flags = KERNEL_PARAM_OPS_FL_NOARG, |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 138 | .set = param_set_bool_enable_only, |
| 139 | .get = param_get_bool, |
| 140 | }; |
| 141 | #define param_check_bool_enable_only param_check_bool |
| 142 | |
| 143 | module_param(sig_enforce, bool_enable_only, 0644); |
| 144 | #endif /* !CONFIG_MODULE_SIG_FORCE */ |
| 145 | #endif /* CONFIG_MODULE_SIG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
Stephen Rothwell | 19e4529 | 2009-04-14 17:27:18 +1000 | [diff] [blame] | 147 | /* Block module loading/unloading? */ |
| 148 | int modules_disabled = 0; |
Dave Young | 02608be | 2012-02-01 10:33:14 +0800 | [diff] [blame] | 149 | core_param(nomodule, modules_disabled, bint, 0); |
Stephen Rothwell | 19e4529 | 2009-04-14 17:27:18 +1000 | [diff] [blame] | 150 | |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 151 | /* Waiting for a module to finish initializing? */ |
| 152 | static DECLARE_WAIT_QUEUE_HEAD(module_wq); |
| 153 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 154 | static BLOCKING_NOTIFIER_HEAD(module_notify_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 156 | /* Bounds of module allocation, for speeding __module_address. |
| 157 | * Protected by module_mutex. */ |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 158 | static unsigned long module_addr_min = -1UL, module_addr_max = 0; |
| 159 | |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 160 | int register_module_notifier(struct notifier_block *nb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 162 | return blocking_notifier_chain_register(&module_notify_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | EXPORT_SYMBOL(register_module_notifier); |
| 165 | |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 166 | int unregister_module_notifier(struct notifier_block *nb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 168 | return blocking_notifier_chain_unregister(&module_notify_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | EXPORT_SYMBOL(unregister_module_notifier); |
| 171 | |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 172 | struct load_info { |
| 173 | Elf_Ehdr *hdr; |
| 174 | unsigned long len; |
| 175 | Elf_Shdr *sechdrs; |
Rusty Russell | 6526c53 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 176 | char *secstrings, *strtab; |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 177 | unsigned long symoffs, stroffs; |
Rusty Russell | 811d66a | 2010-08-05 12:59:12 -0600 | [diff] [blame] | 178 | struct _ddebug *debug; |
| 179 | unsigned int num_debug; |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 180 | bool sig_ok; |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 181 | struct { |
| 182 | unsigned int sym, str, mod, vers, info, pcpu; |
| 183 | } index; |
| 184 | }; |
| 185 | |
Matti Linnanvuori | 9a4b970 | 2007-11-08 08:37:38 -0800 | [diff] [blame] | 186 | /* We require a truly strong try_module_get(): 0 means failure due to |
| 187 | ongoing or failed initialization etc. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | static inline int strong_try_module_get(struct module *mod) |
| 189 | { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 190 | BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | if (mod && mod->state == MODULE_STATE_COMING) |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 192 | return -EBUSY; |
| 193 | if (try_module_get(mod)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | return 0; |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 195 | else |
| 196 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 199 | static inline void add_taint_module(struct module *mod, unsigned flag, |
| 200 | enum lockdep_ok lockdep_ok) |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 201 | { |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 202 | add_taint(flag, lockdep_ok); |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 203 | mod->taints |= (1U << flag); |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 204 | } |
| 205 | |
Robert P. J. Day | 02a3e59 | 2007-05-09 07:26:28 +0200 | [diff] [blame] | 206 | /* |
| 207 | * A thread that wants to hold a reference to a module only while it |
| 208 | * is running can call this to safely exit. nfsd and lockd use this. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | */ |
| 210 | void __module_put_and_exit(struct module *mod, long code) |
| 211 | { |
| 212 | module_put(mod); |
| 213 | do_exit(code); |
| 214 | } |
| 215 | EXPORT_SYMBOL(__module_put_and_exit); |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /* Find a module section: 0 means not found. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 218 | static unsigned int find_sec(const struct load_info *info, const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | { |
| 220 | unsigned int i; |
| 221 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 222 | for (i = 1; i < info->hdr->e_shnum; i++) { |
| 223 | Elf_Shdr *shdr = &info->sechdrs[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | /* Alloc bit cleared means "ignore it." */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 225 | if ((shdr->sh_flags & SHF_ALLOC) |
| 226 | && strcmp(info->secstrings + shdr->sh_name, name) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | return i; |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 228 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | return 0; |
| 230 | } |
| 231 | |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 232 | /* Find a module section, or NULL. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 233 | static void *section_addr(const struct load_info *info, const char *name) |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 234 | { |
| 235 | /* Section 0 has sh_addr 0. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 236 | return (void *)info->sechdrs[find_sec(info, name)].sh_addr; |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | /* Find a module section, or NULL. Fill in number of "objects" in section. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 240 | static void *section_objs(const struct load_info *info, |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 241 | const char *name, |
| 242 | size_t object_size, |
| 243 | unsigned int *num) |
| 244 | { |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 245 | unsigned int sec = find_sec(info, name); |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 246 | |
| 247 | /* Section 0 has sh_addr 0 and sh_size 0. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 248 | *num = info->sechdrs[sec].sh_size / object_size; |
| 249 | return (void *)info->sechdrs[sec].sh_addr; |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 250 | } |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | /* Provided by the linker */ |
| 253 | extern const struct kernel_symbol __start___ksymtab[]; |
| 254 | extern const struct kernel_symbol __stop___ksymtab[]; |
| 255 | extern const struct kernel_symbol __start___ksymtab_gpl[]; |
| 256 | extern const struct kernel_symbol __stop___ksymtab_gpl[]; |
Greg Kroah-Hartman | 9f28bb7 | 2006-03-20 13:17:13 -0800 | [diff] [blame] | 257 | extern const struct kernel_symbol __start___ksymtab_gpl_future[]; |
| 258 | extern const struct kernel_symbol __stop___ksymtab_gpl_future[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | extern const unsigned long __start___kcrctab[]; |
| 260 | extern const unsigned long __start___kcrctab_gpl[]; |
Greg Kroah-Hartman | 9f28bb7 | 2006-03-20 13:17:13 -0800 | [diff] [blame] | 261 | extern const unsigned long __start___kcrctab_gpl_future[]; |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 262 | #ifdef CONFIG_UNUSED_SYMBOLS |
| 263 | extern const struct kernel_symbol __start___ksymtab_unused[]; |
| 264 | extern const struct kernel_symbol __stop___ksymtab_unused[]; |
| 265 | extern const struct kernel_symbol __start___ksymtab_unused_gpl[]; |
| 266 | extern const struct kernel_symbol __stop___ksymtab_unused_gpl[]; |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 267 | extern const unsigned long __start___kcrctab_unused[]; |
| 268 | extern const unsigned long __start___kcrctab_unused_gpl[]; |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 269 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | #ifndef CONFIG_MODVERSIONS |
| 272 | #define symversion(base, idx) NULL |
| 273 | #else |
Andrew Morton | f83ca9f | 2006-03-28 01:56:20 -0800 | [diff] [blame] | 274 | #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | #endif |
| 276 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 277 | static bool each_symbol_in_section(const struct symsearch *arr, |
| 278 | unsigned int arrsize, |
| 279 | struct module *owner, |
| 280 | bool (*fn)(const struct symsearch *syms, |
| 281 | struct module *owner, |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 282 | void *data), |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 283 | void *data) |
Sam Ravnborg | 3fd6805 | 2006-02-08 21:16:45 +0100 | [diff] [blame] | 284 | { |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 285 | unsigned int j; |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 286 | |
| 287 | for (j = 0; j < arrsize; j++) { |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 288 | if (fn(&arr[j], owner, data)) |
| 289 | return true; |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | return false; |
Sam Ravnborg | 3fd6805 | 2006-02-08 21:16:45 +0100 | [diff] [blame] | 293 | } |
| 294 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 295 | /* Returns true as soon as fn returns true, otherwise false. */ |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 296 | bool each_symbol_section(bool (*fn)(const struct symsearch *arr, |
| 297 | struct module *owner, |
| 298 | void *data), |
| 299 | void *data) |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 300 | { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 301 | struct module *mod; |
Linus Torvalds | 44032e6 | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 302 | static const struct symsearch arr[] = { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 303 | { __start___ksymtab, __stop___ksymtab, __start___kcrctab, |
| 304 | NOT_GPL_ONLY, false }, |
| 305 | { __start___ksymtab_gpl, __stop___ksymtab_gpl, |
| 306 | __start___kcrctab_gpl, |
| 307 | GPL_ONLY, false }, |
| 308 | { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future, |
| 309 | __start___kcrctab_gpl_future, |
| 310 | WILL_BE_GPL_ONLY, false }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 311 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 312 | { __start___ksymtab_unused, __stop___ksymtab_unused, |
| 313 | __start___kcrctab_unused, |
| 314 | NOT_GPL_ONLY, true }, |
| 315 | { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl, |
| 316 | __start___kcrctab_unused_gpl, |
| 317 | GPL_ONLY, true }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 318 | #endif |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 319 | }; |
| 320 | |
| 321 | if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data)) |
| 322 | return true; |
| 323 | |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 324 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 325 | struct symsearch arr[] = { |
| 326 | { mod->syms, mod->syms + mod->num_syms, mod->crcs, |
| 327 | NOT_GPL_ONLY, false }, |
| 328 | { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms, |
| 329 | mod->gpl_crcs, |
| 330 | GPL_ONLY, false }, |
| 331 | { mod->gpl_future_syms, |
| 332 | mod->gpl_future_syms + mod->num_gpl_future_syms, |
| 333 | mod->gpl_future_crcs, |
| 334 | WILL_BE_GPL_ONLY, false }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 335 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 336 | { mod->unused_syms, |
| 337 | mod->unused_syms + mod->num_unused_syms, |
| 338 | mod->unused_crcs, |
| 339 | NOT_GPL_ONLY, true }, |
| 340 | { mod->unused_gpl_syms, |
| 341 | mod->unused_gpl_syms + mod->num_unused_gpl_syms, |
| 342 | mod->unused_gpl_crcs, |
| 343 | GPL_ONLY, true }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 344 | #endif |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 345 | }; |
| 346 | |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 347 | if (mod->state == MODULE_STATE_UNFORMED) |
| 348 | continue; |
| 349 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 350 | if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data)) |
| 351 | return true; |
| 352 | } |
| 353 | return false; |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 354 | } |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 355 | EXPORT_SYMBOL_GPL(each_symbol_section); |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 356 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 357 | struct find_symbol_arg { |
| 358 | /* Input */ |
| 359 | const char *name; |
| 360 | bool gplok; |
| 361 | bool warn; |
| 362 | |
| 363 | /* Output */ |
| 364 | struct module *owner; |
| 365 | const unsigned long *crc; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 366 | const struct kernel_symbol *sym; |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 367 | }; |
| 368 | |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 369 | static bool check_symbol(const struct symsearch *syms, |
| 370 | struct module *owner, |
| 371 | unsigned int symnum, void *data) |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 372 | { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 373 | struct find_symbol_arg *fsa = data; |
| 374 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 375 | if (!fsa->gplok) { |
| 376 | if (syms->licence == GPL_ONLY) |
| 377 | return false; |
| 378 | if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 379 | pr_warn("Symbol %s is being used by a non-GPL module, " |
| 380 | "which will not be allowed in the future\n", |
| 381 | fsa->name); |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 382 | } |
| 383 | } |
| 384 | |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 385 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 386 | if (syms->unused && fsa->warn) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 387 | pr_warn("Symbol %s is marked as UNUSED, however this module is " |
| 388 | "using it.\n", fsa->name); |
| 389 | pr_warn("This symbol will go away in the future.\n"); |
Yannick Guerrini | 7b63c3a | 2015-03-24 12:31:40 +1030 | [diff] [blame] | 390 | pr_warn("Please evaluate if this is the right api to use and " |
| 391 | "if it really is, submit a report to the linux kernel " |
| 392 | "mailing list together with submitting your code for " |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 393 | "inclusion.\n"); |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 394 | } |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 395 | #endif |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 396 | |
| 397 | fsa->owner = owner; |
| 398 | fsa->crc = symversion(syms->crcs, symnum); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 399 | fsa->sym = &syms->start[symnum]; |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 400 | return true; |
| 401 | } |
| 402 | |
Alessio Igor Bogani | 403ed27 | 2011-04-20 11:10:52 +0200 | [diff] [blame] | 403 | static int cmp_name(const void *va, const void *vb) |
| 404 | { |
| 405 | const char *a; |
| 406 | const struct kernel_symbol *b; |
| 407 | a = va; b = vb; |
| 408 | return strcmp(a, b->name); |
| 409 | } |
| 410 | |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 411 | static bool find_symbol_in_section(const struct symsearch *syms, |
| 412 | struct module *owner, |
| 413 | void *data) |
| 414 | { |
| 415 | struct find_symbol_arg *fsa = data; |
Alessio Igor Bogani | 403ed27 | 2011-04-20 11:10:52 +0200 | [diff] [blame] | 416 | struct kernel_symbol *sym; |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 417 | |
Alessio Igor Bogani | 403ed27 | 2011-04-20 11:10:52 +0200 | [diff] [blame] | 418 | sym = bsearch(fsa->name, syms->start, syms->stop - syms->start, |
| 419 | sizeof(struct kernel_symbol), cmp_name); |
| 420 | |
| 421 | if (sym != NULL && check_symbol(syms, owner, sym - syms->start, data)) |
| 422 | return true; |
| 423 | |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 424 | return false; |
| 425 | } |
| 426 | |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 427 | /* Find a symbol and return it, along with, (optional) crc and |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 428 | * (optional) module which owns it. Needs preempt disabled or module_mutex. */ |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 429 | const struct kernel_symbol *find_symbol(const char *name, |
| 430 | struct module **owner, |
| 431 | const unsigned long **crc, |
| 432 | bool gplok, |
| 433 | bool warn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 435 | struct find_symbol_arg fsa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 437 | fsa.name = name; |
| 438 | fsa.gplok = gplok; |
| 439 | fsa.warn = warn; |
| 440 | |
Rusty Russell | de4d8d5 | 2011-04-19 21:49:58 +0200 | [diff] [blame] | 441 | if (each_symbol_section(find_symbol_in_section, &fsa)) { |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 442 | if (owner) |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 443 | *owner = fsa.owner; |
| 444 | if (crc) |
| 445 | *crc = fsa.crc; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 446 | return fsa.sym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 448 | |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 449 | pr_debug("Failed to find symbol %s\n", name); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 450 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 452 | EXPORT_SYMBOL_GPL(find_symbol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | /* Search for module by name: must hold module_mutex. */ |
Mathias Krause | 4f6de4d | 2013-07-02 15:35:11 +0930 | [diff] [blame] | 455 | static struct module *find_module_all(const char *name, size_t len, |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 456 | bool even_unformed) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | { |
| 458 | struct module *mod; |
| 459 | |
| 460 | list_for_each_entry(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 461 | if (!even_unformed && mod->state == MODULE_STATE_UNFORMED) |
| 462 | continue; |
Mathias Krause | 4f6de4d | 2013-07-02 15:35:11 +0930 | [diff] [blame] | 463 | if (strlen(mod->name) == len && !memcmp(mod->name, name, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | return mod; |
| 465 | } |
| 466 | return NULL; |
| 467 | } |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 468 | |
| 469 | struct module *find_module(const char *name) |
| 470 | { |
Mathias Krause | 4f6de4d | 2013-07-02 15:35:11 +0930 | [diff] [blame] | 471 | return find_module_all(name, strlen(name), false); |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 472 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 473 | EXPORT_SYMBOL_GPL(find_module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | #ifdef CONFIG_SMP |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 476 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 477 | static inline void __percpu *mod_percpu(struct module *mod) |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 478 | { |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 479 | return mod->percpu; |
| 480 | } |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 481 | |
Rusty Russell | 9eb76d7 | 2013-07-03 10:06:29 +0930 | [diff] [blame] | 482 | static int percpu_modalloc(struct module *mod, struct load_info *info) |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 483 | { |
Rusty Russell | 9eb76d7 | 2013-07-03 10:06:29 +0930 | [diff] [blame] | 484 | Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu]; |
| 485 | unsigned long align = pcpusec->sh_addralign; |
| 486 | |
| 487 | if (!pcpusec->sh_size) |
| 488 | return 0; |
| 489 | |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 490 | if (align > PAGE_SIZE) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 491 | pr_warn("%s: per-cpu alignment %li > %li\n", |
| 492 | mod->name, align, PAGE_SIZE); |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 493 | align = PAGE_SIZE; |
| 494 | } |
| 495 | |
Rusty Russell | 9eb76d7 | 2013-07-03 10:06:29 +0930 | [diff] [blame] | 496 | mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align); |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 497 | if (!mod->percpu) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 498 | pr_warn("%s: Could not allocate %lu bytes percpu data\n", |
| 499 | mod->name, (unsigned long)pcpusec->sh_size); |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 500 | return -ENOMEM; |
| 501 | } |
Rusty Russell | 9eb76d7 | 2013-07-03 10:06:29 +0930 | [diff] [blame] | 502 | mod->percpu_size = pcpusec->sh_size; |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 503 | return 0; |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 504 | } |
| 505 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 506 | static void percpu_modfree(struct module *mod) |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 507 | { |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 508 | free_percpu(mod->percpu); |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 509 | } |
| 510 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 511 | static unsigned int find_pcpusec(struct load_info *info) |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 512 | { |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 513 | return find_sec(info, ".data..percpu"); |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 514 | } |
| 515 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 516 | static void percpu_modcopy(struct module *mod, |
| 517 | const void *from, unsigned long size) |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 518 | { |
| 519 | int cpu; |
| 520 | |
| 521 | for_each_possible_cpu(cpu) |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 522 | memcpy(per_cpu_ptr(mod->percpu, cpu), from, size); |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 523 | } |
| 524 | |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame] | 525 | /** |
| 526 | * is_module_percpu_address - test whether address is from module static percpu |
| 527 | * @addr: address to test |
| 528 | * |
| 529 | * Test whether @addr belongs to module static percpu area. |
| 530 | * |
| 531 | * RETURNS: |
| 532 | * %true if @addr is from module static percpu area |
| 533 | */ |
| 534 | bool is_module_percpu_address(unsigned long addr) |
| 535 | { |
| 536 | struct module *mod; |
| 537 | unsigned int cpu; |
| 538 | |
| 539 | preempt_disable(); |
| 540 | |
| 541 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 542 | if (mod->state == MODULE_STATE_UNFORMED) |
| 543 | continue; |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame] | 544 | if (!mod->percpu_size) |
| 545 | continue; |
| 546 | for_each_possible_cpu(cpu) { |
| 547 | void *start = per_cpu_ptr(mod->percpu, cpu); |
| 548 | |
| 549 | if ((void *)addr >= start && |
| 550 | (void *)addr < start + mod->percpu_size) { |
| 551 | preempt_enable(); |
| 552 | return true; |
| 553 | } |
| 554 | } |
| 555 | } |
| 556 | |
| 557 | preempt_enable(); |
| 558 | return false; |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 559 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | |
| 561 | #else /* ... !CONFIG_SMP */ |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 562 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 563 | static inline void __percpu *mod_percpu(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | { |
| 565 | return NULL; |
| 566 | } |
Rusty Russell | 9eb76d7 | 2013-07-03 10:06:29 +0930 | [diff] [blame] | 567 | static int percpu_modalloc(struct module *mod, struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | { |
Rusty Russell | 9eb76d7 | 2013-07-03 10:06:29 +0930 | [diff] [blame] | 569 | /* UP modules shouldn't have this section: ENOMEM isn't quite right */ |
| 570 | if (info->sechdrs[info->index.pcpu].sh_size != 0) |
| 571 | return -ENOMEM; |
| 572 | return 0; |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 573 | } |
| 574 | static inline void percpu_modfree(struct module *mod) |
| 575 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | } |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 577 | static unsigned int find_pcpusec(struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | { |
| 579 | return 0; |
| 580 | } |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 581 | static inline void percpu_modcopy(struct module *mod, |
| 582 | const void *from, unsigned long size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
| 584 | /* pcpusec should be 0, and size of that section should be 0. */ |
| 585 | BUG_ON(size != 0); |
| 586 | } |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame] | 587 | bool is_module_percpu_address(unsigned long addr) |
| 588 | { |
| 589 | return false; |
| 590 | } |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | #endif /* CONFIG_SMP */ |
| 593 | |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 594 | #define MODINFO_ATTR(field) \ |
| 595 | static void setup_modinfo_##field(struct module *mod, const char *s) \ |
| 596 | { \ |
| 597 | mod->field = kstrdup(s, GFP_KERNEL); \ |
| 598 | } \ |
| 599 | static ssize_t show_modinfo_##field(struct module_attribute *mattr, \ |
Kay Sievers | 4befb02 | 2011-07-24 22:06:04 +0930 | [diff] [blame] | 600 | struct module_kobject *mk, char *buffer) \ |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 601 | { \ |
Chen Gang | cc56ded | 2013-08-20 15:34:21 +0930 | [diff] [blame] | 602 | return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field); \ |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 603 | } \ |
| 604 | static int modinfo_##field##_exists(struct module *mod) \ |
| 605 | { \ |
| 606 | return mod->field != NULL; \ |
| 607 | } \ |
| 608 | static void free_modinfo_##field(struct module *mod) \ |
| 609 | { \ |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 610 | kfree(mod->field); \ |
| 611 | mod->field = NULL; \ |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 612 | } \ |
| 613 | static struct module_attribute modinfo_##field = { \ |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 614 | .attr = { .name = __stringify(field), .mode = 0444 }, \ |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 615 | .show = show_modinfo_##field, \ |
| 616 | .setup = setup_modinfo_##field, \ |
| 617 | .test = modinfo_##field##_exists, \ |
| 618 | .free = free_modinfo_##field, \ |
| 619 | }; |
| 620 | |
| 621 | MODINFO_ATTR(version); |
| 622 | MODINFO_ATTR(srcversion); |
| 623 | |
Arjan van de Ven | e14af7e | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 624 | static char last_unloaded_module[MODULE_NAME_LEN+1]; |
| 625 | |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 626 | #ifdef CONFIG_MODULE_UNLOAD |
Steven Rostedt | eb0c537 | 2010-03-29 14:25:18 -0400 | [diff] [blame] | 627 | |
| 628 | EXPORT_TRACEPOINT_SYMBOL(module_get); |
| 629 | |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 630 | /* MODULE_REF_BASE is the base reference count by kmodule loader. */ |
| 631 | #define MODULE_REF_BASE 1 |
| 632 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | /* Init the unload section of the module. */ |
Rusty Russell | 9f85a4b | 2010-08-05 12:59:04 -0600 | [diff] [blame] | 634 | static int module_unload_init(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | { |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 636 | /* |
| 637 | * Initialize reference counter to MODULE_REF_BASE. |
| 638 | * refcnt == 0 means module is going. |
| 639 | */ |
| 640 | atomic_set(&mod->refcnt, MODULE_REF_BASE); |
Rusty Russell | 9f85a4b | 2010-08-05 12:59:04 -0600 | [diff] [blame] | 641 | |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 642 | INIT_LIST_HEAD(&mod->source_list); |
| 643 | INIT_LIST_HEAD(&mod->target_list); |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | /* Hold reference count during initialization. */ |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 646 | atomic_inc(&mod->refcnt); |
Rusty Russell | 9f85a4b | 2010-08-05 12:59:04 -0600 | [diff] [blame] | 647 | |
| 648 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | } |
| 650 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | /* Does a already use b? */ |
| 652 | static int already_uses(struct module *a, struct module *b) |
| 653 | { |
| 654 | struct module_use *use; |
| 655 | |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 656 | list_for_each_entry(use, &b->source_list, source_list) { |
| 657 | if (use->source == a) { |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 658 | pr_debug("%s uses %s!\n", a->name, b->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | return 1; |
| 660 | } |
| 661 | } |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 662 | pr_debug("%s does not use %s!\n", a->name, b->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | return 0; |
| 664 | } |
| 665 | |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 666 | /* |
| 667 | * Module a uses b |
| 668 | * - we add 'a' as a "source", 'b' as a "target" of module use |
| 669 | * - the module_use is added to the list of 'b' sources (so |
| 670 | * 'b' can walk the list to see who sourced them), and of 'a' |
| 671 | * targets (so 'a' can see what modules it targets). |
| 672 | */ |
| 673 | static int add_module_usage(struct module *a, struct module *b) |
| 674 | { |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 675 | struct module_use *use; |
| 676 | |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 677 | pr_debug("Allocating new usage for %s.\n", a->name); |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 678 | use = kmalloc(sizeof(*use), GFP_ATOMIC); |
| 679 | if (!use) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 680 | pr_warn("%s: out of memory loading\n", a->name); |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 681 | return -ENOMEM; |
| 682 | } |
| 683 | |
| 684 | use->source = a; |
| 685 | use->target = b; |
| 686 | list_add(&use->source_list, &b->source_list); |
| 687 | list_add(&use->target_list, &a->target_list); |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 688 | return 0; |
| 689 | } |
| 690 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 691 | /* Module a uses b: caller needs module_mutex() */ |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 692 | int ref_module(struct module *a, struct module *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | { |
Rusty Russell | c8e21ce | 2010-06-05 11:17:35 -0600 | [diff] [blame] | 694 | int err; |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 695 | |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 696 | if (b == NULL || already_uses(a, b)) |
Linus Torvalds | 218ce73 | 2010-05-25 16:48:30 -0700 | [diff] [blame] | 697 | return 0; |
Linus Torvalds | 218ce73 | 2010-05-25 16:48:30 -0700 | [diff] [blame] | 698 | |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 699 | /* If module isn't available, we fail. */ |
| 700 | err = strong_try_module_get(b); |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 701 | if (err) |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 702 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 704 | err = add_module_usage(a, b); |
| 705 | if (err) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | module_put(b); |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 707 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | } |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 709 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 711 | EXPORT_SYMBOL_GPL(ref_module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | |
| 713 | /* Clear the unload stuff of the module. */ |
| 714 | static void module_unload_free(struct module *mod) |
| 715 | { |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 716 | struct module_use *use, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 718 | mutex_lock(&module_mutex); |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 719 | list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) { |
| 720 | struct module *i = use->target; |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 721 | pr_debug("%s unusing %s\n", mod->name, i->name); |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 722 | module_put(i); |
| 723 | list_del(&use->source_list); |
| 724 | list_del(&use->target_list); |
| 725 | kfree(use); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | } |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 727 | mutex_unlock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | #ifdef CONFIG_MODULE_FORCE_UNLOAD |
Akinobu Mita | fb16979 | 2006-01-08 01:04:29 -0800 | [diff] [blame] | 731 | static inline int try_force_unload(unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | { |
| 733 | int ret = (flags & O_TRUNC); |
| 734 | if (ret) |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 735 | add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | return ret; |
| 737 | } |
| 738 | #else |
Akinobu Mita | fb16979 | 2006-01-08 01:04:29 -0800 | [diff] [blame] | 739 | static inline int try_force_unload(unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { |
| 741 | return 0; |
| 742 | } |
| 743 | #endif /* CONFIG_MODULE_FORCE_UNLOAD */ |
| 744 | |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 745 | /* Try to release refcount of module, 0 means success. */ |
| 746 | static int try_release_module_ref(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 748 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 750 | /* Try to decrement refcnt which we set at loading */ |
| 751 | ret = atomic_sub_return(MODULE_REF_BASE, &mod->refcnt); |
| 752 | BUG_ON(ret < 0); |
| 753 | if (ret) |
| 754 | /* Someone can put this right now, recover with checking */ |
| 755 | ret = atomic_add_unless(&mod->refcnt, MODULE_REF_BASE, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 757 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | } |
| 759 | |
| 760 | static int try_stop_module(struct module *mod, int flags, int *forced) |
| 761 | { |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 762 | /* If it's not unused, quit unless we're forcing. */ |
| 763 | if (try_release_module_ref(mod) != 0) { |
| 764 | *forced = try_force_unload(flags); |
| 765 | if (!(*forced)) |
| 766 | return -EWOULDBLOCK; |
| 767 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 769 | /* Mark it as dying. */ |
| 770 | mod->state = MODULE_STATE_GOING; |
| 771 | |
| 772 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | } |
| 774 | |
Rusty Russell | d5db139 | 2015-01-22 11:13:14 +1030 | [diff] [blame] | 775 | /** |
| 776 | * module_refcount - return the refcount or -1 if unloading |
| 777 | * |
| 778 | * @mod: the module we're checking |
| 779 | * |
| 780 | * Returns: |
| 781 | * -1 if the module is in the process of unloading |
| 782 | * otherwise the number of references in the kernel to the module |
| 783 | */ |
| 784 | int module_refcount(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | { |
Rusty Russell | d5db139 | 2015-01-22 11:13:14 +1030 | [diff] [blame] | 786 | return atomic_read(&mod->refcnt) - MODULE_REF_BASE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | } |
| 788 | EXPORT_SYMBOL(module_refcount); |
| 789 | |
| 790 | /* This exists whether we can unload or not */ |
| 791 | static void free_module(struct module *mod); |
| 792 | |
Heiko Carstens | 17da2bd | 2009-01-14 14:14:10 +0100 | [diff] [blame] | 793 | SYSCALL_DEFINE2(delete_module, const char __user *, name_user, |
| 794 | unsigned int, flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | { |
| 796 | struct module *mod; |
Greg Kroah-Hartman | dfff0a0 | 2007-02-23 14:54:57 -0800 | [diff] [blame] | 797 | char name[MODULE_NAME_LEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | int ret, forced = 0; |
| 799 | |
Kees Cook | 3d43321 | 2009-04-02 15:49:29 -0700 | [diff] [blame] | 800 | if (!capable(CAP_SYS_MODULE) || modules_disabled) |
Greg Kroah-Hartman | dfff0a0 | 2007-02-23 14:54:57 -0800 | [diff] [blame] | 801 | return -EPERM; |
| 802 | |
| 803 | if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0) |
| 804 | return -EFAULT; |
| 805 | name[MODULE_NAME_LEN-1] = '\0'; |
| 806 | |
Tejun Heo | 3fc1f1e | 2010-05-06 18:49:20 +0200 | [diff] [blame] | 807 | if (mutex_lock_interruptible(&module_mutex) != 0) |
| 808 | return -EINTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | |
| 810 | mod = find_module(name); |
| 811 | if (!mod) { |
| 812 | ret = -ENOENT; |
| 813 | goto out; |
| 814 | } |
| 815 | |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 816 | if (!list_empty(&mod->source_list)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | /* Other modules depend on us: get rid of them first. */ |
| 818 | ret = -EWOULDBLOCK; |
| 819 | goto out; |
| 820 | } |
| 821 | |
| 822 | /* Doing init or already dying? */ |
| 823 | if (mod->state != MODULE_STATE_LIVE) { |
Rusty Russell | 3f2b9c9 | 2013-09-17 05:48:51 +0930 | [diff] [blame] | 824 | /* FIXME: if (force), slam module count damn the torpedoes */ |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 825 | pr_debug("%s already dying\n", mod->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | ret = -EBUSY; |
| 827 | goto out; |
| 828 | } |
| 829 | |
| 830 | /* If it has an init func, it must have an exit func to unload */ |
Rusty Russell | af49d92 | 2007-10-16 23:26:27 -0700 | [diff] [blame] | 831 | if (mod->init && !mod->exit) { |
Akinobu Mita | fb16979 | 2006-01-08 01:04:29 -0800 | [diff] [blame] | 832 | forced = try_force_unload(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | if (!forced) { |
| 834 | /* This module can't be removed */ |
| 835 | ret = -EBUSY; |
| 836 | goto out; |
| 837 | } |
| 838 | } |
| 839 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | /* Stop the machine so refcounts can't move and disable module. */ |
| 841 | ret = try_stop_module(mod, flags, &forced); |
| 842 | if (ret != 0) |
| 843 | goto out; |
| 844 | |
Peter Oberparleiter | df4b565 | 2008-04-21 14:34:31 +0200 | [diff] [blame] | 845 | mutex_unlock(&module_mutex); |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 846 | /* Final destruction now no one is using it. */ |
Peter Oberparleiter | df4b565 | 2008-04-21 14:34:31 +0200 | [diff] [blame] | 847 | if (mod->exit != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | mod->exit(); |
Peter Oberparleiter | df4b565 | 2008-04-21 14:34:31 +0200 | [diff] [blame] | 849 | blocking_notifier_call_chain(&module_notify_list, |
| 850 | MODULE_STATE_GOING, mod); |
Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 851 | async_synchronize_full(); |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 852 | |
Arjan van de Ven | e14af7e | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 853 | /* Store the name of the last unloaded module for diagnostic purposes */ |
Rusty Russell | efa5345 | 2008-01-29 17:13:20 -0500 | [diff] [blame] | 854 | strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 856 | free_module(mod); |
| 857 | return 0; |
| 858 | out: |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 859 | mutex_unlock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | return ret; |
| 861 | } |
| 862 | |
Jianjun Kong | d1e99d7 | 2008-12-08 14:26:29 +0800 | [diff] [blame] | 863 | static inline void print_unload_info(struct seq_file *m, struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | { |
| 865 | struct module_use *use; |
| 866 | int printed_something = 0; |
| 867 | |
Rusty Russell | d5db139 | 2015-01-22 11:13:14 +1030 | [diff] [blame] | 868 | seq_printf(m, " %i ", module_refcount(mod)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 870 | /* |
| 871 | * Always include a trailing , so userspace can differentiate |
| 872 | * between this and the old multi-field proc format. |
| 873 | */ |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 874 | list_for_each_entry(use, &mod->source_list, source_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | printed_something = 1; |
Linus Torvalds | 2c02dfe | 2010-05-31 12:19:37 -0700 | [diff] [blame] | 876 | seq_printf(m, "%s,", use->source->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | } |
| 878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | if (mod->init != NULL && mod->exit == NULL) { |
| 880 | printed_something = 1; |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 881 | seq_puts(m, "[permanent],"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | if (!printed_something) |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 885 | seq_puts(m, "-"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | void __symbol_put(const char *symbol) |
| 889 | { |
| 890 | struct module *owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 892 | preempt_disable(); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 893 | if (!find_symbol(symbol, &owner, NULL, true, false)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | BUG(); |
| 895 | module_put(owner); |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 896 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | } |
| 898 | EXPORT_SYMBOL(__symbol_put); |
| 899 | |
Rusty Russell | 7d1d16e | 2009-08-26 22:02:54 +0930 | [diff] [blame] | 900 | /* Note this assumes addr is a function, which it currently always is. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | void symbol_put_addr(void *addr) |
| 902 | { |
Trent Piepho | 5e37661 | 2006-05-15 09:44:06 -0700 | [diff] [blame] | 903 | struct module *modaddr; |
Rusty Russell | 7d1d16e | 2009-08-26 22:02:54 +0930 | [diff] [blame] | 904 | unsigned long a = (unsigned long)dereference_function_descriptor(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
Rusty Russell | 7d1d16e | 2009-08-26 22:02:54 +0930 | [diff] [blame] | 906 | if (core_kernel_text(a)) |
Trent Piepho | 5e37661 | 2006-05-15 09:44:06 -0700 | [diff] [blame] | 907 | return; |
| 908 | |
Rusty Russell | a6e6abd | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 909 | /* module_text_address is safe here: we're supposed to have reference |
| 910 | * to module from symbol_get, so it can't go away. */ |
Rusty Russell | 7d1d16e | 2009-08-26 22:02:54 +0930 | [diff] [blame] | 911 | modaddr = __module_text_address(a); |
Rusty Russell | a6e6abd | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 912 | BUG_ON(!modaddr); |
Trent Piepho | 5e37661 | 2006-05-15 09:44:06 -0700 | [diff] [blame] | 913 | module_put(modaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | } |
| 915 | EXPORT_SYMBOL_GPL(symbol_put_addr); |
| 916 | |
| 917 | static ssize_t show_refcnt(struct module_attribute *mattr, |
Kay Sievers | 4befb02 | 2011-07-24 22:06:04 +0930 | [diff] [blame] | 918 | struct module_kobject *mk, char *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | { |
Rusty Russell | d5db139 | 2015-01-22 11:13:14 +1030 | [diff] [blame] | 920 | return sprintf(buffer, "%i\n", module_refcount(mk->mod)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | } |
| 922 | |
Kay Sievers | cca3e70 | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 923 | static struct module_attribute modinfo_refcnt = |
| 924 | __ATTR(refcnt, 0444, show_refcnt, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
Steven Rostedt | d53799b | 2012-03-26 12:50:52 +1030 | [diff] [blame] | 926 | void __module_get(struct module *module) |
| 927 | { |
| 928 | if (module) { |
| 929 | preempt_disable(); |
Masami Hiramatsu | 2f35c41 | 2014-11-10 09:29:29 +1030 | [diff] [blame] | 930 | atomic_inc(&module->refcnt); |
Steven Rostedt | d53799b | 2012-03-26 12:50:52 +1030 | [diff] [blame] | 931 | trace_module_get(module, _RET_IP_); |
| 932 | preempt_enable(); |
| 933 | } |
| 934 | } |
| 935 | EXPORT_SYMBOL(__module_get); |
| 936 | |
| 937 | bool try_module_get(struct module *module) |
| 938 | { |
| 939 | bool ret = true; |
| 940 | |
| 941 | if (module) { |
| 942 | preempt_disable(); |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 943 | /* Note: here, we can fail to get a reference */ |
| 944 | if (likely(module_is_live(module) && |
| 945 | atomic_inc_not_zero(&module->refcnt) != 0)) |
Steven Rostedt | d53799b | 2012-03-26 12:50:52 +1030 | [diff] [blame] | 946 | trace_module_get(module, _RET_IP_); |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 947 | else |
Steven Rostedt | d53799b | 2012-03-26 12:50:52 +1030 | [diff] [blame] | 948 | ret = false; |
| 949 | |
| 950 | preempt_enable(); |
| 951 | } |
| 952 | return ret; |
| 953 | } |
| 954 | EXPORT_SYMBOL(try_module_get); |
| 955 | |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 956 | void module_put(struct module *module) |
| 957 | { |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 958 | int ret; |
| 959 | |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 960 | if (module) { |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 961 | preempt_disable(); |
Masami Hiramatsu | e513cc1 | 2014-11-10 09:30:29 +1030 | [diff] [blame] | 962 | ret = atomic_dec_if_positive(&module->refcnt); |
| 963 | WARN_ON(ret < 0); /* Failed to put refcount */ |
Li Zefan | ae832d1 | 2010-03-24 10:57:43 +0800 | [diff] [blame] | 964 | trace_module_put(module, _RET_IP_); |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 965 | preempt_enable(); |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 966 | } |
| 967 | } |
| 968 | EXPORT_SYMBOL(module_put); |
| 969 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | #else /* !CONFIG_MODULE_UNLOAD */ |
Jianjun Kong | d1e99d7 | 2008-12-08 14:26:29 +0800 | [diff] [blame] | 971 | static inline void print_unload_info(struct seq_file *m, struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | { |
| 973 | /* We don't know the usage count, or what modules are using. */ |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 974 | seq_puts(m, " - -"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | } |
| 976 | |
| 977 | static inline void module_unload_free(struct module *mod) |
| 978 | { |
| 979 | } |
| 980 | |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 981 | int ref_module(struct module *a, struct module *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | { |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 983 | return strong_try_module_get(b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | } |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 985 | EXPORT_SYMBOL_GPL(ref_module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | |
Rusty Russell | 9f85a4b | 2010-08-05 12:59:04 -0600 | [diff] [blame] | 987 | static inline int module_unload_init(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | { |
Rusty Russell | 9f85a4b | 2010-08-05 12:59:04 -0600 | [diff] [blame] | 989 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | } |
| 991 | #endif /* CONFIG_MODULE_UNLOAD */ |
| 992 | |
Kevin Winchester | 53999bf | 2012-01-15 19:32:55 -0400 | [diff] [blame] | 993 | static size_t module_flags_taint(struct module *mod, char *buf) |
| 994 | { |
| 995 | size_t l = 0; |
| 996 | |
| 997 | if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE)) |
| 998 | buf[l++] = 'P'; |
| 999 | if (mod->taints & (1 << TAINT_OOT_MODULE)) |
| 1000 | buf[l++] = 'O'; |
| 1001 | if (mod->taints & (1 << TAINT_FORCED_MODULE)) |
| 1002 | buf[l++] = 'F'; |
| 1003 | if (mod->taints & (1 << TAINT_CRAP)) |
| 1004 | buf[l++] = 'C'; |
Mathieu Desnoyers | 66cc69e | 2014-03-13 12:11:30 +1030 | [diff] [blame] | 1005 | if (mod->taints & (1 << TAINT_UNSIGNED_MODULE)) |
Rusty Russell | 57673c2 | 2014-03-31 14:39:57 +1030 | [diff] [blame] | 1006 | buf[l++] = 'E'; |
Kevin Winchester | 53999bf | 2012-01-15 19:32:55 -0400 | [diff] [blame] | 1007 | /* |
| 1008 | * TAINT_FORCED_RMMOD: could be added. |
Dave Jones | 8c90487 | 2014-02-26 10:49:49 -0500 | [diff] [blame] | 1009 | * TAINT_CPU_OUT_OF_SPEC, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't |
Kevin Winchester | 53999bf | 2012-01-15 19:32:55 -0400 | [diff] [blame] | 1010 | * apply to modules. |
| 1011 | */ |
| 1012 | return l; |
| 1013 | } |
| 1014 | |
Kay Sievers | 1f71740 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1015 | static ssize_t show_initstate(struct module_attribute *mattr, |
Kay Sievers | 4befb02 | 2011-07-24 22:06:04 +0930 | [diff] [blame] | 1016 | struct module_kobject *mk, char *buffer) |
Kay Sievers | 1f71740 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1017 | { |
| 1018 | const char *state = "unknown"; |
| 1019 | |
Kay Sievers | 4befb02 | 2011-07-24 22:06:04 +0930 | [diff] [blame] | 1020 | switch (mk->mod->state) { |
Kay Sievers | 1f71740 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1021 | case MODULE_STATE_LIVE: |
| 1022 | state = "live"; |
| 1023 | break; |
| 1024 | case MODULE_STATE_COMING: |
| 1025 | state = "coming"; |
| 1026 | break; |
| 1027 | case MODULE_STATE_GOING: |
| 1028 | state = "going"; |
| 1029 | break; |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 1030 | default: |
| 1031 | BUG(); |
Kay Sievers | 1f71740 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1032 | } |
| 1033 | return sprintf(buffer, "%s\n", state); |
| 1034 | } |
| 1035 | |
Kay Sievers | cca3e70 | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1036 | static struct module_attribute modinfo_initstate = |
| 1037 | __ATTR(initstate, 0444, show_initstate, NULL); |
Kay Sievers | 1f71740 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1038 | |
Kay Sievers | 88bfa32 | 2011-07-24 22:06:04 +0930 | [diff] [blame] | 1039 | static ssize_t store_uevent(struct module_attribute *mattr, |
| 1040 | struct module_kobject *mk, |
| 1041 | const char *buffer, size_t count) |
| 1042 | { |
| 1043 | enum kobject_action action; |
| 1044 | |
| 1045 | if (kobject_action_type(buffer, count, &action) == 0) |
| 1046 | kobject_uevent(&mk->kobj, action); |
| 1047 | return count; |
| 1048 | } |
| 1049 | |
Kay Sievers | cca3e70 | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1050 | struct module_attribute module_uevent = |
| 1051 | __ATTR(uevent, 0200, NULL, store_uevent); |
| 1052 | |
| 1053 | static ssize_t show_coresize(struct module_attribute *mattr, |
| 1054 | struct module_kobject *mk, char *buffer) |
| 1055 | { |
| 1056 | return sprintf(buffer, "%u\n", mk->mod->core_size); |
| 1057 | } |
| 1058 | |
| 1059 | static struct module_attribute modinfo_coresize = |
| 1060 | __ATTR(coresize, 0444, show_coresize, NULL); |
| 1061 | |
| 1062 | static ssize_t show_initsize(struct module_attribute *mattr, |
| 1063 | struct module_kobject *mk, char *buffer) |
| 1064 | { |
| 1065 | return sprintf(buffer, "%u\n", mk->mod->init_size); |
| 1066 | } |
| 1067 | |
| 1068 | static struct module_attribute modinfo_initsize = |
| 1069 | __ATTR(initsize, 0444, show_initsize, NULL); |
| 1070 | |
| 1071 | static ssize_t show_taint(struct module_attribute *mattr, |
| 1072 | struct module_kobject *mk, char *buffer) |
| 1073 | { |
| 1074 | size_t l; |
| 1075 | |
| 1076 | l = module_flags_taint(mk->mod, buffer); |
| 1077 | buffer[l++] = '\n'; |
| 1078 | return l; |
| 1079 | } |
| 1080 | |
| 1081 | static struct module_attribute modinfo_taint = |
| 1082 | __ATTR(taint, 0444, show_taint, NULL); |
Kay Sievers | 88bfa32 | 2011-07-24 22:06:04 +0930 | [diff] [blame] | 1083 | |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1084 | static struct module_attribute *modinfo_attrs[] = { |
Kay Sievers | cca3e70 | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1085 | &module_uevent, |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1086 | &modinfo_version, |
| 1087 | &modinfo_srcversion, |
Kay Sievers | cca3e70 | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1088 | &modinfo_initstate, |
| 1089 | &modinfo_coresize, |
| 1090 | &modinfo_initsize, |
| 1091 | &modinfo_taint, |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1092 | #ifdef CONFIG_MODULE_UNLOAD |
Kay Sievers | cca3e70 | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1093 | &modinfo_refcnt, |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1094 | #endif |
| 1095 | NULL, |
| 1096 | }; |
| 1097 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | static const char vermagic[] = VERMAGIC_STRING; |
| 1099 | |
Rusty Russell | c6e665c | 2009-03-31 13:05:33 -0600 | [diff] [blame] | 1100 | static int try_to_force_load(struct module *mod, const char *reason) |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 1101 | { |
| 1102 | #ifdef CONFIG_MODULE_FORCE_LOAD |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 1103 | if (!test_taint(TAINT_FORCED_MODULE)) |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 1104 | pr_warn("%s: %s: kernel tainted.\n", mod->name, reason); |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 1105 | add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE); |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 1106 | return 0; |
| 1107 | #else |
| 1108 | return -ENOEXEC; |
| 1109 | #endif |
| 1110 | } |
| 1111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | #ifdef CONFIG_MODVERSIONS |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 1113 | /* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */ |
| 1114 | static unsigned long maybe_relocated(unsigned long crc, |
| 1115 | const struct module *crc_owner) |
| 1116 | { |
| 1117 | #ifdef ARCH_RELOCATES_KCRCTAB |
| 1118 | if (crc_owner == NULL) |
| 1119 | return crc - (unsigned long)reloc_start; |
| 1120 | #endif |
| 1121 | return crc; |
| 1122 | } |
| 1123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | static int check_version(Elf_Shdr *sechdrs, |
| 1125 | unsigned int versindex, |
| 1126 | const char *symname, |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 1127 | struct module *mod, |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 1128 | const unsigned long *crc, |
| 1129 | const struct module *crc_owner) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | { |
| 1131 | unsigned int i, num_versions; |
| 1132 | struct modversion_info *versions; |
| 1133 | |
| 1134 | /* Exporting module didn't supply crcs? OK, we're already tainted. */ |
| 1135 | if (!crc) |
| 1136 | return 1; |
| 1137 | |
Rusty Russell | a5dd697 | 2008-05-09 16:24:21 +1000 | [diff] [blame] | 1138 | /* No versions at all? modprobe --force does this. */ |
| 1139 | if (versindex == 0) |
| 1140 | return try_to_force_load(mod, symname) == 0; |
| 1141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | versions = (void *) sechdrs[versindex].sh_addr; |
| 1143 | num_versions = sechdrs[versindex].sh_size |
| 1144 | / sizeof(struct modversion_info); |
| 1145 | |
| 1146 | for (i = 0; i < num_versions; i++) { |
| 1147 | if (strcmp(versions[i].name, symname) != 0) |
| 1148 | continue; |
| 1149 | |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 1150 | if (versions[i].crc == maybe_relocated(*crc, crc_owner)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | return 1; |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 1152 | pr_debug("Found checksum %lX vs module %lX\n", |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 1153 | maybe_relocated(*crc, crc_owner), versions[i].crc); |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 1154 | goto bad_version; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | } |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 1156 | |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 1157 | pr_warn("%s: no symbol version for %s\n", mod->name, symname); |
Rusty Russell | a5dd697 | 2008-05-09 16:24:21 +1000 | [diff] [blame] | 1158 | return 0; |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 1159 | |
| 1160 | bad_version: |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 1161 | pr_warn("%s: disagrees about version of symbol %s\n", |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 1162 | mod->name, symname); |
| 1163 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | } |
| 1165 | |
| 1166 | static inline int check_modstruct_version(Elf_Shdr *sechdrs, |
| 1167 | unsigned int versindex, |
| 1168 | struct module *mod) |
| 1169 | { |
| 1170 | const unsigned long *crc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | |
Peter Zijlstra | 926a59b | 2015-05-27 11:09:35 +0930 | [diff] [blame^] | 1172 | /* |
| 1173 | * Since this should be found in kernel (which can't be removed), no |
| 1174 | * locking is necessary -- use preempt_disable() to placate lockdep. |
| 1175 | */ |
| 1176 | preempt_disable(); |
Rusty Russell | b92021b | 2013-03-15 15:04:17 +1030 | [diff] [blame] | 1177 | if (!find_symbol(VMLINUX_SYMBOL_STR(module_layout), NULL, |
Peter Zijlstra | 926a59b | 2015-05-27 11:09:35 +0930 | [diff] [blame^] | 1178 | &crc, true, false)) { |
| 1179 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | BUG(); |
Peter Zijlstra | 926a59b | 2015-05-27 11:09:35 +0930 | [diff] [blame^] | 1181 | } |
| 1182 | preempt_enable(); |
James Hogan | a4b6a77 | 2013-03-18 19:38:56 +1030 | [diff] [blame] | 1183 | return check_version(sechdrs, versindex, |
| 1184 | VMLINUX_SYMBOL_STR(module_layout), mod, crc, |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 1185 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | } |
| 1187 | |
Rusty Russell | 91e37a7 | 2008-05-09 16:25:28 +1000 | [diff] [blame] | 1188 | /* First part is kernel version, which we ignore if module has crcs. */ |
| 1189 | static inline int same_magic(const char *amagic, const char *bmagic, |
| 1190 | bool has_crcs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | { |
Rusty Russell | 91e37a7 | 2008-05-09 16:25:28 +1000 | [diff] [blame] | 1192 | if (has_crcs) { |
| 1193 | amagic += strcspn(amagic, " "); |
| 1194 | bmagic += strcspn(bmagic, " "); |
| 1195 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | return strcmp(amagic, bmagic) == 0; |
| 1197 | } |
| 1198 | #else |
| 1199 | static inline int check_version(Elf_Shdr *sechdrs, |
| 1200 | unsigned int versindex, |
| 1201 | const char *symname, |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 1202 | struct module *mod, |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 1203 | const unsigned long *crc, |
| 1204 | const struct module *crc_owner) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | { |
| 1206 | return 1; |
| 1207 | } |
| 1208 | |
| 1209 | static inline int check_modstruct_version(Elf_Shdr *sechdrs, |
| 1210 | unsigned int versindex, |
| 1211 | struct module *mod) |
| 1212 | { |
| 1213 | return 1; |
| 1214 | } |
| 1215 | |
Rusty Russell | 91e37a7 | 2008-05-09 16:25:28 +1000 | [diff] [blame] | 1216 | static inline int same_magic(const char *amagic, const char *bmagic, |
| 1217 | bool has_crcs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | { |
| 1219 | return strcmp(amagic, bmagic) == 0; |
| 1220 | } |
| 1221 | #endif /* CONFIG_MODVERSIONS */ |
| 1222 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1223 | /* Resolve a symbol for this module. I.e. if we find one, record usage. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1224 | static const struct kernel_symbol *resolve_symbol(struct module *mod, |
| 1225 | const struct load_info *info, |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1226 | const char *name, |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1227 | char ownername[]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | { |
| 1229 | struct module *owner; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1230 | const struct kernel_symbol *sym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | const unsigned long *crc; |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1232 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | |
Peter Zijlstra | d64810f | 2015-02-11 15:01:13 +1030 | [diff] [blame] | 1234 | /* |
| 1235 | * The module_mutex should not be a heavily contended lock; |
| 1236 | * if we get the occasional sleep here, we'll go an extra iteration |
| 1237 | * in the wait_event_interruptible(), which is harmless. |
| 1238 | */ |
| 1239 | sched_annotate_sleep(); |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1240 | mutex_lock(&module_mutex); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1241 | sym = find_symbol(name, &owner, &crc, |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 1242 | !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true); |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1243 | if (!sym) |
| 1244 | goto unlock; |
| 1245 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1246 | if (!check_version(info->sechdrs, info->index.vers, name, mod, crc, |
| 1247 | owner)) { |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1248 | sym = ERR_PTR(-EINVAL); |
| 1249 | goto getname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | } |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1251 | |
| 1252 | err = ref_module(mod, owner); |
| 1253 | if (err) { |
| 1254 | sym = ERR_PTR(err); |
| 1255 | goto getname; |
| 1256 | } |
| 1257 | |
| 1258 | getname: |
| 1259 | /* We must make copy under the lock if we failed to get ref. */ |
| 1260 | strncpy(ownername, module_name(owner), MODULE_NAME_LEN); |
| 1261 | unlock: |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1262 | mutex_unlock(&module_mutex); |
Linus Torvalds | 218ce73 | 2010-05-25 16:48:30 -0700 | [diff] [blame] | 1263 | return sym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | } |
| 1265 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1266 | static const struct kernel_symbol * |
| 1267 | resolve_symbol_wait(struct module *mod, |
| 1268 | const struct load_info *info, |
| 1269 | const char *name) |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1270 | { |
| 1271 | const struct kernel_symbol *ksym; |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1272 | char owner[MODULE_NAME_LEN]; |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1273 | |
| 1274 | if (wait_event_interruptible_timeout(module_wq, |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1275 | !IS_ERR(ksym = resolve_symbol(mod, info, name, owner)) |
| 1276 | || PTR_ERR(ksym) != -EBUSY, |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1277 | 30 * HZ) <= 0) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 1278 | pr_warn("%s: gave up waiting for init of module %s.\n", |
| 1279 | mod->name, owner); |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1280 | } |
| 1281 | return ksym; |
| 1282 | } |
| 1283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | /* |
| 1285 | * /sys/module/foo/sections stuff |
| 1286 | * J. Corbet <corbet@lwn.net> |
| 1287 | */ |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1288 | #ifdef CONFIG_SYSFS |
Ben Hutchings | 10b465a | 2009-12-19 14:43:01 +0000 | [diff] [blame] | 1289 | |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1290 | #ifdef CONFIG_KALLSYMS |
Ben Hutchings | 10b465a | 2009-12-19 14:43:01 +0000 | [diff] [blame] | 1291 | static inline bool sect_empty(const Elf_Shdr *sect) |
| 1292 | { |
| 1293 | return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0; |
| 1294 | } |
| 1295 | |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 1296 | struct module_sect_attr { |
Rusty Russell | a58730c | 2008-03-13 09:03:44 +0000 | [diff] [blame] | 1297 | struct module_attribute mattr; |
| 1298 | char *name; |
| 1299 | unsigned long address; |
| 1300 | }; |
| 1301 | |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 1302 | struct module_sect_attrs { |
Rusty Russell | a58730c | 2008-03-13 09:03:44 +0000 | [diff] [blame] | 1303 | struct attribute_group grp; |
| 1304 | unsigned int nsections; |
| 1305 | struct module_sect_attr attrs[0]; |
| 1306 | }; |
| 1307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | static ssize_t module_sect_show(struct module_attribute *mattr, |
Kay Sievers | 4befb02 | 2011-07-24 22:06:04 +0930 | [diff] [blame] | 1309 | struct module_kobject *mk, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | { |
| 1311 | struct module_sect_attr *sattr = |
| 1312 | container_of(mattr, struct module_sect_attr, mattr); |
Kees Cook | 9f36e2c | 2011-03-22 16:34:22 -0700 | [diff] [blame] | 1313 | return sprintf(buf, "0x%pK\n", (void *)sattr->address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | } |
| 1315 | |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1316 | static void free_sect_attrs(struct module_sect_attrs *sect_attrs) |
| 1317 | { |
Rusty Russell | a58730c | 2008-03-13 09:03:44 +0000 | [diff] [blame] | 1318 | unsigned int section; |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1319 | |
| 1320 | for (section = 0; section < sect_attrs->nsections; section++) |
| 1321 | kfree(sect_attrs->attrs[section].name); |
| 1322 | kfree(sect_attrs); |
| 1323 | } |
| 1324 | |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1325 | static void add_sect_attrs(struct module *mod, const struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | { |
| 1327 | unsigned int nloaded = 0, i, size[2]; |
| 1328 | struct module_sect_attrs *sect_attrs; |
| 1329 | struct module_sect_attr *sattr; |
| 1330 | struct attribute **gattr; |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 1331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | /* Count loaded sections and allocate structures */ |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1333 | for (i = 0; i < info->hdr->e_shnum; i++) |
| 1334 | if (!sect_empty(&info->sechdrs[i])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | nloaded++; |
| 1336 | size[0] = ALIGN(sizeof(*sect_attrs) |
| 1337 | + nloaded * sizeof(sect_attrs->attrs[0]), |
| 1338 | sizeof(sect_attrs->grp.attrs[0])); |
| 1339 | size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]); |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1340 | sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL); |
| 1341 | if (sect_attrs == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | return; |
| 1343 | |
| 1344 | /* Setup section attributes. */ |
| 1345 | sect_attrs->grp.name = "sections"; |
| 1346 | sect_attrs->grp.attrs = (void *)sect_attrs + size[0]; |
| 1347 | |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1348 | sect_attrs->nsections = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | sattr = §_attrs->attrs[0]; |
| 1350 | gattr = §_attrs->grp.attrs[0]; |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1351 | for (i = 0; i < info->hdr->e_shnum; i++) { |
| 1352 | Elf_Shdr *sec = &info->sechdrs[i]; |
| 1353 | if (sect_empty(sec)) |
Helge Deller | 35dead4 | 2009-12-03 00:29:15 +0100 | [diff] [blame] | 1354 | continue; |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1355 | sattr->address = sec->sh_addr; |
| 1356 | sattr->name = kstrdup(info->secstrings + sec->sh_name, |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1357 | GFP_KERNEL); |
| 1358 | if (sattr->name == NULL) |
| 1359 | goto out; |
| 1360 | sect_attrs->nsections++; |
Eric W. Biederman | 361795b | 2010-02-12 13:41:56 -0800 | [diff] [blame] | 1361 | sysfs_attr_init(&sattr->mattr.attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | sattr->mattr.show = module_sect_show; |
| 1363 | sattr->mattr.store = NULL; |
| 1364 | sattr->mattr.attr.name = sattr->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | sattr->mattr.attr.mode = S_IRUGO; |
| 1366 | *(gattr++) = &(sattr++)->mattr.attr; |
| 1367 | } |
| 1368 | *gattr = NULL; |
| 1369 | |
| 1370 | if (sysfs_create_group(&mod->mkobj.kobj, §_attrs->grp)) |
| 1371 | goto out; |
| 1372 | |
| 1373 | mod->sect_attrs = sect_attrs; |
| 1374 | return; |
| 1375 | out: |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1376 | free_sect_attrs(sect_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | } |
| 1378 | |
| 1379 | static void remove_sect_attrs(struct module *mod) |
| 1380 | { |
| 1381 | if (mod->sect_attrs) { |
| 1382 | sysfs_remove_group(&mod->mkobj.kobj, |
| 1383 | &mod->sect_attrs->grp); |
| 1384 | /* We are positive that no one is using any sect attrs |
| 1385 | * at this point. Deallocate immediately. */ |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1386 | free_sect_attrs(mod->sect_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | mod->sect_attrs = NULL; |
| 1388 | } |
| 1389 | } |
| 1390 | |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1391 | /* |
| 1392 | * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections. |
| 1393 | */ |
| 1394 | |
| 1395 | struct module_notes_attrs { |
| 1396 | struct kobject *dir; |
| 1397 | unsigned int notes; |
| 1398 | struct bin_attribute attrs[0]; |
| 1399 | }; |
| 1400 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 1401 | static ssize_t module_notes_read(struct file *filp, struct kobject *kobj, |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1402 | struct bin_attribute *bin_attr, |
| 1403 | char *buf, loff_t pos, size_t count) |
| 1404 | { |
| 1405 | /* |
| 1406 | * The caller checked the pos and count against our size. |
| 1407 | */ |
| 1408 | memcpy(buf, bin_attr->private + pos, count); |
| 1409 | return count; |
| 1410 | } |
| 1411 | |
| 1412 | static void free_notes_attrs(struct module_notes_attrs *notes_attrs, |
| 1413 | unsigned int i) |
| 1414 | { |
| 1415 | if (notes_attrs->dir) { |
| 1416 | while (i-- > 0) |
| 1417 | sysfs_remove_bin_file(notes_attrs->dir, |
| 1418 | ¬es_attrs->attrs[i]); |
Alexey Dobriyan | e943209 | 2008-09-23 23:51:11 +0400 | [diff] [blame] | 1419 | kobject_put(notes_attrs->dir); |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1420 | } |
| 1421 | kfree(notes_attrs); |
| 1422 | } |
| 1423 | |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1424 | static void add_notes_attrs(struct module *mod, const struct load_info *info) |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1425 | { |
| 1426 | unsigned int notes, loaded, i; |
| 1427 | struct module_notes_attrs *notes_attrs; |
| 1428 | struct bin_attribute *nattr; |
| 1429 | |
Ingo Molnar | ea6bff3 | 2009-08-28 10:44:56 +0200 | [diff] [blame] | 1430 | /* failed to create section attributes, so can't create notes */ |
| 1431 | if (!mod->sect_attrs) |
| 1432 | return; |
| 1433 | |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1434 | /* Count notes sections and allocate structures. */ |
| 1435 | notes = 0; |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1436 | for (i = 0; i < info->hdr->e_shnum; i++) |
| 1437 | if (!sect_empty(&info->sechdrs[i]) && |
| 1438 | (info->sechdrs[i].sh_type == SHT_NOTE)) |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1439 | ++notes; |
| 1440 | |
| 1441 | if (notes == 0) |
| 1442 | return; |
| 1443 | |
| 1444 | notes_attrs = kzalloc(sizeof(*notes_attrs) |
| 1445 | + notes * sizeof(notes_attrs->attrs[0]), |
| 1446 | GFP_KERNEL); |
| 1447 | if (notes_attrs == NULL) |
| 1448 | return; |
| 1449 | |
| 1450 | notes_attrs->notes = notes; |
| 1451 | nattr = ¬es_attrs->attrs[0]; |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1452 | for (loaded = i = 0; i < info->hdr->e_shnum; ++i) { |
| 1453 | if (sect_empty(&info->sechdrs[i])) |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1454 | continue; |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1455 | if (info->sechdrs[i].sh_type == SHT_NOTE) { |
Eric W. Biederman | 361795b | 2010-02-12 13:41:56 -0800 | [diff] [blame] | 1456 | sysfs_bin_attr_init(nattr); |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1457 | nattr->attr.name = mod->sect_attrs->attrs[loaded].name; |
| 1458 | nattr->attr.mode = S_IRUGO; |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1459 | nattr->size = info->sechdrs[i].sh_size; |
| 1460 | nattr->private = (void *) info->sechdrs[i].sh_addr; |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1461 | nattr->read = module_notes_read; |
| 1462 | ++nattr; |
| 1463 | } |
| 1464 | ++loaded; |
| 1465 | } |
| 1466 | |
Greg Kroah-Hartman | 4ff6abf | 2007-11-05 22:24:43 -0800 | [diff] [blame] | 1467 | notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj); |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1468 | if (!notes_attrs->dir) |
| 1469 | goto out; |
| 1470 | |
| 1471 | for (i = 0; i < notes; ++i) |
| 1472 | if (sysfs_create_bin_file(notes_attrs->dir, |
| 1473 | ¬es_attrs->attrs[i])) |
| 1474 | goto out; |
| 1475 | |
| 1476 | mod->notes_attrs = notes_attrs; |
| 1477 | return; |
| 1478 | |
| 1479 | out: |
| 1480 | free_notes_attrs(notes_attrs, i); |
| 1481 | } |
| 1482 | |
| 1483 | static void remove_notes_attrs(struct module *mod) |
| 1484 | { |
| 1485 | if (mod->notes_attrs) |
| 1486 | free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes); |
| 1487 | } |
| 1488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | #else |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1490 | |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1491 | static inline void add_sect_attrs(struct module *mod, |
| 1492 | const struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | { |
| 1494 | } |
| 1495 | |
| 1496 | static inline void remove_sect_attrs(struct module *mod) |
| 1497 | { |
| 1498 | } |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1499 | |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1500 | static inline void add_notes_attrs(struct module *mod, |
| 1501 | const struct load_info *info) |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1502 | { |
| 1503 | } |
| 1504 | |
| 1505 | static inline void remove_notes_attrs(struct module *mod) |
| 1506 | { |
| 1507 | } |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1508 | #endif /* CONFIG_KALLSYMS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1510 | static void add_usage_links(struct module *mod) |
| 1511 | { |
| 1512 | #ifdef CONFIG_MODULE_UNLOAD |
| 1513 | struct module_use *use; |
| 1514 | int nowarn; |
| 1515 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1516 | mutex_lock(&module_mutex); |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1517 | list_for_each_entry(use, &mod->target_list, target_list) { |
| 1518 | nowarn = sysfs_create_link(use->target->holders_dir, |
| 1519 | &mod->mkobj.kobj, mod->name); |
| 1520 | } |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1521 | mutex_unlock(&module_mutex); |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1522 | #endif |
| 1523 | } |
| 1524 | |
| 1525 | static void del_usage_links(struct module *mod) |
| 1526 | { |
| 1527 | #ifdef CONFIG_MODULE_UNLOAD |
| 1528 | struct module_use *use; |
| 1529 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1530 | mutex_lock(&module_mutex); |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1531 | list_for_each_entry(use, &mod->target_list, target_list) |
| 1532 | sysfs_remove_link(use->target->holders_dir, mod->name); |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1533 | mutex_unlock(&module_mutex); |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1534 | #endif |
| 1535 | } |
| 1536 | |
Rusty Russell | 6407ebb2 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1537 | static int module_add_modinfo_attrs(struct module *mod) |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1538 | { |
| 1539 | struct module_attribute *attr; |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1540 | struct module_attribute *temp_attr; |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1541 | int error = 0; |
| 1542 | int i; |
| 1543 | |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1544 | mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) * |
| 1545 | (ARRAY_SIZE(modinfo_attrs) + 1)), |
| 1546 | GFP_KERNEL); |
| 1547 | if (!mod->modinfo_attrs) |
| 1548 | return -ENOMEM; |
| 1549 | |
| 1550 | temp_attr = mod->modinfo_attrs; |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1551 | for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) { |
| 1552 | if (!attr->test || |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1553 | (attr->test && attr->test(mod))) { |
| 1554 | memcpy(temp_attr, attr, sizeof(*temp_attr)); |
Eric W. Biederman | 361795b | 2010-02-12 13:41:56 -0800 | [diff] [blame] | 1555 | sysfs_attr_init(&temp_attr->attr); |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 1556 | error = sysfs_create_file(&mod->mkobj.kobj, |
| 1557 | &temp_attr->attr); |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1558 | ++temp_attr; |
| 1559 | } |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1560 | } |
| 1561 | return error; |
| 1562 | } |
| 1563 | |
Rusty Russell | 6407ebb2 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1564 | static void module_remove_modinfo_attrs(struct module *mod) |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1565 | { |
| 1566 | struct module_attribute *attr; |
| 1567 | int i; |
| 1568 | |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1569 | for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) { |
| 1570 | /* pick a field to test for end of list */ |
| 1571 | if (!attr->attr.name) |
| 1572 | break; |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 1573 | sysfs_remove_file(&mod->mkobj.kobj, &attr->attr); |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1574 | if (attr->free) |
| 1575 | attr->free(mod); |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1576 | } |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1577 | kfree(mod->modinfo_attrs); |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1578 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | |
Li Zhong | 942e443 | 2013-09-03 16:33:57 +0930 | [diff] [blame] | 1580 | static void mod_kobject_put(struct module *mod) |
| 1581 | { |
| 1582 | DECLARE_COMPLETION_ONSTACK(c); |
| 1583 | mod->mkobj.kobj_completion = &c; |
| 1584 | kobject_put(&mod->mkobj.kobj); |
| 1585 | wait_for_completion(&c); |
| 1586 | } |
| 1587 | |
Rusty Russell | 6407ebb2 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1588 | static int mod_sysfs_init(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | { |
| 1590 | int err; |
Greg Kroah-Hartman | 6494a93 | 2008-01-27 15:38:40 -0800 | [diff] [blame] | 1591 | struct kobject *kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 1593 | if (!module_sysfs_initialized) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 1594 | pr_err("%s: module sysfs not initialized\n", mod->name); |
Ed Swierk | 1cc5f71 | 2006-09-25 16:25:36 -0700 | [diff] [blame] | 1595 | err = -EINVAL; |
| 1596 | goto out; |
| 1597 | } |
Greg Kroah-Hartman | 6494a93 | 2008-01-27 15:38:40 -0800 | [diff] [blame] | 1598 | |
| 1599 | kobj = kset_find_obj(module_kset, mod->name); |
| 1600 | if (kobj) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 1601 | pr_err("%s: module is already loaded\n", mod->name); |
Greg Kroah-Hartman | 6494a93 | 2008-01-27 15:38:40 -0800 | [diff] [blame] | 1602 | kobject_put(kobj); |
| 1603 | err = -EINVAL; |
| 1604 | goto out; |
| 1605 | } |
| 1606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | mod->mkobj.mod = mod; |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1608 | |
Greg Kroah-Hartman | ac3c814 | 2007-12-17 23:05:35 -0700 | [diff] [blame] | 1609 | memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj)); |
| 1610 | mod->mkobj.kobj.kset = module_kset; |
| 1611 | err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL, |
| 1612 | "%s", mod->name); |
| 1613 | if (err) |
Li Zhong | 942e443 | 2013-09-03 16:33:57 +0930 | [diff] [blame] | 1614 | mod_kobject_put(mod); |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1615 | |
Kay Sievers | 97c146e | 2007-11-29 23:46:11 +0100 | [diff] [blame] | 1616 | /* delay uevent until full sysfs population */ |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1617 | out: |
| 1618 | return err; |
| 1619 | } |
| 1620 | |
Rusty Russell | 6407ebb2 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1621 | static int mod_sysfs_setup(struct module *mod, |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1622 | const struct load_info *info, |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1623 | struct kernel_param *kparam, |
| 1624 | unsigned int num_params) |
| 1625 | { |
| 1626 | int err; |
| 1627 | |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1628 | err = mod_sysfs_init(mod); |
| 1629 | if (err) |
| 1630 | goto out; |
| 1631 | |
Greg Kroah-Hartman | 4ff6abf | 2007-11-05 22:24:43 -0800 | [diff] [blame] | 1632 | mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj); |
Akinobu Mita | 240936e | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 1633 | if (!mod->holders_dir) { |
| 1634 | err = -ENOMEM; |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1635 | goto out_unreg; |
Akinobu Mita | 240936e | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 1636 | } |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | err = module_param_sysfs_setup(mod, kparam, num_params); |
| 1639 | if (err) |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1640 | goto out_unreg_holders; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1642 | err = module_add_modinfo_attrs(mod); |
| 1643 | if (err) |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1644 | goto out_unreg_param; |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1645 | |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1646 | add_usage_links(mod); |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1647 | add_sect_attrs(mod, info); |
| 1648 | add_notes_attrs(mod, info); |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1649 | |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1650 | kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | return 0; |
| 1652 | |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1653 | out_unreg_param: |
| 1654 | module_param_sysfs_remove(mod); |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1655 | out_unreg_holders: |
Greg Kroah-Hartman | 78a2d90 | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 1656 | kobject_put(mod->holders_dir); |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1657 | out_unreg: |
Li Zhong | 942e443 | 2013-09-03 16:33:57 +0930 | [diff] [blame] | 1658 | mod_kobject_put(mod); |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1659 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | return err; |
| 1661 | } |
Denis V. Lunev | 34e4e2f | 2008-05-20 13:59:48 +0400 | [diff] [blame] | 1662 | |
| 1663 | static void mod_sysfs_fini(struct module *mod) |
| 1664 | { |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1665 | remove_notes_attrs(mod); |
| 1666 | remove_sect_attrs(mod); |
Li Zhong | 942e443 | 2013-09-03 16:33:57 +0930 | [diff] [blame] | 1667 | mod_kobject_put(mod); |
Denis V. Lunev | 34e4e2f | 2008-05-20 13:59:48 +0400 | [diff] [blame] | 1668 | } |
| 1669 | |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1670 | #else /* !CONFIG_SYSFS */ |
Denis V. Lunev | 34e4e2f | 2008-05-20 13:59:48 +0400 | [diff] [blame] | 1671 | |
Rusty Russell | 8f6d037 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1672 | static int mod_sysfs_setup(struct module *mod, |
| 1673 | const struct load_info *info, |
Rusty Russell | 6407ebb2 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1674 | struct kernel_param *kparam, |
| 1675 | unsigned int num_params) |
| 1676 | { |
| 1677 | return 0; |
| 1678 | } |
| 1679 | |
Denis V. Lunev | 34e4e2f | 2008-05-20 13:59:48 +0400 | [diff] [blame] | 1680 | static void mod_sysfs_fini(struct module *mod) |
| 1681 | { |
| 1682 | } |
| 1683 | |
Rusty Russell | 36b0360 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1684 | static void module_remove_modinfo_attrs(struct module *mod) |
| 1685 | { |
| 1686 | } |
| 1687 | |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1688 | static void del_usage_links(struct module *mod) |
| 1689 | { |
| 1690 | } |
| 1691 | |
Denis V. Lunev | 34e4e2f | 2008-05-20 13:59:48 +0400 | [diff] [blame] | 1692 | #endif /* CONFIG_SYSFS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | |
Rusty Russell | 36b0360 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1694 | static void mod_sysfs_teardown(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | { |
Rusty Russell | 80a3d1b | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1696 | del_usage_links(mod); |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1697 | module_remove_modinfo_attrs(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | module_param_sysfs_remove(mod); |
Greg Kroah-Hartman | 78a2d90 | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 1699 | kobject_put(mod->mkobj.drivers_dir); |
| 1700 | kobject_put(mod->holders_dir); |
Denis V. Lunev | 34e4e2f | 2008-05-20 13:59:48 +0400 | [diff] [blame] | 1701 | mod_sysfs_fini(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | } |
| 1703 | |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 1704 | #ifdef CONFIG_DEBUG_SET_MODULE_RONX |
| 1705 | /* |
| 1706 | * LKM RO/NX protection: protect module's text/ro-data |
| 1707 | * from modification and any data from execution. |
| 1708 | */ |
| 1709 | void set_page_attributes(void *start, void *end, int (*set)(unsigned long start, int num_pages)) |
| 1710 | { |
| 1711 | unsigned long begin_pfn = PFN_DOWN((unsigned long)start); |
| 1712 | unsigned long end_pfn = PFN_DOWN((unsigned long)end); |
| 1713 | |
| 1714 | if (end_pfn > begin_pfn) |
| 1715 | set(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn); |
| 1716 | } |
| 1717 | |
| 1718 | static void set_section_ro_nx(void *base, |
| 1719 | unsigned long text_size, |
| 1720 | unsigned long ro_size, |
| 1721 | unsigned long total_size) |
| 1722 | { |
| 1723 | /* begin and end PFNs of the current subsection */ |
| 1724 | unsigned long begin_pfn; |
| 1725 | unsigned long end_pfn; |
| 1726 | |
| 1727 | /* |
| 1728 | * Set RO for module text and RO-data: |
| 1729 | * - Always protect first page. |
| 1730 | * - Do not protect last partial page. |
| 1731 | */ |
| 1732 | if (ro_size > 0) |
| 1733 | set_page_attributes(base, base + ro_size, set_memory_ro); |
| 1734 | |
| 1735 | /* |
| 1736 | * Set NX permissions for module data: |
| 1737 | * - Do not protect first partial page. |
| 1738 | * - Always protect last page. |
| 1739 | */ |
| 1740 | if (total_size > text_size) { |
| 1741 | begin_pfn = PFN_UP((unsigned long)base + text_size); |
| 1742 | end_pfn = PFN_UP((unsigned long)base + total_size); |
| 1743 | if (end_pfn > begin_pfn) |
| 1744 | set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn); |
| 1745 | } |
| 1746 | } |
| 1747 | |
Jan Glauber | 01526ed | 2011-05-19 16:55:26 -0600 | [diff] [blame] | 1748 | static void unset_module_core_ro_nx(struct module *mod) |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 1749 | { |
Jan Glauber | 01526ed | 2011-05-19 16:55:26 -0600 | [diff] [blame] | 1750 | set_page_attributes(mod->module_core + mod->core_text_size, |
| 1751 | mod->module_core + mod->core_size, |
| 1752 | set_memory_x); |
| 1753 | set_page_attributes(mod->module_core, |
| 1754 | mod->module_core + mod->core_ro_size, |
| 1755 | set_memory_rw); |
| 1756 | } |
| 1757 | |
| 1758 | static void unset_module_init_ro_nx(struct module *mod) |
| 1759 | { |
| 1760 | set_page_attributes(mod->module_init + mod->init_text_size, |
| 1761 | mod->module_init + mod->init_size, |
| 1762 | set_memory_x); |
| 1763 | set_page_attributes(mod->module_init, |
| 1764 | mod->module_init + mod->init_ro_size, |
| 1765 | set_memory_rw); |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 1766 | } |
| 1767 | |
| 1768 | /* Iterate through all modules and set each module's text as RW */ |
Daniel J Blueman | 5d05c70 | 2011-03-08 22:01:47 +0800 | [diff] [blame] | 1769 | void set_all_modules_text_rw(void) |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 1770 | { |
| 1771 | struct module *mod; |
| 1772 | |
| 1773 | mutex_lock(&module_mutex); |
| 1774 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 1775 | if (mod->state == MODULE_STATE_UNFORMED) |
| 1776 | continue; |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 1777 | if ((mod->module_core) && (mod->core_text_size)) { |
| 1778 | set_page_attributes(mod->module_core, |
| 1779 | mod->module_core + mod->core_text_size, |
| 1780 | set_memory_rw); |
| 1781 | } |
| 1782 | if ((mod->module_init) && (mod->init_text_size)) { |
| 1783 | set_page_attributes(mod->module_init, |
| 1784 | mod->module_init + mod->init_text_size, |
| 1785 | set_memory_rw); |
| 1786 | } |
| 1787 | } |
| 1788 | mutex_unlock(&module_mutex); |
| 1789 | } |
| 1790 | |
| 1791 | /* Iterate through all modules and set each module's text as RO */ |
Daniel J Blueman | 5d05c70 | 2011-03-08 22:01:47 +0800 | [diff] [blame] | 1792 | void set_all_modules_text_ro(void) |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 1793 | { |
| 1794 | struct module *mod; |
| 1795 | |
| 1796 | mutex_lock(&module_mutex); |
| 1797 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 1798 | if (mod->state == MODULE_STATE_UNFORMED) |
| 1799 | continue; |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 1800 | if ((mod->module_core) && (mod->core_text_size)) { |
| 1801 | set_page_attributes(mod->module_core, |
| 1802 | mod->module_core + mod->core_text_size, |
| 1803 | set_memory_ro); |
| 1804 | } |
| 1805 | if ((mod->module_init) && (mod->init_text_size)) { |
| 1806 | set_page_attributes(mod->module_init, |
| 1807 | mod->module_init + mod->init_text_size, |
| 1808 | set_memory_ro); |
| 1809 | } |
| 1810 | } |
| 1811 | mutex_unlock(&module_mutex); |
| 1812 | } |
| 1813 | #else |
| 1814 | static inline void set_section_ro_nx(void *base, unsigned long text_size, unsigned long ro_size, unsigned long total_size) { } |
Jan Glauber | 01526ed | 2011-05-19 16:55:26 -0600 | [diff] [blame] | 1815 | static void unset_module_core_ro_nx(struct module *mod) { } |
| 1816 | static void unset_module_init_ro_nx(struct module *mod) { } |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 1817 | #endif |
| 1818 | |
Rusty Russell | be1f221 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 1819 | void __weak module_memfree(void *module_region) |
Jonas Bonn | 74e08fc | 2011-06-30 21:22:11 +0200 | [diff] [blame] | 1820 | { |
| 1821 | vfree(module_region); |
| 1822 | } |
| 1823 | |
| 1824 | void __weak module_arch_cleanup(struct module *mod) |
| 1825 | { |
| 1826 | } |
| 1827 | |
Rusty Russell | d453cde | 2015-01-20 09:07:04 +1030 | [diff] [blame] | 1828 | void __weak module_arch_freeing_init(struct module *mod) |
| 1829 | { |
| 1830 | } |
| 1831 | |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 1832 | /* Free a module, remove from lists, etc. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | static void free_module(struct module *mod) |
| 1834 | { |
Li Zefan | 7ead8b8 | 2009-08-17 16:56:28 +0800 | [diff] [blame] | 1835 | trace_module_free(mod); |
| 1836 | |
Rusty Russell | 36b0360 | 2010-08-05 12:59:09 -0600 | [diff] [blame] | 1837 | mod_sysfs_teardown(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | |
Rusty Russell | 944a1fa | 2013-04-17 13:20:03 +0930 | [diff] [blame] | 1839 | /* We leave it in list to prevent duplicate loads, but make sure |
| 1840 | * that noone uses it while it's being deconstructed. */ |
Prarit Bhargava | d3051b4 | 2014-10-14 02:51:39 +1030 | [diff] [blame] | 1841 | mutex_lock(&module_mutex); |
Rusty Russell | 944a1fa | 2013-04-17 13:20:03 +0930 | [diff] [blame] | 1842 | mod->state = MODULE_STATE_UNFORMED; |
Prarit Bhargava | d3051b4 | 2014-10-14 02:51:39 +1030 | [diff] [blame] | 1843 | mutex_unlock(&module_mutex); |
Rusty Russell | 944a1fa | 2013-04-17 13:20:03 +0930 | [diff] [blame] | 1844 | |
Jason Baron | b82bab4b | 2010-07-27 13:18:01 -0700 | [diff] [blame] | 1845 | /* Remove dynamic debug info */ |
| 1846 | ddebug_remove_module(mod->name); |
| 1847 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | /* Arch-specific cleanup. */ |
| 1849 | module_arch_cleanup(mod); |
| 1850 | |
| 1851 | /* Module unload stuff */ |
| 1852 | module_unload_free(mod); |
| 1853 | |
Rusty Russell | e180a6b | 2009-03-31 13:05:29 -0600 | [diff] [blame] | 1854 | /* Free any allocated parameters. */ |
| 1855 | destroy_params(mod->kp, mod->num_kp); |
| 1856 | |
Rusty Russell | 944a1fa | 2013-04-17 13:20:03 +0930 | [diff] [blame] | 1857 | /* Now we can delete it from the lists */ |
| 1858 | mutex_lock(&module_mutex); |
Masami Hiramatsu | 461e34a | 2014-11-10 09:27:29 +1030 | [diff] [blame] | 1859 | /* Unlink carefully: kallsyms could be walking list. */ |
| 1860 | list_del_rcu(&mod->list); |
Masami Hiramatsu | 0286b5e | 2014-11-10 09:28:29 +1030 | [diff] [blame] | 1861 | /* Remove this module from bug list, this uses list_del_rcu */ |
Masami Hiramatsu | 461e34a | 2014-11-10 09:27:29 +1030 | [diff] [blame] | 1862 | module_bug_cleanup(mod); |
Masami Hiramatsu | 0286b5e | 2014-11-10 09:28:29 +1030 | [diff] [blame] | 1863 | /* Wait for RCU synchronizing before releasing mod->list and buglist. */ |
| 1864 | synchronize_rcu(); |
Rusty Russell | 944a1fa | 2013-04-17 13:20:03 +0930 | [diff] [blame] | 1865 | mutex_unlock(&module_mutex); |
| 1866 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | /* This may be NULL, but that's OK */ |
Jan Glauber | 01526ed | 2011-05-19 16:55:26 -0600 | [diff] [blame] | 1868 | unset_module_init_ro_nx(mod); |
Rusty Russell | d453cde | 2015-01-20 09:07:04 +1030 | [diff] [blame] | 1869 | module_arch_freeing_init(mod); |
Rusty Russell | be1f221 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 1870 | module_memfree(mod->module_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | kfree(mod->args); |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 1872 | percpu_modfree(mod); |
Rusty Russell | 9f85a4b | 2010-08-05 12:59:04 -0600 | [diff] [blame] | 1873 | |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 1874 | /* Free lock-classes; relies on the preceding sync_rcu(). */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1875 | lockdep_free_key_range(mod->module_core, mod->core_size); |
| 1876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1877 | /* Finally, free the core (containing the module structure) */ |
Jan Glauber | 01526ed | 2011-05-19 16:55:26 -0600 | [diff] [blame] | 1878 | unset_module_core_ro_nx(mod); |
Rusty Russell | be1f221 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 1879 | module_memfree(mod->module_core); |
Bernd Schmidt | eb8cdec | 2009-09-21 17:03:57 -0700 | [diff] [blame] | 1880 | |
| 1881 | #ifdef CONFIG_MPU |
| 1882 | update_protections(current->mm); |
| 1883 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | } |
| 1885 | |
| 1886 | void *__symbol_get(const char *symbol) |
| 1887 | { |
| 1888 | struct module *owner; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1889 | const struct kernel_symbol *sym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 1891 | preempt_disable(); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1892 | sym = find_symbol(symbol, &owner, NULL, true, true); |
| 1893 | if (sym && strong_try_module_get(owner)) |
| 1894 | sym = NULL; |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 1895 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1897 | return sym ? (void *)sym->value : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | } |
| 1899 | EXPORT_SYMBOL_GPL(__symbol_get); |
| 1900 | |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1901 | /* |
| 1902 | * Ensure that an exported symbol [global namespace] does not already exist |
Robert P. J. Day | 02a3e59 | 2007-05-09 07:26:28 +0200 | [diff] [blame] | 1903 | * in the kernel or in some other module's exported symbol table. |
Rusty Russell | be593f4 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1904 | * |
| 1905 | * You must hold the module_mutex. |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1906 | */ |
| 1907 | static int verify_export_symbols(struct module *mod) |
| 1908 | { |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1909 | unsigned int i; |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1910 | struct module *owner; |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1911 | const struct kernel_symbol *s; |
| 1912 | struct { |
| 1913 | const struct kernel_symbol *sym; |
| 1914 | unsigned int num; |
| 1915 | } arr[] = { |
| 1916 | { mod->syms, mod->num_syms }, |
| 1917 | { mod->gpl_syms, mod->num_gpl_syms }, |
| 1918 | { mod->gpl_future_syms, mod->num_gpl_future_syms }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 1919 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1920 | { mod->unused_syms, mod->num_unused_syms }, |
| 1921 | { mod->unused_gpl_syms, mod->num_unused_gpl_syms }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 1922 | #endif |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1923 | }; |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1924 | |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1925 | for (i = 0; i < ARRAY_SIZE(arr); i++) { |
| 1926 | for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) { |
Rusty Russell | be593f4 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1927 | if (find_symbol(s->name, &owner, NULL, true, false)) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 1928 | pr_err("%s: exports duplicate symbol %s" |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1929 | " (owned by %s)\n", |
| 1930 | mod->name, s->name, module_name(owner)); |
| 1931 | return -ENOEXEC; |
| 1932 | } |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1933 | } |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1934 | } |
| 1935 | return 0; |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1936 | } |
| 1937 | |
Matti Linnanvuori | 9a4b970 | 2007-11-08 08:37:38 -0800 | [diff] [blame] | 1938 | /* Change all symbols so that st_value encodes the pointer directly. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1939 | static int simplify_symbols(struct module *mod, const struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | { |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1941 | Elf_Shdr *symsec = &info->sechdrs[info->index.sym]; |
| 1942 | Elf_Sym *sym = (void *)symsec->sh_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | unsigned long secbase; |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1944 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | int ret = 0; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1946 | const struct kernel_symbol *ksym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1948 | for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) { |
| 1949 | const char *name = info->strtab + sym[i].st_name; |
| 1950 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | switch (sym[i].st_shndx) { |
| 1952 | case SHN_COMMON: |
Joe Mario | 8037598 | 2014-02-08 09:01:09 +0100 | [diff] [blame] | 1953 | /* Ignore common symbols */ |
| 1954 | if (!strncmp(name, "__gnu_lto", 9)) |
| 1955 | break; |
| 1956 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | /* We compiled with -fno-common. These are not |
| 1958 | supposed to happen. */ |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 1959 | pr_debug("Common symbol: %s\n", name); |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 1960 | pr_warn("%s: please compile with -fno-common\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | mod->name); |
| 1962 | ret = -ENOEXEC; |
| 1963 | break; |
| 1964 | |
| 1965 | case SHN_ABS: |
| 1966 | /* Don't need to do anything */ |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 1967 | pr_debug("Absolute symbol: 0x%08lx\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | (long)sym[i].st_value); |
| 1969 | break; |
| 1970 | |
| 1971 | case SHN_UNDEF: |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1972 | ksym = resolve_symbol_wait(mod, info, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | /* Ok if resolved. */ |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1974 | if (ksym && !IS_ERR(ksym)) { |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1975 | sym[i].st_value = ksym->value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | break; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1977 | } |
| 1978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | /* Ok if weak. */ |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1980 | if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | break; |
| 1982 | |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 1983 | pr_warn("%s: Unknown symbol %s (err %li)\n", |
| 1984 | mod->name, name, PTR_ERR(ksym)); |
Rusty Russell | 9bea7f2 | 2010-06-05 11:17:37 -0600 | [diff] [blame] | 1985 | ret = PTR_ERR(ksym) ?: -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | break; |
| 1987 | |
| 1988 | default: |
| 1989 | /* Divert to percpu allocation if a percpu var. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1990 | if (sym[i].st_shndx == info->index.pcpu) |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 1991 | secbase = (unsigned long)mod_percpu(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | else |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 1993 | secbase = info->sechdrs[sym[i].st_shndx].sh_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | sym[i].st_value += secbase; |
| 1995 | break; |
| 1996 | } |
| 1997 | } |
| 1998 | |
| 1999 | return ret; |
| 2000 | } |
| 2001 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2002 | static int apply_relocations(struct module *mod, const struct load_info *info) |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2003 | { |
| 2004 | unsigned int i; |
| 2005 | int err = 0; |
| 2006 | |
| 2007 | /* Now do relocations. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2008 | for (i = 1; i < info->hdr->e_shnum; i++) { |
| 2009 | unsigned int infosec = info->sechdrs[i].sh_info; |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2010 | |
| 2011 | /* Not a valid relocation section? */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2012 | if (infosec >= info->hdr->e_shnum) |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2013 | continue; |
| 2014 | |
| 2015 | /* Don't bother with non-allocated sections */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2016 | if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC)) |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2017 | continue; |
| 2018 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2019 | if (info->sechdrs[i].sh_type == SHT_REL) |
| 2020 | err = apply_relocate(info->sechdrs, info->strtab, |
| 2021 | info->index.sym, i, mod); |
| 2022 | else if (info->sechdrs[i].sh_type == SHT_RELA) |
| 2023 | err = apply_relocate_add(info->sechdrs, info->strtab, |
| 2024 | info->index.sym, i, mod); |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2025 | if (err < 0) |
| 2026 | break; |
| 2027 | } |
| 2028 | return err; |
| 2029 | } |
| 2030 | |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 2031 | /* Additional bytes needed by arch in front of individual sections */ |
| 2032 | unsigned int __weak arch_mod_section_prepend(struct module *mod, |
| 2033 | unsigned int section) |
| 2034 | { |
| 2035 | /* default implementation just returns zero */ |
| 2036 | return 0; |
| 2037 | } |
| 2038 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | /* Update size with this section: return offset. */ |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 2040 | static long get_offset(struct module *mod, unsigned int *size, |
| 2041 | Elf_Shdr *sechdr, unsigned int section) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | { |
| 2043 | long ret; |
| 2044 | |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 2045 | *size += arch_mod_section_prepend(mod, section); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | ret = ALIGN(*size, sechdr->sh_addralign ?: 1); |
| 2047 | *size = ret + sechdr->sh_size; |
| 2048 | return ret; |
| 2049 | } |
| 2050 | |
| 2051 | /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld |
| 2052 | might -- code, read-only data, read-write data, small data. Tally |
| 2053 | sizes, and place the offsets into sh_entsize fields: high bit means it |
| 2054 | belongs in init. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2055 | static void layout_sections(struct module *mod, struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | { |
| 2057 | static unsigned long const masks[][2] = { |
| 2058 | /* NOTE: all executable code must be the first section |
| 2059 | * in this array; otherwise modify the text_size |
| 2060 | * finder in the two loops below */ |
| 2061 | { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL }, |
| 2062 | { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL }, |
| 2063 | { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL }, |
| 2064 | { ARCH_SHF_SMALL | SHF_ALLOC, 0 } |
| 2065 | }; |
| 2066 | unsigned int m, i; |
| 2067 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2068 | for (i = 0; i < info->hdr->e_shnum; i++) |
| 2069 | info->sechdrs[i].sh_entsize = ~0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 2071 | pr_debug("Core section allocation order:\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | for (m = 0; m < ARRAY_SIZE(masks); ++m) { |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2073 | for (i = 0; i < info->hdr->e_shnum; ++i) { |
| 2074 | Elf_Shdr *s = &info->sechdrs[i]; |
| 2075 | const char *sname = info->secstrings + s->sh_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | |
| 2077 | if ((s->sh_flags & masks[m][0]) != masks[m][0] |
| 2078 | || (s->sh_flags & masks[m][1]) |
| 2079 | || s->sh_entsize != ~0UL |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2080 | || strstarts(sname, ".init")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | continue; |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 2082 | s->sh_entsize = get_offset(mod, &mod->core_size, s, i); |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 2083 | pr_debug("\t%s\n", sname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | } |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 2085 | switch (m) { |
| 2086 | case 0: /* executable */ |
| 2087 | mod->core_size = debug_align(mod->core_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | mod->core_text_size = mod->core_size; |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 2089 | break; |
| 2090 | case 1: /* RO: text and ro-data */ |
| 2091 | mod->core_size = debug_align(mod->core_size); |
| 2092 | mod->core_ro_size = mod->core_size; |
| 2093 | break; |
| 2094 | case 3: /* whole core */ |
| 2095 | mod->core_size = debug_align(mod->core_size); |
| 2096 | break; |
| 2097 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | } |
| 2099 | |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 2100 | pr_debug("Init section allocation order:\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | for (m = 0; m < ARRAY_SIZE(masks); ++m) { |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2102 | for (i = 0; i < info->hdr->e_shnum; ++i) { |
| 2103 | Elf_Shdr *s = &info->sechdrs[i]; |
| 2104 | const char *sname = info->secstrings + s->sh_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | |
| 2106 | if ((s->sh_flags & masks[m][0]) != masks[m][0] |
| 2107 | || (s->sh_flags & masks[m][1]) |
| 2108 | || s->sh_entsize != ~0UL |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2109 | || !strstarts(sname, ".init")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | continue; |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 2111 | s->sh_entsize = (get_offset(mod, &mod->init_size, s, i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | | INIT_OFFSET_MASK); |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 2113 | pr_debug("\t%s\n", sname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | } |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 2115 | switch (m) { |
| 2116 | case 0: /* executable */ |
| 2117 | mod->init_size = debug_align(mod->init_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | mod->init_text_size = mod->init_size; |
matthieu castet | 84e1c6b | 2010-11-16 22:35:16 +0100 | [diff] [blame] | 2119 | break; |
| 2120 | case 1: /* RO: text and ro-data */ |
| 2121 | mod->init_size = debug_align(mod->init_size); |
| 2122 | mod->init_ro_size = mod->init_size; |
| 2123 | break; |
| 2124 | case 3: /* whole init */ |
| 2125 | mod->init_size = debug_align(mod->init_size); |
| 2126 | break; |
| 2127 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | } |
| 2129 | } |
| 2130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | static void set_license(struct module *mod, const char *license) |
| 2132 | { |
| 2133 | if (!license) |
| 2134 | license = "unspecified"; |
| 2135 | |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2136 | if (!license_is_gpl_compatible(license)) { |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 2137 | if (!test_taint(TAINT_PROPRIETARY_MODULE)) |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 2138 | pr_warn("%s: module license '%s' taints kernel.\n", |
| 2139 | mod->name, license); |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 2140 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE, |
| 2141 | LOCKDEP_NOW_UNRELIABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | } |
| 2143 | } |
| 2144 | |
| 2145 | /* Parse tag=value strings from .modinfo section */ |
| 2146 | static char *next_string(char *string, unsigned long *secsize) |
| 2147 | { |
| 2148 | /* Skip non-zero chars */ |
| 2149 | while (string[0]) { |
| 2150 | string++; |
| 2151 | if ((*secsize)-- <= 1) |
| 2152 | return NULL; |
| 2153 | } |
| 2154 | |
| 2155 | /* Skip any zero padding. */ |
| 2156 | while (!string[0]) { |
| 2157 | string++; |
| 2158 | if ((*secsize)-- <= 1) |
| 2159 | return NULL; |
| 2160 | } |
| 2161 | return string; |
| 2162 | } |
| 2163 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2164 | static char *get_modinfo(struct load_info *info, const char *tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | { |
| 2166 | char *p; |
| 2167 | unsigned int taglen = strlen(tag); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2168 | Elf_Shdr *infosec = &info->sechdrs[info->index.info]; |
| 2169 | unsigned long size = infosec->sh_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2171 | for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') |
| 2173 | return p + taglen + 1; |
| 2174 | } |
| 2175 | return NULL; |
| 2176 | } |
| 2177 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2178 | static void setup_modinfo(struct module *mod, struct load_info *info) |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 2179 | { |
| 2180 | struct module_attribute *attr; |
| 2181 | int i; |
| 2182 | |
| 2183 | for (i = 0; (attr = modinfo_attrs[i]); i++) { |
| 2184 | if (attr->setup) |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2185 | attr->setup(mod, get_modinfo(info, attr->attr.name)); |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 2186 | } |
| 2187 | } |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 2188 | |
Rusty Russell | a263f77 | 2009-09-25 00:32:58 -0600 | [diff] [blame] | 2189 | static void free_modinfo(struct module *mod) |
| 2190 | { |
| 2191 | struct module_attribute *attr; |
| 2192 | int i; |
| 2193 | |
| 2194 | for (i = 0; (attr = modinfo_attrs[i]); i++) { |
| 2195 | if (attr->free) |
| 2196 | attr->free(mod); |
| 2197 | } |
| 2198 | } |
| 2199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | #ifdef CONFIG_KALLSYMS |
WANG Cong | 15bba37 | 2008-07-24 15:41:48 +0100 | [diff] [blame] | 2201 | |
| 2202 | /* lookup symbol in given range of kernel_symbols */ |
| 2203 | static const struct kernel_symbol *lookup_symbol(const char *name, |
| 2204 | const struct kernel_symbol *start, |
| 2205 | const struct kernel_symbol *stop) |
| 2206 | { |
Alessio Igor Bogani | 9d63487 | 2011-05-18 22:35:59 +0200 | [diff] [blame] | 2207 | return bsearch(name, start, stop - start, |
| 2208 | sizeof(struct kernel_symbol), cmp_name); |
WANG Cong | 15bba37 | 2008-07-24 15:41:48 +0100 | [diff] [blame] | 2209 | } |
| 2210 | |
Tim Abbott | ca4787b | 2009-01-05 08:40:10 -0600 | [diff] [blame] | 2211 | static int is_exported(const char *name, unsigned long value, |
| 2212 | const struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | { |
Tim Abbott | ca4787b | 2009-01-05 08:40:10 -0600 | [diff] [blame] | 2214 | const struct kernel_symbol *ks; |
| 2215 | if (!mod) |
| 2216 | ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab); |
Sam Ravnborg | 3fd6805 | 2006-02-08 21:16:45 +0100 | [diff] [blame] | 2217 | else |
Tim Abbott | ca4787b | 2009-01-05 08:40:10 -0600 | [diff] [blame] | 2218 | ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms); |
| 2219 | return ks != NULL && ks->value == value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | } |
| 2221 | |
| 2222 | /* As per nm */ |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2223 | static char elf_type(const Elf_Sym *sym, const struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | { |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2225 | const Elf_Shdr *sechdrs = info->sechdrs; |
| 2226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | if (ELF_ST_BIND(sym->st_info) == STB_WEAK) { |
| 2228 | if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT) |
| 2229 | return 'v'; |
| 2230 | else |
| 2231 | return 'w'; |
| 2232 | } |
| 2233 | if (sym->st_shndx == SHN_UNDEF) |
| 2234 | return 'U'; |
| 2235 | if (sym->st_shndx == SHN_ABS) |
| 2236 | return 'a'; |
| 2237 | if (sym->st_shndx >= SHN_LORESERVE) |
| 2238 | return '?'; |
| 2239 | if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR) |
| 2240 | return 't'; |
| 2241 | if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC |
| 2242 | && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) { |
| 2243 | if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE)) |
| 2244 | return 'r'; |
| 2245 | else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL) |
| 2246 | return 'g'; |
| 2247 | else |
| 2248 | return 'd'; |
| 2249 | } |
| 2250 | if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) { |
| 2251 | if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL) |
| 2252 | return 's'; |
| 2253 | else |
| 2254 | return 'b'; |
| 2255 | } |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2256 | if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name, |
| 2257 | ".debug")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | return 'n'; |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2259 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | return '?'; |
| 2261 | } |
| 2262 | |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2263 | static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs, |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 2264 | unsigned int shnum) |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2265 | { |
| 2266 | const Elf_Shdr *sec; |
| 2267 | |
| 2268 | if (src->st_shndx == SHN_UNDEF |
| 2269 | || src->st_shndx >= shnum |
| 2270 | || !src->st_name) |
| 2271 | return false; |
| 2272 | |
| 2273 | sec = sechdrs + src->st_shndx; |
| 2274 | if (!(sec->sh_flags & SHF_ALLOC) |
| 2275 | #ifndef CONFIG_KALLSYMS_ALL |
| 2276 | || !(sec->sh_flags & SHF_EXECINSTR) |
| 2277 | #endif |
| 2278 | || (sec->sh_entsize & INIT_OFFSET_MASK)) |
| 2279 | return false; |
| 2280 | |
| 2281 | return true; |
| 2282 | } |
| 2283 | |
Kevin Cernekee | 48fd118 | 2012-01-13 09:32:14 +1030 | [diff] [blame] | 2284 | /* |
| 2285 | * We only allocate and copy the strings needed by the parts of symtab |
| 2286 | * we keep. This is simple, but has the effect of making multiple |
| 2287 | * copies of duplicates. We could be more sophisticated, see |
| 2288 | * linux-kernel thread starting with |
| 2289 | * <73defb5e4bca04a6431392cc341112b1@localhost>. |
| 2290 | */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2291 | static void layout_symtab(struct module *mod, struct load_info *info) |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2292 | { |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2293 | Elf_Shdr *symsect = info->sechdrs + info->index.sym; |
| 2294 | Elf_Shdr *strsect = info->sechdrs + info->index.str; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2295 | const Elf_Sym *src; |
Satoru Takeuchi | 54523ec | 2012-12-05 12:29:04 +1030 | [diff] [blame] | 2296 | unsigned int i, nsrc, ndst, strtab_size = 0; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2297 | |
| 2298 | /* Put symbol section at end of init part of module. */ |
| 2299 | symsect->sh_flags |= SHF_ALLOC; |
| 2300 | symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect, |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2301 | info->index.sym) | INIT_OFFSET_MASK; |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 2302 | pr_debug("\t%s\n", info->secstrings + symsect->sh_name); |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2303 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2304 | src = (void *)info->hdr + symsect->sh_offset; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2305 | nsrc = symsect->sh_size / sizeof(*src); |
Kevin Cernekee | 70b1e916 | 2011-11-12 19:08:55 -0800 | [diff] [blame] | 2306 | |
Kevin Cernekee | 48fd118 | 2012-01-13 09:32:14 +1030 | [diff] [blame] | 2307 | /* Compute total space required for the core symbols' strtab. */ |
Rusty Russell | 59ef28b | 2012-10-25 10:49:25 +1030 | [diff] [blame] | 2308 | for (ndst = i = 0; i < nsrc; i++) { |
| 2309 | if (i == 0 || |
| 2310 | is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) { |
| 2311 | strtab_size += strlen(&info->strtab[src[i].st_name])+1; |
Kevin Cernekee | 48fd118 | 2012-01-13 09:32:14 +1030 | [diff] [blame] | 2312 | ndst++; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2313 | } |
Rusty Russell | 59ef28b | 2012-10-25 10:49:25 +1030 | [diff] [blame] | 2314 | } |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2315 | |
| 2316 | /* Append room for core symbols at end of core part. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2317 | info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1); |
Kevin Cernekee | 48fd118 | 2012-01-13 09:32:14 +1030 | [diff] [blame] | 2318 | info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym); |
| 2319 | mod->core_size += strtab_size; |
Laura Abbott | 168e47f | 2015-02-25 14:14:57 -0800 | [diff] [blame] | 2320 | mod->core_size = debug_align(mod->core_size); |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2321 | |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2322 | /* Put string table section at end of init part of module. */ |
| 2323 | strsect->sh_flags |= SHF_ALLOC; |
| 2324 | strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect, |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2325 | info->index.str) | INIT_OFFSET_MASK; |
Laura Abbott | 168e47f | 2015-02-25 14:14:57 -0800 | [diff] [blame] | 2326 | mod->init_size = debug_align(mod->init_size); |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 2327 | pr_debug("\t%s\n", info->secstrings + strsect->sh_name); |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2328 | } |
| 2329 | |
Rusty Russell | 811d66a | 2010-08-05 12:59:12 -0600 | [diff] [blame] | 2330 | static void add_kallsyms(struct module *mod, const struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | { |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2332 | unsigned int i, ndst; |
| 2333 | const Elf_Sym *src; |
| 2334 | Elf_Sym *dst; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2335 | char *s; |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2336 | Elf_Shdr *symsec = &info->sechdrs[info->index.sym]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2337 | |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2338 | mod->symtab = (void *)symsec->sh_addr; |
| 2339 | mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym); |
Rusty Russell | 511ca6a | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2340 | /* Make sure we get permanent strtab: don't use info->strtab. */ |
| 2341 | mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | |
| 2343 | /* Set types up while we still have access to sections. */ |
| 2344 | for (i = 0; i < mod->num_symtab; i++) |
Rusty Russell | eded41c | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2345 | mod->symtab[i].st_info = elf_type(&mod->symtab[i], info); |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2346 | |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2347 | mod->core_symtab = dst = mod->module_core + info->symoffs; |
Kevin Cernekee | 48fd118 | 2012-01-13 09:32:14 +1030 | [diff] [blame] | 2348 | mod->core_strtab = s = mod->module_core + info->stroffs; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2349 | src = mod->symtab; |
Rusty Russell | 59ef28b | 2012-10-25 10:49:25 +1030 | [diff] [blame] | 2350 | for (ndst = i = 0; i < mod->num_symtab; i++) { |
| 2351 | if (i == 0 || |
| 2352 | is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) { |
| 2353 | dst[ndst] = src[i]; |
| 2354 | dst[ndst++].st_name = s - mod->core_strtab; |
| 2355 | s += strlcpy(s, &mod->strtab[src[i].st_name], |
| 2356 | KSYM_NAME_LEN) + 1; |
| 2357 | } |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2358 | } |
| 2359 | mod->core_num_syms = ndst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2360 | } |
| 2361 | #else |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2362 | static inline void layout_symtab(struct module *mod, struct load_info *info) |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2363 | { |
| 2364 | } |
Paul Mundt | 3ae91c2 | 2009-10-01 15:43:54 -0700 | [diff] [blame] | 2365 | |
Michał Mirosław | abbce90 | 2010-09-20 01:58:08 +0200 | [diff] [blame] | 2366 | static void add_kallsyms(struct module *mod, const struct load_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | { |
| 2368 | } |
| 2369 | #endif /* CONFIG_KALLSYMS */ |
| 2370 | |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 2371 | static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num) |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2372 | { |
Rusty Russell | 811d66a | 2010-08-05 12:59:12 -0600 | [diff] [blame] | 2373 | if (!debug) |
| 2374 | return; |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 2375 | #ifdef CONFIG_DYNAMIC_DEBUG |
| 2376 | if (ddebug_add_module(debug, num, debug->modname)) |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 2377 | pr_err("dynamic debug error adding module: %s\n", |
| 2378 | debug->modname); |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 2379 | #endif |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2380 | } |
Jason Baron | 346e15b | 2008-08-12 16:46:19 -0400 | [diff] [blame] | 2381 | |
Yehuda Sadeh | ff49d74 | 2010-07-03 13:07:35 +1000 | [diff] [blame] | 2382 | static void dynamic_debug_remove(struct _ddebug *debug) |
| 2383 | { |
| 2384 | if (debug) |
| 2385 | ddebug_remove_module(debug->modname); |
| 2386 | } |
| 2387 | |
Jonas Bonn | 74e08fc | 2011-06-30 21:22:11 +0200 | [diff] [blame] | 2388 | void * __weak module_alloc(unsigned long size) |
| 2389 | { |
Rusty Russell | 82fab44 | 2012-12-11 09:38:33 +1030 | [diff] [blame] | 2390 | return vmalloc_exec(size); |
Jonas Bonn | 74e08fc | 2011-06-30 21:22:11 +0200 | [diff] [blame] | 2391 | } |
| 2392 | |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 2393 | static void *module_alloc_update_bounds(unsigned long size) |
| 2394 | { |
| 2395 | void *ret = module_alloc(size); |
| 2396 | |
| 2397 | if (ret) { |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 2398 | mutex_lock(&module_mutex); |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 2399 | /* Update module bounds. */ |
| 2400 | if ((unsigned long)ret < module_addr_min) |
| 2401 | module_addr_min = (unsigned long)ret; |
| 2402 | if ((unsigned long)ret + size > module_addr_max) |
| 2403 | module_addr_max = (unsigned long)ret + size; |
Rusty Russell | 7567650 | 2010-06-05 11:17:36 -0600 | [diff] [blame] | 2404 | mutex_unlock(&module_mutex); |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 2405 | } |
| 2406 | return ret; |
| 2407 | } |
| 2408 | |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2409 | #ifdef CONFIG_DEBUG_KMEMLEAK |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2410 | static void kmemleak_load_module(const struct module *mod, |
| 2411 | const struct load_info *info) |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2412 | { |
| 2413 | unsigned int i; |
| 2414 | |
| 2415 | /* only scan the sections containing data */ |
Catalin Marinas | c017b4b | 2009-10-28 13:33:09 +0000 | [diff] [blame] | 2416 | kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL); |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2417 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2418 | for (i = 1; i < info->hdr->e_shnum; i++) { |
Steven Rostedt | 06c9494 | 2013-05-15 20:33:01 +0100 | [diff] [blame] | 2419 | /* Scan all writable sections that's not executable */ |
| 2420 | if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) || |
| 2421 | !(info->sechdrs[i].sh_flags & SHF_WRITE) || |
| 2422 | (info->sechdrs[i].sh_flags & SHF_EXECINSTR)) |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2423 | continue; |
| 2424 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2425 | kmemleak_scan_area((void *)info->sechdrs[i].sh_addr, |
| 2426 | info->sechdrs[i].sh_size, GFP_KERNEL); |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2427 | } |
| 2428 | } |
| 2429 | #else |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2430 | static inline void kmemleak_load_module(const struct module *mod, |
| 2431 | const struct load_info *info) |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2432 | { |
| 2433 | } |
| 2434 | #endif |
| 2435 | |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 2436 | #ifdef CONFIG_MODULE_SIG |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2437 | static int module_sig_check(struct load_info *info) |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 2438 | { |
| 2439 | int err = -ENOKEY; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2440 | const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1; |
| 2441 | const void *mod = info->hdr; |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 2442 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2443 | if (info->len > markerlen && |
| 2444 | memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) { |
David Howells | caabe24 | 2012-10-20 01:19:29 +0100 | [diff] [blame] | 2445 | /* We truncate the module to discard the signature */ |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2446 | info->len -= markerlen; |
| 2447 | err = mod_verify_sig(mod, &info->len); |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 2448 | } |
| 2449 | |
| 2450 | if (!err) { |
| 2451 | info->sig_ok = true; |
| 2452 | return 0; |
| 2453 | } |
| 2454 | |
| 2455 | /* Not having a signature is only an error if we're strict. */ |
| 2456 | if (err == -ENOKEY && !sig_enforce) |
| 2457 | err = 0; |
| 2458 | |
| 2459 | return err; |
| 2460 | } |
| 2461 | #else /* !CONFIG_MODULE_SIG */ |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2462 | static int module_sig_check(struct load_info *info) |
Rusty Russell | 106a4ee | 2012-09-26 10:09:40 +0100 | [diff] [blame] | 2463 | { |
| 2464 | return 0; |
| 2465 | } |
| 2466 | #endif /* !CONFIG_MODULE_SIG */ |
| 2467 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2468 | /* Sanity checks against invalid binaries, wrong arch, weird elf version. */ |
| 2469 | static int elf_header_check(struct load_info *info) |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2470 | { |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2471 | if (info->len < sizeof(*(info->hdr))) |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2472 | return -ENOEXEC; |
| 2473 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2474 | if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0 |
| 2475 | || info->hdr->e_type != ET_REL |
| 2476 | || !elf_check_arch(info->hdr) |
| 2477 | || info->hdr->e_shentsize != sizeof(Elf_Shdr)) |
| 2478 | return -ENOEXEC; |
| 2479 | |
| 2480 | if (info->hdr->e_shoff >= info->len |
| 2481 | || (info->hdr->e_shnum * sizeof(Elf_Shdr) > |
| 2482 | info->len - info->hdr->e_shoff)) |
| 2483 | return -ENOEXEC; |
| 2484 | |
| 2485 | return 0; |
| 2486 | } |
| 2487 | |
Linus Torvalds | 3afe9f8 | 2015-04-07 10:33:49 -0700 | [diff] [blame] | 2488 | #define COPY_CHUNK_SIZE (16*PAGE_SIZE) |
| 2489 | |
| 2490 | static int copy_chunked_from_user(void *dst, const void __user *usrc, unsigned long len) |
| 2491 | { |
| 2492 | do { |
| 2493 | unsigned long n = min(len, COPY_CHUNK_SIZE); |
| 2494 | |
| 2495 | if (copy_from_user(dst, usrc, n) != 0) |
| 2496 | return -EFAULT; |
| 2497 | cond_resched(); |
| 2498 | dst += n; |
| 2499 | usrc += n; |
| 2500 | len -= n; |
| 2501 | } while (len); |
| 2502 | return 0; |
| 2503 | } |
| 2504 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2505 | /* Sets info->hdr and info->len. */ |
| 2506 | static int copy_module_from_user(const void __user *umod, unsigned long len, |
| 2507 | struct load_info *info) |
| 2508 | { |
Kees Cook | 2e72d51 | 2012-10-16 07:32:07 +1030 | [diff] [blame] | 2509 | int err; |
| 2510 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2511 | info->len = len; |
| 2512 | if (info->len < sizeof(*(info->hdr))) |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2513 | return -ENOEXEC; |
| 2514 | |
Kees Cook | 2e72d51 | 2012-10-16 07:32:07 +1030 | [diff] [blame] | 2515 | err = security_kernel_module_from_file(NULL); |
| 2516 | if (err) |
| 2517 | return err; |
| 2518 | |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2519 | /* Suck in entire file: we'll want most of it. */ |
Kirill A. Shutemov | cc9e605 | 2015-03-24 12:31:40 +1030 | [diff] [blame] | 2520 | info->hdr = __vmalloc(info->len, |
| 2521 | GFP_KERNEL | __GFP_HIGHMEM | __GFP_NOWARN, PAGE_KERNEL); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2522 | if (!info->hdr) |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2523 | return -ENOMEM; |
| 2524 | |
Linus Torvalds | 3afe9f8 | 2015-04-07 10:33:49 -0700 | [diff] [blame] | 2525 | if (copy_chunked_from_user(info->hdr, umod, info->len) != 0) { |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2526 | vfree(info->hdr); |
| 2527 | return -EFAULT; |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2528 | } |
| 2529 | |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2530 | return 0; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2531 | } |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2532 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2533 | /* Sets info->hdr and info->len. */ |
| 2534 | static int copy_module_from_fd(int fd, struct load_info *info) |
| 2535 | { |
Al Viro | a2e0578 | 2013-08-30 12:41:41 -0400 | [diff] [blame] | 2536 | struct fd f = fdget(fd); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2537 | int err; |
| 2538 | struct kstat stat; |
| 2539 | loff_t pos; |
| 2540 | ssize_t bytes = 0; |
| 2541 | |
Al Viro | a2e0578 | 2013-08-30 12:41:41 -0400 | [diff] [blame] | 2542 | if (!f.file) |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2543 | return -ENOEXEC; |
| 2544 | |
Al Viro | a2e0578 | 2013-08-30 12:41:41 -0400 | [diff] [blame] | 2545 | err = security_kernel_module_from_file(f.file); |
Kees Cook | 2e72d51 | 2012-10-16 07:32:07 +1030 | [diff] [blame] | 2546 | if (err) |
| 2547 | goto out; |
| 2548 | |
Al Viro | a2e0578 | 2013-08-30 12:41:41 -0400 | [diff] [blame] | 2549 | err = vfs_getattr(&f.file->f_path, &stat); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2550 | if (err) |
| 2551 | goto out; |
| 2552 | |
| 2553 | if (stat.size > INT_MAX) { |
| 2554 | err = -EFBIG; |
| 2555 | goto out; |
| 2556 | } |
Sasha Levin | 52441fa | 2013-01-03 11:09:53 +1030 | [diff] [blame] | 2557 | |
| 2558 | /* Don't hand 0 to vmalloc, it whines. */ |
| 2559 | if (stat.size == 0) { |
| 2560 | err = -EINVAL; |
| 2561 | goto out; |
| 2562 | } |
| 2563 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2564 | info->hdr = vmalloc(stat.size); |
| 2565 | if (!info->hdr) { |
| 2566 | err = -ENOMEM; |
| 2567 | goto out; |
| 2568 | } |
| 2569 | |
| 2570 | pos = 0; |
| 2571 | while (pos < stat.size) { |
Al Viro | a2e0578 | 2013-08-30 12:41:41 -0400 | [diff] [blame] | 2572 | bytes = kernel_read(f.file, pos, (char *)(info->hdr) + pos, |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 2573 | stat.size - pos); |
| 2574 | if (bytes < 0) { |
| 2575 | vfree(info->hdr); |
| 2576 | err = bytes; |
| 2577 | goto out; |
| 2578 | } |
| 2579 | if (bytes == 0) |
| 2580 | break; |
| 2581 | pos += bytes; |
| 2582 | } |
| 2583 | info->len = pos; |
| 2584 | |
| 2585 | out: |
Al Viro | a2e0578 | 2013-08-30 12:41:41 -0400 | [diff] [blame] | 2586 | fdput(f); |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2587 | return err; |
| 2588 | } |
| 2589 | |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2590 | static void free_copy(struct load_info *info) |
| 2591 | { |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2592 | vfree(info->hdr); |
| 2593 | } |
| 2594 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2595 | static int rewrite_section_headers(struct load_info *info, int flags) |
Rusty Russell | 8b5f61a | 2010-08-05 12:59:06 -0600 | [diff] [blame] | 2596 | { |
| 2597 | unsigned int i; |
| 2598 | |
| 2599 | /* This should always be true, but let's be sure. */ |
| 2600 | info->sechdrs[0].sh_addr = 0; |
| 2601 | |
| 2602 | for (i = 1; i < info->hdr->e_shnum; i++) { |
| 2603 | Elf_Shdr *shdr = &info->sechdrs[i]; |
| 2604 | if (shdr->sh_type != SHT_NOBITS |
| 2605 | && info->len < shdr->sh_offset + shdr->sh_size) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 2606 | pr_err("Module len %lu truncated\n", info->len); |
Rusty Russell | 8b5f61a | 2010-08-05 12:59:06 -0600 | [diff] [blame] | 2607 | return -ENOEXEC; |
| 2608 | } |
| 2609 | |
| 2610 | /* Mark all sections sh_addr with their address in the |
| 2611 | temporary image. */ |
| 2612 | shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset; |
| 2613 | |
| 2614 | #ifndef CONFIG_MODULE_UNLOAD |
| 2615 | /* Don't load .exit sections */ |
| 2616 | if (strstarts(info->secstrings+shdr->sh_name, ".exit")) |
| 2617 | shdr->sh_flags &= ~(unsigned long)SHF_ALLOC; |
| 2618 | #endif |
Rusty Russell | 8b5f61a | 2010-08-05 12:59:06 -0600 | [diff] [blame] | 2619 | } |
Rusty Russell | d6df72a | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2620 | |
| 2621 | /* Track but don't keep modinfo and version sections. */ |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2622 | if (flags & MODULE_INIT_IGNORE_MODVERSIONS) |
| 2623 | info->index.vers = 0; /* Pretend no __versions section! */ |
| 2624 | else |
| 2625 | info->index.vers = find_sec(info, "__versions"); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2626 | info->index.info = find_sec(info, ".modinfo"); |
Rusty Russell | d6df72a | 2010-08-05 12:59:07 -0600 | [diff] [blame] | 2627 | info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC; |
| 2628 | info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC; |
Rusty Russell | 8b5f61a | 2010-08-05 12:59:06 -0600 | [diff] [blame] | 2629 | return 0; |
| 2630 | } |
| 2631 | |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2632 | /* |
| 2633 | * Set up our basic convenience variables (pointers to section headers, |
| 2634 | * search for module section index etc), and do some basic section |
| 2635 | * verification. |
| 2636 | * |
| 2637 | * Return the temporary module pointer (we'll replace it with the final |
| 2638 | * one when we move the module sections around). |
| 2639 | */ |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2640 | static struct module *setup_load_info(struct load_info *info, int flags) |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2641 | { |
| 2642 | unsigned int i; |
Rusty Russell | 8b5f61a | 2010-08-05 12:59:06 -0600 | [diff] [blame] | 2643 | int err; |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2644 | struct module *mod; |
| 2645 | |
| 2646 | /* Set up the convenience variables */ |
| 2647 | info->sechdrs = (void *)info->hdr + info->hdr->e_shoff; |
Rusty Russell | 8b5f61a | 2010-08-05 12:59:06 -0600 | [diff] [blame] | 2648 | info->secstrings = (void *)info->hdr |
| 2649 | + info->sechdrs[info->hdr->e_shstrndx].sh_offset; |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2650 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2651 | err = rewrite_section_headers(info, flags); |
Rusty Russell | 8b5f61a | 2010-08-05 12:59:06 -0600 | [diff] [blame] | 2652 | if (err) |
| 2653 | return ERR_PTR(err); |
| 2654 | |
| 2655 | /* Find internal symbols and strings. */ |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2656 | for (i = 1; i < info->hdr->e_shnum; i++) { |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2657 | if (info->sechdrs[i].sh_type == SHT_SYMTAB) { |
| 2658 | info->index.sym = i; |
| 2659 | info->index.str = info->sechdrs[i].sh_link; |
Rusty Russell | 8b5f61a | 2010-08-05 12:59:06 -0600 | [diff] [blame] | 2660 | info->strtab = (char *)info->hdr |
| 2661 | + info->sechdrs[info->index.str].sh_offset; |
| 2662 | break; |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2663 | } |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2664 | } |
| 2665 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2666 | info->index.mod = find_sec(info, ".gnu.linkonce.this_module"); |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2667 | if (!info->index.mod) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 2668 | pr_warn("No module found in object\n"); |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2669 | return ERR_PTR(-ENOEXEC); |
| 2670 | } |
| 2671 | /* This is temporary: point mod into copy of data. */ |
| 2672 | mod = (void *)info->sechdrs[info->index.mod].sh_addr; |
| 2673 | |
| 2674 | if (info->index.sym == 0) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 2675 | pr_warn("%s: module has no symbols (stripped?)\n", mod->name); |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2676 | return ERR_PTR(-ENOEXEC); |
| 2677 | } |
| 2678 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2679 | info->index.pcpu = find_pcpusec(info); |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2680 | |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2681 | /* Check module struct version now, before we try to use module. */ |
| 2682 | if (!check_modstruct_version(info->sechdrs, info->index.vers, mod)) |
| 2683 | return ERR_PTR(-ENOEXEC); |
| 2684 | |
| 2685 | return mod; |
Linus Torvalds | 3264d3f | 2010-06-02 11:01:06 -0700 | [diff] [blame] | 2686 | } |
| 2687 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2688 | static int check_modinfo(struct module *mod, struct load_info *info, int flags) |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2689 | { |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2690 | const char *modmagic = get_modinfo(info, "vermagic"); |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2691 | int err; |
| 2692 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2693 | if (flags & MODULE_INIT_IGNORE_VERMAGIC) |
| 2694 | modmagic = NULL; |
| 2695 | |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2696 | /* This is allowed: modprobe --force will invalidate it. */ |
| 2697 | if (!modmagic) { |
| 2698 | err = try_to_force_load(mod, "bad vermagic"); |
| 2699 | if (err) |
| 2700 | return err; |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2701 | } else if (!same_magic(modmagic, vermagic, info->index.vers)) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 2702 | pr_err("%s: version magic '%s' should be '%s'\n", |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2703 | mod->name, modmagic, vermagic); |
| 2704 | return -ENOEXEC; |
| 2705 | } |
| 2706 | |
Ben Hutchings | 2449b8b | 2011-10-24 15:12:28 +0200 | [diff] [blame] | 2707 | if (!get_modinfo(info, "intree")) |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 2708 | add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK); |
Ben Hutchings | 2449b8b | 2011-10-24 15:12:28 +0200 | [diff] [blame] | 2709 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2710 | if (get_modinfo(info, "staging")) { |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 2711 | add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK); |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 2712 | pr_warn("%s: module is from the staging directory, the quality " |
| 2713 | "is unknown, you have been warned.\n", mod->name); |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2714 | } |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2715 | |
| 2716 | /* Set up license info based on the info section */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2717 | set_license(mod, get_modinfo(info, "license")); |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2718 | |
Rusty Russell | 40dd256 | 2010-08-05 12:59:03 -0600 | [diff] [blame] | 2719 | return 0; |
| 2720 | } |
| 2721 | |
Frantisek Hrbata | eb3057d | 2013-10-14 18:08:46 +1030 | [diff] [blame] | 2722 | static int find_module_sections(struct module *mod, struct load_info *info) |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2723 | { |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2724 | mod->kp = section_objs(info, "__param", |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2725 | sizeof(*mod->kp), &mod->num_kp); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2726 | mod->syms = section_objs(info, "__ksymtab", |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2727 | sizeof(*mod->syms), &mod->num_syms); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2728 | mod->crcs = section_addr(info, "__kcrctab"); |
| 2729 | mod->gpl_syms = section_objs(info, "__ksymtab_gpl", |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2730 | sizeof(*mod->gpl_syms), |
| 2731 | &mod->num_gpl_syms); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2732 | mod->gpl_crcs = section_addr(info, "__kcrctab_gpl"); |
| 2733 | mod->gpl_future_syms = section_objs(info, |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2734 | "__ksymtab_gpl_future", |
| 2735 | sizeof(*mod->gpl_future_syms), |
| 2736 | &mod->num_gpl_future_syms); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2737 | mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future"); |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2738 | |
| 2739 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2740 | mod->unused_syms = section_objs(info, "__ksymtab_unused", |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2741 | sizeof(*mod->unused_syms), |
| 2742 | &mod->num_unused_syms); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2743 | mod->unused_crcs = section_addr(info, "__kcrctab_unused"); |
| 2744 | mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl", |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2745 | sizeof(*mod->unused_gpl_syms), |
| 2746 | &mod->num_unused_gpl_syms); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2747 | mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl"); |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2748 | #endif |
| 2749 | #ifdef CONFIG_CONSTRUCTORS |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2750 | mod->ctors = section_objs(info, ".ctors", |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2751 | sizeof(*mod->ctors), &mod->num_ctors); |
Frantisek Hrbata | eb3057d | 2013-10-14 18:08:46 +1030 | [diff] [blame] | 2752 | if (!mod->ctors) |
| 2753 | mod->ctors = section_objs(info, ".init_array", |
| 2754 | sizeof(*mod->ctors), &mod->num_ctors); |
| 2755 | else if (find_sec(info, ".init_array")) { |
| 2756 | /* |
| 2757 | * This shouldn't happen with same compiler and binutils |
| 2758 | * building all parts of the module. |
| 2759 | */ |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 2760 | pr_warn("%s: has both .ctors and .init_array.\n", |
Frantisek Hrbata | eb3057d | 2013-10-14 18:08:46 +1030 | [diff] [blame] | 2761 | mod->name); |
| 2762 | return -EINVAL; |
| 2763 | } |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2764 | #endif |
| 2765 | |
| 2766 | #ifdef CONFIG_TRACEPOINTS |
Mathieu Desnoyers | 6549864 | 2011-01-26 17:26:22 -0500 | [diff] [blame] | 2767 | mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs", |
| 2768 | sizeof(*mod->tracepoints_ptrs), |
| 2769 | &mod->num_tracepoints); |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2770 | #endif |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 2771 | #ifdef HAVE_JUMP_LABEL |
| 2772 | mod->jump_entries = section_objs(info, "__jump_table", |
| 2773 | sizeof(*mod->jump_entries), |
| 2774 | &mod->num_jump_entries); |
| 2775 | #endif |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2776 | #ifdef CONFIG_EVENT_TRACING |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2777 | mod->trace_events = section_objs(info, "_ftrace_events", |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2778 | sizeof(*mod->trace_events), |
| 2779 | &mod->num_trace_events); |
Steven Rostedt (Red Hat) | 3673b8e | 2015-03-25 15:44:21 -0400 | [diff] [blame] | 2780 | mod->trace_enums = section_objs(info, "_ftrace_enum_map", |
| 2781 | sizeof(*mod->trace_enums), |
| 2782 | &mod->num_trace_enums); |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2783 | #endif |
Steven Rostedt | 13b9b6e | 2010-11-10 22:19:24 -0500 | [diff] [blame] | 2784 | #ifdef CONFIG_TRACING |
| 2785 | mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt", |
| 2786 | sizeof(*mod->trace_bprintk_fmt_start), |
| 2787 | &mod->num_trace_bprintk_fmt); |
Steven Rostedt | 13b9b6e | 2010-11-10 22:19:24 -0500 | [diff] [blame] | 2788 | #endif |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2789 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
| 2790 | /* sechdrs[0].sh_size is always zero */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2791 | mod->ftrace_callsites = section_objs(info, "__mcount_loc", |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2792 | sizeof(*mod->ftrace_callsites), |
| 2793 | &mod->num_ftrace_callsites); |
| 2794 | #endif |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2795 | |
Rusty Russell | 811d66a | 2010-08-05 12:59:12 -0600 | [diff] [blame] | 2796 | mod->extable = section_objs(info, "__ex_table", |
| 2797 | sizeof(*mod->extable), &mod->num_exentries); |
| 2798 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2799 | if (section_addr(info, "__obsparm")) |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 2800 | pr_warn("%s: Ignoring obsolete parameters\n", mod->name); |
Rusty Russell | 811d66a | 2010-08-05 12:59:12 -0600 | [diff] [blame] | 2801 | |
| 2802 | info->debug = section_objs(info, "__verbose", |
| 2803 | sizeof(*info->debug), &info->num_debug); |
Frantisek Hrbata | eb3057d | 2013-10-14 18:08:46 +1030 | [diff] [blame] | 2804 | |
| 2805 | return 0; |
Linus Torvalds | f91a13b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2806 | } |
| 2807 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2808 | static int move_module(struct module *mod, struct load_info *info) |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2809 | { |
| 2810 | int i; |
| 2811 | void *ptr; |
| 2812 | |
| 2813 | /* Do the allocs. */ |
| 2814 | ptr = module_alloc_update_bounds(mod->core_size); |
| 2815 | /* |
| 2816 | * The pointer to this block is stored in the module structure |
| 2817 | * which is inside the block. Just mark it as not being a |
| 2818 | * leak. |
| 2819 | */ |
| 2820 | kmemleak_not_leak(ptr); |
| 2821 | if (!ptr) |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2822 | return -ENOMEM; |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2823 | |
| 2824 | memset(ptr, 0, mod->core_size); |
| 2825 | mod->module_core = ptr; |
| 2826 | |
Rusty Russell | 82fab44 | 2012-12-11 09:38:33 +1030 | [diff] [blame] | 2827 | if (mod->init_size) { |
| 2828 | ptr = module_alloc_update_bounds(mod->init_size); |
| 2829 | /* |
| 2830 | * The pointer to this block is stored in the module structure |
| 2831 | * which is inside the block. This block doesn't need to be |
| 2832 | * scanned as it contains data and code that will be freed |
| 2833 | * after the module is initialized. |
| 2834 | */ |
| 2835 | kmemleak_ignore(ptr); |
| 2836 | if (!ptr) { |
Rusty Russell | be1f221 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 2837 | module_memfree(mod->module_core); |
Rusty Russell | 82fab44 | 2012-12-11 09:38:33 +1030 | [diff] [blame] | 2838 | return -ENOMEM; |
| 2839 | } |
| 2840 | memset(ptr, 0, mod->init_size); |
| 2841 | mod->module_init = ptr; |
| 2842 | } else |
| 2843 | mod->module_init = NULL; |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2844 | |
| 2845 | /* Transfer each section which specifies SHF_ALLOC */ |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 2846 | pr_debug("final section addresses:\n"); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2847 | for (i = 0; i < info->hdr->e_shnum; i++) { |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2848 | void *dest; |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2849 | Elf_Shdr *shdr = &info->sechdrs[i]; |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2850 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2851 | if (!(shdr->sh_flags & SHF_ALLOC)) |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2852 | continue; |
| 2853 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2854 | if (shdr->sh_entsize & INIT_OFFSET_MASK) |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2855 | dest = mod->module_init |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2856 | + (shdr->sh_entsize & ~INIT_OFFSET_MASK); |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2857 | else |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2858 | dest = mod->module_core + shdr->sh_entsize; |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2859 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2860 | if (shdr->sh_type != SHT_NOBITS) |
| 2861 | memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size); |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2862 | /* Update sh_addr to point to copy in image. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2863 | shdr->sh_addr = (unsigned long)dest; |
Jim Cromie | 5e12416 | 2011-12-06 12:11:31 -0700 | [diff] [blame] | 2864 | pr_debug("\t0x%lx %s\n", |
| 2865 | (long)shdr->sh_addr, info->secstrings + shdr->sh_name); |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2866 | } |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2867 | |
| 2868 | return 0; |
Linus Torvalds | 65b8a9b | 2010-08-05 12:59:02 -0600 | [diff] [blame] | 2869 | } |
| 2870 | |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2871 | static int check_module_license_and_versions(struct module *mod) |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2872 | { |
| 2873 | /* |
| 2874 | * ndiswrapper is under GPL by itself, but loads proprietary modules. |
| 2875 | * Don't use add_taint_module(), as it would prevent ndiswrapper from |
| 2876 | * using GPL-only symbols it needs. |
| 2877 | */ |
| 2878 | if (strcmp(mod->name, "ndiswrapper") == 0) |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 2879 | add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE); |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2880 | |
| 2881 | /* driverloader was caught wrongly pretending to be under GPL */ |
| 2882 | if (strcmp(mod->name, "driverloader") == 0) |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 2883 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE, |
| 2884 | LOCKDEP_NOW_UNRELIABLE); |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2885 | |
Matthew Garrett | c99af37 | 2012-06-22 13:49:31 -0400 | [diff] [blame] | 2886 | /* lve claims to be GPL but upstream won't provide source */ |
| 2887 | if (strcmp(mod->name, "lve") == 0) |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 2888 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE, |
| 2889 | LOCKDEP_NOW_UNRELIABLE); |
Matthew Garrett | c99af37 | 2012-06-22 13:49:31 -0400 | [diff] [blame] | 2890 | |
Rusty Russell | 22e268e | 2010-08-05 12:59:05 -0600 | [diff] [blame] | 2891 | #ifdef CONFIG_MODVERSIONS |
| 2892 | if ((mod->num_syms && !mod->crcs) |
| 2893 | || (mod->num_gpl_syms && !mod->gpl_crcs) |
| 2894 | || (mod->num_gpl_future_syms && !mod->gpl_future_crcs) |
| 2895 | #ifdef CONFIG_UNUSED_SYMBOLS |
| 2896 | || (mod->num_unused_syms && !mod->unused_crcs) |
| 2897 | || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs) |
| 2898 | #endif |
| 2899 | ) { |
| 2900 | return try_to_force_load(mod, |
| 2901 | "no versions for exported symbols"); |
| 2902 | } |
| 2903 | #endif |
| 2904 | return 0; |
| 2905 | } |
| 2906 | |
| 2907 | static void flush_module_icache(const struct module *mod) |
| 2908 | { |
| 2909 | mm_segment_t old_fs; |
| 2910 | |
| 2911 | /* flush the icache in correct context */ |
| 2912 | old_fs = get_fs(); |
| 2913 | set_fs(KERNEL_DS); |
| 2914 | |
| 2915 | /* |
| 2916 | * Flush the instruction cache, since we've played with text. |
| 2917 | * Do it before processing of module parameters, so the module |
| 2918 | * can provide parameter accessor functions of its own. |
| 2919 | */ |
| 2920 | if (mod->module_init) |
| 2921 | flush_icache_range((unsigned long)mod->module_init, |
| 2922 | (unsigned long)mod->module_init |
| 2923 | + mod->init_size); |
| 2924 | flush_icache_range((unsigned long)mod->module_core, |
| 2925 | (unsigned long)mod->module_core + mod->core_size); |
| 2926 | |
| 2927 | set_fs(old_fs); |
| 2928 | } |
| 2929 | |
Jonas Bonn | 74e08fc | 2011-06-30 21:22:11 +0200 | [diff] [blame] | 2930 | int __weak module_frob_arch_sections(Elf_Ehdr *hdr, |
| 2931 | Elf_Shdr *sechdrs, |
| 2932 | char *secstrings, |
| 2933 | struct module *mod) |
| 2934 | { |
| 2935 | return 0; |
| 2936 | } |
| 2937 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2938 | static struct module *layout_and_allocate(struct load_info *info, int flags) |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2939 | { |
| 2940 | /* Module within temporary copy. */ |
| 2941 | struct module *mod; |
| 2942 | int err; |
| 2943 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2944 | mod = setup_load_info(info, flags); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2945 | if (IS_ERR(mod)) |
| 2946 | return mod; |
| 2947 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 2948 | err = check_modinfo(mod, info, flags); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2949 | if (err) |
| 2950 | return ERR_PTR(err); |
| 2951 | |
| 2952 | /* Allow arches to frob section contents and sizes. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2953 | err = module_frob_arch_sections(info->hdr, info->sechdrs, |
| 2954 | info->secstrings, mod); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2955 | if (err < 0) |
Rusty Russell | 8d8022e | 2013-07-03 10:06:28 +0930 | [diff] [blame] | 2956 | return ERR_PTR(err); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2957 | |
Rusty Russell | 8d8022e | 2013-07-03 10:06:28 +0930 | [diff] [blame] | 2958 | /* We will do a special allocation for per-cpu sections later. */ |
| 2959 | info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC; |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2960 | |
| 2961 | /* Determine total sizes, and put offsets in sh_entsize. For now |
| 2962 | this is done generically; there doesn't appear to be any |
| 2963 | special cases for the architectures. */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2964 | layout_sections(mod, info); |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2965 | layout_symtab(mod, info); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2966 | |
| 2967 | /* Allocate and move to the final place */ |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2968 | err = move_module(mod, info); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2969 | if (err) |
Rusty Russell | 8d8022e | 2013-07-03 10:06:28 +0930 | [diff] [blame] | 2970 | return ERR_PTR(err); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2971 | |
| 2972 | /* Module has been copied to its final place now: return it. */ |
| 2973 | mod = (void *)info->sechdrs[info->index.mod].sh_addr; |
Rusty Russell | 4966868 | 2010-08-05 12:59:10 -0600 | [diff] [blame] | 2974 | kmemleak_load_module(mod, info); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2975 | return mod; |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2976 | } |
| 2977 | |
| 2978 | /* mod is no longer valid after this! */ |
| 2979 | static void module_deallocate(struct module *mod, struct load_info *info) |
| 2980 | { |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2981 | percpu_modfree(mod); |
Rusty Russell | d453cde | 2015-01-20 09:07:04 +1030 | [diff] [blame] | 2982 | module_arch_freeing_init(mod); |
Rusty Russell | be1f221 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 2983 | module_memfree(mod->module_init); |
| 2984 | module_memfree(mod->module_core); |
Rusty Russell | d913188 | 2010-08-05 12:59:08 -0600 | [diff] [blame] | 2985 | } |
| 2986 | |
Jonas Bonn | 74e08fc | 2011-06-30 21:22:11 +0200 | [diff] [blame] | 2987 | int __weak module_finalize(const Elf_Ehdr *hdr, |
| 2988 | const Elf_Shdr *sechdrs, |
| 2989 | struct module *me) |
| 2990 | { |
| 2991 | return 0; |
| 2992 | } |
| 2993 | |
Rusty Russell | 811d66a | 2010-08-05 12:59:12 -0600 | [diff] [blame] | 2994 | static int post_relocation(struct module *mod, const struct load_info *info) |
| 2995 | { |
Rusty Russell | 51f3d0f | 2010-08-05 12:59:13 -0600 | [diff] [blame] | 2996 | /* Sort exception table now relocations are done. */ |
Rusty Russell | 811d66a | 2010-08-05 12:59:12 -0600 | [diff] [blame] | 2997 | sort_extable(mod->extable, mod->extable + mod->num_exentries); |
| 2998 | |
| 2999 | /* Copy relocated percpu area over. */ |
| 3000 | percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr, |
| 3001 | info->sechdrs[info->index.pcpu].sh_size); |
| 3002 | |
Rusty Russell | 51f3d0f | 2010-08-05 12:59:13 -0600 | [diff] [blame] | 3003 | /* Setup kallsyms-specific fields. */ |
Rusty Russell | 811d66a | 2010-08-05 12:59:12 -0600 | [diff] [blame] | 3004 | add_kallsyms(mod, info); |
| 3005 | |
| 3006 | /* Arch-specific module finalizing. */ |
| 3007 | return module_finalize(info->hdr, info->sechdrs, mod); |
| 3008 | } |
| 3009 | |
Rusty Russell | 9bb9c3b | 2012-09-28 14:31:03 +0930 | [diff] [blame] | 3010 | /* Is this module of this name done loading? No locks held. */ |
| 3011 | static bool finished_loading(const char *name) |
| 3012 | { |
| 3013 | struct module *mod; |
| 3014 | bool ret; |
| 3015 | |
Peter Zijlstra | 9cc019b | 2015-02-11 15:01:13 +1030 | [diff] [blame] | 3016 | /* |
| 3017 | * The module_mutex should not be a heavily contended lock; |
| 3018 | * if we get the occasional sleep here, we'll go an extra iteration |
| 3019 | * in the wait_event_interruptible(), which is harmless. |
| 3020 | */ |
| 3021 | sched_annotate_sleep(); |
Rusty Russell | 9bb9c3b | 2012-09-28 14:31:03 +0930 | [diff] [blame] | 3022 | mutex_lock(&module_mutex); |
Mathias Krause | 4f6de4d | 2013-07-02 15:35:11 +0930 | [diff] [blame] | 3023 | mod = find_module_all(name, strlen(name), true); |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3024 | ret = !mod || mod->state == MODULE_STATE_LIVE |
| 3025 | || mod->state == MODULE_STATE_GOING; |
Rusty Russell | 9bb9c3b | 2012-09-28 14:31:03 +0930 | [diff] [blame] | 3026 | mutex_unlock(&module_mutex); |
| 3027 | |
| 3028 | return ret; |
| 3029 | } |
| 3030 | |
Peter Oberparleiter | b99b87f | 2009-06-17 16:28:03 -0700 | [diff] [blame] | 3031 | /* Call module constructors. */ |
| 3032 | static void do_mod_ctors(struct module *mod) |
| 3033 | { |
| 3034 | #ifdef CONFIG_CONSTRUCTORS |
| 3035 | unsigned long i; |
| 3036 | |
| 3037 | for (i = 0; i < mod->num_ctors; i++) |
| 3038 | mod->ctors[i](); |
| 3039 | #endif |
| 3040 | } |
| 3041 | |
Rusty Russell | c749637 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 3042 | /* For freeing module_init on success, in case kallsyms traversing */ |
| 3043 | struct mod_initfree { |
| 3044 | struct rcu_head rcu; |
| 3045 | void *module_init; |
| 3046 | }; |
| 3047 | |
| 3048 | static void do_free_init(struct rcu_head *head) |
| 3049 | { |
| 3050 | struct mod_initfree *m = container_of(head, struct mod_initfree, rcu); |
| 3051 | module_memfree(m->module_init); |
| 3052 | kfree(m); |
| 3053 | } |
| 3054 | |
Jan Kiszka | be02a18 | 2015-02-17 13:46:50 -0800 | [diff] [blame] | 3055 | /* |
| 3056 | * This is where the real work happens. |
| 3057 | * |
| 3058 | * Keep it uninlined to provide a reliable breakpoint target, e.g. for the gdb |
| 3059 | * helper command 'lx-symbols'. |
| 3060 | */ |
| 3061 | static noinline int do_init_module(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3062 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | int ret = 0; |
Rusty Russell | c749637 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 3064 | struct mod_initfree *freeinit; |
| 3065 | |
| 3066 | freeinit = kmalloc(sizeof(*freeinit), GFP_KERNEL); |
| 3067 | if (!freeinit) { |
| 3068 | ret = -ENOMEM; |
| 3069 | goto fail; |
| 3070 | } |
| 3071 | freeinit->module_init = mod->module_init; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3072 | |
Tejun Heo | 774a122 | 2013-01-15 18:52:51 -0800 | [diff] [blame] | 3073 | /* |
| 3074 | * We want to find out whether @mod uses async during init. Clear |
| 3075 | * PF_USED_ASYNC. async_schedule*() will set it. |
| 3076 | */ |
| 3077 | current->flags &= ~PF_USED_ASYNC; |
| 3078 | |
Peter Oberparleiter | b99b87f | 2009-06-17 16:28:03 -0700 | [diff] [blame] | 3079 | do_mod_ctors(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | /* Start the module */ |
| 3081 | if (mod->init != NULL) |
Arjan van de Ven | 59f9415 | 2008-07-30 12:49:02 -0700 | [diff] [blame] | 3082 | ret = do_one_initcall(mod->init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3083 | if (ret < 0) { |
Rusty Russell | c749637 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 3084 | goto fail_free_freeinit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | } |
Alexey Dobriyan | e24e2e6 | 2008-03-10 11:43:53 -0700 | [diff] [blame] | 3086 | if (ret > 0) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 3087 | pr_warn("%s: '%s'->init suspiciously returned %d, it should " |
| 3088 | "follow 0/-E convention\n" |
| 3089 | "%s: loading module anyway...\n", |
| 3090 | __func__, mod->name, ret, __func__); |
Alexey Dobriyan | e24e2e6 | 2008-03-10 11:43:53 -0700 | [diff] [blame] | 3091 | dump_stack(); |
| 3092 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3093 | |
Rusty Russell | 6f13909 | 2012-09-28 14:31:03 +0930 | [diff] [blame] | 3094 | /* Now it's a first class citizen! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | mod->state = MODULE_STATE_LIVE; |
Masami Hiramatsu | 0deddf43 | 2009-01-06 14:41:54 -0800 | [diff] [blame] | 3096 | blocking_notifier_call_chain(&module_notify_list, |
| 3097 | MODULE_STATE_LIVE, mod); |
Rusty Russell | 6c5db22 | 2008-03-10 11:43:52 -0700 | [diff] [blame] | 3098 | |
Tejun Heo | 774a122 | 2013-01-15 18:52:51 -0800 | [diff] [blame] | 3099 | /* |
| 3100 | * We need to finish all async code before the module init sequence |
| 3101 | * is done. This has potential to deadlock. For example, a newly |
| 3102 | * detected block device can trigger request_module() of the |
| 3103 | * default iosched from async probing task. Once userland helper |
| 3104 | * reaches here, async_synchronize_full() will wait on the async |
| 3105 | * task waiting on request_module() and deadlock. |
| 3106 | * |
| 3107 | * This deadlock is avoided by perfomring async_synchronize_full() |
| 3108 | * iff module init queued any async jobs. This isn't a full |
| 3109 | * solution as it will deadlock the same if module loading from |
| 3110 | * async jobs nests more than once; however, due to the various |
| 3111 | * constraints, this hack seems to be the best option for now. |
| 3112 | * Please refer to the following thread for details. |
| 3113 | * |
| 3114 | * http://thread.gmane.org/gmane.linux.kernel/1420814 |
| 3115 | */ |
| 3116 | if (current->flags & PF_USED_ASYNC) |
| 3117 | async_synchronize_full(); |
Linus Torvalds | d6de2c8 | 2009-04-10 12:17:41 -0700 | [diff] [blame] | 3118 | |
Rusty Russell | 6c5db22 | 2008-03-10 11:43:52 -0700 | [diff] [blame] | 3119 | mutex_lock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | /* Drop initial reference. */ |
| 3121 | module_put(mod); |
Rusty Russell | ad6561d | 2009-06-12 21:47:03 -0600 | [diff] [blame] | 3122 | trim_init_extable(mod); |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 3123 | #ifdef CONFIG_KALLSYMS |
| 3124 | mod->num_symtab = mod->core_num_syms; |
| 3125 | mod->symtab = mod->core_symtab; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 3126 | mod->strtab = mod->core_strtab; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 3127 | #endif |
Jan Glauber | 01526ed | 2011-05-19 16:55:26 -0600 | [diff] [blame] | 3128 | unset_module_init_ro_nx(mod); |
Rusty Russell | d453cde | 2015-01-20 09:07:04 +1030 | [diff] [blame] | 3129 | module_arch_freeing_init(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3130 | mod->module_init = NULL; |
| 3131 | mod->init_size = 0; |
Jan Glauber | 4d10380 | 2011-05-19 16:55:25 -0600 | [diff] [blame] | 3132 | mod->init_ro_size = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3133 | mod->init_text_size = 0; |
Rusty Russell | c749637 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 3134 | /* |
| 3135 | * We want to free module_init, but be aware that kallsyms may be |
| 3136 | * walking this with preempt disabled. In all the failure paths, |
| 3137 | * we call synchronize_rcu/synchronize_sched, but we don't want |
| 3138 | * to slow down the success path, so use actual RCU here. |
| 3139 | */ |
| 3140 | call_rcu(&freeinit->rcu, do_free_init); |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 3141 | mutex_unlock(&module_mutex); |
Rusty Russell | 6f13909 | 2012-09-28 14:31:03 +0930 | [diff] [blame] | 3142 | wake_up_all(&module_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3143 | |
| 3144 | return 0; |
Rusty Russell | c749637 | 2015-01-20 09:07:05 +1030 | [diff] [blame] | 3145 | |
| 3146 | fail_free_freeinit: |
| 3147 | kfree(freeinit); |
| 3148 | fail: |
| 3149 | /* Try to protect us from buggy refcounters. */ |
| 3150 | mod->state = MODULE_STATE_GOING; |
| 3151 | synchronize_sched(); |
| 3152 | module_put(mod); |
| 3153 | blocking_notifier_call_chain(&module_notify_list, |
| 3154 | MODULE_STATE_GOING, mod); |
| 3155 | free_module(mod); |
| 3156 | wake_up_all(&module_wq); |
| 3157 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3158 | } |
| 3159 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3160 | static int may_init_module(void) |
| 3161 | { |
| 3162 | if (!capable(CAP_SYS_MODULE) || modules_disabled) |
| 3163 | return -EPERM; |
| 3164 | |
| 3165 | return 0; |
| 3166 | } |
| 3167 | |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3168 | /* |
| 3169 | * We try to place it in the list now to make sure it's unique before |
| 3170 | * we dedicate too many resources. In particular, temporary percpu |
| 3171 | * memory exhaustion. |
| 3172 | */ |
| 3173 | static int add_unformed_module(struct module *mod) |
| 3174 | { |
| 3175 | int err; |
| 3176 | struct module *old; |
| 3177 | |
| 3178 | mod->state = MODULE_STATE_UNFORMED; |
| 3179 | |
| 3180 | again: |
| 3181 | mutex_lock(&module_mutex); |
Mathias Krause | 4f6de4d | 2013-07-02 15:35:11 +0930 | [diff] [blame] | 3182 | old = find_module_all(mod->name, strlen(mod->name), true); |
| 3183 | if (old != NULL) { |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3184 | if (old->state == MODULE_STATE_COMING |
| 3185 | || old->state == MODULE_STATE_UNFORMED) { |
| 3186 | /* Wait in case it fails to load. */ |
| 3187 | mutex_unlock(&module_mutex); |
Peter Zijlstra | 9cc019b | 2015-02-11 15:01:13 +1030 | [diff] [blame] | 3188 | err = wait_event_interruptible(module_wq, |
| 3189 | finished_loading(mod->name)); |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3190 | if (err) |
| 3191 | goto out_unlocked; |
| 3192 | goto again; |
| 3193 | } |
| 3194 | err = -EEXIST; |
| 3195 | goto out; |
| 3196 | } |
| 3197 | list_add_rcu(&mod->list, &modules); |
| 3198 | err = 0; |
| 3199 | |
| 3200 | out: |
| 3201 | mutex_unlock(&module_mutex); |
| 3202 | out_unlocked: |
| 3203 | return err; |
| 3204 | } |
| 3205 | |
| 3206 | static int complete_formation(struct module *mod, struct load_info *info) |
| 3207 | { |
| 3208 | int err; |
| 3209 | |
| 3210 | mutex_lock(&module_mutex); |
| 3211 | |
| 3212 | /* Find duplicate symbols (must be called under lock). */ |
| 3213 | err = verify_export_symbols(mod); |
| 3214 | if (err < 0) |
| 3215 | goto out; |
| 3216 | |
| 3217 | /* This relies on module_mutex for list integrity. */ |
| 3218 | module_bug_finalize(info->hdr, info->sechdrs, mod); |
| 3219 | |
Rusty Russell | 4982223 | 2014-05-14 10:54:19 +0930 | [diff] [blame] | 3220 | /* Set RO and NX regions for core */ |
| 3221 | set_section_ro_nx(mod->module_core, |
| 3222 | mod->core_text_size, |
| 3223 | mod->core_ro_size, |
| 3224 | mod->core_size); |
| 3225 | |
| 3226 | /* Set RO and NX regions for init */ |
| 3227 | set_section_ro_nx(mod->module_init, |
| 3228 | mod->init_text_size, |
| 3229 | mod->init_ro_size, |
| 3230 | mod->init_size); |
| 3231 | |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3232 | /* Mark state as coming so strong_try_module_get() ignores us, |
| 3233 | * but kallsyms etc. can see us. */ |
| 3234 | mod->state = MODULE_STATE_COMING; |
Rusty Russell | 4982223 | 2014-05-14 10:54:19 +0930 | [diff] [blame] | 3235 | mutex_unlock(&module_mutex); |
| 3236 | |
| 3237 | blocking_notifier_call_chain(&module_notify_list, |
| 3238 | MODULE_STATE_COMING, mod); |
| 3239 | return 0; |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3240 | |
| 3241 | out: |
| 3242 | mutex_unlock(&module_mutex); |
| 3243 | return err; |
| 3244 | } |
| 3245 | |
Rusty Russell | 54041d8 | 2013-07-02 15:35:12 +0930 | [diff] [blame] | 3246 | static int unknown_module_param_cb(char *param, char *val, const char *modname) |
| 3247 | { |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 3248 | /* Check for magic 'dyndbg' arg */ |
Rusty Russell | 54041d8 | 2013-07-02 15:35:12 +0930 | [diff] [blame] | 3249 | int ret = ddebug_dyndbg_module_param_cb(param, val, modname); |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 3250 | if (ret != 0) |
| 3251 | pr_warn("%s: unknown parameter '%s' ignored\n", modname, param); |
Rusty Russell | 54041d8 | 2013-07-02 15:35:12 +0930 | [diff] [blame] | 3252 | return 0; |
| 3253 | } |
| 3254 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3255 | /* Allocate and load the module: note that size of section 0 is always |
| 3256 | zero, and we rely on this for optional sections. */ |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 3257 | static int load_module(struct load_info *info, const char __user *uargs, |
| 3258 | int flags) |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3259 | { |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3260 | struct module *mod; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3261 | long err; |
Rusty Russell | 51e158c | 2014-04-28 11:34:33 +0930 | [diff] [blame] | 3262 | char *after_dashes; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3263 | |
| 3264 | err = module_sig_check(info); |
| 3265 | if (err) |
| 3266 | goto free_copy; |
| 3267 | |
| 3268 | err = elf_header_check(info); |
| 3269 | if (err) |
| 3270 | goto free_copy; |
| 3271 | |
| 3272 | /* Figure out module layout, and allocate all the memory. */ |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 3273 | mod = layout_and_allocate(info, flags); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3274 | if (IS_ERR(mod)) { |
| 3275 | err = PTR_ERR(mod); |
| 3276 | goto free_copy; |
| 3277 | } |
| 3278 | |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3279 | /* Reserve our place in the list. */ |
| 3280 | err = add_unformed_module(mod); |
| 3281 | if (err) |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3282 | goto free_module; |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3283 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3284 | #ifdef CONFIG_MODULE_SIG |
| 3285 | mod->sig_ok = info->sig_ok; |
Rusty Russell | 64748a2 | 2013-01-21 17:03:02 +1030 | [diff] [blame] | 3286 | if (!mod->sig_ok) { |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 3287 | pr_notice_once("%s: module verification failed: signature " |
Marcel Holtmann | ab92ebb | 2015-02-06 15:09:57 +1030 | [diff] [blame] | 3288 | "and/or required key missing - tainting " |
Andrew Morton | bddb12b | 2013-11-12 15:11:28 -0800 | [diff] [blame] | 3289 | "kernel\n", mod->name); |
Mathieu Desnoyers | 66cc69e | 2014-03-13 12:11:30 +1030 | [diff] [blame] | 3290 | add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK); |
Rusty Russell | 64748a2 | 2013-01-21 17:03:02 +1030 | [diff] [blame] | 3291 | } |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3292 | #endif |
| 3293 | |
Rusty Russell | 8d8022e | 2013-07-03 10:06:28 +0930 | [diff] [blame] | 3294 | /* To avoid stressing percpu allocator, do this once we're unique. */ |
Rusty Russell | 9eb76d7 | 2013-07-03 10:06:29 +0930 | [diff] [blame] | 3295 | err = percpu_modalloc(mod, info); |
Rusty Russell | 8d8022e | 2013-07-03 10:06:28 +0930 | [diff] [blame] | 3296 | if (err) |
| 3297 | goto unlink_mod; |
| 3298 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3299 | /* Now module is in final location, initialize linked lists, etc. */ |
| 3300 | err = module_unload_init(mod); |
| 3301 | if (err) |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3302 | goto unlink_mod; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3303 | |
| 3304 | /* Now we've got everything in the final locations, we can |
| 3305 | * find optional sections. */ |
Frantisek Hrbata | eb3057d | 2013-10-14 18:08:46 +1030 | [diff] [blame] | 3306 | err = find_module_sections(mod, info); |
| 3307 | if (err) |
| 3308 | goto free_unload; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3309 | |
| 3310 | err = check_module_license_and_versions(mod); |
| 3311 | if (err) |
| 3312 | goto free_unload; |
| 3313 | |
| 3314 | /* Set up MODINFO_ATTR fields */ |
| 3315 | setup_modinfo(mod, info); |
| 3316 | |
| 3317 | /* Fix up syms, so that st_value is a pointer to location. */ |
| 3318 | err = simplify_symbols(mod, info); |
| 3319 | if (err < 0) |
| 3320 | goto free_modinfo; |
| 3321 | |
| 3322 | err = apply_relocations(mod, info); |
| 3323 | if (err < 0) |
| 3324 | goto free_modinfo; |
| 3325 | |
| 3326 | err = post_relocation(mod, info); |
| 3327 | if (err < 0) |
| 3328 | goto free_modinfo; |
| 3329 | |
| 3330 | flush_module_icache(mod); |
| 3331 | |
| 3332 | /* Now copy in args */ |
| 3333 | mod->args = strndup_user(uargs, ~0UL >> 1); |
| 3334 | if (IS_ERR(mod->args)) { |
| 3335 | err = PTR_ERR(mod->args); |
| 3336 | goto free_arch_cleanup; |
| 3337 | } |
| 3338 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3339 | dynamic_debug_setup(info->debug, info->num_debug); |
| 3340 | |
Steven Rostedt (Red Hat) | a949ae5 | 2014-04-24 10:40:12 -0400 | [diff] [blame] | 3341 | /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */ |
| 3342 | ftrace_module_init(mod); |
| 3343 | |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3344 | /* Finally it's fully formed, ready to start executing. */ |
| 3345 | err = complete_formation(mod, info); |
| 3346 | if (err) |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3347 | goto ddebug_cleanup; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3348 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3349 | /* Module is ready to execute: parsing args may do that. */ |
Rusty Russell | 51e158c | 2014-04-28 11:34:33 +0930 | [diff] [blame] | 3350 | after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, |
| 3351 | -32768, 32767, unknown_module_param_cb); |
| 3352 | if (IS_ERR(after_dashes)) { |
| 3353 | err = PTR_ERR(after_dashes); |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3354 | goto bug_cleanup; |
Rusty Russell | 51e158c | 2014-04-28 11:34:33 +0930 | [diff] [blame] | 3355 | } else if (after_dashes) { |
| 3356 | pr_warn("%s: parameters '%s' after `--' ignored\n", |
| 3357 | mod->name, after_dashes); |
| 3358 | } |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3359 | |
| 3360 | /* Link in to syfs. */ |
| 3361 | err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp); |
| 3362 | if (err < 0) |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3363 | goto bug_cleanup; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3364 | |
| 3365 | /* Get rid of temporary copy. */ |
| 3366 | free_copy(info); |
| 3367 | |
| 3368 | /* Done! */ |
| 3369 | trace_module_load(mod); |
| 3370 | |
| 3371 | return do_init_module(mod); |
| 3372 | |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3373 | bug_cleanup: |
| 3374 | /* module_bug_cleanup needs module_mutex protection */ |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3375 | mutex_lock(&module_mutex); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3376 | module_bug_cleanup(mod); |
Linus Torvalds | ee61abb | 2013-01-20 20:22:58 -0800 | [diff] [blame] | 3377 | mutex_unlock(&module_mutex); |
Andy Lutomirski | ff7e005 | 2014-08-16 04:13:37 +0930 | [diff] [blame] | 3378 | |
| 3379 | /* we can't deallocate the module until we clear memory protection */ |
| 3380 | unset_module_init_ro_nx(mod); |
| 3381 | unset_module_core_ro_nx(mod); |
| 3382 | |
Rusty Russell | a3535c7 | 2013-01-21 17:18:59 +1030 | [diff] [blame] | 3383 | ddebug_cleanup: |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3384 | dynamic_debug_remove(info->debug); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3385 | synchronize_sched(); |
| 3386 | kfree(mod->args); |
| 3387 | free_arch_cleanup: |
| 3388 | module_arch_cleanup(mod); |
| 3389 | free_modinfo: |
| 3390 | free_modinfo(mod); |
| 3391 | free_unload: |
| 3392 | module_unload_free(mod); |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3393 | unlink_mod: |
| 3394 | mutex_lock(&module_mutex); |
| 3395 | /* Unlink carefully: kallsyms could be walking list. */ |
| 3396 | list_del_rcu(&mod->list); |
| 3397 | wake_up_all(&module_wq); |
Masami Hiramatsu | 4f48795 | 2014-11-10 09:26:29 +1030 | [diff] [blame] | 3398 | /* Wait for RCU synchronizing before releasing mod->list. */ |
| 3399 | synchronize_rcu(); |
Rusty Russell | 1fb9341 | 2013-01-12 13:27:34 +1030 | [diff] [blame] | 3400 | mutex_unlock(&module_mutex); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3401 | free_module: |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 3402 | /* Free lock-classes; relies on the preceding sync_rcu() */ |
| 3403 | lockdep_free_key_range(mod->module_core, mod->core_size); |
| 3404 | |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3405 | module_deallocate(mod, info); |
| 3406 | free_copy: |
| 3407 | free_copy(info); |
| 3408 | return err; |
| 3409 | } |
| 3410 | |
| 3411 | SYSCALL_DEFINE3(init_module, void __user *, umod, |
| 3412 | unsigned long, len, const char __user *, uargs) |
| 3413 | { |
| 3414 | int err; |
| 3415 | struct load_info info = { }; |
| 3416 | |
| 3417 | err = may_init_module(); |
| 3418 | if (err) |
| 3419 | return err; |
| 3420 | |
| 3421 | pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n", |
| 3422 | umod, len, uargs); |
| 3423 | |
| 3424 | err = copy_module_from_user(umod, len, &info); |
| 3425 | if (err) |
| 3426 | return err; |
| 3427 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 3428 | return load_module(&info, uargs, 0); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3429 | } |
| 3430 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 3431 | SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags) |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3432 | { |
| 3433 | int err; |
| 3434 | struct load_info info = { }; |
| 3435 | |
| 3436 | err = may_init_module(); |
| 3437 | if (err) |
| 3438 | return err; |
| 3439 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 3440 | pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags); |
| 3441 | |
| 3442 | if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS |
| 3443 | |MODULE_INIT_IGNORE_VERMAGIC)) |
| 3444 | return -EINVAL; |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3445 | |
| 3446 | err = copy_module_from_fd(fd, &info); |
| 3447 | if (err) |
| 3448 | return err; |
| 3449 | |
Rusty Russell | 2f3238a | 2012-10-22 18:09:41 +1030 | [diff] [blame] | 3450 | return load_module(&info, uargs, flags); |
Kees Cook | 34e1169 | 2012-10-16 07:31:07 +1030 | [diff] [blame] | 3451 | } |
| 3452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3453 | static inline int within(unsigned long addr, void *start, unsigned long size) |
| 3454 | { |
| 3455 | return ((void *)addr >= start && (void *)addr < start + size); |
| 3456 | } |
| 3457 | |
| 3458 | #ifdef CONFIG_KALLSYMS |
| 3459 | /* |
| 3460 | * This ignores the intensely annoying "mapping symbols" found |
| 3461 | * in ARM ELF files: $a, $t and $d. |
| 3462 | */ |
| 3463 | static inline int is_arm_mapping_symbol(const char *str) |
| 3464 | { |
Russell King | 2e3a10a | 2014-07-27 07:29:01 +0930 | [diff] [blame] | 3465 | if (str[0] == '.' && str[1] == 'L') |
| 3466 | return true; |
Kyle McMartin | 6c34f1f | 2014-09-16 22:37:18 +0100 | [diff] [blame] | 3467 | return str[0] == '$' && strchr("axtd", str[1]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3468 | && (str[2] == '\0' || str[2] == '.'); |
| 3469 | } |
| 3470 | |
| 3471 | static const char *get_ksymbol(struct module *mod, |
| 3472 | unsigned long addr, |
| 3473 | unsigned long *size, |
| 3474 | unsigned long *offset) |
| 3475 | { |
| 3476 | unsigned int i, best = 0; |
| 3477 | unsigned long nextval; |
| 3478 | |
| 3479 | /* At worse, next value is at end of module */ |
Masami Hiramatsu | a06f621 | 2009-01-06 14:41:49 -0800 | [diff] [blame] | 3480 | if (within_module_init(addr, mod)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3481 | nextval = (unsigned long)mod->module_init+mod->init_text_size; |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 3482 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3483 | nextval = (unsigned long)mod->module_core+mod->core_text_size; |
| 3484 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3485 | /* Scan for closest preceding symbol, and next symbol. (ELF |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 3486 | starts real symbols at 1). */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3487 | for (i = 1; i < mod->num_symtab; i++) { |
| 3488 | if (mod->symtab[i].st_shndx == SHN_UNDEF) |
| 3489 | continue; |
| 3490 | |
| 3491 | /* We ignore unnamed symbols: they're uninformative |
| 3492 | * and inserted at a whim. */ |
| 3493 | if (mod->symtab[i].st_value <= addr |
| 3494 | && mod->symtab[i].st_value > mod->symtab[best].st_value |
| 3495 | && *(mod->strtab + mod->symtab[i].st_name) != '\0' |
| 3496 | && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name)) |
| 3497 | best = i; |
| 3498 | if (mod->symtab[i].st_value > addr |
| 3499 | && mod->symtab[i].st_value < nextval |
| 3500 | && *(mod->strtab + mod->symtab[i].st_name) != '\0' |
| 3501 | && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name)) |
| 3502 | nextval = mod->symtab[i].st_value; |
| 3503 | } |
| 3504 | |
| 3505 | if (!best) |
| 3506 | return NULL; |
| 3507 | |
Alexey Dobriyan | ffb4512 | 2007-05-08 00:28:41 -0700 | [diff] [blame] | 3508 | if (size) |
| 3509 | *size = nextval - mod->symtab[best].st_value; |
| 3510 | if (offset) |
| 3511 | *offset = addr - mod->symtab[best].st_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3512 | return mod->strtab + mod->symtab[best].st_name; |
| 3513 | } |
| 3514 | |
Rusty Russell | 6dd06c9 | 2008-01-29 17:13:22 -0500 | [diff] [blame] | 3515 | /* For kallsyms to ask for address resolution. NULL means not found. Careful |
| 3516 | * not to lock to avoid deadlock on oopses, simply disable preemption. */ |
Andrew Morton | 92dfc9d | 2008-02-08 04:18:43 -0800 | [diff] [blame] | 3517 | const char *module_address_lookup(unsigned long addr, |
Rusty Russell | 6dd06c9 | 2008-01-29 17:13:22 -0500 | [diff] [blame] | 3518 | unsigned long *size, |
| 3519 | unsigned long *offset, |
| 3520 | char **modname, |
| 3521 | char *namebuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3522 | { |
| 3523 | struct module *mod; |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3524 | const char *ret = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3525 | |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3526 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 3527 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3528 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3529 | continue; |
Petr Mladek | 9b20a35 | 2014-07-27 07:24:01 +0930 | [diff] [blame] | 3530 | if (within_module(addr, mod)) { |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 3531 | if (modname) |
| 3532 | *modname = mod->name; |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3533 | ret = get_ksymbol(mod, addr, size, offset); |
| 3534 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3535 | } |
| 3536 | } |
Rusty Russell | 6dd06c9 | 2008-01-29 17:13:22 -0500 | [diff] [blame] | 3537 | /* Make a copy in here where it's safe */ |
| 3538 | if (ret) { |
| 3539 | strncpy(namebuf, ret, KSYM_NAME_LEN - 1); |
| 3540 | ret = namebuf; |
| 3541 | } |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3542 | preempt_enable(); |
Andrew Morton | 92dfc9d | 2008-02-08 04:18:43 -0800 | [diff] [blame] | 3543 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3544 | } |
| 3545 | |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 3546 | int lookup_module_symbol_name(unsigned long addr, char *symname) |
| 3547 | { |
| 3548 | struct module *mod; |
| 3549 | |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3550 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 3551 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3552 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3553 | continue; |
Petr Mladek | 9b20a35 | 2014-07-27 07:24:01 +0930 | [diff] [blame] | 3554 | if (within_module(addr, mod)) { |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 3555 | const char *sym; |
| 3556 | |
| 3557 | sym = get_ksymbol(mod, addr, NULL, NULL); |
| 3558 | if (!sym) |
| 3559 | goto out; |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 3560 | strlcpy(symname, sym, KSYM_NAME_LEN); |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3561 | preempt_enable(); |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 3562 | return 0; |
| 3563 | } |
| 3564 | } |
| 3565 | out: |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3566 | preempt_enable(); |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 3567 | return -ERANGE; |
| 3568 | } |
| 3569 | |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 3570 | int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, |
| 3571 | unsigned long *offset, char *modname, char *name) |
| 3572 | { |
| 3573 | struct module *mod; |
| 3574 | |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3575 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 3576 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3577 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3578 | continue; |
Petr Mladek | 9b20a35 | 2014-07-27 07:24:01 +0930 | [diff] [blame] | 3579 | if (within_module(addr, mod)) { |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 3580 | const char *sym; |
| 3581 | |
| 3582 | sym = get_ksymbol(mod, addr, size, offset); |
| 3583 | if (!sym) |
| 3584 | goto out; |
| 3585 | if (modname) |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 3586 | strlcpy(modname, mod->name, MODULE_NAME_LEN); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 3587 | if (name) |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 3588 | strlcpy(name, sym, KSYM_NAME_LEN); |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3589 | preempt_enable(); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 3590 | return 0; |
| 3591 | } |
| 3592 | } |
| 3593 | out: |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3594 | preempt_enable(); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 3595 | return -ERANGE; |
| 3596 | } |
| 3597 | |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 3598 | int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type, |
| 3599 | char *name, char *module_name, int *exported) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | { |
| 3601 | struct module *mod; |
| 3602 | |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3603 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 3604 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3605 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3606 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | if (symnum < mod->num_symtab) { |
| 3608 | *value = mod->symtab[symnum].st_value; |
| 3609 | *type = mod->symtab[symnum].st_info; |
Andreas Gruenbacher | 098c5ee | 2006-07-14 00:24:04 -0700 | [diff] [blame] | 3610 | strlcpy(name, mod->strtab + mod->symtab[symnum].st_name, |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 3611 | KSYM_NAME_LEN); |
| 3612 | strlcpy(module_name, mod->name, MODULE_NAME_LEN); |
Tim Abbott | ca4787b | 2009-01-05 08:40:10 -0600 | [diff] [blame] | 3613 | *exported = is_exported(name, *value, mod); |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3614 | preempt_enable(); |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 3615 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3616 | } |
| 3617 | symnum -= mod->num_symtab; |
| 3618 | } |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3619 | preempt_enable(); |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 3620 | return -ERANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3621 | } |
| 3622 | |
| 3623 | static unsigned long mod_find_symname(struct module *mod, const char *name) |
| 3624 | { |
| 3625 | unsigned int i; |
| 3626 | |
| 3627 | for (i = 0; i < mod->num_symtab; i++) |
Keith Owens | 54e8ce4 | 2006-02-03 03:03:53 -0800 | [diff] [blame] | 3628 | if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 && |
| 3629 | mod->symtab[i].st_info != 'U') |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3630 | return mod->symtab[i].st_value; |
| 3631 | return 0; |
| 3632 | } |
| 3633 | |
| 3634 | /* Look for this name: can be of form module:name. */ |
| 3635 | unsigned long module_kallsyms_lookup_name(const char *name) |
| 3636 | { |
| 3637 | struct module *mod; |
| 3638 | char *colon; |
| 3639 | unsigned long ret = 0; |
| 3640 | |
| 3641 | /* Don't lock: we're in enough trouble already. */ |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3642 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3643 | if ((colon = strchr(name, ':')) != NULL) { |
Mathias Krause | 4f6de4d | 2013-07-02 15:35:11 +0930 | [diff] [blame] | 3644 | if ((mod = find_module_all(name, colon - name, false)) != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3645 | ret = mod_find_symname(mod, colon+1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3646 | } else { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3647 | list_for_each_entry_rcu(mod, &modules, list) { |
| 3648 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3649 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | if ((ret = mod_find_symname(mod, name)) != 0) |
| 3651 | break; |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3652 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3653 | } |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 3654 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3655 | return ret; |
| 3656 | } |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 3657 | |
| 3658 | int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *, |
| 3659 | struct module *, unsigned long), |
| 3660 | void *data) |
| 3661 | { |
| 3662 | struct module *mod; |
| 3663 | unsigned int i; |
| 3664 | int ret; |
| 3665 | |
| 3666 | list_for_each_entry(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3667 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3668 | continue; |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 3669 | for (i = 0; i < mod->num_symtab; i++) { |
| 3670 | ret = fn(data, mod->strtab + mod->symtab[i].st_name, |
| 3671 | mod, mod->symtab[i].st_value); |
| 3672 | if (ret != 0) |
| 3673 | return ret; |
| 3674 | } |
| 3675 | } |
| 3676 | return 0; |
| 3677 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | #endif /* CONFIG_KALLSYMS */ |
| 3679 | |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3680 | static char *module_flags(struct module *mod, char *buf) |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 3681 | { |
| 3682 | int bx = 0; |
| 3683 | |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3684 | BUG_ON(mod->state == MODULE_STATE_UNFORMED); |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3685 | if (mod->taints || |
| 3686 | mod->state == MODULE_STATE_GOING || |
| 3687 | mod->state == MODULE_STATE_COMING) { |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 3688 | buf[bx++] = '('; |
Kay Sievers | cca3e70 | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 3689 | bx += module_flags_taint(mod, buf + bx); |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3690 | /* Show a - for module-is-being-unloaded */ |
| 3691 | if (mod->state == MODULE_STATE_GOING) |
| 3692 | buf[bx++] = '-'; |
| 3693 | /* Show a + for module-is-being-loaded */ |
| 3694 | if (mod->state == MODULE_STATE_COMING) |
| 3695 | buf[bx++] = '+'; |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 3696 | buf[bx++] = ')'; |
| 3697 | } |
| 3698 | buf[bx] = '\0'; |
| 3699 | |
| 3700 | return buf; |
| 3701 | } |
| 3702 | |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 3703 | #ifdef CONFIG_PROC_FS |
| 3704 | /* Called by the /proc file system to return a list of modules. */ |
| 3705 | static void *m_start(struct seq_file *m, loff_t *pos) |
| 3706 | { |
| 3707 | mutex_lock(&module_mutex); |
| 3708 | return seq_list_start(&modules, *pos); |
| 3709 | } |
| 3710 | |
| 3711 | static void *m_next(struct seq_file *m, void *p, loff_t *pos) |
| 3712 | { |
| 3713 | return seq_list_next(p, &modules, pos); |
| 3714 | } |
| 3715 | |
| 3716 | static void m_stop(struct seq_file *m, void *p) |
| 3717 | { |
| 3718 | mutex_unlock(&module_mutex); |
| 3719 | } |
| 3720 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | static int m_show(struct seq_file *m, void *p) |
| 3722 | { |
| 3723 | struct module *mod = list_entry(p, struct module, list); |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 3724 | char buf[8]; |
| 3725 | |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3726 | /* We always ignore unformed modules. */ |
| 3727 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3728 | return 0; |
| 3729 | |
Denys Vlasenko | 2f0f2a3 | 2008-07-22 19:24:27 -0500 | [diff] [blame] | 3730 | seq_printf(m, "%s %u", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3731 | mod->name, mod->init_size + mod->core_size); |
| 3732 | print_unload_info(m, mod); |
| 3733 | |
| 3734 | /* Informative for users. */ |
| 3735 | seq_printf(m, " %s", |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 3736 | mod->state == MODULE_STATE_GOING ? "Unloading" : |
| 3737 | mod->state == MODULE_STATE_COMING ? "Loading" : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3738 | "Live"); |
| 3739 | /* Used by oprofile and other similar tools. */ |
Kees Cook | 9f36e2c | 2011-03-22 16:34:22 -0700 | [diff] [blame] | 3740 | seq_printf(m, " 0x%pK", mod->module_core); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 3742 | /* Taints info */ |
| 3743 | if (mod->taints) |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3744 | seq_printf(m, " %s", module_flags(mod, buf)); |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 3745 | |
Ionut Alexa | 6da0b56 | 2014-11-10 09:31:29 +1030 | [diff] [blame] | 3746 | seq_puts(m, "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3747 | return 0; |
| 3748 | } |
| 3749 | |
| 3750 | /* Format: modulename size refcount deps address |
| 3751 | |
| 3752 | Where refcount is a number or -, and deps is a comma-separated list |
| 3753 | of depends or -. |
| 3754 | */ |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 3755 | static const struct seq_operations modules_op = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3756 | .start = m_start, |
| 3757 | .next = m_next, |
| 3758 | .stop = m_stop, |
| 3759 | .show = m_show |
| 3760 | }; |
| 3761 | |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 3762 | static int modules_open(struct inode *inode, struct file *file) |
| 3763 | { |
| 3764 | return seq_open(file, &modules_op); |
| 3765 | } |
| 3766 | |
| 3767 | static const struct file_operations proc_modules_operations = { |
| 3768 | .open = modules_open, |
| 3769 | .read = seq_read, |
| 3770 | .llseek = seq_lseek, |
| 3771 | .release = seq_release, |
| 3772 | }; |
| 3773 | |
| 3774 | static int __init proc_modules_init(void) |
| 3775 | { |
| 3776 | proc_create("modules", 0, NULL, &proc_modules_operations); |
| 3777 | return 0; |
| 3778 | } |
| 3779 | module_init(proc_modules_init); |
| 3780 | #endif |
| 3781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3782 | /* Given an address, look for it in the module exception tables. */ |
| 3783 | const struct exception_table_entry *search_module_extables(unsigned long addr) |
| 3784 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3785 | const struct exception_table_entry *e = NULL; |
| 3786 | struct module *mod; |
| 3787 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 3788 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 3789 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3790 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3791 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3792 | if (mod->num_exentries == 0) |
| 3793 | continue; |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 3794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3795 | e = search_extable(mod->extable, |
| 3796 | mod->extable + mod->num_exentries - 1, |
| 3797 | addr); |
| 3798 | if (e) |
| 3799 | break; |
| 3800 | } |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 3801 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3802 | |
| 3803 | /* Now, if we found one, we are running inside it now, hence |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 3804 | we cannot unload the module, hence no refcnt needed. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | return e; |
| 3806 | } |
| 3807 | |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 3808 | /* |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 3809 | * is_module_address - is this address inside a module? |
| 3810 | * @addr: the address to check. |
| 3811 | * |
| 3812 | * See is_module_text_address() if you simply want to see if the address |
| 3813 | * is code (not data). |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 3814 | */ |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 3815 | bool is_module_address(unsigned long addr) |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 3816 | { |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 3817 | bool ret; |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 3818 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 3819 | preempt_disable(); |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 3820 | ret = __module_address(addr) != NULL; |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 3821 | preempt_enable(); |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 3822 | |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 3823 | return ret; |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 3824 | } |
| 3825 | |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 3826 | /* |
| 3827 | * __module_address - get the module which contains an address. |
| 3828 | * @addr: the address. |
| 3829 | * |
| 3830 | * Must be called with preempt disabled or module mutex held so that |
| 3831 | * module doesn't get freed during this. |
| 3832 | */ |
Linus Torvalds | 714f83d | 2009-04-05 11:04:19 -0700 | [diff] [blame] | 3833 | struct module *__module_address(unsigned long addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3834 | { |
| 3835 | struct module *mod; |
| 3836 | |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 3837 | if (addr < module_addr_min || addr > module_addr_max) |
| 3838 | return NULL; |
| 3839 | |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3840 | list_for_each_entry_rcu(mod, &modules, list) { |
| 3841 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3842 | continue; |
Petr Mladek | 9b20a35 | 2014-07-27 07:24:01 +0930 | [diff] [blame] | 3843 | if (within_module(addr, mod)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3844 | return mod; |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3845 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3846 | return NULL; |
| 3847 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 3848 | EXPORT_SYMBOL_GPL(__module_address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3849 | |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 3850 | /* |
| 3851 | * is_module_text_address - is this address inside module code? |
| 3852 | * @addr: the address to check. |
| 3853 | * |
| 3854 | * See is_module_address() if you simply want to see if the address is |
| 3855 | * anywhere in a module. See kernel_text_address() for testing if an |
| 3856 | * address corresponds to kernel or module code. |
| 3857 | */ |
| 3858 | bool is_module_text_address(unsigned long addr) |
| 3859 | { |
| 3860 | bool ret; |
| 3861 | |
| 3862 | preempt_disable(); |
| 3863 | ret = __module_text_address(addr) != NULL; |
| 3864 | preempt_enable(); |
| 3865 | |
| 3866 | return ret; |
| 3867 | } |
| 3868 | |
| 3869 | /* |
| 3870 | * __module_text_address - get the module whose code contains an address. |
| 3871 | * @addr: the address. |
| 3872 | * |
| 3873 | * Must be called with preempt disabled or module mutex held so that |
| 3874 | * module doesn't get freed during this. |
| 3875 | */ |
| 3876 | struct module *__module_text_address(unsigned long addr) |
| 3877 | { |
| 3878 | struct module *mod = __module_address(addr); |
| 3879 | if (mod) { |
| 3880 | /* Make sure it's within the text section. */ |
| 3881 | if (!within(addr, mod->module_init, mod->init_text_size) |
| 3882 | && !within(addr, mod->module_core, mod->core_text_size)) |
| 3883 | mod = NULL; |
| 3884 | } |
| 3885 | return mod; |
| 3886 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 3887 | EXPORT_SYMBOL_GPL(__module_text_address); |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 3888 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3889 | /* Don't grab lock, we're oopsing. */ |
| 3890 | void print_modules(void) |
| 3891 | { |
| 3892 | struct module *mod; |
Randy Dunlap | 2bc2d61 | 2006-10-02 02:17:02 -0700 | [diff] [blame] | 3893 | char buf[8]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3894 | |
Linus Torvalds | b231125 | 2009-06-16 11:07:14 -0700 | [diff] [blame] | 3895 | printk(KERN_DEFAULT "Modules linked in:"); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 3896 | /* Most callers should already have preempt disabled, but make sure */ |
| 3897 | preempt_disable(); |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3898 | list_for_each_entry_rcu(mod, &modules, list) { |
| 3899 | if (mod->state == MODULE_STATE_UNFORMED) |
| 3900 | continue; |
Jiri Slaby | 27bba4d | 2014-02-03 11:13:13 +1030 | [diff] [blame] | 3901 | pr_cont(" %s%s", mod->name, module_flags(mod, buf)); |
Rusty Russell | 0d21b0e | 2013-01-12 11:38:44 +1030 | [diff] [blame] | 3902 | } |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 3903 | preempt_enable(); |
Arjan van de Ven | e14af7e | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3904 | if (last_unloaded_module[0]) |
Jiri Slaby | 27bba4d | 2014-02-03 11:13:13 +1030 | [diff] [blame] | 3905 | pr_cont(" [last unloaded: %s]", last_unloaded_module); |
| 3906 | pr_cont("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3907 | } |
| 3908 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3909 | #ifdef CONFIG_MODVERSIONS |
Rusty Russell | 8c8ef42 | 2009-03-31 13:05:34 -0600 | [diff] [blame] | 3910 | /* Generate the signature for all relevant module structures here. |
| 3911 | * If these change, we don't want to try to parse the module. */ |
| 3912 | void module_layout(struct module *mod, |
| 3913 | struct modversion_info *ver, |
| 3914 | struct kernel_param *kp, |
| 3915 | struct kernel_symbol *ks, |
Mathieu Desnoyers | 6549864 | 2011-01-26 17:26:22 -0500 | [diff] [blame] | 3916 | struct tracepoint * const *tp) |
Rusty Russell | 8c8ef42 | 2009-03-31 13:05:34 -0600 | [diff] [blame] | 3917 | { |
| 3918 | } |
| 3919 | EXPORT_SYMBOL(module_layout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3920 | #endif |