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 |
| 3 | Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM. |
| 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 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/module.h> |
| 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> |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 24 | #include <linux/fs.h> |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 25 | #include <linux/sysfs.h> |
Randy Dunlap | 9f15833 | 2005-09-13 01:25:16 -0700 | [diff] [blame] | 26 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/slab.h> |
| 28 | #include <linux/vmalloc.h> |
| 29 | #include <linux/elf.h> |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 30 | #include <linux/proc_fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/seq_file.h> |
| 32 | #include <linux/syscalls.h> |
| 33 | #include <linux/fcntl.h> |
| 34 | #include <linux/rcupdate.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 35 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/cpu.h> |
| 37 | #include <linux/moduleparam.h> |
| 38 | #include <linux/errno.h> |
| 39 | #include <linux/err.h> |
| 40 | #include <linux/vermagic.h> |
| 41 | #include <linux/notifier.h> |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 42 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/stop_machine.h> |
| 44 | #include <linux/device.h> |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 45 | #include <linux/string.h> |
Arjan van de Ven | 97d1f15 | 2006-03-23 03:00:24 -0800 | [diff] [blame] | 46 | #include <linux/mutex.h> |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 47 | #include <linux/rculist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <asm/cacheflush.h> |
Bernd Schmidt | eb8cdec | 2009-09-21 17:03:57 -0700 | [diff] [blame] | 50 | #include <asm/mmu_context.h> |
Sam Ravnborg | b817f6f | 2006-06-09 21:53:55 +0200 | [diff] [blame] | 51 | #include <linux/license.h> |
Christoph Lameter | 6d76239 | 2008-02-08 04:18:42 -0800 | [diff] [blame] | 52 | #include <asm/sections.h> |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 53 | #include <linux/tracepoint.h> |
Steven Rostedt | 90d595f | 2008-08-14 15:45:09 -0400 | [diff] [blame] | 54 | #include <linux/ftrace.h> |
Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 55 | #include <linux/async.h> |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 56 | #include <linux/percpu.h> |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 57 | #include <linux/kmemleak.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Li Zefan | 7ead8b8 | 2009-08-17 16:56:28 +0800 | [diff] [blame] | 59 | #define CREATE_TRACE_POINTS |
| 60 | #include <trace/events/module.h> |
| 61 | |
| 62 | EXPORT_TRACEPOINT_SYMBOL(module_get); |
| 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #if 0 |
| 65 | #define DEBUGP printk |
| 66 | #else |
| 67 | #define DEBUGP(fmt , a...) |
| 68 | #endif |
| 69 | |
| 70 | #ifndef ARCH_SHF_SMALL |
| 71 | #define ARCH_SHF_SMALL 0 |
| 72 | #endif |
| 73 | |
| 74 | /* If this is set, the section belongs in the init part of the module */ |
| 75 | #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1)) |
| 76 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 77 | /* List of modules, protected by module_mutex or preempt_disable |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 78 | * (delete uses stop_machine/add uses RCU list operations). */ |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 79 | DEFINE_MUTEX(module_mutex); |
| 80 | EXPORT_SYMBOL_GPL(module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | static LIST_HEAD(modules); |
| 82 | |
Stephen Rothwell | 19e4529 | 2009-04-14 17:27:18 +1000 | [diff] [blame] | 83 | /* Block module loading/unloading? */ |
| 84 | int modules_disabled = 0; |
| 85 | |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 86 | /* Waiting for a module to finish initializing? */ |
| 87 | static DECLARE_WAIT_QUEUE_HEAD(module_wq); |
| 88 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 89 | static BLOCKING_NOTIFIER_HEAD(module_notify_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 91 | /* Bounds of module allocation, for speeding __module_address */ |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 92 | static unsigned long module_addr_min = -1UL, module_addr_max = 0; |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | int register_module_notifier(struct notifier_block * nb) |
| 95 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 96 | return blocking_notifier_chain_register(&module_notify_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | EXPORT_SYMBOL(register_module_notifier); |
| 99 | |
| 100 | int unregister_module_notifier(struct notifier_block * nb) |
| 101 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 102 | return blocking_notifier_chain_unregister(&module_notify_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | EXPORT_SYMBOL(unregister_module_notifier); |
| 105 | |
Matti Linnanvuori | 9a4b970 | 2007-11-08 08:37:38 -0800 | [diff] [blame] | 106 | /* We require a truly strong try_module_get(): 0 means failure due to |
| 107 | ongoing or failed initialization etc. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | static inline int strong_try_module_get(struct module *mod) |
| 109 | { |
| 110 | if (mod && mod->state == MODULE_STATE_COMING) |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 111 | return -EBUSY; |
| 112 | if (try_module_get(mod)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | return 0; |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 114 | else |
| 115 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 118 | static inline void add_taint_module(struct module *mod, unsigned flag) |
| 119 | { |
| 120 | add_taint(flag); |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 121 | mod->taints |= (1U << flag); |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Robert P. J. Day | 02a3e59 | 2007-05-09 07:26:28 +0200 | [diff] [blame] | 124 | /* |
| 125 | * A thread that wants to hold a reference to a module only while it |
| 126 | * 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] | 127 | */ |
| 128 | void __module_put_and_exit(struct module *mod, long code) |
| 129 | { |
| 130 | module_put(mod); |
| 131 | do_exit(code); |
| 132 | } |
| 133 | EXPORT_SYMBOL(__module_put_and_exit); |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | /* Find a module section: 0 means not found. */ |
| 136 | static unsigned int find_sec(Elf_Ehdr *hdr, |
| 137 | Elf_Shdr *sechdrs, |
| 138 | const char *secstrings, |
| 139 | const char *name) |
| 140 | { |
| 141 | unsigned int i; |
| 142 | |
| 143 | for (i = 1; i < hdr->e_shnum; i++) |
| 144 | /* Alloc bit cleared means "ignore it." */ |
| 145 | if ((sechdrs[i].sh_flags & SHF_ALLOC) |
| 146 | && strcmp(secstrings+sechdrs[i].sh_name, name) == 0) |
| 147 | return i; |
| 148 | return 0; |
| 149 | } |
| 150 | |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 151 | /* Find a module section, or NULL. */ |
| 152 | static void *section_addr(Elf_Ehdr *hdr, Elf_Shdr *shdrs, |
| 153 | const char *secstrings, const char *name) |
| 154 | { |
| 155 | /* Section 0 has sh_addr 0. */ |
| 156 | return (void *)shdrs[find_sec(hdr, shdrs, secstrings, name)].sh_addr; |
| 157 | } |
| 158 | |
| 159 | /* Find a module section, or NULL. Fill in number of "objects" in section. */ |
| 160 | static void *section_objs(Elf_Ehdr *hdr, |
| 161 | Elf_Shdr *sechdrs, |
| 162 | const char *secstrings, |
| 163 | const char *name, |
| 164 | size_t object_size, |
| 165 | unsigned int *num) |
| 166 | { |
| 167 | unsigned int sec = find_sec(hdr, sechdrs, secstrings, name); |
| 168 | |
| 169 | /* Section 0 has sh_addr 0 and sh_size 0. */ |
| 170 | *num = sechdrs[sec].sh_size / object_size; |
| 171 | return (void *)sechdrs[sec].sh_addr; |
| 172 | } |
| 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | /* Provided by the linker */ |
| 175 | extern const struct kernel_symbol __start___ksymtab[]; |
| 176 | extern const struct kernel_symbol __stop___ksymtab[]; |
| 177 | extern const struct kernel_symbol __start___ksymtab_gpl[]; |
| 178 | extern const struct kernel_symbol __stop___ksymtab_gpl[]; |
Greg Kroah-Hartman | 9f28bb7 | 2006-03-20 13:17:13 -0800 | [diff] [blame] | 179 | extern const struct kernel_symbol __start___ksymtab_gpl_future[]; |
| 180 | extern const struct kernel_symbol __stop___ksymtab_gpl_future[]; |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 181 | extern const struct kernel_symbol __start___ksymtab_gpl_future[]; |
| 182 | extern const struct kernel_symbol __stop___ksymtab_gpl_future[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | extern const unsigned long __start___kcrctab[]; |
| 184 | extern const unsigned long __start___kcrctab_gpl[]; |
Greg Kroah-Hartman | 9f28bb7 | 2006-03-20 13:17:13 -0800 | [diff] [blame] | 185 | extern const unsigned long __start___kcrctab_gpl_future[]; |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 186 | #ifdef CONFIG_UNUSED_SYMBOLS |
| 187 | extern const struct kernel_symbol __start___ksymtab_unused[]; |
| 188 | extern const struct kernel_symbol __stop___ksymtab_unused[]; |
| 189 | extern const struct kernel_symbol __start___ksymtab_unused_gpl[]; |
| 190 | extern const struct kernel_symbol __stop___ksymtab_unused_gpl[]; |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 191 | extern const unsigned long __start___kcrctab_unused[]; |
| 192 | extern const unsigned long __start___kcrctab_unused_gpl[]; |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 193 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
| 195 | #ifndef CONFIG_MODVERSIONS |
| 196 | #define symversion(base, idx) NULL |
| 197 | #else |
Andrew Morton | f83ca9f | 2006-03-28 01:56:20 -0800 | [diff] [blame] | 198 | #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | #endif |
| 200 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 201 | static bool each_symbol_in_section(const struct symsearch *arr, |
| 202 | unsigned int arrsize, |
| 203 | struct module *owner, |
| 204 | bool (*fn)(const struct symsearch *syms, |
| 205 | struct module *owner, |
| 206 | unsigned int symnum, void *data), |
| 207 | void *data) |
Sam Ravnborg | 3fd6805 | 2006-02-08 21:16:45 +0100 | [diff] [blame] | 208 | { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 209 | unsigned int i, j; |
| 210 | |
| 211 | for (j = 0; j < arrsize; j++) { |
| 212 | for (i = 0; i < arr[j].stop - arr[j].start; i++) |
| 213 | if (fn(&arr[j], owner, i, data)) |
| 214 | return true; |
| 215 | } |
| 216 | |
| 217 | return false; |
Sam Ravnborg | 3fd6805 | 2006-02-08 21:16:45 +0100 | [diff] [blame] | 218 | } |
| 219 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 220 | /* Returns true as soon as fn returns true, otherwise false. */ |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 221 | bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner, |
| 222 | unsigned int symnum, void *data), void *data) |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 223 | { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 224 | struct module *mod; |
| 225 | const struct symsearch arr[] = { |
| 226 | { __start___ksymtab, __stop___ksymtab, __start___kcrctab, |
| 227 | NOT_GPL_ONLY, false }, |
| 228 | { __start___ksymtab_gpl, __stop___ksymtab_gpl, |
| 229 | __start___kcrctab_gpl, |
| 230 | GPL_ONLY, false }, |
| 231 | { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future, |
| 232 | __start___kcrctab_gpl_future, |
| 233 | WILL_BE_GPL_ONLY, false }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 234 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 235 | { __start___ksymtab_unused, __stop___ksymtab_unused, |
| 236 | __start___kcrctab_unused, |
| 237 | NOT_GPL_ONLY, true }, |
| 238 | { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl, |
| 239 | __start___kcrctab_unused_gpl, |
| 240 | GPL_ONLY, true }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 241 | #endif |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 242 | }; |
| 243 | |
| 244 | if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data)) |
| 245 | return true; |
| 246 | |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 247 | list_for_each_entry_rcu(mod, &modules, list) { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 248 | struct symsearch arr[] = { |
| 249 | { mod->syms, mod->syms + mod->num_syms, mod->crcs, |
| 250 | NOT_GPL_ONLY, false }, |
| 251 | { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms, |
| 252 | mod->gpl_crcs, |
| 253 | GPL_ONLY, false }, |
| 254 | { mod->gpl_future_syms, |
| 255 | mod->gpl_future_syms + mod->num_gpl_future_syms, |
| 256 | mod->gpl_future_crcs, |
| 257 | WILL_BE_GPL_ONLY, false }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 258 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 259 | { mod->unused_syms, |
| 260 | mod->unused_syms + mod->num_unused_syms, |
| 261 | mod->unused_crcs, |
| 262 | NOT_GPL_ONLY, true }, |
| 263 | { mod->unused_gpl_syms, |
| 264 | mod->unused_gpl_syms + mod->num_unused_gpl_syms, |
| 265 | mod->unused_gpl_crcs, |
| 266 | GPL_ONLY, true }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 267 | #endif |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 268 | }; |
| 269 | |
| 270 | if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data)) |
| 271 | return true; |
| 272 | } |
| 273 | return false; |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 274 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 275 | EXPORT_SYMBOL_GPL(each_symbol); |
Arjan van de Ven | f71d20e | 2006-06-28 04:26:45 -0700 | [diff] [blame] | 276 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 277 | struct find_symbol_arg { |
| 278 | /* Input */ |
| 279 | const char *name; |
| 280 | bool gplok; |
| 281 | bool warn; |
| 282 | |
| 283 | /* Output */ |
| 284 | struct module *owner; |
| 285 | const unsigned long *crc; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 286 | const struct kernel_symbol *sym; |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 287 | }; |
| 288 | |
| 289 | static bool find_symbol_in_section(const struct symsearch *syms, |
| 290 | struct module *owner, |
| 291 | unsigned int symnum, void *data) |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 292 | { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 293 | struct find_symbol_arg *fsa = data; |
| 294 | |
| 295 | if (strcmp(syms->start[symnum].name, fsa->name) != 0) |
| 296 | return false; |
| 297 | |
| 298 | if (!fsa->gplok) { |
| 299 | if (syms->licence == GPL_ONLY) |
| 300 | return false; |
| 301 | if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) { |
| 302 | printk(KERN_WARNING "Symbol %s is being used " |
| 303 | "by a non-GPL module, which will not " |
| 304 | "be allowed in the future\n", fsa->name); |
| 305 | printk(KERN_WARNING "Please see the file " |
| 306 | "Documentation/feature-removal-schedule.txt " |
| 307 | "in the kernel source tree for more details.\n"); |
| 308 | } |
| 309 | } |
| 310 | |
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 | if (syms->unused && fsa->warn) { |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 313 | printk(KERN_WARNING "Symbol %s is marked as UNUSED, " |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 314 | "however this module is using it.\n", fsa->name); |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 315 | printk(KERN_WARNING |
| 316 | "This symbol will go away in the future.\n"); |
| 317 | printk(KERN_WARNING |
| 318 | "Please evalute if this is the right api to use and if " |
| 319 | "it really is, submit a report the linux kernel " |
| 320 | "mailinglist together with submitting your code for " |
| 321 | "inclusion.\n"); |
| 322 | } |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 323 | #endif |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 324 | |
| 325 | fsa->owner = owner; |
| 326 | fsa->crc = symversion(syms->crcs, symnum); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 327 | fsa->sym = &syms->start[symnum]; |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 328 | return true; |
| 329 | } |
| 330 | |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 331 | /* Find a symbol and return it, along with, (optional) crc and |
| 332 | * (optional) module which owns it */ |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 333 | const struct kernel_symbol *find_symbol(const char *name, |
| 334 | struct module **owner, |
| 335 | const unsigned long **crc, |
| 336 | bool gplok, |
| 337 | bool warn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 339 | struct find_symbol_arg fsa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 341 | fsa.name = name; |
| 342 | fsa.gplok = gplok; |
| 343 | fsa.warn = warn; |
| 344 | |
| 345 | if (each_symbol(find_symbol_in_section, &fsa)) { |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 346 | if (owner) |
Rusty Russell | dafd094 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 347 | *owner = fsa.owner; |
| 348 | if (crc) |
| 349 | *crc = fsa.crc; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 350 | return fsa.sym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } |
Rusty Russell | ad9546c | 2008-05-01 21:14:59 -0500 | [diff] [blame] | 352 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | DEBUGP("Failed to find symbol %s\n", name); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 354 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 356 | EXPORT_SYMBOL_GPL(find_symbol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | /* Search for module by name: must hold module_mutex. */ |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 359 | struct module *find_module(const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
| 361 | struct module *mod; |
| 362 | |
| 363 | list_for_each_entry(mod, &modules, list) { |
| 364 | if (strcmp(mod->name, name) == 0) |
| 365 | return mod; |
| 366 | } |
| 367 | return NULL; |
| 368 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 369 | EXPORT_SYMBOL_GPL(find_module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | #ifdef CONFIG_SMP |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 372 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 373 | static inline void __percpu *mod_percpu(struct module *mod) |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 374 | { |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 375 | return mod->percpu; |
| 376 | } |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 377 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 378 | static int percpu_modalloc(struct module *mod, |
| 379 | unsigned long size, unsigned long align) |
| 380 | { |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 381 | if (align > PAGE_SIZE) { |
| 382 | printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n", |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 383 | mod->name, align, PAGE_SIZE); |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 384 | align = PAGE_SIZE; |
| 385 | } |
| 386 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 387 | mod->percpu = __alloc_reserved_percpu(size, align); |
| 388 | if (!mod->percpu) { |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 389 | printk(KERN_WARNING |
| 390 | "Could not allocate %lu bytes percpu data\n", size); |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 391 | return -ENOMEM; |
| 392 | } |
| 393 | mod->percpu_size = size; |
| 394 | return 0; |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 395 | } |
| 396 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 397 | static void percpu_modfree(struct module *mod) |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 398 | { |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 399 | free_percpu(mod->percpu); |
Tejun Heo | fbf59bc | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 400 | } |
| 401 | |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 402 | static unsigned int find_pcpusec(Elf_Ehdr *hdr, |
| 403 | Elf_Shdr *sechdrs, |
| 404 | const char *secstrings) |
| 405 | { |
| 406 | return find_sec(hdr, sechdrs, secstrings, ".data.percpu"); |
| 407 | } |
| 408 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 409 | static void percpu_modcopy(struct module *mod, |
| 410 | const void *from, unsigned long size) |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 411 | { |
| 412 | int cpu; |
| 413 | |
| 414 | for_each_possible_cpu(cpu) |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 415 | memcpy(per_cpu_ptr(mod->percpu, cpu), from, size); |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 416 | } |
| 417 | |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame^] | 418 | /** |
| 419 | * is_module_percpu_address - test whether address is from module static percpu |
| 420 | * @addr: address to test |
| 421 | * |
| 422 | * Test whether @addr belongs to module static percpu area. |
| 423 | * |
| 424 | * RETURNS: |
| 425 | * %true if @addr is from module static percpu area |
| 426 | */ |
| 427 | bool is_module_percpu_address(unsigned long addr) |
| 428 | { |
| 429 | struct module *mod; |
| 430 | unsigned int cpu; |
| 431 | |
| 432 | preempt_disable(); |
| 433 | |
| 434 | list_for_each_entry_rcu(mod, &modules, list) { |
| 435 | if (!mod->percpu_size) |
| 436 | continue; |
| 437 | for_each_possible_cpu(cpu) { |
| 438 | void *start = per_cpu_ptr(mod->percpu, cpu); |
| 439 | |
| 440 | if ((void *)addr >= start && |
| 441 | (void *)addr < start + mod->percpu_size) { |
| 442 | preempt_enable(); |
| 443 | return true; |
| 444 | } |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | preempt_enable(); |
| 449 | return false; |
| 450 | } |
| 451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | #else /* ... !CONFIG_SMP */ |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 453 | |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 454 | static inline void __percpu *mod_percpu(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | { |
| 456 | return NULL; |
| 457 | } |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 458 | static inline int percpu_modalloc(struct module *mod, |
| 459 | unsigned long size, unsigned long align) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | { |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 461 | return -ENOMEM; |
| 462 | } |
| 463 | static inline void percpu_modfree(struct module *mod) |
| 464 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
| 466 | static inline unsigned int find_pcpusec(Elf_Ehdr *hdr, |
| 467 | Elf_Shdr *sechdrs, |
| 468 | const char *secstrings) |
| 469 | { |
| 470 | return 0; |
| 471 | } |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 472 | static inline void percpu_modcopy(struct module *mod, |
| 473 | const void *from, unsigned long size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | { |
| 475 | /* pcpusec should be 0, and size of that section should be 0. */ |
| 476 | BUG_ON(size != 0); |
| 477 | } |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame^] | 478 | bool is_module_percpu_address(unsigned long addr) |
| 479 | { |
| 480 | return false; |
| 481 | } |
Tejun Heo | 6b588c1 | 2009-02-20 16:29:07 +0900 | [diff] [blame] | 482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | #endif /* CONFIG_SMP */ |
| 484 | |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 485 | #define MODINFO_ATTR(field) \ |
| 486 | static void setup_modinfo_##field(struct module *mod, const char *s) \ |
| 487 | { \ |
| 488 | mod->field = kstrdup(s, GFP_KERNEL); \ |
| 489 | } \ |
| 490 | static ssize_t show_modinfo_##field(struct module_attribute *mattr, \ |
| 491 | struct module *mod, char *buffer) \ |
| 492 | { \ |
| 493 | return sprintf(buffer, "%s\n", mod->field); \ |
| 494 | } \ |
| 495 | static int modinfo_##field##_exists(struct module *mod) \ |
| 496 | { \ |
| 497 | return mod->field != NULL; \ |
| 498 | } \ |
| 499 | static void free_modinfo_##field(struct module *mod) \ |
| 500 | { \ |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 501 | kfree(mod->field); \ |
| 502 | mod->field = NULL; \ |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 503 | } \ |
| 504 | static struct module_attribute modinfo_##field = { \ |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 505 | .attr = { .name = __stringify(field), .mode = 0444 }, \ |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 506 | .show = show_modinfo_##field, \ |
| 507 | .setup = setup_modinfo_##field, \ |
| 508 | .test = modinfo_##field##_exists, \ |
| 509 | .free = free_modinfo_##field, \ |
| 510 | }; |
| 511 | |
| 512 | MODINFO_ATTR(version); |
| 513 | MODINFO_ATTR(srcversion); |
| 514 | |
Arjan van de Ven | e14af7e | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 515 | static char last_unloaded_module[MODULE_NAME_LEN+1]; |
| 516 | |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 517 | #ifdef CONFIG_MODULE_UNLOAD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | /* Init the unload section of the module. */ |
| 519 | static void module_unload_init(struct module *mod) |
| 520 | { |
Eric Dumazet | 720eba3 | 2009-02-03 13:31:36 +1030 | [diff] [blame] | 521 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
| 523 | INIT_LIST_HEAD(&mod->modules_which_use_me); |
Eric Dumazet | 720eba3 | 2009-02-03 13:31:36 +1030 | [diff] [blame] | 524 | for_each_possible_cpu(cpu) |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 525 | per_cpu_ptr(mod->refptr, cpu)->count = 0; |
| 526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | /* Hold reference count during initialization. */ |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 528 | __this_cpu_write(mod->refptr->count, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | /* Backwards compatibility macros put refcount during init. */ |
| 530 | mod->waiter = current; |
| 531 | } |
| 532 | |
| 533 | /* modules using other modules */ |
| 534 | struct module_use |
| 535 | { |
| 536 | struct list_head list; |
| 537 | struct module *module_which_uses; |
| 538 | }; |
| 539 | |
| 540 | /* Does a already use b? */ |
| 541 | static int already_uses(struct module *a, struct module *b) |
| 542 | { |
| 543 | struct module_use *use; |
| 544 | |
| 545 | list_for_each_entry(use, &b->modules_which_use_me, list) { |
| 546 | if (use->module_which_uses == a) { |
| 547 | DEBUGP("%s uses %s!\n", a->name, b->name); |
| 548 | return 1; |
| 549 | } |
| 550 | } |
| 551 | DEBUGP("%s does not use %s!\n", a->name, b->name); |
| 552 | return 0; |
| 553 | } |
| 554 | |
| 555 | /* Module a uses b */ |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 556 | int use_module(struct module *a, struct module *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | { |
| 558 | struct module_use *use; |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 559 | int no_warn, err; |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 560 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | if (b == NULL || already_uses(a, b)) return 1; |
| 562 | |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 563 | /* If we're interrupted or time out, we fail. */ |
| 564 | if (wait_event_interruptible_timeout( |
| 565 | module_wq, (err = strong_try_module_get(b)) != -EBUSY, |
| 566 | 30 * HZ) <= 0) { |
| 567 | printk("%s: gave up waiting for init of module %s.\n", |
| 568 | a->name, b->name); |
| 569 | return 0; |
| 570 | } |
| 571 | |
| 572 | /* If strong_try_module_get() returned a different error, we fail. */ |
| 573 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | return 0; |
| 575 | |
| 576 | DEBUGP("Allocating new usage for %s.\n", a->name); |
| 577 | use = kmalloc(sizeof(*use), GFP_ATOMIC); |
| 578 | if (!use) { |
| 579 | printk("%s: out of memory loading\n", a->name); |
| 580 | module_put(b); |
| 581 | return 0; |
| 582 | } |
| 583 | |
| 584 | use->module_which_uses = a; |
| 585 | list_add(&use->list, &b->modules_which_use_me); |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 586 | no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | return 1; |
| 588 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 589 | EXPORT_SYMBOL_GPL(use_module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | |
| 591 | /* Clear the unload stuff of the module. */ |
| 592 | static void module_unload_free(struct module *mod) |
| 593 | { |
| 594 | struct module *i; |
| 595 | |
| 596 | list_for_each_entry(i, &modules, list) { |
| 597 | struct module_use *use; |
| 598 | |
| 599 | list_for_each_entry(use, &i->modules_which_use_me, list) { |
| 600 | if (use->module_which_uses == mod) { |
| 601 | DEBUGP("%s unusing %s\n", mod->name, i->name); |
| 602 | module_put(i); |
| 603 | list_del(&use->list); |
| 604 | kfree(use); |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 605 | sysfs_remove_link(i->holders_dir, mod->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | /* There can be at most one match. */ |
| 607 | break; |
| 608 | } |
| 609 | } |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | #ifdef CONFIG_MODULE_FORCE_UNLOAD |
Akinobu Mita | fb16979 | 2006-01-08 01:04:29 -0800 | [diff] [blame] | 614 | static inline int try_force_unload(unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | { |
| 616 | int ret = (flags & O_TRUNC); |
| 617 | if (ret) |
Akinobu Mita | fb16979 | 2006-01-08 01:04:29 -0800 | [diff] [blame] | 618 | add_taint(TAINT_FORCED_RMMOD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | return ret; |
| 620 | } |
| 621 | #else |
Akinobu Mita | fb16979 | 2006-01-08 01:04:29 -0800 | [diff] [blame] | 622 | static inline int try_force_unload(unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | { |
| 624 | return 0; |
| 625 | } |
| 626 | #endif /* CONFIG_MODULE_FORCE_UNLOAD */ |
| 627 | |
| 628 | struct stopref |
| 629 | { |
| 630 | struct module *mod; |
| 631 | int flags; |
| 632 | int *forced; |
| 633 | }; |
| 634 | |
| 635 | /* Whole machine is stopped with interrupts off when this runs. */ |
| 636 | static int __try_stop_module(void *_sref) |
| 637 | { |
| 638 | struct stopref *sref = _sref; |
| 639 | |
Rusty Russell | da39ba5 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 640 | /* If it's not unused, quit unless we're forcing. */ |
| 641 | if (module_refcount(sref->mod) != 0) { |
Akinobu Mita | fb16979 | 2006-01-08 01:04:29 -0800 | [diff] [blame] | 642 | if (!(*sref->forced = try_force_unload(sref->flags))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | return -EWOULDBLOCK; |
| 644 | } |
| 645 | |
| 646 | /* Mark it as dying. */ |
| 647 | sref->mod->state = MODULE_STATE_GOING; |
| 648 | return 0; |
| 649 | } |
| 650 | |
| 651 | static int try_stop_module(struct module *mod, int flags, int *forced) |
| 652 | { |
Rusty Russell | da39ba5 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 653 | if (flags & O_NONBLOCK) { |
| 654 | struct stopref sref = { mod, flags, forced }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | |
Rusty Russell | 9b1a4d3 | 2008-07-28 12:16:30 -0500 | [diff] [blame] | 656 | return stop_machine(__try_stop_module, &sref, NULL); |
Rusty Russell | da39ba5 | 2008-07-22 19:24:25 -0500 | [diff] [blame] | 657 | } else { |
| 658 | /* We don't need to stop the machine for this. */ |
| 659 | mod->state = MODULE_STATE_GOING; |
| 660 | synchronize_sched(); |
| 661 | return 0; |
| 662 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | } |
| 664 | |
| 665 | unsigned int module_refcount(struct module *mod) |
| 666 | { |
Eric Dumazet | 720eba3 | 2009-02-03 13:31:36 +1030 | [diff] [blame] | 667 | unsigned int total = 0; |
| 668 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
Eric Dumazet | 720eba3 | 2009-02-03 13:31:36 +1030 | [diff] [blame] | 670 | for_each_possible_cpu(cpu) |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 671 | total += per_cpu_ptr(mod->refptr, cpu)->count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | return total; |
| 673 | } |
| 674 | EXPORT_SYMBOL(module_refcount); |
| 675 | |
| 676 | /* This exists whether we can unload or not */ |
| 677 | static void free_module(struct module *mod); |
| 678 | |
| 679 | static void wait_for_zero_refcount(struct module *mod) |
| 680 | { |
Matthew Wilcox | a655020 | 2008-02-26 10:47:18 -0500 | [diff] [blame] | 681 | /* Since we might sleep for some time, release the mutex first */ |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 682 | mutex_unlock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | for (;;) { |
| 684 | DEBUGP("Looking at refcount...\n"); |
| 685 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 686 | if (module_refcount(mod) == 0) |
| 687 | break; |
| 688 | schedule(); |
| 689 | } |
| 690 | current->state = TASK_RUNNING; |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 691 | mutex_lock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | } |
| 693 | |
Heiko Carstens | 17da2bd | 2009-01-14 14:14:10 +0100 | [diff] [blame] | 694 | SYSCALL_DEFINE2(delete_module, const char __user *, name_user, |
| 695 | unsigned int, flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | { |
| 697 | struct module *mod; |
Greg Kroah-Hartman | dfff0a0 | 2007-02-23 14:54:57 -0800 | [diff] [blame] | 698 | char name[MODULE_NAME_LEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | int ret, forced = 0; |
| 700 | |
Kees Cook | 3d43321 | 2009-04-02 15:49:29 -0700 | [diff] [blame] | 701 | if (!capable(CAP_SYS_MODULE) || modules_disabled) |
Greg Kroah-Hartman | dfff0a0 | 2007-02-23 14:54:57 -0800 | [diff] [blame] | 702 | return -EPERM; |
| 703 | |
| 704 | if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0) |
| 705 | return -EFAULT; |
| 706 | name[MODULE_NAME_LEN-1] = '\0'; |
| 707 | |
Heiko Carstens | 9e01892 | 2008-12-22 12:36:31 +0100 | [diff] [blame] | 708 | /* Create stop_machine threads since free_module relies on |
| 709 | * a non-failing stop_machine call. */ |
| 710 | ret = stop_machine_create(); |
| 711 | if (ret) |
| 712 | return ret; |
| 713 | |
| 714 | if (mutex_lock_interruptible(&module_mutex) != 0) { |
| 715 | ret = -EINTR; |
| 716 | goto out_stop; |
| 717 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
| 719 | mod = find_module(name); |
| 720 | if (!mod) { |
| 721 | ret = -ENOENT; |
| 722 | goto out; |
| 723 | } |
| 724 | |
| 725 | if (!list_empty(&mod->modules_which_use_me)) { |
| 726 | /* Other modules depend on us: get rid of them first. */ |
| 727 | ret = -EWOULDBLOCK; |
| 728 | goto out; |
| 729 | } |
| 730 | |
| 731 | /* Doing init or already dying? */ |
| 732 | if (mod->state != MODULE_STATE_LIVE) { |
| 733 | /* FIXME: if (force), slam module count and wake up |
| 734 | waiter --RR */ |
| 735 | DEBUGP("%s already dying\n", mod->name); |
| 736 | ret = -EBUSY; |
| 737 | goto out; |
| 738 | } |
| 739 | |
| 740 | /* 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] | 741 | if (mod->init && !mod->exit) { |
Akinobu Mita | fb16979 | 2006-01-08 01:04:29 -0800 | [diff] [blame] | 742 | forced = try_force_unload(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | if (!forced) { |
| 744 | /* This module can't be removed */ |
| 745 | ret = -EBUSY; |
| 746 | goto out; |
| 747 | } |
| 748 | } |
| 749 | |
| 750 | /* Set this up before setting mod->state */ |
| 751 | mod->waiter = current; |
| 752 | |
| 753 | /* Stop the machine so refcounts can't move and disable module. */ |
| 754 | ret = try_stop_module(mod, flags, &forced); |
| 755 | if (ret != 0) |
| 756 | goto out; |
| 757 | |
| 758 | /* Never wait if forced. */ |
| 759 | if (!forced && module_refcount(mod) != 0) |
| 760 | wait_for_zero_refcount(mod); |
| 761 | |
Peter Oberparleiter | df4b565 | 2008-04-21 14:34:31 +0200 | [diff] [blame] | 762 | mutex_unlock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | /* Final destruction now noone is using it. */ |
Peter Oberparleiter | df4b565 | 2008-04-21 14:34:31 +0200 | [diff] [blame] | 764 | if (mod->exit != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | mod->exit(); |
Peter Oberparleiter | df4b565 | 2008-04-21 14:34:31 +0200 | [diff] [blame] | 766 | blocking_notifier_call_chain(&module_notify_list, |
| 767 | MODULE_STATE_GOING, mod); |
Arjan van de Ven | 22a9d64 | 2009-01-07 08:45:46 -0800 | [diff] [blame] | 768 | async_synchronize_full(); |
Peter Oberparleiter | df4b565 | 2008-04-21 14:34:31 +0200 | [diff] [blame] | 769 | mutex_lock(&module_mutex); |
Arjan van de Ven | e14af7e | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 770 | /* Store the name of the last unloaded module for diagnostic purposes */ |
Rusty Russell | efa5345 | 2008-01-29 17:13:20 -0500 | [diff] [blame] | 771 | strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module)); |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 772 | ddebug_remove_module(mod->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | free_module(mod); |
| 774 | |
| 775 | out: |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 776 | mutex_unlock(&module_mutex); |
Heiko Carstens | 9e01892 | 2008-12-22 12:36:31 +0100 | [diff] [blame] | 777 | out_stop: |
| 778 | stop_machine_destroy(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | return ret; |
| 780 | } |
| 781 | |
Jianjun Kong | d1e99d7 | 2008-12-08 14:26:29 +0800 | [diff] [blame] | 782 | 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] | 783 | { |
| 784 | struct module_use *use; |
| 785 | int printed_something = 0; |
| 786 | |
| 787 | seq_printf(m, " %u ", module_refcount(mod)); |
| 788 | |
| 789 | /* Always include a trailing , so userspace can differentiate |
| 790 | between this and the old multi-field proc format. */ |
| 791 | list_for_each_entry(use, &mod->modules_which_use_me, list) { |
| 792 | printed_something = 1; |
| 793 | seq_printf(m, "%s,", use->module_which_uses->name); |
| 794 | } |
| 795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | if (mod->init != NULL && mod->exit == NULL) { |
| 797 | printed_something = 1; |
| 798 | seq_printf(m, "[permanent],"); |
| 799 | } |
| 800 | |
| 801 | if (!printed_something) |
| 802 | seq_printf(m, "-"); |
| 803 | } |
| 804 | |
| 805 | void __symbol_put(const char *symbol) |
| 806 | { |
| 807 | struct module *owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 809 | preempt_disable(); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 810 | if (!find_symbol(symbol, &owner, NULL, true, false)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | BUG(); |
| 812 | module_put(owner); |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 813 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | } |
| 815 | EXPORT_SYMBOL(__symbol_put); |
| 816 | |
Rusty Russell | 7d1d16e | 2009-08-26 22:02:54 +0930 | [diff] [blame] | 817 | /* Note this assumes addr is a function, which it currently always is. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | void symbol_put_addr(void *addr) |
| 819 | { |
Trent Piepho | 5e37661 | 2006-05-15 09:44:06 -0700 | [diff] [blame] | 820 | struct module *modaddr; |
Rusty Russell | 7d1d16e | 2009-08-26 22:02:54 +0930 | [diff] [blame] | 821 | unsigned long a = (unsigned long)dereference_function_descriptor(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | |
Rusty Russell | 7d1d16e | 2009-08-26 22:02:54 +0930 | [diff] [blame] | 823 | if (core_kernel_text(a)) |
Trent Piepho | 5e37661 | 2006-05-15 09:44:06 -0700 | [diff] [blame] | 824 | return; |
| 825 | |
Rusty Russell | a6e6abd | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 826 | /* module_text_address is safe here: we're supposed to have reference |
| 827 | * to module from symbol_get, so it can't go away. */ |
Rusty Russell | 7d1d16e | 2009-08-26 22:02:54 +0930 | [diff] [blame] | 828 | modaddr = __module_text_address(a); |
Rusty Russell | a6e6abd | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 829 | BUG_ON(!modaddr); |
Trent Piepho | 5e37661 | 2006-05-15 09:44:06 -0700 | [diff] [blame] | 830 | module_put(modaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | } |
| 832 | EXPORT_SYMBOL_GPL(symbol_put_addr); |
| 833 | |
| 834 | static ssize_t show_refcnt(struct module_attribute *mattr, |
| 835 | struct module *mod, char *buffer) |
| 836 | { |
Alexey Dobriyan | 256e2fd | 2007-08-06 23:47:45 +0400 | [diff] [blame] | 837 | return sprintf(buffer, "%u\n", module_refcount(mod)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | static struct module_attribute refcnt = { |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 841 | .attr = { .name = "refcnt", .mode = 0444 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | .show = show_refcnt, |
| 843 | }; |
| 844 | |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 845 | void module_put(struct module *module) |
| 846 | { |
| 847 | if (module) { |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 848 | preempt_disable(); |
| 849 | __this_cpu_dec(module->refptr->count); |
| 850 | |
Li Zefan | 7ead8b8 | 2009-08-17 16:56:28 +0800 | [diff] [blame] | 851 | trace_module_put(module, _RET_IP_, |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 852 | __this_cpu_read(module->refptr->count)); |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 853 | /* Maybe they're waiting for us to drop reference? */ |
| 854 | if (unlikely(!module_is_live(module))) |
| 855 | wake_up_process(module->waiter); |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 856 | preempt_enable(); |
Al Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 857 | } |
| 858 | } |
| 859 | EXPORT_SYMBOL(module_put); |
| 860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | #else /* !CONFIG_MODULE_UNLOAD */ |
Jianjun Kong | d1e99d7 | 2008-12-08 14:26:29 +0800 | [diff] [blame] | 862 | 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] | 863 | { |
| 864 | /* We don't know the usage count, or what modules are using. */ |
| 865 | seq_printf(m, " - -"); |
| 866 | } |
| 867 | |
| 868 | static inline void module_unload_free(struct module *mod) |
| 869 | { |
| 870 | } |
| 871 | |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 872 | int use_module(struct module *a, struct module *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | { |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 874 | return strong_try_module_get(b) == 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 876 | EXPORT_SYMBOL_GPL(use_module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | |
| 878 | static inline void module_unload_init(struct module *mod) |
| 879 | { |
| 880 | } |
| 881 | #endif /* CONFIG_MODULE_UNLOAD */ |
| 882 | |
Kay Sievers | 1f71740 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 883 | static ssize_t show_initstate(struct module_attribute *mattr, |
| 884 | struct module *mod, char *buffer) |
| 885 | { |
| 886 | const char *state = "unknown"; |
| 887 | |
| 888 | switch (mod->state) { |
| 889 | case MODULE_STATE_LIVE: |
| 890 | state = "live"; |
| 891 | break; |
| 892 | case MODULE_STATE_COMING: |
| 893 | state = "coming"; |
| 894 | break; |
| 895 | case MODULE_STATE_GOING: |
| 896 | state = "going"; |
| 897 | break; |
| 898 | } |
| 899 | return sprintf(buffer, "%s\n", state); |
| 900 | } |
| 901 | |
| 902 | static struct module_attribute initstate = { |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 903 | .attr = { .name = "initstate", .mode = 0444 }, |
Kay Sievers | 1f71740 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 904 | .show = show_initstate, |
| 905 | }; |
| 906 | |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 907 | static struct module_attribute *modinfo_attrs[] = { |
| 908 | &modinfo_version, |
| 909 | &modinfo_srcversion, |
Kay Sievers | 1f71740 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 910 | &initstate, |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 911 | #ifdef CONFIG_MODULE_UNLOAD |
| 912 | &refcnt, |
| 913 | #endif |
| 914 | NULL, |
| 915 | }; |
| 916 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | static const char vermagic[] = VERMAGIC_STRING; |
| 918 | |
Rusty Russell | c6e665c | 2009-03-31 13:05:33 -0600 | [diff] [blame] | 919 | static int try_to_force_load(struct module *mod, const char *reason) |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 920 | { |
| 921 | #ifdef CONFIG_MODULE_FORCE_LOAD |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 922 | if (!test_taint(TAINT_FORCED_MODULE)) |
Rusty Russell | c6e665c | 2009-03-31 13:05:33 -0600 | [diff] [blame] | 923 | printk(KERN_WARNING "%s: %s: kernel tainted.\n", |
| 924 | mod->name, reason); |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 925 | add_taint_module(mod, TAINT_FORCED_MODULE); |
| 926 | return 0; |
| 927 | #else |
| 928 | return -ENOEXEC; |
| 929 | #endif |
| 930 | } |
| 931 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | #ifdef CONFIG_MODVERSIONS |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 933 | /* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */ |
| 934 | static unsigned long maybe_relocated(unsigned long crc, |
| 935 | const struct module *crc_owner) |
| 936 | { |
| 937 | #ifdef ARCH_RELOCATES_KCRCTAB |
| 938 | if (crc_owner == NULL) |
| 939 | return crc - (unsigned long)reloc_start; |
| 940 | #endif |
| 941 | return crc; |
| 942 | } |
| 943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | static int check_version(Elf_Shdr *sechdrs, |
| 945 | unsigned int versindex, |
| 946 | const char *symname, |
| 947 | struct module *mod, |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 948 | const unsigned long *crc, |
| 949 | const struct module *crc_owner) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | { |
| 951 | unsigned int i, num_versions; |
| 952 | struct modversion_info *versions; |
| 953 | |
| 954 | /* Exporting module didn't supply crcs? OK, we're already tainted. */ |
| 955 | if (!crc) |
| 956 | return 1; |
| 957 | |
Rusty Russell | a5dd697 | 2008-05-09 16:24:21 +1000 | [diff] [blame] | 958 | /* No versions at all? modprobe --force does this. */ |
| 959 | if (versindex == 0) |
| 960 | return try_to_force_load(mod, symname) == 0; |
| 961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | versions = (void *) sechdrs[versindex].sh_addr; |
| 963 | num_versions = sechdrs[versindex].sh_size |
| 964 | / sizeof(struct modversion_info); |
| 965 | |
| 966 | for (i = 0; i < num_versions; i++) { |
| 967 | if (strcmp(versions[i].name, symname) != 0) |
| 968 | continue; |
| 969 | |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 970 | if (versions[i].crc == maybe_relocated(*crc, crc_owner)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | DEBUGP("Found checksum %lX vs module %lX\n", |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 973 | maybe_relocated(*crc, crc_owner), versions[i].crc); |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 974 | goto bad_version; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | } |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 976 | |
Rusty Russell | a5dd697 | 2008-05-09 16:24:21 +1000 | [diff] [blame] | 977 | printk(KERN_WARNING "%s: no symbol version for %s\n", |
| 978 | mod->name, symname); |
| 979 | return 0; |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 980 | |
| 981 | bad_version: |
| 982 | printk("%s: disagrees about version of symbol %s\n", |
| 983 | mod->name, symname); |
| 984 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | static inline int check_modstruct_version(Elf_Shdr *sechdrs, |
| 988 | unsigned int versindex, |
| 989 | struct module *mod) |
| 990 | { |
| 991 | const unsigned long *crc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | |
Mike Frysinger | 6560dc1 | 2009-07-23 23:42:08 +0930 | [diff] [blame] | 993 | if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL, |
| 994 | &crc, true, false)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | BUG(); |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 996 | return check_version(sechdrs, versindex, "module_layout", mod, crc, |
| 997 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | } |
| 999 | |
Rusty Russell | 91e37a7 | 2008-05-09 16:25:28 +1000 | [diff] [blame] | 1000 | /* First part is kernel version, which we ignore if module has crcs. */ |
| 1001 | static inline int same_magic(const char *amagic, const char *bmagic, |
| 1002 | bool has_crcs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | { |
Rusty Russell | 91e37a7 | 2008-05-09 16:25:28 +1000 | [diff] [blame] | 1004 | if (has_crcs) { |
| 1005 | amagic += strcspn(amagic, " "); |
| 1006 | bmagic += strcspn(bmagic, " "); |
| 1007 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | return strcmp(amagic, bmagic) == 0; |
| 1009 | } |
| 1010 | #else |
| 1011 | static inline int check_version(Elf_Shdr *sechdrs, |
| 1012 | unsigned int versindex, |
| 1013 | const char *symname, |
| 1014 | struct module *mod, |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 1015 | const unsigned long *crc, |
| 1016 | const struct module *crc_owner) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | { |
| 1018 | return 1; |
| 1019 | } |
| 1020 | |
| 1021 | static inline int check_modstruct_version(Elf_Shdr *sechdrs, |
| 1022 | unsigned int versindex, |
| 1023 | struct module *mod) |
| 1024 | { |
| 1025 | return 1; |
| 1026 | } |
| 1027 | |
Rusty Russell | 91e37a7 | 2008-05-09 16:25:28 +1000 | [diff] [blame] | 1028 | static inline int same_magic(const char *amagic, const char *bmagic, |
| 1029 | bool has_crcs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | { |
| 1031 | return strcmp(amagic, bmagic) == 0; |
| 1032 | } |
| 1033 | #endif /* CONFIG_MODVERSIONS */ |
| 1034 | |
| 1035 | /* Resolve a symbol for this module. I.e. if we find one, record usage. |
| 1036 | Must be holding module_mutex. */ |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1037 | static const struct kernel_symbol *resolve_symbol(Elf_Shdr *sechdrs, |
| 1038 | unsigned int versindex, |
| 1039 | const char *name, |
| 1040 | struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | { |
| 1042 | struct module *owner; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1043 | const struct kernel_symbol *sym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | const unsigned long *crc; |
| 1045 | |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1046 | sym = find_symbol(name, &owner, &crc, |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 1047 | !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1048 | /* use_module can fail due to OOM, |
| 1049 | or module initialization or unloading */ |
| 1050 | if (sym) { |
Rusty Russell | d4703ae | 2009-12-15 16:28:32 -0600 | [diff] [blame] | 1051 | if (!check_version(sechdrs, versindex, name, mod, crc, owner) |
| 1052 | || !use_module(mod, owner)) |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1053 | sym = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | } |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1055 | return sym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | /* |
| 1059 | * /sys/module/foo/sections stuff |
| 1060 | * J. Corbet <corbet@lwn.net> |
| 1061 | */ |
Kay Sievers | 120fc3d | 2008-02-21 00:33:20 +0100 | [diff] [blame] | 1062 | #if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS) |
Ben Hutchings | 10b465a | 2009-12-19 14:43:01 +0000 | [diff] [blame] | 1063 | |
| 1064 | static inline bool sect_empty(const Elf_Shdr *sect) |
| 1065 | { |
| 1066 | return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0; |
| 1067 | } |
| 1068 | |
Rusty Russell | a58730c | 2008-03-13 09:03:44 +0000 | [diff] [blame] | 1069 | struct module_sect_attr |
| 1070 | { |
| 1071 | struct module_attribute mattr; |
| 1072 | char *name; |
| 1073 | unsigned long address; |
| 1074 | }; |
| 1075 | |
| 1076 | struct module_sect_attrs |
| 1077 | { |
| 1078 | struct attribute_group grp; |
| 1079 | unsigned int nsections; |
| 1080 | struct module_sect_attr attrs[0]; |
| 1081 | }; |
| 1082 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | static ssize_t module_sect_show(struct module_attribute *mattr, |
| 1084 | struct module *mod, char *buf) |
| 1085 | { |
| 1086 | struct module_sect_attr *sattr = |
| 1087 | container_of(mattr, struct module_sect_attr, mattr); |
| 1088 | return sprintf(buf, "0x%lx\n", sattr->address); |
| 1089 | } |
| 1090 | |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1091 | static void free_sect_attrs(struct module_sect_attrs *sect_attrs) |
| 1092 | { |
Rusty Russell | a58730c | 2008-03-13 09:03:44 +0000 | [diff] [blame] | 1093 | unsigned int section; |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1094 | |
| 1095 | for (section = 0; section < sect_attrs->nsections; section++) |
| 1096 | kfree(sect_attrs->attrs[section].name); |
| 1097 | kfree(sect_attrs); |
| 1098 | } |
| 1099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | static void add_sect_attrs(struct module *mod, unsigned int nsect, |
| 1101 | char *secstrings, Elf_Shdr *sechdrs) |
| 1102 | { |
| 1103 | unsigned int nloaded = 0, i, size[2]; |
| 1104 | struct module_sect_attrs *sect_attrs; |
| 1105 | struct module_sect_attr *sattr; |
| 1106 | struct attribute **gattr; |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 1107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | /* Count loaded sections and allocate structures */ |
| 1109 | for (i = 0; i < nsect; i++) |
Ben Hutchings | 10b465a | 2009-12-19 14:43:01 +0000 | [diff] [blame] | 1110 | if (!sect_empty(&sechdrs[i])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | nloaded++; |
| 1112 | size[0] = ALIGN(sizeof(*sect_attrs) |
| 1113 | + nloaded * sizeof(sect_attrs->attrs[0]), |
| 1114 | sizeof(sect_attrs->grp.attrs[0])); |
| 1115 | size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]); |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1116 | sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL); |
| 1117 | if (sect_attrs == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | return; |
| 1119 | |
| 1120 | /* Setup section attributes. */ |
| 1121 | sect_attrs->grp.name = "sections"; |
| 1122 | sect_attrs->grp.attrs = (void *)sect_attrs + size[0]; |
| 1123 | |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1124 | sect_attrs->nsections = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | sattr = §_attrs->attrs[0]; |
| 1126 | gattr = §_attrs->grp.attrs[0]; |
| 1127 | for (i = 0; i < nsect; i++) { |
Ben Hutchings | 10b465a | 2009-12-19 14:43:01 +0000 | [diff] [blame] | 1128 | if (sect_empty(&sechdrs[i])) |
Helge Deller | 35dead4 | 2009-12-03 00:29:15 +0100 | [diff] [blame] | 1129 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | sattr->address = sechdrs[i].sh_addr; |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1131 | sattr->name = kstrdup(secstrings + sechdrs[i].sh_name, |
| 1132 | GFP_KERNEL); |
| 1133 | if (sattr->name == NULL) |
| 1134 | goto out; |
| 1135 | sect_attrs->nsections++; |
Eric W. Biederman | 361795b | 2010-02-12 13:41:56 -0800 | [diff] [blame] | 1136 | sysfs_attr_init(&sattr->mattr.attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | sattr->mattr.show = module_sect_show; |
| 1138 | sattr->mattr.store = NULL; |
| 1139 | sattr->mattr.attr.name = sattr->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | sattr->mattr.attr.mode = S_IRUGO; |
| 1141 | *(gattr++) = &(sattr++)->mattr.attr; |
| 1142 | } |
| 1143 | *gattr = NULL; |
| 1144 | |
| 1145 | if (sysfs_create_group(&mod->mkobj.kobj, §_attrs->grp)) |
| 1146 | goto out; |
| 1147 | |
| 1148 | mod->sect_attrs = sect_attrs; |
| 1149 | return; |
| 1150 | out: |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1151 | free_sect_attrs(sect_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | } |
| 1153 | |
| 1154 | static void remove_sect_attrs(struct module *mod) |
| 1155 | { |
| 1156 | if (mod->sect_attrs) { |
| 1157 | sysfs_remove_group(&mod->mkobj.kobj, |
| 1158 | &mod->sect_attrs->grp); |
| 1159 | /* We are positive that no one is using any sect attrs |
| 1160 | * at this point. Deallocate immediately. */ |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1161 | free_sect_attrs(mod->sect_attrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | mod->sect_attrs = NULL; |
| 1163 | } |
| 1164 | } |
| 1165 | |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1166 | /* |
| 1167 | * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections. |
| 1168 | */ |
| 1169 | |
| 1170 | struct module_notes_attrs { |
| 1171 | struct kobject *dir; |
| 1172 | unsigned int notes; |
| 1173 | struct bin_attribute attrs[0]; |
| 1174 | }; |
| 1175 | |
| 1176 | static ssize_t module_notes_read(struct kobject *kobj, |
| 1177 | struct bin_attribute *bin_attr, |
| 1178 | char *buf, loff_t pos, size_t count) |
| 1179 | { |
| 1180 | /* |
| 1181 | * The caller checked the pos and count against our size. |
| 1182 | */ |
| 1183 | memcpy(buf, bin_attr->private + pos, count); |
| 1184 | return count; |
| 1185 | } |
| 1186 | |
| 1187 | static void free_notes_attrs(struct module_notes_attrs *notes_attrs, |
| 1188 | unsigned int i) |
| 1189 | { |
| 1190 | if (notes_attrs->dir) { |
| 1191 | while (i-- > 0) |
| 1192 | sysfs_remove_bin_file(notes_attrs->dir, |
| 1193 | ¬es_attrs->attrs[i]); |
Alexey Dobriyan | e943209 | 2008-09-23 23:51:11 +0400 | [diff] [blame] | 1194 | kobject_put(notes_attrs->dir); |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1195 | } |
| 1196 | kfree(notes_attrs); |
| 1197 | } |
| 1198 | |
| 1199 | static void add_notes_attrs(struct module *mod, unsigned int nsect, |
| 1200 | char *secstrings, Elf_Shdr *sechdrs) |
| 1201 | { |
| 1202 | unsigned int notes, loaded, i; |
| 1203 | struct module_notes_attrs *notes_attrs; |
| 1204 | struct bin_attribute *nattr; |
| 1205 | |
Ingo Molnar | ea6bff3 | 2009-08-28 10:44:56 +0200 | [diff] [blame] | 1206 | /* failed to create section attributes, so can't create notes */ |
| 1207 | if (!mod->sect_attrs) |
| 1208 | return; |
| 1209 | |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1210 | /* Count notes sections and allocate structures. */ |
| 1211 | notes = 0; |
| 1212 | for (i = 0; i < nsect; i++) |
Ben Hutchings | 10b465a | 2009-12-19 14:43:01 +0000 | [diff] [blame] | 1213 | if (!sect_empty(&sechdrs[i]) && |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1214 | (sechdrs[i].sh_type == SHT_NOTE)) |
| 1215 | ++notes; |
| 1216 | |
| 1217 | if (notes == 0) |
| 1218 | return; |
| 1219 | |
| 1220 | notes_attrs = kzalloc(sizeof(*notes_attrs) |
| 1221 | + notes * sizeof(notes_attrs->attrs[0]), |
| 1222 | GFP_KERNEL); |
| 1223 | if (notes_attrs == NULL) |
| 1224 | return; |
| 1225 | |
| 1226 | notes_attrs->notes = notes; |
| 1227 | nattr = ¬es_attrs->attrs[0]; |
| 1228 | for (loaded = i = 0; i < nsect; ++i) { |
Ben Hutchings | 10b465a | 2009-12-19 14:43:01 +0000 | [diff] [blame] | 1229 | if (sect_empty(&sechdrs[i])) |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1230 | continue; |
| 1231 | if (sechdrs[i].sh_type == SHT_NOTE) { |
Eric W. Biederman | 361795b | 2010-02-12 13:41:56 -0800 | [diff] [blame] | 1232 | sysfs_bin_attr_init(nattr); |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1233 | nattr->attr.name = mod->sect_attrs->attrs[loaded].name; |
| 1234 | nattr->attr.mode = S_IRUGO; |
| 1235 | nattr->size = sechdrs[i].sh_size; |
| 1236 | nattr->private = (void *) sechdrs[i].sh_addr; |
| 1237 | nattr->read = module_notes_read; |
| 1238 | ++nattr; |
| 1239 | } |
| 1240 | ++loaded; |
| 1241 | } |
| 1242 | |
Greg Kroah-Hartman | 4ff6abf | 2007-11-05 22:24:43 -0800 | [diff] [blame] | 1243 | notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj); |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1244 | if (!notes_attrs->dir) |
| 1245 | goto out; |
| 1246 | |
| 1247 | for (i = 0; i < notes; ++i) |
| 1248 | if (sysfs_create_bin_file(notes_attrs->dir, |
| 1249 | ¬es_attrs->attrs[i])) |
| 1250 | goto out; |
| 1251 | |
| 1252 | mod->notes_attrs = notes_attrs; |
| 1253 | return; |
| 1254 | |
| 1255 | out: |
| 1256 | free_notes_attrs(notes_attrs, i); |
| 1257 | } |
| 1258 | |
| 1259 | static void remove_notes_attrs(struct module *mod) |
| 1260 | { |
| 1261 | if (mod->notes_attrs) |
| 1262 | free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes); |
| 1263 | } |
| 1264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | #else |
Ian S. Nelson | 04b1db9 | 2006-09-29 02:01:31 -0700 | [diff] [blame] | 1266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | static inline void add_sect_attrs(struct module *mod, unsigned int nsect, |
| 1268 | char *sectstrings, Elf_Shdr *sechdrs) |
| 1269 | { |
| 1270 | } |
| 1271 | |
| 1272 | static inline void remove_sect_attrs(struct module *mod) |
| 1273 | { |
| 1274 | } |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1275 | |
| 1276 | static inline void add_notes_attrs(struct module *mod, unsigned int nsect, |
| 1277 | char *sectstrings, Elf_Shdr *sechdrs) |
| 1278 | { |
| 1279 | } |
| 1280 | |
| 1281 | static inline void remove_notes_attrs(struct module *mod) |
| 1282 | { |
| 1283 | } |
Kay Sievers | 120fc3d | 2008-02-21 00:33:20 +0100 | [diff] [blame] | 1284 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
Randy Dunlap | ef665c1 | 2007-02-13 15:19:06 -0800 | [diff] [blame] | 1286 | #ifdef CONFIG_SYSFS |
| 1287 | int module_add_modinfo_attrs(struct module *mod) |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1288 | { |
| 1289 | struct module_attribute *attr; |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1290 | struct module_attribute *temp_attr; |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1291 | int error = 0; |
| 1292 | int i; |
| 1293 | |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1294 | mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) * |
| 1295 | (ARRAY_SIZE(modinfo_attrs) + 1)), |
| 1296 | GFP_KERNEL); |
| 1297 | if (!mod->modinfo_attrs) |
| 1298 | return -ENOMEM; |
| 1299 | |
| 1300 | temp_attr = mod->modinfo_attrs; |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1301 | for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) { |
| 1302 | if (!attr->test || |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1303 | (attr->test && attr->test(mod))) { |
| 1304 | memcpy(temp_attr, attr, sizeof(*temp_attr)); |
Eric W. Biederman | 361795b | 2010-02-12 13:41:56 -0800 | [diff] [blame] | 1305 | sysfs_attr_init(&temp_attr->attr); |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1306 | error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr); |
| 1307 | ++temp_attr; |
| 1308 | } |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1309 | } |
| 1310 | return error; |
| 1311 | } |
| 1312 | |
Randy Dunlap | ef665c1 | 2007-02-13 15:19:06 -0800 | [diff] [blame] | 1313 | void module_remove_modinfo_attrs(struct module *mod) |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1314 | { |
| 1315 | struct module_attribute *attr; |
| 1316 | int i; |
| 1317 | |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1318 | for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) { |
| 1319 | /* pick a field to test for end of list */ |
| 1320 | if (!attr->attr.name) |
| 1321 | break; |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1322 | sysfs_remove_file(&mod->mkobj.kobj,&attr->attr); |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1323 | if (attr->free) |
| 1324 | attr->free(mod); |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1325 | } |
Greg Kroah-Hartman | 03e88ae1 | 2006-02-16 13:50:23 -0800 | [diff] [blame] | 1326 | kfree(mod->modinfo_attrs); |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1327 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | |
Randy Dunlap | ef665c1 | 2007-02-13 15:19:06 -0800 | [diff] [blame] | 1329 | int mod_sysfs_init(struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | { |
| 1331 | int err; |
Greg Kroah-Hartman | 6494a93 | 2008-01-27 15:38:40 -0800 | [diff] [blame] | 1332 | struct kobject *kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | |
Greg Kroah-Hartman | 823bccf | 2007-04-13 13:15:19 -0700 | [diff] [blame] | 1334 | if (!module_sysfs_initialized) { |
| 1335 | printk(KERN_ERR "%s: module sysfs not initialized\n", |
Ed Swierk | 1cc5f71 | 2006-09-25 16:25:36 -0700 | [diff] [blame] | 1336 | mod->name); |
| 1337 | err = -EINVAL; |
| 1338 | goto out; |
| 1339 | } |
Greg Kroah-Hartman | 6494a93 | 2008-01-27 15:38:40 -0800 | [diff] [blame] | 1340 | |
| 1341 | kobj = kset_find_obj(module_kset, mod->name); |
| 1342 | if (kobj) { |
| 1343 | printk(KERN_ERR "%s: module is already loaded\n", mod->name); |
| 1344 | kobject_put(kobj); |
| 1345 | err = -EINVAL; |
| 1346 | goto out; |
| 1347 | } |
| 1348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | mod->mkobj.mod = mod; |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1350 | |
Greg Kroah-Hartman | ac3c814 | 2007-12-17 23:05:35 -0700 | [diff] [blame] | 1351 | memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj)); |
| 1352 | mod->mkobj.kobj.kset = module_kset; |
| 1353 | err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL, |
| 1354 | "%s", mod->name); |
| 1355 | if (err) |
| 1356 | kobject_put(&mod->mkobj.kobj); |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1357 | |
Kay Sievers | 97c146ef | 2007-11-29 23:46:11 +0100 | [diff] [blame] | 1358 | /* delay uevent until full sysfs population */ |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1359 | out: |
| 1360 | return err; |
| 1361 | } |
| 1362 | |
Randy Dunlap | ef665c1 | 2007-02-13 15:19:06 -0800 | [diff] [blame] | 1363 | int mod_sysfs_setup(struct module *mod, |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1364 | struct kernel_param *kparam, |
| 1365 | unsigned int num_params) |
| 1366 | { |
| 1367 | int err; |
| 1368 | |
Greg Kroah-Hartman | 4ff6abf | 2007-11-05 22:24:43 -0800 | [diff] [blame] | 1369 | mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj); |
Akinobu Mita | 240936e | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 1370 | if (!mod->holders_dir) { |
| 1371 | err = -ENOMEM; |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1372 | goto out_unreg; |
Akinobu Mita | 240936e | 2007-04-26 00:12:09 -0700 | [diff] [blame] | 1373 | } |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | err = module_param_sysfs_setup(mod, kparam, num_params); |
| 1376 | if (err) |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1377 | goto out_unreg_holders; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1379 | err = module_add_modinfo_attrs(mod); |
| 1380 | if (err) |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1381 | goto out_unreg_param; |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1382 | |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1383 | kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | return 0; |
| 1385 | |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1386 | out_unreg_param: |
| 1387 | module_param_sysfs_remove(mod); |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1388 | out_unreg_holders: |
Greg Kroah-Hartman | 78a2d90 | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 1389 | kobject_put(mod->holders_dir); |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 1390 | out_unreg: |
Kay Sievers | e17e0f5 | 2006-11-24 12:15:25 +0100 | [diff] [blame] | 1391 | kobject_put(&mod->mkobj.kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | return err; |
| 1393 | } |
Denis V. Lunev | 34e4e2f | 2008-05-20 13:59:48 +0400 | [diff] [blame] | 1394 | |
| 1395 | static void mod_sysfs_fini(struct module *mod) |
| 1396 | { |
| 1397 | kobject_put(&mod->mkobj.kobj); |
| 1398 | } |
| 1399 | |
| 1400 | #else /* CONFIG_SYSFS */ |
| 1401 | |
| 1402 | static void mod_sysfs_fini(struct module *mod) |
| 1403 | { |
| 1404 | } |
| 1405 | |
| 1406 | #endif /* CONFIG_SYSFS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | |
| 1408 | static void mod_kobject_remove(struct module *mod) |
| 1409 | { |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1410 | module_remove_modinfo_attrs(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | module_param_sysfs_remove(mod); |
Greg Kroah-Hartman | 78a2d90 | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 1412 | kobject_put(mod->mkobj.drivers_dir); |
| 1413 | kobject_put(mod->holders_dir); |
Denis V. Lunev | 34e4e2f | 2008-05-20 13:59:48 +0400 | [diff] [blame] | 1414 | mod_sysfs_fini(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | } |
| 1416 | |
| 1417 | /* |
| 1418 | * unlink the module with the whole machine is stopped with interrupts off |
| 1419 | * - this defends against kallsyms not taking locks |
| 1420 | */ |
| 1421 | static int __unlink_module(void *_mod) |
| 1422 | { |
| 1423 | struct module *mod = _mod; |
| 1424 | list_del(&mod->list); |
| 1425 | return 0; |
| 1426 | } |
| 1427 | |
Robert P. J. Day | 02a3e59 | 2007-05-09 07:26:28 +0200 | [diff] [blame] | 1428 | /* Free a module, remove from lists, etc (must hold module_mutex). */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | static void free_module(struct module *mod) |
| 1430 | { |
Li Zefan | 7ead8b8 | 2009-08-17 16:56:28 +0800 | [diff] [blame] | 1431 | trace_module_free(mod); |
| 1432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | /* Delete from various lists */ |
Rusty Russell | 9b1a4d3 | 2008-07-28 12:16:30 -0500 | [diff] [blame] | 1434 | stop_machine(__unlink_module, mod, NULL); |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 1435 | remove_notes_attrs(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | remove_sect_attrs(mod); |
| 1437 | mod_kobject_remove(mod); |
| 1438 | |
| 1439 | /* Arch-specific cleanup. */ |
| 1440 | module_arch_cleanup(mod); |
| 1441 | |
| 1442 | /* Module unload stuff */ |
| 1443 | module_unload_free(mod); |
| 1444 | |
Rusty Russell | e180a6b | 2009-03-31 13:05:29 -0600 | [diff] [blame] | 1445 | /* Free any allocated parameters. */ |
| 1446 | destroy_params(mod->kp, mod->num_kp); |
| 1447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | /* This may be NULL, but that's OK */ |
| 1449 | module_free(mod, mod->module_init); |
| 1450 | kfree(mod->args); |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 1451 | percpu_modfree(mod); |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 1452 | #if defined(CONFIG_MODULE_UNLOAD) |
Eric Dumazet | 720eba3 | 2009-02-03 13:31:36 +1030 | [diff] [blame] | 1453 | if (mod->refptr) |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 1454 | free_percpu(mod->refptr); |
Eric Dumazet | 720eba3 | 2009-02-03 13:31:36 +1030 | [diff] [blame] | 1455 | #endif |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1456 | /* Free lock-classes: */ |
| 1457 | lockdep_free_key_range(mod->module_core, mod->core_size); |
| 1458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | /* Finally, free the core (containing the module structure) */ |
| 1460 | module_free(mod, mod->module_core); |
Bernd Schmidt | eb8cdec | 2009-09-21 17:03:57 -0700 | [diff] [blame] | 1461 | |
| 1462 | #ifdef CONFIG_MPU |
| 1463 | update_protections(current->mm); |
| 1464 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | } |
| 1466 | |
| 1467 | void *__symbol_get(const char *symbol) |
| 1468 | { |
| 1469 | struct module *owner; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1470 | const struct kernel_symbol *sym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 1472 | preempt_disable(); |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1473 | sym = find_symbol(symbol, &owner, NULL, true, true); |
| 1474 | if (sym && strong_try_module_get(owner)) |
| 1475 | sym = NULL; |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 1476 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1478 | return sym ? (void *)sym->value : NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | } |
| 1480 | EXPORT_SYMBOL_GPL(__symbol_get); |
| 1481 | |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1482 | /* |
| 1483 | * 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] | 1484 | * in the kernel or in some other module's exported symbol table. |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1485 | */ |
| 1486 | static int verify_export_symbols(struct module *mod) |
| 1487 | { |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1488 | unsigned int i; |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1489 | struct module *owner; |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1490 | const struct kernel_symbol *s; |
| 1491 | struct { |
| 1492 | const struct kernel_symbol *sym; |
| 1493 | unsigned int num; |
| 1494 | } arr[] = { |
| 1495 | { mod->syms, mod->num_syms }, |
| 1496 | { mod->gpl_syms, mod->num_gpl_syms }, |
| 1497 | { mod->gpl_future_syms, mod->num_gpl_future_syms }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 1498 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1499 | { mod->unused_syms, mod->num_unused_syms }, |
| 1500 | { mod->unused_gpl_syms, mod->num_unused_gpl_syms }, |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 1501 | #endif |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1502 | }; |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1503 | |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1504 | for (i = 0; i < ARRAY_SIZE(arr); i++) { |
| 1505 | for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) { |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1506 | if (find_symbol(s->name, &owner, NULL, true, false)) { |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1507 | printk(KERN_ERR |
| 1508 | "%s: exports duplicate symbol %s" |
| 1509 | " (owned by %s)\n", |
| 1510 | mod->name, s->name, module_name(owner)); |
| 1511 | return -ENOEXEC; |
| 1512 | } |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1513 | } |
Rusty Russell | b211104 | 2008-05-01 21:15:00 -0500 | [diff] [blame] | 1514 | } |
| 1515 | return 0; |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 1516 | } |
| 1517 | |
Matti Linnanvuori | 9a4b970 | 2007-11-08 08:37:38 -0800 | [diff] [blame] | 1518 | /* Change all symbols so that st_value encodes the pointer directly. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | static int simplify_symbols(Elf_Shdr *sechdrs, |
| 1520 | unsigned int symindex, |
| 1521 | const char *strtab, |
| 1522 | unsigned int versindex, |
| 1523 | unsigned int pcpuindex, |
| 1524 | struct module *mod) |
| 1525 | { |
| 1526 | Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr; |
| 1527 | unsigned long secbase; |
| 1528 | unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym); |
| 1529 | int ret = 0; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1530 | const struct kernel_symbol *ksym; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | |
| 1532 | for (i = 1; i < n; i++) { |
| 1533 | switch (sym[i].st_shndx) { |
| 1534 | case SHN_COMMON: |
| 1535 | /* We compiled with -fno-common. These are not |
| 1536 | supposed to happen. */ |
| 1537 | DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name); |
| 1538 | printk("%s: please compile with -fno-common\n", |
| 1539 | mod->name); |
| 1540 | ret = -ENOEXEC; |
| 1541 | break; |
| 1542 | |
| 1543 | case SHN_ABS: |
| 1544 | /* Don't need to do anything */ |
| 1545 | DEBUGP("Absolute symbol: 0x%08lx\n", |
| 1546 | (long)sym[i].st_value); |
| 1547 | break; |
| 1548 | |
| 1549 | case SHN_UNDEF: |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1550 | ksym = resolve_symbol(sechdrs, versindex, |
| 1551 | strtab + sym[i].st_name, mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | /* Ok if resolved. */ |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1553 | if (ksym) { |
| 1554 | sym[i].st_value = ksym->value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | break; |
Tim Abbott | 414fd31 | 2008-12-05 19:03:56 -0500 | [diff] [blame] | 1556 | } |
| 1557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | /* Ok if weak. */ |
| 1559 | if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK) |
| 1560 | break; |
| 1561 | |
| 1562 | printk(KERN_WARNING "%s: Unknown symbol %s\n", |
| 1563 | mod->name, strtab + sym[i].st_name); |
| 1564 | ret = -ENOENT; |
| 1565 | break; |
| 1566 | |
| 1567 | default: |
| 1568 | /* Divert to percpu allocation if a percpu var. */ |
| 1569 | if (sym[i].st_shndx == pcpuindex) |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 1570 | secbase = (unsigned long)mod_percpu(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | else |
| 1572 | secbase = sechdrs[sym[i].st_shndx].sh_addr; |
| 1573 | sym[i].st_value += secbase; |
| 1574 | break; |
| 1575 | } |
| 1576 | } |
| 1577 | |
| 1578 | return ret; |
| 1579 | } |
| 1580 | |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 1581 | /* Additional bytes needed by arch in front of individual sections */ |
| 1582 | unsigned int __weak arch_mod_section_prepend(struct module *mod, |
| 1583 | unsigned int section) |
| 1584 | { |
| 1585 | /* default implementation just returns zero */ |
| 1586 | return 0; |
| 1587 | } |
| 1588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | /* Update size with this section: return offset. */ |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 1590 | static long get_offset(struct module *mod, unsigned int *size, |
| 1591 | Elf_Shdr *sechdr, unsigned int section) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | { |
| 1593 | long ret; |
| 1594 | |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 1595 | *size += arch_mod_section_prepend(mod, section); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | ret = ALIGN(*size, sechdr->sh_addralign ?: 1); |
| 1597 | *size = ret + sechdr->sh_size; |
| 1598 | return ret; |
| 1599 | } |
| 1600 | |
| 1601 | /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld |
| 1602 | might -- code, read-only data, read-write data, small data. Tally |
| 1603 | sizes, and place the offsets into sh_entsize fields: high bit means it |
| 1604 | belongs in init. */ |
| 1605 | static void layout_sections(struct module *mod, |
| 1606 | const Elf_Ehdr *hdr, |
| 1607 | Elf_Shdr *sechdrs, |
| 1608 | const char *secstrings) |
| 1609 | { |
| 1610 | static unsigned long const masks[][2] = { |
| 1611 | /* NOTE: all executable code must be the first section |
| 1612 | * in this array; otherwise modify the text_size |
| 1613 | * finder in the two loops below */ |
| 1614 | { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL }, |
| 1615 | { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL }, |
| 1616 | { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL }, |
| 1617 | { ARCH_SHF_SMALL | SHF_ALLOC, 0 } |
| 1618 | }; |
| 1619 | unsigned int m, i; |
| 1620 | |
| 1621 | for (i = 0; i < hdr->e_shnum; i++) |
| 1622 | sechdrs[i].sh_entsize = ~0UL; |
| 1623 | |
| 1624 | DEBUGP("Core section allocation order:\n"); |
| 1625 | for (m = 0; m < ARRAY_SIZE(masks); ++m) { |
| 1626 | for (i = 0; i < hdr->e_shnum; ++i) { |
| 1627 | Elf_Shdr *s = &sechdrs[i]; |
| 1628 | |
| 1629 | if ((s->sh_flags & masks[m][0]) != masks[m][0] |
| 1630 | || (s->sh_flags & masks[m][1]) |
| 1631 | || s->sh_entsize != ~0UL |
Rusty Russell | 4950267 | 2009-03-31 13:05:36 -0600 | [diff] [blame] | 1632 | || strstarts(secstrings + s->sh_name, ".init")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | continue; |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 1634 | s->sh_entsize = get_offset(mod, &mod->core_size, s, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | DEBUGP("\t%s\n", secstrings + s->sh_name); |
| 1636 | } |
| 1637 | if (m == 0) |
| 1638 | mod->core_text_size = mod->core_size; |
| 1639 | } |
| 1640 | |
| 1641 | DEBUGP("Init section allocation order:\n"); |
| 1642 | for (m = 0; m < ARRAY_SIZE(masks); ++m) { |
| 1643 | for (i = 0; i < hdr->e_shnum; ++i) { |
| 1644 | Elf_Shdr *s = &sechdrs[i]; |
| 1645 | |
| 1646 | if ((s->sh_flags & masks[m][0]) != masks[m][0] |
| 1647 | || (s->sh_flags & masks[m][1]) |
| 1648 | || s->sh_entsize != ~0UL |
Rusty Russell | 4950267 | 2009-03-31 13:05:36 -0600 | [diff] [blame] | 1649 | || !strstarts(secstrings + s->sh_name, ".init")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | continue; |
Helge Deller | 088af9a | 2008-12-31 12:31:18 +0100 | [diff] [blame] | 1651 | s->sh_entsize = (get_offset(mod, &mod->init_size, s, i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | | INIT_OFFSET_MASK); |
| 1653 | DEBUGP("\t%s\n", secstrings + s->sh_name); |
| 1654 | } |
| 1655 | if (m == 0) |
| 1656 | mod->init_text_size = mod->init_size; |
| 1657 | } |
| 1658 | } |
| 1659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | static void set_license(struct module *mod, const char *license) |
| 1661 | { |
| 1662 | if (!license) |
| 1663 | license = "unspecified"; |
| 1664 | |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 1665 | if (!license_is_gpl_compatible(license)) { |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 1666 | if (!test_taint(TAINT_PROPRIETARY_MODULE)) |
Jan Dittmer | 1d4d262 | 2006-10-28 10:38:38 -0700 | [diff] [blame] | 1667 | printk(KERN_WARNING "%s: module license '%s' taints " |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 1668 | "kernel.\n", mod->name, license); |
| 1669 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | } |
| 1671 | } |
| 1672 | |
| 1673 | /* Parse tag=value strings from .modinfo section */ |
| 1674 | static char *next_string(char *string, unsigned long *secsize) |
| 1675 | { |
| 1676 | /* Skip non-zero chars */ |
| 1677 | while (string[0]) { |
| 1678 | string++; |
| 1679 | if ((*secsize)-- <= 1) |
| 1680 | return NULL; |
| 1681 | } |
| 1682 | |
| 1683 | /* Skip any zero padding. */ |
| 1684 | while (!string[0]) { |
| 1685 | string++; |
| 1686 | if ((*secsize)-- <= 1) |
| 1687 | return NULL; |
| 1688 | } |
| 1689 | return string; |
| 1690 | } |
| 1691 | |
| 1692 | static char *get_modinfo(Elf_Shdr *sechdrs, |
| 1693 | unsigned int info, |
| 1694 | const char *tag) |
| 1695 | { |
| 1696 | char *p; |
| 1697 | unsigned int taglen = strlen(tag); |
| 1698 | unsigned long size = sechdrs[info].sh_size; |
| 1699 | |
| 1700 | for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) { |
| 1701 | if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') |
| 1702 | return p + taglen + 1; |
| 1703 | } |
| 1704 | return NULL; |
| 1705 | } |
| 1706 | |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1707 | static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs, |
| 1708 | unsigned int infoindex) |
| 1709 | { |
| 1710 | struct module_attribute *attr; |
| 1711 | int i; |
| 1712 | |
| 1713 | for (i = 0; (attr = modinfo_attrs[i]); i++) { |
| 1714 | if (attr->setup) |
| 1715 | attr->setup(mod, |
| 1716 | get_modinfo(sechdrs, |
| 1717 | infoindex, |
| 1718 | attr->attr.name)); |
| 1719 | } |
| 1720 | } |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 1721 | |
Rusty Russell | a263f776 | 2009-09-25 00:32:58 -0600 | [diff] [blame] | 1722 | static void free_modinfo(struct module *mod) |
| 1723 | { |
| 1724 | struct module_attribute *attr; |
| 1725 | int i; |
| 1726 | |
| 1727 | for (i = 0; (attr = modinfo_attrs[i]); i++) { |
| 1728 | if (attr->free) |
| 1729 | attr->free(mod); |
| 1730 | } |
| 1731 | } |
| 1732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | #ifdef CONFIG_KALLSYMS |
WANG Cong | 15bba37 | 2008-07-24 15:41:48 +0100 | [diff] [blame] | 1734 | |
| 1735 | /* lookup symbol in given range of kernel_symbols */ |
| 1736 | static const struct kernel_symbol *lookup_symbol(const char *name, |
| 1737 | const struct kernel_symbol *start, |
| 1738 | const struct kernel_symbol *stop) |
| 1739 | { |
| 1740 | const struct kernel_symbol *ks = start; |
| 1741 | for (; ks < stop; ks++) |
| 1742 | if (strcmp(ks->name, name) == 0) |
| 1743 | return ks; |
| 1744 | return NULL; |
| 1745 | } |
| 1746 | |
Tim Abbott | ca4787b | 2009-01-05 08:40:10 -0600 | [diff] [blame] | 1747 | static int is_exported(const char *name, unsigned long value, |
| 1748 | const struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | { |
Tim Abbott | ca4787b | 2009-01-05 08:40:10 -0600 | [diff] [blame] | 1750 | const struct kernel_symbol *ks; |
| 1751 | if (!mod) |
| 1752 | ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab); |
Sam Ravnborg | 3fd6805 | 2006-02-08 21:16:45 +0100 | [diff] [blame] | 1753 | else |
Tim Abbott | ca4787b | 2009-01-05 08:40:10 -0600 | [diff] [blame] | 1754 | ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms); |
| 1755 | return ks != NULL && ks->value == value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | /* As per nm */ |
| 1759 | static char elf_type(const Elf_Sym *sym, |
| 1760 | Elf_Shdr *sechdrs, |
| 1761 | const char *secstrings, |
| 1762 | struct module *mod) |
| 1763 | { |
| 1764 | if (ELF_ST_BIND(sym->st_info) == STB_WEAK) { |
| 1765 | if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT) |
| 1766 | return 'v'; |
| 1767 | else |
| 1768 | return 'w'; |
| 1769 | } |
| 1770 | if (sym->st_shndx == SHN_UNDEF) |
| 1771 | return 'U'; |
| 1772 | if (sym->st_shndx == SHN_ABS) |
| 1773 | return 'a'; |
| 1774 | if (sym->st_shndx >= SHN_LORESERVE) |
| 1775 | return '?'; |
| 1776 | if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR) |
| 1777 | return 't'; |
| 1778 | if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC |
| 1779 | && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) { |
| 1780 | if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE)) |
| 1781 | return 'r'; |
| 1782 | else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL) |
| 1783 | return 'g'; |
| 1784 | else |
| 1785 | return 'd'; |
| 1786 | } |
| 1787 | if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) { |
| 1788 | if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL) |
| 1789 | return 's'; |
| 1790 | else |
| 1791 | return 'b'; |
| 1792 | } |
Rusty Russell | 4950267 | 2009-03-31 13:05:36 -0600 | [diff] [blame] | 1793 | if (strstarts(secstrings + sechdrs[sym->st_shndx].sh_name, ".debug")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | return 'n'; |
| 1795 | return '?'; |
| 1796 | } |
| 1797 | |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1798 | static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs, |
| 1799 | unsigned int shnum) |
| 1800 | { |
| 1801 | const Elf_Shdr *sec; |
| 1802 | |
| 1803 | if (src->st_shndx == SHN_UNDEF |
| 1804 | || src->st_shndx >= shnum |
| 1805 | || !src->st_name) |
| 1806 | return false; |
| 1807 | |
| 1808 | sec = sechdrs + src->st_shndx; |
| 1809 | if (!(sec->sh_flags & SHF_ALLOC) |
| 1810 | #ifndef CONFIG_KALLSYMS_ALL |
| 1811 | || !(sec->sh_flags & SHF_EXECINSTR) |
| 1812 | #endif |
| 1813 | || (sec->sh_entsize & INIT_OFFSET_MASK)) |
| 1814 | return false; |
| 1815 | |
| 1816 | return true; |
| 1817 | } |
| 1818 | |
| 1819 | static unsigned long layout_symtab(struct module *mod, |
| 1820 | Elf_Shdr *sechdrs, |
| 1821 | unsigned int symindex, |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1822 | unsigned int strindex, |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1823 | const Elf_Ehdr *hdr, |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1824 | const char *secstrings, |
| 1825 | unsigned long *pstroffs, |
| 1826 | unsigned long *strmap) |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1827 | { |
| 1828 | unsigned long symoffs; |
| 1829 | Elf_Shdr *symsect = sechdrs + symindex; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1830 | Elf_Shdr *strsect = sechdrs + strindex; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1831 | const Elf_Sym *src; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1832 | const char *strtab; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1833 | unsigned int i, nsrc, ndst; |
| 1834 | |
| 1835 | /* Put symbol section at end of init part of module. */ |
| 1836 | symsect->sh_flags |= SHF_ALLOC; |
| 1837 | symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect, |
| 1838 | symindex) | INIT_OFFSET_MASK; |
| 1839 | DEBUGP("\t%s\n", secstrings + symsect->sh_name); |
| 1840 | |
| 1841 | src = (void *)hdr + symsect->sh_offset; |
| 1842 | nsrc = symsect->sh_size / sizeof(*src); |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1843 | strtab = (void *)hdr + strsect->sh_offset; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1844 | for (ndst = i = 1; i < nsrc; ++i, ++src) |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1845 | if (is_core_symbol(src, sechdrs, hdr->e_shnum)) { |
| 1846 | unsigned int j = src->st_name; |
| 1847 | |
| 1848 | while(!__test_and_set_bit(j, strmap) && strtab[j]) |
| 1849 | ++j; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1850 | ++ndst; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1851 | } |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1852 | |
| 1853 | /* Append room for core symbols at end of core part. */ |
| 1854 | symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1); |
| 1855 | mod->core_size = symoffs + ndst * sizeof(Elf_Sym); |
| 1856 | |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1857 | /* Put string table section at end of init part of module. */ |
| 1858 | strsect->sh_flags |= SHF_ALLOC; |
| 1859 | strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect, |
| 1860 | strindex) | INIT_OFFSET_MASK; |
| 1861 | DEBUGP("\t%s\n", secstrings + strsect->sh_name); |
| 1862 | |
| 1863 | /* Append room for core symbols' strings at end of core part. */ |
| 1864 | *pstroffs = mod->core_size; |
| 1865 | __set_bit(0, strmap); |
| 1866 | mod->core_size += bitmap_weight(strmap, strsect->sh_size); |
| 1867 | |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1868 | return symoffs; |
| 1869 | } |
| 1870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | static void add_kallsyms(struct module *mod, |
| 1872 | Elf_Shdr *sechdrs, |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1873 | unsigned int shnum, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | unsigned int symindex, |
| 1875 | unsigned int strindex, |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1876 | unsigned long symoffs, |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1877 | unsigned long stroffs, |
| 1878 | const char *secstrings, |
| 1879 | unsigned long *strmap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | { |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1881 | unsigned int i, ndst; |
| 1882 | const Elf_Sym *src; |
| 1883 | Elf_Sym *dst; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1884 | char *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | |
| 1886 | mod->symtab = (void *)sechdrs[symindex].sh_addr; |
| 1887 | mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym); |
| 1888 | mod->strtab = (void *)sechdrs[strindex].sh_addr; |
| 1889 | |
| 1890 | /* Set types up while we still have access to sections. */ |
| 1891 | for (i = 0; i < mod->num_symtab; i++) |
| 1892 | mod->symtab[i].st_info |
| 1893 | = elf_type(&mod->symtab[i], sechdrs, secstrings, mod); |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1894 | |
| 1895 | mod->core_symtab = dst = mod->module_core + symoffs; |
| 1896 | src = mod->symtab; |
| 1897 | *dst = *src; |
| 1898 | for (ndst = i = 1; i < mod->num_symtab; ++i, ++src) { |
| 1899 | if (!is_core_symbol(src, sechdrs, shnum)) |
| 1900 | continue; |
| 1901 | dst[ndst] = *src; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1902 | dst[ndst].st_name = bitmap_weight(strmap, dst[ndst].st_name); |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1903 | ++ndst; |
| 1904 | } |
| 1905 | mod->core_num_syms = ndst; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1906 | |
| 1907 | mod->core_strtab = s = mod->module_core + stroffs; |
| 1908 | for (*s = 0, i = 1; i < sechdrs[strindex].sh_size; ++i) |
| 1909 | if (test_bit(i, strmap)) |
| 1910 | *++s = mod->strtab[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | } |
| 1912 | #else |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1913 | static inline unsigned long layout_symtab(struct module *mod, |
| 1914 | Elf_Shdr *sechdrs, |
| 1915 | unsigned int symindex, |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1916 | unsigned int strindex, |
Paul Mundt | 3ae91c2 | 2009-10-01 15:43:54 -0700 | [diff] [blame] | 1917 | const Elf_Ehdr *hdr, |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1918 | const char *secstrings, |
| 1919 | unsigned long *pstroffs, |
| 1920 | unsigned long *strmap) |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1921 | { |
Paul Mundt | 3ae91c2 | 2009-10-01 15:43:54 -0700 | [diff] [blame] | 1922 | return 0; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1923 | } |
Paul Mundt | 3ae91c2 | 2009-10-01 15:43:54 -0700 | [diff] [blame] | 1924 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | static inline void add_kallsyms(struct module *mod, |
| 1926 | Elf_Shdr *sechdrs, |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1927 | unsigned int shnum, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | unsigned int symindex, |
| 1929 | unsigned int strindex, |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 1930 | unsigned long symoffs, |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 1931 | unsigned long stroffs, |
| 1932 | const char *secstrings, |
| 1933 | const unsigned long *strmap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | { |
| 1935 | } |
| 1936 | #endif /* CONFIG_KALLSYMS */ |
| 1937 | |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 1938 | static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num) |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 1939 | { |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 1940 | #ifdef CONFIG_DYNAMIC_DEBUG |
| 1941 | if (ddebug_add_module(debug, num, debug->modname)) |
| 1942 | printk(KERN_ERR "dynamic debug error adding module: %s\n", |
| 1943 | debug->modname); |
| 1944 | #endif |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 1945 | } |
Jason Baron | 346e15b | 2008-08-12 16:46:19 -0400 | [diff] [blame] | 1946 | |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 1947 | static void *module_alloc_update_bounds(unsigned long size) |
| 1948 | { |
| 1949 | void *ret = module_alloc(size); |
| 1950 | |
| 1951 | if (ret) { |
| 1952 | /* Update module bounds. */ |
| 1953 | if ((unsigned long)ret < module_addr_min) |
| 1954 | module_addr_min = (unsigned long)ret; |
| 1955 | if ((unsigned long)ret + size > module_addr_max) |
| 1956 | module_addr_max = (unsigned long)ret + size; |
| 1957 | } |
| 1958 | return ret; |
| 1959 | } |
| 1960 | |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 1961 | #ifdef CONFIG_DEBUG_KMEMLEAK |
| 1962 | static void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr, |
| 1963 | Elf_Shdr *sechdrs, char *secstrings) |
| 1964 | { |
| 1965 | unsigned int i; |
| 1966 | |
| 1967 | /* only scan the sections containing data */ |
Catalin Marinas | c017b4b | 2009-10-28 13:33:09 +0000 | [diff] [blame] | 1968 | kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL); |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 1969 | |
| 1970 | for (i = 1; i < hdr->e_shnum; i++) { |
| 1971 | if (!(sechdrs[i].sh_flags & SHF_ALLOC)) |
| 1972 | continue; |
| 1973 | if (strncmp(secstrings + sechdrs[i].sh_name, ".data", 5) != 0 |
| 1974 | && strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) != 0) |
| 1975 | continue; |
| 1976 | |
Catalin Marinas | c017b4b | 2009-10-28 13:33:09 +0000 | [diff] [blame] | 1977 | kmemleak_scan_area((void *)sechdrs[i].sh_addr, |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 1978 | sechdrs[i].sh_size, GFP_KERNEL); |
| 1979 | } |
| 1980 | } |
| 1981 | #else |
| 1982 | static inline void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr, |
| 1983 | Elf_Shdr *sechdrs, char *secstrings) |
| 1984 | { |
| 1985 | } |
| 1986 | #endif |
| 1987 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | /* Allocate and load the module: note that size of section 0 is always |
| 1989 | zero, and we rely on this for optional sections. */ |
Linus Torvalds | ffb4ba7 | 2008-08-25 11:10:26 -0700 | [diff] [blame] | 1990 | static noinline struct module *load_module(void __user *umod, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | unsigned long len, |
| 1992 | const char __user *uargs) |
| 1993 | { |
| 1994 | Elf_Ehdr *hdr; |
| 1995 | Elf_Shdr *sechdrs; |
| 1996 | char *secstrings, *args, *modmagic, *strtab = NULL; |
Greg Kroah-Hartman | 061b1bd | 2008-09-24 14:46:44 -0700 | [diff] [blame] | 1997 | char *staging; |
Andrew Morton | 84860f9 | 2006-06-28 04:26:46 -0700 | [diff] [blame] | 1998 | unsigned int i; |
| 1999 | unsigned int symindex = 0; |
| 2000 | unsigned int strindex = 0; |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2001 | unsigned int modindex, versindex, infoindex, pcpuindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | struct module *mod; |
| 2003 | long err = 0; |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 2004 | void *ptr = NULL; /* Stops spurious gcc warning */ |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2005 | unsigned long symoffs, stroffs, *strmap; |
Paul Mundt | 3ae91c2 | 2009-10-01 15:43:54 -0700 | [diff] [blame] | 2006 | |
Thomas Koeller | 378bac8 | 2005-09-06 15:17:11 -0700 | [diff] [blame] | 2007 | mm_segment_t old_fs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | |
| 2009 | DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n", |
| 2010 | umod, len, uargs); |
| 2011 | if (len < sizeof(*hdr)) |
| 2012 | return ERR_PTR(-ENOEXEC); |
| 2013 | |
| 2014 | /* Suck in entire file: we'll want most of it. */ |
| 2015 | /* vmalloc barfs on "unusual" numbers. Check here */ |
| 2016 | if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL) |
| 2017 | return ERR_PTR(-ENOMEM); |
Heiko Carstens | 9e01892 | 2008-12-22 12:36:31 +0100 | [diff] [blame] | 2018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | if (copy_from_user(hdr, umod, len) != 0) { |
| 2020 | err = -EFAULT; |
| 2021 | goto free_hdr; |
| 2022 | } |
| 2023 | |
| 2024 | /* Sanity checks against insmoding binaries or wrong arch, |
| 2025 | weird elf version */ |
Cyrill Gorcunov | c4ea6fc | 2008-05-14 16:27:29 -0700 | [diff] [blame] | 2026 | if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | || hdr->e_type != ET_REL |
| 2028 | || !elf_check_arch(hdr) |
| 2029 | || hdr->e_shentsize != sizeof(*sechdrs)) { |
| 2030 | err = -ENOEXEC; |
| 2031 | goto free_hdr; |
| 2032 | } |
| 2033 | |
| 2034 | if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr)) |
| 2035 | goto truncated; |
| 2036 | |
| 2037 | /* Convenience variables */ |
| 2038 | sechdrs = (void *)hdr + hdr->e_shoff; |
| 2039 | secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; |
| 2040 | sechdrs[0].sh_addr = 0; |
| 2041 | |
| 2042 | for (i = 1; i < hdr->e_shnum; i++) { |
| 2043 | if (sechdrs[i].sh_type != SHT_NOBITS |
| 2044 | && len < sechdrs[i].sh_offset + sechdrs[i].sh_size) |
| 2045 | goto truncated; |
| 2046 | |
| 2047 | /* Mark all sections sh_addr with their address in the |
| 2048 | temporary image. */ |
| 2049 | sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset; |
| 2050 | |
| 2051 | /* Internal symbols and strings. */ |
| 2052 | if (sechdrs[i].sh_type == SHT_SYMTAB) { |
| 2053 | symindex = i; |
| 2054 | strindex = sechdrs[i].sh_link; |
| 2055 | strtab = (char *)hdr + sechdrs[strindex].sh_offset; |
| 2056 | } |
| 2057 | #ifndef CONFIG_MODULE_UNLOAD |
| 2058 | /* Don't load .exit sections */ |
Rusty Russell | 4950267 | 2009-03-31 13:05:36 -0600 | [diff] [blame] | 2059 | if (strstarts(secstrings+sechdrs[i].sh_name, ".exit")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC; |
| 2061 | #endif |
| 2062 | } |
| 2063 | |
| 2064 | modindex = find_sec(hdr, sechdrs, secstrings, |
| 2065 | ".gnu.linkonce.this_module"); |
| 2066 | if (!modindex) { |
| 2067 | printk(KERN_WARNING "No module found in object\n"); |
| 2068 | err = -ENOEXEC; |
| 2069 | goto free_hdr; |
| 2070 | } |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2071 | /* This is temporary: point mod into copy of data. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | mod = (void *)sechdrs[modindex].sh_addr; |
| 2073 | |
| 2074 | if (symindex == 0) { |
| 2075 | printk(KERN_WARNING "%s: module has no symbols (stripped?)\n", |
| 2076 | mod->name); |
| 2077 | err = -ENOEXEC; |
| 2078 | goto free_hdr; |
| 2079 | } |
| 2080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | versindex = find_sec(hdr, sechdrs, secstrings, "__versions"); |
| 2082 | infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo"); |
| 2083 | pcpuindex = find_pcpusec(hdr, sechdrs, secstrings); |
| 2084 | |
Rusty Russell | ea01e79 | 2008-03-13 09:02:17 +0000 | [diff] [blame] | 2085 | /* Don't keep modinfo and version sections. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC; |
Rusty Russell | ea01e79 | 2008-03-13 09:02:17 +0000 | [diff] [blame] | 2087 | sechdrs[versindex].sh_flags &= ~(unsigned long)SHF_ALLOC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | |
| 2089 | /* Check module struct version now, before we try to use module. */ |
| 2090 | if (!check_modstruct_version(sechdrs, versindex, mod)) { |
| 2091 | err = -ENOEXEC; |
| 2092 | goto free_hdr; |
| 2093 | } |
| 2094 | |
| 2095 | modmagic = get_modinfo(sechdrs, infoindex, "vermagic"); |
| 2096 | /* This is allowed: modprobe --force will invalidate it. */ |
| 2097 | if (!modmagic) { |
Rusty Russell | c6e665c | 2009-03-31 13:05:33 -0600 | [diff] [blame] | 2098 | err = try_to_force_load(mod, "bad vermagic"); |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 2099 | if (err) |
| 2100 | goto free_hdr; |
Rusty Russell | 91e37a7 | 2008-05-09 16:25:28 +1000 | [diff] [blame] | 2101 | } else if (!same_magic(modmagic, vermagic, versindex)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | printk(KERN_ERR "%s: version magic '%s' should be '%s'\n", |
| 2103 | mod->name, modmagic, vermagic); |
| 2104 | err = -ENOEXEC; |
| 2105 | goto free_hdr; |
| 2106 | } |
| 2107 | |
Greg Kroah-Hartman | 061b1bd | 2008-09-24 14:46:44 -0700 | [diff] [blame] | 2108 | staging = get_modinfo(sechdrs, infoindex, "staging"); |
| 2109 | if (staging) { |
| 2110 | add_taint_module(mod, TAINT_CRAP); |
| 2111 | printk(KERN_WARNING "%s: module is from the staging directory," |
| 2112 | " the quality is unknown, you have been warned.\n", |
| 2113 | mod->name); |
| 2114 | } |
| 2115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | /* Now copy in args */ |
Davi Arnaut | 24277dd | 2006-03-24 03:18:43 -0800 | [diff] [blame] | 2117 | args = strndup_user(uargs, ~0UL >> 1); |
| 2118 | if (IS_ERR(args)) { |
| 2119 | err = PTR_ERR(args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | goto free_hdr; |
| 2121 | } |
Andrew Morton | 8e08b75 | 2006-02-07 12:58:45 -0800 | [diff] [blame] | 2122 | |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2123 | strmap = kzalloc(BITS_TO_LONGS(sechdrs[strindex].sh_size) |
| 2124 | * sizeof(long), GFP_KERNEL); |
| 2125 | if (!strmap) { |
| 2126 | err = -ENOMEM; |
| 2127 | goto free_mod; |
| 2128 | } |
| 2129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | if (find_module(mod->name)) { |
| 2131 | err = -EEXIST; |
| 2132 | goto free_mod; |
| 2133 | } |
| 2134 | |
| 2135 | mod->state = MODULE_STATE_COMING; |
| 2136 | |
| 2137 | /* Allow arches to frob section contents and sizes. */ |
| 2138 | err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod); |
| 2139 | if (err < 0) |
| 2140 | goto free_mod; |
| 2141 | |
| 2142 | if (pcpuindex) { |
| 2143 | /* We have a special allocation for this section. */ |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 2144 | err = percpu_modalloc(mod, sechdrs[pcpuindex].sh_size, |
| 2145 | sechdrs[pcpuindex].sh_addralign); |
| 2146 | if (err) |
Masami Hiramatsu | 6e2b757 | 2009-03-16 18:13:36 -0400 | [diff] [blame] | 2147 | goto free_mod; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | } |
| 2150 | |
| 2151 | /* Determine total sizes, and put offsets in sh_entsize. For now |
| 2152 | this is done generically; there doesn't appear to be any |
| 2153 | special cases for the architectures. */ |
| 2154 | layout_sections(mod, hdr, sechdrs, secstrings); |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2155 | symoffs = layout_symtab(mod, sechdrs, symindex, strindex, hdr, |
| 2156 | secstrings, &stroffs, strmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | |
| 2158 | /* Do the allocs. */ |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 2159 | ptr = module_alloc_update_bounds(mod->core_size); |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2160 | /* |
| 2161 | * The pointer to this block is stored in the module structure |
| 2162 | * which is inside the block. Just mark it as not being a |
| 2163 | * leak. |
| 2164 | */ |
| 2165 | kmemleak_not_leak(ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | if (!ptr) { |
| 2167 | err = -ENOMEM; |
| 2168 | goto free_percpu; |
| 2169 | } |
| 2170 | memset(ptr, 0, mod->core_size); |
| 2171 | mod->module_core = ptr; |
| 2172 | |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 2173 | ptr = module_alloc_update_bounds(mod->init_size); |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2174 | /* |
| 2175 | * The pointer to this block is stored in the module structure |
| 2176 | * which is inside the block. This block doesn't need to be |
| 2177 | * scanned as it contains data and code that will be freed |
| 2178 | * after the module is initialized. |
| 2179 | */ |
| 2180 | kmemleak_ignore(ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | if (!ptr && mod->init_size) { |
| 2182 | err = -ENOMEM; |
| 2183 | goto free_core; |
| 2184 | } |
| 2185 | memset(ptr, 0, mod->init_size); |
| 2186 | mod->module_init = ptr; |
| 2187 | |
| 2188 | /* Transfer each section which specifies SHF_ALLOC */ |
| 2189 | DEBUGP("final section addresses:\n"); |
| 2190 | for (i = 0; i < hdr->e_shnum; i++) { |
| 2191 | void *dest; |
| 2192 | |
| 2193 | if (!(sechdrs[i].sh_flags & SHF_ALLOC)) |
| 2194 | continue; |
| 2195 | |
| 2196 | if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK) |
| 2197 | dest = mod->module_init |
| 2198 | + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK); |
| 2199 | else |
| 2200 | dest = mod->module_core + sechdrs[i].sh_entsize; |
| 2201 | |
| 2202 | if (sechdrs[i].sh_type != SHT_NOBITS) |
| 2203 | memcpy(dest, (void *)sechdrs[i].sh_addr, |
| 2204 | sechdrs[i].sh_size); |
| 2205 | /* Update sh_addr to point to copy in image. */ |
| 2206 | sechdrs[i].sh_addr = (unsigned long)dest; |
| 2207 | DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name); |
| 2208 | } |
| 2209 | /* Module has been moved. */ |
| 2210 | mod = (void *)sechdrs[modindex].sh_addr; |
Catalin Marinas | 4f2294b | 2009-06-11 13:23:20 +0100 | [diff] [blame] | 2211 | kmemleak_load_module(mod, hdr, sechdrs, secstrings); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 2213 | #if defined(CONFIG_MODULE_UNLOAD) |
| 2214 | mod->refptr = alloc_percpu(struct module_ref); |
Masami Hiramatsu | 6e2b757 | 2009-03-16 18:13:36 -0400 | [diff] [blame] | 2215 | if (!mod->refptr) { |
| 2216 | err = -ENOMEM; |
| 2217 | goto free_init; |
| 2218 | } |
| 2219 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | /* Now we've moved module, initialize linked lists, etc. */ |
| 2221 | module_unload_init(mod); |
| 2222 | |
Kay Sievers | 97c146ef | 2007-11-29 23:46:11 +0100 | [diff] [blame] | 2223 | /* add kobject, so we can reference it. */ |
Akinobu Mita | d58ae67 | 2007-10-16 23:30:27 -0700 | [diff] [blame] | 2224 | err = mod_sysfs_init(mod); |
| 2225 | if (err) |
Kay Sievers | 97c146ef | 2007-11-29 23:46:11 +0100 | [diff] [blame] | 2226 | goto free_unload; |
Kay Sievers | 270a6c4 | 2007-01-18 13:26:15 +0100 | [diff] [blame] | 2227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | /* Set up license info based on the info section */ |
| 2229 | set_license(mod, get_modinfo(sechdrs, infoindex, "license")); |
| 2230 | |
Pavel Roskin | 9b37ccf | 2008-02-28 17:11:02 -0500 | [diff] [blame] | 2231 | /* |
| 2232 | * ndiswrapper is under GPL by itself, but loads proprietary modules. |
| 2233 | * Don't use add_taint_module(), as it would prevent ndiswrapper from |
| 2234 | * using GPL-only symbols it needs. |
| 2235 | */ |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2236 | if (strcmp(mod->name, "ndiswrapper") == 0) |
Pavel Roskin | 9b37ccf | 2008-02-28 17:11:02 -0500 | [diff] [blame] | 2237 | add_taint(TAINT_PROPRIETARY_MODULE); |
| 2238 | |
| 2239 | /* driverloader was caught wrongly pretending to be under GPL */ |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2240 | if (strcmp(mod->name, "driverloader") == 0) |
| 2241 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE); |
Dave Jones | 9841d61 | 2006-01-08 01:03:41 -0800 | [diff] [blame] | 2242 | |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 2243 | /* Set up MODINFO_ATTR fields */ |
| 2244 | setup_modinfo(mod, sechdrs, infoindex); |
Matt Domsch | c988d2b | 2005-06-23 22:05:15 -0700 | [diff] [blame] | 2245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | /* Fix up syms, so that st_value is a pointer to location. */ |
| 2247 | err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex, |
| 2248 | mod); |
| 2249 | if (err < 0) |
| 2250 | goto cleanup; |
| 2251 | |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2252 | /* Now we've got everything in the final locations, we can |
| 2253 | * find optional sections. */ |
Rusty Russell | e180a6b | 2009-03-31 13:05:29 -0600 | [diff] [blame] | 2254 | mod->kp = section_objs(hdr, sechdrs, secstrings, "__param", |
| 2255 | sizeof(*mod->kp), &mod->num_kp); |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2256 | mod->syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab", |
| 2257 | sizeof(*mod->syms), &mod->num_syms); |
| 2258 | mod->crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab"); |
| 2259 | mod->gpl_syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab_gpl", |
| 2260 | sizeof(*mod->gpl_syms), |
| 2261 | &mod->num_gpl_syms); |
| 2262 | mod->gpl_crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab_gpl"); |
| 2263 | mod->gpl_future_syms = section_objs(hdr, sechdrs, secstrings, |
| 2264 | "__ksymtab_gpl_future", |
| 2265 | sizeof(*mod->gpl_future_syms), |
| 2266 | &mod->num_gpl_future_syms); |
| 2267 | mod->gpl_future_crcs = section_addr(hdr, sechdrs, secstrings, |
| 2268 | "__kcrctab_gpl_future"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 2270 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2271 | mod->unused_syms = section_objs(hdr, sechdrs, secstrings, |
| 2272 | "__ksymtab_unused", |
| 2273 | sizeof(*mod->unused_syms), |
| 2274 | &mod->num_unused_syms); |
| 2275 | mod->unused_crcs = section_addr(hdr, sechdrs, secstrings, |
| 2276 | "__kcrctab_unused"); |
| 2277 | mod->unused_gpl_syms = section_objs(hdr, sechdrs, secstrings, |
| 2278 | "__ksymtab_unused_gpl", |
| 2279 | sizeof(*mod->unused_gpl_syms), |
| 2280 | &mod->num_unused_gpl_syms); |
| 2281 | mod->unused_gpl_crcs = section_addr(hdr, sechdrs, secstrings, |
| 2282 | "__kcrctab_unused_gpl"); |
| 2283 | #endif |
Peter Oberparleiter | b99b87f | 2009-06-17 16:28:03 -0700 | [diff] [blame] | 2284 | #ifdef CONFIG_CONSTRUCTORS |
| 2285 | mod->ctors = section_objs(hdr, sechdrs, secstrings, ".ctors", |
| 2286 | sizeof(*mod->ctors), &mod->num_ctors); |
| 2287 | #endif |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2288 | |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2289 | #ifdef CONFIG_TRACEPOINTS |
| 2290 | mod->tracepoints = section_objs(hdr, sechdrs, secstrings, |
| 2291 | "__tracepoints", |
| 2292 | sizeof(*mod->tracepoints), |
| 2293 | &mod->num_tracepoints); |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 2294 | #endif |
Steven Rostedt | 6d72373 | 2009-04-10 14:53:50 -0400 | [diff] [blame] | 2295 | #ifdef CONFIG_EVENT_TRACING |
| 2296 | mod->trace_events = section_objs(hdr, sechdrs, secstrings, |
| 2297 | "_ftrace_events", |
| 2298 | sizeof(*mod->trace_events), |
| 2299 | &mod->num_trace_events); |
Catalin Marinas | a6f5aa1e | 2009-10-28 13:33:10 +0000 | [diff] [blame] | 2300 | /* |
| 2301 | * This section contains pointers to allocated objects in the trace |
| 2302 | * code and not scanning it leads to false positives. |
| 2303 | */ |
| 2304 | kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) * |
| 2305 | mod->num_trace_events, GFP_KERNEL); |
Steven Rostedt | 6d72373 | 2009-04-10 14:53:50 -0400 | [diff] [blame] | 2306 | #endif |
Steven Rostedt | 93eb677 | 2009-04-15 13:24:06 -0400 | [diff] [blame] | 2307 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
| 2308 | /* sechdrs[0].sh_size is always zero */ |
| 2309 | mod->ftrace_callsites = section_objs(hdr, sechdrs, secstrings, |
| 2310 | "__mcount_loc", |
| 2311 | sizeof(*mod->ftrace_callsites), |
| 2312 | &mod->num_ftrace_callsites); |
| 2313 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | #ifdef CONFIG_MODVERSIONS |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2315 | if ((mod->num_syms && !mod->crcs) |
| 2316 | || (mod->num_gpl_syms && !mod->gpl_crcs) |
| 2317 | || (mod->num_gpl_future_syms && !mod->gpl_future_crcs) |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 2318 | #ifdef CONFIG_UNUSED_SYMBOLS |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2319 | || (mod->num_unused_syms && !mod->unused_crcs) |
| 2320 | || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs) |
Denys Vlasenko | f7f5b67 | 2008-07-22 19:24:26 -0500 | [diff] [blame] | 2321 | #endif |
| 2322 | ) { |
Rusty Russell | c6e665c | 2009-03-31 13:05:33 -0600 | [diff] [blame] | 2323 | err = try_to_force_load(mod, |
| 2324 | "no versions for exported symbols"); |
Linus Torvalds | 826e450 | 2008-05-04 17:04:16 -0700 | [diff] [blame] | 2325 | if (err) |
| 2326 | goto cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | } |
| 2328 | #endif |
| 2329 | |
| 2330 | /* Now do relocations. */ |
| 2331 | for (i = 1; i < hdr->e_shnum; i++) { |
| 2332 | const char *strtab = (char *)sechdrs[strindex].sh_addr; |
| 2333 | unsigned int info = sechdrs[i].sh_info; |
| 2334 | |
| 2335 | /* Not a valid relocation section? */ |
| 2336 | if (info >= hdr->e_shnum) |
| 2337 | continue; |
| 2338 | |
| 2339 | /* Don't bother with non-allocated sections */ |
| 2340 | if (!(sechdrs[info].sh_flags & SHF_ALLOC)) |
| 2341 | continue; |
| 2342 | |
| 2343 | if (sechdrs[i].sh_type == SHT_REL) |
| 2344 | err = apply_relocate(sechdrs, strtab, symindex, i,mod); |
| 2345 | else if (sechdrs[i].sh_type == SHT_RELA) |
| 2346 | err = apply_relocate_add(sechdrs, strtab, symindex, i, |
| 2347 | mod); |
| 2348 | if (err < 0) |
| 2349 | goto cleanup; |
| 2350 | } |
| 2351 | |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 2352 | /* Find duplicate symbols */ |
| 2353 | err = verify_export_symbols(mod); |
Ashutosh Naik | eea8b54 | 2006-01-08 01:04:25 -0800 | [diff] [blame] | 2354 | if (err < 0) |
| 2355 | goto cleanup; |
| 2356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | /* Set up and sort exception table */ |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2358 | mod->extable = section_objs(hdr, sechdrs, secstrings, "__ex_table", |
| 2359 | sizeof(*mod->extable), &mod->num_exentries); |
| 2360 | sort_extable(mod->extable, mod->extable + mod->num_exentries); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | |
| 2362 | /* Finally, copy percpu area over. */ |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 2363 | percpu_modcopy(mod, (void *)sechdrs[pcpuindex].sh_addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | sechdrs[pcpuindex].sh_size); |
| 2365 | |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2366 | add_kallsyms(mod, sechdrs, hdr->e_shnum, symindex, strindex, |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2367 | symoffs, stroffs, secstrings, strmap); |
| 2368 | kfree(strmap); |
| 2369 | strmap = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 2371 | if (!mod->taints) { |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 2372 | struct _ddebug *debug; |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2373 | unsigned int num_debug; |
| 2374 | |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2375 | debug = section_objs(hdr, sechdrs, secstrings, "__verbose", |
| 2376 | sizeof(*debug), &num_debug); |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 2377 | if (debug) |
| 2378 | dynamic_debug_setup(debug, num_debug); |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 2379 | } |
Steven Rostedt | 90d595f | 2008-08-14 15:45:09 -0400 | [diff] [blame] | 2380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2381 | err = module_finalize(hdr, sechdrs, mod); |
| 2382 | if (err < 0) |
| 2383 | goto cleanup; |
| 2384 | |
Thomas Koeller | 378bac8 | 2005-09-06 15:17:11 -0700 | [diff] [blame] | 2385 | /* flush the icache in correct context */ |
| 2386 | old_fs = get_fs(); |
| 2387 | set_fs(KERNEL_DS); |
| 2388 | |
| 2389 | /* |
| 2390 | * Flush the instruction cache, since we've played with text. |
| 2391 | * Do it before processing of module parameters, so the module |
| 2392 | * can provide parameter accessor functions of its own. |
| 2393 | */ |
| 2394 | if (mod->module_init) |
| 2395 | flush_icache_range((unsigned long)mod->module_init, |
| 2396 | (unsigned long)mod->module_init |
| 2397 | + mod->init_size); |
| 2398 | flush_icache_range((unsigned long)mod->module_core, |
| 2399 | (unsigned long)mod->module_core + mod->core_size); |
| 2400 | |
| 2401 | set_fs(old_fs); |
| 2402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | mod->args = args; |
Rusty Russell | 5e458cc | 2008-10-22 10:00:13 -0500 | [diff] [blame] | 2404 | if (section_addr(hdr, sechdrs, secstrings, "__obsparm")) |
Rusty Russell | 8d3b33f | 2006-03-25 03:07:05 -0800 | [diff] [blame] | 2405 | printk(KERN_WARNING "%s: Ignoring obsolete parameters\n", |
| 2406 | mod->name); |
| 2407 | |
Rusty Russell | bb9d3d5 | 2008-01-29 17:13:21 -0500 | [diff] [blame] | 2408 | /* Now sew it into the lists so we can get lockdep and oops |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2409 | * info during argument parsing. Noone should access us, since |
| 2410 | * strong_try_module_get() will fail. |
| 2411 | * lockdep/oops can run asynchronous, so use the RCU list insertion |
| 2412 | * function to insert in a way safe to concurrent readers. |
| 2413 | * The mutex protects against concurrent writers. |
| 2414 | */ |
| 2415 | list_add_rcu(&mod->list, &modules); |
Rusty Russell | bb9d3d5 | 2008-01-29 17:13:21 -0500 | [diff] [blame] | 2416 | |
Rusty Russell | e180a6b | 2009-03-31 13:05:29 -0600 | [diff] [blame] | 2417 | err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | if (err < 0) |
Rusty Russell | bb9d3d5 | 2008-01-29 17:13:21 -0500 | [diff] [blame] | 2419 | goto unlink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | |
Rusty Russell | e180a6b | 2009-03-31 13:05:29 -0600 | [diff] [blame] | 2421 | err = mod_sysfs_setup(mod, mod->kp, mod->num_kp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | if (err < 0) |
Rusty Russell | bb9d3d5 | 2008-01-29 17:13:21 -0500 | [diff] [blame] | 2423 | goto unlink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs); |
Roland McGrath | 6d76013 | 2007-10-16 23:26:40 -0700 | [diff] [blame] | 2425 | add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | |
| 2427 | /* Get rid of temporary copy */ |
| 2428 | vfree(hdr); |
| 2429 | |
Li Zefan | 7ead8b8 | 2009-08-17 16:56:28 +0800 | [diff] [blame] | 2430 | trace_module_load(mod); |
| 2431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2432 | /* Done! */ |
| 2433 | return mod; |
| 2434 | |
Rusty Russell | bb9d3d5 | 2008-01-29 17:13:21 -0500 | [diff] [blame] | 2435 | unlink: |
Rusty Russell | e91defa | 2009-03-31 13:05:35 -0600 | [diff] [blame] | 2436 | /* Unlink carefully: kallsyms could be walking list. */ |
| 2437 | list_del_rcu(&mod->list); |
| 2438 | synchronize_sched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | module_arch_cleanup(mod); |
| 2440 | cleanup: |
Rusty Russell | a263f776 | 2009-09-25 00:32:58 -0600 | [diff] [blame] | 2441 | free_modinfo(mod); |
Kay Sievers | 97c146ef | 2007-11-29 23:46:11 +0100 | [diff] [blame] | 2442 | kobject_del(&mod->mkobj.kobj); |
| 2443 | kobject_put(&mod->mkobj.kobj); |
| 2444 | free_unload: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | module_unload_free(mod); |
Christoph Lameter | e1783a2 | 2010-01-05 15:34:50 +0900 | [diff] [blame] | 2446 | #if defined(CONFIG_MODULE_UNLOAD) |
| 2447 | free_percpu(mod->refptr); |
Rusty Russell | ffa9f12 | 2009-09-25 00:32:59 -0600 | [diff] [blame] | 2448 | free_init: |
Eric Dumazet | 720eba3 | 2009-02-03 13:31:36 +1030 | [diff] [blame] | 2449 | #endif |
Masami Hiramatsu | 6e2b757 | 2009-03-16 18:13:36 -0400 | [diff] [blame] | 2450 | module_free(mod, mod->module_init); |
| 2451 | free_core: |
| 2452 | module_free(mod, mod->module_core); |
| 2453 | /* mod will be freed with core. Don't access it beyond this line! */ |
| 2454 | free_percpu: |
Tejun Heo | 259354d | 2010-03-10 18:56:10 +0900 | [diff] [blame] | 2455 | percpu_modfree(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2456 | free_mod: |
| 2457 | kfree(args); |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2458 | kfree(strmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | free_hdr: |
| 2460 | vfree(hdr); |
Jayachandran C | 6fe2e70 | 2006-01-06 00:19:54 -0800 | [diff] [blame] | 2461 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | |
| 2463 | truncated: |
| 2464 | printk(KERN_ERR "Module len %lu truncated\n", len); |
| 2465 | err = -ENOEXEC; |
| 2466 | goto free_hdr; |
| 2467 | } |
| 2468 | |
Peter Oberparleiter | b99b87f | 2009-06-17 16:28:03 -0700 | [diff] [blame] | 2469 | /* Call module constructors. */ |
| 2470 | static void do_mod_ctors(struct module *mod) |
| 2471 | { |
| 2472 | #ifdef CONFIG_CONSTRUCTORS |
| 2473 | unsigned long i; |
| 2474 | |
| 2475 | for (i = 0; i < mod->num_ctors; i++) |
| 2476 | mod->ctors[i](); |
| 2477 | #endif |
| 2478 | } |
| 2479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | /* This is where the real work happens */ |
Heiko Carstens | 17da2bd | 2009-01-14 14:14:10 +0100 | [diff] [blame] | 2481 | SYSCALL_DEFINE3(init_module, void __user *, umod, |
| 2482 | unsigned long, len, const char __user *, uargs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2483 | { |
| 2484 | struct module *mod; |
| 2485 | int ret = 0; |
| 2486 | |
| 2487 | /* Must have permission */ |
Kees Cook | 3d43321 | 2009-04-02 15:49:29 -0700 | [diff] [blame] | 2488 | if (!capable(CAP_SYS_MODULE) || modules_disabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2489 | return -EPERM; |
| 2490 | |
| 2491 | /* Only one module load at a time, please */ |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 2492 | if (mutex_lock_interruptible(&module_mutex) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2493 | return -EINTR; |
| 2494 | |
| 2495 | /* Do all the hard work */ |
| 2496 | mod = load_module(umod, len, uargs); |
| 2497 | if (IS_ERR(mod)) { |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 2498 | mutex_unlock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2499 | return PTR_ERR(mod); |
| 2500 | } |
| 2501 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2502 | /* Drop lock so they can recurse */ |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 2503 | mutex_unlock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2504 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 2505 | blocking_notifier_call_chain(&module_notify_list, |
| 2506 | MODULE_STATE_COMING, mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2507 | |
Peter Oberparleiter | b99b87f | 2009-06-17 16:28:03 -0700 | [diff] [blame] | 2508 | do_mod_ctors(mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2509 | /* Start the module */ |
| 2510 | if (mod->init != NULL) |
Arjan van de Ven | 59f9415 | 2008-07-30 12:49:02 -0700 | [diff] [blame] | 2511 | ret = do_one_initcall(mod->init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2512 | if (ret < 0) { |
| 2513 | /* Init routine failed: abort. Try to protect us from |
| 2514 | buggy refcounters. */ |
| 2515 | mod->state = MODULE_STATE_GOING; |
Paul E. McKenney | fbd568a3e | 2005-05-01 08:59:04 -0700 | [diff] [blame] | 2516 | synchronize_sched(); |
Rusty Russell | af49d92 | 2007-10-16 23:26:27 -0700 | [diff] [blame] | 2517 | module_put(mod); |
Peter Oberparleiter | df4b565 | 2008-04-21 14:34:31 +0200 | [diff] [blame] | 2518 | blocking_notifier_call_chain(&module_notify_list, |
| 2519 | MODULE_STATE_GOING, mod); |
Rusty Russell | af49d92 | 2007-10-16 23:26:27 -0700 | [diff] [blame] | 2520 | mutex_lock(&module_mutex); |
| 2521 | free_module(mod); |
| 2522 | mutex_unlock(&module_mutex); |
Rusty Russell | c9a3ba5 | 2008-01-29 17:13:18 -0500 | [diff] [blame] | 2523 | wake_up(&module_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2524 | return ret; |
| 2525 | } |
Alexey Dobriyan | e24e2e6 | 2008-03-10 11:43:53 -0700 | [diff] [blame] | 2526 | if (ret > 0) { |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 2527 | printk(KERN_WARNING |
| 2528 | "%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n" |
| 2529 | "%s: loading module anyway...\n", |
Alexey Dobriyan | e24e2e6 | 2008-03-10 11:43:53 -0700 | [diff] [blame] | 2530 | __func__, mod->name, ret, |
| 2531 | __func__); |
| 2532 | dump_stack(); |
| 2533 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | |
Rusty Russell | 6c5db22 | 2008-03-10 11:43:52 -0700 | [diff] [blame] | 2535 | /* Now it's a first class citizen! Wake up anyone waiting for it. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2536 | mod->state = MODULE_STATE_LIVE; |
Rusty Russell | 6c5db22 | 2008-03-10 11:43:52 -0700 | [diff] [blame] | 2537 | wake_up(&module_wq); |
Masami Hiramatsu | 0deddf4 | 2009-01-06 14:41:54 -0800 | [diff] [blame] | 2538 | blocking_notifier_call_chain(&module_notify_list, |
| 2539 | MODULE_STATE_LIVE, mod); |
Rusty Russell | 6c5db22 | 2008-03-10 11:43:52 -0700 | [diff] [blame] | 2540 | |
Linus Torvalds | d6de2c8 | 2009-04-10 12:17:41 -0700 | [diff] [blame] | 2541 | /* We need to finish all async code before the module init sequence is done */ |
| 2542 | async_synchronize_full(); |
| 2543 | |
Rusty Russell | 6c5db22 | 2008-03-10 11:43:52 -0700 | [diff] [blame] | 2544 | mutex_lock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2545 | /* Drop initial reference. */ |
| 2546 | module_put(mod); |
Rusty Russell | ad6561d | 2009-06-12 21:47:03 -0600 | [diff] [blame] | 2547 | trim_init_extable(mod); |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2548 | #ifdef CONFIG_KALLSYMS |
| 2549 | mod->num_symtab = mod->core_num_syms; |
| 2550 | mod->symtab = mod->core_symtab; |
Jan Beulich | 554bdfe | 2009-07-06 14:51:44 +0100 | [diff] [blame] | 2551 | mod->strtab = mod->core_strtab; |
Jan Beulich | 4a49622 | 2009-07-06 14:50:42 +0100 | [diff] [blame] | 2552 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | module_free(mod, mod->module_init); |
| 2554 | mod->module_init = NULL; |
| 2555 | mod->init_size = 0; |
| 2556 | mod->init_text_size = 0; |
Ashutosh Naik | 6389a38 | 2006-03-23 03:00:46 -0800 | [diff] [blame] | 2557 | mutex_unlock(&module_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | |
| 2559 | return 0; |
| 2560 | } |
| 2561 | |
| 2562 | static inline int within(unsigned long addr, void *start, unsigned long size) |
| 2563 | { |
| 2564 | return ((void *)addr >= start && (void *)addr < start + size); |
| 2565 | } |
| 2566 | |
| 2567 | #ifdef CONFIG_KALLSYMS |
| 2568 | /* |
| 2569 | * This ignores the intensely annoying "mapping symbols" found |
| 2570 | * in ARM ELF files: $a, $t and $d. |
| 2571 | */ |
| 2572 | static inline int is_arm_mapping_symbol(const char *str) |
| 2573 | { |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 2574 | return str[0] == '$' && strchr("atd", str[1]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | && (str[2] == '\0' || str[2] == '.'); |
| 2576 | } |
| 2577 | |
| 2578 | static const char *get_ksymbol(struct module *mod, |
| 2579 | unsigned long addr, |
| 2580 | unsigned long *size, |
| 2581 | unsigned long *offset) |
| 2582 | { |
| 2583 | unsigned int i, best = 0; |
| 2584 | unsigned long nextval; |
| 2585 | |
| 2586 | /* At worse, next value is at end of module */ |
Masami Hiramatsu | a06f621 | 2009-01-06 14:41:49 -0800 | [diff] [blame] | 2587 | if (within_module_init(addr, mod)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | nextval = (unsigned long)mod->module_init+mod->init_text_size; |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 2589 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | nextval = (unsigned long)mod->module_core+mod->core_text_size; |
| 2591 | |
| 2592 | /* Scan for closest preceeding symbol, and next symbol. (ELF |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 2593 | starts real symbols at 1). */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2594 | for (i = 1; i < mod->num_symtab; i++) { |
| 2595 | if (mod->symtab[i].st_shndx == SHN_UNDEF) |
| 2596 | continue; |
| 2597 | |
| 2598 | /* We ignore unnamed symbols: they're uninformative |
| 2599 | * and inserted at a whim. */ |
| 2600 | if (mod->symtab[i].st_value <= addr |
| 2601 | && mod->symtab[i].st_value > mod->symtab[best].st_value |
| 2602 | && *(mod->strtab + mod->symtab[i].st_name) != '\0' |
| 2603 | && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name)) |
| 2604 | best = i; |
| 2605 | if (mod->symtab[i].st_value > addr |
| 2606 | && mod->symtab[i].st_value < nextval |
| 2607 | && *(mod->strtab + mod->symtab[i].st_name) != '\0' |
| 2608 | && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name)) |
| 2609 | nextval = mod->symtab[i].st_value; |
| 2610 | } |
| 2611 | |
| 2612 | if (!best) |
| 2613 | return NULL; |
| 2614 | |
Alexey Dobriyan | ffb4512 | 2007-05-08 00:28:41 -0700 | [diff] [blame] | 2615 | if (size) |
| 2616 | *size = nextval - mod->symtab[best].st_value; |
| 2617 | if (offset) |
| 2618 | *offset = addr - mod->symtab[best].st_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2619 | return mod->strtab + mod->symtab[best].st_name; |
| 2620 | } |
| 2621 | |
Rusty Russell | 6dd06c9 | 2008-01-29 17:13:22 -0500 | [diff] [blame] | 2622 | /* For kallsyms to ask for address resolution. NULL means not found. Careful |
| 2623 | * not to lock to avoid deadlock on oopses, simply disable preemption. */ |
Andrew Morton | 92dfc9d | 2008-02-08 04:18:43 -0800 | [diff] [blame] | 2624 | const char *module_address_lookup(unsigned long addr, |
Rusty Russell | 6dd06c9 | 2008-01-29 17:13:22 -0500 | [diff] [blame] | 2625 | unsigned long *size, |
| 2626 | unsigned long *offset, |
| 2627 | char **modname, |
| 2628 | char *namebuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2629 | { |
| 2630 | struct module *mod; |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2631 | const char *ret = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2633 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2634 | list_for_each_entry_rcu(mod, &modules, list) { |
Masami Hiramatsu | a06f621 | 2009-01-06 14:41:49 -0800 | [diff] [blame] | 2635 | if (within_module_init(addr, mod) || |
| 2636 | within_module_core(addr, mod)) { |
Franck Bui-Huu | ffc5089 | 2006-10-03 01:13:48 -0700 | [diff] [blame] | 2637 | if (modname) |
| 2638 | *modname = mod->name; |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2639 | ret = get_ksymbol(mod, addr, size, offset); |
| 2640 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2641 | } |
| 2642 | } |
Rusty Russell | 6dd06c9 | 2008-01-29 17:13:22 -0500 | [diff] [blame] | 2643 | /* Make a copy in here where it's safe */ |
| 2644 | if (ret) { |
| 2645 | strncpy(namebuf, ret, KSYM_NAME_LEN - 1); |
| 2646 | ret = namebuf; |
| 2647 | } |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2648 | preempt_enable(); |
Andrew Morton | 92dfc9d | 2008-02-08 04:18:43 -0800 | [diff] [blame] | 2649 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | } |
| 2651 | |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 2652 | int lookup_module_symbol_name(unsigned long addr, char *symname) |
| 2653 | { |
| 2654 | struct module *mod; |
| 2655 | |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2656 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2657 | list_for_each_entry_rcu(mod, &modules, list) { |
Masami Hiramatsu | a06f621 | 2009-01-06 14:41:49 -0800 | [diff] [blame] | 2658 | if (within_module_init(addr, mod) || |
| 2659 | within_module_core(addr, mod)) { |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 2660 | const char *sym; |
| 2661 | |
| 2662 | sym = get_ksymbol(mod, addr, NULL, NULL); |
| 2663 | if (!sym) |
| 2664 | goto out; |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 2665 | strlcpy(symname, sym, KSYM_NAME_LEN); |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2666 | preempt_enable(); |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 2667 | return 0; |
| 2668 | } |
| 2669 | } |
| 2670 | out: |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2671 | preempt_enable(); |
Alexey Dobriyan | 9d65cb4 | 2007-05-08 00:28:43 -0700 | [diff] [blame] | 2672 | return -ERANGE; |
| 2673 | } |
| 2674 | |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 2675 | int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, |
| 2676 | unsigned long *offset, char *modname, char *name) |
| 2677 | { |
| 2678 | struct module *mod; |
| 2679 | |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2680 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2681 | list_for_each_entry_rcu(mod, &modules, list) { |
Masami Hiramatsu | a06f621 | 2009-01-06 14:41:49 -0800 | [diff] [blame] | 2682 | if (within_module_init(addr, mod) || |
| 2683 | within_module_core(addr, mod)) { |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 2684 | const char *sym; |
| 2685 | |
| 2686 | sym = get_ksymbol(mod, addr, size, offset); |
| 2687 | if (!sym) |
| 2688 | goto out; |
| 2689 | if (modname) |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 2690 | strlcpy(modname, mod->name, MODULE_NAME_LEN); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 2691 | if (name) |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 2692 | strlcpy(name, sym, KSYM_NAME_LEN); |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2693 | preempt_enable(); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 2694 | return 0; |
| 2695 | } |
| 2696 | } |
| 2697 | out: |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2698 | preempt_enable(); |
Alexey Dobriyan | a5c43da | 2007-05-08 00:28:47 -0700 | [diff] [blame] | 2699 | return -ERANGE; |
| 2700 | } |
| 2701 | |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 2702 | int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type, |
| 2703 | char *name, char *module_name, int *exported) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2704 | { |
| 2705 | struct module *mod; |
| 2706 | |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2707 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2708 | list_for_each_entry_rcu(mod, &modules, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2709 | if (symnum < mod->num_symtab) { |
| 2710 | *value = mod->symtab[symnum].st_value; |
| 2711 | *type = mod->symtab[symnum].st_info; |
Andreas Gruenbacher | 098c5ee | 2006-07-14 00:24:04 -0700 | [diff] [blame] | 2712 | strlcpy(name, mod->strtab + mod->symtab[symnum].st_name, |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 2713 | KSYM_NAME_LEN); |
| 2714 | strlcpy(module_name, mod->name, MODULE_NAME_LEN); |
Tim Abbott | ca4787b | 2009-01-05 08:40:10 -0600 | [diff] [blame] | 2715 | *exported = is_exported(name, *value, mod); |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2716 | preempt_enable(); |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 2717 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2718 | } |
| 2719 | symnum -= mod->num_symtab; |
| 2720 | } |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2721 | preempt_enable(); |
Alexey Dobriyan | ea07890 | 2007-05-08 00:28:39 -0700 | [diff] [blame] | 2722 | return -ERANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | } |
| 2724 | |
| 2725 | static unsigned long mod_find_symname(struct module *mod, const char *name) |
| 2726 | { |
| 2727 | unsigned int i; |
| 2728 | |
| 2729 | for (i = 0; i < mod->num_symtab; i++) |
Keith Owens | 54e8ce4 | 2006-02-03 03:03:53 -0800 | [diff] [blame] | 2730 | if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 && |
| 2731 | mod->symtab[i].st_info != 'U') |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | return mod->symtab[i].st_value; |
| 2733 | return 0; |
| 2734 | } |
| 2735 | |
| 2736 | /* Look for this name: can be of form module:name. */ |
| 2737 | unsigned long module_kallsyms_lookup_name(const char *name) |
| 2738 | { |
| 2739 | struct module *mod; |
| 2740 | char *colon; |
| 2741 | unsigned long ret = 0; |
| 2742 | |
| 2743 | /* Don't lock: we're in enough trouble already. */ |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2744 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | if ((colon = strchr(name, ':')) != NULL) { |
| 2746 | *colon = '\0'; |
| 2747 | if ((mod = find_module(name)) != NULL) |
| 2748 | ret = mod_find_symname(mod, colon+1); |
| 2749 | *colon = ':'; |
| 2750 | } else { |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2751 | list_for_each_entry_rcu(mod, &modules, list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | if ((ret = mod_find_symname(mod, name)) != 0) |
| 2753 | break; |
| 2754 | } |
Rusty Russell | cb2a520 | 2008-01-14 00:55:03 -0800 | [diff] [blame] | 2755 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | return ret; |
| 2757 | } |
Anders Kaseorg | 75a6661 | 2008-12-05 19:03:58 -0500 | [diff] [blame] | 2758 | |
| 2759 | int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *, |
| 2760 | struct module *, unsigned long), |
| 2761 | void *data) |
| 2762 | { |
| 2763 | struct module *mod; |
| 2764 | unsigned int i; |
| 2765 | int ret; |
| 2766 | |
| 2767 | list_for_each_entry(mod, &modules, list) { |
| 2768 | for (i = 0; i < mod->num_symtab; i++) { |
| 2769 | ret = fn(data, mod->strtab + mod->symtab[i].st_name, |
| 2770 | mod, mod->symtab[i].st_value); |
| 2771 | if (ret != 0) |
| 2772 | return ret; |
| 2773 | } |
| 2774 | } |
| 2775 | return 0; |
| 2776 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | #endif /* CONFIG_KALLSYMS */ |
| 2778 | |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 2779 | static char *module_flags(struct module *mod, char *buf) |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2780 | { |
| 2781 | int bx = 0; |
| 2782 | |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 2783 | if (mod->taints || |
| 2784 | mod->state == MODULE_STATE_GOING || |
| 2785 | mod->state == MODULE_STATE_COMING) { |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2786 | buf[bx++] = '('; |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 2787 | if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE)) |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2788 | buf[bx++] = 'P'; |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 2789 | if (mod->taints & (1 << TAINT_FORCED_MODULE)) |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2790 | buf[bx++] = 'F'; |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 2791 | if (mod->taints & (1 << TAINT_CRAP)) |
Greg Kroah-Hartman | 061b1bd | 2008-09-24 14:46:44 -0700 | [diff] [blame] | 2792 | buf[bx++] = 'C'; |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2793 | /* |
| 2794 | * TAINT_FORCED_RMMOD: could be added. |
| 2795 | * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't |
| 2796 | * apply to modules. |
| 2797 | */ |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 2798 | |
| 2799 | /* Show a - for module-is-being-unloaded */ |
| 2800 | if (mod->state == MODULE_STATE_GOING) |
| 2801 | buf[bx++] = '-'; |
| 2802 | /* Show a + for module-is-being-loaded */ |
| 2803 | if (mod->state == MODULE_STATE_COMING) |
| 2804 | buf[bx++] = '+'; |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2805 | buf[bx++] = ')'; |
| 2806 | } |
| 2807 | buf[bx] = '\0'; |
| 2808 | |
| 2809 | return buf; |
| 2810 | } |
| 2811 | |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 2812 | #ifdef CONFIG_PROC_FS |
| 2813 | /* Called by the /proc file system to return a list of modules. */ |
| 2814 | static void *m_start(struct seq_file *m, loff_t *pos) |
| 2815 | { |
| 2816 | mutex_lock(&module_mutex); |
| 2817 | return seq_list_start(&modules, *pos); |
| 2818 | } |
| 2819 | |
| 2820 | static void *m_next(struct seq_file *m, void *p, loff_t *pos) |
| 2821 | { |
| 2822 | return seq_list_next(p, &modules, pos); |
| 2823 | } |
| 2824 | |
| 2825 | static void m_stop(struct seq_file *m, void *p) |
| 2826 | { |
| 2827 | mutex_unlock(&module_mutex); |
| 2828 | } |
| 2829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | static int m_show(struct seq_file *m, void *p) |
| 2831 | { |
| 2832 | struct module *mod = list_entry(p, struct module, list); |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2833 | char buf[8]; |
| 2834 | |
Denys Vlasenko | 2f0f2a3 | 2008-07-22 19:24:27 -0500 | [diff] [blame] | 2835 | seq_printf(m, "%s %u", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | mod->name, mod->init_size + mod->core_size); |
| 2837 | print_unload_info(m, mod); |
| 2838 | |
| 2839 | /* Informative for users. */ |
| 2840 | seq_printf(m, " %s", |
| 2841 | mod->state == MODULE_STATE_GOING ? "Unloading": |
| 2842 | mod->state == MODULE_STATE_COMING ? "Loading": |
| 2843 | "Live"); |
| 2844 | /* Used by oprofile and other similar tools. */ |
| 2845 | seq_printf(m, " 0x%p", mod->module_core); |
| 2846 | |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2847 | /* Taints info */ |
| 2848 | if (mod->taints) |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 2849 | seq_printf(m, " %s", module_flags(mod, buf)); |
Florin Malita | fa3ba2e8 | 2006-10-11 01:21:48 -0700 | [diff] [blame] | 2850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | seq_printf(m, "\n"); |
| 2852 | return 0; |
| 2853 | } |
| 2854 | |
| 2855 | /* Format: modulename size refcount deps address |
| 2856 | |
| 2857 | Where refcount is a number or -, and deps is a comma-separated list |
| 2858 | of depends or -. |
| 2859 | */ |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 2860 | static const struct seq_operations modules_op = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2861 | .start = m_start, |
| 2862 | .next = m_next, |
| 2863 | .stop = m_stop, |
| 2864 | .show = m_show |
| 2865 | }; |
| 2866 | |
Alexey Dobriyan | 3b5d5c6 | 2008-10-06 13:19:27 +0400 | [diff] [blame] | 2867 | static int modules_open(struct inode *inode, struct file *file) |
| 2868 | { |
| 2869 | return seq_open(file, &modules_op); |
| 2870 | } |
| 2871 | |
| 2872 | static const struct file_operations proc_modules_operations = { |
| 2873 | .open = modules_open, |
| 2874 | .read = seq_read, |
| 2875 | .llseek = seq_lseek, |
| 2876 | .release = seq_release, |
| 2877 | }; |
| 2878 | |
| 2879 | static int __init proc_modules_init(void) |
| 2880 | { |
| 2881 | proc_create("modules", 0, NULL, &proc_modules_operations); |
| 2882 | return 0; |
| 2883 | } |
| 2884 | module_init(proc_modules_init); |
| 2885 | #endif |
| 2886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | /* Given an address, look for it in the module exception tables. */ |
| 2888 | const struct exception_table_entry *search_module_extables(unsigned long addr) |
| 2889 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | const struct exception_table_entry *e = NULL; |
| 2891 | struct module *mod; |
| 2892 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 2893 | preempt_disable(); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2894 | list_for_each_entry_rcu(mod, &modules, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2895 | if (mod->num_exentries == 0) |
| 2896 | continue; |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 2897 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2898 | e = search_extable(mod->extable, |
| 2899 | mod->extable + mod->num_exentries - 1, |
| 2900 | addr); |
| 2901 | if (e) |
| 2902 | break; |
| 2903 | } |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 2904 | preempt_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | |
| 2906 | /* Now, if we found one, we are running inside it now, hence |
Daniel Walker | 22a8bde | 2007-10-18 03:06:07 -0700 | [diff] [blame] | 2907 | we cannot unload the module, hence no refcnt needed. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | return e; |
| 2909 | } |
| 2910 | |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 2911 | /* |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2912 | * is_module_address - is this address inside a module? |
| 2913 | * @addr: the address to check. |
| 2914 | * |
| 2915 | * See is_module_text_address() if you simply want to see if the address |
| 2916 | * is code (not data). |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 2917 | */ |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2918 | bool is_module_address(unsigned long addr) |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 2919 | { |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2920 | bool ret; |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 2921 | |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 2922 | preempt_disable(); |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2923 | ret = __module_address(addr) != NULL; |
Rusty Russell | 24da1cb | 2007-07-15 23:41:46 -0700 | [diff] [blame] | 2924 | preempt_enable(); |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 2925 | |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2926 | return ret; |
Ingo Molnar | 4d435f9 | 2006-07-03 00:24:24 -0700 | [diff] [blame] | 2927 | } |
| 2928 | |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2929 | /* |
| 2930 | * __module_address - get the module which contains an address. |
| 2931 | * @addr: the address. |
| 2932 | * |
| 2933 | * Must be called with preempt disabled or module mutex held so that |
| 2934 | * module doesn't get freed during this. |
| 2935 | */ |
Linus Torvalds | 714f83d | 2009-04-05 11:04:19 -0700 | [diff] [blame] | 2936 | struct module *__module_address(unsigned long addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | { |
| 2938 | struct module *mod; |
| 2939 | |
Rusty Russell | 3a642e9 | 2008-07-22 19:24:28 -0500 | [diff] [blame] | 2940 | if (addr < module_addr_min || addr > module_addr_max) |
| 2941 | return NULL; |
| 2942 | |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2943 | list_for_each_entry_rcu(mod, &modules, list) |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2944 | if (within_module_core(addr, mod) |
| 2945 | || within_module_init(addr, mod)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2946 | return mod; |
| 2947 | return NULL; |
| 2948 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 2949 | EXPORT_SYMBOL_GPL(__module_address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2951 | /* |
| 2952 | * is_module_text_address - is this address inside module code? |
| 2953 | * @addr: the address to check. |
| 2954 | * |
| 2955 | * See is_module_address() if you simply want to see if the address is |
| 2956 | * anywhere in a module. See kernel_text_address() for testing if an |
| 2957 | * address corresponds to kernel or module code. |
| 2958 | */ |
| 2959 | bool is_module_text_address(unsigned long addr) |
| 2960 | { |
| 2961 | bool ret; |
| 2962 | |
| 2963 | preempt_disable(); |
| 2964 | ret = __module_text_address(addr) != NULL; |
| 2965 | preempt_enable(); |
| 2966 | |
| 2967 | return ret; |
| 2968 | } |
| 2969 | |
| 2970 | /* |
| 2971 | * __module_text_address - get the module whose code contains an address. |
| 2972 | * @addr: the address. |
| 2973 | * |
| 2974 | * Must be called with preempt disabled or module mutex held so that |
| 2975 | * module doesn't get freed during this. |
| 2976 | */ |
| 2977 | struct module *__module_text_address(unsigned long addr) |
| 2978 | { |
| 2979 | struct module *mod = __module_address(addr); |
| 2980 | if (mod) { |
| 2981 | /* Make sure it's within the text section. */ |
| 2982 | if (!within(addr, mod->module_init, mod->init_text_size) |
| 2983 | && !within(addr, mod->module_core, mod->core_text_size)) |
| 2984 | mod = NULL; |
| 2985 | } |
| 2986 | return mod; |
| 2987 | } |
Tim Abbott | c6b3780 | 2008-12-05 19:03:59 -0500 | [diff] [blame] | 2988 | EXPORT_SYMBOL_GPL(__module_text_address); |
Rusty Russell | e610499 | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 2989 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2990 | /* Don't grab lock, we're oopsing. */ |
| 2991 | void print_modules(void) |
| 2992 | { |
| 2993 | struct module *mod; |
Randy Dunlap | 2bc2d61 | 2006-10-02 02:17:02 -0700 | [diff] [blame] | 2994 | char buf[8]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | |
Linus Torvalds | b231125 | 2009-06-16 11:07:14 -0700 | [diff] [blame] | 2996 | printk(KERN_DEFAULT "Modules linked in:"); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 2997 | /* Most callers should already have preempt disabled, but make sure */ |
| 2998 | preempt_disable(); |
| 2999 | list_for_each_entry_rcu(mod, &modules, list) |
Arjan van de Ven | 21aa928 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3000 | printk(" %s%s", mod->name, module_flags(mod, buf)); |
Andi Kleen | d72b375 | 2008-08-30 10:09:00 +0200 | [diff] [blame] | 3001 | preempt_enable(); |
Arjan van de Ven | e14af7e | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3002 | if (last_unloaded_module[0]) |
| 3003 | printk(" [last unloaded: %s]", last_unloaded_module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | printk("\n"); |
| 3005 | } |
| 3006 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3007 | #ifdef CONFIG_MODVERSIONS |
Rusty Russell | 8c8ef42 | 2009-03-31 13:05:34 -0600 | [diff] [blame] | 3008 | /* Generate the signature for all relevant module structures here. |
| 3009 | * If these change, we don't want to try to parse the module. */ |
| 3010 | void module_layout(struct module *mod, |
| 3011 | struct modversion_info *ver, |
| 3012 | struct kernel_param *kp, |
| 3013 | struct kernel_symbol *ks, |
Rusty Russell | 8c8ef42 | 2009-03-31 13:05:34 -0600 | [diff] [blame] | 3014 | struct tracepoint *tp) |
| 3015 | { |
| 3016 | } |
| 3017 | EXPORT_SYMBOL(module_layout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | #endif |
Mathieu Desnoyers | 8256e47 | 2007-10-18 23:41:06 -0700 | [diff] [blame] | 3019 | |
Mathieu Desnoyers | 97e1c18 | 2008-07-18 12:16:16 -0400 | [diff] [blame] | 3020 | #ifdef CONFIG_TRACEPOINTS |
| 3021 | void module_update_tracepoints(void) |
| 3022 | { |
| 3023 | struct module *mod; |
| 3024 | |
| 3025 | mutex_lock(&module_mutex); |
| 3026 | list_for_each_entry(mod, &modules, list) |
| 3027 | if (!mod->taints) |
| 3028 | tracepoint_update_probe_range(mod->tracepoints, |
| 3029 | mod->tracepoints + mod->num_tracepoints); |
| 3030 | mutex_unlock(&module_mutex); |
| 3031 | } |
| 3032 | |
| 3033 | /* |
| 3034 | * Returns 0 if current not found. |
| 3035 | * Returns 1 if current found. |
| 3036 | */ |
| 3037 | int module_get_iter_tracepoints(struct tracepoint_iter *iter) |
| 3038 | { |
| 3039 | struct module *iter_mod; |
| 3040 | int found = 0; |
| 3041 | |
| 3042 | mutex_lock(&module_mutex); |
| 3043 | list_for_each_entry(iter_mod, &modules, list) { |
| 3044 | if (!iter_mod->taints) { |
| 3045 | /* |
| 3046 | * Sorted module list |
| 3047 | */ |
| 3048 | if (iter_mod < iter->module) |
| 3049 | continue; |
| 3050 | else if (iter_mod > iter->module) |
| 3051 | iter->tracepoint = NULL; |
| 3052 | found = tracepoint_get_iter_range(&iter->tracepoint, |
| 3053 | iter_mod->tracepoints, |
| 3054 | iter_mod->tracepoints |
| 3055 | + iter_mod->num_tracepoints); |
| 3056 | if (found) { |
| 3057 | iter->module = iter_mod; |
| 3058 | break; |
| 3059 | } |
| 3060 | } |
| 3061 | } |
| 3062 | mutex_unlock(&module_mutex); |
| 3063 | return found; |
| 3064 | } |
| 3065 | #endif |