blob: 381105b2aaae30d8a79893a1df0b86d1949db672 [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);
641
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
Eric Dumazetbd77c042012-01-13 09:32:14 +1030775unsigned long module_refcount(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030777 return (unsigned long)atomic_read(&mod->refcnt) - MODULE_REF_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779EXPORT_SYMBOL(module_refcount);
780
781/* This exists whether we can unload or not */
782static void free_module(struct module *mod);
783
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100784SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
785 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
787 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800788 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 int ret, forced = 0;
790
Kees Cook3d433212009-04-02 15:49:29 -0700791 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800792 return -EPERM;
793
794 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
795 return -EFAULT;
796 name[MODULE_NAME_LEN-1] = '\0';
797
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200798 if (mutex_lock_interruptible(&module_mutex) != 0)
799 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 mod = find_module(name);
802 if (!mod) {
803 ret = -ENOENT;
804 goto out;
805 }
806
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700807 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* Other modules depend on us: get rid of them first. */
809 ret = -EWOULDBLOCK;
810 goto out;
811 }
812
813 /* Doing init or already dying? */
814 if (mod->state != MODULE_STATE_LIVE) {
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930815 /* FIXME: if (force), slam module count damn the torpedoes */
Jim Cromie5e124162011-12-06 12:11:31 -0700816 pr_debug("%s already dying\n", mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 ret = -EBUSY;
818 goto out;
819 }
820
821 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700822 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800823 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (!forced) {
825 /* This module can't be removed */
826 ret = -EBUSY;
827 goto out;
828 }
829 }
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /* Stop the machine so refcounts can't move and disable module. */
832 ret = try_stop_module(mod, flags, &forced);
833 if (ret != 0)
834 goto out;
835
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200836 mutex_unlock(&module_mutex);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300837 /* Final destruction now no one is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200838 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200840 blocking_notifier_call_chain(&module_notify_list,
841 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800842 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600843
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100844 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500845 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Rusty Russell75676502010-06-05 11:17:36 -0600847 free_module(mod);
848 return 0;
849out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800850 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return ret;
852}
853
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800854static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct module_use *use;
857 int printed_something = 0;
858
Eric Dumazetbd77c042012-01-13 09:32:14 +1030859 seq_printf(m, " %lu ", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Ionut Alexa6da0b562014-11-10 09:31:29 +1030861 /*
862 * Always include a trailing , so userspace can differentiate
863 * between this and the old multi-field proc format.
864 */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700865 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700867 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (mod->init != NULL && mod->exit == NULL) {
871 printed_something = 1;
Ionut Alexa6da0b562014-11-10 09:31:29 +1030872 seq_puts(m, "[permanent],");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874
875 if (!printed_something)
Ionut Alexa6da0b562014-11-10 09:31:29 +1030876 seq_puts(m, "-");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879void __symbol_put(const char *symbol)
880{
881 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Rusty Russell24da1cb2007-07-15 23:41:46 -0700883 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500884 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 BUG();
886 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700887 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889EXPORT_SYMBOL(__symbol_put);
890
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930891/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892void symbol_put_addr(void *addr)
893{
Trent Piepho5e376612006-05-15 09:44:06 -0700894 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930895 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930897 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700898 return;
899
Rusty Russella6e6abd2009-03-31 13:05:31 -0600900 /* module_text_address is safe here: we're supposed to have reference
901 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930902 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600903 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700904 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906EXPORT_SYMBOL_GPL(symbol_put_addr);
907
908static ssize_t show_refcnt(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +0930909 struct module_kobject *mk, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Eric Dumazetbd77c042012-01-13 09:32:14 +1030911 return sprintf(buffer, "%lu\n", module_refcount(mk->mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Kay Sieverscca3e702012-01-13 09:32:15 +1030914static struct module_attribute modinfo_refcnt =
915 __ATTR(refcnt, 0444, show_refcnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Steven Rostedtd53799b2012-03-26 12:50:52 +1030917void __module_get(struct module *module)
918{
919 if (module) {
920 preempt_disable();
Masami Hiramatsu2f35c412014-11-10 09:29:29 +1030921 atomic_inc(&module->refcnt);
Steven Rostedtd53799b2012-03-26 12:50:52 +1030922 trace_module_get(module, _RET_IP_);
923 preempt_enable();
924 }
925}
926EXPORT_SYMBOL(__module_get);
927
928bool try_module_get(struct module *module)
929{
930 bool ret = true;
931
932 if (module) {
933 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030934 /* Note: here, we can fail to get a reference */
935 if (likely(module_is_live(module) &&
936 atomic_inc_not_zero(&module->refcnt) != 0))
Steven Rostedtd53799b2012-03-26 12:50:52 +1030937 trace_module_get(module, _RET_IP_);
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030938 else
Steven Rostedtd53799b2012-03-26 12:50:52 +1030939 ret = false;
940
941 preempt_enable();
942 }
943 return ret;
944}
945EXPORT_SYMBOL(try_module_get);
946
Al Virof6a57032006-10-18 01:47:25 -0400947void module_put(struct module *module)
948{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030949 int ret;
950
Al Virof6a57032006-10-18 01:47:25 -0400951 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900952 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030953 ret = atomic_dec_if_positive(&module->refcnt);
954 WARN_ON(ret < 0); /* Failed to put refcount */
Li Zefanae832d12010-03-24 10:57:43 +0800955 trace_module_put(module, _RET_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +0900956 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400957 }
958}
959EXPORT_SYMBOL(module_put);
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800962static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 /* We don't know the usage count, or what modules are using. */
Ionut Alexa6da0b562014-11-10 09:31:29 +1030965 seq_puts(m, " - -");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
968static inline void module_unload_free(struct module *mod)
969{
970}
971
Rusty Russell9bea7f22010-06-05 11:17:37 -0600972int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Rusty Russell9bea7f22010-06-05 11:17:37 -0600974 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600976EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600978static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600980 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982#endif /* CONFIG_MODULE_UNLOAD */
983
Kevin Winchester53999bf2012-01-15 19:32:55 -0400984static size_t module_flags_taint(struct module *mod, char *buf)
985{
986 size_t l = 0;
987
988 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
989 buf[l++] = 'P';
990 if (mod->taints & (1 << TAINT_OOT_MODULE))
991 buf[l++] = 'O';
992 if (mod->taints & (1 << TAINT_FORCED_MODULE))
993 buf[l++] = 'F';
994 if (mod->taints & (1 << TAINT_CRAP))
995 buf[l++] = 'C';
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +1030996 if (mod->taints & (1 << TAINT_UNSIGNED_MODULE))
Rusty Russell57673c22014-03-31 14:39:57 +1030997 buf[l++] = 'E';
Kevin Winchester53999bf2012-01-15 19:32:55 -0400998 /*
999 * TAINT_FORCED_RMMOD: could be added.
Dave Jones8c904872014-02-26 10:49:49 -05001000 * TAINT_CPU_OUT_OF_SPEC, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
Kevin Winchester53999bf2012-01-15 19:32:55 -04001001 * apply to modules.
1002 */
1003 return l;
1004}
1005
Kay Sievers1f717402006-11-24 12:15:25 +01001006static ssize_t show_initstate(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301007 struct module_kobject *mk, char *buffer)
Kay Sievers1f717402006-11-24 12:15:25 +01001008{
1009 const char *state = "unknown";
1010
Kay Sievers4befb022011-07-24 22:06:04 +09301011 switch (mk->mod->state) {
Kay Sievers1f717402006-11-24 12:15:25 +01001012 case MODULE_STATE_LIVE:
1013 state = "live";
1014 break;
1015 case MODULE_STATE_COMING:
1016 state = "coming";
1017 break;
1018 case MODULE_STATE_GOING:
1019 state = "going";
1020 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301021 default:
1022 BUG();
Kay Sievers1f717402006-11-24 12:15:25 +01001023 }
1024 return sprintf(buffer, "%s\n", state);
1025}
1026
Kay Sieverscca3e702012-01-13 09:32:15 +10301027static struct module_attribute modinfo_initstate =
1028 __ATTR(initstate, 0444, show_initstate, NULL);
Kay Sievers1f717402006-11-24 12:15:25 +01001029
Kay Sievers88bfa322011-07-24 22:06:04 +09301030static ssize_t store_uevent(struct module_attribute *mattr,
1031 struct module_kobject *mk,
1032 const char *buffer, size_t count)
1033{
1034 enum kobject_action action;
1035
1036 if (kobject_action_type(buffer, count, &action) == 0)
1037 kobject_uevent(&mk->kobj, action);
1038 return count;
1039}
1040
Kay Sieverscca3e702012-01-13 09:32:15 +10301041struct module_attribute module_uevent =
1042 __ATTR(uevent, 0200, NULL, store_uevent);
1043
1044static ssize_t show_coresize(struct module_attribute *mattr,
1045 struct module_kobject *mk, char *buffer)
1046{
1047 return sprintf(buffer, "%u\n", mk->mod->core_size);
1048}
1049
1050static struct module_attribute modinfo_coresize =
1051 __ATTR(coresize, 0444, show_coresize, NULL);
1052
1053static ssize_t show_initsize(struct module_attribute *mattr,
1054 struct module_kobject *mk, char *buffer)
1055{
1056 return sprintf(buffer, "%u\n", mk->mod->init_size);
1057}
1058
1059static struct module_attribute modinfo_initsize =
1060 __ATTR(initsize, 0444, show_initsize, NULL);
1061
1062static ssize_t show_taint(struct module_attribute *mattr,
1063 struct module_kobject *mk, char *buffer)
1064{
1065 size_t l;
1066
1067 l = module_flags_taint(mk->mod, buffer);
1068 buffer[l++] = '\n';
1069 return l;
1070}
1071
1072static struct module_attribute modinfo_taint =
1073 __ATTR(taint, 0444, show_taint, NULL);
Kay Sievers88bfa322011-07-24 22:06:04 +09301074
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001075static struct module_attribute *modinfo_attrs[] = {
Kay Sieverscca3e702012-01-13 09:32:15 +10301076 &module_uevent,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001077 &modinfo_version,
1078 &modinfo_srcversion,
Kay Sieverscca3e702012-01-13 09:32:15 +10301079 &modinfo_initstate,
1080 &modinfo_coresize,
1081 &modinfo_initsize,
1082 &modinfo_taint,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001083#ifdef CONFIG_MODULE_UNLOAD
Kay Sieverscca3e702012-01-13 09:32:15 +10301084 &modinfo_refcnt,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001085#endif
1086 NULL,
1087};
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089static const char vermagic[] = VERMAGIC_STRING;
1090
Rusty Russellc6e665c2009-03-31 13:05:33 -06001091static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -07001092{
1093#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -07001094 if (!test_taint(TAINT_FORCED_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001095 pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
Rusty Russell373d4d02013-01-21 17:17:39 +10301096 add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds826e4502008-05-04 17:04:16 -07001097 return 0;
1098#else
1099 return -ENOEXEC;
1100#endif
1101}
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -06001104/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
1105static unsigned long maybe_relocated(unsigned long crc,
1106 const struct module *crc_owner)
1107{
1108#ifdef ARCH_RELOCATES_KCRCTAB
1109 if (crc_owner == NULL)
1110 return crc - (unsigned long)reloc_start;
1111#endif
1112 return crc;
1113}
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115static int check_version(Elf_Shdr *sechdrs,
1116 unsigned int versindex,
1117 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301118 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001119 const unsigned long *crc,
1120 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
1122 unsigned int i, num_versions;
1123 struct modversion_info *versions;
1124
1125 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1126 if (!crc)
1127 return 1;
1128
Rusty Russella5dd6972008-05-09 16:24:21 +10001129 /* No versions at all? modprobe --force does this. */
1130 if (versindex == 0)
1131 return try_to_force_load(mod, symname) == 0;
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 versions = (void *) sechdrs[versindex].sh_addr;
1134 num_versions = sechdrs[versindex].sh_size
1135 / sizeof(struct modversion_info);
1136
1137 for (i = 0; i < num_versions; i++) {
1138 if (strcmp(versions[i].name, symname) != 0)
1139 continue;
1140
Rusty Russelld4703ae2009-12-15 16:28:32 -06001141 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return 1;
Jim Cromie5e124162011-12-06 12:11:31 -07001143 pr_debug("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -06001144 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001145 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001147
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001148 pr_warn("%s: no symbol version for %s\n", mod->name, symname);
Rusty Russella5dd6972008-05-09 16:24:21 +10001149 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -07001150
1151bad_version:
Ionut Alexa6da0b562014-11-10 09:31:29 +10301152 pr_warn("%s: disagrees about version of symbol %s\n",
Linus Torvalds826e4502008-05-04 17:04:16 -07001153 mod->name, symname);
1154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1158 unsigned int versindex,
1159 struct module *mod)
1160{
1161 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Rusty Russell75676502010-06-05 11:17:36 -06001163 /* Since this should be found in kernel (which can't be removed),
1164 * no locking is necessary. */
Rusty Russellb92021b2013-03-15 15:04:17 +10301165 if (!find_symbol(VMLINUX_SYMBOL_STR(module_layout), NULL,
Mike Frysinger6560dc12009-07-23 23:42:08 +09301166 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 BUG();
James Hogana4b6a772013-03-18 19:38:56 +10301168 return check_version(sechdrs, versindex,
1169 VMLINUX_SYMBOL_STR(module_layout), mod, crc,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001170 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172
Rusty Russell91e37a72008-05-09 16:25:28 +10001173/* First part is kernel version, which we ignore if module has crcs. */
1174static inline int same_magic(const char *amagic, const char *bmagic,
1175 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Rusty Russell91e37a72008-05-09 16:25:28 +10001177 if (has_crcs) {
1178 amagic += strcspn(amagic, " ");
1179 bmagic += strcspn(bmagic, " ");
1180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return strcmp(amagic, bmagic) == 0;
1182}
1183#else
1184static inline int check_version(Elf_Shdr *sechdrs,
1185 unsigned int versindex,
1186 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301187 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001188 const unsigned long *crc,
1189 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
1191 return 1;
1192}
1193
1194static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1195 unsigned int versindex,
1196 struct module *mod)
1197{
1198 return 1;
1199}
1200
Rusty Russell91e37a72008-05-09 16:25:28 +10001201static inline int same_magic(const char *amagic, const char *bmagic,
1202 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
1204 return strcmp(amagic, bmagic) == 0;
1205}
1206#endif /* CONFIG_MODVERSIONS */
1207
Rusty Russell75676502010-06-05 11:17:36 -06001208/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001209static const struct kernel_symbol *resolve_symbol(struct module *mod,
1210 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001211 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001212 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001215 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 const unsigned long *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001217 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Rusty Russell75676502010-06-05 11:17:36 -06001219 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001220 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001221 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001222 if (!sym)
1223 goto unlock;
1224
Rusty Russell49668682010-08-05 12:59:10 -06001225 if (!check_version(info->sechdrs, info->index.vers, name, mod, crc,
1226 owner)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001227 sym = ERR_PTR(-EINVAL);
1228 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001230
1231 err = ref_module(mod, owner);
1232 if (err) {
1233 sym = ERR_PTR(err);
1234 goto getname;
1235 }
1236
1237getname:
1238 /* We must make copy under the lock if we failed to get ref. */
1239 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1240unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001241 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001242 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
1244
Rusty Russell49668682010-08-05 12:59:10 -06001245static const struct kernel_symbol *
1246resolve_symbol_wait(struct module *mod,
1247 const struct load_info *info,
1248 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001249{
1250 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001251 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001252
1253 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001254 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1255 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001256 30 * HZ) <= 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001257 pr_warn("%s: gave up waiting for init of module %s.\n",
1258 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001259 }
1260 return ksym;
1261}
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263/*
1264 * /sys/module/foo/sections stuff
1265 * J. Corbet <corbet@lwn.net>
1266 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001267#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001268
Rusty Russell8f6d0372010-08-05 12:59:09 -06001269#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001270static inline bool sect_empty(const Elf_Shdr *sect)
1271{
1272 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1273}
1274
Ionut Alexa6da0b562014-11-10 09:31:29 +10301275struct module_sect_attr {
Rusty Russella58730c2008-03-13 09:03:44 +00001276 struct module_attribute mattr;
1277 char *name;
1278 unsigned long address;
1279};
1280
Ionut Alexa6da0b562014-11-10 09:31:29 +10301281struct module_sect_attrs {
Rusty Russella58730c2008-03-13 09:03:44 +00001282 struct attribute_group grp;
1283 unsigned int nsections;
1284 struct module_sect_attr attrs[0];
1285};
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287static ssize_t module_sect_show(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301288 struct module_kobject *mk, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290 struct module_sect_attr *sattr =
1291 container_of(mattr, struct module_sect_attr, mattr);
Kees Cook9f36e2c2011-03-22 16:34:22 -07001292 return sprintf(buf, "0x%pK\n", (void *)sattr->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001295static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1296{
Rusty Russella58730c2008-03-13 09:03:44 +00001297 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001298
1299 for (section = 0; section < sect_attrs->nsections; section++)
1300 kfree(sect_attrs->attrs[section].name);
1301 kfree(sect_attrs);
1302}
1303
Rusty Russell8f6d0372010-08-05 12:59:09 -06001304static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
1306 unsigned int nloaded = 0, i, size[2];
1307 struct module_sect_attrs *sect_attrs;
1308 struct module_sect_attr *sattr;
1309 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001312 for (i = 0; i < info->hdr->e_shnum; i++)
1313 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 nloaded++;
1315 size[0] = ALIGN(sizeof(*sect_attrs)
1316 + nloaded * sizeof(sect_attrs->attrs[0]),
1317 sizeof(sect_attrs->grp.attrs[0]));
1318 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001319 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1320 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return;
1322
1323 /* Setup section attributes. */
1324 sect_attrs->grp.name = "sections";
1325 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1326
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001327 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 sattr = &sect_attrs->attrs[0];
1329 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001330 for (i = 0; i < info->hdr->e_shnum; i++) {
1331 Elf_Shdr *sec = &info->sechdrs[i];
1332 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001333 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001334 sattr->address = sec->sh_addr;
1335 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001336 GFP_KERNEL);
1337 if (sattr->name == NULL)
1338 goto out;
1339 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001340 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 sattr->mattr.show = module_sect_show;
1342 sattr->mattr.store = NULL;
1343 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 sattr->mattr.attr.mode = S_IRUGO;
1345 *(gattr++) = &(sattr++)->mattr.attr;
1346 }
1347 *gattr = NULL;
1348
1349 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1350 goto out;
1351
1352 mod->sect_attrs = sect_attrs;
1353 return;
1354 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001355 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
1358static void remove_sect_attrs(struct module *mod)
1359{
1360 if (mod->sect_attrs) {
1361 sysfs_remove_group(&mod->mkobj.kobj,
1362 &mod->sect_attrs->grp);
1363 /* We are positive that no one is using any sect attrs
1364 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001365 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 mod->sect_attrs = NULL;
1367 }
1368}
1369
Roland McGrath6d760132007-10-16 23:26:40 -07001370/*
1371 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1372 */
1373
1374struct module_notes_attrs {
1375 struct kobject *dir;
1376 unsigned int notes;
1377 struct bin_attribute attrs[0];
1378};
1379
Chris Wright2c3c8be2010-05-12 18:28:57 -07001380static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001381 struct bin_attribute *bin_attr,
1382 char *buf, loff_t pos, size_t count)
1383{
1384 /*
1385 * The caller checked the pos and count against our size.
1386 */
1387 memcpy(buf, bin_attr->private + pos, count);
1388 return count;
1389}
1390
1391static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1392 unsigned int i)
1393{
1394 if (notes_attrs->dir) {
1395 while (i-- > 0)
1396 sysfs_remove_bin_file(notes_attrs->dir,
1397 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001398 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001399 }
1400 kfree(notes_attrs);
1401}
1402
Rusty Russell8f6d0372010-08-05 12:59:09 -06001403static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001404{
1405 unsigned int notes, loaded, i;
1406 struct module_notes_attrs *notes_attrs;
1407 struct bin_attribute *nattr;
1408
Ingo Molnarea6bff32009-08-28 10:44:56 +02001409 /* failed to create section attributes, so can't create notes */
1410 if (!mod->sect_attrs)
1411 return;
1412
Roland McGrath6d760132007-10-16 23:26:40 -07001413 /* Count notes sections and allocate structures. */
1414 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001415 for (i = 0; i < info->hdr->e_shnum; i++)
1416 if (!sect_empty(&info->sechdrs[i]) &&
1417 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001418 ++notes;
1419
1420 if (notes == 0)
1421 return;
1422
1423 notes_attrs = kzalloc(sizeof(*notes_attrs)
1424 + notes * sizeof(notes_attrs->attrs[0]),
1425 GFP_KERNEL);
1426 if (notes_attrs == NULL)
1427 return;
1428
1429 notes_attrs->notes = notes;
1430 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001431 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1432 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001433 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001434 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001435 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001436 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1437 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001438 nattr->size = info->sechdrs[i].sh_size;
1439 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001440 nattr->read = module_notes_read;
1441 ++nattr;
1442 }
1443 ++loaded;
1444 }
1445
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001446 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001447 if (!notes_attrs->dir)
1448 goto out;
1449
1450 for (i = 0; i < notes; ++i)
1451 if (sysfs_create_bin_file(notes_attrs->dir,
1452 &notes_attrs->attrs[i]))
1453 goto out;
1454
1455 mod->notes_attrs = notes_attrs;
1456 return;
1457
1458 out:
1459 free_notes_attrs(notes_attrs, i);
1460}
1461
1462static void remove_notes_attrs(struct module *mod)
1463{
1464 if (mod->notes_attrs)
1465 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1466}
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001469
Rusty Russell8f6d0372010-08-05 12:59:09 -06001470static inline void add_sect_attrs(struct module *mod,
1471 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
1473}
1474
1475static inline void remove_sect_attrs(struct module *mod)
1476{
1477}
Roland McGrath6d760132007-10-16 23:26:40 -07001478
Rusty Russell8f6d0372010-08-05 12:59:09 -06001479static inline void add_notes_attrs(struct module *mod,
1480 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001481{
1482}
1483
1484static inline void remove_notes_attrs(struct module *mod)
1485{
1486}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001487#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001489static void add_usage_links(struct module *mod)
1490{
1491#ifdef CONFIG_MODULE_UNLOAD
1492 struct module_use *use;
1493 int nowarn;
1494
Rusty Russell75676502010-06-05 11:17:36 -06001495 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001496 list_for_each_entry(use, &mod->target_list, target_list) {
1497 nowarn = sysfs_create_link(use->target->holders_dir,
1498 &mod->mkobj.kobj, mod->name);
1499 }
Rusty Russell75676502010-06-05 11:17:36 -06001500 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001501#endif
1502}
1503
1504static void del_usage_links(struct module *mod)
1505{
1506#ifdef CONFIG_MODULE_UNLOAD
1507 struct module_use *use;
1508
Rusty Russell75676502010-06-05 11:17:36 -06001509 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001510 list_for_each_entry(use, &mod->target_list, target_list)
1511 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001512 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001513#endif
1514}
1515
Rusty Russell6407ebb22010-06-05 11:17:36 -06001516static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001517{
1518 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001519 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001520 int error = 0;
1521 int i;
1522
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001523 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1524 (ARRAY_SIZE(modinfo_attrs) + 1)),
1525 GFP_KERNEL);
1526 if (!mod->modinfo_attrs)
1527 return -ENOMEM;
1528
1529 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001530 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1531 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001532 (attr->test && attr->test(mod))) {
1533 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001534 sysfs_attr_init(&temp_attr->attr);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301535 error = sysfs_create_file(&mod->mkobj.kobj,
1536 &temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001537 ++temp_attr;
1538 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001539 }
1540 return error;
1541}
1542
Rusty Russell6407ebb22010-06-05 11:17:36 -06001543static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001544{
1545 struct module_attribute *attr;
1546 int i;
1547
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001548 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1549 /* pick a field to test for end of list */
1550 if (!attr->attr.name)
1551 break;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301552 sysfs_remove_file(&mod->mkobj.kobj, &attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001553 if (attr->free)
1554 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001555 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001556 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001557}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Li Zhong942e4432013-09-03 16:33:57 +09301559static void mod_kobject_put(struct module *mod)
1560{
1561 DECLARE_COMPLETION_ONSTACK(c);
1562 mod->mkobj.kobj_completion = &c;
1563 kobject_put(&mod->mkobj.kobj);
1564 wait_for_completion(&c);
1565}
1566
Rusty Russell6407ebb22010-06-05 11:17:36 -06001567static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001570 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001572 if (!module_sysfs_initialized) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001573 pr_err("%s: module sysfs not initialized\n", mod->name);
Ed Swierk1cc5f712006-09-25 16:25:36 -07001574 err = -EINVAL;
1575 goto out;
1576 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001577
1578 kobj = kset_find_obj(module_kset, mod->name);
1579 if (kobj) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001580 pr_err("%s: module is already loaded\n", mod->name);
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001581 kobject_put(kobj);
1582 err = -EINVAL;
1583 goto out;
1584 }
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001587
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001588 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1589 mod->mkobj.kobj.kset = module_kset;
1590 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1591 "%s", mod->name);
1592 if (err)
Li Zhong942e4432013-09-03 16:33:57 +09301593 mod_kobject_put(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001594
Kay Sievers97c146e2007-11-29 23:46:11 +01001595 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001596out:
1597 return err;
1598}
1599
Rusty Russell6407ebb22010-06-05 11:17:36 -06001600static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001601 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001602 struct kernel_param *kparam,
1603 unsigned int num_params)
1604{
1605 int err;
1606
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001607 err = mod_sysfs_init(mod);
1608 if (err)
1609 goto out;
1610
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001611 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001612 if (!mod->holders_dir) {
1613 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001614 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001615 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 err = module_param_sysfs_setup(mod, kparam, num_params);
1618 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001619 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Matt Domschc988d2b2005-06-23 22:05:15 -07001621 err = module_add_modinfo_attrs(mod);
1622 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001623 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001624
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001625 add_usage_links(mod);
Rusty Russell8f6d0372010-08-05 12:59:09 -06001626 add_sect_attrs(mod, info);
1627 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001628
Kay Sieverse17e0f52006-11-24 12:15:25 +01001629 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return 0;
1631
Kay Sieverse17e0f52006-11-24 12:15:25 +01001632out_unreg_param:
1633 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001634out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001635 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001636out_unreg:
Li Zhong942e4432013-09-03 16:33:57 +09301637 mod_kobject_put(mod);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001638out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return err;
1640}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001641
1642static void mod_sysfs_fini(struct module *mod)
1643{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001644 remove_notes_attrs(mod);
1645 remove_sect_attrs(mod);
Li Zhong942e4432013-09-03 16:33:57 +09301646 mod_kobject_put(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001647}
1648
Rusty Russell8f6d0372010-08-05 12:59:09 -06001649#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001650
Rusty Russell8f6d0372010-08-05 12:59:09 -06001651static int mod_sysfs_setup(struct module *mod,
1652 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001653 struct kernel_param *kparam,
1654 unsigned int num_params)
1655{
1656 return 0;
1657}
1658
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001659static void mod_sysfs_fini(struct module *mod)
1660{
1661}
1662
Rusty Russell36b03602010-08-05 12:59:09 -06001663static void module_remove_modinfo_attrs(struct module *mod)
1664{
1665}
1666
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001667static void del_usage_links(struct module *mod)
1668{
1669}
1670
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001671#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Rusty Russell36b03602010-08-05 12:59:09 -06001673static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001675 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001676 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001678 kobject_put(mod->mkobj.drivers_dir);
1679 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001680 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
matthieu castet84e1c6b2010-11-16 22:35:16 +01001683#ifdef CONFIG_DEBUG_SET_MODULE_RONX
1684/*
1685 * LKM RO/NX protection: protect module's text/ro-data
1686 * from modification and any data from execution.
1687 */
1688void set_page_attributes(void *start, void *end, int (*set)(unsigned long start, int num_pages))
1689{
1690 unsigned long begin_pfn = PFN_DOWN((unsigned long)start);
1691 unsigned long end_pfn = PFN_DOWN((unsigned long)end);
1692
1693 if (end_pfn > begin_pfn)
1694 set(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1695}
1696
1697static void set_section_ro_nx(void *base,
1698 unsigned long text_size,
1699 unsigned long ro_size,
1700 unsigned long total_size)
1701{
1702 /* begin and end PFNs of the current subsection */
1703 unsigned long begin_pfn;
1704 unsigned long end_pfn;
1705
1706 /*
1707 * Set RO for module text and RO-data:
1708 * - Always protect first page.
1709 * - Do not protect last partial page.
1710 */
1711 if (ro_size > 0)
1712 set_page_attributes(base, base + ro_size, set_memory_ro);
1713
1714 /*
1715 * Set NX permissions for module data:
1716 * - Do not protect first partial page.
1717 * - Always protect last page.
1718 */
1719 if (total_size > text_size) {
1720 begin_pfn = PFN_UP((unsigned long)base + text_size);
1721 end_pfn = PFN_UP((unsigned long)base + total_size);
1722 if (end_pfn > begin_pfn)
1723 set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1724 }
1725}
1726
Jan Glauber01526ed2011-05-19 16:55:26 -06001727static void unset_module_core_ro_nx(struct module *mod)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001728{
Jan Glauber01526ed2011-05-19 16:55:26 -06001729 set_page_attributes(mod->module_core + mod->core_text_size,
1730 mod->module_core + mod->core_size,
1731 set_memory_x);
1732 set_page_attributes(mod->module_core,
1733 mod->module_core + mod->core_ro_size,
1734 set_memory_rw);
1735}
1736
1737static void unset_module_init_ro_nx(struct module *mod)
1738{
1739 set_page_attributes(mod->module_init + mod->init_text_size,
1740 mod->module_init + mod->init_size,
1741 set_memory_x);
1742 set_page_attributes(mod->module_init,
1743 mod->module_init + mod->init_ro_size,
1744 set_memory_rw);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001745}
1746
1747/* Iterate through all modules and set each module's text as RW */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001748void set_all_modules_text_rw(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001749{
1750 struct module *mod;
1751
1752 mutex_lock(&module_mutex);
1753 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301754 if (mod->state == MODULE_STATE_UNFORMED)
1755 continue;
matthieu castet84e1c6b2010-11-16 22:35:16 +01001756 if ((mod->module_core) && (mod->core_text_size)) {
1757 set_page_attributes(mod->module_core,
1758 mod->module_core + mod->core_text_size,
1759 set_memory_rw);
1760 }
1761 if ((mod->module_init) && (mod->init_text_size)) {
1762 set_page_attributes(mod->module_init,
1763 mod->module_init + mod->init_text_size,
1764 set_memory_rw);
1765 }
1766 }
1767 mutex_unlock(&module_mutex);
1768}
1769
1770/* Iterate through all modules and set each module's text as RO */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001771void set_all_modules_text_ro(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001772{
1773 struct module *mod;
1774
1775 mutex_lock(&module_mutex);
1776 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301777 if (mod->state == MODULE_STATE_UNFORMED)
1778 continue;
matthieu castet84e1c6b2010-11-16 22:35:16 +01001779 if ((mod->module_core) && (mod->core_text_size)) {
1780 set_page_attributes(mod->module_core,
1781 mod->module_core + mod->core_text_size,
1782 set_memory_ro);
1783 }
1784 if ((mod->module_init) && (mod->init_text_size)) {
1785 set_page_attributes(mod->module_init,
1786 mod->module_init + mod->init_text_size,
1787 set_memory_ro);
1788 }
1789 }
1790 mutex_unlock(&module_mutex);
1791}
1792#else
1793static 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 -06001794static void unset_module_core_ro_nx(struct module *mod) { }
1795static void unset_module_init_ro_nx(struct module *mod) { }
matthieu castet84e1c6b2010-11-16 22:35:16 +01001796#endif
1797
Jonas Bonn74e08fc2011-06-30 21:22:11 +02001798void __weak module_free(struct module *mod, void *module_region)
1799{
1800 vfree(module_region);
1801}
1802
1803void __weak module_arch_cleanup(struct module *mod)
1804{
1805}
1806
Rusty Russell75676502010-06-05 11:17:36 -06001807/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808static void free_module(struct module *mod)
1809{
Li Zefan7ead8b82009-08-17 16:56:28 +08001810 trace_module_free(mod);
1811
Rusty Russell36b03602010-08-05 12:59:09 -06001812 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Rusty Russell944a1fa2013-04-17 13:20:03 +09301814 /* We leave it in list to prevent duplicate loads, but make sure
1815 * that noone uses it while it's being deconstructed. */
Prarit Bhargavad3051b42014-10-14 02:51:39 +10301816 mutex_lock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09301817 mod->state = MODULE_STATE_UNFORMED;
Prarit Bhargavad3051b42014-10-14 02:51:39 +10301818 mutex_unlock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09301819
Jason Baronb82bab4b2010-07-27 13:18:01 -07001820 /* Remove dynamic debug info */
1821 ddebug_remove_module(mod->name);
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 /* Arch-specific cleanup. */
1824 module_arch_cleanup(mod);
1825
1826 /* Module unload stuff */
1827 module_unload_free(mod);
1828
Rusty Russelle180a6b2009-03-31 13:05:29 -06001829 /* Free any allocated parameters. */
1830 destroy_params(mod->kp, mod->num_kp);
1831
Rusty Russell944a1fa2013-04-17 13:20:03 +09301832 /* Now we can delete it from the lists */
1833 mutex_lock(&module_mutex);
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10301834 /* Unlink carefully: kallsyms could be walking list. */
1835 list_del_rcu(&mod->list);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10301836 /* Remove this module from bug list, this uses list_del_rcu */
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10301837 module_bug_cleanup(mod);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10301838 /* Wait for RCU synchronizing before releasing mod->list and buglist. */
1839 synchronize_rcu();
Rusty Russell944a1fa2013-04-17 13:20:03 +09301840 mutex_unlock(&module_mutex);
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 /* This may be NULL, but that's OK */
Jan Glauber01526ed2011-05-19 16:55:26 -06001843 unset_module_init_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 module_free(mod, mod->module_init);
1845 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001846 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001847
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001848 /* Free lock-classes: */
1849 lockdep_free_key_range(mod->module_core, mod->core_size);
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 /* Finally, free the core (containing the module structure) */
Jan Glauber01526ed2011-05-19 16:55:26 -06001852 unset_module_core_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 module_free(mod, mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001854
1855#ifdef CONFIG_MPU
1856 update_protections(current->mm);
1857#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
1860void *__symbol_get(const char *symbol)
1861{
1862 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001863 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Rusty Russell24da1cb2007-07-15 23:41:46 -07001865 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001866 sym = find_symbol(symbol, &owner, NULL, true, true);
1867 if (sym && strong_try_module_get(owner))
1868 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001869 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Tim Abbott414fd312008-12-05 19:03:56 -05001871 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873EXPORT_SYMBOL_GPL(__symbol_get);
1874
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001875/*
1876 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001877 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06001878 *
1879 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001880 */
1881static int verify_export_symbols(struct module *mod)
1882{
Rusty Russellb2111042008-05-01 21:15:00 -05001883 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001884 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001885 const struct kernel_symbol *s;
1886 struct {
1887 const struct kernel_symbol *sym;
1888 unsigned int num;
1889 } arr[] = {
1890 { mod->syms, mod->num_syms },
1891 { mod->gpl_syms, mod->num_gpl_syms },
1892 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001893#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001894 { mod->unused_syms, mod->num_unused_syms },
1895 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001896#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001897 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001898
Rusty Russellb2111042008-05-01 21:15:00 -05001899 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1900 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06001901 if (find_symbol(s->name, &owner, NULL, true, false)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001902 pr_err("%s: exports duplicate symbol %s"
Rusty Russellb2111042008-05-01 21:15:00 -05001903 " (owned by %s)\n",
1904 mod->name, s->name, module_name(owner));
1905 return -ENOEXEC;
1906 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001907 }
Rusty Russellb2111042008-05-01 21:15:00 -05001908 }
1909 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001910}
1911
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001912/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06001913static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
Rusty Russell49668682010-08-05 12:59:10 -06001915 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
1916 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06001918 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001920 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Rusty Russell49668682010-08-05 12:59:10 -06001922 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
1923 const char *name = info->strtab + sym[i].st_name;
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 switch (sym[i].st_shndx) {
1926 case SHN_COMMON:
Joe Mario80375982014-02-08 09:01:09 +01001927 /* Ignore common symbols */
1928 if (!strncmp(name, "__gnu_lto", 9))
1929 break;
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 /* We compiled with -fno-common. These are not
1932 supposed to happen. */
Jim Cromie5e124162011-12-06 12:11:31 -07001933 pr_debug("Common symbol: %s\n", name);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301934 pr_warn("%s: please compile with -fno-common\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 mod->name);
1936 ret = -ENOEXEC;
1937 break;
1938
1939 case SHN_ABS:
1940 /* Don't need to do anything */
Jim Cromie5e124162011-12-06 12:11:31 -07001941 pr_debug("Absolute symbol: 0x%08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 (long)sym[i].st_value);
1943 break;
1944
1945 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06001946 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001948 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05001949 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001951 }
1952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001954 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 break;
1956
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001957 pr_warn("%s: Unknown symbol %s (err %li)\n",
1958 mod->name, name, PTR_ERR(ksym));
Rusty Russell9bea7f22010-06-05 11:17:37 -06001959 ret = PTR_ERR(ksym) ?: -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 break;
1961
1962 default:
1963 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06001964 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09001965 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 else
Rusty Russell49668682010-08-05 12:59:10 -06001967 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 sym[i].st_value += secbase;
1969 break;
1970 }
1971 }
1972
1973 return ret;
1974}
1975
Rusty Russell49668682010-08-05 12:59:10 -06001976static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06001977{
1978 unsigned int i;
1979 int err = 0;
1980
1981 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06001982 for (i = 1; i < info->hdr->e_shnum; i++) {
1983 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06001984
1985 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06001986 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06001987 continue;
1988
1989 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06001990 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06001991 continue;
1992
Rusty Russell49668682010-08-05 12:59:10 -06001993 if (info->sechdrs[i].sh_type == SHT_REL)
1994 err = apply_relocate(info->sechdrs, info->strtab,
1995 info->index.sym, i, mod);
1996 else if (info->sechdrs[i].sh_type == SHT_RELA)
1997 err = apply_relocate_add(info->sechdrs, info->strtab,
1998 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06001999 if (err < 0)
2000 break;
2001 }
2002 return err;
2003}
2004
Helge Deller088af9a2008-12-31 12:31:18 +01002005/* Additional bytes needed by arch in front of individual sections */
2006unsigned int __weak arch_mod_section_prepend(struct module *mod,
2007 unsigned int section)
2008{
2009 /* default implementation just returns zero */
2010 return 0;
2011}
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01002014static long get_offset(struct module *mod, unsigned int *size,
2015 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 long ret;
2018
Helge Deller088af9a2008-12-31 12:31:18 +01002019 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2021 *size = ret + sechdr->sh_size;
2022 return ret;
2023}
2024
2025/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2026 might -- code, read-only data, read-write data, small data. Tally
2027 sizes, and place the offsets into sh_entsize fields: high bit means it
2028 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06002029static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
2031 static unsigned long const masks[][2] = {
2032 /* NOTE: all executable code must be the first section
2033 * in this array; otherwise modify the text_size
2034 * finder in the two loops below */
2035 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2036 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
2037 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2038 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2039 };
2040 unsigned int m, i;
2041
Rusty Russell49668682010-08-05 12:59:10 -06002042 for (i = 0; i < info->hdr->e_shnum; i++)
2043 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Jim Cromie5e124162011-12-06 12:11:31 -07002045 pr_debug("Core section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002047 for (i = 0; i < info->hdr->e_shnum; ++i) {
2048 Elf_Shdr *s = &info->sechdrs[i];
2049 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2052 || (s->sh_flags & masks[m][1])
2053 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002054 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002056 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
Jim Cromie5e124162011-12-06 12:11:31 -07002057 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002059 switch (m) {
2060 case 0: /* executable */
2061 mod->core_size = debug_align(mod->core_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 mod->core_text_size = mod->core_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002063 break;
2064 case 1: /* RO: text and ro-data */
2065 mod->core_size = debug_align(mod->core_size);
2066 mod->core_ro_size = mod->core_size;
2067 break;
2068 case 3: /* whole core */
2069 mod->core_size = debug_align(mod->core_size);
2070 break;
2071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
2073
Jim Cromie5e124162011-12-06 12:11:31 -07002074 pr_debug("Init section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002076 for (i = 0; i < info->hdr->e_shnum; ++i) {
2077 Elf_Shdr *s = &info->sechdrs[i];
2078 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2081 || (s->sh_flags & masks[m][1])
2082 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002083 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002085 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 | INIT_OFFSET_MASK);
Jim Cromie5e124162011-12-06 12:11:31 -07002087 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002089 switch (m) {
2090 case 0: /* executable */
2091 mod->init_size = debug_align(mod->init_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 mod->init_text_size = mod->init_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002093 break;
2094 case 1: /* RO: text and ro-data */
2095 mod->init_size = debug_align(mod->init_size);
2096 mod->init_ro_size = mod->init_size;
2097 break;
2098 case 3: /* whole init */
2099 mod->init_size = debug_align(mod->init_size);
2100 break;
2101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
2103}
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105static void set_license(struct module *mod, const char *license)
2106{
2107 if (!license)
2108 license = "unspecified";
2109
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002110 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07002111 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002112 pr_warn("%s: module license '%s' taints kernel.\n",
2113 mod->name, license);
Rusty Russell373d4d02013-01-21 17:17:39 +10302114 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2115 LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117}
2118
2119/* Parse tag=value strings from .modinfo section */
2120static char *next_string(char *string, unsigned long *secsize)
2121{
2122 /* Skip non-zero chars */
2123 while (string[0]) {
2124 string++;
2125 if ((*secsize)-- <= 1)
2126 return NULL;
2127 }
2128
2129 /* Skip any zero padding. */
2130 while (!string[0]) {
2131 string++;
2132 if ((*secsize)-- <= 1)
2133 return NULL;
2134 }
2135 return string;
2136}
2137
Rusty Russell49668682010-08-05 12:59:10 -06002138static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 char *p;
2141 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06002142 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2143 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Rusty Russell49668682010-08-05 12:59:10 -06002145 for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2147 return p + taglen + 1;
2148 }
2149 return NULL;
2150}
2151
Rusty Russell49668682010-08-05 12:59:10 -06002152static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07002153{
2154 struct module_attribute *attr;
2155 int i;
2156
2157 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2158 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06002159 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07002160 }
2161}
Matt Domschc988d2b2005-06-23 22:05:15 -07002162
Rusty Russella263f772009-09-25 00:32:58 -06002163static void free_modinfo(struct module *mod)
2164{
2165 struct module_attribute *attr;
2166 int i;
2167
2168 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2169 if (attr->free)
2170 attr->free(mod);
2171 }
2172}
2173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01002175
2176/* lookup symbol in given range of kernel_symbols */
2177static const struct kernel_symbol *lookup_symbol(const char *name,
2178 const struct kernel_symbol *start,
2179 const struct kernel_symbol *stop)
2180{
Alessio Igor Bogani9d634872011-05-18 22:35:59 +02002181 return bsearch(name, start, stop - start,
2182 sizeof(struct kernel_symbol), cmp_name);
WANG Cong15bba372008-07-24 15:41:48 +01002183}
2184
Tim Abbottca4787b2009-01-05 08:40:10 -06002185static int is_exported(const char *name, unsigned long value,
2186 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
Tim Abbottca4787b2009-01-05 08:40:10 -06002188 const struct kernel_symbol *ks;
2189 if (!mod)
2190 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01002191 else
Tim Abbottca4787b2009-01-05 08:40:10 -06002192 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
2193 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
2196/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06002197static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
Rusty Russelleded41c2010-08-05 12:59:07 -06002199 const Elf_Shdr *sechdrs = info->sechdrs;
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2202 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2203 return 'v';
2204 else
2205 return 'w';
2206 }
2207 if (sym->st_shndx == SHN_UNDEF)
2208 return 'U';
2209 if (sym->st_shndx == SHN_ABS)
2210 return 'a';
2211 if (sym->st_shndx >= SHN_LORESERVE)
2212 return '?';
2213 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2214 return 't';
2215 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2216 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2217 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2218 return 'r';
2219 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2220 return 'g';
2221 else
2222 return 'd';
2223 }
2224 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2225 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2226 return 's';
2227 else
2228 return 'b';
2229 }
Rusty Russelleded41c2010-08-05 12:59:07 -06002230 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2231 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06002233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 return '?';
2235}
2236
Jan Beulich4a496222009-07-06 14:50:42 +01002237static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
Ionut Alexa6da0b562014-11-10 09:31:29 +10302238 unsigned int shnum)
Jan Beulich4a496222009-07-06 14:50:42 +01002239{
2240 const Elf_Shdr *sec;
2241
2242 if (src->st_shndx == SHN_UNDEF
2243 || src->st_shndx >= shnum
2244 || !src->st_name)
2245 return false;
2246
2247 sec = sechdrs + src->st_shndx;
2248 if (!(sec->sh_flags & SHF_ALLOC)
2249#ifndef CONFIG_KALLSYMS_ALL
2250 || !(sec->sh_flags & SHF_EXECINSTR)
2251#endif
2252 || (sec->sh_entsize & INIT_OFFSET_MASK))
2253 return false;
2254
2255 return true;
2256}
2257
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302258/*
2259 * We only allocate and copy the strings needed by the parts of symtab
2260 * we keep. This is simple, but has the effect of making multiple
2261 * copies of duplicates. We could be more sophisticated, see
2262 * linux-kernel thread starting with
2263 * <73defb5e4bca04a6431392cc341112b1@localhost>.
2264 */
Rusty Russell49668682010-08-05 12:59:10 -06002265static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002266{
Rusty Russell49668682010-08-05 12:59:10 -06002267 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2268 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01002269 const Elf_Sym *src;
Satoru Takeuchi54523ec2012-12-05 12:29:04 +10302270 unsigned int i, nsrc, ndst, strtab_size = 0;
Jan Beulich4a496222009-07-06 14:50:42 +01002271
2272 /* Put symbol section at end of init part of module. */
2273 symsect->sh_flags |= SHF_ALLOC;
2274 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06002275 info->index.sym) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002276 pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002277
Rusty Russell49668682010-08-05 12:59:10 -06002278 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002279 nsrc = symsect->sh_size / sizeof(*src);
Kevin Cernekee70b1e9162011-11-12 19:08:55 -08002280
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302281 /* Compute total space required for the core symbols' strtab. */
Rusty Russell59ef28b2012-10-25 10:49:25 +10302282 for (ndst = i = 0; i < nsrc; i++) {
2283 if (i == 0 ||
2284 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2285 strtab_size += strlen(&info->strtab[src[i].st_name])+1;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302286 ndst++;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002287 }
Rusty Russell59ef28b2012-10-25 10:49:25 +10302288 }
Jan Beulich4a496222009-07-06 14:50:42 +01002289
2290 /* Append room for core symbols at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06002291 info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302292 info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
2293 mod->core_size += strtab_size;
Jan Beulich4a496222009-07-06 14:50:42 +01002294
Jan Beulich554bdfe2009-07-06 14:51:44 +01002295 /* Put string table section at end of init part of module. */
2296 strsect->sh_flags |= SHF_ALLOC;
2297 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06002298 info->index.str) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002299 pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002300}
2301
Rusty Russell811d66a2010-08-05 12:59:12 -06002302static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303{
Jan Beulich4a496222009-07-06 14:50:42 +01002304 unsigned int i, ndst;
2305 const Elf_Sym *src;
2306 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002307 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002308 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Rusty Russelleded41c2010-08-05 12:59:07 -06002310 mod->symtab = (void *)symsec->sh_addr;
2311 mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002312 /* Make sure we get permanent strtab: don't use info->strtab. */
2313 mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315 /* Set types up while we still have access to sections. */
2316 for (i = 0; i < mod->num_symtab; i++)
Rusty Russelleded41c2010-08-05 12:59:07 -06002317 mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002318
Rusty Russelld9131882010-08-05 12:59:08 -06002319 mod->core_symtab = dst = mod->module_core + info->symoffs;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302320 mod->core_strtab = s = mod->module_core + info->stroffs;
Jan Beulich4a496222009-07-06 14:50:42 +01002321 src = mod->symtab;
Rusty Russell59ef28b2012-10-25 10:49:25 +10302322 for (ndst = i = 0; i < mod->num_symtab; i++) {
2323 if (i == 0 ||
2324 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2325 dst[ndst] = src[i];
2326 dst[ndst++].st_name = s - mod->core_strtab;
2327 s += strlcpy(s, &mod->strtab[src[i].st_name],
2328 KSYM_NAME_LEN) + 1;
2329 }
Jan Beulich4a496222009-07-06 14:50:42 +01002330 }
2331 mod->core_num_syms = ndst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
2333#else
Rusty Russell49668682010-08-05 12:59:10 -06002334static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002335{
2336}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002337
Michał Mirosławabbce902010-09-20 01:58:08 +02002338static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
2340}
2341#endif /* CONFIG_KALLSYMS */
2342
Jason Barone9d376f2009-02-05 11:51:38 -05002343static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002344{
Rusty Russell811d66a2010-08-05 12:59:12 -06002345 if (!debug)
2346 return;
Jason Barone9d376f2009-02-05 11:51:38 -05002347#ifdef CONFIG_DYNAMIC_DEBUG
2348 if (ddebug_add_module(debug, num, debug->modname))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002349 pr_err("dynamic debug error adding module: %s\n",
2350 debug->modname);
Jason Barone9d376f2009-02-05 11:51:38 -05002351#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002352}
Jason Baron346e15b2008-08-12 16:46:19 -04002353
Yehuda Sadehff49d742010-07-03 13:07:35 +10002354static void dynamic_debug_remove(struct _ddebug *debug)
2355{
2356 if (debug)
2357 ddebug_remove_module(debug->modname);
2358}
2359
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002360void * __weak module_alloc(unsigned long size)
2361{
Rusty Russell82fab442012-12-11 09:38:33 +10302362 return vmalloc_exec(size);
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002363}
2364
Rusty Russell3a642e92008-07-22 19:24:28 -05002365static void *module_alloc_update_bounds(unsigned long size)
2366{
2367 void *ret = module_alloc(size);
2368
2369 if (ret) {
Rusty Russell75676502010-06-05 11:17:36 -06002370 mutex_lock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002371 /* Update module bounds. */
2372 if ((unsigned long)ret < module_addr_min)
2373 module_addr_min = (unsigned long)ret;
2374 if ((unsigned long)ret + size > module_addr_max)
2375 module_addr_max = (unsigned long)ret + size;
Rusty Russell75676502010-06-05 11:17:36 -06002376 mutex_unlock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002377 }
2378 return ret;
2379}
2380
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002381#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002382static void kmemleak_load_module(const struct module *mod,
2383 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002384{
2385 unsigned int i;
2386
2387 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002388 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002389
Rusty Russell49668682010-08-05 12:59:10 -06002390 for (i = 1; i < info->hdr->e_shnum; i++) {
Steven Rostedt06c94942013-05-15 20:33:01 +01002391 /* Scan all writable sections that's not executable */
2392 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
2393 !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
2394 (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002395 continue;
2396
Rusty Russell49668682010-08-05 12:59:10 -06002397 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2398 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002399 }
2400}
2401#else
Rusty Russell49668682010-08-05 12:59:10 -06002402static inline void kmemleak_load_module(const struct module *mod,
2403 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002404{
2405}
2406#endif
2407
Rusty Russell106a4ee2012-09-26 10:09:40 +01002408#ifdef CONFIG_MODULE_SIG
Kees Cook34e11692012-10-16 07:31:07 +10302409static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002410{
2411 int err = -ENOKEY;
Kees Cook34e11692012-10-16 07:31:07 +10302412 const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
2413 const void *mod = info->hdr;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002414
Kees Cook34e11692012-10-16 07:31:07 +10302415 if (info->len > markerlen &&
2416 memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
David Howellscaabe242012-10-20 01:19:29 +01002417 /* We truncate the module to discard the signature */
Kees Cook34e11692012-10-16 07:31:07 +10302418 info->len -= markerlen;
2419 err = mod_verify_sig(mod, &info->len);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002420 }
2421
2422 if (!err) {
2423 info->sig_ok = true;
2424 return 0;
2425 }
2426
2427 /* Not having a signature is only an error if we're strict. */
2428 if (err == -ENOKEY && !sig_enforce)
2429 err = 0;
2430
2431 return err;
2432}
2433#else /* !CONFIG_MODULE_SIG */
Kees Cook34e11692012-10-16 07:31:07 +10302434static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002435{
2436 return 0;
2437}
2438#endif /* !CONFIG_MODULE_SIG */
2439
Kees Cook34e11692012-10-16 07:31:07 +10302440/* Sanity checks against invalid binaries, wrong arch, weird elf version. */
2441static int elf_header_check(struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002442{
Kees Cook34e11692012-10-16 07:31:07 +10302443 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002444 return -ENOEXEC;
2445
Kees Cook34e11692012-10-16 07:31:07 +10302446 if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2447 || info->hdr->e_type != ET_REL
2448 || !elf_check_arch(info->hdr)
2449 || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2450 return -ENOEXEC;
2451
2452 if (info->hdr->e_shoff >= info->len
2453 || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2454 info->len - info->hdr->e_shoff))
2455 return -ENOEXEC;
2456
2457 return 0;
2458}
2459
2460/* Sets info->hdr and info->len. */
2461static int copy_module_from_user(const void __user *umod, unsigned long len,
2462 struct load_info *info)
2463{
Kees Cook2e72d512012-10-16 07:32:07 +10302464 int err;
2465
Kees Cook34e11692012-10-16 07:31:07 +10302466 info->len = len;
2467 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002468 return -ENOEXEC;
2469
Kees Cook2e72d512012-10-16 07:32:07 +10302470 err = security_kernel_module_from_file(NULL);
2471 if (err)
2472 return err;
2473
Rusty Russell40dd2562010-08-05 12:59:03 -06002474 /* Suck in entire file: we'll want most of it. */
Kees Cook34e11692012-10-16 07:31:07 +10302475 info->hdr = vmalloc(info->len);
2476 if (!info->hdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06002477 return -ENOMEM;
2478
Kees Cook34e11692012-10-16 07:31:07 +10302479 if (copy_from_user(info->hdr, umod, info->len) != 0) {
2480 vfree(info->hdr);
2481 return -EFAULT;
Rusty Russell40dd2562010-08-05 12:59:03 -06002482 }
2483
Rusty Russell40dd2562010-08-05 12:59:03 -06002484 return 0;
Kees Cook34e11692012-10-16 07:31:07 +10302485}
Rusty Russell40dd2562010-08-05 12:59:03 -06002486
Kees Cook34e11692012-10-16 07:31:07 +10302487/* Sets info->hdr and info->len. */
2488static int copy_module_from_fd(int fd, struct load_info *info)
2489{
Al Viroa2e05782013-08-30 12:41:41 -04002490 struct fd f = fdget(fd);
Kees Cook34e11692012-10-16 07:31:07 +10302491 int err;
2492 struct kstat stat;
2493 loff_t pos;
2494 ssize_t bytes = 0;
2495
Al Viroa2e05782013-08-30 12:41:41 -04002496 if (!f.file)
Kees Cook34e11692012-10-16 07:31:07 +10302497 return -ENOEXEC;
2498
Al Viroa2e05782013-08-30 12:41:41 -04002499 err = security_kernel_module_from_file(f.file);
Kees Cook2e72d512012-10-16 07:32:07 +10302500 if (err)
2501 goto out;
2502
Al Viroa2e05782013-08-30 12:41:41 -04002503 err = vfs_getattr(&f.file->f_path, &stat);
Kees Cook34e11692012-10-16 07:31:07 +10302504 if (err)
2505 goto out;
2506
2507 if (stat.size > INT_MAX) {
2508 err = -EFBIG;
2509 goto out;
2510 }
Sasha Levin52441fa2013-01-03 11:09:53 +10302511
2512 /* Don't hand 0 to vmalloc, it whines. */
2513 if (stat.size == 0) {
2514 err = -EINVAL;
2515 goto out;
2516 }
2517
Kees Cook34e11692012-10-16 07:31:07 +10302518 info->hdr = vmalloc(stat.size);
2519 if (!info->hdr) {
2520 err = -ENOMEM;
2521 goto out;
2522 }
2523
2524 pos = 0;
2525 while (pos < stat.size) {
Al Viroa2e05782013-08-30 12:41:41 -04002526 bytes = kernel_read(f.file, pos, (char *)(info->hdr) + pos,
Kees Cook34e11692012-10-16 07:31:07 +10302527 stat.size - pos);
2528 if (bytes < 0) {
2529 vfree(info->hdr);
2530 err = bytes;
2531 goto out;
2532 }
2533 if (bytes == 0)
2534 break;
2535 pos += bytes;
2536 }
2537 info->len = pos;
2538
2539out:
Al Viroa2e05782013-08-30 12:41:41 -04002540 fdput(f);
Rusty Russell40dd2562010-08-05 12:59:03 -06002541 return err;
2542}
2543
Rusty Russelld9131882010-08-05 12:59:08 -06002544static void free_copy(struct load_info *info)
2545{
Rusty Russelld9131882010-08-05 12:59:08 -06002546 vfree(info->hdr);
2547}
2548
Rusty Russell2f3238a2012-10-22 18:09:41 +10302549static int rewrite_section_headers(struct load_info *info, int flags)
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002550{
2551 unsigned int i;
2552
2553 /* This should always be true, but let's be sure. */
2554 info->sechdrs[0].sh_addr = 0;
2555
2556 for (i = 1; i < info->hdr->e_shnum; i++) {
2557 Elf_Shdr *shdr = &info->sechdrs[i];
2558 if (shdr->sh_type != SHT_NOBITS
2559 && info->len < shdr->sh_offset + shdr->sh_size) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002560 pr_err("Module len %lu truncated\n", info->len);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002561 return -ENOEXEC;
2562 }
2563
2564 /* Mark all sections sh_addr with their address in the
2565 temporary image. */
2566 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2567
2568#ifndef CONFIG_MODULE_UNLOAD
2569 /* Don't load .exit sections */
2570 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2571 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2572#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002573 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002574
2575 /* Track but don't keep modinfo and version sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302576 if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
2577 info->index.vers = 0; /* Pretend no __versions section! */
2578 else
2579 info->index.vers = find_sec(info, "__versions");
Rusty Russell49668682010-08-05 12:59:10 -06002580 info->index.info = find_sec(info, ".modinfo");
Rusty Russelld6df72a2010-08-05 12:59:07 -06002581 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2582 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002583 return 0;
2584}
2585
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002586/*
2587 * Set up our basic convenience variables (pointers to section headers,
2588 * search for module section index etc), and do some basic section
2589 * verification.
2590 *
2591 * Return the temporary module pointer (we'll replace it with the final
2592 * one when we move the module sections around).
2593 */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302594static struct module *setup_load_info(struct load_info *info, int flags)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002595{
2596 unsigned int i;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002597 int err;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002598 struct module *mod;
2599
2600 /* Set up the convenience variables */
2601 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002602 info->secstrings = (void *)info->hdr
2603 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002604
Rusty Russell2f3238a2012-10-22 18:09:41 +10302605 err = rewrite_section_headers(info, flags);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002606 if (err)
2607 return ERR_PTR(err);
2608
2609 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002610 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002611 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2612 info->index.sym = i;
2613 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002614 info->strtab = (char *)info->hdr
2615 + info->sechdrs[info->index.str].sh_offset;
2616 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002617 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002618 }
2619
Rusty Russell49668682010-08-05 12:59:10 -06002620 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002621 if (!info->index.mod) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002622 pr_warn("No module found in object\n");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002623 return ERR_PTR(-ENOEXEC);
2624 }
2625 /* This is temporary: point mod into copy of data. */
2626 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2627
2628 if (info->index.sym == 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002629 pr_warn("%s: module has no symbols (stripped?)\n", mod->name);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002630 return ERR_PTR(-ENOEXEC);
2631 }
2632
Rusty Russell49668682010-08-05 12:59:10 -06002633 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002634
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002635 /* Check module struct version now, before we try to use module. */
2636 if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
2637 return ERR_PTR(-ENOEXEC);
2638
2639 return mod;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002640}
2641
Rusty Russell2f3238a2012-10-22 18:09:41 +10302642static int check_modinfo(struct module *mod, struct load_info *info, int flags)
Rusty Russell40dd2562010-08-05 12:59:03 -06002643{
Rusty Russell49668682010-08-05 12:59:10 -06002644 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002645 int err;
2646
Rusty Russell2f3238a2012-10-22 18:09:41 +10302647 if (flags & MODULE_INIT_IGNORE_VERMAGIC)
2648 modmagic = NULL;
2649
Rusty Russell40dd2562010-08-05 12:59:03 -06002650 /* This is allowed: modprobe --force will invalidate it. */
2651 if (!modmagic) {
2652 err = try_to_force_load(mod, "bad vermagic");
2653 if (err)
2654 return err;
Rusty Russell49668682010-08-05 12:59:10 -06002655 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002656 pr_err("%s: version magic '%s' should be '%s'\n",
Rusty Russell40dd2562010-08-05 12:59:03 -06002657 mod->name, modmagic, vermagic);
2658 return -ENOEXEC;
2659 }
2660
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002661 if (!get_modinfo(info, "intree"))
Rusty Russell373d4d02013-01-21 17:17:39 +10302662 add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002663
Rusty Russell49668682010-08-05 12:59:10 -06002664 if (get_modinfo(info, "staging")) {
Rusty Russell373d4d02013-01-21 17:17:39 +10302665 add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002666 pr_warn("%s: module is from the staging directory, the quality "
2667 "is unknown, you have been warned.\n", mod->name);
Rusty Russell40dd2562010-08-05 12:59:03 -06002668 }
Rusty Russell22e268e2010-08-05 12:59:05 -06002669
2670 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06002671 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06002672
Rusty Russell40dd2562010-08-05 12:59:03 -06002673 return 0;
2674}
2675
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302676static int find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002677{
Rusty Russell49668682010-08-05 12:59:10 -06002678 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002679 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06002680 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002681 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002682 mod->crcs = section_addr(info, "__kcrctab");
2683 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002684 sizeof(*mod->gpl_syms),
2685 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002686 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
2687 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002688 "__ksymtab_gpl_future",
2689 sizeof(*mod->gpl_future_syms),
2690 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002691 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002692
2693#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06002694 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002695 sizeof(*mod->unused_syms),
2696 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002697 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
2698 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002699 sizeof(*mod->unused_gpl_syms),
2700 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002701 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002702#endif
2703#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06002704 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002705 sizeof(*mod->ctors), &mod->num_ctors);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302706 if (!mod->ctors)
2707 mod->ctors = section_objs(info, ".init_array",
2708 sizeof(*mod->ctors), &mod->num_ctors);
2709 else if (find_sec(info, ".init_array")) {
2710 /*
2711 * This shouldn't happen with same compiler and binutils
2712 * building all parts of the module.
2713 */
Ionut Alexa6da0b562014-11-10 09:31:29 +10302714 pr_warn("%s: has both .ctors and .init_array.\n",
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302715 mod->name);
2716 return -EINVAL;
2717 }
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002718#endif
2719
2720#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -05002721 mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
2722 sizeof(*mod->tracepoints_ptrs),
2723 &mod->num_tracepoints);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002724#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -04002725#ifdef HAVE_JUMP_LABEL
2726 mod->jump_entries = section_objs(info, "__jump_table",
2727 sizeof(*mod->jump_entries),
2728 &mod->num_jump_entries);
2729#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002730#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06002731 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002732 sizeof(*mod->trace_events),
2733 &mod->num_trace_events);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002734#endif
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002735#ifdef CONFIG_TRACING
2736 mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
2737 sizeof(*mod->trace_bprintk_fmt_start),
2738 &mod->num_trace_bprintk_fmt);
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002739#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002740#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2741 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06002742 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002743 sizeof(*mod->ftrace_callsites),
2744 &mod->num_ftrace_callsites);
2745#endif
Rusty Russell22e268e2010-08-05 12:59:05 -06002746
Rusty Russell811d66a2010-08-05 12:59:12 -06002747 mod->extable = section_objs(info, "__ex_table",
2748 sizeof(*mod->extable), &mod->num_exentries);
2749
Rusty Russell49668682010-08-05 12:59:10 -06002750 if (section_addr(info, "__obsparm"))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002751 pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06002752
2753 info->debug = section_objs(info, "__verbose",
2754 sizeof(*info->debug), &info->num_debug);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302755
2756 return 0;
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002757}
2758
Rusty Russell49668682010-08-05 12:59:10 -06002759static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002760{
2761 int i;
2762 void *ptr;
2763
2764 /* Do the allocs. */
2765 ptr = module_alloc_update_bounds(mod->core_size);
2766 /*
2767 * The pointer to this block is stored in the module structure
2768 * which is inside the block. Just mark it as not being a
2769 * leak.
2770 */
2771 kmemleak_not_leak(ptr);
2772 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06002773 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002774
2775 memset(ptr, 0, mod->core_size);
2776 mod->module_core = ptr;
2777
Rusty Russell82fab442012-12-11 09:38:33 +10302778 if (mod->init_size) {
2779 ptr = module_alloc_update_bounds(mod->init_size);
2780 /*
2781 * The pointer to this block is stored in the module structure
2782 * which is inside the block. This block doesn't need to be
2783 * scanned as it contains data and code that will be freed
2784 * after the module is initialized.
2785 */
2786 kmemleak_ignore(ptr);
2787 if (!ptr) {
2788 module_free(mod, mod->module_core);
2789 return -ENOMEM;
2790 }
2791 memset(ptr, 0, mod->init_size);
2792 mod->module_init = ptr;
2793 } else
2794 mod->module_init = NULL;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002795
2796 /* Transfer each section which specifies SHF_ALLOC */
Jim Cromie5e124162011-12-06 12:11:31 -07002797 pr_debug("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06002798 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002799 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06002800 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002801
Rusty Russell49668682010-08-05 12:59:10 -06002802 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002803 continue;
2804
Rusty Russell49668682010-08-05 12:59:10 -06002805 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002806 dest = mod->module_init
Rusty Russell49668682010-08-05 12:59:10 -06002807 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002808 else
Rusty Russell49668682010-08-05 12:59:10 -06002809 dest = mod->module_core + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002810
Rusty Russell49668682010-08-05 12:59:10 -06002811 if (shdr->sh_type != SHT_NOBITS)
2812 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002813 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06002814 shdr->sh_addr = (unsigned long)dest;
Jim Cromie5e124162011-12-06 12:11:31 -07002815 pr_debug("\t0x%lx %s\n",
2816 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002817 }
Rusty Russelld9131882010-08-05 12:59:08 -06002818
2819 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002820}
2821
Rusty Russell49668682010-08-05 12:59:10 -06002822static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06002823{
2824 /*
2825 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2826 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2827 * using GPL-only symbols it needs.
2828 */
2829 if (strcmp(mod->name, "ndiswrapper") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302830 add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06002831
2832 /* driverloader was caught wrongly pretending to be under GPL */
2833 if (strcmp(mod->name, "driverloader") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302834 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2835 LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06002836
Matthew Garrettc99af372012-06-22 13:49:31 -04002837 /* lve claims to be GPL but upstream won't provide source */
2838 if (strcmp(mod->name, "lve") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302839 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2840 LOCKDEP_NOW_UNRELIABLE);
Matthew Garrettc99af372012-06-22 13:49:31 -04002841
Rusty Russell22e268e2010-08-05 12:59:05 -06002842#ifdef CONFIG_MODVERSIONS
2843 if ((mod->num_syms && !mod->crcs)
2844 || (mod->num_gpl_syms && !mod->gpl_crcs)
2845 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2846#ifdef CONFIG_UNUSED_SYMBOLS
2847 || (mod->num_unused_syms && !mod->unused_crcs)
2848 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2849#endif
2850 ) {
2851 return try_to_force_load(mod,
2852 "no versions for exported symbols");
2853 }
2854#endif
2855 return 0;
2856}
2857
2858static void flush_module_icache(const struct module *mod)
2859{
2860 mm_segment_t old_fs;
2861
2862 /* flush the icache in correct context */
2863 old_fs = get_fs();
2864 set_fs(KERNEL_DS);
2865
2866 /*
2867 * Flush the instruction cache, since we've played with text.
2868 * Do it before processing of module parameters, so the module
2869 * can provide parameter accessor functions of its own.
2870 */
2871 if (mod->module_init)
2872 flush_icache_range((unsigned long)mod->module_init,
2873 (unsigned long)mod->module_init
2874 + mod->init_size);
2875 flush_icache_range((unsigned long)mod->module_core,
2876 (unsigned long)mod->module_core + mod->core_size);
2877
2878 set_fs(old_fs);
2879}
2880
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002881int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
2882 Elf_Shdr *sechdrs,
2883 char *secstrings,
2884 struct module *mod)
2885{
2886 return 0;
2887}
2888
Rusty Russell2f3238a2012-10-22 18:09:41 +10302889static struct module *layout_and_allocate(struct load_info *info, int flags)
Rusty Russelld9131882010-08-05 12:59:08 -06002890{
2891 /* Module within temporary copy. */
2892 struct module *mod;
2893 int err;
2894
Rusty Russell2f3238a2012-10-22 18:09:41 +10302895 mod = setup_load_info(info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002896 if (IS_ERR(mod))
2897 return mod;
2898
Rusty Russell2f3238a2012-10-22 18:09:41 +10302899 err = check_modinfo(mod, info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002900 if (err)
2901 return ERR_PTR(err);
2902
2903 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06002904 err = module_frob_arch_sections(info->hdr, info->sechdrs,
2905 info->secstrings, mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002906 if (err < 0)
Rusty Russell8d8022e2013-07-03 10:06:28 +09302907 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06002908
Rusty Russell8d8022e2013-07-03 10:06:28 +09302909 /* We will do a special allocation for per-cpu sections later. */
2910 info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06002911
2912 /* Determine total sizes, and put offsets in sh_entsize. For now
2913 this is done generically; there doesn't appear to be any
2914 special cases for the architectures. */
Rusty Russell49668682010-08-05 12:59:10 -06002915 layout_sections(mod, info);
Rusty Russell49668682010-08-05 12:59:10 -06002916 layout_symtab(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002917
2918 /* Allocate and move to the final place */
Rusty Russell49668682010-08-05 12:59:10 -06002919 err = move_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002920 if (err)
Rusty Russell8d8022e2013-07-03 10:06:28 +09302921 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06002922
2923 /* Module has been copied to its final place now: return it. */
2924 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06002925 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002926 return mod;
Rusty Russelld9131882010-08-05 12:59:08 -06002927}
2928
2929/* mod is no longer valid after this! */
2930static void module_deallocate(struct module *mod, struct load_info *info)
2931{
Rusty Russelld9131882010-08-05 12:59:08 -06002932 percpu_modfree(mod);
2933 module_free(mod, mod->module_init);
2934 module_free(mod, mod->module_core);
2935}
2936
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002937int __weak module_finalize(const Elf_Ehdr *hdr,
2938 const Elf_Shdr *sechdrs,
2939 struct module *me)
2940{
2941 return 0;
2942}
2943
Rusty Russell811d66a2010-08-05 12:59:12 -06002944static int post_relocation(struct module *mod, const struct load_info *info)
2945{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002946 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002947 sort_extable(mod->extable, mod->extable + mod->num_exentries);
2948
2949 /* Copy relocated percpu area over. */
2950 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
2951 info->sechdrs[info->index.pcpu].sh_size);
2952
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002953 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002954 add_kallsyms(mod, info);
2955
2956 /* Arch-specific module finalizing. */
2957 return module_finalize(info->hdr, info->sechdrs, mod);
2958}
2959
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09302960/* Is this module of this name done loading? No locks held. */
2961static bool finished_loading(const char *name)
2962{
2963 struct module *mod;
2964 bool ret;
2965
2966 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09302967 mod = find_module_all(name, strlen(name), true);
Rusty Russell0d21b0e2013-01-12 11:38:44 +10302968 ret = !mod || mod->state == MODULE_STATE_LIVE
2969 || mod->state == MODULE_STATE_GOING;
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09302970 mutex_unlock(&module_mutex);
2971
2972 return ret;
2973}
2974
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002975/* Call module constructors. */
2976static void do_mod_ctors(struct module *mod)
2977{
2978#ifdef CONFIG_CONSTRUCTORS
2979 unsigned long i;
2980
2981 for (i = 0; i < mod->num_ctors; i++)
2982 mod->ctors[i]();
2983#endif
2984}
2985
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986/* This is where the real work happens */
Kees Cook34e11692012-10-16 07:31:07 +10302987static int do_init_module(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 int ret = 0;
2990
Tejun Heo774a1222013-01-15 18:52:51 -08002991 /*
2992 * We want to find out whether @mod uses async during init. Clear
2993 * PF_USED_ASYNC. async_schedule*() will set it.
2994 */
2995 current->flags &= ~PF_USED_ASYNC;
2996
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002997 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 /* Start the module */
2999 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07003000 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 if (ret < 0) {
Ionut Alexa6da0b562014-11-10 09:31:29 +10303002 /*
3003 * Init routine failed: abort. Try to protect us from
3004 * buggy refcounters.
3005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003007 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07003008 module_put(mod);
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02003009 blocking_notifier_call_chain(&module_notify_list,
3010 MODULE_STATE_GOING, mod);
Rusty Russellaf49d922007-10-16 23:26:27 -07003011 free_module(mod);
Rusty Russell6f139092012-09-28 14:31:03 +09303012 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 return ret;
3014 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003015 if (ret > 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003016 pr_warn("%s: '%s'->init suspiciously returned %d, it should "
3017 "follow 0/-E convention\n"
3018 "%s: loading module anyway...\n",
3019 __func__, mod->name, ret, __func__);
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003020 dump_stack();
3021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Rusty Russell6f139092012-09-28 14:31:03 +09303023 /* Now it's a first class citizen! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 mod->state = MODULE_STATE_LIVE;
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08003025 blocking_notifier_call_chain(&module_notify_list,
3026 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07003027
Tejun Heo774a1222013-01-15 18:52:51 -08003028 /*
3029 * We need to finish all async code before the module init sequence
3030 * is done. This has potential to deadlock. For example, a newly
3031 * detected block device can trigger request_module() of the
3032 * default iosched from async probing task. Once userland helper
3033 * reaches here, async_synchronize_full() will wait on the async
3034 * task waiting on request_module() and deadlock.
3035 *
3036 * This deadlock is avoided by perfomring async_synchronize_full()
3037 * iff module init queued any async jobs. This isn't a full
3038 * solution as it will deadlock the same if module loading from
3039 * async jobs nests more than once; however, due to the various
3040 * constraints, this hack seems to be the best option for now.
3041 * Please refer to the following thread for details.
3042 *
3043 * http://thread.gmane.org/gmane.linux.kernel/1420814
3044 */
3045 if (current->flags & PF_USED_ASYNC)
3046 async_synchronize_full();
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07003047
Rusty Russell6c5db222008-03-10 11:43:52 -07003048 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 /* Drop initial reference. */
3050 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06003051 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01003052#ifdef CONFIG_KALLSYMS
3053 mod->num_symtab = mod->core_num_syms;
3054 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01003055 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01003056#endif
Jan Glauber01526ed2011-05-19 16:55:26 -06003057 unset_module_init_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 module_free(mod, mod->module_init);
3059 mod->module_init = NULL;
3060 mod->init_size = 0;
Jan Glauber4d103802011-05-19 16:55:25 -06003061 mod->init_ro_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08003063 mutex_unlock(&module_mutex);
Rusty Russell6f139092012-09-28 14:31:03 +09303064 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
3066 return 0;
3067}
3068
Kees Cook34e11692012-10-16 07:31:07 +10303069static int may_init_module(void)
3070{
3071 if (!capable(CAP_SYS_MODULE) || modules_disabled)
3072 return -EPERM;
3073
3074 return 0;
3075}
3076
Rusty Russella3535c72013-01-21 17:18:59 +10303077/*
3078 * We try to place it in the list now to make sure it's unique before
3079 * we dedicate too many resources. In particular, temporary percpu
3080 * memory exhaustion.
3081 */
3082static int add_unformed_module(struct module *mod)
3083{
3084 int err;
3085 struct module *old;
3086
3087 mod->state = MODULE_STATE_UNFORMED;
3088
3089again:
3090 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303091 old = find_module_all(mod->name, strlen(mod->name), true);
3092 if (old != NULL) {
Rusty Russella3535c72013-01-21 17:18:59 +10303093 if (old->state == MODULE_STATE_COMING
3094 || old->state == MODULE_STATE_UNFORMED) {
3095 /* Wait in case it fails to load. */
3096 mutex_unlock(&module_mutex);
3097 err = wait_event_interruptible(module_wq,
3098 finished_loading(mod->name));
3099 if (err)
3100 goto out_unlocked;
3101 goto again;
3102 }
3103 err = -EEXIST;
3104 goto out;
3105 }
3106 list_add_rcu(&mod->list, &modules);
3107 err = 0;
3108
3109out:
3110 mutex_unlock(&module_mutex);
3111out_unlocked:
3112 return err;
3113}
3114
3115static int complete_formation(struct module *mod, struct load_info *info)
3116{
3117 int err;
3118
3119 mutex_lock(&module_mutex);
3120
3121 /* Find duplicate symbols (must be called under lock). */
3122 err = verify_export_symbols(mod);
3123 if (err < 0)
3124 goto out;
3125
3126 /* This relies on module_mutex for list integrity. */
3127 module_bug_finalize(info->hdr, info->sechdrs, mod);
3128
Rusty Russell49822232014-05-14 10:54:19 +09303129 /* Set RO and NX regions for core */
3130 set_section_ro_nx(mod->module_core,
3131 mod->core_text_size,
3132 mod->core_ro_size,
3133 mod->core_size);
3134
3135 /* Set RO and NX regions for init */
3136 set_section_ro_nx(mod->module_init,
3137 mod->init_text_size,
3138 mod->init_ro_size,
3139 mod->init_size);
3140
Rusty Russella3535c72013-01-21 17:18:59 +10303141 /* Mark state as coming so strong_try_module_get() ignores us,
3142 * but kallsyms etc. can see us. */
3143 mod->state = MODULE_STATE_COMING;
Rusty Russell49822232014-05-14 10:54:19 +09303144 mutex_unlock(&module_mutex);
3145
3146 blocking_notifier_call_chain(&module_notify_list,
3147 MODULE_STATE_COMING, mod);
3148 return 0;
Rusty Russella3535c72013-01-21 17:18:59 +10303149
3150out:
3151 mutex_unlock(&module_mutex);
3152 return err;
3153}
3154
Rusty Russell54041d82013-07-02 15:35:12 +09303155static int unknown_module_param_cb(char *param, char *val, const char *modname)
3156{
Ionut Alexa6da0b562014-11-10 09:31:29 +10303157 /* Check for magic 'dyndbg' arg */
Rusty Russell54041d82013-07-02 15:35:12 +09303158 int ret = ddebug_dyndbg_module_param_cb(param, val, modname);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003159 if (ret != 0)
3160 pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
Rusty Russell54041d82013-07-02 15:35:12 +09303161 return 0;
3162}
3163
Kees Cook34e11692012-10-16 07:31:07 +10303164/* Allocate and load the module: note that size of section 0 is always
3165 zero, and we rely on this for optional sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303166static int load_module(struct load_info *info, const char __user *uargs,
3167 int flags)
Kees Cook34e11692012-10-16 07:31:07 +10303168{
Rusty Russella3535c72013-01-21 17:18:59 +10303169 struct module *mod;
Kees Cook34e11692012-10-16 07:31:07 +10303170 long err;
Rusty Russell51e158c2014-04-28 11:34:33 +09303171 char *after_dashes;
Kees Cook34e11692012-10-16 07:31:07 +10303172
3173 err = module_sig_check(info);
3174 if (err)
3175 goto free_copy;
3176
3177 err = elf_header_check(info);
3178 if (err)
3179 goto free_copy;
3180
3181 /* Figure out module layout, and allocate all the memory. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303182 mod = layout_and_allocate(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303183 if (IS_ERR(mod)) {
3184 err = PTR_ERR(mod);
3185 goto free_copy;
3186 }
3187
Rusty Russella3535c72013-01-21 17:18:59 +10303188 /* Reserve our place in the list. */
3189 err = add_unformed_module(mod);
3190 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303191 goto free_module;
Rusty Russell1fb93412013-01-12 13:27:34 +10303192
Kees Cook34e11692012-10-16 07:31:07 +10303193#ifdef CONFIG_MODULE_SIG
3194 mod->sig_ok = info->sig_ok;
Rusty Russell64748a22013-01-21 17:03:02 +10303195 if (!mod->sig_ok) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003196 pr_notice_once("%s: module verification failed: signature "
3197 "and/or required key missing - tainting "
3198 "kernel\n", mod->name);
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10303199 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
Rusty Russell64748a22013-01-21 17:03:02 +10303200 }
Kees Cook34e11692012-10-16 07:31:07 +10303201#endif
3202
Rusty Russell8d8022e2013-07-03 10:06:28 +09303203 /* To avoid stressing percpu allocator, do this once we're unique. */
Rusty Russell9eb76d72013-07-03 10:06:29 +09303204 err = percpu_modalloc(mod, info);
Rusty Russell8d8022e2013-07-03 10:06:28 +09303205 if (err)
3206 goto unlink_mod;
3207
Kees Cook34e11692012-10-16 07:31:07 +10303208 /* Now module is in final location, initialize linked lists, etc. */
3209 err = module_unload_init(mod);
3210 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303211 goto unlink_mod;
Kees Cook34e11692012-10-16 07:31:07 +10303212
3213 /* Now we've got everything in the final locations, we can
3214 * find optional sections. */
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303215 err = find_module_sections(mod, info);
3216 if (err)
3217 goto free_unload;
Kees Cook34e11692012-10-16 07:31:07 +10303218
3219 err = check_module_license_and_versions(mod);
3220 if (err)
3221 goto free_unload;
3222
3223 /* Set up MODINFO_ATTR fields */
3224 setup_modinfo(mod, info);
3225
3226 /* Fix up syms, so that st_value is a pointer to location. */
3227 err = simplify_symbols(mod, info);
3228 if (err < 0)
3229 goto free_modinfo;
3230
3231 err = apply_relocations(mod, info);
3232 if (err < 0)
3233 goto free_modinfo;
3234
3235 err = post_relocation(mod, info);
3236 if (err < 0)
3237 goto free_modinfo;
3238
3239 flush_module_icache(mod);
3240
3241 /* Now copy in args */
3242 mod->args = strndup_user(uargs, ~0UL >> 1);
3243 if (IS_ERR(mod->args)) {
3244 err = PTR_ERR(mod->args);
3245 goto free_arch_cleanup;
3246 }
3247
Kees Cook34e11692012-10-16 07:31:07 +10303248 dynamic_debug_setup(info->debug, info->num_debug);
3249
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04003250 /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
3251 ftrace_module_init(mod);
3252
Rusty Russella3535c72013-01-21 17:18:59 +10303253 /* Finally it's fully formed, ready to start executing. */
3254 err = complete_formation(mod, info);
3255 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303256 goto ddebug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303257
Kees Cook34e11692012-10-16 07:31:07 +10303258 /* Module is ready to execute: parsing args may do that. */
Rusty Russell51e158c2014-04-28 11:34:33 +09303259 after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
3260 -32768, 32767, unknown_module_param_cb);
3261 if (IS_ERR(after_dashes)) {
3262 err = PTR_ERR(after_dashes);
Rusty Russell1fb93412013-01-12 13:27:34 +10303263 goto bug_cleanup;
Rusty Russell51e158c2014-04-28 11:34:33 +09303264 } else if (after_dashes) {
3265 pr_warn("%s: parameters '%s' after `--' ignored\n",
3266 mod->name, after_dashes);
3267 }
Kees Cook34e11692012-10-16 07:31:07 +10303268
3269 /* Link in to syfs. */
3270 err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
3271 if (err < 0)
Rusty Russell1fb93412013-01-12 13:27:34 +10303272 goto bug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303273
3274 /* Get rid of temporary copy. */
3275 free_copy(info);
3276
3277 /* Done! */
3278 trace_module_load(mod);
3279
3280 return do_init_module(mod);
3281
Rusty Russell1fb93412013-01-12 13:27:34 +10303282 bug_cleanup:
3283 /* module_bug_cleanup needs module_mutex protection */
Kees Cook34e11692012-10-16 07:31:07 +10303284 mutex_lock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303285 module_bug_cleanup(mod);
Linus Torvaldsee61abb2013-01-20 20:22:58 -08003286 mutex_unlock(&module_mutex);
Andy Lutomirskiff7e0052014-08-16 04:13:37 +09303287
3288 /* we can't deallocate the module until we clear memory protection */
3289 unset_module_init_ro_nx(mod);
3290 unset_module_core_ro_nx(mod);
3291
Rusty Russella3535c72013-01-21 17:18:59 +10303292 ddebug_cleanup:
Rusty Russell1fb93412013-01-12 13:27:34 +10303293 dynamic_debug_remove(info->debug);
Kees Cook34e11692012-10-16 07:31:07 +10303294 synchronize_sched();
3295 kfree(mod->args);
3296 free_arch_cleanup:
3297 module_arch_cleanup(mod);
3298 free_modinfo:
3299 free_modinfo(mod);
3300 free_unload:
3301 module_unload_free(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303302 unlink_mod:
3303 mutex_lock(&module_mutex);
3304 /* Unlink carefully: kallsyms could be walking list. */
3305 list_del_rcu(&mod->list);
3306 wake_up_all(&module_wq);
Masami Hiramatsu4f487952014-11-10 09:26:29 +10303307 /* Wait for RCU synchronizing before releasing mod->list. */
3308 synchronize_rcu();
Rusty Russell1fb93412013-01-12 13:27:34 +10303309 mutex_unlock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303310 free_module:
3311 module_deallocate(mod, info);
3312 free_copy:
3313 free_copy(info);
3314 return err;
3315}
3316
3317SYSCALL_DEFINE3(init_module, void __user *, umod,
3318 unsigned long, len, const char __user *, uargs)
3319{
3320 int err;
3321 struct load_info info = { };
3322
3323 err = may_init_module();
3324 if (err)
3325 return err;
3326
3327 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3328 umod, len, uargs);
3329
3330 err = copy_module_from_user(umod, len, &info);
3331 if (err)
3332 return err;
3333
Rusty Russell2f3238a2012-10-22 18:09:41 +10303334 return load_module(&info, uargs, 0);
Kees Cook34e11692012-10-16 07:31:07 +10303335}
3336
Rusty Russell2f3238a2012-10-22 18:09:41 +10303337SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
Kees Cook34e11692012-10-16 07:31:07 +10303338{
3339 int err;
3340 struct load_info info = { };
3341
3342 err = may_init_module();
3343 if (err)
3344 return err;
3345
Rusty Russell2f3238a2012-10-22 18:09:41 +10303346 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3347
3348 if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
3349 |MODULE_INIT_IGNORE_VERMAGIC))
3350 return -EINVAL;
Kees Cook34e11692012-10-16 07:31:07 +10303351
3352 err = copy_module_from_fd(fd, &info);
3353 if (err)
3354 return err;
3355
Rusty Russell2f3238a2012-10-22 18:09:41 +10303356 return load_module(&info, uargs, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303357}
3358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359static inline int within(unsigned long addr, void *start, unsigned long size)
3360{
3361 return ((void *)addr >= start && (void *)addr < start + size);
3362}
3363
3364#ifdef CONFIG_KALLSYMS
3365/*
3366 * This ignores the intensely annoying "mapping symbols" found
3367 * in ARM ELF files: $a, $t and $d.
3368 */
3369static inline int is_arm_mapping_symbol(const char *str)
3370{
Russell King2e3a10a2014-07-27 07:29:01 +09303371 if (str[0] == '.' && str[1] == 'L')
3372 return true;
Kyle McMartin6c34f1f2014-09-16 22:37:18 +01003373 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 && (str[2] == '\0' || str[2] == '.');
3375}
3376
3377static const char *get_ksymbol(struct module *mod,
3378 unsigned long addr,
3379 unsigned long *size,
3380 unsigned long *offset)
3381{
3382 unsigned int i, best = 0;
3383 unsigned long nextval;
3384
3385 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003386 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003388 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 nextval = (unsigned long)mod->module_core+mod->core_text_size;
3390
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003391 /* Scan for closest preceding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07003392 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 for (i = 1; i < mod->num_symtab; i++) {
3394 if (mod->symtab[i].st_shndx == SHN_UNDEF)
3395 continue;
3396
3397 /* We ignore unnamed symbols: they're uninformative
3398 * and inserted at a whim. */
3399 if (mod->symtab[i].st_value <= addr
3400 && mod->symtab[i].st_value > mod->symtab[best].st_value
3401 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3402 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3403 best = i;
3404 if (mod->symtab[i].st_value > addr
3405 && mod->symtab[i].st_value < nextval
3406 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3407 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3408 nextval = mod->symtab[i].st_value;
3409 }
3410
3411 if (!best)
3412 return NULL;
3413
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003414 if (size)
3415 *size = nextval - mod->symtab[best].st_value;
3416 if (offset)
3417 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 return mod->strtab + mod->symtab[best].st_name;
3419}
3420
Rusty Russell6dd06c92008-01-29 17:13:22 -05003421/* For kallsyms to ask for address resolution. NULL means not found. Careful
3422 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003423const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05003424 unsigned long *size,
3425 unsigned long *offset,
3426 char **modname,
3427 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428{
3429 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003430 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
Rusty Russellcb2a5202008-01-14 00:55:03 -08003432 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003433 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303434 if (mod->state == MODULE_STATE_UNFORMED)
3435 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303436 if (within_module(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07003437 if (modname)
3438 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003439 ret = get_ksymbol(mod, addr, size, offset);
3440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 }
3442 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05003443 /* Make a copy in here where it's safe */
3444 if (ret) {
3445 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
3446 ret = namebuf;
3447 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003448 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003449 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450}
3451
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003452int lookup_module_symbol_name(unsigned long addr, char *symname)
3453{
3454 struct module *mod;
3455
Rusty Russellcb2a5202008-01-14 00:55:03 -08003456 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003457 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303458 if (mod->state == MODULE_STATE_UNFORMED)
3459 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303460 if (within_module(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003461 const char *sym;
3462
3463 sym = get_ksymbol(mod, addr, NULL, NULL);
3464 if (!sym)
3465 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07003466 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003467 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003468 return 0;
3469 }
3470 }
3471out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003472 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003473 return -ERANGE;
3474}
3475
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003476int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
3477 unsigned long *offset, char *modname, char *name)
3478{
3479 struct module *mod;
3480
Rusty Russellcb2a5202008-01-14 00:55:03 -08003481 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003482 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303483 if (mod->state == MODULE_STATE_UNFORMED)
3484 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303485 if (within_module(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003486 const char *sym;
3487
3488 sym = get_ksymbol(mod, addr, size, offset);
3489 if (!sym)
3490 goto out;
3491 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07003492 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003493 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07003494 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003495 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003496 return 0;
3497 }
3498 }
3499out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003500 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003501 return -ERANGE;
3502}
3503
Alexey Dobriyanea078902007-05-08 00:28:39 -07003504int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
3505 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506{
3507 struct module *mod;
3508
Rusty Russellcb2a5202008-01-14 00:55:03 -08003509 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003510 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303511 if (mod->state == MODULE_STATE_UNFORMED)
3512 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 if (symnum < mod->num_symtab) {
3514 *value = mod->symtab[symnum].st_value;
3515 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07003516 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07003517 KSYM_NAME_LEN);
3518 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06003519 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003520 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003521 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 }
3523 symnum -= mod->num_symtab;
3524 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003525 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003526 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527}
3528
3529static unsigned long mod_find_symname(struct module *mod, const char *name)
3530{
3531 unsigned int i;
3532
3533 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08003534 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
3535 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 return mod->symtab[i].st_value;
3537 return 0;
3538}
3539
3540/* Look for this name: can be of form module:name. */
3541unsigned long module_kallsyms_lookup_name(const char *name)
3542{
3543 struct module *mod;
3544 char *colon;
3545 unsigned long ret = 0;
3546
3547 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08003548 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 if ((colon = strchr(name, ':')) != NULL) {
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303550 if ((mod = find_module_all(name, colon - name, false)) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 ret = mod_find_symname(mod, colon+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 } else {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303553 list_for_each_entry_rcu(mod, &modules, list) {
3554 if (mod->state == MODULE_STATE_UNFORMED)
3555 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 if ((ret = mod_find_symname(mod, name)) != 0)
3557 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003560 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 return ret;
3562}
Anders Kaseorg75a66612008-12-05 19:03:58 -05003563
3564int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
3565 struct module *, unsigned long),
3566 void *data)
3567{
3568 struct module *mod;
3569 unsigned int i;
3570 int ret;
3571
3572 list_for_each_entry(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303573 if (mod->state == MODULE_STATE_UNFORMED)
3574 continue;
Anders Kaseorg75a66612008-12-05 19:03:58 -05003575 for (i = 0; i < mod->num_symtab; i++) {
3576 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
3577 mod, mod->symtab[i].st_value);
3578 if (ret != 0)
3579 return ret;
3580 }
3581 }
3582 return 0;
3583}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584#endif /* CONFIG_KALLSYMS */
3585
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003586static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003587{
3588 int bx = 0;
3589
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303590 BUG_ON(mod->state == MODULE_STATE_UNFORMED);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003591 if (mod->taints ||
3592 mod->state == MODULE_STATE_GOING ||
3593 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003594 buf[bx++] = '(';
Kay Sieverscca3e702012-01-13 09:32:15 +10303595 bx += module_flags_taint(mod, buf + bx);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003596 /* Show a - for module-is-being-unloaded */
3597 if (mod->state == MODULE_STATE_GOING)
3598 buf[bx++] = '-';
3599 /* Show a + for module-is-being-loaded */
3600 if (mod->state == MODULE_STATE_COMING)
3601 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003602 buf[bx++] = ')';
3603 }
3604 buf[bx] = '\0';
3605
3606 return buf;
3607}
3608
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003609#ifdef CONFIG_PROC_FS
3610/* Called by the /proc file system to return a list of modules. */
3611static void *m_start(struct seq_file *m, loff_t *pos)
3612{
3613 mutex_lock(&module_mutex);
3614 return seq_list_start(&modules, *pos);
3615}
3616
3617static void *m_next(struct seq_file *m, void *p, loff_t *pos)
3618{
3619 return seq_list_next(p, &modules, pos);
3620}
3621
3622static void m_stop(struct seq_file *m, void *p)
3623{
3624 mutex_unlock(&module_mutex);
3625}
3626
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627static int m_show(struct seq_file *m, void *p)
3628{
3629 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003630 char buf[8];
3631
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303632 /* We always ignore unformed modules. */
3633 if (mod->state == MODULE_STATE_UNFORMED)
3634 return 0;
3635
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05003636 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 mod->name, mod->init_size + mod->core_size);
3638 print_unload_info(m, mod);
3639
3640 /* Informative for users. */
3641 seq_printf(m, " %s",
Ionut Alexa6da0b562014-11-10 09:31:29 +10303642 mod->state == MODULE_STATE_GOING ? "Unloading" :
3643 mod->state == MODULE_STATE_COMING ? "Loading" :
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 "Live");
3645 /* Used by oprofile and other similar tools. */
Kees Cook9f36e2c2011-03-22 16:34:22 -07003646 seq_printf(m, " 0x%pK", mod->module_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003648 /* Taints info */
3649 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003650 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003651
Ionut Alexa6da0b562014-11-10 09:31:29 +10303652 seq_puts(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 return 0;
3654}
3655
3656/* Format: modulename size refcount deps address
3657
3658 Where refcount is a number or -, and deps is a comma-separated list
3659 of depends or -.
3660*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003661static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 .start = m_start,
3663 .next = m_next,
3664 .stop = m_stop,
3665 .show = m_show
3666};
3667
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003668static int modules_open(struct inode *inode, struct file *file)
3669{
3670 return seq_open(file, &modules_op);
3671}
3672
3673static const struct file_operations proc_modules_operations = {
3674 .open = modules_open,
3675 .read = seq_read,
3676 .llseek = seq_lseek,
3677 .release = seq_release,
3678};
3679
3680static int __init proc_modules_init(void)
3681{
3682 proc_create("modules", 0, NULL, &proc_modules_operations);
3683 return 0;
3684}
3685module_init(proc_modules_init);
3686#endif
3687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688/* Given an address, look for it in the module exception tables. */
3689const struct exception_table_entry *search_module_extables(unsigned long addr)
3690{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 const struct exception_table_entry *e = NULL;
3692 struct module *mod;
3693
Rusty Russell24da1cb2007-07-15 23:41:46 -07003694 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003695 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303696 if (mod->state == MODULE_STATE_UNFORMED)
3697 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 if (mod->num_exentries == 0)
3699 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003700
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 e = search_extable(mod->extable,
3702 mod->extable + mod->num_exentries - 1,
3703 addr);
3704 if (e)
3705 break;
3706 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07003707 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
3709 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07003710 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 return e;
3712}
3713
Ingo Molnar4d435f92006-07-03 00:24:24 -07003714/*
Rusty Russelle6104992009-03-31 13:05:31 -06003715 * is_module_address - is this address inside a module?
3716 * @addr: the address to check.
3717 *
3718 * See is_module_text_address() if you simply want to see if the address
3719 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07003720 */
Rusty Russelle6104992009-03-31 13:05:31 -06003721bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07003722{
Rusty Russelle6104992009-03-31 13:05:31 -06003723 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003724
Rusty Russell24da1cb2007-07-15 23:41:46 -07003725 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06003726 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07003727 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07003728
Rusty Russelle6104992009-03-31 13:05:31 -06003729 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003730}
3731
Rusty Russelle6104992009-03-31 13:05:31 -06003732/*
3733 * __module_address - get the module which contains an address.
3734 * @addr: the address.
3735 *
3736 * Must be called with preempt disabled or module mutex held so that
3737 * module doesn't get freed during this.
3738 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07003739struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740{
3741 struct module *mod;
3742
Rusty Russell3a642e92008-07-22 19:24:28 -05003743 if (addr < module_addr_min || addr > module_addr_max)
3744 return NULL;
3745
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303746 list_for_each_entry_rcu(mod, &modules, list) {
3747 if (mod->state == MODULE_STATE_UNFORMED)
3748 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303749 if (within_module(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 return mod;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 return NULL;
3753}
Tim Abbottc6b37802008-12-05 19:03:59 -05003754EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Rusty Russelle6104992009-03-31 13:05:31 -06003756/*
3757 * is_module_text_address - is this address inside module code?
3758 * @addr: the address to check.
3759 *
3760 * See is_module_address() if you simply want to see if the address is
3761 * anywhere in a module. See kernel_text_address() for testing if an
3762 * address corresponds to kernel or module code.
3763 */
3764bool is_module_text_address(unsigned long addr)
3765{
3766 bool ret;
3767
3768 preempt_disable();
3769 ret = __module_text_address(addr) != NULL;
3770 preempt_enable();
3771
3772 return ret;
3773}
3774
3775/*
3776 * __module_text_address - get the module whose code contains an address.
3777 * @addr: the address.
3778 *
3779 * Must be called with preempt disabled or module mutex held so that
3780 * module doesn't get freed during this.
3781 */
3782struct module *__module_text_address(unsigned long addr)
3783{
3784 struct module *mod = __module_address(addr);
3785 if (mod) {
3786 /* Make sure it's within the text section. */
3787 if (!within(addr, mod->module_init, mod->init_text_size)
3788 && !within(addr, mod->module_core, mod->core_text_size))
3789 mod = NULL;
3790 }
3791 return mod;
3792}
Tim Abbottc6b37802008-12-05 19:03:59 -05003793EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06003794
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795/* Don't grab lock, we're oopsing. */
3796void print_modules(void)
3797{
3798 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07003799 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Linus Torvaldsb2311252009-06-16 11:07:14 -07003801 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02003802 /* Most callers should already have preempt disabled, but make sure */
3803 preempt_disable();
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303804 list_for_each_entry_rcu(mod, &modules, list) {
3805 if (mod->state == MODULE_STATE_UNFORMED)
3806 continue;
Jiri Slaby27bba4d2014-02-03 11:13:13 +10303807 pr_cont(" %s%s", mod->name, module_flags(mod, buf));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303808 }
Andi Kleend72b3752008-08-30 10:09:00 +02003809 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003810 if (last_unloaded_module[0])
Jiri Slaby27bba4d2014-02-03 11:13:13 +10303811 pr_cont(" [last unloaded: %s]", last_unloaded_module);
3812 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813}
3814
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003816/* Generate the signature for all relevant module structures here.
3817 * If these change, we don't want to try to parse the module. */
3818void module_layout(struct module *mod,
3819 struct modversion_info *ver,
3820 struct kernel_param *kp,
3821 struct kernel_symbol *ks,
Mathieu Desnoyers65498642011-01-26 17:26:22 -05003822 struct tracepoint * const *tp)
Rusty Russell8c8ef422009-03-31 13:05:34 -06003823{
3824}
3825EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826#endif