blob: d856e96a3cce440f4c9bb0bc5e7fbf2eee4b1afe [file] [log] [blame]
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (C) 2002 Richard Henderson
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003 Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
Paul Gortmaker9984de12011-05-23 14:51:41 -040019#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/moduleloader.h>
Steven Rostedt6d723732009-04-10 14:53:50 -040021#include <linux/ftrace_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
Alexey Dobriyanae84e322007-05-08 00:28:38 -070023#include <linux/kallsyms.h>
Kees Cook34e11692012-10-16 07:31:07 +103024#include <linux/file.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040025#include <linux/fs.h>
Roland McGrath6d760132007-10-16 23:26:40 -070026#include <linux/sysfs.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070027#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/slab.h>
29#include <linux/vmalloc.h>
30#include <linux/elf.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040031#include <linux/proc_fs.h>
Kees Cook2e72d512012-10-16 07:32:07 +103032#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/seq_file.h>
34#include <linux/syscalls.h>
35#include <linux/fcntl.h>
36#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080037#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/cpu.h>
39#include <linux/moduleparam.h>
40#include <linux/errno.h>
41#include <linux/err.h>
42#include <linux/vermagic.h>
43#include <linux/notifier.h>
Al Virof6a57032006-10-18 01:47:25 -040044#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070046#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080047#include <linux/mutex.h>
Andi Kleend72b3752008-08-30 10:09:00 +020048#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/cacheflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070051#include <asm/mmu_context.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020052#include <linux/license.h>
Christoph Lameter6d762392008-02-08 04:18:42 -080053#include <asm/sections.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040054#include <linux/tracepoint.h>
Steven Rostedt90d595f2008-08-14 15:45:09 -040055#include <linux/ftrace.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080056#include <linux/async.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090057#include <linux/percpu.h>
Catalin Marinas4f2294b2009-06-11 13:23:20 +010058#include <linux/kmemleak.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040059#include <linux/jump_label.h>
matthieu castet84e1c6b2010-11-16 22:35:16 +010060#include <linux/pfn.h>
Alessio Igor Bogani403ed272011-04-20 11:10:52 +020061#include <linux/bsearch.h>
Rusty Russell2f3238a2012-10-22 18:09:41 +103062#include <uapi/linux/module.h>
Rusty Russell106a4ee2012-09-26 10:09:40 +010063#include "module-internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Li Zefan7ead8b82009-08-17 16:56:28 +080065#define CREATE_TRACE_POINTS
66#include <trace/events/module.h>
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#ifndef ARCH_SHF_SMALL
69#define ARCH_SHF_SMALL 0
70#endif
71
matthieu castet84e1c6b2010-11-16 22:35:16 +010072/*
73 * Modules' sections will be aligned on page boundaries
74 * to ensure complete separation of code and data, but
75 * only when CONFIG_DEBUG_SET_MODULE_RONX=y
76 */
77#ifdef CONFIG_DEBUG_SET_MODULE_RONX
78# define debug_align(X) ALIGN(X, PAGE_SIZE)
79#else
80# define debug_align(X) (X)
81#endif
82
83/*
84 * Given BASE and SIZE this macro calculates the number of pages the
85 * memory regions occupies
86 */
87#define MOD_NUMBER_OF_PAGES(BASE, SIZE) (((SIZE) > 0) ? \
88 (PFN_DOWN((unsigned long)(BASE) + (SIZE) - 1) - \
89 PFN_DOWN((unsigned long)BASE) + 1) \
90 : (0UL))
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/* If this is set, the section belongs in the init part of the module */
93#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
94
Rusty Russell75676502010-06-05 11:17:36 -060095/*
96 * Mutex protects:
97 * 1) List of modules (also safely readable with preempt_disable),
98 * 2) module_use links,
99 * 3) module_addr_min/module_addr_max.
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030100 * (delete and add uses RCU list operations). */
Tim Abbottc6b37802008-12-05 19:03:59 -0500101DEFINE_MUTEX(module_mutex);
102EXPORT_SYMBOL_GPL(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static LIST_HEAD(modules);
Jason Wessel67fc4e02010-05-20 21:04:21 -0500104#ifdef CONFIG_KGDB_KDB
105struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
106#endif /* CONFIG_KGDB_KDB */
107
Rusty Russell106a4ee2012-09-26 10:09:40 +0100108#ifdef CONFIG_MODULE_SIG
109#ifdef CONFIG_MODULE_SIG_FORCE
110static bool sig_enforce = true;
111#else
112static bool sig_enforce = false;
113
114static int param_set_bool_enable_only(const char *val,
115 const struct kernel_param *kp)
116{
117 int err;
118 bool test;
119 struct kernel_param dummy_kp = *kp;
120
121 dummy_kp.arg = &test;
122
123 err = param_set_bool(val, &dummy_kp);
124 if (err)
125 return err;
126
127 /* Don't let them unset it once it's set! */
128 if (!test && sig_enforce)
129 return -EROFS;
130
131 if (test)
132 sig_enforce = true;
133 return 0;
134}
135
136static const struct kernel_param_ops param_ops_bool_enable_only = {
Jani Nikula6a4c2642014-08-27 06:21:23 +0930137 .flags = KERNEL_PARAM_OPS_FL_NOARG,
Rusty Russell106a4ee2012-09-26 10:09:40 +0100138 .set = param_set_bool_enable_only,
139 .get = param_get_bool,
140};
141#define param_check_bool_enable_only param_check_bool
142
143module_param(sig_enforce, bool_enable_only, 0644);
144#endif /* !CONFIG_MODULE_SIG_FORCE */
145#endif /* CONFIG_MODULE_SIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Stephen Rothwell19e45292009-04-14 17:27:18 +1000147/* Block module loading/unloading? */
148int modules_disabled = 0;
Dave Young02608be2012-02-01 10:33:14 +0800149core_param(nomodule, modules_disabled, bint, 0);
Stephen Rothwell19e45292009-04-14 17:27:18 +1000150
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500151/* Waiting for a module to finish initializing? */
152static DECLARE_WAIT_QUEUE_HEAD(module_wq);
153
Alan Sterne041c682006-03-27 01:16:30 -0800154static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Rusty Russell75676502010-06-05 11:17:36 -0600156/* Bounds of module allocation, for speeding __module_address.
157 * Protected by module_mutex. */
Rusty Russell3a642e92008-07-22 19:24:28 -0500158static unsigned long module_addr_min = -1UL, module_addr_max = 0;
159
Ionut Alexa6da0b562014-11-10 09:31:29 +1030160int register_module_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Alan Sterne041c682006-03-27 01:16:30 -0800162 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164EXPORT_SYMBOL(register_module_notifier);
165
Ionut Alexa6da0b562014-11-10 09:31:29 +1030166int unregister_module_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Alan Sterne041c682006-03-27 01:16:30 -0800168 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170EXPORT_SYMBOL(unregister_module_notifier);
171
Rusty Russelleded41c2010-08-05 12:59:07 -0600172struct load_info {
173 Elf_Ehdr *hdr;
174 unsigned long len;
175 Elf_Shdr *sechdrs;
Rusty Russell6526c532010-08-05 12:59:10 -0600176 char *secstrings, *strtab;
Rusty Russelld9131882010-08-05 12:59:08 -0600177 unsigned long symoffs, stroffs;
Rusty Russell811d66a2010-08-05 12:59:12 -0600178 struct _ddebug *debug;
179 unsigned int num_debug;
Rusty Russell106a4ee2012-09-26 10:09:40 +0100180 bool sig_ok;
Rusty Russelleded41c2010-08-05 12:59:07 -0600181 struct {
182 unsigned int sym, str, mod, vers, info, pcpu;
183 } index;
184};
185
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800186/* We require a truly strong try_module_get(): 0 means failure due to
187 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static inline int strong_try_module_get(struct module *mod)
189{
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030190 BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500192 return -EBUSY;
193 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500195 else
196 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
Rusty Russell373d4d02013-01-21 17:17:39 +1030199static inline void add_taint_module(struct module *mod, unsigned flag,
200 enum lockdep_ok lockdep_ok)
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700201{
Rusty Russell373d4d02013-01-21 17:17:39 +1030202 add_taint(flag, lockdep_ok);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700203 mod->taints |= (1U << flag);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700204}
205
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200206/*
207 * A thread that wants to hold a reference to a module only while it
208 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 */
210void __module_put_and_exit(struct module *mod, long code)
211{
212 module_put(mod);
213 do_exit(code);
214}
215EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/* Find a module section: 0 means not found. */
Rusty Russell49668682010-08-05 12:59:10 -0600218static unsigned int find_sec(const struct load_info *info, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 unsigned int i;
221
Rusty Russell49668682010-08-05 12:59:10 -0600222 for (i = 1; i < info->hdr->e_shnum; i++) {
223 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* Alloc bit cleared means "ignore it." */
Rusty Russell49668682010-08-05 12:59:10 -0600225 if ((shdr->sh_flags & SHF_ALLOC)
226 && strcmp(info->secstrings + shdr->sh_name, name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return i;
Rusty Russell49668682010-08-05 12:59:10 -0600228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return 0;
230}
231
Rusty Russell5e458cc2008-10-22 10:00:13 -0500232/* Find a module section, or NULL. */
Rusty Russell49668682010-08-05 12:59:10 -0600233static void *section_addr(const struct load_info *info, const char *name)
Rusty Russell5e458cc2008-10-22 10:00:13 -0500234{
235 /* Section 0 has sh_addr 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600236 return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500237}
238
239/* Find a module section, or NULL. Fill in number of "objects" in section. */
Rusty Russell49668682010-08-05 12:59:10 -0600240static void *section_objs(const struct load_info *info,
Rusty Russell5e458cc2008-10-22 10:00:13 -0500241 const char *name,
242 size_t object_size,
243 unsigned int *num)
244{
Rusty Russell49668682010-08-05 12:59:10 -0600245 unsigned int sec = find_sec(info, name);
Rusty Russell5e458cc2008-10-22 10:00:13 -0500246
247 /* Section 0 has sh_addr 0 and sh_size 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600248 *num = info->sechdrs[sec].sh_size / object_size;
249 return (void *)info->sechdrs[sec].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500250}
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/* Provided by the linker */
253extern const struct kernel_symbol __start___ksymtab[];
254extern const struct kernel_symbol __stop___ksymtab[];
255extern const struct kernel_symbol __start___ksymtab_gpl[];
256extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800257extern const struct kernel_symbol __start___ksymtab_gpl_future[];
258extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259extern const unsigned long __start___kcrctab[];
260extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800261extern const unsigned long __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500262#ifdef CONFIG_UNUSED_SYMBOLS
263extern const struct kernel_symbol __start___ksymtab_unused[];
264extern const struct kernel_symbol __stop___ksymtab_unused[];
265extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
266extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700267extern const unsigned long __start___kcrctab_unused[];
268extern const unsigned long __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271#ifndef CONFIG_MODVERSIONS
272#define symversion(base, idx) NULL
273#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800274#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#endif
276
Rusty Russelldafd0942008-07-22 19:24:25 -0500277static bool each_symbol_in_section(const struct symsearch *arr,
278 unsigned int arrsize,
279 struct module *owner,
280 bool (*fn)(const struct symsearch *syms,
281 struct module *owner,
Rusty Russellde4d8d52011-04-19 21:49:58 +0200282 void *data),
Rusty Russelldafd0942008-07-22 19:24:25 -0500283 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100284{
Rusty Russellde4d8d52011-04-19 21:49:58 +0200285 unsigned int j;
Rusty Russelldafd0942008-07-22 19:24:25 -0500286
287 for (j = 0; j < arrsize; j++) {
Rusty Russellde4d8d52011-04-19 21:49:58 +0200288 if (fn(&arr[j], owner, data))
289 return true;
Rusty Russelldafd0942008-07-22 19:24:25 -0500290 }
291
292 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100293}
294
Rusty Russelldafd0942008-07-22 19:24:25 -0500295/* Returns true as soon as fn returns true, otherwise false. */
Rusty Russellde4d8d52011-04-19 21:49:58 +0200296bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
297 struct module *owner,
298 void *data),
299 void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700300{
Rusty Russelldafd0942008-07-22 19:24:25 -0500301 struct module *mod;
Linus Torvalds44032e62010-08-05 12:59:05 -0600302 static const struct symsearch arr[] = {
Rusty Russelldafd0942008-07-22 19:24:25 -0500303 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
304 NOT_GPL_ONLY, false },
305 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
306 __start___kcrctab_gpl,
307 GPL_ONLY, false },
308 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
309 __start___kcrctab_gpl_future,
310 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500311#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500312 { __start___ksymtab_unused, __stop___ksymtab_unused,
313 __start___kcrctab_unused,
314 NOT_GPL_ONLY, true },
315 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
316 __start___kcrctab_unused_gpl,
317 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500318#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500319 };
320
321 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
322 return true;
323
Andi Kleend72b3752008-08-30 10:09:00 +0200324 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500325 struct symsearch arr[] = {
326 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
327 NOT_GPL_ONLY, false },
328 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
329 mod->gpl_crcs,
330 GPL_ONLY, false },
331 { mod->gpl_future_syms,
332 mod->gpl_future_syms + mod->num_gpl_future_syms,
333 mod->gpl_future_crcs,
334 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500335#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500336 { mod->unused_syms,
337 mod->unused_syms + mod->num_unused_syms,
338 mod->unused_crcs,
339 NOT_GPL_ONLY, true },
340 { mod->unused_gpl_syms,
341 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
342 mod->unused_gpl_crcs,
343 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500344#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500345 };
346
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030347 if (mod->state == MODULE_STATE_UNFORMED)
348 continue;
349
Rusty Russelldafd0942008-07-22 19:24:25 -0500350 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
351 return true;
352 }
353 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700354}
Rusty Russellde4d8d52011-04-19 21:49:58 +0200355EXPORT_SYMBOL_GPL(each_symbol_section);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700356
Rusty Russelldafd0942008-07-22 19:24:25 -0500357struct find_symbol_arg {
358 /* Input */
359 const char *name;
360 bool gplok;
361 bool warn;
362
363 /* Output */
364 struct module *owner;
365 const unsigned long *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500366 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500367};
368
Rusty Russellde4d8d52011-04-19 21:49:58 +0200369static bool check_symbol(const struct symsearch *syms,
370 struct module *owner,
371 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500372{
Rusty Russelldafd0942008-07-22 19:24:25 -0500373 struct find_symbol_arg *fsa = data;
374
Rusty Russelldafd0942008-07-22 19:24:25 -0500375 if (!fsa->gplok) {
376 if (syms->licence == GPL_ONLY)
377 return false;
378 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800379 pr_warn("Symbol %s is being used by a non-GPL module, "
380 "which will not be allowed in the future\n",
381 fsa->name);
Rusty Russelldafd0942008-07-22 19:24:25 -0500382 }
383 }
384
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500385#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500386 if (syms->unused && fsa->warn) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800387 pr_warn("Symbol %s is marked as UNUSED, however this module is "
388 "using it.\n", fsa->name);
389 pr_warn("This symbol will go away in the future.\n");
390 pr_warn("Please evalute if this is the right api to use and if "
391 "it really is, submit a report the linux kernel "
392 "mailinglist together with submitting your code for "
393 "inclusion.\n");
Rusty Russellad9546c2008-05-01 21:14:59 -0500394 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500395#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500396
397 fsa->owner = owner;
398 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500399 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500400 return true;
401}
402
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200403static int cmp_name(const void *va, const void *vb)
404{
405 const char *a;
406 const struct kernel_symbol *b;
407 a = va; b = vb;
408 return strcmp(a, b->name);
409}
410
Rusty Russellde4d8d52011-04-19 21:49:58 +0200411static bool find_symbol_in_section(const struct symsearch *syms,
412 struct module *owner,
413 void *data)
414{
415 struct find_symbol_arg *fsa = data;
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200416 struct kernel_symbol *sym;
Rusty Russellde4d8d52011-04-19 21:49:58 +0200417
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200418 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
419 sizeof(struct kernel_symbol), cmp_name);
420
421 if (sym != NULL && check_symbol(syms, owner, sym - syms->start, data))
422 return true;
423
Rusty Russellde4d8d52011-04-19 21:49:58 +0200424 return false;
425}
426
Tim Abbott414fd312008-12-05 19:03:56 -0500427/* Find a symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600428 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500429const struct kernel_symbol *find_symbol(const char *name,
430 struct module **owner,
431 const unsigned long **crc,
432 bool gplok,
433 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Rusty Russelldafd0942008-07-22 19:24:25 -0500435 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Rusty Russelldafd0942008-07-22 19:24:25 -0500437 fsa.name = name;
438 fsa.gplok = gplok;
439 fsa.warn = warn;
440
Rusty Russellde4d8d52011-04-19 21:49:58 +0200441 if (each_symbol_section(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500442 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500443 *owner = fsa.owner;
444 if (crc)
445 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500446 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500448
Jim Cromie5e124162011-12-06 12:11:31 -0700449 pr_debug("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500450 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
Tim Abbottc6b37802008-12-05 19:03:59 -0500452EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/* Search for module by name: must hold module_mutex. */
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930455static struct module *find_module_all(const char *name, size_t len,
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030456 bool even_unformed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 struct module *mod;
459
460 list_for_each_entry(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030461 if (!even_unformed && mod->state == MODULE_STATE_UNFORMED)
462 continue;
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930463 if (strlen(mod->name) == len && !memcmp(mod->name, name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return mod;
465 }
466 return NULL;
467}
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030468
469struct module *find_module(const char *name)
470{
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930471 return find_module_all(name, strlen(name), false);
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030472}
Tim Abbottc6b37802008-12-05 19:03:59 -0500473EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900476
Tejun Heo259354d2010-03-10 18:56:10 +0900477static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900478{
Tejun Heo259354d2010-03-10 18:56:10 +0900479 return mod->percpu;
480}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900481
Rusty Russell9eb76d72013-07-03 10:06:29 +0930482static int percpu_modalloc(struct module *mod, struct load_info *info)
Tejun Heo259354d2010-03-10 18:56:10 +0900483{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930484 Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu];
485 unsigned long align = pcpusec->sh_addralign;
486
487 if (!pcpusec->sh_size)
488 return 0;
489
Tejun Heofbf59bc2009-02-20 16:29:08 +0900490 if (align > PAGE_SIZE) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800491 pr_warn("%s: per-cpu alignment %li > %li\n",
492 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900493 align = PAGE_SIZE;
494 }
495
Rusty Russell9eb76d72013-07-03 10:06:29 +0930496 mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align);
Tejun Heo259354d2010-03-10 18:56:10 +0900497 if (!mod->percpu) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800498 pr_warn("%s: Could not allocate %lu bytes percpu data\n",
499 mod->name, (unsigned long)pcpusec->sh_size);
Tejun Heo259354d2010-03-10 18:56:10 +0900500 return -ENOMEM;
501 }
Rusty Russell9eb76d72013-07-03 10:06:29 +0930502 mod->percpu_size = pcpusec->sh_size;
Tejun Heo259354d2010-03-10 18:56:10 +0900503 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900504}
505
Tejun Heo259354d2010-03-10 18:56:10 +0900506static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900507{
Tejun Heo259354d2010-03-10 18:56:10 +0900508 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900509}
510
Rusty Russell49668682010-08-05 12:59:10 -0600511static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900512{
Rusty Russell49668682010-08-05 12:59:10 -0600513 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900514}
515
Tejun Heo259354d2010-03-10 18:56:10 +0900516static void percpu_modcopy(struct module *mod,
517 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900518{
519 int cpu;
520
521 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900522 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900523}
524
Tejun Heo10fad5e2010-03-10 18:57:54 +0900525/**
526 * is_module_percpu_address - test whether address is from module static percpu
527 * @addr: address to test
528 *
529 * Test whether @addr belongs to module static percpu area.
530 *
531 * RETURNS:
532 * %true if @addr is from module static percpu area
533 */
534bool is_module_percpu_address(unsigned long addr)
535{
536 struct module *mod;
537 unsigned int cpu;
538
539 preempt_disable();
540
541 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030542 if (mod->state == MODULE_STATE_UNFORMED)
543 continue;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900544 if (!mod->percpu_size)
545 continue;
546 for_each_possible_cpu(cpu) {
547 void *start = per_cpu_ptr(mod->percpu, cpu);
548
549 if ((void *)addr >= start &&
550 (void *)addr < start + mod->percpu_size) {
551 preempt_enable();
552 return true;
553 }
554 }
555 }
556
557 preempt_enable();
558 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700559}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900562
Tejun Heo259354d2010-03-10 18:56:10 +0900563static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 return NULL;
566}
Rusty Russell9eb76d72013-07-03 10:06:29 +0930567static int percpu_modalloc(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930569 /* UP modules shouldn't have this section: ENOMEM isn't quite right */
570 if (info->sechdrs[info->index.pcpu].sh_size != 0)
571 return -ENOMEM;
572 return 0;
Tejun Heo259354d2010-03-10 18:56:10 +0900573}
574static inline void percpu_modfree(struct module *mod)
575{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
Rusty Russell49668682010-08-05 12:59:10 -0600577static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 return 0;
580}
Tejun Heo259354d2010-03-10 18:56:10 +0900581static inline void percpu_modcopy(struct module *mod,
582 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 /* pcpusec should be 0, and size of that section should be 0. */
585 BUG_ON(size != 0);
586}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900587bool is_module_percpu_address(unsigned long addr)
588{
589 return false;
590}
Tejun Heo6b588c12009-02-20 16:29:07 +0900591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592#endif /* CONFIG_SMP */
593
Matt Domschc988d2b2005-06-23 22:05:15 -0700594#define MODINFO_ATTR(field) \
595static void setup_modinfo_##field(struct module *mod, const char *s) \
596{ \
597 mod->field = kstrdup(s, GFP_KERNEL); \
598} \
599static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
Kay Sievers4befb022011-07-24 22:06:04 +0930600 struct module_kobject *mk, char *buffer) \
Matt Domschc988d2b2005-06-23 22:05:15 -0700601{ \
Chen Gangcc56ded2013-08-20 15:34:21 +0930602 return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field); \
Matt Domschc988d2b2005-06-23 22:05:15 -0700603} \
604static int modinfo_##field##_exists(struct module *mod) \
605{ \
606 return mod->field != NULL; \
607} \
608static void free_modinfo_##field(struct module *mod) \
609{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700610 kfree(mod->field); \
611 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700612} \
613static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900614 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700615 .show = show_modinfo_##field, \
616 .setup = setup_modinfo_##field, \
617 .test = modinfo_##field##_exists, \
618 .free = free_modinfo_##field, \
619};
620
621MODINFO_ATTR(version);
622MODINFO_ATTR(srcversion);
623
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100624static char last_unloaded_module[MODULE_NAME_LEN+1];
625
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800626#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400627
628EXPORT_TRACEPOINT_SYMBOL(module_get);
629
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030630/* MODULE_REF_BASE is the base reference count by kmodule loader. */
631#define MODULE_REF_BASE 1
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600634static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030636 /*
637 * Initialize reference counter to MODULE_REF_BASE.
638 * refcnt == 0 means module is going.
639 */
640 atomic_set(&mod->refcnt, MODULE_REF_BASE);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600641
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700642 INIT_LIST_HEAD(&mod->source_list);
643 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* Hold reference count during initialization. */
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030646 atomic_inc(&mod->refcnt);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600647
648 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/* Does a already use b? */
652static int already_uses(struct module *a, struct module *b)
653{
654 struct module_use *use;
655
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700656 list_for_each_entry(use, &b->source_list, source_list) {
657 if (use->source == a) {
Jim Cromie5e124162011-12-06 12:11:31 -0700658 pr_debug("%s uses %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 1;
660 }
661 }
Jim Cromie5e124162011-12-06 12:11:31 -0700662 pr_debug("%s does not use %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return 0;
664}
665
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700666/*
667 * Module a uses b
668 * - we add 'a' as a "source", 'b' as a "target" of module use
669 * - the module_use is added to the list of 'b' sources (so
670 * 'b' can walk the list to see who sourced them), and of 'a'
671 * targets (so 'a' can see what modules it targets).
672 */
673static int add_module_usage(struct module *a, struct module *b)
674{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700675 struct module_use *use;
676
Jim Cromie5e124162011-12-06 12:11:31 -0700677 pr_debug("Allocating new usage for %s.\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700678 use = kmalloc(sizeof(*use), GFP_ATOMIC);
679 if (!use) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800680 pr_warn("%s: out of memory loading\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700681 return -ENOMEM;
682 }
683
684 use->source = a;
685 use->target = b;
686 list_add(&use->source_list, &b->source_list);
687 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700688 return 0;
689}
690
Rusty Russell75676502010-06-05 11:17:36 -0600691/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600692int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600694 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100695
Rusty Russell9bea7f22010-06-05 11:17:37 -0600696 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700697 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700698
Rusty Russell9bea7f22010-06-05 11:17:37 -0600699 /* If module isn't available, we fail. */
700 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500701 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600702 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700704 err = add_module_usage(a, b);
705 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600707 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600711EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713/* Clear the unload stuff of the module. */
714static void module_unload_free(struct module *mod)
715{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700716 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Rusty Russell75676502010-06-05 11:17:36 -0600718 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700719 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
720 struct module *i = use->target;
Jim Cromie5e124162011-12-06 12:11:31 -0700721 pr_debug("%s unusing %s\n", mod->name, i->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700722 module_put(i);
723 list_del(&use->source_list);
724 list_del(&use->target_list);
725 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
Rusty Russell75676502010-06-05 11:17:36 -0600727 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800731static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 int ret = (flags & O_TRUNC);
734 if (ret)
Rusty Russell373d4d02013-01-21 17:17:39 +1030735 add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return ret;
737}
738#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800739static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
741 return 0;
742}
743#endif /* CONFIG_MODULE_FORCE_UNLOAD */
744
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030745/* Try to release refcount of module, 0 means success. */
746static int try_release_module_ref(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030748 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030750 /* Try to decrement refcnt which we set at loading */
751 ret = atomic_sub_return(MODULE_REF_BASE, &mod->refcnt);
752 BUG_ON(ret < 0);
753 if (ret)
754 /* Someone can put this right now, recover with checking */
755 ret = atomic_add_unless(&mod->refcnt, MODULE_REF_BASE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030757 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760static int try_stop_module(struct module *mod, int flags, int *forced)
761{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030762 /* If it's not unused, quit unless we're forcing. */
763 if (try_release_module_ref(mod) != 0) {
764 *forced = try_force_unload(flags);
765 if (!(*forced))
766 return -EWOULDBLOCK;
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030769 /* Mark it as dying. */
770 mod->state = MODULE_STATE_GOING;
771
772 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Rusty Russelld5db1392015-01-22 11:13:14 +1030775/**
776 * module_refcount - return the refcount or -1 if unloading
777 *
778 * @mod: the module we're checking
779 *
780 * Returns:
781 * -1 if the module is in the process of unloading
782 * otherwise the number of references in the kernel to the module
783 */
784int module_refcount(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Rusty Russelld5db1392015-01-22 11:13:14 +1030786 return atomic_read(&mod->refcnt) - MODULE_REF_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788EXPORT_SYMBOL(module_refcount);
789
790/* This exists whether we can unload or not */
791static void free_module(struct module *mod);
792
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100793SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
794 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800797 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int ret, forced = 0;
799
Kees Cook3d433212009-04-02 15:49:29 -0700800 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800801 return -EPERM;
802
803 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
804 return -EFAULT;
805 name[MODULE_NAME_LEN-1] = '\0';
806
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200807 if (mutex_lock_interruptible(&module_mutex) != 0)
808 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 mod = find_module(name);
811 if (!mod) {
812 ret = -ENOENT;
813 goto out;
814 }
815
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700816 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /* Other modules depend on us: get rid of them first. */
818 ret = -EWOULDBLOCK;
819 goto out;
820 }
821
822 /* Doing init or already dying? */
823 if (mod->state != MODULE_STATE_LIVE) {
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930824 /* FIXME: if (force), slam module count damn the torpedoes */
Jim Cromie5e124162011-12-06 12:11:31 -0700825 pr_debug("%s already dying\n", mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 ret = -EBUSY;
827 goto out;
828 }
829
830 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700831 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800832 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (!forced) {
834 /* This module can't be removed */
835 ret = -EBUSY;
836 goto out;
837 }
838 }
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /* Stop the machine so refcounts can't move and disable module. */
841 ret = try_stop_module(mod, flags, &forced);
842 if (ret != 0)
843 goto out;
844
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200845 mutex_unlock(&module_mutex);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300846 /* Final destruction now no one is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200847 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200849 blocking_notifier_call_chain(&module_notify_list,
850 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800851 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600852
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100853 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500854 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Rusty Russell75676502010-06-05 11:17:36 -0600856 free_module(mod);
857 return 0;
858out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800859 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return ret;
861}
862
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800863static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 struct module_use *use;
866 int printed_something = 0;
867
Rusty Russelld5db1392015-01-22 11:13:14 +1030868 seq_printf(m, " %i ", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Ionut Alexa6da0b562014-11-10 09:31:29 +1030870 /*
871 * Always include a trailing , so userspace can differentiate
872 * between this and the old multi-field proc format.
873 */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700874 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700876 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (mod->init != NULL && mod->exit == NULL) {
880 printed_something = 1;
Ionut Alexa6da0b562014-11-10 09:31:29 +1030881 seq_puts(m, "[permanent],");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883
884 if (!printed_something)
Ionut Alexa6da0b562014-11-10 09:31:29 +1030885 seq_puts(m, "-");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
888void __symbol_put(const char *symbol)
889{
890 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Rusty Russell24da1cb2007-07-15 23:41:46 -0700892 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500893 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 BUG();
895 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700896 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898EXPORT_SYMBOL(__symbol_put);
899
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930900/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901void symbol_put_addr(void *addr)
902{
Trent Piepho5e376612006-05-15 09:44:06 -0700903 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930904 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930906 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700907 return;
908
Rusty Russella6e6abd2009-03-31 13:05:31 -0600909 /* module_text_address is safe here: we're supposed to have reference
910 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930911 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600912 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700913 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915EXPORT_SYMBOL_GPL(symbol_put_addr);
916
917static ssize_t show_refcnt(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +0930918 struct module_kobject *mk, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Rusty Russelld5db1392015-01-22 11:13:14 +1030920 return sprintf(buffer, "%i\n", module_refcount(mk->mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
Kay Sieverscca3e702012-01-13 09:32:15 +1030923static struct module_attribute modinfo_refcnt =
924 __ATTR(refcnt, 0444, show_refcnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Steven Rostedtd53799b2012-03-26 12:50:52 +1030926void __module_get(struct module *module)
927{
928 if (module) {
929 preempt_disable();
Masami Hiramatsu2f35c412014-11-10 09:29:29 +1030930 atomic_inc(&module->refcnt);
Steven Rostedtd53799b2012-03-26 12:50:52 +1030931 trace_module_get(module, _RET_IP_);
932 preempt_enable();
933 }
934}
935EXPORT_SYMBOL(__module_get);
936
937bool try_module_get(struct module *module)
938{
939 bool ret = true;
940
941 if (module) {
942 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030943 /* Note: here, we can fail to get a reference */
944 if (likely(module_is_live(module) &&
945 atomic_inc_not_zero(&module->refcnt) != 0))
Steven Rostedtd53799b2012-03-26 12:50:52 +1030946 trace_module_get(module, _RET_IP_);
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030947 else
Steven Rostedtd53799b2012-03-26 12:50:52 +1030948 ret = false;
949
950 preempt_enable();
951 }
952 return ret;
953}
954EXPORT_SYMBOL(try_module_get);
955
Al Virof6a57032006-10-18 01:47:25 -0400956void module_put(struct module *module)
957{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030958 int ret;
959
Al Virof6a57032006-10-18 01:47:25 -0400960 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900961 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030962 ret = atomic_dec_if_positive(&module->refcnt);
963 WARN_ON(ret < 0); /* Failed to put refcount */
Li Zefanae832d12010-03-24 10:57:43 +0800964 trace_module_put(module, _RET_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +0900965 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400966 }
967}
968EXPORT_SYMBOL(module_put);
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800971static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 /* We don't know the usage count, or what modules are using. */
Ionut Alexa6da0b562014-11-10 09:31:29 +1030974 seq_puts(m, " - -");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977static inline void module_unload_free(struct module *mod)
978{
979}
980
Rusty Russell9bea7f22010-06-05 11:17:37 -0600981int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Rusty Russell9bea7f22010-06-05 11:17:37 -0600983 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600985EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600987static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600989 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991#endif /* CONFIG_MODULE_UNLOAD */
992
Kevin Winchester53999bf2012-01-15 19:32:55 -0400993static size_t module_flags_taint(struct module *mod, char *buf)
994{
995 size_t l = 0;
996
997 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
998 buf[l++] = 'P';
999 if (mod->taints & (1 << TAINT_OOT_MODULE))
1000 buf[l++] = 'O';
1001 if (mod->taints & (1 << TAINT_FORCED_MODULE))
1002 buf[l++] = 'F';
1003 if (mod->taints & (1 << TAINT_CRAP))
1004 buf[l++] = 'C';
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10301005 if (mod->taints & (1 << TAINT_UNSIGNED_MODULE))
Rusty Russell57673c22014-03-31 14:39:57 +10301006 buf[l++] = 'E';
Kevin Winchester53999bf2012-01-15 19:32:55 -04001007 /*
1008 * TAINT_FORCED_RMMOD: could be added.
Dave Jones8c904872014-02-26 10:49:49 -05001009 * TAINT_CPU_OUT_OF_SPEC, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
Kevin Winchester53999bf2012-01-15 19:32:55 -04001010 * apply to modules.
1011 */
1012 return l;
1013}
1014
Kay Sievers1f717402006-11-24 12:15:25 +01001015static ssize_t show_initstate(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301016 struct module_kobject *mk, char *buffer)
Kay Sievers1f717402006-11-24 12:15:25 +01001017{
1018 const char *state = "unknown";
1019
Kay Sievers4befb022011-07-24 22:06:04 +09301020 switch (mk->mod->state) {
Kay Sievers1f717402006-11-24 12:15:25 +01001021 case MODULE_STATE_LIVE:
1022 state = "live";
1023 break;
1024 case MODULE_STATE_COMING:
1025 state = "coming";
1026 break;
1027 case MODULE_STATE_GOING:
1028 state = "going";
1029 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301030 default:
1031 BUG();
Kay Sievers1f717402006-11-24 12:15:25 +01001032 }
1033 return sprintf(buffer, "%s\n", state);
1034}
1035
Kay Sieverscca3e702012-01-13 09:32:15 +10301036static struct module_attribute modinfo_initstate =
1037 __ATTR(initstate, 0444, show_initstate, NULL);
Kay Sievers1f717402006-11-24 12:15:25 +01001038
Kay Sievers88bfa322011-07-24 22:06:04 +09301039static ssize_t store_uevent(struct module_attribute *mattr,
1040 struct module_kobject *mk,
1041 const char *buffer, size_t count)
1042{
1043 enum kobject_action action;
1044
1045 if (kobject_action_type(buffer, count, &action) == 0)
1046 kobject_uevent(&mk->kobj, action);
1047 return count;
1048}
1049
Kay Sieverscca3e702012-01-13 09:32:15 +10301050struct module_attribute module_uevent =
1051 __ATTR(uevent, 0200, NULL, store_uevent);
1052
1053static ssize_t show_coresize(struct module_attribute *mattr,
1054 struct module_kobject *mk, char *buffer)
1055{
1056 return sprintf(buffer, "%u\n", mk->mod->core_size);
1057}
1058
1059static struct module_attribute modinfo_coresize =
1060 __ATTR(coresize, 0444, show_coresize, NULL);
1061
1062static ssize_t show_initsize(struct module_attribute *mattr,
1063 struct module_kobject *mk, char *buffer)
1064{
1065 return sprintf(buffer, "%u\n", mk->mod->init_size);
1066}
1067
1068static struct module_attribute modinfo_initsize =
1069 __ATTR(initsize, 0444, show_initsize, NULL);
1070
1071static ssize_t show_taint(struct module_attribute *mattr,
1072 struct module_kobject *mk, char *buffer)
1073{
1074 size_t l;
1075
1076 l = module_flags_taint(mk->mod, buffer);
1077 buffer[l++] = '\n';
1078 return l;
1079}
1080
1081static struct module_attribute modinfo_taint =
1082 __ATTR(taint, 0444, show_taint, NULL);
Kay Sievers88bfa322011-07-24 22:06:04 +09301083
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001084static struct module_attribute *modinfo_attrs[] = {
Kay Sieverscca3e702012-01-13 09:32:15 +10301085 &module_uevent,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001086 &modinfo_version,
1087 &modinfo_srcversion,
Kay Sieverscca3e702012-01-13 09:32:15 +10301088 &modinfo_initstate,
1089 &modinfo_coresize,
1090 &modinfo_initsize,
1091 &modinfo_taint,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001092#ifdef CONFIG_MODULE_UNLOAD
Kay Sieverscca3e702012-01-13 09:32:15 +10301093 &modinfo_refcnt,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001094#endif
1095 NULL,
1096};
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static const char vermagic[] = VERMAGIC_STRING;
1099
Rusty Russellc6e665c2009-03-31 13:05:33 -06001100static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -07001101{
1102#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -07001103 if (!test_taint(TAINT_FORCED_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001104 pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
Rusty Russell373d4d02013-01-21 17:17:39 +10301105 add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds826e4502008-05-04 17:04:16 -07001106 return 0;
1107#else
1108 return -ENOEXEC;
1109#endif
1110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -06001113/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
1114static unsigned long maybe_relocated(unsigned long crc,
1115 const struct module *crc_owner)
1116{
1117#ifdef ARCH_RELOCATES_KCRCTAB
1118 if (crc_owner == NULL)
1119 return crc - (unsigned long)reloc_start;
1120#endif
1121 return crc;
1122}
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124static int check_version(Elf_Shdr *sechdrs,
1125 unsigned int versindex,
1126 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301127 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001128 const unsigned long *crc,
1129 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 unsigned int i, num_versions;
1132 struct modversion_info *versions;
1133
1134 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1135 if (!crc)
1136 return 1;
1137
Rusty Russella5dd6972008-05-09 16:24:21 +10001138 /* No versions at all? modprobe --force does this. */
1139 if (versindex == 0)
1140 return try_to_force_load(mod, symname) == 0;
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 versions = (void *) sechdrs[versindex].sh_addr;
1143 num_versions = sechdrs[versindex].sh_size
1144 / sizeof(struct modversion_info);
1145
1146 for (i = 0; i < num_versions; i++) {
1147 if (strcmp(versions[i].name, symname) != 0)
1148 continue;
1149
Rusty Russelld4703ae2009-12-15 16:28:32 -06001150 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 return 1;
Jim Cromie5e124162011-12-06 12:11:31 -07001152 pr_debug("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -06001153 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001154 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001156
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001157 pr_warn("%s: no symbol version for %s\n", mod->name, symname);
Rusty Russella5dd6972008-05-09 16:24:21 +10001158 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -07001159
1160bad_version:
Ionut Alexa6da0b562014-11-10 09:31:29 +10301161 pr_warn("%s: disagrees about version of symbol %s\n",
Linus Torvalds826e4502008-05-04 17:04:16 -07001162 mod->name, symname);
1163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
1166static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1167 unsigned int versindex,
1168 struct module *mod)
1169{
1170 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Rusty Russell75676502010-06-05 11:17:36 -06001172 /* Since this should be found in kernel (which can't be removed),
1173 * no locking is necessary. */
Rusty Russellb92021b2013-03-15 15:04:17 +10301174 if (!find_symbol(VMLINUX_SYMBOL_STR(module_layout), NULL,
Mike Frysinger6560dc12009-07-23 23:42:08 +09301175 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 BUG();
James Hogana4b6a772013-03-18 19:38:56 +10301177 return check_version(sechdrs, versindex,
1178 VMLINUX_SYMBOL_STR(module_layout), mod, crc,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001179 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
Rusty Russell91e37a72008-05-09 16:25:28 +10001182/* First part is kernel version, which we ignore if module has crcs. */
1183static inline int same_magic(const char *amagic, const char *bmagic,
1184 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Rusty Russell91e37a72008-05-09 16:25:28 +10001186 if (has_crcs) {
1187 amagic += strcspn(amagic, " ");
1188 bmagic += strcspn(bmagic, " ");
1189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return strcmp(amagic, bmagic) == 0;
1191}
1192#else
1193static inline int check_version(Elf_Shdr *sechdrs,
1194 unsigned int versindex,
1195 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301196 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001197 const unsigned long *crc,
1198 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 return 1;
1201}
1202
1203static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1204 unsigned int versindex,
1205 struct module *mod)
1206{
1207 return 1;
1208}
1209
Rusty Russell91e37a72008-05-09 16:25:28 +10001210static inline int same_magic(const char *amagic, const char *bmagic,
1211 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 return strcmp(amagic, bmagic) == 0;
1214}
1215#endif /* CONFIG_MODVERSIONS */
1216
Rusty Russell75676502010-06-05 11:17:36 -06001217/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001218static const struct kernel_symbol *resolve_symbol(struct module *mod,
1219 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001220 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001221 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001224 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 const unsigned long *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001226 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Rusty Russell75676502010-06-05 11:17:36 -06001228 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001229 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001230 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001231 if (!sym)
1232 goto unlock;
1233
Rusty Russell49668682010-08-05 12:59:10 -06001234 if (!check_version(info->sechdrs, info->index.vers, name, mod, crc,
1235 owner)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001236 sym = ERR_PTR(-EINVAL);
1237 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001239
1240 err = ref_module(mod, owner);
1241 if (err) {
1242 sym = ERR_PTR(err);
1243 goto getname;
1244 }
1245
1246getname:
1247 /* We must make copy under the lock if we failed to get ref. */
1248 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1249unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001250 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001251 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
Rusty Russell49668682010-08-05 12:59:10 -06001254static const struct kernel_symbol *
1255resolve_symbol_wait(struct module *mod,
1256 const struct load_info *info,
1257 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001258{
1259 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001260 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001261
1262 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001263 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1264 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001265 30 * HZ) <= 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001266 pr_warn("%s: gave up waiting for init of module %s.\n",
1267 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001268 }
1269 return ksym;
1270}
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272/*
1273 * /sys/module/foo/sections stuff
1274 * J. Corbet <corbet@lwn.net>
1275 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001276#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001277
Rusty Russell8f6d0372010-08-05 12:59:09 -06001278#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001279static inline bool sect_empty(const Elf_Shdr *sect)
1280{
1281 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1282}
1283
Ionut Alexa6da0b562014-11-10 09:31:29 +10301284struct module_sect_attr {
Rusty Russella58730c2008-03-13 09:03:44 +00001285 struct module_attribute mattr;
1286 char *name;
1287 unsigned long address;
1288};
1289
Ionut Alexa6da0b562014-11-10 09:31:29 +10301290struct module_sect_attrs {
Rusty Russella58730c2008-03-13 09:03:44 +00001291 struct attribute_group grp;
1292 unsigned int nsections;
1293 struct module_sect_attr attrs[0];
1294};
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296static ssize_t module_sect_show(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301297 struct module_kobject *mk, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
1299 struct module_sect_attr *sattr =
1300 container_of(mattr, struct module_sect_attr, mattr);
Kees Cook9f36e2c2011-03-22 16:34:22 -07001301 return sprintf(buf, "0x%pK\n", (void *)sattr->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001304static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1305{
Rusty Russella58730c2008-03-13 09:03:44 +00001306 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001307
1308 for (section = 0; section < sect_attrs->nsections; section++)
1309 kfree(sect_attrs->attrs[section].name);
1310 kfree(sect_attrs);
1311}
1312
Rusty Russell8f6d0372010-08-05 12:59:09 -06001313static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
1315 unsigned int nloaded = 0, i, size[2];
1316 struct module_sect_attrs *sect_attrs;
1317 struct module_sect_attr *sattr;
1318 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001321 for (i = 0; i < info->hdr->e_shnum; i++)
1322 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 nloaded++;
1324 size[0] = ALIGN(sizeof(*sect_attrs)
1325 + nloaded * sizeof(sect_attrs->attrs[0]),
1326 sizeof(sect_attrs->grp.attrs[0]));
1327 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001328 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1329 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return;
1331
1332 /* Setup section attributes. */
1333 sect_attrs->grp.name = "sections";
1334 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1335
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001336 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 sattr = &sect_attrs->attrs[0];
1338 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001339 for (i = 0; i < info->hdr->e_shnum; i++) {
1340 Elf_Shdr *sec = &info->sechdrs[i];
1341 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001342 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001343 sattr->address = sec->sh_addr;
1344 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001345 GFP_KERNEL);
1346 if (sattr->name == NULL)
1347 goto out;
1348 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001349 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 sattr->mattr.show = module_sect_show;
1351 sattr->mattr.store = NULL;
1352 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 sattr->mattr.attr.mode = S_IRUGO;
1354 *(gattr++) = &(sattr++)->mattr.attr;
1355 }
1356 *gattr = NULL;
1357
1358 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1359 goto out;
1360
1361 mod->sect_attrs = sect_attrs;
1362 return;
1363 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001364 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
1367static void remove_sect_attrs(struct module *mod)
1368{
1369 if (mod->sect_attrs) {
1370 sysfs_remove_group(&mod->mkobj.kobj,
1371 &mod->sect_attrs->grp);
1372 /* We are positive that no one is using any sect attrs
1373 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001374 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 mod->sect_attrs = NULL;
1376 }
1377}
1378
Roland McGrath6d760132007-10-16 23:26:40 -07001379/*
1380 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1381 */
1382
1383struct module_notes_attrs {
1384 struct kobject *dir;
1385 unsigned int notes;
1386 struct bin_attribute attrs[0];
1387};
1388
Chris Wright2c3c8be2010-05-12 18:28:57 -07001389static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001390 struct bin_attribute *bin_attr,
1391 char *buf, loff_t pos, size_t count)
1392{
1393 /*
1394 * The caller checked the pos and count against our size.
1395 */
1396 memcpy(buf, bin_attr->private + pos, count);
1397 return count;
1398}
1399
1400static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1401 unsigned int i)
1402{
1403 if (notes_attrs->dir) {
1404 while (i-- > 0)
1405 sysfs_remove_bin_file(notes_attrs->dir,
1406 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001407 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001408 }
1409 kfree(notes_attrs);
1410}
1411
Rusty Russell8f6d0372010-08-05 12:59:09 -06001412static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001413{
1414 unsigned int notes, loaded, i;
1415 struct module_notes_attrs *notes_attrs;
1416 struct bin_attribute *nattr;
1417
Ingo Molnarea6bff32009-08-28 10:44:56 +02001418 /* failed to create section attributes, so can't create notes */
1419 if (!mod->sect_attrs)
1420 return;
1421
Roland McGrath6d760132007-10-16 23:26:40 -07001422 /* Count notes sections and allocate structures. */
1423 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001424 for (i = 0; i < info->hdr->e_shnum; i++)
1425 if (!sect_empty(&info->sechdrs[i]) &&
1426 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001427 ++notes;
1428
1429 if (notes == 0)
1430 return;
1431
1432 notes_attrs = kzalloc(sizeof(*notes_attrs)
1433 + notes * sizeof(notes_attrs->attrs[0]),
1434 GFP_KERNEL);
1435 if (notes_attrs == NULL)
1436 return;
1437
1438 notes_attrs->notes = notes;
1439 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001440 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1441 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001442 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001443 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001444 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001445 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1446 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001447 nattr->size = info->sechdrs[i].sh_size;
1448 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001449 nattr->read = module_notes_read;
1450 ++nattr;
1451 }
1452 ++loaded;
1453 }
1454
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001455 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001456 if (!notes_attrs->dir)
1457 goto out;
1458
1459 for (i = 0; i < notes; ++i)
1460 if (sysfs_create_bin_file(notes_attrs->dir,
1461 &notes_attrs->attrs[i]))
1462 goto out;
1463
1464 mod->notes_attrs = notes_attrs;
1465 return;
1466
1467 out:
1468 free_notes_attrs(notes_attrs, i);
1469}
1470
1471static void remove_notes_attrs(struct module *mod)
1472{
1473 if (mod->notes_attrs)
1474 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1475}
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001478
Rusty Russell8f6d0372010-08-05 12:59:09 -06001479static inline void add_sect_attrs(struct module *mod,
1480 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482}
1483
1484static inline void remove_sect_attrs(struct module *mod)
1485{
1486}
Roland McGrath6d760132007-10-16 23:26:40 -07001487
Rusty Russell8f6d0372010-08-05 12:59:09 -06001488static inline void add_notes_attrs(struct module *mod,
1489 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001490{
1491}
1492
1493static inline void remove_notes_attrs(struct module *mod)
1494{
1495}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001496#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001498static void add_usage_links(struct module *mod)
1499{
1500#ifdef CONFIG_MODULE_UNLOAD
1501 struct module_use *use;
1502 int nowarn;
1503
Rusty Russell75676502010-06-05 11:17:36 -06001504 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001505 list_for_each_entry(use, &mod->target_list, target_list) {
1506 nowarn = sysfs_create_link(use->target->holders_dir,
1507 &mod->mkobj.kobj, mod->name);
1508 }
Rusty Russell75676502010-06-05 11:17:36 -06001509 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001510#endif
1511}
1512
1513static void del_usage_links(struct module *mod)
1514{
1515#ifdef CONFIG_MODULE_UNLOAD
1516 struct module_use *use;
1517
Rusty Russell75676502010-06-05 11:17:36 -06001518 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001519 list_for_each_entry(use, &mod->target_list, target_list)
1520 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001521 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001522#endif
1523}
1524
Rusty Russell6407ebb22010-06-05 11:17:36 -06001525static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001526{
1527 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001528 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001529 int error = 0;
1530 int i;
1531
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001532 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1533 (ARRAY_SIZE(modinfo_attrs) + 1)),
1534 GFP_KERNEL);
1535 if (!mod->modinfo_attrs)
1536 return -ENOMEM;
1537
1538 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001539 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1540 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001541 (attr->test && attr->test(mod))) {
1542 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001543 sysfs_attr_init(&temp_attr->attr);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301544 error = sysfs_create_file(&mod->mkobj.kobj,
1545 &temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001546 ++temp_attr;
1547 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001548 }
1549 return error;
1550}
1551
Rusty Russell6407ebb22010-06-05 11:17:36 -06001552static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001553{
1554 struct module_attribute *attr;
1555 int i;
1556
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001557 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1558 /* pick a field to test for end of list */
1559 if (!attr->attr.name)
1560 break;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301561 sysfs_remove_file(&mod->mkobj.kobj, &attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001562 if (attr->free)
1563 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001564 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001565 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001566}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Li Zhong942e4432013-09-03 16:33:57 +09301568static void mod_kobject_put(struct module *mod)
1569{
1570 DECLARE_COMPLETION_ONSTACK(c);
1571 mod->mkobj.kobj_completion = &c;
1572 kobject_put(&mod->mkobj.kobj);
1573 wait_for_completion(&c);
1574}
1575
Rusty Russell6407ebb22010-06-05 11:17:36 -06001576static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
1578 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001579 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001581 if (!module_sysfs_initialized) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001582 pr_err("%s: module sysfs not initialized\n", mod->name);
Ed Swierk1cc5f712006-09-25 16:25:36 -07001583 err = -EINVAL;
1584 goto out;
1585 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001586
1587 kobj = kset_find_obj(module_kset, mod->name);
1588 if (kobj) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001589 pr_err("%s: module is already loaded\n", mod->name);
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001590 kobject_put(kobj);
1591 err = -EINVAL;
1592 goto out;
1593 }
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001596
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001597 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1598 mod->mkobj.kobj.kset = module_kset;
1599 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1600 "%s", mod->name);
1601 if (err)
Li Zhong942e4432013-09-03 16:33:57 +09301602 mod_kobject_put(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001603
Kay Sievers97c146e2007-11-29 23:46:11 +01001604 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001605out:
1606 return err;
1607}
1608
Rusty Russell6407ebb22010-06-05 11:17:36 -06001609static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001610 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001611 struct kernel_param *kparam,
1612 unsigned int num_params)
1613{
1614 int err;
1615
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001616 err = mod_sysfs_init(mod);
1617 if (err)
1618 goto out;
1619
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001620 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001621 if (!mod->holders_dir) {
1622 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001623 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001624 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 err = module_param_sysfs_setup(mod, kparam, num_params);
1627 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001628 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Matt Domschc988d2b2005-06-23 22:05:15 -07001630 err = module_add_modinfo_attrs(mod);
1631 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001632 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001633
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001634 add_usage_links(mod);
Rusty Russell8f6d0372010-08-05 12:59:09 -06001635 add_sect_attrs(mod, info);
1636 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001637
Kay Sieverse17e0f52006-11-24 12:15:25 +01001638 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return 0;
1640
Kay Sieverse17e0f52006-11-24 12:15:25 +01001641out_unreg_param:
1642 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001643out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001644 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001645out_unreg:
Li Zhong942e4432013-09-03 16:33:57 +09301646 mod_kobject_put(mod);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001647out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return err;
1649}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001650
1651static void mod_sysfs_fini(struct module *mod)
1652{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001653 remove_notes_attrs(mod);
1654 remove_sect_attrs(mod);
Li Zhong942e4432013-09-03 16:33:57 +09301655 mod_kobject_put(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001656}
1657
Rusty Russell8f6d0372010-08-05 12:59:09 -06001658#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001659
Rusty Russell8f6d0372010-08-05 12:59:09 -06001660static int mod_sysfs_setup(struct module *mod,
1661 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001662 struct kernel_param *kparam,
1663 unsigned int num_params)
1664{
1665 return 0;
1666}
1667
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001668static void mod_sysfs_fini(struct module *mod)
1669{
1670}
1671
Rusty Russell36b03602010-08-05 12:59:09 -06001672static void module_remove_modinfo_attrs(struct module *mod)
1673{
1674}
1675
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001676static void del_usage_links(struct module *mod)
1677{
1678}
1679
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001680#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Rusty Russell36b03602010-08-05 12:59:09 -06001682static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001684 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001685 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001687 kobject_put(mod->mkobj.drivers_dir);
1688 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001689 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
1691
matthieu castet84e1c6b2010-11-16 22:35:16 +01001692#ifdef CONFIG_DEBUG_SET_MODULE_RONX
1693/*
1694 * LKM RO/NX protection: protect module's text/ro-data
1695 * from modification and any data from execution.
1696 */
1697void set_page_attributes(void *start, void *end, int (*set)(unsigned long start, int num_pages))
1698{
1699 unsigned long begin_pfn = PFN_DOWN((unsigned long)start);
1700 unsigned long end_pfn = PFN_DOWN((unsigned long)end);
1701
1702 if (end_pfn > begin_pfn)
1703 set(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1704}
1705
1706static void set_section_ro_nx(void *base,
1707 unsigned long text_size,
1708 unsigned long ro_size,
1709 unsigned long total_size)
1710{
1711 /* begin and end PFNs of the current subsection */
1712 unsigned long begin_pfn;
1713 unsigned long end_pfn;
1714
1715 /*
1716 * Set RO for module text and RO-data:
1717 * - Always protect first page.
1718 * - Do not protect last partial page.
1719 */
1720 if (ro_size > 0)
1721 set_page_attributes(base, base + ro_size, set_memory_ro);
1722
1723 /*
1724 * Set NX permissions for module data:
1725 * - Do not protect first partial page.
1726 * - Always protect last page.
1727 */
1728 if (total_size > text_size) {
1729 begin_pfn = PFN_UP((unsigned long)base + text_size);
1730 end_pfn = PFN_UP((unsigned long)base + total_size);
1731 if (end_pfn > begin_pfn)
1732 set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1733 }
1734}
1735
Jan Glauber01526ed2011-05-19 16:55:26 -06001736static void unset_module_core_ro_nx(struct module *mod)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001737{
Jan Glauber01526ed2011-05-19 16:55:26 -06001738 set_page_attributes(mod->module_core + mod->core_text_size,
1739 mod->module_core + mod->core_size,
1740 set_memory_x);
1741 set_page_attributes(mod->module_core,
1742 mod->module_core + mod->core_ro_size,
1743 set_memory_rw);
1744}
1745
1746static void unset_module_init_ro_nx(struct module *mod)
1747{
1748 set_page_attributes(mod->module_init + mod->init_text_size,
1749 mod->module_init + mod->init_size,
1750 set_memory_x);
1751 set_page_attributes(mod->module_init,
1752 mod->module_init + mod->init_ro_size,
1753 set_memory_rw);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001754}
1755
1756/* Iterate through all modules and set each module's text as RW */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001757void set_all_modules_text_rw(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001758{
1759 struct module *mod;
1760
1761 mutex_lock(&module_mutex);
1762 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301763 if (mod->state == MODULE_STATE_UNFORMED)
1764 continue;
matthieu castet84e1c6b2010-11-16 22:35:16 +01001765 if ((mod->module_core) && (mod->core_text_size)) {
1766 set_page_attributes(mod->module_core,
1767 mod->module_core + mod->core_text_size,
1768 set_memory_rw);
1769 }
1770 if ((mod->module_init) && (mod->init_text_size)) {
1771 set_page_attributes(mod->module_init,
1772 mod->module_init + mod->init_text_size,
1773 set_memory_rw);
1774 }
1775 }
1776 mutex_unlock(&module_mutex);
1777}
1778
1779/* Iterate through all modules and set each module's text as RO */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001780void set_all_modules_text_ro(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001781{
1782 struct module *mod;
1783
1784 mutex_lock(&module_mutex);
1785 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301786 if (mod->state == MODULE_STATE_UNFORMED)
1787 continue;
matthieu castet84e1c6b2010-11-16 22:35:16 +01001788 if ((mod->module_core) && (mod->core_text_size)) {
1789 set_page_attributes(mod->module_core,
1790 mod->module_core + mod->core_text_size,
1791 set_memory_ro);
1792 }
1793 if ((mod->module_init) && (mod->init_text_size)) {
1794 set_page_attributes(mod->module_init,
1795 mod->module_init + mod->init_text_size,
1796 set_memory_ro);
1797 }
1798 }
1799 mutex_unlock(&module_mutex);
1800}
1801#else
1802static inline void set_section_ro_nx(void *base, unsigned long text_size, unsigned long ro_size, unsigned long total_size) { }
Jan Glauber01526ed2011-05-19 16:55:26 -06001803static void unset_module_core_ro_nx(struct module *mod) { }
1804static void unset_module_init_ro_nx(struct module *mod) { }
matthieu castet84e1c6b2010-11-16 22:35:16 +01001805#endif
1806
Rusty Russellbe1f2212015-01-20 09:07:05 +10301807void __weak module_memfree(void *module_region)
Jonas Bonn74e08fc2011-06-30 21:22:11 +02001808{
1809 vfree(module_region);
1810}
1811
1812void __weak module_arch_cleanup(struct module *mod)
1813{
1814}
1815
Rusty Russelld453cde2015-01-20 09:07:04 +10301816void __weak module_arch_freeing_init(struct module *mod)
1817{
1818}
1819
Rusty Russell75676502010-06-05 11:17:36 -06001820/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821static void free_module(struct module *mod)
1822{
Li Zefan7ead8b82009-08-17 16:56:28 +08001823 trace_module_free(mod);
1824
Rusty Russell36b03602010-08-05 12:59:09 -06001825 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Rusty Russell944a1fa2013-04-17 13:20:03 +09301827 /* We leave it in list to prevent duplicate loads, but make sure
1828 * that noone uses it while it's being deconstructed. */
Prarit Bhargavad3051b42014-10-14 02:51:39 +10301829 mutex_lock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09301830 mod->state = MODULE_STATE_UNFORMED;
Prarit Bhargavad3051b42014-10-14 02:51:39 +10301831 mutex_unlock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09301832
Jason Baronb82bab4b2010-07-27 13:18:01 -07001833 /* Remove dynamic debug info */
1834 ddebug_remove_module(mod->name);
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 /* Arch-specific cleanup. */
1837 module_arch_cleanup(mod);
1838
1839 /* Module unload stuff */
1840 module_unload_free(mod);
1841
Rusty Russelle180a6b2009-03-31 13:05:29 -06001842 /* Free any allocated parameters. */
1843 destroy_params(mod->kp, mod->num_kp);
1844
Rusty Russell944a1fa2013-04-17 13:20:03 +09301845 /* Now we can delete it from the lists */
1846 mutex_lock(&module_mutex);
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10301847 /* Unlink carefully: kallsyms could be walking list. */
1848 list_del_rcu(&mod->list);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10301849 /* Remove this module from bug list, this uses list_del_rcu */
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10301850 module_bug_cleanup(mod);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10301851 /* Wait for RCU synchronizing before releasing mod->list and buglist. */
1852 synchronize_rcu();
Rusty Russell944a1fa2013-04-17 13:20:03 +09301853 mutex_unlock(&module_mutex);
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 /* This may be NULL, but that's OK */
Jan Glauber01526ed2011-05-19 16:55:26 -06001856 unset_module_init_ro_nx(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10301857 module_arch_freeing_init(mod);
Rusty Russellbe1f2212015-01-20 09:07:05 +10301858 module_memfree(mod->module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001860 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001861
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001862 /* Free lock-classes: */
1863 lockdep_free_key_range(mod->module_core, mod->core_size);
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 /* Finally, free the core (containing the module structure) */
Jan Glauber01526ed2011-05-19 16:55:26 -06001866 unset_module_core_ro_nx(mod);
Rusty Russellbe1f2212015-01-20 09:07:05 +10301867 module_memfree(mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001868
1869#ifdef CONFIG_MPU
1870 update_protections(current->mm);
1871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
1874void *__symbol_get(const char *symbol)
1875{
1876 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001877 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Rusty Russell24da1cb2007-07-15 23:41:46 -07001879 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001880 sym = find_symbol(symbol, &owner, NULL, true, true);
1881 if (sym && strong_try_module_get(owner))
1882 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001883 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Tim Abbott414fd312008-12-05 19:03:56 -05001885 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886}
1887EXPORT_SYMBOL_GPL(__symbol_get);
1888
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001889/*
1890 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001891 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06001892 *
1893 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001894 */
1895static int verify_export_symbols(struct module *mod)
1896{
Rusty Russellb2111042008-05-01 21:15:00 -05001897 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001898 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001899 const struct kernel_symbol *s;
1900 struct {
1901 const struct kernel_symbol *sym;
1902 unsigned int num;
1903 } arr[] = {
1904 { mod->syms, mod->num_syms },
1905 { mod->gpl_syms, mod->num_gpl_syms },
1906 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001907#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001908 { mod->unused_syms, mod->num_unused_syms },
1909 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001910#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001911 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001912
Rusty Russellb2111042008-05-01 21:15:00 -05001913 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1914 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06001915 if (find_symbol(s->name, &owner, NULL, true, false)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001916 pr_err("%s: exports duplicate symbol %s"
Rusty Russellb2111042008-05-01 21:15:00 -05001917 " (owned by %s)\n",
1918 mod->name, s->name, module_name(owner));
1919 return -ENOEXEC;
1920 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001921 }
Rusty Russellb2111042008-05-01 21:15:00 -05001922 }
1923 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001924}
1925
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001926/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06001927static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
Rusty Russell49668682010-08-05 12:59:10 -06001929 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
1930 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06001932 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001934 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Rusty Russell49668682010-08-05 12:59:10 -06001936 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
1937 const char *name = info->strtab + sym[i].st_name;
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 switch (sym[i].st_shndx) {
1940 case SHN_COMMON:
Joe Mario80375982014-02-08 09:01:09 +01001941 /* Ignore common symbols */
1942 if (!strncmp(name, "__gnu_lto", 9))
1943 break;
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 /* We compiled with -fno-common. These are not
1946 supposed to happen. */
Jim Cromie5e124162011-12-06 12:11:31 -07001947 pr_debug("Common symbol: %s\n", name);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301948 pr_warn("%s: please compile with -fno-common\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 mod->name);
1950 ret = -ENOEXEC;
1951 break;
1952
1953 case SHN_ABS:
1954 /* Don't need to do anything */
Jim Cromie5e124162011-12-06 12:11:31 -07001955 pr_debug("Absolute symbol: 0x%08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 (long)sym[i].st_value);
1957 break;
1958
1959 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06001960 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001962 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05001963 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001965 }
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001968 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 break;
1970
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001971 pr_warn("%s: Unknown symbol %s (err %li)\n",
1972 mod->name, name, PTR_ERR(ksym));
Rusty Russell9bea7f22010-06-05 11:17:37 -06001973 ret = PTR_ERR(ksym) ?: -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 break;
1975
1976 default:
1977 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06001978 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09001979 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 else
Rusty Russell49668682010-08-05 12:59:10 -06001981 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 sym[i].st_value += secbase;
1983 break;
1984 }
1985 }
1986
1987 return ret;
1988}
1989
Rusty Russell49668682010-08-05 12:59:10 -06001990static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06001991{
1992 unsigned int i;
1993 int err = 0;
1994
1995 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06001996 for (i = 1; i < info->hdr->e_shnum; i++) {
1997 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06001998
1999 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06002000 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06002001 continue;
2002
2003 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06002004 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06002005 continue;
2006
Rusty Russell49668682010-08-05 12:59:10 -06002007 if (info->sechdrs[i].sh_type == SHT_REL)
2008 err = apply_relocate(info->sechdrs, info->strtab,
2009 info->index.sym, i, mod);
2010 else if (info->sechdrs[i].sh_type == SHT_RELA)
2011 err = apply_relocate_add(info->sechdrs, info->strtab,
2012 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002013 if (err < 0)
2014 break;
2015 }
2016 return err;
2017}
2018
Helge Deller088af9a2008-12-31 12:31:18 +01002019/* Additional bytes needed by arch in front of individual sections */
2020unsigned int __weak arch_mod_section_prepend(struct module *mod,
2021 unsigned int section)
2022{
2023 /* default implementation just returns zero */
2024 return 0;
2025}
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01002028static long get_offset(struct module *mod, unsigned int *size,
2029 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
2031 long ret;
2032
Helge Deller088af9a2008-12-31 12:31:18 +01002033 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2035 *size = ret + sechdr->sh_size;
2036 return ret;
2037}
2038
2039/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2040 might -- code, read-only data, read-write data, small data. Tally
2041 sizes, and place the offsets into sh_entsize fields: high bit means it
2042 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06002043static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
2045 static unsigned long const masks[][2] = {
2046 /* NOTE: all executable code must be the first section
2047 * in this array; otherwise modify the text_size
2048 * finder in the two loops below */
2049 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2050 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
2051 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2052 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2053 };
2054 unsigned int m, i;
2055
Rusty Russell49668682010-08-05 12:59:10 -06002056 for (i = 0; i < info->hdr->e_shnum; i++)
2057 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Jim Cromie5e124162011-12-06 12:11:31 -07002059 pr_debug("Core section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002061 for (i = 0; i < info->hdr->e_shnum; ++i) {
2062 Elf_Shdr *s = &info->sechdrs[i];
2063 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2066 || (s->sh_flags & masks[m][1])
2067 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002068 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002070 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
Jim Cromie5e124162011-12-06 12:11:31 -07002071 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002073 switch (m) {
2074 case 0: /* executable */
2075 mod->core_size = debug_align(mod->core_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 mod->core_text_size = mod->core_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002077 break;
2078 case 1: /* RO: text and ro-data */
2079 mod->core_size = debug_align(mod->core_size);
2080 mod->core_ro_size = mod->core_size;
2081 break;
2082 case 3: /* whole core */
2083 mod->core_size = debug_align(mod->core_size);
2084 break;
2085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
2087
Jim Cromie5e124162011-12-06 12:11:31 -07002088 pr_debug("Init section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002090 for (i = 0; i < info->hdr->e_shnum; ++i) {
2091 Elf_Shdr *s = &info->sechdrs[i];
2092 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2095 || (s->sh_flags & masks[m][1])
2096 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002097 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002099 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 | INIT_OFFSET_MASK);
Jim Cromie5e124162011-12-06 12:11:31 -07002101 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002103 switch (m) {
2104 case 0: /* executable */
2105 mod->init_size = debug_align(mod->init_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 mod->init_text_size = mod->init_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002107 break;
2108 case 1: /* RO: text and ro-data */
2109 mod->init_size = debug_align(mod->init_size);
2110 mod->init_ro_size = mod->init_size;
2111 break;
2112 case 3: /* whole init */
2113 mod->init_size = debug_align(mod->init_size);
2114 break;
2115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117}
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119static void set_license(struct module *mod, const char *license)
2120{
2121 if (!license)
2122 license = "unspecified";
2123
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002124 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07002125 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002126 pr_warn("%s: module license '%s' taints kernel.\n",
2127 mod->name, license);
Rusty Russell373d4d02013-01-21 17:17:39 +10302128 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2129 LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 }
2131}
2132
2133/* Parse tag=value strings from .modinfo section */
2134static char *next_string(char *string, unsigned long *secsize)
2135{
2136 /* Skip non-zero chars */
2137 while (string[0]) {
2138 string++;
2139 if ((*secsize)-- <= 1)
2140 return NULL;
2141 }
2142
2143 /* Skip any zero padding. */
2144 while (!string[0]) {
2145 string++;
2146 if ((*secsize)-- <= 1)
2147 return NULL;
2148 }
2149 return string;
2150}
2151
Rusty Russell49668682010-08-05 12:59:10 -06002152static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
2154 char *p;
2155 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06002156 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2157 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Rusty Russell49668682010-08-05 12:59:10 -06002159 for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2161 return p + taglen + 1;
2162 }
2163 return NULL;
2164}
2165
Rusty Russell49668682010-08-05 12:59:10 -06002166static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07002167{
2168 struct module_attribute *attr;
2169 int i;
2170
2171 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2172 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06002173 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07002174 }
2175}
Matt Domschc988d2b2005-06-23 22:05:15 -07002176
Rusty Russella263f772009-09-25 00:32:58 -06002177static void free_modinfo(struct module *mod)
2178{
2179 struct module_attribute *attr;
2180 int i;
2181
2182 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2183 if (attr->free)
2184 attr->free(mod);
2185 }
2186}
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01002189
2190/* lookup symbol in given range of kernel_symbols */
2191static const struct kernel_symbol *lookup_symbol(const char *name,
2192 const struct kernel_symbol *start,
2193 const struct kernel_symbol *stop)
2194{
Alessio Igor Bogani9d634872011-05-18 22:35:59 +02002195 return bsearch(name, start, stop - start,
2196 sizeof(struct kernel_symbol), cmp_name);
WANG Cong15bba372008-07-24 15:41:48 +01002197}
2198
Tim Abbottca4787b2009-01-05 08:40:10 -06002199static int is_exported(const char *name, unsigned long value,
2200 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
Tim Abbottca4787b2009-01-05 08:40:10 -06002202 const struct kernel_symbol *ks;
2203 if (!mod)
2204 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01002205 else
Tim Abbottca4787b2009-01-05 08:40:10 -06002206 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
2207 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
2209
2210/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06002211static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
Rusty Russelleded41c2010-08-05 12:59:07 -06002213 const Elf_Shdr *sechdrs = info->sechdrs;
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2216 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2217 return 'v';
2218 else
2219 return 'w';
2220 }
2221 if (sym->st_shndx == SHN_UNDEF)
2222 return 'U';
2223 if (sym->st_shndx == SHN_ABS)
2224 return 'a';
2225 if (sym->st_shndx >= SHN_LORESERVE)
2226 return '?';
2227 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2228 return 't';
2229 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2230 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2231 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2232 return 'r';
2233 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2234 return 'g';
2235 else
2236 return 'd';
2237 }
2238 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2239 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2240 return 's';
2241 else
2242 return 'b';
2243 }
Rusty Russelleded41c2010-08-05 12:59:07 -06002244 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2245 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06002247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 return '?';
2249}
2250
Jan Beulich4a496222009-07-06 14:50:42 +01002251static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
Ionut Alexa6da0b562014-11-10 09:31:29 +10302252 unsigned int shnum)
Jan Beulich4a496222009-07-06 14:50:42 +01002253{
2254 const Elf_Shdr *sec;
2255
2256 if (src->st_shndx == SHN_UNDEF
2257 || src->st_shndx >= shnum
2258 || !src->st_name)
2259 return false;
2260
2261 sec = sechdrs + src->st_shndx;
2262 if (!(sec->sh_flags & SHF_ALLOC)
2263#ifndef CONFIG_KALLSYMS_ALL
2264 || !(sec->sh_flags & SHF_EXECINSTR)
2265#endif
2266 || (sec->sh_entsize & INIT_OFFSET_MASK))
2267 return false;
2268
2269 return true;
2270}
2271
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302272/*
2273 * We only allocate and copy the strings needed by the parts of symtab
2274 * we keep. This is simple, but has the effect of making multiple
2275 * copies of duplicates. We could be more sophisticated, see
2276 * linux-kernel thread starting with
2277 * <73defb5e4bca04a6431392cc341112b1@localhost>.
2278 */
Rusty Russell49668682010-08-05 12:59:10 -06002279static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002280{
Rusty Russell49668682010-08-05 12:59:10 -06002281 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2282 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01002283 const Elf_Sym *src;
Satoru Takeuchi54523ec2012-12-05 12:29:04 +10302284 unsigned int i, nsrc, ndst, strtab_size = 0;
Jan Beulich4a496222009-07-06 14:50:42 +01002285
2286 /* Put symbol section at end of init part of module. */
2287 symsect->sh_flags |= SHF_ALLOC;
2288 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06002289 info->index.sym) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002290 pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002291
Rusty Russell49668682010-08-05 12:59:10 -06002292 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002293 nsrc = symsect->sh_size / sizeof(*src);
Kevin Cernekee70b1e9162011-11-12 19:08:55 -08002294
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302295 /* Compute total space required for the core symbols' strtab. */
Rusty Russell59ef28b2012-10-25 10:49:25 +10302296 for (ndst = i = 0; i < nsrc; i++) {
2297 if (i == 0 ||
2298 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2299 strtab_size += strlen(&info->strtab[src[i].st_name])+1;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302300 ndst++;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002301 }
Rusty Russell59ef28b2012-10-25 10:49:25 +10302302 }
Jan Beulich4a496222009-07-06 14:50:42 +01002303
2304 /* Append room for core symbols at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06002305 info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302306 info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
2307 mod->core_size += strtab_size;
Jan Beulich4a496222009-07-06 14:50:42 +01002308
Jan Beulich554bdfe2009-07-06 14:51:44 +01002309 /* Put string table section at end of init part of module. */
2310 strsect->sh_flags |= SHF_ALLOC;
2311 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06002312 info->index.str) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002313 pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002314}
2315
Rusty Russell811d66a2010-08-05 12:59:12 -06002316static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
Jan Beulich4a496222009-07-06 14:50:42 +01002318 unsigned int i, ndst;
2319 const Elf_Sym *src;
2320 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002321 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002322 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Rusty Russelleded41c2010-08-05 12:59:07 -06002324 mod->symtab = (void *)symsec->sh_addr;
2325 mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002326 /* Make sure we get permanent strtab: don't use info->strtab. */
2327 mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
2329 /* Set types up while we still have access to sections. */
2330 for (i = 0; i < mod->num_symtab; i++)
Rusty Russelleded41c2010-08-05 12:59:07 -06002331 mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002332
Rusty Russelld9131882010-08-05 12:59:08 -06002333 mod->core_symtab = dst = mod->module_core + info->symoffs;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302334 mod->core_strtab = s = mod->module_core + info->stroffs;
Jan Beulich4a496222009-07-06 14:50:42 +01002335 src = mod->symtab;
Rusty Russell59ef28b2012-10-25 10:49:25 +10302336 for (ndst = i = 0; i < mod->num_symtab; i++) {
2337 if (i == 0 ||
2338 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2339 dst[ndst] = src[i];
2340 dst[ndst++].st_name = s - mod->core_strtab;
2341 s += strlcpy(s, &mod->strtab[src[i].st_name],
2342 KSYM_NAME_LEN) + 1;
2343 }
Jan Beulich4a496222009-07-06 14:50:42 +01002344 }
2345 mod->core_num_syms = ndst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346}
2347#else
Rusty Russell49668682010-08-05 12:59:10 -06002348static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002349{
2350}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002351
Michał Mirosławabbce902010-09-20 01:58:08 +02002352static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353{
2354}
2355#endif /* CONFIG_KALLSYMS */
2356
Jason Barone9d376f2009-02-05 11:51:38 -05002357static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002358{
Rusty Russell811d66a2010-08-05 12:59:12 -06002359 if (!debug)
2360 return;
Jason Barone9d376f2009-02-05 11:51:38 -05002361#ifdef CONFIG_DYNAMIC_DEBUG
2362 if (ddebug_add_module(debug, num, debug->modname))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002363 pr_err("dynamic debug error adding module: %s\n",
2364 debug->modname);
Jason Barone9d376f2009-02-05 11:51:38 -05002365#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002366}
Jason Baron346e15b2008-08-12 16:46:19 -04002367
Yehuda Sadehff49d742010-07-03 13:07:35 +10002368static void dynamic_debug_remove(struct _ddebug *debug)
2369{
2370 if (debug)
2371 ddebug_remove_module(debug->modname);
2372}
2373
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002374void * __weak module_alloc(unsigned long size)
2375{
Rusty Russell82fab442012-12-11 09:38:33 +10302376 return vmalloc_exec(size);
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002377}
2378
Rusty Russell3a642e92008-07-22 19:24:28 -05002379static void *module_alloc_update_bounds(unsigned long size)
2380{
2381 void *ret = module_alloc(size);
2382
2383 if (ret) {
Rusty Russell75676502010-06-05 11:17:36 -06002384 mutex_lock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002385 /* Update module bounds. */
2386 if ((unsigned long)ret < module_addr_min)
2387 module_addr_min = (unsigned long)ret;
2388 if ((unsigned long)ret + size > module_addr_max)
2389 module_addr_max = (unsigned long)ret + size;
Rusty Russell75676502010-06-05 11:17:36 -06002390 mutex_unlock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002391 }
2392 return ret;
2393}
2394
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002395#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002396static void kmemleak_load_module(const struct module *mod,
2397 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002398{
2399 unsigned int i;
2400
2401 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002402 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002403
Rusty Russell49668682010-08-05 12:59:10 -06002404 for (i = 1; i < info->hdr->e_shnum; i++) {
Steven Rostedt06c94942013-05-15 20:33:01 +01002405 /* Scan all writable sections that's not executable */
2406 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
2407 !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
2408 (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002409 continue;
2410
Rusty Russell49668682010-08-05 12:59:10 -06002411 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2412 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002413 }
2414}
2415#else
Rusty Russell49668682010-08-05 12:59:10 -06002416static inline void kmemleak_load_module(const struct module *mod,
2417 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002418{
2419}
2420#endif
2421
Rusty Russell106a4ee2012-09-26 10:09:40 +01002422#ifdef CONFIG_MODULE_SIG
Kees Cook34e11692012-10-16 07:31:07 +10302423static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002424{
2425 int err = -ENOKEY;
Kees Cook34e11692012-10-16 07:31:07 +10302426 const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
2427 const void *mod = info->hdr;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002428
Kees Cook34e11692012-10-16 07:31:07 +10302429 if (info->len > markerlen &&
2430 memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
David Howellscaabe242012-10-20 01:19:29 +01002431 /* We truncate the module to discard the signature */
Kees Cook34e11692012-10-16 07:31:07 +10302432 info->len -= markerlen;
2433 err = mod_verify_sig(mod, &info->len);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002434 }
2435
2436 if (!err) {
2437 info->sig_ok = true;
2438 return 0;
2439 }
2440
2441 /* Not having a signature is only an error if we're strict. */
2442 if (err == -ENOKEY && !sig_enforce)
2443 err = 0;
2444
2445 return err;
2446}
2447#else /* !CONFIG_MODULE_SIG */
Kees Cook34e11692012-10-16 07:31:07 +10302448static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002449{
2450 return 0;
2451}
2452#endif /* !CONFIG_MODULE_SIG */
2453
Kees Cook34e11692012-10-16 07:31:07 +10302454/* Sanity checks against invalid binaries, wrong arch, weird elf version. */
2455static int elf_header_check(struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002456{
Kees Cook34e11692012-10-16 07:31:07 +10302457 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002458 return -ENOEXEC;
2459
Kees Cook34e11692012-10-16 07:31:07 +10302460 if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2461 || info->hdr->e_type != ET_REL
2462 || !elf_check_arch(info->hdr)
2463 || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2464 return -ENOEXEC;
2465
2466 if (info->hdr->e_shoff >= info->len
2467 || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2468 info->len - info->hdr->e_shoff))
2469 return -ENOEXEC;
2470
2471 return 0;
2472}
2473
2474/* Sets info->hdr and info->len. */
2475static int copy_module_from_user(const void __user *umod, unsigned long len,
2476 struct load_info *info)
2477{
Kees Cook2e72d512012-10-16 07:32:07 +10302478 int err;
2479
Kees Cook34e11692012-10-16 07:31:07 +10302480 info->len = len;
2481 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002482 return -ENOEXEC;
2483
Kees Cook2e72d512012-10-16 07:32:07 +10302484 err = security_kernel_module_from_file(NULL);
2485 if (err)
2486 return err;
2487
Rusty Russell40dd2562010-08-05 12:59:03 -06002488 /* Suck in entire file: we'll want most of it. */
Kees Cook34e11692012-10-16 07:31:07 +10302489 info->hdr = vmalloc(info->len);
2490 if (!info->hdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06002491 return -ENOMEM;
2492
Kees Cook34e11692012-10-16 07:31:07 +10302493 if (copy_from_user(info->hdr, umod, info->len) != 0) {
2494 vfree(info->hdr);
2495 return -EFAULT;
Rusty Russell40dd2562010-08-05 12:59:03 -06002496 }
2497
Rusty Russell40dd2562010-08-05 12:59:03 -06002498 return 0;
Kees Cook34e11692012-10-16 07:31:07 +10302499}
Rusty Russell40dd2562010-08-05 12:59:03 -06002500
Kees Cook34e11692012-10-16 07:31:07 +10302501/* Sets info->hdr and info->len. */
2502static int copy_module_from_fd(int fd, struct load_info *info)
2503{
Al Viroa2e05782013-08-30 12:41:41 -04002504 struct fd f = fdget(fd);
Kees Cook34e11692012-10-16 07:31:07 +10302505 int err;
2506 struct kstat stat;
2507 loff_t pos;
2508 ssize_t bytes = 0;
2509
Al Viroa2e05782013-08-30 12:41:41 -04002510 if (!f.file)
Kees Cook34e11692012-10-16 07:31:07 +10302511 return -ENOEXEC;
2512
Al Viroa2e05782013-08-30 12:41:41 -04002513 err = security_kernel_module_from_file(f.file);
Kees Cook2e72d512012-10-16 07:32:07 +10302514 if (err)
2515 goto out;
2516
Al Viroa2e05782013-08-30 12:41:41 -04002517 err = vfs_getattr(&f.file->f_path, &stat);
Kees Cook34e11692012-10-16 07:31:07 +10302518 if (err)
2519 goto out;
2520
2521 if (stat.size > INT_MAX) {
2522 err = -EFBIG;
2523 goto out;
2524 }
Sasha Levin52441fa2013-01-03 11:09:53 +10302525
2526 /* Don't hand 0 to vmalloc, it whines. */
2527 if (stat.size == 0) {
2528 err = -EINVAL;
2529 goto out;
2530 }
2531
Kees Cook34e11692012-10-16 07:31:07 +10302532 info->hdr = vmalloc(stat.size);
2533 if (!info->hdr) {
2534 err = -ENOMEM;
2535 goto out;
2536 }
2537
2538 pos = 0;
2539 while (pos < stat.size) {
Al Viroa2e05782013-08-30 12:41:41 -04002540 bytes = kernel_read(f.file, pos, (char *)(info->hdr) + pos,
Kees Cook34e11692012-10-16 07:31:07 +10302541 stat.size - pos);
2542 if (bytes < 0) {
2543 vfree(info->hdr);
2544 err = bytes;
2545 goto out;
2546 }
2547 if (bytes == 0)
2548 break;
2549 pos += bytes;
2550 }
2551 info->len = pos;
2552
2553out:
Al Viroa2e05782013-08-30 12:41:41 -04002554 fdput(f);
Rusty Russell40dd2562010-08-05 12:59:03 -06002555 return err;
2556}
2557
Rusty Russelld9131882010-08-05 12:59:08 -06002558static void free_copy(struct load_info *info)
2559{
Rusty Russelld9131882010-08-05 12:59:08 -06002560 vfree(info->hdr);
2561}
2562
Rusty Russell2f3238a2012-10-22 18:09:41 +10302563static int rewrite_section_headers(struct load_info *info, int flags)
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002564{
2565 unsigned int i;
2566
2567 /* This should always be true, but let's be sure. */
2568 info->sechdrs[0].sh_addr = 0;
2569
2570 for (i = 1; i < info->hdr->e_shnum; i++) {
2571 Elf_Shdr *shdr = &info->sechdrs[i];
2572 if (shdr->sh_type != SHT_NOBITS
2573 && info->len < shdr->sh_offset + shdr->sh_size) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002574 pr_err("Module len %lu truncated\n", info->len);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002575 return -ENOEXEC;
2576 }
2577
2578 /* Mark all sections sh_addr with their address in the
2579 temporary image. */
2580 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2581
2582#ifndef CONFIG_MODULE_UNLOAD
2583 /* Don't load .exit sections */
2584 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2585 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2586#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002587 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002588
2589 /* Track but don't keep modinfo and version sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302590 if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
2591 info->index.vers = 0; /* Pretend no __versions section! */
2592 else
2593 info->index.vers = find_sec(info, "__versions");
Rusty Russell49668682010-08-05 12:59:10 -06002594 info->index.info = find_sec(info, ".modinfo");
Rusty Russelld6df72a2010-08-05 12:59:07 -06002595 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2596 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002597 return 0;
2598}
2599
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002600/*
2601 * Set up our basic convenience variables (pointers to section headers,
2602 * search for module section index etc), and do some basic section
2603 * verification.
2604 *
2605 * Return the temporary module pointer (we'll replace it with the final
2606 * one when we move the module sections around).
2607 */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302608static struct module *setup_load_info(struct load_info *info, int flags)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002609{
2610 unsigned int i;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002611 int err;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002612 struct module *mod;
2613
2614 /* Set up the convenience variables */
2615 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002616 info->secstrings = (void *)info->hdr
2617 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002618
Rusty Russell2f3238a2012-10-22 18:09:41 +10302619 err = rewrite_section_headers(info, flags);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002620 if (err)
2621 return ERR_PTR(err);
2622
2623 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002624 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002625 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2626 info->index.sym = i;
2627 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002628 info->strtab = (char *)info->hdr
2629 + info->sechdrs[info->index.str].sh_offset;
2630 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002631 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002632 }
2633
Rusty Russell49668682010-08-05 12:59:10 -06002634 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002635 if (!info->index.mod) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002636 pr_warn("No module found in object\n");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002637 return ERR_PTR(-ENOEXEC);
2638 }
2639 /* This is temporary: point mod into copy of data. */
2640 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2641
2642 if (info->index.sym == 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002643 pr_warn("%s: module has no symbols (stripped?)\n", mod->name);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002644 return ERR_PTR(-ENOEXEC);
2645 }
2646
Rusty Russell49668682010-08-05 12:59:10 -06002647 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002648
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002649 /* Check module struct version now, before we try to use module. */
2650 if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
2651 return ERR_PTR(-ENOEXEC);
2652
2653 return mod;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002654}
2655
Rusty Russell2f3238a2012-10-22 18:09:41 +10302656static int check_modinfo(struct module *mod, struct load_info *info, int flags)
Rusty Russell40dd2562010-08-05 12:59:03 -06002657{
Rusty Russell49668682010-08-05 12:59:10 -06002658 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002659 int err;
2660
Rusty Russell2f3238a2012-10-22 18:09:41 +10302661 if (flags & MODULE_INIT_IGNORE_VERMAGIC)
2662 modmagic = NULL;
2663
Rusty Russell40dd2562010-08-05 12:59:03 -06002664 /* This is allowed: modprobe --force will invalidate it. */
2665 if (!modmagic) {
2666 err = try_to_force_load(mod, "bad vermagic");
2667 if (err)
2668 return err;
Rusty Russell49668682010-08-05 12:59:10 -06002669 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002670 pr_err("%s: version magic '%s' should be '%s'\n",
Rusty Russell40dd2562010-08-05 12:59:03 -06002671 mod->name, modmagic, vermagic);
2672 return -ENOEXEC;
2673 }
2674
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002675 if (!get_modinfo(info, "intree"))
Rusty Russell373d4d02013-01-21 17:17:39 +10302676 add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002677
Rusty Russell49668682010-08-05 12:59:10 -06002678 if (get_modinfo(info, "staging")) {
Rusty Russell373d4d02013-01-21 17:17:39 +10302679 add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002680 pr_warn("%s: module is from the staging directory, the quality "
2681 "is unknown, you have been warned.\n", mod->name);
Rusty Russell40dd2562010-08-05 12:59:03 -06002682 }
Rusty Russell22e268e2010-08-05 12:59:05 -06002683
2684 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06002685 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06002686
Rusty Russell40dd2562010-08-05 12:59:03 -06002687 return 0;
2688}
2689
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302690static int find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002691{
Rusty Russell49668682010-08-05 12:59:10 -06002692 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002693 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06002694 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002695 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002696 mod->crcs = section_addr(info, "__kcrctab");
2697 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002698 sizeof(*mod->gpl_syms),
2699 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002700 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
2701 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002702 "__ksymtab_gpl_future",
2703 sizeof(*mod->gpl_future_syms),
2704 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002705 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002706
2707#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06002708 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002709 sizeof(*mod->unused_syms),
2710 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002711 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
2712 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002713 sizeof(*mod->unused_gpl_syms),
2714 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002715 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002716#endif
2717#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06002718 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002719 sizeof(*mod->ctors), &mod->num_ctors);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302720 if (!mod->ctors)
2721 mod->ctors = section_objs(info, ".init_array",
2722 sizeof(*mod->ctors), &mod->num_ctors);
2723 else if (find_sec(info, ".init_array")) {
2724 /*
2725 * This shouldn't happen with same compiler and binutils
2726 * building all parts of the module.
2727 */
Ionut Alexa6da0b562014-11-10 09:31:29 +10302728 pr_warn("%s: has both .ctors and .init_array.\n",
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302729 mod->name);
2730 return -EINVAL;
2731 }
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002732#endif
2733
2734#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -05002735 mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
2736 sizeof(*mod->tracepoints_ptrs),
2737 &mod->num_tracepoints);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002738#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -04002739#ifdef HAVE_JUMP_LABEL
2740 mod->jump_entries = section_objs(info, "__jump_table",
2741 sizeof(*mod->jump_entries),
2742 &mod->num_jump_entries);
2743#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002744#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06002745 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002746 sizeof(*mod->trace_events),
2747 &mod->num_trace_events);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002748#endif
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002749#ifdef CONFIG_TRACING
2750 mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
2751 sizeof(*mod->trace_bprintk_fmt_start),
2752 &mod->num_trace_bprintk_fmt);
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002753#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002754#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2755 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06002756 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002757 sizeof(*mod->ftrace_callsites),
2758 &mod->num_ftrace_callsites);
2759#endif
Rusty Russell22e268e2010-08-05 12:59:05 -06002760
Rusty Russell811d66a2010-08-05 12:59:12 -06002761 mod->extable = section_objs(info, "__ex_table",
2762 sizeof(*mod->extable), &mod->num_exentries);
2763
Rusty Russell49668682010-08-05 12:59:10 -06002764 if (section_addr(info, "__obsparm"))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002765 pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06002766
2767 info->debug = section_objs(info, "__verbose",
2768 sizeof(*info->debug), &info->num_debug);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302769
2770 return 0;
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002771}
2772
Rusty Russell49668682010-08-05 12:59:10 -06002773static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002774{
2775 int i;
2776 void *ptr;
2777
2778 /* Do the allocs. */
2779 ptr = module_alloc_update_bounds(mod->core_size);
2780 /*
2781 * The pointer to this block is stored in the module structure
2782 * which is inside the block. Just mark it as not being a
2783 * leak.
2784 */
2785 kmemleak_not_leak(ptr);
2786 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06002787 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002788
2789 memset(ptr, 0, mod->core_size);
2790 mod->module_core = ptr;
2791
Rusty Russell82fab442012-12-11 09:38:33 +10302792 if (mod->init_size) {
2793 ptr = module_alloc_update_bounds(mod->init_size);
2794 /*
2795 * The pointer to this block is stored in the module structure
2796 * which is inside the block. This block doesn't need to be
2797 * scanned as it contains data and code that will be freed
2798 * after the module is initialized.
2799 */
2800 kmemleak_ignore(ptr);
2801 if (!ptr) {
Rusty Russellbe1f2212015-01-20 09:07:05 +10302802 module_memfree(mod->module_core);
Rusty Russell82fab442012-12-11 09:38:33 +10302803 return -ENOMEM;
2804 }
2805 memset(ptr, 0, mod->init_size);
2806 mod->module_init = ptr;
2807 } else
2808 mod->module_init = NULL;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002809
2810 /* Transfer each section which specifies SHF_ALLOC */
Jim Cromie5e124162011-12-06 12:11:31 -07002811 pr_debug("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06002812 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002813 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06002814 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002815
Rusty Russell49668682010-08-05 12:59:10 -06002816 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002817 continue;
2818
Rusty Russell49668682010-08-05 12:59:10 -06002819 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002820 dest = mod->module_init
Rusty Russell49668682010-08-05 12:59:10 -06002821 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002822 else
Rusty Russell49668682010-08-05 12:59:10 -06002823 dest = mod->module_core + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002824
Rusty Russell49668682010-08-05 12:59:10 -06002825 if (shdr->sh_type != SHT_NOBITS)
2826 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002827 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06002828 shdr->sh_addr = (unsigned long)dest;
Jim Cromie5e124162011-12-06 12:11:31 -07002829 pr_debug("\t0x%lx %s\n",
2830 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002831 }
Rusty Russelld9131882010-08-05 12:59:08 -06002832
2833 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002834}
2835
Rusty Russell49668682010-08-05 12:59:10 -06002836static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06002837{
2838 /*
2839 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2840 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2841 * using GPL-only symbols it needs.
2842 */
2843 if (strcmp(mod->name, "ndiswrapper") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302844 add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06002845
2846 /* driverloader was caught wrongly pretending to be under GPL */
2847 if (strcmp(mod->name, "driverloader") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302848 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2849 LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06002850
Matthew Garrettc99af372012-06-22 13:49:31 -04002851 /* lve claims to be GPL but upstream won't provide source */
2852 if (strcmp(mod->name, "lve") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302853 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2854 LOCKDEP_NOW_UNRELIABLE);
Matthew Garrettc99af372012-06-22 13:49:31 -04002855
Rusty Russell22e268e2010-08-05 12:59:05 -06002856#ifdef CONFIG_MODVERSIONS
2857 if ((mod->num_syms && !mod->crcs)
2858 || (mod->num_gpl_syms && !mod->gpl_crcs)
2859 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2860#ifdef CONFIG_UNUSED_SYMBOLS
2861 || (mod->num_unused_syms && !mod->unused_crcs)
2862 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2863#endif
2864 ) {
2865 return try_to_force_load(mod,
2866 "no versions for exported symbols");
2867 }
2868#endif
2869 return 0;
2870}
2871
2872static void flush_module_icache(const struct module *mod)
2873{
2874 mm_segment_t old_fs;
2875
2876 /* flush the icache in correct context */
2877 old_fs = get_fs();
2878 set_fs(KERNEL_DS);
2879
2880 /*
2881 * Flush the instruction cache, since we've played with text.
2882 * Do it before processing of module parameters, so the module
2883 * can provide parameter accessor functions of its own.
2884 */
2885 if (mod->module_init)
2886 flush_icache_range((unsigned long)mod->module_init,
2887 (unsigned long)mod->module_init
2888 + mod->init_size);
2889 flush_icache_range((unsigned long)mod->module_core,
2890 (unsigned long)mod->module_core + mod->core_size);
2891
2892 set_fs(old_fs);
2893}
2894
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002895int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
2896 Elf_Shdr *sechdrs,
2897 char *secstrings,
2898 struct module *mod)
2899{
2900 return 0;
2901}
2902
Rusty Russell2f3238a2012-10-22 18:09:41 +10302903static struct module *layout_and_allocate(struct load_info *info, int flags)
Rusty Russelld9131882010-08-05 12:59:08 -06002904{
2905 /* Module within temporary copy. */
2906 struct module *mod;
2907 int err;
2908
Rusty Russell2f3238a2012-10-22 18:09:41 +10302909 mod = setup_load_info(info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002910 if (IS_ERR(mod))
2911 return mod;
2912
Rusty Russell2f3238a2012-10-22 18:09:41 +10302913 err = check_modinfo(mod, info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002914 if (err)
2915 return ERR_PTR(err);
2916
2917 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06002918 err = module_frob_arch_sections(info->hdr, info->sechdrs,
2919 info->secstrings, mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002920 if (err < 0)
Rusty Russell8d8022e2013-07-03 10:06:28 +09302921 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06002922
Rusty Russell8d8022e2013-07-03 10:06:28 +09302923 /* We will do a special allocation for per-cpu sections later. */
2924 info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06002925
2926 /* Determine total sizes, and put offsets in sh_entsize. For now
2927 this is done generically; there doesn't appear to be any
2928 special cases for the architectures. */
Rusty Russell49668682010-08-05 12:59:10 -06002929 layout_sections(mod, info);
Rusty Russell49668682010-08-05 12:59:10 -06002930 layout_symtab(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002931
2932 /* Allocate and move to the final place */
Rusty Russell49668682010-08-05 12:59:10 -06002933 err = move_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002934 if (err)
Rusty Russell8d8022e2013-07-03 10:06:28 +09302935 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06002936
2937 /* Module has been copied to its final place now: return it. */
2938 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06002939 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002940 return mod;
Rusty Russelld9131882010-08-05 12:59:08 -06002941}
2942
2943/* mod is no longer valid after this! */
2944static void module_deallocate(struct module *mod, struct load_info *info)
2945{
Rusty Russelld9131882010-08-05 12:59:08 -06002946 percpu_modfree(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10302947 module_arch_freeing_init(mod);
Rusty Russellbe1f2212015-01-20 09:07:05 +10302948 module_memfree(mod->module_init);
2949 module_memfree(mod->module_core);
Rusty Russelld9131882010-08-05 12:59:08 -06002950}
2951
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002952int __weak module_finalize(const Elf_Ehdr *hdr,
2953 const Elf_Shdr *sechdrs,
2954 struct module *me)
2955{
2956 return 0;
2957}
2958
Rusty Russell811d66a2010-08-05 12:59:12 -06002959static int post_relocation(struct module *mod, const struct load_info *info)
2960{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002961 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002962 sort_extable(mod->extable, mod->extable + mod->num_exentries);
2963
2964 /* Copy relocated percpu area over. */
2965 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
2966 info->sechdrs[info->index.pcpu].sh_size);
2967
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002968 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002969 add_kallsyms(mod, info);
2970
2971 /* Arch-specific module finalizing. */
2972 return module_finalize(info->hdr, info->sechdrs, mod);
2973}
2974
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09302975/* Is this module of this name done loading? No locks held. */
2976static bool finished_loading(const char *name)
2977{
2978 struct module *mod;
2979 bool ret;
2980
2981 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09302982 mod = find_module_all(name, strlen(name), true);
Rusty Russell0d21b0e2013-01-12 11:38:44 +10302983 ret = !mod || mod->state == MODULE_STATE_LIVE
2984 || mod->state == MODULE_STATE_GOING;
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09302985 mutex_unlock(&module_mutex);
2986
2987 return ret;
2988}
2989
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002990/* Call module constructors. */
2991static void do_mod_ctors(struct module *mod)
2992{
2993#ifdef CONFIG_CONSTRUCTORS
2994 unsigned long i;
2995
2996 for (i = 0; i < mod->num_ctors; i++)
2997 mod->ctors[i]();
2998#endif
2999}
3000
Rusty Russellc7496372015-01-20 09:07:05 +10303001/* For freeing module_init on success, in case kallsyms traversing */
3002struct mod_initfree {
3003 struct rcu_head rcu;
3004 void *module_init;
3005};
3006
3007static void do_free_init(struct rcu_head *head)
3008{
3009 struct mod_initfree *m = container_of(head, struct mod_initfree, rcu);
3010 module_memfree(m->module_init);
3011 kfree(m);
3012}
3013
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014/* This is where the real work happens */
Kees Cook34e11692012-10-16 07:31:07 +10303015static int do_init_module(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 int ret = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303018 struct mod_initfree *freeinit;
3019
3020 freeinit = kmalloc(sizeof(*freeinit), GFP_KERNEL);
3021 if (!freeinit) {
3022 ret = -ENOMEM;
3023 goto fail;
3024 }
3025 freeinit->module_init = mod->module_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
Tejun Heo774a1222013-01-15 18:52:51 -08003027 /*
3028 * We want to find out whether @mod uses async during init. Clear
3029 * PF_USED_ASYNC. async_schedule*() will set it.
3030 */
3031 current->flags &= ~PF_USED_ASYNC;
3032
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003033 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 /* Start the module */
3035 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07003036 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 if (ret < 0) {
Rusty Russellc7496372015-01-20 09:07:05 +10303038 goto fail_free_freeinit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003040 if (ret > 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003041 pr_warn("%s: '%s'->init suspiciously returned %d, it should "
3042 "follow 0/-E convention\n"
3043 "%s: loading module anyway...\n",
3044 __func__, mod->name, ret, __func__);
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003045 dump_stack();
3046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Rusty Russell6f139092012-09-28 14:31:03 +09303048 /* Now it's a first class citizen! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 mod->state = MODULE_STATE_LIVE;
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08003050 blocking_notifier_call_chain(&module_notify_list,
3051 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07003052
Tejun Heo774a1222013-01-15 18:52:51 -08003053 /*
3054 * We need to finish all async code before the module init sequence
3055 * is done. This has potential to deadlock. For example, a newly
3056 * detected block device can trigger request_module() of the
3057 * default iosched from async probing task. Once userland helper
3058 * reaches here, async_synchronize_full() will wait on the async
3059 * task waiting on request_module() and deadlock.
3060 *
3061 * This deadlock is avoided by perfomring async_synchronize_full()
3062 * iff module init queued any async jobs. This isn't a full
3063 * solution as it will deadlock the same if module loading from
3064 * async jobs nests more than once; however, due to the various
3065 * constraints, this hack seems to be the best option for now.
3066 * Please refer to the following thread for details.
3067 *
3068 * http://thread.gmane.org/gmane.linux.kernel/1420814
3069 */
3070 if (current->flags & PF_USED_ASYNC)
3071 async_synchronize_full();
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07003072
Rusty Russell6c5db222008-03-10 11:43:52 -07003073 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 /* Drop initial reference. */
3075 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06003076 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01003077#ifdef CONFIG_KALLSYMS
3078 mod->num_symtab = mod->core_num_syms;
3079 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01003080 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01003081#endif
Jan Glauber01526ed2011-05-19 16:55:26 -06003082 unset_module_init_ro_nx(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10303083 module_arch_freeing_init(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 mod->module_init = NULL;
3085 mod->init_size = 0;
Jan Glauber4d103802011-05-19 16:55:25 -06003086 mod->init_ro_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 mod->init_text_size = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303088 /*
3089 * We want to free module_init, but be aware that kallsyms may be
3090 * walking this with preempt disabled. In all the failure paths,
3091 * we call synchronize_rcu/synchronize_sched, but we don't want
3092 * to slow down the success path, so use actual RCU here.
3093 */
3094 call_rcu(&freeinit->rcu, do_free_init);
Ashutosh Naik6389a382006-03-23 03:00:46 -08003095 mutex_unlock(&module_mutex);
Rusty Russell6f139092012-09-28 14:31:03 +09303096 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
3098 return 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303099
3100fail_free_freeinit:
3101 kfree(freeinit);
3102fail:
3103 /* Try to protect us from buggy refcounters. */
3104 mod->state = MODULE_STATE_GOING;
3105 synchronize_sched();
3106 module_put(mod);
3107 blocking_notifier_call_chain(&module_notify_list,
3108 MODULE_STATE_GOING, mod);
3109 free_module(mod);
3110 wake_up_all(&module_wq);
3111 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112}
3113
Kees Cook34e11692012-10-16 07:31:07 +10303114static int may_init_module(void)
3115{
3116 if (!capable(CAP_SYS_MODULE) || modules_disabled)
3117 return -EPERM;
3118
3119 return 0;
3120}
3121
Rusty Russella3535c72013-01-21 17:18:59 +10303122/*
Peter Zijlstra3c9b2c32014-09-24 10:18:53 +02003123 * Can't use wait_event_interruptible() because our condition
3124 * 'finished_loading()' contains a blocking primitive itself (mutex_lock).
3125 */
3126static int wait_finished_loading(struct module *mod)
3127{
3128 DEFINE_WAIT_FUNC(wait, woken_wake_function);
3129 int ret = 0;
3130
3131 add_wait_queue(&module_wq, &wait);
3132 for (;;) {
3133 if (finished_loading(mod->name))
3134 break;
3135
3136 if (signal_pending(current)) {
3137 ret = -ERESTARTSYS;
3138 break;
3139 }
3140
3141 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
3142 }
3143 remove_wait_queue(&module_wq, &wait);
3144
3145 return ret;
3146}
3147
3148/*
Rusty Russella3535c72013-01-21 17:18:59 +10303149 * We try to place it in the list now to make sure it's unique before
3150 * we dedicate too many resources. In particular, temporary percpu
3151 * memory exhaustion.
3152 */
3153static int add_unformed_module(struct module *mod)
3154{
3155 int err;
3156 struct module *old;
3157
3158 mod->state = MODULE_STATE_UNFORMED;
3159
3160again:
3161 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303162 old = find_module_all(mod->name, strlen(mod->name), true);
3163 if (old != NULL) {
Rusty Russella3535c72013-01-21 17:18:59 +10303164 if (old->state == MODULE_STATE_COMING
3165 || old->state == MODULE_STATE_UNFORMED) {
3166 /* Wait in case it fails to load. */
3167 mutex_unlock(&module_mutex);
Peter Zijlstra3c9b2c32014-09-24 10:18:53 +02003168
3169 err = wait_finished_loading(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303170 if (err)
3171 goto out_unlocked;
3172 goto again;
3173 }
3174 err = -EEXIST;
3175 goto out;
3176 }
3177 list_add_rcu(&mod->list, &modules);
3178 err = 0;
3179
3180out:
3181 mutex_unlock(&module_mutex);
3182out_unlocked:
3183 return err;
3184}
3185
3186static int complete_formation(struct module *mod, struct load_info *info)
3187{
3188 int err;
3189
3190 mutex_lock(&module_mutex);
3191
3192 /* Find duplicate symbols (must be called under lock). */
3193 err = verify_export_symbols(mod);
3194 if (err < 0)
3195 goto out;
3196
3197 /* This relies on module_mutex for list integrity. */
3198 module_bug_finalize(info->hdr, info->sechdrs, mod);
3199
Rusty Russell49822232014-05-14 10:54:19 +09303200 /* Set RO and NX regions for core */
3201 set_section_ro_nx(mod->module_core,
3202 mod->core_text_size,
3203 mod->core_ro_size,
3204 mod->core_size);
3205
3206 /* Set RO and NX regions for init */
3207 set_section_ro_nx(mod->module_init,
3208 mod->init_text_size,
3209 mod->init_ro_size,
3210 mod->init_size);
3211
Rusty Russella3535c72013-01-21 17:18:59 +10303212 /* Mark state as coming so strong_try_module_get() ignores us,
3213 * but kallsyms etc. can see us. */
3214 mod->state = MODULE_STATE_COMING;
Rusty Russell49822232014-05-14 10:54:19 +09303215 mutex_unlock(&module_mutex);
3216
3217 blocking_notifier_call_chain(&module_notify_list,
3218 MODULE_STATE_COMING, mod);
3219 return 0;
Rusty Russella3535c72013-01-21 17:18:59 +10303220
3221out:
3222 mutex_unlock(&module_mutex);
3223 return err;
3224}
3225
Rusty Russell54041d82013-07-02 15:35:12 +09303226static int unknown_module_param_cb(char *param, char *val, const char *modname)
3227{
Ionut Alexa6da0b562014-11-10 09:31:29 +10303228 /* Check for magic 'dyndbg' arg */
Rusty Russell54041d82013-07-02 15:35:12 +09303229 int ret = ddebug_dyndbg_module_param_cb(param, val, modname);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003230 if (ret != 0)
3231 pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
Rusty Russell54041d82013-07-02 15:35:12 +09303232 return 0;
3233}
3234
Kees Cook34e11692012-10-16 07:31:07 +10303235/* Allocate and load the module: note that size of section 0 is always
3236 zero, and we rely on this for optional sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303237static int load_module(struct load_info *info, const char __user *uargs,
3238 int flags)
Kees Cook34e11692012-10-16 07:31:07 +10303239{
Rusty Russella3535c72013-01-21 17:18:59 +10303240 struct module *mod;
Kees Cook34e11692012-10-16 07:31:07 +10303241 long err;
Rusty Russell51e158c2014-04-28 11:34:33 +09303242 char *after_dashes;
Kees Cook34e11692012-10-16 07:31:07 +10303243
3244 err = module_sig_check(info);
3245 if (err)
3246 goto free_copy;
3247
3248 err = elf_header_check(info);
3249 if (err)
3250 goto free_copy;
3251
3252 /* Figure out module layout, and allocate all the memory. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303253 mod = layout_and_allocate(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303254 if (IS_ERR(mod)) {
3255 err = PTR_ERR(mod);
3256 goto free_copy;
3257 }
3258
Rusty Russella3535c72013-01-21 17:18:59 +10303259 /* Reserve our place in the list. */
3260 err = add_unformed_module(mod);
3261 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303262 goto free_module;
Rusty Russell1fb93412013-01-12 13:27:34 +10303263
Kees Cook34e11692012-10-16 07:31:07 +10303264#ifdef CONFIG_MODULE_SIG
3265 mod->sig_ok = info->sig_ok;
Rusty Russell64748a22013-01-21 17:03:02 +10303266 if (!mod->sig_ok) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003267 pr_notice_once("%s: module verification failed: signature "
3268 "and/or required key missing - tainting "
3269 "kernel\n", mod->name);
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10303270 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
Rusty Russell64748a22013-01-21 17:03:02 +10303271 }
Kees Cook34e11692012-10-16 07:31:07 +10303272#endif
3273
Rusty Russell8d8022e2013-07-03 10:06:28 +09303274 /* To avoid stressing percpu allocator, do this once we're unique. */
Rusty Russell9eb76d72013-07-03 10:06:29 +09303275 err = percpu_modalloc(mod, info);
Rusty Russell8d8022e2013-07-03 10:06:28 +09303276 if (err)
3277 goto unlink_mod;
3278
Kees Cook34e11692012-10-16 07:31:07 +10303279 /* Now module is in final location, initialize linked lists, etc. */
3280 err = module_unload_init(mod);
3281 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303282 goto unlink_mod;
Kees Cook34e11692012-10-16 07:31:07 +10303283
3284 /* Now we've got everything in the final locations, we can
3285 * find optional sections. */
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303286 err = find_module_sections(mod, info);
3287 if (err)
3288 goto free_unload;
Kees Cook34e11692012-10-16 07:31:07 +10303289
3290 err = check_module_license_and_versions(mod);
3291 if (err)
3292 goto free_unload;
3293
3294 /* Set up MODINFO_ATTR fields */
3295 setup_modinfo(mod, info);
3296
3297 /* Fix up syms, so that st_value is a pointer to location. */
3298 err = simplify_symbols(mod, info);
3299 if (err < 0)
3300 goto free_modinfo;
3301
3302 err = apply_relocations(mod, info);
3303 if (err < 0)
3304 goto free_modinfo;
3305
3306 err = post_relocation(mod, info);
3307 if (err < 0)
3308 goto free_modinfo;
3309
3310 flush_module_icache(mod);
3311
3312 /* Now copy in args */
3313 mod->args = strndup_user(uargs, ~0UL >> 1);
3314 if (IS_ERR(mod->args)) {
3315 err = PTR_ERR(mod->args);
3316 goto free_arch_cleanup;
3317 }
3318
Kees Cook34e11692012-10-16 07:31:07 +10303319 dynamic_debug_setup(info->debug, info->num_debug);
3320
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04003321 /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
3322 ftrace_module_init(mod);
3323
Rusty Russella3535c72013-01-21 17:18:59 +10303324 /* Finally it's fully formed, ready to start executing. */
3325 err = complete_formation(mod, info);
3326 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303327 goto ddebug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303328
Kees Cook34e11692012-10-16 07:31:07 +10303329 /* Module is ready to execute: parsing args may do that. */
Rusty Russell51e158c2014-04-28 11:34:33 +09303330 after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
3331 -32768, 32767, unknown_module_param_cb);
3332 if (IS_ERR(after_dashes)) {
3333 err = PTR_ERR(after_dashes);
Rusty Russell1fb93412013-01-12 13:27:34 +10303334 goto bug_cleanup;
Rusty Russell51e158c2014-04-28 11:34:33 +09303335 } else if (after_dashes) {
3336 pr_warn("%s: parameters '%s' after `--' ignored\n",
3337 mod->name, after_dashes);
3338 }
Kees Cook34e11692012-10-16 07:31:07 +10303339
3340 /* Link in to syfs. */
3341 err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
3342 if (err < 0)
Rusty Russell1fb93412013-01-12 13:27:34 +10303343 goto bug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303344
3345 /* Get rid of temporary copy. */
3346 free_copy(info);
3347
3348 /* Done! */
3349 trace_module_load(mod);
3350
3351 return do_init_module(mod);
3352
Rusty Russell1fb93412013-01-12 13:27:34 +10303353 bug_cleanup:
3354 /* module_bug_cleanup needs module_mutex protection */
Kees Cook34e11692012-10-16 07:31:07 +10303355 mutex_lock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303356 module_bug_cleanup(mod);
Linus Torvaldsee61abb2013-01-20 20:22:58 -08003357 mutex_unlock(&module_mutex);
Andy Lutomirskiff7e0052014-08-16 04:13:37 +09303358
3359 /* we can't deallocate the module until we clear memory protection */
3360 unset_module_init_ro_nx(mod);
3361 unset_module_core_ro_nx(mod);
3362
Rusty Russella3535c72013-01-21 17:18:59 +10303363 ddebug_cleanup:
Rusty Russell1fb93412013-01-12 13:27:34 +10303364 dynamic_debug_remove(info->debug);
Kees Cook34e11692012-10-16 07:31:07 +10303365 synchronize_sched();
3366 kfree(mod->args);
3367 free_arch_cleanup:
3368 module_arch_cleanup(mod);
3369 free_modinfo:
3370 free_modinfo(mod);
3371 free_unload:
3372 module_unload_free(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303373 unlink_mod:
3374 mutex_lock(&module_mutex);
3375 /* Unlink carefully: kallsyms could be walking list. */
3376 list_del_rcu(&mod->list);
3377 wake_up_all(&module_wq);
Masami Hiramatsu4f487952014-11-10 09:26:29 +10303378 /* Wait for RCU synchronizing before releasing mod->list. */
3379 synchronize_rcu();
Rusty Russell1fb93412013-01-12 13:27:34 +10303380 mutex_unlock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303381 free_module:
3382 module_deallocate(mod, info);
3383 free_copy:
3384 free_copy(info);
3385 return err;
3386}
3387
3388SYSCALL_DEFINE3(init_module, void __user *, umod,
3389 unsigned long, len, const char __user *, uargs)
3390{
3391 int err;
3392 struct load_info info = { };
3393
3394 err = may_init_module();
3395 if (err)
3396 return err;
3397
3398 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3399 umod, len, uargs);
3400
3401 err = copy_module_from_user(umod, len, &info);
3402 if (err)
3403 return err;
3404
Rusty Russell2f3238a2012-10-22 18:09:41 +10303405 return load_module(&info, uargs, 0);
Kees Cook34e11692012-10-16 07:31:07 +10303406}
3407
Rusty Russell2f3238a2012-10-22 18:09:41 +10303408SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
Kees Cook34e11692012-10-16 07:31:07 +10303409{
3410 int err;
3411 struct load_info info = { };
3412
3413 err = may_init_module();
3414 if (err)
3415 return err;
3416
Rusty Russell2f3238a2012-10-22 18:09:41 +10303417 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3418
3419 if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
3420 |MODULE_INIT_IGNORE_VERMAGIC))
3421 return -EINVAL;
Kees Cook34e11692012-10-16 07:31:07 +10303422
3423 err = copy_module_from_fd(fd, &info);
3424 if (err)
3425 return err;
3426
Rusty Russell2f3238a2012-10-22 18:09:41 +10303427 return load_module(&info, uargs, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303428}
3429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430static inline int within(unsigned long addr, void *start, unsigned long size)
3431{
3432 return ((void *)addr >= start && (void *)addr < start + size);
3433}
3434
3435#ifdef CONFIG_KALLSYMS
3436/*
3437 * This ignores the intensely annoying "mapping symbols" found
3438 * in ARM ELF files: $a, $t and $d.
3439 */
3440static inline int is_arm_mapping_symbol(const char *str)
3441{
Russell King2e3a10a2014-07-27 07:29:01 +09303442 if (str[0] == '.' && str[1] == 'L')
3443 return true;
Kyle McMartin6c34f1f2014-09-16 22:37:18 +01003444 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 && (str[2] == '\0' || str[2] == '.');
3446}
3447
3448static const char *get_ksymbol(struct module *mod,
3449 unsigned long addr,
3450 unsigned long *size,
3451 unsigned long *offset)
3452{
3453 unsigned int i, best = 0;
3454 unsigned long nextval;
3455
3456 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003457 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003459 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 nextval = (unsigned long)mod->module_core+mod->core_text_size;
3461
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003462 /* Scan for closest preceding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07003463 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 for (i = 1; i < mod->num_symtab; i++) {
3465 if (mod->symtab[i].st_shndx == SHN_UNDEF)
3466 continue;
3467
3468 /* We ignore unnamed symbols: they're uninformative
3469 * and inserted at a whim. */
3470 if (mod->symtab[i].st_value <= addr
3471 && mod->symtab[i].st_value > mod->symtab[best].st_value
3472 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3473 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3474 best = i;
3475 if (mod->symtab[i].st_value > addr
3476 && mod->symtab[i].st_value < nextval
3477 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3478 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3479 nextval = mod->symtab[i].st_value;
3480 }
3481
3482 if (!best)
3483 return NULL;
3484
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003485 if (size)
3486 *size = nextval - mod->symtab[best].st_value;
3487 if (offset)
3488 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 return mod->strtab + mod->symtab[best].st_name;
3490}
3491
Rusty Russell6dd06c92008-01-29 17:13:22 -05003492/* For kallsyms to ask for address resolution. NULL means not found. Careful
3493 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003494const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05003495 unsigned long *size,
3496 unsigned long *offset,
3497 char **modname,
3498 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499{
3500 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003501 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502
Rusty Russellcb2a5202008-01-14 00:55:03 -08003503 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003504 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303505 if (mod->state == MODULE_STATE_UNFORMED)
3506 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303507 if (within_module(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07003508 if (modname)
3509 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003510 ret = get_ksymbol(mod, addr, size, offset);
3511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 }
3513 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05003514 /* Make a copy in here where it's safe */
3515 if (ret) {
3516 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
3517 ret = namebuf;
3518 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003519 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003520 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521}
3522
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003523int lookup_module_symbol_name(unsigned long addr, char *symname)
3524{
3525 struct module *mod;
3526
Rusty Russellcb2a5202008-01-14 00:55:03 -08003527 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003528 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303529 if (mod->state == MODULE_STATE_UNFORMED)
3530 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303531 if (within_module(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003532 const char *sym;
3533
3534 sym = get_ksymbol(mod, addr, NULL, NULL);
3535 if (!sym)
3536 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07003537 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003538 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003539 return 0;
3540 }
3541 }
3542out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003543 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003544 return -ERANGE;
3545}
3546
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003547int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
3548 unsigned long *offset, char *modname, char *name)
3549{
3550 struct module *mod;
3551
Rusty Russellcb2a5202008-01-14 00:55:03 -08003552 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003553 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303554 if (mod->state == MODULE_STATE_UNFORMED)
3555 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303556 if (within_module(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003557 const char *sym;
3558
3559 sym = get_ksymbol(mod, addr, size, offset);
3560 if (!sym)
3561 goto out;
3562 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07003563 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003564 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07003565 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003566 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003567 return 0;
3568 }
3569 }
3570out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003571 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003572 return -ERANGE;
3573}
3574
Alexey Dobriyanea078902007-05-08 00:28:39 -07003575int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
3576 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577{
3578 struct module *mod;
3579
Rusty Russellcb2a5202008-01-14 00:55:03 -08003580 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003581 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303582 if (mod->state == MODULE_STATE_UNFORMED)
3583 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 if (symnum < mod->num_symtab) {
3585 *value = mod->symtab[symnum].st_value;
3586 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07003587 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07003588 KSYM_NAME_LEN);
3589 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06003590 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003591 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003592 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 }
3594 symnum -= mod->num_symtab;
3595 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003596 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003597 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598}
3599
3600static unsigned long mod_find_symname(struct module *mod, const char *name)
3601{
3602 unsigned int i;
3603
3604 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08003605 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
3606 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 return mod->symtab[i].st_value;
3608 return 0;
3609}
3610
3611/* Look for this name: can be of form module:name. */
3612unsigned long module_kallsyms_lookup_name(const char *name)
3613{
3614 struct module *mod;
3615 char *colon;
3616 unsigned long ret = 0;
3617
3618 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08003619 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 if ((colon = strchr(name, ':')) != NULL) {
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303621 if ((mod = find_module_all(name, colon - name, false)) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 ret = mod_find_symname(mod, colon+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 } else {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303624 list_for_each_entry_rcu(mod, &modules, list) {
3625 if (mod->state == MODULE_STATE_UNFORMED)
3626 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 if ((ret = mod_find_symname(mod, name)) != 0)
3628 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003631 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 return ret;
3633}
Anders Kaseorg75a66612008-12-05 19:03:58 -05003634
3635int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
3636 struct module *, unsigned long),
3637 void *data)
3638{
3639 struct module *mod;
3640 unsigned int i;
3641 int ret;
3642
3643 list_for_each_entry(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303644 if (mod->state == MODULE_STATE_UNFORMED)
3645 continue;
Anders Kaseorg75a66612008-12-05 19:03:58 -05003646 for (i = 0; i < mod->num_symtab; i++) {
3647 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
3648 mod, mod->symtab[i].st_value);
3649 if (ret != 0)
3650 return ret;
3651 }
3652 }
3653 return 0;
3654}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655#endif /* CONFIG_KALLSYMS */
3656
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003657static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003658{
3659 int bx = 0;
3660
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303661 BUG_ON(mod->state == MODULE_STATE_UNFORMED);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003662 if (mod->taints ||
3663 mod->state == MODULE_STATE_GOING ||
3664 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003665 buf[bx++] = '(';
Kay Sieverscca3e702012-01-13 09:32:15 +10303666 bx += module_flags_taint(mod, buf + bx);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003667 /* Show a - for module-is-being-unloaded */
3668 if (mod->state == MODULE_STATE_GOING)
3669 buf[bx++] = '-';
3670 /* Show a + for module-is-being-loaded */
3671 if (mod->state == MODULE_STATE_COMING)
3672 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003673 buf[bx++] = ')';
3674 }
3675 buf[bx] = '\0';
3676
3677 return buf;
3678}
3679
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003680#ifdef CONFIG_PROC_FS
3681/* Called by the /proc file system to return a list of modules. */
3682static void *m_start(struct seq_file *m, loff_t *pos)
3683{
3684 mutex_lock(&module_mutex);
3685 return seq_list_start(&modules, *pos);
3686}
3687
3688static void *m_next(struct seq_file *m, void *p, loff_t *pos)
3689{
3690 return seq_list_next(p, &modules, pos);
3691}
3692
3693static void m_stop(struct seq_file *m, void *p)
3694{
3695 mutex_unlock(&module_mutex);
3696}
3697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698static int m_show(struct seq_file *m, void *p)
3699{
3700 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003701 char buf[8];
3702
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303703 /* We always ignore unformed modules. */
3704 if (mod->state == MODULE_STATE_UNFORMED)
3705 return 0;
3706
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05003707 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 mod->name, mod->init_size + mod->core_size);
3709 print_unload_info(m, mod);
3710
3711 /* Informative for users. */
3712 seq_printf(m, " %s",
Ionut Alexa6da0b562014-11-10 09:31:29 +10303713 mod->state == MODULE_STATE_GOING ? "Unloading" :
3714 mod->state == MODULE_STATE_COMING ? "Loading" :
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 "Live");
3716 /* Used by oprofile and other similar tools. */
Kees Cook9f36e2c2011-03-22 16:34:22 -07003717 seq_printf(m, " 0x%pK", mod->module_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003719 /* Taints info */
3720 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003721 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003722
Ionut Alexa6da0b562014-11-10 09:31:29 +10303723 seq_puts(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 return 0;
3725}
3726
3727/* Format: modulename size refcount deps address
3728
3729 Where refcount is a number or -, and deps is a comma-separated list
3730 of depends or -.
3731*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003732static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 .start = m_start,
3734 .next = m_next,
3735 .stop = m_stop,
3736 .show = m_show
3737};
3738
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003739static int modules_open(struct inode *inode, struct file *file)
3740{
3741 return seq_open(file, &modules_op);
3742}
3743
3744static const struct file_operations proc_modules_operations = {
3745 .open = modules_open,
3746 .read = seq_read,
3747 .llseek = seq_lseek,
3748 .release = seq_release,
3749};
3750
3751static int __init proc_modules_init(void)
3752{
3753 proc_create("modules", 0, NULL, &proc_modules_operations);
3754 return 0;
3755}
3756module_init(proc_modules_init);
3757#endif
3758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759/* Given an address, look for it in the module exception tables. */
3760const struct exception_table_entry *search_module_extables(unsigned long addr)
3761{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 const struct exception_table_entry *e = NULL;
3763 struct module *mod;
3764
Rusty Russell24da1cb2007-07-15 23:41:46 -07003765 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003766 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303767 if (mod->state == MODULE_STATE_UNFORMED)
3768 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 if (mod->num_exentries == 0)
3770 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 e = search_extable(mod->extable,
3773 mod->extable + mod->num_exentries - 1,
3774 addr);
3775 if (e)
3776 break;
3777 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07003778 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
3780 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07003781 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 return e;
3783}
3784
Ingo Molnar4d435f92006-07-03 00:24:24 -07003785/*
Rusty Russelle6104992009-03-31 13:05:31 -06003786 * is_module_address - is this address inside a module?
3787 * @addr: the address to check.
3788 *
3789 * See is_module_text_address() if you simply want to see if the address
3790 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07003791 */
Rusty Russelle6104992009-03-31 13:05:31 -06003792bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07003793{
Rusty Russelle6104992009-03-31 13:05:31 -06003794 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003795
Rusty Russell24da1cb2007-07-15 23:41:46 -07003796 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06003797 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07003798 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07003799
Rusty Russelle6104992009-03-31 13:05:31 -06003800 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003801}
3802
Rusty Russelle6104992009-03-31 13:05:31 -06003803/*
3804 * __module_address - get the module which contains an address.
3805 * @addr: the address.
3806 *
3807 * Must be called with preempt disabled or module mutex held so that
3808 * module doesn't get freed during this.
3809 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07003810struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811{
3812 struct module *mod;
3813
Rusty Russell3a642e92008-07-22 19:24:28 -05003814 if (addr < module_addr_min || addr > module_addr_max)
3815 return NULL;
3816
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303817 list_for_each_entry_rcu(mod, &modules, list) {
3818 if (mod->state == MODULE_STATE_UNFORMED)
3819 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303820 if (within_module(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 return mod;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 return NULL;
3824}
Tim Abbottc6b37802008-12-05 19:03:59 -05003825EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
Rusty Russelle6104992009-03-31 13:05:31 -06003827/*
3828 * is_module_text_address - is this address inside module code?
3829 * @addr: the address to check.
3830 *
3831 * See is_module_address() if you simply want to see if the address is
3832 * anywhere in a module. See kernel_text_address() for testing if an
3833 * address corresponds to kernel or module code.
3834 */
3835bool is_module_text_address(unsigned long addr)
3836{
3837 bool ret;
3838
3839 preempt_disable();
3840 ret = __module_text_address(addr) != NULL;
3841 preempt_enable();
3842
3843 return ret;
3844}
3845
3846/*
3847 * __module_text_address - get the module whose code contains an address.
3848 * @addr: the address.
3849 *
3850 * Must be called with preempt disabled or module mutex held so that
3851 * module doesn't get freed during this.
3852 */
3853struct module *__module_text_address(unsigned long addr)
3854{
3855 struct module *mod = __module_address(addr);
3856 if (mod) {
3857 /* Make sure it's within the text section. */
3858 if (!within(addr, mod->module_init, mod->init_text_size)
3859 && !within(addr, mod->module_core, mod->core_text_size))
3860 mod = NULL;
3861 }
3862 return mod;
3863}
Tim Abbottc6b37802008-12-05 19:03:59 -05003864EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06003865
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866/* Don't grab lock, we're oopsing. */
3867void print_modules(void)
3868{
3869 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07003870 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Linus Torvaldsb2311252009-06-16 11:07:14 -07003872 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02003873 /* Most callers should already have preempt disabled, but make sure */
3874 preempt_disable();
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303875 list_for_each_entry_rcu(mod, &modules, list) {
3876 if (mod->state == MODULE_STATE_UNFORMED)
3877 continue;
Jiri Slaby27bba4d2014-02-03 11:13:13 +10303878 pr_cont(" %s%s", mod->name, module_flags(mod, buf));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303879 }
Andi Kleend72b3752008-08-30 10:09:00 +02003880 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003881 if (last_unloaded_module[0])
Jiri Slaby27bba4d2014-02-03 11:13:13 +10303882 pr_cont(" [last unloaded: %s]", last_unloaded_module);
3883 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884}
3885
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003887/* Generate the signature for all relevant module structures here.
3888 * If these change, we don't want to try to parse the module. */
3889void module_layout(struct module *mod,
3890 struct modversion_info *ver,
3891 struct kernel_param *kp,
3892 struct kernel_symbol *ks,
Mathieu Desnoyers65498642011-01-26 17:26:22 -05003893 struct tracepoint * const *tp)
Rusty Russell8c8ef422009-03-31 13:05:34 -06003894{
3895}
3896EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897#endif