blob: 24d1f31d02f237f3db445dde9c5b3cc9cfe59687 [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");
Yannick Guerrini7b63c3a2015-03-24 12:31:40 +1030390 pr_warn("Please evaluate if this is the right api to use and "
391 "if it really is, submit a report to the linux kernel "
392 "mailing list together with submitting your code for "
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800393 "inclusion.\n");
Rusty Russellad9546c2008-05-01 21:14:59 -0500394 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500395#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500396
397 fsa->owner = owner;
398 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500399 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500400 return true;
401}
402
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200403static int cmp_name(const void *va, const void *vb)
404{
405 const char *a;
406 const struct kernel_symbol *b;
407 a = va; b = vb;
408 return strcmp(a, b->name);
409}
410
Rusty Russellde4d8d52011-04-19 21:49:58 +0200411static bool find_symbol_in_section(const struct symsearch *syms,
412 struct module *owner,
413 void *data)
414{
415 struct find_symbol_arg *fsa = data;
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200416 struct kernel_symbol *sym;
Rusty Russellde4d8d52011-04-19 21:49:58 +0200417
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200418 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
419 sizeof(struct kernel_symbol), cmp_name);
420
421 if (sym != NULL && check_symbol(syms, owner, sym - syms->start, data))
422 return true;
423
Rusty Russellde4d8d52011-04-19 21:49:58 +0200424 return false;
425}
426
Tim Abbott414fd312008-12-05 19:03:56 -0500427/* Find a symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600428 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500429const struct kernel_symbol *find_symbol(const char *name,
430 struct module **owner,
431 const unsigned long **crc,
432 bool gplok,
433 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Rusty Russelldafd0942008-07-22 19:24:25 -0500435 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Rusty Russelldafd0942008-07-22 19:24:25 -0500437 fsa.name = name;
438 fsa.gplok = gplok;
439 fsa.warn = warn;
440
Rusty Russellde4d8d52011-04-19 21:49:58 +0200441 if (each_symbol_section(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500442 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500443 *owner = fsa.owner;
444 if (crc)
445 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500446 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500448
Jim Cromie5e124162011-12-06 12:11:31 -0700449 pr_debug("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500450 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
Tim Abbottc6b37802008-12-05 19:03:59 -0500452EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/* Search for module by name: must hold module_mutex. */
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930455static struct module *find_module_all(const char *name, size_t len,
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030456 bool even_unformed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 struct module *mod;
459
460 list_for_each_entry(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030461 if (!even_unformed && mod->state == MODULE_STATE_UNFORMED)
462 continue;
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930463 if (strlen(mod->name) == len && !memcmp(mod->name, name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return mod;
465 }
466 return NULL;
467}
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030468
469struct module *find_module(const char *name)
470{
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930471 return find_module_all(name, strlen(name), false);
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030472}
Tim Abbottc6b37802008-12-05 19:03:59 -0500473EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900476
Tejun Heo259354d2010-03-10 18:56:10 +0900477static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900478{
Tejun Heo259354d2010-03-10 18:56:10 +0900479 return mod->percpu;
480}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900481
Rusty Russell9eb76d72013-07-03 10:06:29 +0930482static int percpu_modalloc(struct module *mod, struct load_info *info)
Tejun Heo259354d2010-03-10 18:56:10 +0900483{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930484 Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu];
485 unsigned long align = pcpusec->sh_addralign;
486
487 if (!pcpusec->sh_size)
488 return 0;
489
Tejun Heofbf59bc2009-02-20 16:29:08 +0900490 if (align > PAGE_SIZE) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800491 pr_warn("%s: per-cpu alignment %li > %li\n",
492 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900493 align = PAGE_SIZE;
494 }
495
Rusty Russell9eb76d72013-07-03 10:06:29 +0930496 mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align);
Tejun Heo259354d2010-03-10 18:56:10 +0900497 if (!mod->percpu) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800498 pr_warn("%s: Could not allocate %lu bytes percpu data\n",
499 mod->name, (unsigned long)pcpusec->sh_size);
Tejun Heo259354d2010-03-10 18:56:10 +0900500 return -ENOMEM;
501 }
Rusty Russell9eb76d72013-07-03 10:06:29 +0930502 mod->percpu_size = pcpusec->sh_size;
Tejun Heo259354d2010-03-10 18:56:10 +0900503 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900504}
505
Tejun Heo259354d2010-03-10 18:56:10 +0900506static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900507{
Tejun Heo259354d2010-03-10 18:56:10 +0900508 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900509}
510
Rusty Russell49668682010-08-05 12:59:10 -0600511static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900512{
Rusty Russell49668682010-08-05 12:59:10 -0600513 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900514}
515
Tejun Heo259354d2010-03-10 18:56:10 +0900516static void percpu_modcopy(struct module *mod,
517 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900518{
519 int cpu;
520
521 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900522 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900523}
524
Tejun Heo10fad5e2010-03-10 18:57:54 +0900525/**
526 * is_module_percpu_address - test whether address is from module static percpu
527 * @addr: address to test
528 *
529 * Test whether @addr belongs to module static percpu area.
530 *
531 * RETURNS:
532 * %true if @addr is from module static percpu area
533 */
534bool is_module_percpu_address(unsigned long addr)
535{
536 struct module *mod;
537 unsigned int cpu;
538
539 preempt_disable();
540
541 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030542 if (mod->state == MODULE_STATE_UNFORMED)
543 continue;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900544 if (!mod->percpu_size)
545 continue;
546 for_each_possible_cpu(cpu) {
547 void *start = per_cpu_ptr(mod->percpu, cpu);
548
549 if ((void *)addr >= start &&
550 (void *)addr < start + mod->percpu_size) {
551 preempt_enable();
552 return true;
553 }
554 }
555 }
556
557 preempt_enable();
558 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700559}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900562
Tejun Heo259354d2010-03-10 18:56:10 +0900563static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 return NULL;
566}
Rusty Russell9eb76d72013-07-03 10:06:29 +0930567static int percpu_modalloc(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930569 /* UP modules shouldn't have this section: ENOMEM isn't quite right */
570 if (info->sechdrs[info->index.pcpu].sh_size != 0)
571 return -ENOMEM;
572 return 0;
Tejun Heo259354d2010-03-10 18:56:10 +0900573}
574static inline void percpu_modfree(struct module *mod)
575{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
Rusty Russell49668682010-08-05 12:59:10 -0600577static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 return 0;
580}
Tejun Heo259354d2010-03-10 18:56:10 +0900581static inline void percpu_modcopy(struct module *mod,
582 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 /* pcpusec should be 0, and size of that section should be 0. */
585 BUG_ON(size != 0);
586}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900587bool is_module_percpu_address(unsigned long addr)
588{
589 return false;
590}
Tejun Heo6b588c12009-02-20 16:29:07 +0900591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592#endif /* CONFIG_SMP */
593
Matt Domschc988d2b2005-06-23 22:05:15 -0700594#define MODINFO_ATTR(field) \
595static void setup_modinfo_##field(struct module *mod, const char *s) \
596{ \
597 mod->field = kstrdup(s, GFP_KERNEL); \
598} \
599static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
Kay Sievers4befb022011-07-24 22:06:04 +0930600 struct module_kobject *mk, char *buffer) \
Matt Domschc988d2b2005-06-23 22:05:15 -0700601{ \
Chen Gangcc56ded2013-08-20 15:34:21 +0930602 return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field); \
Matt Domschc988d2b2005-06-23 22:05:15 -0700603} \
604static int modinfo_##field##_exists(struct module *mod) \
605{ \
606 return mod->field != NULL; \
607} \
608static void free_modinfo_##field(struct module *mod) \
609{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700610 kfree(mod->field); \
611 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700612} \
613static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900614 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700615 .show = show_modinfo_##field, \
616 .setup = setup_modinfo_##field, \
617 .test = modinfo_##field##_exists, \
618 .free = free_modinfo_##field, \
619};
620
621MODINFO_ATTR(version);
622MODINFO_ATTR(srcversion);
623
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100624static char last_unloaded_module[MODULE_NAME_LEN+1];
625
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800626#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400627
628EXPORT_TRACEPOINT_SYMBOL(module_get);
629
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030630/* MODULE_REF_BASE is the base reference count by kmodule loader. */
631#define MODULE_REF_BASE 1
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600634static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030636 /*
637 * Initialize reference counter to MODULE_REF_BASE.
638 * refcnt == 0 means module is going.
639 */
640 atomic_set(&mod->refcnt, MODULE_REF_BASE);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600641
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700642 INIT_LIST_HEAD(&mod->source_list);
643 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* Hold reference count during initialization. */
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030646 atomic_inc(&mod->refcnt);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600647
648 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/* Does a already use b? */
652static int already_uses(struct module *a, struct module *b)
653{
654 struct module_use *use;
655
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700656 list_for_each_entry(use, &b->source_list, source_list) {
657 if (use->source == a) {
Jim Cromie5e124162011-12-06 12:11:31 -0700658 pr_debug("%s uses %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 1;
660 }
661 }
Jim Cromie5e124162011-12-06 12:11:31 -0700662 pr_debug("%s does not use %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return 0;
664}
665
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700666/*
667 * Module a uses b
668 * - we add 'a' as a "source", 'b' as a "target" of module use
669 * - the module_use is added to the list of 'b' sources (so
670 * 'b' can walk the list to see who sourced them), and of 'a'
671 * targets (so 'a' can see what modules it targets).
672 */
673static int add_module_usage(struct module *a, struct module *b)
674{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700675 struct module_use *use;
676
Jim Cromie5e124162011-12-06 12:11:31 -0700677 pr_debug("Allocating new usage for %s.\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700678 use = kmalloc(sizeof(*use), GFP_ATOMIC);
679 if (!use) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800680 pr_warn("%s: out of memory loading\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700681 return -ENOMEM;
682 }
683
684 use->source = a;
685 use->target = b;
686 list_add(&use->source_list, &b->source_list);
687 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700688 return 0;
689}
690
Rusty Russell75676502010-06-05 11:17:36 -0600691/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600692int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600694 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100695
Rusty Russell9bea7f22010-06-05 11:17:37 -0600696 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700697 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700698
Rusty Russell9bea7f22010-06-05 11:17:37 -0600699 /* If module isn't available, we fail. */
700 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500701 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600702 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700704 err = add_module_usage(a, b);
705 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600707 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600711EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713/* Clear the unload stuff of the module. */
714static void module_unload_free(struct module *mod)
715{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700716 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Rusty Russell75676502010-06-05 11:17:36 -0600718 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700719 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
720 struct module *i = use->target;
Jim Cromie5e124162011-12-06 12:11:31 -0700721 pr_debug("%s unusing %s\n", mod->name, i->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700722 module_put(i);
723 list_del(&use->source_list);
724 list_del(&use->target_list);
725 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
Rusty Russell75676502010-06-05 11:17:36 -0600727 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800731static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 int ret = (flags & O_TRUNC);
734 if (ret)
Rusty Russell373d4d02013-01-21 17:17:39 +1030735 add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return ret;
737}
738#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800739static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
741 return 0;
742}
743#endif /* CONFIG_MODULE_FORCE_UNLOAD */
744
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030745/* Try to release refcount of module, 0 means success. */
746static int try_release_module_ref(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030748 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030750 /* Try to decrement refcnt which we set at loading */
751 ret = atomic_sub_return(MODULE_REF_BASE, &mod->refcnt);
752 BUG_ON(ret < 0);
753 if (ret)
754 /* Someone can put this right now, recover with checking */
755 ret = atomic_add_unless(&mod->refcnt, MODULE_REF_BASE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030757 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760static int try_stop_module(struct module *mod, int flags, int *forced)
761{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030762 /* If it's not unused, quit unless we're forcing. */
763 if (try_release_module_ref(mod) != 0) {
764 *forced = try_force_unload(flags);
765 if (!(*forced))
766 return -EWOULDBLOCK;
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030769 /* Mark it as dying. */
770 mod->state = MODULE_STATE_GOING;
771
772 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Rusty Russelld5db1392015-01-22 11:13:14 +1030775/**
776 * module_refcount - return the refcount or -1 if unloading
777 *
778 * @mod: the module we're checking
779 *
780 * Returns:
781 * -1 if the module is in the process of unloading
782 * otherwise the number of references in the kernel to the module
783 */
784int module_refcount(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Rusty Russelld5db1392015-01-22 11:13:14 +1030786 return atomic_read(&mod->refcnt) - MODULE_REF_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788EXPORT_SYMBOL(module_refcount);
789
790/* This exists whether we can unload or not */
791static void free_module(struct module *mod);
792
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100793SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
794 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800797 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int ret, forced = 0;
799
Kees Cook3d433212009-04-02 15:49:29 -0700800 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800801 return -EPERM;
802
803 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
804 return -EFAULT;
805 name[MODULE_NAME_LEN-1] = '\0';
806
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200807 if (mutex_lock_interruptible(&module_mutex) != 0)
808 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 mod = find_module(name);
811 if (!mod) {
812 ret = -ENOENT;
813 goto out;
814 }
815
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700816 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /* Other modules depend on us: get rid of them first. */
818 ret = -EWOULDBLOCK;
819 goto out;
820 }
821
822 /* Doing init or already dying? */
823 if (mod->state != MODULE_STATE_LIVE) {
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930824 /* FIXME: if (force), slam module count damn the torpedoes */
Jim Cromie5e124162011-12-06 12:11:31 -0700825 pr_debug("%s already dying\n", mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 ret = -EBUSY;
827 goto out;
828 }
829
830 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700831 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800832 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (!forced) {
834 /* This module can't be removed */
835 ret = -EBUSY;
836 goto out;
837 }
838 }
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /* Stop the machine so refcounts can't move and disable module. */
841 ret = try_stop_module(mod, flags, &forced);
842 if (ret != 0)
843 goto out;
844
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200845 mutex_unlock(&module_mutex);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300846 /* Final destruction now no one is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200847 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200849 blocking_notifier_call_chain(&module_notify_list,
850 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800851 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600852
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100853 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500854 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Rusty Russell75676502010-06-05 11:17:36 -0600856 free_module(mod);
857 return 0;
858out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800859 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return ret;
861}
862
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800863static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 struct module_use *use;
866 int printed_something = 0;
867
Rusty Russelld5db1392015-01-22 11:13:14 +1030868 seq_printf(m, " %i ", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Ionut Alexa6da0b562014-11-10 09:31:29 +1030870 /*
871 * Always include a trailing , so userspace can differentiate
872 * between this and the old multi-field proc format.
873 */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700874 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700876 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (mod->init != NULL && mod->exit == NULL) {
880 printed_something = 1;
Ionut Alexa6da0b562014-11-10 09:31:29 +1030881 seq_puts(m, "[permanent],");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883
884 if (!printed_something)
Ionut Alexa6da0b562014-11-10 09:31:29 +1030885 seq_puts(m, "-");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
888void __symbol_put(const char *symbol)
889{
890 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Rusty Russell24da1cb2007-07-15 23:41:46 -0700892 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500893 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 BUG();
895 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700896 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898EXPORT_SYMBOL(__symbol_put);
899
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930900/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901void symbol_put_addr(void *addr)
902{
Trent Piepho5e376612006-05-15 09:44:06 -0700903 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930904 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930906 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700907 return;
908
Rusty Russella6e6abd2009-03-31 13:05:31 -0600909 /* module_text_address is safe here: we're supposed to have reference
910 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930911 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600912 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700913 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915EXPORT_SYMBOL_GPL(symbol_put_addr);
916
917static ssize_t show_refcnt(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +0930918 struct module_kobject *mk, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Rusty Russelld5db1392015-01-22 11:13:14 +1030920 return sprintf(buffer, "%i\n", module_refcount(mk->mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
Kay Sieverscca3e702012-01-13 09:32:15 +1030923static struct module_attribute modinfo_refcnt =
924 __ATTR(refcnt, 0444, show_refcnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Steven Rostedtd53799b2012-03-26 12:50:52 +1030926void __module_get(struct module *module)
927{
928 if (module) {
929 preempt_disable();
Masami Hiramatsu2f35c412014-11-10 09:29:29 +1030930 atomic_inc(&module->refcnt);
Steven Rostedtd53799b2012-03-26 12:50:52 +1030931 trace_module_get(module, _RET_IP_);
932 preempt_enable();
933 }
934}
935EXPORT_SYMBOL(__module_get);
936
937bool try_module_get(struct module *module)
938{
939 bool ret = true;
940
941 if (module) {
942 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030943 /* Note: here, we can fail to get a reference */
944 if (likely(module_is_live(module) &&
945 atomic_inc_not_zero(&module->refcnt) != 0))
Steven Rostedtd53799b2012-03-26 12:50:52 +1030946 trace_module_get(module, _RET_IP_);
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030947 else
Steven Rostedtd53799b2012-03-26 12:50:52 +1030948 ret = false;
949
950 preempt_enable();
951 }
952 return ret;
953}
954EXPORT_SYMBOL(try_module_get);
955
Al Virof6a57032006-10-18 01:47:25 -0400956void module_put(struct module *module)
957{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030958 int ret;
959
Al Virof6a57032006-10-18 01:47:25 -0400960 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900961 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030962 ret = atomic_dec_if_positive(&module->refcnt);
963 WARN_ON(ret < 0); /* Failed to put refcount */
Li Zefanae832d12010-03-24 10:57:43 +0800964 trace_module_put(module, _RET_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +0900965 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400966 }
967}
968EXPORT_SYMBOL(module_put);
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800971static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 /* We don't know the usage count, or what modules are using. */
Ionut Alexa6da0b562014-11-10 09:31:29 +1030974 seq_puts(m, " - -");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977static inline void module_unload_free(struct module *mod)
978{
979}
980
Rusty Russell9bea7f22010-06-05 11:17:37 -0600981int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Rusty Russell9bea7f22010-06-05 11:17:37 -0600983 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600985EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600987static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600989 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991#endif /* CONFIG_MODULE_UNLOAD */
992
Kevin Winchester53999bf2012-01-15 19:32:55 -0400993static size_t module_flags_taint(struct module *mod, char *buf)
994{
995 size_t l = 0;
996
997 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
998 buf[l++] = 'P';
999 if (mod->taints & (1 << TAINT_OOT_MODULE))
1000 buf[l++] = 'O';
1001 if (mod->taints & (1 << TAINT_FORCED_MODULE))
1002 buf[l++] = 'F';
1003 if (mod->taints & (1 << TAINT_CRAP))
1004 buf[l++] = 'C';
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10301005 if (mod->taints & (1 << TAINT_UNSIGNED_MODULE))
Rusty Russell57673c22014-03-31 14:39:57 +10301006 buf[l++] = 'E';
Kevin Winchester53999bf2012-01-15 19:32:55 -04001007 /*
1008 * TAINT_FORCED_RMMOD: could be added.
Dave Jones8c904872014-02-26 10:49:49 -05001009 * TAINT_CPU_OUT_OF_SPEC, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
Kevin Winchester53999bf2012-01-15 19:32:55 -04001010 * apply to modules.
1011 */
1012 return l;
1013}
1014
Kay Sievers1f717402006-11-24 12:15:25 +01001015static ssize_t show_initstate(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301016 struct module_kobject *mk, char *buffer)
Kay Sievers1f717402006-11-24 12:15:25 +01001017{
1018 const char *state = "unknown";
1019
Kay Sievers4befb022011-07-24 22:06:04 +09301020 switch (mk->mod->state) {
Kay Sievers1f717402006-11-24 12:15:25 +01001021 case MODULE_STATE_LIVE:
1022 state = "live";
1023 break;
1024 case MODULE_STATE_COMING:
1025 state = "coming";
1026 break;
1027 case MODULE_STATE_GOING:
1028 state = "going";
1029 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301030 default:
1031 BUG();
Kay Sievers1f717402006-11-24 12:15:25 +01001032 }
1033 return sprintf(buffer, "%s\n", state);
1034}
1035
Kay Sieverscca3e702012-01-13 09:32:15 +10301036static struct module_attribute modinfo_initstate =
1037 __ATTR(initstate, 0444, show_initstate, NULL);
Kay Sievers1f717402006-11-24 12:15:25 +01001038
Kay Sievers88bfa322011-07-24 22:06:04 +09301039static ssize_t store_uevent(struct module_attribute *mattr,
1040 struct module_kobject *mk,
1041 const char *buffer, size_t count)
1042{
1043 enum kobject_action action;
1044
1045 if (kobject_action_type(buffer, count, &action) == 0)
1046 kobject_uevent(&mk->kobj, action);
1047 return count;
1048}
1049
Kay Sieverscca3e702012-01-13 09:32:15 +10301050struct module_attribute module_uevent =
1051 __ATTR(uevent, 0200, NULL, store_uevent);
1052
1053static ssize_t show_coresize(struct module_attribute *mattr,
1054 struct module_kobject *mk, char *buffer)
1055{
1056 return sprintf(buffer, "%u\n", mk->mod->core_size);
1057}
1058
1059static struct module_attribute modinfo_coresize =
1060 __ATTR(coresize, 0444, show_coresize, NULL);
1061
1062static ssize_t show_initsize(struct module_attribute *mattr,
1063 struct module_kobject *mk, char *buffer)
1064{
1065 return sprintf(buffer, "%u\n", mk->mod->init_size);
1066}
1067
1068static struct module_attribute modinfo_initsize =
1069 __ATTR(initsize, 0444, show_initsize, NULL);
1070
1071static ssize_t show_taint(struct module_attribute *mattr,
1072 struct module_kobject *mk, char *buffer)
1073{
1074 size_t l;
1075
1076 l = module_flags_taint(mk->mod, buffer);
1077 buffer[l++] = '\n';
1078 return l;
1079}
1080
1081static struct module_attribute modinfo_taint =
1082 __ATTR(taint, 0444, show_taint, NULL);
Kay Sievers88bfa322011-07-24 22:06:04 +09301083
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001084static struct module_attribute *modinfo_attrs[] = {
Kay Sieverscca3e702012-01-13 09:32:15 +10301085 &module_uevent,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001086 &modinfo_version,
1087 &modinfo_srcversion,
Kay Sieverscca3e702012-01-13 09:32:15 +10301088 &modinfo_initstate,
1089 &modinfo_coresize,
1090 &modinfo_initsize,
1091 &modinfo_taint,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001092#ifdef CONFIG_MODULE_UNLOAD
Kay Sieverscca3e702012-01-13 09:32:15 +10301093 &modinfo_refcnt,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001094#endif
1095 NULL,
1096};
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098static const char vermagic[] = VERMAGIC_STRING;
1099
Rusty Russellc6e665c2009-03-31 13:05:33 -06001100static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -07001101{
1102#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -07001103 if (!test_taint(TAINT_FORCED_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001104 pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
Rusty Russell373d4d02013-01-21 17:17:39 +10301105 add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds826e4502008-05-04 17:04:16 -07001106 return 0;
1107#else
1108 return -ENOEXEC;
1109#endif
1110}
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -06001113/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
1114static unsigned long maybe_relocated(unsigned long crc,
1115 const struct module *crc_owner)
1116{
1117#ifdef ARCH_RELOCATES_KCRCTAB
1118 if (crc_owner == NULL)
1119 return crc - (unsigned long)reloc_start;
1120#endif
1121 return crc;
1122}
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124static int check_version(Elf_Shdr *sechdrs,
1125 unsigned int versindex,
1126 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301127 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001128 const unsigned long *crc,
1129 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 unsigned int i, num_versions;
1132 struct modversion_info *versions;
1133
1134 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1135 if (!crc)
1136 return 1;
1137
Rusty Russella5dd6972008-05-09 16:24:21 +10001138 /* No versions at all? modprobe --force does this. */
1139 if (versindex == 0)
1140 return try_to_force_load(mod, symname) == 0;
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 versions = (void *) sechdrs[versindex].sh_addr;
1143 num_versions = sechdrs[versindex].sh_size
1144 / sizeof(struct modversion_info);
1145
1146 for (i = 0; i < num_versions; i++) {
1147 if (strcmp(versions[i].name, symname) != 0)
1148 continue;
1149
Rusty Russelld4703ae2009-12-15 16:28:32 -06001150 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 return 1;
Jim Cromie5e124162011-12-06 12:11:31 -07001152 pr_debug("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -06001153 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001154 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001156
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001157 pr_warn("%s: no symbol version for %s\n", mod->name, symname);
Rusty Russella5dd6972008-05-09 16:24:21 +10001158 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -07001159
1160bad_version:
Ionut Alexa6da0b562014-11-10 09:31:29 +10301161 pr_warn("%s: disagrees about version of symbol %s\n",
Linus Torvalds826e4502008-05-04 17:04:16 -07001162 mod->name, symname);
1163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
1166static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1167 unsigned int versindex,
1168 struct module *mod)
1169{
1170 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Rusty Russell75676502010-06-05 11:17:36 -06001172 /* Since this should be found in kernel (which can't be removed),
1173 * no locking is necessary. */
Rusty Russellb92021b2013-03-15 15:04:17 +10301174 if (!find_symbol(VMLINUX_SYMBOL_STR(module_layout), NULL,
Mike Frysinger6560dc12009-07-23 23:42:08 +09301175 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 BUG();
James Hogana4b6a772013-03-18 19:38:56 +10301177 return check_version(sechdrs, versindex,
1178 VMLINUX_SYMBOL_STR(module_layout), mod, crc,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001179 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
Rusty Russell91e37a72008-05-09 16:25:28 +10001182/* First part is kernel version, which we ignore if module has crcs. */
1183static inline int same_magic(const char *amagic, const char *bmagic,
1184 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Rusty Russell91e37a72008-05-09 16:25:28 +10001186 if (has_crcs) {
1187 amagic += strcspn(amagic, " ");
1188 bmagic += strcspn(bmagic, " ");
1189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return strcmp(amagic, bmagic) == 0;
1191}
1192#else
1193static inline int check_version(Elf_Shdr *sechdrs,
1194 unsigned int versindex,
1195 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301196 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001197 const unsigned long *crc,
1198 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 return 1;
1201}
1202
1203static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1204 unsigned int versindex,
1205 struct module *mod)
1206{
1207 return 1;
1208}
1209
Rusty Russell91e37a72008-05-09 16:25:28 +10001210static inline int same_magic(const char *amagic, const char *bmagic,
1211 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 return strcmp(amagic, bmagic) == 0;
1214}
1215#endif /* CONFIG_MODVERSIONS */
1216
Rusty Russell75676502010-06-05 11:17:36 -06001217/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001218static const struct kernel_symbol *resolve_symbol(struct module *mod,
1219 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001220 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001221 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001224 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 const unsigned long *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001226 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Peter Zijlstrad64810f2015-02-11 15:01:13 +10301228 /*
1229 * The module_mutex should not be a heavily contended lock;
1230 * if we get the occasional sleep here, we'll go an extra iteration
1231 * in the wait_event_interruptible(), which is harmless.
1232 */
1233 sched_annotate_sleep();
Rusty Russell75676502010-06-05 11:17:36 -06001234 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001235 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001236 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001237 if (!sym)
1238 goto unlock;
1239
Rusty Russell49668682010-08-05 12:59:10 -06001240 if (!check_version(info->sechdrs, info->index.vers, name, mod, crc,
1241 owner)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001242 sym = ERR_PTR(-EINVAL);
1243 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001245
1246 err = ref_module(mod, owner);
1247 if (err) {
1248 sym = ERR_PTR(err);
1249 goto getname;
1250 }
1251
1252getname:
1253 /* We must make copy under the lock if we failed to get ref. */
1254 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1255unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001256 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001257 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Rusty Russell49668682010-08-05 12:59:10 -06001260static const struct kernel_symbol *
1261resolve_symbol_wait(struct module *mod,
1262 const struct load_info *info,
1263 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001264{
1265 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001266 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001267
1268 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001269 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1270 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001271 30 * HZ) <= 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001272 pr_warn("%s: gave up waiting for init of module %s.\n",
1273 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001274 }
1275 return ksym;
1276}
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278/*
1279 * /sys/module/foo/sections stuff
1280 * J. Corbet <corbet@lwn.net>
1281 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001282#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001283
Rusty Russell8f6d0372010-08-05 12:59:09 -06001284#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001285static inline bool sect_empty(const Elf_Shdr *sect)
1286{
1287 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1288}
1289
Ionut Alexa6da0b562014-11-10 09:31:29 +10301290struct module_sect_attr {
Rusty Russella58730c2008-03-13 09:03:44 +00001291 struct module_attribute mattr;
1292 char *name;
1293 unsigned long address;
1294};
1295
Ionut Alexa6da0b562014-11-10 09:31:29 +10301296struct module_sect_attrs {
Rusty Russella58730c2008-03-13 09:03:44 +00001297 struct attribute_group grp;
1298 unsigned int nsections;
1299 struct module_sect_attr attrs[0];
1300};
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302static ssize_t module_sect_show(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301303 struct module_kobject *mk, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 struct module_sect_attr *sattr =
1306 container_of(mattr, struct module_sect_attr, mattr);
Kees Cook9f36e2c2011-03-22 16:34:22 -07001307 return sprintf(buf, "0x%pK\n", (void *)sattr->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001310static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1311{
Rusty Russella58730c2008-03-13 09:03:44 +00001312 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001313
1314 for (section = 0; section < sect_attrs->nsections; section++)
1315 kfree(sect_attrs->attrs[section].name);
1316 kfree(sect_attrs);
1317}
1318
Rusty Russell8f6d0372010-08-05 12:59:09 -06001319static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 unsigned int nloaded = 0, i, size[2];
1322 struct module_sect_attrs *sect_attrs;
1323 struct module_sect_attr *sattr;
1324 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001327 for (i = 0; i < info->hdr->e_shnum; i++)
1328 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 nloaded++;
1330 size[0] = ALIGN(sizeof(*sect_attrs)
1331 + nloaded * sizeof(sect_attrs->attrs[0]),
1332 sizeof(sect_attrs->grp.attrs[0]));
1333 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001334 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1335 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return;
1337
1338 /* Setup section attributes. */
1339 sect_attrs->grp.name = "sections";
1340 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1341
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001342 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 sattr = &sect_attrs->attrs[0];
1344 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001345 for (i = 0; i < info->hdr->e_shnum; i++) {
1346 Elf_Shdr *sec = &info->sechdrs[i];
1347 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001348 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001349 sattr->address = sec->sh_addr;
1350 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001351 GFP_KERNEL);
1352 if (sattr->name == NULL)
1353 goto out;
1354 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001355 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 sattr->mattr.show = module_sect_show;
1357 sattr->mattr.store = NULL;
1358 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 sattr->mattr.attr.mode = S_IRUGO;
1360 *(gattr++) = &(sattr++)->mattr.attr;
1361 }
1362 *gattr = NULL;
1363
1364 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1365 goto out;
1366
1367 mod->sect_attrs = sect_attrs;
1368 return;
1369 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001370 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
1373static void remove_sect_attrs(struct module *mod)
1374{
1375 if (mod->sect_attrs) {
1376 sysfs_remove_group(&mod->mkobj.kobj,
1377 &mod->sect_attrs->grp);
1378 /* We are positive that no one is using any sect attrs
1379 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001380 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 mod->sect_attrs = NULL;
1382 }
1383}
1384
Roland McGrath6d760132007-10-16 23:26:40 -07001385/*
1386 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1387 */
1388
1389struct module_notes_attrs {
1390 struct kobject *dir;
1391 unsigned int notes;
1392 struct bin_attribute attrs[0];
1393};
1394
Chris Wright2c3c8be2010-05-12 18:28:57 -07001395static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001396 struct bin_attribute *bin_attr,
1397 char *buf, loff_t pos, size_t count)
1398{
1399 /*
1400 * The caller checked the pos and count against our size.
1401 */
1402 memcpy(buf, bin_attr->private + pos, count);
1403 return count;
1404}
1405
1406static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1407 unsigned int i)
1408{
1409 if (notes_attrs->dir) {
1410 while (i-- > 0)
1411 sysfs_remove_bin_file(notes_attrs->dir,
1412 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001413 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001414 }
1415 kfree(notes_attrs);
1416}
1417
Rusty Russell8f6d0372010-08-05 12:59:09 -06001418static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001419{
1420 unsigned int notes, loaded, i;
1421 struct module_notes_attrs *notes_attrs;
1422 struct bin_attribute *nattr;
1423
Ingo Molnarea6bff32009-08-28 10:44:56 +02001424 /* failed to create section attributes, so can't create notes */
1425 if (!mod->sect_attrs)
1426 return;
1427
Roland McGrath6d760132007-10-16 23:26:40 -07001428 /* Count notes sections and allocate structures. */
1429 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001430 for (i = 0; i < info->hdr->e_shnum; i++)
1431 if (!sect_empty(&info->sechdrs[i]) &&
1432 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001433 ++notes;
1434
1435 if (notes == 0)
1436 return;
1437
1438 notes_attrs = kzalloc(sizeof(*notes_attrs)
1439 + notes * sizeof(notes_attrs->attrs[0]),
1440 GFP_KERNEL);
1441 if (notes_attrs == NULL)
1442 return;
1443
1444 notes_attrs->notes = notes;
1445 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001446 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1447 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001448 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001449 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001450 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001451 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1452 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001453 nattr->size = info->sechdrs[i].sh_size;
1454 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001455 nattr->read = module_notes_read;
1456 ++nattr;
1457 }
1458 ++loaded;
1459 }
1460
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001461 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001462 if (!notes_attrs->dir)
1463 goto out;
1464
1465 for (i = 0; i < notes; ++i)
1466 if (sysfs_create_bin_file(notes_attrs->dir,
1467 &notes_attrs->attrs[i]))
1468 goto out;
1469
1470 mod->notes_attrs = notes_attrs;
1471 return;
1472
1473 out:
1474 free_notes_attrs(notes_attrs, i);
1475}
1476
1477static void remove_notes_attrs(struct module *mod)
1478{
1479 if (mod->notes_attrs)
1480 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1481}
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001484
Rusty Russell8f6d0372010-08-05 12:59:09 -06001485static inline void add_sect_attrs(struct module *mod,
1486 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
1488}
1489
1490static inline void remove_sect_attrs(struct module *mod)
1491{
1492}
Roland McGrath6d760132007-10-16 23:26:40 -07001493
Rusty Russell8f6d0372010-08-05 12:59:09 -06001494static inline void add_notes_attrs(struct module *mod,
1495 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001496{
1497}
1498
1499static inline void remove_notes_attrs(struct module *mod)
1500{
1501}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001502#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001504static void add_usage_links(struct module *mod)
1505{
1506#ifdef CONFIG_MODULE_UNLOAD
1507 struct module_use *use;
1508 int nowarn;
1509
Rusty Russell75676502010-06-05 11:17:36 -06001510 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001511 list_for_each_entry(use, &mod->target_list, target_list) {
1512 nowarn = sysfs_create_link(use->target->holders_dir,
1513 &mod->mkobj.kobj, mod->name);
1514 }
Rusty Russell75676502010-06-05 11:17:36 -06001515 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001516#endif
1517}
1518
1519static void del_usage_links(struct module *mod)
1520{
1521#ifdef CONFIG_MODULE_UNLOAD
1522 struct module_use *use;
1523
Rusty Russell75676502010-06-05 11:17:36 -06001524 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001525 list_for_each_entry(use, &mod->target_list, target_list)
1526 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001527 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001528#endif
1529}
1530
Rusty Russell6407ebb22010-06-05 11:17:36 -06001531static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001532{
1533 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001534 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001535 int error = 0;
1536 int i;
1537
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001538 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1539 (ARRAY_SIZE(modinfo_attrs) + 1)),
1540 GFP_KERNEL);
1541 if (!mod->modinfo_attrs)
1542 return -ENOMEM;
1543
1544 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001545 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1546 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001547 (attr->test && attr->test(mod))) {
1548 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001549 sysfs_attr_init(&temp_attr->attr);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301550 error = sysfs_create_file(&mod->mkobj.kobj,
1551 &temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001552 ++temp_attr;
1553 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001554 }
1555 return error;
1556}
1557
Rusty Russell6407ebb22010-06-05 11:17:36 -06001558static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001559{
1560 struct module_attribute *attr;
1561 int i;
1562
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001563 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1564 /* pick a field to test for end of list */
1565 if (!attr->attr.name)
1566 break;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301567 sysfs_remove_file(&mod->mkobj.kobj, &attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001568 if (attr->free)
1569 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001570 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001571 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Li Zhong942e4432013-09-03 16:33:57 +09301574static void mod_kobject_put(struct module *mod)
1575{
1576 DECLARE_COMPLETION_ONSTACK(c);
1577 mod->mkobj.kobj_completion = &c;
1578 kobject_put(&mod->mkobj.kobj);
1579 wait_for_completion(&c);
1580}
1581
Rusty Russell6407ebb22010-06-05 11:17:36 -06001582static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
1584 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001585 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001587 if (!module_sysfs_initialized) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001588 pr_err("%s: module sysfs not initialized\n", mod->name);
Ed Swierk1cc5f712006-09-25 16:25:36 -07001589 err = -EINVAL;
1590 goto out;
1591 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001592
1593 kobj = kset_find_obj(module_kset, mod->name);
1594 if (kobj) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001595 pr_err("%s: module is already loaded\n", mod->name);
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001596 kobject_put(kobj);
1597 err = -EINVAL;
1598 goto out;
1599 }
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001602
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001603 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1604 mod->mkobj.kobj.kset = module_kset;
1605 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1606 "%s", mod->name);
1607 if (err)
Li Zhong942e4432013-09-03 16:33:57 +09301608 mod_kobject_put(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001609
Kay Sievers97c146e2007-11-29 23:46:11 +01001610 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001611out:
1612 return err;
1613}
1614
Rusty Russell6407ebb22010-06-05 11:17:36 -06001615static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001616 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001617 struct kernel_param *kparam,
1618 unsigned int num_params)
1619{
1620 int err;
1621
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001622 err = mod_sysfs_init(mod);
1623 if (err)
1624 goto out;
1625
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001626 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001627 if (!mod->holders_dir) {
1628 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001629 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001630 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 err = module_param_sysfs_setup(mod, kparam, num_params);
1633 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001634 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Matt Domschc988d2b2005-06-23 22:05:15 -07001636 err = module_add_modinfo_attrs(mod);
1637 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001638 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001639
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001640 add_usage_links(mod);
Rusty Russell8f6d0372010-08-05 12:59:09 -06001641 add_sect_attrs(mod, info);
1642 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001643
Kay Sieverse17e0f52006-11-24 12:15:25 +01001644 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 return 0;
1646
Kay Sieverse17e0f52006-11-24 12:15:25 +01001647out_unreg_param:
1648 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001649out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001650 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001651out_unreg:
Li Zhong942e4432013-09-03 16:33:57 +09301652 mod_kobject_put(mod);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001653out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return err;
1655}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001656
1657static void mod_sysfs_fini(struct module *mod)
1658{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001659 remove_notes_attrs(mod);
1660 remove_sect_attrs(mod);
Li Zhong942e4432013-09-03 16:33:57 +09301661 mod_kobject_put(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001662}
1663
Rusty Russell8f6d0372010-08-05 12:59:09 -06001664#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001665
Rusty Russell8f6d0372010-08-05 12:59:09 -06001666static int mod_sysfs_setup(struct module *mod,
1667 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001668 struct kernel_param *kparam,
1669 unsigned int num_params)
1670{
1671 return 0;
1672}
1673
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001674static void mod_sysfs_fini(struct module *mod)
1675{
1676}
1677
Rusty Russell36b03602010-08-05 12:59:09 -06001678static void module_remove_modinfo_attrs(struct module *mod)
1679{
1680}
1681
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001682static void del_usage_links(struct module *mod)
1683{
1684}
1685
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001686#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Rusty Russell36b03602010-08-05 12:59:09 -06001688static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001690 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001691 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001693 kobject_put(mod->mkobj.drivers_dir);
1694 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001695 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696}
1697
matthieu castet84e1c6b2010-11-16 22:35:16 +01001698#ifdef CONFIG_DEBUG_SET_MODULE_RONX
1699/*
1700 * LKM RO/NX protection: protect module's text/ro-data
1701 * from modification and any data from execution.
1702 */
1703void set_page_attributes(void *start, void *end, int (*set)(unsigned long start, int num_pages))
1704{
1705 unsigned long begin_pfn = PFN_DOWN((unsigned long)start);
1706 unsigned long end_pfn = PFN_DOWN((unsigned long)end);
1707
1708 if (end_pfn > begin_pfn)
1709 set(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1710}
1711
1712static void set_section_ro_nx(void *base,
1713 unsigned long text_size,
1714 unsigned long ro_size,
1715 unsigned long total_size)
1716{
1717 /* begin and end PFNs of the current subsection */
1718 unsigned long begin_pfn;
1719 unsigned long end_pfn;
1720
1721 /*
1722 * Set RO for module text and RO-data:
1723 * - Always protect first page.
1724 * - Do not protect last partial page.
1725 */
1726 if (ro_size > 0)
1727 set_page_attributes(base, base + ro_size, set_memory_ro);
1728
1729 /*
1730 * Set NX permissions for module data:
1731 * - Do not protect first partial page.
1732 * - Always protect last page.
1733 */
1734 if (total_size > text_size) {
1735 begin_pfn = PFN_UP((unsigned long)base + text_size);
1736 end_pfn = PFN_UP((unsigned long)base + total_size);
1737 if (end_pfn > begin_pfn)
1738 set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1739 }
1740}
1741
Jan Glauber01526ed2011-05-19 16:55:26 -06001742static void unset_module_core_ro_nx(struct module *mod)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001743{
Jan Glauber01526ed2011-05-19 16:55:26 -06001744 set_page_attributes(mod->module_core + mod->core_text_size,
1745 mod->module_core + mod->core_size,
1746 set_memory_x);
1747 set_page_attributes(mod->module_core,
1748 mod->module_core + mod->core_ro_size,
1749 set_memory_rw);
1750}
1751
1752static void unset_module_init_ro_nx(struct module *mod)
1753{
1754 set_page_attributes(mod->module_init + mod->init_text_size,
1755 mod->module_init + mod->init_size,
1756 set_memory_x);
1757 set_page_attributes(mod->module_init,
1758 mod->module_init + mod->init_ro_size,
1759 set_memory_rw);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001760}
1761
1762/* Iterate through all modules and set each module's text as RW */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001763void set_all_modules_text_rw(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001764{
1765 struct module *mod;
1766
1767 mutex_lock(&module_mutex);
1768 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301769 if (mod->state == MODULE_STATE_UNFORMED)
1770 continue;
matthieu castet84e1c6b2010-11-16 22:35:16 +01001771 if ((mod->module_core) && (mod->core_text_size)) {
1772 set_page_attributes(mod->module_core,
1773 mod->module_core + mod->core_text_size,
1774 set_memory_rw);
1775 }
1776 if ((mod->module_init) && (mod->init_text_size)) {
1777 set_page_attributes(mod->module_init,
1778 mod->module_init + mod->init_text_size,
1779 set_memory_rw);
1780 }
1781 }
1782 mutex_unlock(&module_mutex);
1783}
1784
1785/* Iterate through all modules and set each module's text as RO */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001786void set_all_modules_text_ro(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001787{
1788 struct module *mod;
1789
1790 mutex_lock(&module_mutex);
1791 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301792 if (mod->state == MODULE_STATE_UNFORMED)
1793 continue;
matthieu castet84e1c6b2010-11-16 22:35:16 +01001794 if ((mod->module_core) && (mod->core_text_size)) {
1795 set_page_attributes(mod->module_core,
1796 mod->module_core + mod->core_text_size,
1797 set_memory_ro);
1798 }
1799 if ((mod->module_init) && (mod->init_text_size)) {
1800 set_page_attributes(mod->module_init,
1801 mod->module_init + mod->init_text_size,
1802 set_memory_ro);
1803 }
1804 }
1805 mutex_unlock(&module_mutex);
1806}
1807#else
1808static 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 -06001809static void unset_module_core_ro_nx(struct module *mod) { }
1810static void unset_module_init_ro_nx(struct module *mod) { }
matthieu castet84e1c6b2010-11-16 22:35:16 +01001811#endif
1812
Rusty Russellbe1f2212015-01-20 09:07:05 +10301813void __weak module_memfree(void *module_region)
Jonas Bonn74e08fc2011-06-30 21:22:11 +02001814{
1815 vfree(module_region);
1816}
1817
1818void __weak module_arch_cleanup(struct module *mod)
1819{
1820}
1821
Rusty Russelld453cde2015-01-20 09:07:04 +10301822void __weak module_arch_freeing_init(struct module *mod)
1823{
1824}
1825
Rusty Russell75676502010-06-05 11:17:36 -06001826/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827static void free_module(struct module *mod)
1828{
Li Zefan7ead8b82009-08-17 16:56:28 +08001829 trace_module_free(mod);
1830
Rusty Russell36b03602010-08-05 12:59:09 -06001831 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Rusty Russell944a1fa2013-04-17 13:20:03 +09301833 /* We leave it in list to prevent duplicate loads, but make sure
1834 * that noone uses it while it's being deconstructed. */
Prarit Bhargavad3051b42014-10-14 02:51:39 +10301835 mutex_lock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09301836 mod->state = MODULE_STATE_UNFORMED;
Prarit Bhargavad3051b42014-10-14 02:51:39 +10301837 mutex_unlock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09301838
Jason Baronb82bab4b2010-07-27 13:18:01 -07001839 /* Remove dynamic debug info */
1840 ddebug_remove_module(mod->name);
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 /* Arch-specific cleanup. */
1843 module_arch_cleanup(mod);
1844
1845 /* Module unload stuff */
1846 module_unload_free(mod);
1847
Rusty Russelle180a6b2009-03-31 13:05:29 -06001848 /* Free any allocated parameters. */
1849 destroy_params(mod->kp, mod->num_kp);
1850
Rusty Russell944a1fa2013-04-17 13:20:03 +09301851 /* Now we can delete it from the lists */
1852 mutex_lock(&module_mutex);
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10301853 /* Unlink carefully: kallsyms could be walking list. */
1854 list_del_rcu(&mod->list);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10301855 /* Remove this module from bug list, this uses list_del_rcu */
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10301856 module_bug_cleanup(mod);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10301857 /* Wait for RCU synchronizing before releasing mod->list and buglist. */
1858 synchronize_rcu();
Rusty Russell944a1fa2013-04-17 13:20:03 +09301859 mutex_unlock(&module_mutex);
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /* This may be NULL, but that's OK */
Jan Glauber01526ed2011-05-19 16:55:26 -06001862 unset_module_init_ro_nx(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10301863 module_arch_freeing_init(mod);
Rusty Russellbe1f2212015-01-20 09:07:05 +10301864 module_memfree(mod->module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001866 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001867
Peter Zijlstra35a93932015-02-26 16:23:11 +01001868 /* Free lock-classes; relies on the preceding sync_rcu(). */
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001869 lockdep_free_key_range(mod->module_core, mod->core_size);
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 /* Finally, free the core (containing the module structure) */
Jan Glauber01526ed2011-05-19 16:55:26 -06001872 unset_module_core_ro_nx(mod);
Rusty Russellbe1f2212015-01-20 09:07:05 +10301873 module_memfree(mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001874
1875#ifdef CONFIG_MPU
1876 update_protections(current->mm);
1877#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878}
1879
1880void *__symbol_get(const char *symbol)
1881{
1882 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001883 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Rusty Russell24da1cb2007-07-15 23:41:46 -07001885 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001886 sym = find_symbol(symbol, &owner, NULL, true, true);
1887 if (sym && strong_try_module_get(owner))
1888 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001889 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Tim Abbott414fd312008-12-05 19:03:56 -05001891 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892}
1893EXPORT_SYMBOL_GPL(__symbol_get);
1894
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001895/*
1896 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001897 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06001898 *
1899 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001900 */
1901static int verify_export_symbols(struct module *mod)
1902{
Rusty Russellb2111042008-05-01 21:15:00 -05001903 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001904 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001905 const struct kernel_symbol *s;
1906 struct {
1907 const struct kernel_symbol *sym;
1908 unsigned int num;
1909 } arr[] = {
1910 { mod->syms, mod->num_syms },
1911 { mod->gpl_syms, mod->num_gpl_syms },
1912 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001913#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001914 { mod->unused_syms, mod->num_unused_syms },
1915 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001916#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001917 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001918
Rusty Russellb2111042008-05-01 21:15:00 -05001919 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1920 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06001921 if (find_symbol(s->name, &owner, NULL, true, false)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001922 pr_err("%s: exports duplicate symbol %s"
Rusty Russellb2111042008-05-01 21:15:00 -05001923 " (owned by %s)\n",
1924 mod->name, s->name, module_name(owner));
1925 return -ENOEXEC;
1926 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001927 }
Rusty Russellb2111042008-05-01 21:15:00 -05001928 }
1929 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001930}
1931
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001932/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06001933static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
Rusty Russell49668682010-08-05 12:59:10 -06001935 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
1936 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06001938 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001940 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Rusty Russell49668682010-08-05 12:59:10 -06001942 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
1943 const char *name = info->strtab + sym[i].st_name;
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 switch (sym[i].st_shndx) {
1946 case SHN_COMMON:
Joe Mario80375982014-02-08 09:01:09 +01001947 /* Ignore common symbols */
1948 if (!strncmp(name, "__gnu_lto", 9))
1949 break;
1950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 /* We compiled with -fno-common. These are not
1952 supposed to happen. */
Jim Cromie5e124162011-12-06 12:11:31 -07001953 pr_debug("Common symbol: %s\n", name);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301954 pr_warn("%s: please compile with -fno-common\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 mod->name);
1956 ret = -ENOEXEC;
1957 break;
1958
1959 case SHN_ABS:
1960 /* Don't need to do anything */
Jim Cromie5e124162011-12-06 12:11:31 -07001961 pr_debug("Absolute symbol: 0x%08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 (long)sym[i].st_value);
1963 break;
1964
1965 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06001966 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001968 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05001969 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001971 }
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001974 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 break;
1976
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001977 pr_warn("%s: Unknown symbol %s (err %li)\n",
1978 mod->name, name, PTR_ERR(ksym));
Rusty Russell9bea7f22010-06-05 11:17:37 -06001979 ret = PTR_ERR(ksym) ?: -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 break;
1981
1982 default:
1983 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06001984 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09001985 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 else
Rusty Russell49668682010-08-05 12:59:10 -06001987 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 sym[i].st_value += secbase;
1989 break;
1990 }
1991 }
1992
1993 return ret;
1994}
1995
Rusty Russell49668682010-08-05 12:59:10 -06001996static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06001997{
1998 unsigned int i;
1999 int err = 0;
2000
2001 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06002002 for (i = 1; i < info->hdr->e_shnum; i++) {
2003 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06002004
2005 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06002006 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06002007 continue;
2008
2009 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06002010 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06002011 continue;
2012
Rusty Russell49668682010-08-05 12:59:10 -06002013 if (info->sechdrs[i].sh_type == SHT_REL)
2014 err = apply_relocate(info->sechdrs, info->strtab,
2015 info->index.sym, i, mod);
2016 else if (info->sechdrs[i].sh_type == SHT_RELA)
2017 err = apply_relocate_add(info->sechdrs, info->strtab,
2018 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002019 if (err < 0)
2020 break;
2021 }
2022 return err;
2023}
2024
Helge Deller088af9a2008-12-31 12:31:18 +01002025/* Additional bytes needed by arch in front of individual sections */
2026unsigned int __weak arch_mod_section_prepend(struct module *mod,
2027 unsigned int section)
2028{
2029 /* default implementation just returns zero */
2030 return 0;
2031}
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01002034static long get_offset(struct module *mod, unsigned int *size,
2035 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
2037 long ret;
2038
Helge Deller088af9a2008-12-31 12:31:18 +01002039 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2041 *size = ret + sechdr->sh_size;
2042 return ret;
2043}
2044
2045/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2046 might -- code, read-only data, read-write data, small data. Tally
2047 sizes, and place the offsets into sh_entsize fields: high bit means it
2048 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06002049static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
2051 static unsigned long const masks[][2] = {
2052 /* NOTE: all executable code must be the first section
2053 * in this array; otherwise modify the text_size
2054 * finder in the two loops below */
2055 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2056 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
2057 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2058 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2059 };
2060 unsigned int m, i;
2061
Rusty Russell49668682010-08-05 12:59:10 -06002062 for (i = 0; i < info->hdr->e_shnum; i++)
2063 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Jim Cromie5e124162011-12-06 12:11:31 -07002065 pr_debug("Core section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002067 for (i = 0; i < info->hdr->e_shnum; ++i) {
2068 Elf_Shdr *s = &info->sechdrs[i];
2069 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2072 || (s->sh_flags & masks[m][1])
2073 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002074 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002076 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
Jim Cromie5e124162011-12-06 12:11:31 -07002077 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002079 switch (m) {
2080 case 0: /* executable */
2081 mod->core_size = debug_align(mod->core_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 mod->core_text_size = mod->core_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002083 break;
2084 case 1: /* RO: text and ro-data */
2085 mod->core_size = debug_align(mod->core_size);
2086 mod->core_ro_size = mod->core_size;
2087 break;
2088 case 3: /* whole core */
2089 mod->core_size = debug_align(mod->core_size);
2090 break;
2091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
2093
Jim Cromie5e124162011-12-06 12:11:31 -07002094 pr_debug("Init section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002096 for (i = 0; i < info->hdr->e_shnum; ++i) {
2097 Elf_Shdr *s = &info->sechdrs[i];
2098 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2101 || (s->sh_flags & masks[m][1])
2102 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002103 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002105 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 | INIT_OFFSET_MASK);
Jim Cromie5e124162011-12-06 12:11:31 -07002107 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002109 switch (m) {
2110 case 0: /* executable */
2111 mod->init_size = debug_align(mod->init_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 mod->init_text_size = mod->init_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002113 break;
2114 case 1: /* RO: text and ro-data */
2115 mod->init_size = debug_align(mod->init_size);
2116 mod->init_ro_size = mod->init_size;
2117 break;
2118 case 3: /* whole init */
2119 mod->init_size = debug_align(mod->init_size);
2120 break;
2121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
2123}
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125static void set_license(struct module *mod, const char *license)
2126{
2127 if (!license)
2128 license = "unspecified";
2129
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002130 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07002131 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002132 pr_warn("%s: module license '%s' taints kernel.\n",
2133 mod->name, license);
Rusty Russell373d4d02013-01-21 17:17:39 +10302134 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2135 LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
2137}
2138
2139/* Parse tag=value strings from .modinfo section */
2140static char *next_string(char *string, unsigned long *secsize)
2141{
2142 /* Skip non-zero chars */
2143 while (string[0]) {
2144 string++;
2145 if ((*secsize)-- <= 1)
2146 return NULL;
2147 }
2148
2149 /* Skip any zero padding. */
2150 while (!string[0]) {
2151 string++;
2152 if ((*secsize)-- <= 1)
2153 return NULL;
2154 }
2155 return string;
2156}
2157
Rusty Russell49668682010-08-05 12:59:10 -06002158static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
2160 char *p;
2161 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06002162 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2163 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Rusty Russell49668682010-08-05 12:59:10 -06002165 for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2167 return p + taglen + 1;
2168 }
2169 return NULL;
2170}
2171
Rusty Russell49668682010-08-05 12:59:10 -06002172static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07002173{
2174 struct module_attribute *attr;
2175 int i;
2176
2177 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2178 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06002179 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07002180 }
2181}
Matt Domschc988d2b2005-06-23 22:05:15 -07002182
Rusty Russella263f772009-09-25 00:32:58 -06002183static void free_modinfo(struct module *mod)
2184{
2185 struct module_attribute *attr;
2186 int i;
2187
2188 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2189 if (attr->free)
2190 attr->free(mod);
2191 }
2192}
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01002195
2196/* lookup symbol in given range of kernel_symbols */
2197static const struct kernel_symbol *lookup_symbol(const char *name,
2198 const struct kernel_symbol *start,
2199 const struct kernel_symbol *stop)
2200{
Alessio Igor Bogani9d634872011-05-18 22:35:59 +02002201 return bsearch(name, start, stop - start,
2202 sizeof(struct kernel_symbol), cmp_name);
WANG Cong15bba372008-07-24 15:41:48 +01002203}
2204
Tim Abbottca4787b2009-01-05 08:40:10 -06002205static int is_exported(const char *name, unsigned long value,
2206 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
Tim Abbottca4787b2009-01-05 08:40:10 -06002208 const struct kernel_symbol *ks;
2209 if (!mod)
2210 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01002211 else
Tim Abbottca4787b2009-01-05 08:40:10 -06002212 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
2213 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214}
2215
2216/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06002217static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
Rusty Russelleded41c2010-08-05 12:59:07 -06002219 const Elf_Shdr *sechdrs = info->sechdrs;
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2222 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2223 return 'v';
2224 else
2225 return 'w';
2226 }
2227 if (sym->st_shndx == SHN_UNDEF)
2228 return 'U';
2229 if (sym->st_shndx == SHN_ABS)
2230 return 'a';
2231 if (sym->st_shndx >= SHN_LORESERVE)
2232 return '?';
2233 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2234 return 't';
2235 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2236 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2237 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2238 return 'r';
2239 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2240 return 'g';
2241 else
2242 return 'd';
2243 }
2244 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2245 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2246 return 's';
2247 else
2248 return 'b';
2249 }
Rusty Russelleded41c2010-08-05 12:59:07 -06002250 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2251 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06002253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return '?';
2255}
2256
Jan Beulich4a496222009-07-06 14:50:42 +01002257static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
Ionut Alexa6da0b562014-11-10 09:31:29 +10302258 unsigned int shnum)
Jan Beulich4a496222009-07-06 14:50:42 +01002259{
2260 const Elf_Shdr *sec;
2261
2262 if (src->st_shndx == SHN_UNDEF
2263 || src->st_shndx >= shnum
2264 || !src->st_name)
2265 return false;
2266
2267 sec = sechdrs + src->st_shndx;
2268 if (!(sec->sh_flags & SHF_ALLOC)
2269#ifndef CONFIG_KALLSYMS_ALL
2270 || !(sec->sh_flags & SHF_EXECINSTR)
2271#endif
2272 || (sec->sh_entsize & INIT_OFFSET_MASK))
2273 return false;
2274
2275 return true;
2276}
2277
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302278/*
2279 * We only allocate and copy the strings needed by the parts of symtab
2280 * we keep. This is simple, but has the effect of making multiple
2281 * copies of duplicates. We could be more sophisticated, see
2282 * linux-kernel thread starting with
2283 * <73defb5e4bca04a6431392cc341112b1@localhost>.
2284 */
Rusty Russell49668682010-08-05 12:59:10 -06002285static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002286{
Rusty Russell49668682010-08-05 12:59:10 -06002287 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2288 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01002289 const Elf_Sym *src;
Satoru Takeuchi54523ec2012-12-05 12:29:04 +10302290 unsigned int i, nsrc, ndst, strtab_size = 0;
Jan Beulich4a496222009-07-06 14:50:42 +01002291
2292 /* Put symbol section at end of init part of module. */
2293 symsect->sh_flags |= SHF_ALLOC;
2294 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06002295 info->index.sym) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002296 pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002297
Rusty Russell49668682010-08-05 12:59:10 -06002298 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002299 nsrc = symsect->sh_size / sizeof(*src);
Kevin Cernekee70b1e9162011-11-12 19:08:55 -08002300
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302301 /* Compute total space required for the core symbols' strtab. */
Rusty Russell59ef28b2012-10-25 10:49:25 +10302302 for (ndst = i = 0; i < nsrc; i++) {
2303 if (i == 0 ||
2304 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2305 strtab_size += strlen(&info->strtab[src[i].st_name])+1;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302306 ndst++;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002307 }
Rusty Russell59ef28b2012-10-25 10:49:25 +10302308 }
Jan Beulich4a496222009-07-06 14:50:42 +01002309
2310 /* Append room for core symbols at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06002311 info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302312 info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
2313 mod->core_size += strtab_size;
Laura Abbott168e47f2015-02-25 14:14:57 -08002314 mod->core_size = debug_align(mod->core_size);
Jan Beulich4a496222009-07-06 14:50:42 +01002315
Jan Beulich554bdfe2009-07-06 14:51:44 +01002316 /* Put string table section at end of init part of module. */
2317 strsect->sh_flags |= SHF_ALLOC;
2318 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06002319 info->index.str) | INIT_OFFSET_MASK;
Laura Abbott168e47f2015-02-25 14:14:57 -08002320 mod->init_size = debug_align(mod->init_size);
Jim Cromie5e124162011-12-06 12:11:31 -07002321 pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002322}
2323
Rusty Russell811d66a2010-08-05 12:59:12 -06002324static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325{
Jan Beulich4a496222009-07-06 14:50:42 +01002326 unsigned int i, ndst;
2327 const Elf_Sym *src;
2328 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002329 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002330 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Rusty Russelleded41c2010-08-05 12:59:07 -06002332 mod->symtab = (void *)symsec->sh_addr;
2333 mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002334 /* Make sure we get permanent strtab: don't use info->strtab. */
2335 mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337 /* Set types up while we still have access to sections. */
2338 for (i = 0; i < mod->num_symtab; i++)
Rusty Russelleded41c2010-08-05 12:59:07 -06002339 mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002340
Rusty Russelld9131882010-08-05 12:59:08 -06002341 mod->core_symtab = dst = mod->module_core + info->symoffs;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302342 mod->core_strtab = s = mod->module_core + info->stroffs;
Jan Beulich4a496222009-07-06 14:50:42 +01002343 src = mod->symtab;
Rusty Russell59ef28b2012-10-25 10:49:25 +10302344 for (ndst = i = 0; i < mod->num_symtab; i++) {
2345 if (i == 0 ||
2346 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2347 dst[ndst] = src[i];
2348 dst[ndst++].st_name = s - mod->core_strtab;
2349 s += strlcpy(s, &mod->strtab[src[i].st_name],
2350 KSYM_NAME_LEN) + 1;
2351 }
Jan Beulich4a496222009-07-06 14:50:42 +01002352 }
2353 mod->core_num_syms = ndst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355#else
Rusty Russell49668682010-08-05 12:59:10 -06002356static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002357{
2358}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002359
Michał Mirosławabbce902010-09-20 01:58:08 +02002360static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
2362}
2363#endif /* CONFIG_KALLSYMS */
2364
Jason Barone9d376f2009-02-05 11:51:38 -05002365static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002366{
Rusty Russell811d66a2010-08-05 12:59:12 -06002367 if (!debug)
2368 return;
Jason Barone9d376f2009-02-05 11:51:38 -05002369#ifdef CONFIG_DYNAMIC_DEBUG
2370 if (ddebug_add_module(debug, num, debug->modname))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002371 pr_err("dynamic debug error adding module: %s\n",
2372 debug->modname);
Jason Barone9d376f2009-02-05 11:51:38 -05002373#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002374}
Jason Baron346e15b2008-08-12 16:46:19 -04002375
Yehuda Sadehff49d742010-07-03 13:07:35 +10002376static void dynamic_debug_remove(struct _ddebug *debug)
2377{
2378 if (debug)
2379 ddebug_remove_module(debug->modname);
2380}
2381
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002382void * __weak module_alloc(unsigned long size)
2383{
Rusty Russell82fab442012-12-11 09:38:33 +10302384 return vmalloc_exec(size);
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002385}
2386
Rusty Russell3a642e92008-07-22 19:24:28 -05002387static void *module_alloc_update_bounds(unsigned long size)
2388{
2389 void *ret = module_alloc(size);
2390
2391 if (ret) {
Rusty Russell75676502010-06-05 11:17:36 -06002392 mutex_lock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002393 /* Update module bounds. */
2394 if ((unsigned long)ret < module_addr_min)
2395 module_addr_min = (unsigned long)ret;
2396 if ((unsigned long)ret + size > module_addr_max)
2397 module_addr_max = (unsigned long)ret + size;
Rusty Russell75676502010-06-05 11:17:36 -06002398 mutex_unlock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002399 }
2400 return ret;
2401}
2402
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002403#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002404static void kmemleak_load_module(const struct module *mod,
2405 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002406{
2407 unsigned int i;
2408
2409 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002410 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002411
Rusty Russell49668682010-08-05 12:59:10 -06002412 for (i = 1; i < info->hdr->e_shnum; i++) {
Steven Rostedt06c94942013-05-15 20:33:01 +01002413 /* Scan all writable sections that's not executable */
2414 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
2415 !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
2416 (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002417 continue;
2418
Rusty Russell49668682010-08-05 12:59:10 -06002419 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2420 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002421 }
2422}
2423#else
Rusty Russell49668682010-08-05 12:59:10 -06002424static inline void kmemleak_load_module(const struct module *mod,
2425 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002426{
2427}
2428#endif
2429
Rusty Russell106a4ee2012-09-26 10:09:40 +01002430#ifdef CONFIG_MODULE_SIG
Kees Cook34e11692012-10-16 07:31:07 +10302431static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002432{
2433 int err = -ENOKEY;
Kees Cook34e11692012-10-16 07:31:07 +10302434 const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
2435 const void *mod = info->hdr;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002436
Kees Cook34e11692012-10-16 07:31:07 +10302437 if (info->len > markerlen &&
2438 memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
David Howellscaabe242012-10-20 01:19:29 +01002439 /* We truncate the module to discard the signature */
Kees Cook34e11692012-10-16 07:31:07 +10302440 info->len -= markerlen;
2441 err = mod_verify_sig(mod, &info->len);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002442 }
2443
2444 if (!err) {
2445 info->sig_ok = true;
2446 return 0;
2447 }
2448
2449 /* Not having a signature is only an error if we're strict. */
2450 if (err == -ENOKEY && !sig_enforce)
2451 err = 0;
2452
2453 return err;
2454}
2455#else /* !CONFIG_MODULE_SIG */
Kees Cook34e11692012-10-16 07:31:07 +10302456static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002457{
2458 return 0;
2459}
2460#endif /* !CONFIG_MODULE_SIG */
2461
Kees Cook34e11692012-10-16 07:31:07 +10302462/* Sanity checks against invalid binaries, wrong arch, weird elf version. */
2463static int elf_header_check(struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002464{
Kees Cook34e11692012-10-16 07:31:07 +10302465 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002466 return -ENOEXEC;
2467
Kees Cook34e11692012-10-16 07:31:07 +10302468 if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2469 || info->hdr->e_type != ET_REL
2470 || !elf_check_arch(info->hdr)
2471 || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2472 return -ENOEXEC;
2473
2474 if (info->hdr->e_shoff >= info->len
2475 || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2476 info->len - info->hdr->e_shoff))
2477 return -ENOEXEC;
2478
2479 return 0;
2480}
2481
Linus Torvalds3afe9f82015-04-07 10:33:49 -07002482#define COPY_CHUNK_SIZE (16*PAGE_SIZE)
2483
2484static int copy_chunked_from_user(void *dst, const void __user *usrc, unsigned long len)
2485{
2486 do {
2487 unsigned long n = min(len, COPY_CHUNK_SIZE);
2488
2489 if (copy_from_user(dst, usrc, n) != 0)
2490 return -EFAULT;
2491 cond_resched();
2492 dst += n;
2493 usrc += n;
2494 len -= n;
2495 } while (len);
2496 return 0;
2497}
2498
Kees Cook34e11692012-10-16 07:31:07 +10302499/* Sets info->hdr and info->len. */
2500static int copy_module_from_user(const void __user *umod, unsigned long len,
2501 struct load_info *info)
2502{
Kees Cook2e72d512012-10-16 07:32:07 +10302503 int err;
2504
Kees Cook34e11692012-10-16 07:31:07 +10302505 info->len = len;
2506 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002507 return -ENOEXEC;
2508
Kees Cook2e72d512012-10-16 07:32:07 +10302509 err = security_kernel_module_from_file(NULL);
2510 if (err)
2511 return err;
2512
Rusty Russell40dd2562010-08-05 12:59:03 -06002513 /* Suck in entire file: we'll want most of it. */
Kirill A. Shutemovcc9e6052015-03-24 12:31:40 +10302514 info->hdr = __vmalloc(info->len,
2515 GFP_KERNEL | __GFP_HIGHMEM | __GFP_NOWARN, PAGE_KERNEL);
Kees Cook34e11692012-10-16 07:31:07 +10302516 if (!info->hdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06002517 return -ENOMEM;
2518
Linus Torvalds3afe9f82015-04-07 10:33:49 -07002519 if (copy_chunked_from_user(info->hdr, umod, info->len) != 0) {
Kees Cook34e11692012-10-16 07:31:07 +10302520 vfree(info->hdr);
2521 return -EFAULT;
Rusty Russell40dd2562010-08-05 12:59:03 -06002522 }
2523
Rusty Russell40dd2562010-08-05 12:59:03 -06002524 return 0;
Kees Cook34e11692012-10-16 07:31:07 +10302525}
Rusty Russell40dd2562010-08-05 12:59:03 -06002526
Kees Cook34e11692012-10-16 07:31:07 +10302527/* Sets info->hdr and info->len. */
2528static int copy_module_from_fd(int fd, struct load_info *info)
2529{
Al Viroa2e05782013-08-30 12:41:41 -04002530 struct fd f = fdget(fd);
Kees Cook34e11692012-10-16 07:31:07 +10302531 int err;
2532 struct kstat stat;
2533 loff_t pos;
2534 ssize_t bytes = 0;
2535
Al Viroa2e05782013-08-30 12:41:41 -04002536 if (!f.file)
Kees Cook34e11692012-10-16 07:31:07 +10302537 return -ENOEXEC;
2538
Al Viroa2e05782013-08-30 12:41:41 -04002539 err = security_kernel_module_from_file(f.file);
Kees Cook2e72d512012-10-16 07:32:07 +10302540 if (err)
2541 goto out;
2542
Al Viroa2e05782013-08-30 12:41:41 -04002543 err = vfs_getattr(&f.file->f_path, &stat);
Kees Cook34e11692012-10-16 07:31:07 +10302544 if (err)
2545 goto out;
2546
2547 if (stat.size > INT_MAX) {
2548 err = -EFBIG;
2549 goto out;
2550 }
Sasha Levin52441fa2013-01-03 11:09:53 +10302551
2552 /* Don't hand 0 to vmalloc, it whines. */
2553 if (stat.size == 0) {
2554 err = -EINVAL;
2555 goto out;
2556 }
2557
Kees Cook34e11692012-10-16 07:31:07 +10302558 info->hdr = vmalloc(stat.size);
2559 if (!info->hdr) {
2560 err = -ENOMEM;
2561 goto out;
2562 }
2563
2564 pos = 0;
2565 while (pos < stat.size) {
Al Viroa2e05782013-08-30 12:41:41 -04002566 bytes = kernel_read(f.file, pos, (char *)(info->hdr) + pos,
Kees Cook34e11692012-10-16 07:31:07 +10302567 stat.size - pos);
2568 if (bytes < 0) {
2569 vfree(info->hdr);
2570 err = bytes;
2571 goto out;
2572 }
2573 if (bytes == 0)
2574 break;
2575 pos += bytes;
2576 }
2577 info->len = pos;
2578
2579out:
Al Viroa2e05782013-08-30 12:41:41 -04002580 fdput(f);
Rusty Russell40dd2562010-08-05 12:59:03 -06002581 return err;
2582}
2583
Rusty Russelld9131882010-08-05 12:59:08 -06002584static void free_copy(struct load_info *info)
2585{
Rusty Russelld9131882010-08-05 12:59:08 -06002586 vfree(info->hdr);
2587}
2588
Rusty Russell2f3238a2012-10-22 18:09:41 +10302589static int rewrite_section_headers(struct load_info *info, int flags)
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002590{
2591 unsigned int i;
2592
2593 /* This should always be true, but let's be sure. */
2594 info->sechdrs[0].sh_addr = 0;
2595
2596 for (i = 1; i < info->hdr->e_shnum; i++) {
2597 Elf_Shdr *shdr = &info->sechdrs[i];
2598 if (shdr->sh_type != SHT_NOBITS
2599 && info->len < shdr->sh_offset + shdr->sh_size) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002600 pr_err("Module len %lu truncated\n", info->len);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002601 return -ENOEXEC;
2602 }
2603
2604 /* Mark all sections sh_addr with their address in the
2605 temporary image. */
2606 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2607
2608#ifndef CONFIG_MODULE_UNLOAD
2609 /* Don't load .exit sections */
2610 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2611 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2612#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002613 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002614
2615 /* Track but don't keep modinfo and version sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302616 if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
2617 info->index.vers = 0; /* Pretend no __versions section! */
2618 else
2619 info->index.vers = find_sec(info, "__versions");
Rusty Russell49668682010-08-05 12:59:10 -06002620 info->index.info = find_sec(info, ".modinfo");
Rusty Russelld6df72a2010-08-05 12:59:07 -06002621 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2622 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002623 return 0;
2624}
2625
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002626/*
2627 * Set up our basic convenience variables (pointers to section headers,
2628 * search for module section index etc), and do some basic section
2629 * verification.
2630 *
2631 * Return the temporary module pointer (we'll replace it with the final
2632 * one when we move the module sections around).
2633 */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302634static struct module *setup_load_info(struct load_info *info, int flags)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002635{
2636 unsigned int i;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002637 int err;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002638 struct module *mod;
2639
2640 /* Set up the convenience variables */
2641 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002642 info->secstrings = (void *)info->hdr
2643 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002644
Rusty Russell2f3238a2012-10-22 18:09:41 +10302645 err = rewrite_section_headers(info, flags);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002646 if (err)
2647 return ERR_PTR(err);
2648
2649 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002650 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002651 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2652 info->index.sym = i;
2653 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002654 info->strtab = (char *)info->hdr
2655 + info->sechdrs[info->index.str].sh_offset;
2656 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002657 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002658 }
2659
Rusty Russell49668682010-08-05 12:59:10 -06002660 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002661 if (!info->index.mod) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002662 pr_warn("No module found in object\n");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002663 return ERR_PTR(-ENOEXEC);
2664 }
2665 /* This is temporary: point mod into copy of data. */
2666 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2667
2668 if (info->index.sym == 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002669 pr_warn("%s: module has no symbols (stripped?)\n", mod->name);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002670 return ERR_PTR(-ENOEXEC);
2671 }
2672
Rusty Russell49668682010-08-05 12:59:10 -06002673 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002674
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002675 /* Check module struct version now, before we try to use module. */
2676 if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
2677 return ERR_PTR(-ENOEXEC);
2678
2679 return mod;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002680}
2681
Rusty Russell2f3238a2012-10-22 18:09:41 +10302682static int check_modinfo(struct module *mod, struct load_info *info, int flags)
Rusty Russell40dd2562010-08-05 12:59:03 -06002683{
Rusty Russell49668682010-08-05 12:59:10 -06002684 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002685 int err;
2686
Rusty Russell2f3238a2012-10-22 18:09:41 +10302687 if (flags & MODULE_INIT_IGNORE_VERMAGIC)
2688 modmagic = NULL;
2689
Rusty Russell40dd2562010-08-05 12:59:03 -06002690 /* This is allowed: modprobe --force will invalidate it. */
2691 if (!modmagic) {
2692 err = try_to_force_load(mod, "bad vermagic");
2693 if (err)
2694 return err;
Rusty Russell49668682010-08-05 12:59:10 -06002695 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002696 pr_err("%s: version magic '%s' should be '%s'\n",
Rusty Russell40dd2562010-08-05 12:59:03 -06002697 mod->name, modmagic, vermagic);
2698 return -ENOEXEC;
2699 }
2700
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002701 if (!get_modinfo(info, "intree"))
Rusty Russell373d4d02013-01-21 17:17:39 +10302702 add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002703
Rusty Russell49668682010-08-05 12:59:10 -06002704 if (get_modinfo(info, "staging")) {
Rusty Russell373d4d02013-01-21 17:17:39 +10302705 add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002706 pr_warn("%s: module is from the staging directory, the quality "
2707 "is unknown, you have been warned.\n", mod->name);
Rusty Russell40dd2562010-08-05 12:59:03 -06002708 }
Rusty Russell22e268e2010-08-05 12:59:05 -06002709
2710 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06002711 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06002712
Rusty Russell40dd2562010-08-05 12:59:03 -06002713 return 0;
2714}
2715
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302716static int find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002717{
Rusty Russell49668682010-08-05 12:59:10 -06002718 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002719 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06002720 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002721 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002722 mod->crcs = section_addr(info, "__kcrctab");
2723 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002724 sizeof(*mod->gpl_syms),
2725 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002726 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
2727 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002728 "__ksymtab_gpl_future",
2729 sizeof(*mod->gpl_future_syms),
2730 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002731 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002732
2733#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06002734 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002735 sizeof(*mod->unused_syms),
2736 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002737 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
2738 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002739 sizeof(*mod->unused_gpl_syms),
2740 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002741 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002742#endif
2743#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06002744 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002745 sizeof(*mod->ctors), &mod->num_ctors);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302746 if (!mod->ctors)
2747 mod->ctors = section_objs(info, ".init_array",
2748 sizeof(*mod->ctors), &mod->num_ctors);
2749 else if (find_sec(info, ".init_array")) {
2750 /*
2751 * This shouldn't happen with same compiler and binutils
2752 * building all parts of the module.
2753 */
Ionut Alexa6da0b562014-11-10 09:31:29 +10302754 pr_warn("%s: has both .ctors and .init_array.\n",
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302755 mod->name);
2756 return -EINVAL;
2757 }
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002758#endif
2759
2760#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -05002761 mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
2762 sizeof(*mod->tracepoints_ptrs),
2763 &mod->num_tracepoints);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002764#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -04002765#ifdef HAVE_JUMP_LABEL
2766 mod->jump_entries = section_objs(info, "__jump_table",
2767 sizeof(*mod->jump_entries),
2768 &mod->num_jump_entries);
2769#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002770#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06002771 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002772 sizeof(*mod->trace_events),
2773 &mod->num_trace_events);
Steven Rostedt (Red Hat)3673b8e2015-03-25 15:44:21 -04002774 mod->trace_enums = section_objs(info, "_ftrace_enum_map",
2775 sizeof(*mod->trace_enums),
2776 &mod->num_trace_enums);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002777#endif
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002778#ifdef CONFIG_TRACING
2779 mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
2780 sizeof(*mod->trace_bprintk_fmt_start),
2781 &mod->num_trace_bprintk_fmt);
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002782#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002783#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2784 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06002785 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002786 sizeof(*mod->ftrace_callsites),
2787 &mod->num_ftrace_callsites);
2788#endif
Rusty Russell22e268e2010-08-05 12:59:05 -06002789
Rusty Russell811d66a2010-08-05 12:59:12 -06002790 mod->extable = section_objs(info, "__ex_table",
2791 sizeof(*mod->extable), &mod->num_exentries);
2792
Rusty Russell49668682010-08-05 12:59:10 -06002793 if (section_addr(info, "__obsparm"))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002794 pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06002795
2796 info->debug = section_objs(info, "__verbose",
2797 sizeof(*info->debug), &info->num_debug);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302798
2799 return 0;
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002800}
2801
Rusty Russell49668682010-08-05 12:59:10 -06002802static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002803{
2804 int i;
2805 void *ptr;
2806
2807 /* Do the allocs. */
2808 ptr = module_alloc_update_bounds(mod->core_size);
2809 /*
2810 * The pointer to this block is stored in the module structure
2811 * which is inside the block. Just mark it as not being a
2812 * leak.
2813 */
2814 kmemleak_not_leak(ptr);
2815 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06002816 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002817
2818 memset(ptr, 0, mod->core_size);
2819 mod->module_core = ptr;
2820
Rusty Russell82fab442012-12-11 09:38:33 +10302821 if (mod->init_size) {
2822 ptr = module_alloc_update_bounds(mod->init_size);
2823 /*
2824 * The pointer to this block is stored in the module structure
2825 * which is inside the block. This block doesn't need to be
2826 * scanned as it contains data and code that will be freed
2827 * after the module is initialized.
2828 */
2829 kmemleak_ignore(ptr);
2830 if (!ptr) {
Rusty Russellbe1f2212015-01-20 09:07:05 +10302831 module_memfree(mod->module_core);
Rusty Russell82fab442012-12-11 09:38:33 +10302832 return -ENOMEM;
2833 }
2834 memset(ptr, 0, mod->init_size);
2835 mod->module_init = ptr;
2836 } else
2837 mod->module_init = NULL;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002838
2839 /* Transfer each section which specifies SHF_ALLOC */
Jim Cromie5e124162011-12-06 12:11:31 -07002840 pr_debug("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06002841 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002842 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06002843 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002844
Rusty Russell49668682010-08-05 12:59:10 -06002845 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002846 continue;
2847
Rusty Russell49668682010-08-05 12:59:10 -06002848 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002849 dest = mod->module_init
Rusty Russell49668682010-08-05 12:59:10 -06002850 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002851 else
Rusty Russell49668682010-08-05 12:59:10 -06002852 dest = mod->module_core + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002853
Rusty Russell49668682010-08-05 12:59:10 -06002854 if (shdr->sh_type != SHT_NOBITS)
2855 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002856 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06002857 shdr->sh_addr = (unsigned long)dest;
Jim Cromie5e124162011-12-06 12:11:31 -07002858 pr_debug("\t0x%lx %s\n",
2859 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002860 }
Rusty Russelld9131882010-08-05 12:59:08 -06002861
2862 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002863}
2864
Rusty Russell49668682010-08-05 12:59:10 -06002865static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06002866{
2867 /*
2868 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2869 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2870 * using GPL-only symbols it needs.
2871 */
2872 if (strcmp(mod->name, "ndiswrapper") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302873 add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06002874
2875 /* driverloader was caught wrongly pretending to be under GPL */
2876 if (strcmp(mod->name, "driverloader") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302877 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2878 LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06002879
Matthew Garrettc99af372012-06-22 13:49:31 -04002880 /* lve claims to be GPL but upstream won't provide source */
2881 if (strcmp(mod->name, "lve") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302882 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2883 LOCKDEP_NOW_UNRELIABLE);
Matthew Garrettc99af372012-06-22 13:49:31 -04002884
Rusty Russell22e268e2010-08-05 12:59:05 -06002885#ifdef CONFIG_MODVERSIONS
2886 if ((mod->num_syms && !mod->crcs)
2887 || (mod->num_gpl_syms && !mod->gpl_crcs)
2888 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2889#ifdef CONFIG_UNUSED_SYMBOLS
2890 || (mod->num_unused_syms && !mod->unused_crcs)
2891 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2892#endif
2893 ) {
2894 return try_to_force_load(mod,
2895 "no versions for exported symbols");
2896 }
2897#endif
2898 return 0;
2899}
2900
2901static void flush_module_icache(const struct module *mod)
2902{
2903 mm_segment_t old_fs;
2904
2905 /* flush the icache in correct context */
2906 old_fs = get_fs();
2907 set_fs(KERNEL_DS);
2908
2909 /*
2910 * Flush the instruction cache, since we've played with text.
2911 * Do it before processing of module parameters, so the module
2912 * can provide parameter accessor functions of its own.
2913 */
2914 if (mod->module_init)
2915 flush_icache_range((unsigned long)mod->module_init,
2916 (unsigned long)mod->module_init
2917 + mod->init_size);
2918 flush_icache_range((unsigned long)mod->module_core,
2919 (unsigned long)mod->module_core + mod->core_size);
2920
2921 set_fs(old_fs);
2922}
2923
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002924int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
2925 Elf_Shdr *sechdrs,
2926 char *secstrings,
2927 struct module *mod)
2928{
2929 return 0;
2930}
2931
Rusty Russell2f3238a2012-10-22 18:09:41 +10302932static struct module *layout_and_allocate(struct load_info *info, int flags)
Rusty Russelld9131882010-08-05 12:59:08 -06002933{
2934 /* Module within temporary copy. */
2935 struct module *mod;
2936 int err;
2937
Rusty Russell2f3238a2012-10-22 18:09:41 +10302938 mod = setup_load_info(info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002939 if (IS_ERR(mod))
2940 return mod;
2941
Rusty Russell2f3238a2012-10-22 18:09:41 +10302942 err = check_modinfo(mod, info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002943 if (err)
2944 return ERR_PTR(err);
2945
2946 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06002947 err = module_frob_arch_sections(info->hdr, info->sechdrs,
2948 info->secstrings, mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002949 if (err < 0)
Rusty Russell8d8022e2013-07-03 10:06:28 +09302950 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06002951
Rusty Russell8d8022e2013-07-03 10:06:28 +09302952 /* We will do a special allocation for per-cpu sections later. */
2953 info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06002954
2955 /* Determine total sizes, and put offsets in sh_entsize. For now
2956 this is done generically; there doesn't appear to be any
2957 special cases for the architectures. */
Rusty Russell49668682010-08-05 12:59:10 -06002958 layout_sections(mod, info);
Rusty Russell49668682010-08-05 12:59:10 -06002959 layout_symtab(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002960
2961 /* Allocate and move to the final place */
Rusty Russell49668682010-08-05 12:59:10 -06002962 err = move_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002963 if (err)
Rusty Russell8d8022e2013-07-03 10:06:28 +09302964 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06002965
2966 /* Module has been copied to its final place now: return it. */
2967 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06002968 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002969 return mod;
Rusty Russelld9131882010-08-05 12:59:08 -06002970}
2971
2972/* mod is no longer valid after this! */
2973static void module_deallocate(struct module *mod, struct load_info *info)
2974{
Rusty Russelld9131882010-08-05 12:59:08 -06002975 percpu_modfree(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10302976 module_arch_freeing_init(mod);
Rusty Russellbe1f2212015-01-20 09:07:05 +10302977 module_memfree(mod->module_init);
2978 module_memfree(mod->module_core);
Rusty Russelld9131882010-08-05 12:59:08 -06002979}
2980
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002981int __weak module_finalize(const Elf_Ehdr *hdr,
2982 const Elf_Shdr *sechdrs,
2983 struct module *me)
2984{
2985 return 0;
2986}
2987
Rusty Russell811d66a2010-08-05 12:59:12 -06002988static int post_relocation(struct module *mod, const struct load_info *info)
2989{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002990 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002991 sort_extable(mod->extable, mod->extable + mod->num_exentries);
2992
2993 /* Copy relocated percpu area over. */
2994 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
2995 info->sechdrs[info->index.pcpu].sh_size);
2996
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002997 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002998 add_kallsyms(mod, info);
2999
3000 /* Arch-specific module finalizing. */
3001 return module_finalize(info->hdr, info->sechdrs, mod);
3002}
3003
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303004/* Is this module of this name done loading? No locks held. */
3005static bool finished_loading(const char *name)
3006{
3007 struct module *mod;
3008 bool ret;
3009
Peter Zijlstra9cc019b2015-02-11 15:01:13 +10303010 /*
3011 * The module_mutex should not be a heavily contended lock;
3012 * if we get the occasional sleep here, we'll go an extra iteration
3013 * in the wait_event_interruptible(), which is harmless.
3014 */
3015 sched_annotate_sleep();
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303016 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303017 mod = find_module_all(name, strlen(name), true);
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303018 ret = !mod || mod->state == MODULE_STATE_LIVE
3019 || mod->state == MODULE_STATE_GOING;
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303020 mutex_unlock(&module_mutex);
3021
3022 return ret;
3023}
3024
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003025/* Call module constructors. */
3026static void do_mod_ctors(struct module *mod)
3027{
3028#ifdef CONFIG_CONSTRUCTORS
3029 unsigned long i;
3030
3031 for (i = 0; i < mod->num_ctors; i++)
3032 mod->ctors[i]();
3033#endif
3034}
3035
Rusty Russellc7496372015-01-20 09:07:05 +10303036/* For freeing module_init on success, in case kallsyms traversing */
3037struct mod_initfree {
3038 struct rcu_head rcu;
3039 void *module_init;
3040};
3041
3042static void do_free_init(struct rcu_head *head)
3043{
3044 struct mod_initfree *m = container_of(head, struct mod_initfree, rcu);
3045 module_memfree(m->module_init);
3046 kfree(m);
3047}
3048
Jan Kiszkabe02a182015-02-17 13:46:50 -08003049/*
3050 * This is where the real work happens.
3051 *
3052 * Keep it uninlined to provide a reliable breakpoint target, e.g. for the gdb
3053 * helper command 'lx-symbols'.
3054 */
3055static noinline int do_init_module(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 int ret = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303058 struct mod_initfree *freeinit;
3059
3060 freeinit = kmalloc(sizeof(*freeinit), GFP_KERNEL);
3061 if (!freeinit) {
3062 ret = -ENOMEM;
3063 goto fail;
3064 }
3065 freeinit->module_init = mod->module_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Tejun Heo774a1222013-01-15 18:52:51 -08003067 /*
3068 * We want to find out whether @mod uses async during init. Clear
3069 * PF_USED_ASYNC. async_schedule*() will set it.
3070 */
3071 current->flags &= ~PF_USED_ASYNC;
3072
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003073 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 /* Start the module */
3075 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07003076 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 if (ret < 0) {
Rusty Russellc7496372015-01-20 09:07:05 +10303078 goto fail_free_freeinit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003080 if (ret > 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003081 pr_warn("%s: '%s'->init suspiciously returned %d, it should "
3082 "follow 0/-E convention\n"
3083 "%s: loading module anyway...\n",
3084 __func__, mod->name, ret, __func__);
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003085 dump_stack();
3086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Rusty Russell6f139092012-09-28 14:31:03 +09303088 /* Now it's a first class citizen! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 mod->state = MODULE_STATE_LIVE;
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08003090 blocking_notifier_call_chain(&module_notify_list,
3091 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07003092
Tejun Heo774a1222013-01-15 18:52:51 -08003093 /*
3094 * We need to finish all async code before the module init sequence
3095 * is done. This has potential to deadlock. For example, a newly
3096 * detected block device can trigger request_module() of the
3097 * default iosched from async probing task. Once userland helper
3098 * reaches here, async_synchronize_full() will wait on the async
3099 * task waiting on request_module() and deadlock.
3100 *
3101 * This deadlock is avoided by perfomring async_synchronize_full()
3102 * iff module init queued any async jobs. This isn't a full
3103 * solution as it will deadlock the same if module loading from
3104 * async jobs nests more than once; however, due to the various
3105 * constraints, this hack seems to be the best option for now.
3106 * Please refer to the following thread for details.
3107 *
3108 * http://thread.gmane.org/gmane.linux.kernel/1420814
3109 */
3110 if (current->flags & PF_USED_ASYNC)
3111 async_synchronize_full();
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07003112
Rusty Russell6c5db222008-03-10 11:43:52 -07003113 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 /* Drop initial reference. */
3115 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06003116 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01003117#ifdef CONFIG_KALLSYMS
3118 mod->num_symtab = mod->core_num_syms;
3119 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01003120 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01003121#endif
Jan Glauber01526ed2011-05-19 16:55:26 -06003122 unset_module_init_ro_nx(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10303123 module_arch_freeing_init(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 mod->module_init = NULL;
3125 mod->init_size = 0;
Jan Glauber4d103802011-05-19 16:55:25 -06003126 mod->init_ro_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 mod->init_text_size = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303128 /*
3129 * We want to free module_init, but be aware that kallsyms may be
3130 * walking this with preempt disabled. In all the failure paths,
3131 * we call synchronize_rcu/synchronize_sched, but we don't want
3132 * to slow down the success path, so use actual RCU here.
3133 */
3134 call_rcu(&freeinit->rcu, do_free_init);
Ashutosh Naik6389a382006-03-23 03:00:46 -08003135 mutex_unlock(&module_mutex);
Rusty Russell6f139092012-09-28 14:31:03 +09303136 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
3138 return 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303139
3140fail_free_freeinit:
3141 kfree(freeinit);
3142fail:
3143 /* Try to protect us from buggy refcounters. */
3144 mod->state = MODULE_STATE_GOING;
3145 synchronize_sched();
3146 module_put(mod);
3147 blocking_notifier_call_chain(&module_notify_list,
3148 MODULE_STATE_GOING, mod);
3149 free_module(mod);
3150 wake_up_all(&module_wq);
3151 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152}
3153
Kees Cook34e11692012-10-16 07:31:07 +10303154static int may_init_module(void)
3155{
3156 if (!capable(CAP_SYS_MODULE) || modules_disabled)
3157 return -EPERM;
3158
3159 return 0;
3160}
3161
Rusty Russella3535c72013-01-21 17:18:59 +10303162/*
3163 * We try to place it in the list now to make sure it's unique before
3164 * we dedicate too many resources. In particular, temporary percpu
3165 * memory exhaustion.
3166 */
3167static int add_unformed_module(struct module *mod)
3168{
3169 int err;
3170 struct module *old;
3171
3172 mod->state = MODULE_STATE_UNFORMED;
3173
3174again:
3175 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303176 old = find_module_all(mod->name, strlen(mod->name), true);
3177 if (old != NULL) {
Rusty Russella3535c72013-01-21 17:18:59 +10303178 if (old->state == MODULE_STATE_COMING
3179 || old->state == MODULE_STATE_UNFORMED) {
3180 /* Wait in case it fails to load. */
3181 mutex_unlock(&module_mutex);
Peter Zijlstra9cc019b2015-02-11 15:01:13 +10303182 err = wait_event_interruptible(module_wq,
3183 finished_loading(mod->name));
Rusty Russella3535c72013-01-21 17:18:59 +10303184 if (err)
3185 goto out_unlocked;
3186 goto again;
3187 }
3188 err = -EEXIST;
3189 goto out;
3190 }
3191 list_add_rcu(&mod->list, &modules);
3192 err = 0;
3193
3194out:
3195 mutex_unlock(&module_mutex);
3196out_unlocked:
3197 return err;
3198}
3199
3200static int complete_formation(struct module *mod, struct load_info *info)
3201{
3202 int err;
3203
3204 mutex_lock(&module_mutex);
3205
3206 /* Find duplicate symbols (must be called under lock). */
3207 err = verify_export_symbols(mod);
3208 if (err < 0)
3209 goto out;
3210
3211 /* This relies on module_mutex for list integrity. */
3212 module_bug_finalize(info->hdr, info->sechdrs, mod);
3213
Rusty Russell49822232014-05-14 10:54:19 +09303214 /* Set RO and NX regions for core */
3215 set_section_ro_nx(mod->module_core,
3216 mod->core_text_size,
3217 mod->core_ro_size,
3218 mod->core_size);
3219
3220 /* Set RO and NX regions for init */
3221 set_section_ro_nx(mod->module_init,
3222 mod->init_text_size,
3223 mod->init_ro_size,
3224 mod->init_size);
3225
Rusty Russella3535c72013-01-21 17:18:59 +10303226 /* Mark state as coming so strong_try_module_get() ignores us,
3227 * but kallsyms etc. can see us. */
3228 mod->state = MODULE_STATE_COMING;
Rusty Russell49822232014-05-14 10:54:19 +09303229 mutex_unlock(&module_mutex);
3230
3231 blocking_notifier_call_chain(&module_notify_list,
3232 MODULE_STATE_COMING, mod);
3233 return 0;
Rusty Russella3535c72013-01-21 17:18:59 +10303234
3235out:
3236 mutex_unlock(&module_mutex);
3237 return err;
3238}
3239
Luis R. Rodriguezecc86172015-03-30 16:20:03 -07003240static int unknown_module_param_cb(char *param, char *val, const char *modname,
3241 void *arg)
Rusty Russell54041d82013-07-02 15:35:12 +09303242{
Ionut Alexa6da0b562014-11-10 09:31:29 +10303243 /* Check for magic 'dyndbg' arg */
Rusty Russell54041d82013-07-02 15:35:12 +09303244 int ret = ddebug_dyndbg_module_param_cb(param, val, modname);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003245 if (ret != 0)
3246 pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
Rusty Russell54041d82013-07-02 15:35:12 +09303247 return 0;
3248}
3249
Kees Cook34e11692012-10-16 07:31:07 +10303250/* Allocate and load the module: note that size of section 0 is always
3251 zero, and we rely on this for optional sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303252static int load_module(struct load_info *info, const char __user *uargs,
3253 int flags)
Kees Cook34e11692012-10-16 07:31:07 +10303254{
Rusty Russella3535c72013-01-21 17:18:59 +10303255 struct module *mod;
Kees Cook34e11692012-10-16 07:31:07 +10303256 long err;
Rusty Russell51e158c2014-04-28 11:34:33 +09303257 char *after_dashes;
Kees Cook34e11692012-10-16 07:31:07 +10303258
3259 err = module_sig_check(info);
3260 if (err)
3261 goto free_copy;
3262
3263 err = elf_header_check(info);
3264 if (err)
3265 goto free_copy;
3266
3267 /* Figure out module layout, and allocate all the memory. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303268 mod = layout_and_allocate(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303269 if (IS_ERR(mod)) {
3270 err = PTR_ERR(mod);
3271 goto free_copy;
3272 }
3273
Rusty Russella3535c72013-01-21 17:18:59 +10303274 /* Reserve our place in the list. */
3275 err = add_unformed_module(mod);
3276 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303277 goto free_module;
Rusty Russell1fb93412013-01-12 13:27:34 +10303278
Kees Cook34e11692012-10-16 07:31:07 +10303279#ifdef CONFIG_MODULE_SIG
3280 mod->sig_ok = info->sig_ok;
Rusty Russell64748a22013-01-21 17:03:02 +10303281 if (!mod->sig_ok) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003282 pr_notice_once("%s: module verification failed: signature "
Marcel Holtmannab92ebb2015-02-06 15:09:57 +10303283 "and/or required key missing - tainting "
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003284 "kernel\n", mod->name);
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10303285 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
Rusty Russell64748a22013-01-21 17:03:02 +10303286 }
Kees Cook34e11692012-10-16 07:31:07 +10303287#endif
3288
Rusty Russell8d8022e2013-07-03 10:06:28 +09303289 /* To avoid stressing percpu allocator, do this once we're unique. */
Rusty Russell9eb76d72013-07-03 10:06:29 +09303290 err = percpu_modalloc(mod, info);
Rusty Russell8d8022e2013-07-03 10:06:28 +09303291 if (err)
3292 goto unlink_mod;
3293
Kees Cook34e11692012-10-16 07:31:07 +10303294 /* Now module is in final location, initialize linked lists, etc. */
3295 err = module_unload_init(mod);
3296 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303297 goto unlink_mod;
Kees Cook34e11692012-10-16 07:31:07 +10303298
3299 /* Now we've got everything in the final locations, we can
3300 * find optional sections. */
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303301 err = find_module_sections(mod, info);
3302 if (err)
3303 goto free_unload;
Kees Cook34e11692012-10-16 07:31:07 +10303304
3305 err = check_module_license_and_versions(mod);
3306 if (err)
3307 goto free_unload;
3308
3309 /* Set up MODINFO_ATTR fields */
3310 setup_modinfo(mod, info);
3311
3312 /* Fix up syms, so that st_value is a pointer to location. */
3313 err = simplify_symbols(mod, info);
3314 if (err < 0)
3315 goto free_modinfo;
3316
3317 err = apply_relocations(mod, info);
3318 if (err < 0)
3319 goto free_modinfo;
3320
3321 err = post_relocation(mod, info);
3322 if (err < 0)
3323 goto free_modinfo;
3324
3325 flush_module_icache(mod);
3326
3327 /* Now copy in args */
3328 mod->args = strndup_user(uargs, ~0UL >> 1);
3329 if (IS_ERR(mod->args)) {
3330 err = PTR_ERR(mod->args);
3331 goto free_arch_cleanup;
3332 }
3333
Kees Cook34e11692012-10-16 07:31:07 +10303334 dynamic_debug_setup(info->debug, info->num_debug);
3335
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04003336 /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
3337 ftrace_module_init(mod);
3338
Rusty Russella3535c72013-01-21 17:18:59 +10303339 /* Finally it's fully formed, ready to start executing. */
3340 err = complete_formation(mod, info);
3341 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303342 goto ddebug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303343
Kees Cook34e11692012-10-16 07:31:07 +10303344 /* Module is ready to execute: parsing args may do that. */
Rusty Russell51e158c2014-04-28 11:34:33 +09303345 after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -07003346 -32768, 32767, NULL,
3347 unknown_module_param_cb);
Rusty Russell51e158c2014-04-28 11:34:33 +09303348 if (IS_ERR(after_dashes)) {
3349 err = PTR_ERR(after_dashes);
Rusty Russell1fb93412013-01-12 13:27:34 +10303350 goto bug_cleanup;
Rusty Russell51e158c2014-04-28 11:34:33 +09303351 } else if (after_dashes) {
3352 pr_warn("%s: parameters '%s' after `--' ignored\n",
3353 mod->name, after_dashes);
3354 }
Kees Cook34e11692012-10-16 07:31:07 +10303355
3356 /* Link in to syfs. */
3357 err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
3358 if (err < 0)
Rusty Russell1fb93412013-01-12 13:27:34 +10303359 goto bug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303360
3361 /* Get rid of temporary copy. */
3362 free_copy(info);
3363
3364 /* Done! */
3365 trace_module_load(mod);
3366
3367 return do_init_module(mod);
3368
Rusty Russell1fb93412013-01-12 13:27:34 +10303369 bug_cleanup:
3370 /* module_bug_cleanup needs module_mutex protection */
Kees Cook34e11692012-10-16 07:31:07 +10303371 mutex_lock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303372 module_bug_cleanup(mod);
Linus Torvaldsee61abb2013-01-20 20:22:58 -08003373 mutex_unlock(&module_mutex);
Andy Lutomirskiff7e0052014-08-16 04:13:37 +09303374
3375 /* we can't deallocate the module until we clear memory protection */
3376 unset_module_init_ro_nx(mod);
3377 unset_module_core_ro_nx(mod);
3378
Rusty Russella3535c72013-01-21 17:18:59 +10303379 ddebug_cleanup:
Rusty Russell1fb93412013-01-12 13:27:34 +10303380 dynamic_debug_remove(info->debug);
Kees Cook34e11692012-10-16 07:31:07 +10303381 synchronize_sched();
3382 kfree(mod->args);
3383 free_arch_cleanup:
3384 module_arch_cleanup(mod);
3385 free_modinfo:
3386 free_modinfo(mod);
3387 free_unload:
3388 module_unload_free(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303389 unlink_mod:
3390 mutex_lock(&module_mutex);
3391 /* Unlink carefully: kallsyms could be walking list. */
3392 list_del_rcu(&mod->list);
3393 wake_up_all(&module_wq);
Masami Hiramatsu4f487952014-11-10 09:26:29 +10303394 /* Wait for RCU synchronizing before releasing mod->list. */
3395 synchronize_rcu();
Rusty Russell1fb93412013-01-12 13:27:34 +10303396 mutex_unlock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303397 free_module:
Peter Zijlstra35a93932015-02-26 16:23:11 +01003398 /* Free lock-classes; relies on the preceding sync_rcu() */
3399 lockdep_free_key_range(mod->module_core, mod->core_size);
3400
Kees Cook34e11692012-10-16 07:31:07 +10303401 module_deallocate(mod, info);
3402 free_copy:
3403 free_copy(info);
3404 return err;
3405}
3406
3407SYSCALL_DEFINE3(init_module, void __user *, umod,
3408 unsigned long, len, const char __user *, uargs)
3409{
3410 int err;
3411 struct load_info info = { };
3412
3413 err = may_init_module();
3414 if (err)
3415 return err;
3416
3417 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3418 umod, len, uargs);
3419
3420 err = copy_module_from_user(umod, len, &info);
3421 if (err)
3422 return err;
3423
Rusty Russell2f3238a2012-10-22 18:09:41 +10303424 return load_module(&info, uargs, 0);
Kees Cook34e11692012-10-16 07:31:07 +10303425}
3426
Rusty Russell2f3238a2012-10-22 18:09:41 +10303427SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
Kees Cook34e11692012-10-16 07:31:07 +10303428{
3429 int err;
3430 struct load_info info = { };
3431
3432 err = may_init_module();
3433 if (err)
3434 return err;
3435
Rusty Russell2f3238a2012-10-22 18:09:41 +10303436 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3437
3438 if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
3439 |MODULE_INIT_IGNORE_VERMAGIC))
3440 return -EINVAL;
Kees Cook34e11692012-10-16 07:31:07 +10303441
3442 err = copy_module_from_fd(fd, &info);
3443 if (err)
3444 return err;
3445
Rusty Russell2f3238a2012-10-22 18:09:41 +10303446 return load_module(&info, uargs, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303447}
3448
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449static inline int within(unsigned long addr, void *start, unsigned long size)
3450{
3451 return ((void *)addr >= start && (void *)addr < start + size);
3452}
3453
3454#ifdef CONFIG_KALLSYMS
3455/*
3456 * This ignores the intensely annoying "mapping symbols" found
3457 * in ARM ELF files: $a, $t and $d.
3458 */
3459static inline int is_arm_mapping_symbol(const char *str)
3460{
Russell King2e3a10a2014-07-27 07:29:01 +09303461 if (str[0] == '.' && str[1] == 'L')
3462 return true;
Kyle McMartin6c34f1f2014-09-16 22:37:18 +01003463 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 && (str[2] == '\0' || str[2] == '.');
3465}
3466
3467static const char *get_ksymbol(struct module *mod,
3468 unsigned long addr,
3469 unsigned long *size,
3470 unsigned long *offset)
3471{
3472 unsigned int i, best = 0;
3473 unsigned long nextval;
3474
3475 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003476 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003478 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 nextval = (unsigned long)mod->module_core+mod->core_text_size;
3480
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003481 /* Scan for closest preceding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07003482 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 for (i = 1; i < mod->num_symtab; i++) {
3484 if (mod->symtab[i].st_shndx == SHN_UNDEF)
3485 continue;
3486
3487 /* We ignore unnamed symbols: they're uninformative
3488 * and inserted at a whim. */
3489 if (mod->symtab[i].st_value <= addr
3490 && mod->symtab[i].st_value > mod->symtab[best].st_value
3491 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3492 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3493 best = i;
3494 if (mod->symtab[i].st_value > addr
3495 && mod->symtab[i].st_value < nextval
3496 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3497 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3498 nextval = mod->symtab[i].st_value;
3499 }
3500
3501 if (!best)
3502 return NULL;
3503
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003504 if (size)
3505 *size = nextval - mod->symtab[best].st_value;
3506 if (offset)
3507 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 return mod->strtab + mod->symtab[best].st_name;
3509}
3510
Rusty Russell6dd06c92008-01-29 17:13:22 -05003511/* For kallsyms to ask for address resolution. NULL means not found. Careful
3512 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003513const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05003514 unsigned long *size,
3515 unsigned long *offset,
3516 char **modname,
3517 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518{
3519 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003520 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
Rusty Russellcb2a5202008-01-14 00:55:03 -08003522 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003523 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303524 if (mod->state == MODULE_STATE_UNFORMED)
3525 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303526 if (within_module(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07003527 if (modname)
3528 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003529 ret = get_ksymbol(mod, addr, size, offset);
3530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 }
3532 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05003533 /* Make a copy in here where it's safe */
3534 if (ret) {
3535 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
3536 ret = namebuf;
3537 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003538 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003539 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540}
3541
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003542int lookup_module_symbol_name(unsigned long addr, char *symname)
3543{
3544 struct module *mod;
3545
Rusty Russellcb2a5202008-01-14 00:55:03 -08003546 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003547 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303548 if (mod->state == MODULE_STATE_UNFORMED)
3549 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303550 if (within_module(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003551 const char *sym;
3552
3553 sym = get_ksymbol(mod, addr, NULL, NULL);
3554 if (!sym)
3555 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07003556 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003557 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003558 return 0;
3559 }
3560 }
3561out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003562 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003563 return -ERANGE;
3564}
3565
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003566int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
3567 unsigned long *offset, char *modname, char *name)
3568{
3569 struct module *mod;
3570
Rusty Russellcb2a5202008-01-14 00:55:03 -08003571 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003572 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303573 if (mod->state == MODULE_STATE_UNFORMED)
3574 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303575 if (within_module(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003576 const char *sym;
3577
3578 sym = get_ksymbol(mod, addr, size, offset);
3579 if (!sym)
3580 goto out;
3581 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07003582 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003583 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07003584 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003585 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003586 return 0;
3587 }
3588 }
3589out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003590 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003591 return -ERANGE;
3592}
3593
Alexey Dobriyanea078902007-05-08 00:28:39 -07003594int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
3595 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596{
3597 struct module *mod;
3598
Rusty Russellcb2a5202008-01-14 00:55:03 -08003599 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003600 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303601 if (mod->state == MODULE_STATE_UNFORMED)
3602 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 if (symnum < mod->num_symtab) {
3604 *value = mod->symtab[symnum].st_value;
3605 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07003606 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07003607 KSYM_NAME_LEN);
3608 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06003609 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003610 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003611 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 }
3613 symnum -= mod->num_symtab;
3614 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003615 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003616 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617}
3618
3619static unsigned long mod_find_symname(struct module *mod, const char *name)
3620{
3621 unsigned int i;
3622
3623 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08003624 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
3625 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 return mod->symtab[i].st_value;
3627 return 0;
3628}
3629
3630/* Look for this name: can be of form module:name. */
3631unsigned long module_kallsyms_lookup_name(const char *name)
3632{
3633 struct module *mod;
3634 char *colon;
3635 unsigned long ret = 0;
3636
3637 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08003638 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 if ((colon = strchr(name, ':')) != NULL) {
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303640 if ((mod = find_module_all(name, colon - name, false)) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 ret = mod_find_symname(mod, colon+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 } else {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303643 list_for_each_entry_rcu(mod, &modules, list) {
3644 if (mod->state == MODULE_STATE_UNFORMED)
3645 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 if ((ret = mod_find_symname(mod, name)) != 0)
3647 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003650 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 return ret;
3652}
Anders Kaseorg75a66612008-12-05 19:03:58 -05003653
3654int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
3655 struct module *, unsigned long),
3656 void *data)
3657{
3658 struct module *mod;
3659 unsigned int i;
3660 int ret;
3661
3662 list_for_each_entry(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303663 if (mod->state == MODULE_STATE_UNFORMED)
3664 continue;
Anders Kaseorg75a66612008-12-05 19:03:58 -05003665 for (i = 0; i < mod->num_symtab; i++) {
3666 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
3667 mod, mod->symtab[i].st_value);
3668 if (ret != 0)
3669 return ret;
3670 }
3671 }
3672 return 0;
3673}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674#endif /* CONFIG_KALLSYMS */
3675
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003676static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003677{
3678 int bx = 0;
3679
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303680 BUG_ON(mod->state == MODULE_STATE_UNFORMED);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003681 if (mod->taints ||
3682 mod->state == MODULE_STATE_GOING ||
3683 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003684 buf[bx++] = '(';
Kay Sieverscca3e702012-01-13 09:32:15 +10303685 bx += module_flags_taint(mod, buf + bx);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003686 /* Show a - for module-is-being-unloaded */
3687 if (mod->state == MODULE_STATE_GOING)
3688 buf[bx++] = '-';
3689 /* Show a + for module-is-being-loaded */
3690 if (mod->state == MODULE_STATE_COMING)
3691 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003692 buf[bx++] = ')';
3693 }
3694 buf[bx] = '\0';
3695
3696 return buf;
3697}
3698
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003699#ifdef CONFIG_PROC_FS
3700/* Called by the /proc file system to return a list of modules. */
3701static void *m_start(struct seq_file *m, loff_t *pos)
3702{
3703 mutex_lock(&module_mutex);
3704 return seq_list_start(&modules, *pos);
3705}
3706
3707static void *m_next(struct seq_file *m, void *p, loff_t *pos)
3708{
3709 return seq_list_next(p, &modules, pos);
3710}
3711
3712static void m_stop(struct seq_file *m, void *p)
3713{
3714 mutex_unlock(&module_mutex);
3715}
3716
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717static int m_show(struct seq_file *m, void *p)
3718{
3719 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003720 char buf[8];
3721
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303722 /* We always ignore unformed modules. */
3723 if (mod->state == MODULE_STATE_UNFORMED)
3724 return 0;
3725
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05003726 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 mod->name, mod->init_size + mod->core_size);
3728 print_unload_info(m, mod);
3729
3730 /* Informative for users. */
3731 seq_printf(m, " %s",
Ionut Alexa6da0b562014-11-10 09:31:29 +10303732 mod->state == MODULE_STATE_GOING ? "Unloading" :
3733 mod->state == MODULE_STATE_COMING ? "Loading" :
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 "Live");
3735 /* Used by oprofile and other similar tools. */
Kees Cook9f36e2c2011-03-22 16:34:22 -07003736 seq_printf(m, " 0x%pK", mod->module_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003738 /* Taints info */
3739 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003740 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003741
Ionut Alexa6da0b562014-11-10 09:31:29 +10303742 seq_puts(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 return 0;
3744}
3745
3746/* Format: modulename size refcount deps address
3747
3748 Where refcount is a number or -, and deps is a comma-separated list
3749 of depends or -.
3750*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003751static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 .start = m_start,
3753 .next = m_next,
3754 .stop = m_stop,
3755 .show = m_show
3756};
3757
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003758static int modules_open(struct inode *inode, struct file *file)
3759{
3760 return seq_open(file, &modules_op);
3761}
3762
3763static const struct file_operations proc_modules_operations = {
3764 .open = modules_open,
3765 .read = seq_read,
3766 .llseek = seq_lseek,
3767 .release = seq_release,
3768};
3769
3770static int __init proc_modules_init(void)
3771{
3772 proc_create("modules", 0, NULL, &proc_modules_operations);
3773 return 0;
3774}
3775module_init(proc_modules_init);
3776#endif
3777
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778/* Given an address, look for it in the module exception tables. */
3779const struct exception_table_entry *search_module_extables(unsigned long addr)
3780{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 const struct exception_table_entry *e = NULL;
3782 struct module *mod;
3783
Rusty Russell24da1cb2007-07-15 23:41:46 -07003784 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003785 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303786 if (mod->state == MODULE_STATE_UNFORMED)
3787 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 if (mod->num_exentries == 0)
3789 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003790
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 e = search_extable(mod->extable,
3792 mod->extable + mod->num_exentries - 1,
3793 addr);
3794 if (e)
3795 break;
3796 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07003797 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
3799 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07003800 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 return e;
3802}
3803
Ingo Molnar4d435f92006-07-03 00:24:24 -07003804/*
Rusty Russelle6104992009-03-31 13:05:31 -06003805 * is_module_address - is this address inside a module?
3806 * @addr: the address to check.
3807 *
3808 * See is_module_text_address() if you simply want to see if the address
3809 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07003810 */
Rusty Russelle6104992009-03-31 13:05:31 -06003811bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07003812{
Rusty Russelle6104992009-03-31 13:05:31 -06003813 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003814
Rusty Russell24da1cb2007-07-15 23:41:46 -07003815 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06003816 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07003817 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07003818
Rusty Russelle6104992009-03-31 13:05:31 -06003819 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003820}
3821
Rusty Russelle6104992009-03-31 13:05:31 -06003822/*
3823 * __module_address - get the module which contains an address.
3824 * @addr: the address.
3825 *
3826 * Must be called with preempt disabled or module mutex held so that
3827 * module doesn't get freed during this.
3828 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07003829struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830{
3831 struct module *mod;
3832
Rusty Russell3a642e92008-07-22 19:24:28 -05003833 if (addr < module_addr_min || addr > module_addr_max)
3834 return NULL;
3835
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303836 list_for_each_entry_rcu(mod, &modules, list) {
3837 if (mod->state == MODULE_STATE_UNFORMED)
3838 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303839 if (within_module(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 return mod;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 return NULL;
3843}
Tim Abbottc6b37802008-12-05 19:03:59 -05003844EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
Rusty Russelle6104992009-03-31 13:05:31 -06003846/*
3847 * is_module_text_address - is this address inside module code?
3848 * @addr: the address to check.
3849 *
3850 * See is_module_address() if you simply want to see if the address is
3851 * anywhere in a module. See kernel_text_address() for testing if an
3852 * address corresponds to kernel or module code.
3853 */
3854bool is_module_text_address(unsigned long addr)
3855{
3856 bool ret;
3857
3858 preempt_disable();
3859 ret = __module_text_address(addr) != NULL;
3860 preempt_enable();
3861
3862 return ret;
3863}
3864
3865/*
3866 * __module_text_address - get the module whose code contains an address.
3867 * @addr: the address.
3868 *
3869 * Must be called with preempt disabled or module mutex held so that
3870 * module doesn't get freed during this.
3871 */
3872struct module *__module_text_address(unsigned long addr)
3873{
3874 struct module *mod = __module_address(addr);
3875 if (mod) {
3876 /* Make sure it's within the text section. */
3877 if (!within(addr, mod->module_init, mod->init_text_size)
3878 && !within(addr, mod->module_core, mod->core_text_size))
3879 mod = NULL;
3880 }
3881 return mod;
3882}
Tim Abbottc6b37802008-12-05 19:03:59 -05003883EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06003884
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885/* Don't grab lock, we're oopsing. */
3886void print_modules(void)
3887{
3888 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07003889 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
Linus Torvaldsb2311252009-06-16 11:07:14 -07003891 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02003892 /* Most callers should already have preempt disabled, but make sure */
3893 preempt_disable();
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303894 list_for_each_entry_rcu(mod, &modules, list) {
3895 if (mod->state == MODULE_STATE_UNFORMED)
3896 continue;
Jiri Slaby27bba4d2014-02-03 11:13:13 +10303897 pr_cont(" %s%s", mod->name, module_flags(mod, buf));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303898 }
Andi Kleend72b3752008-08-30 10:09:00 +02003899 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003900 if (last_unloaded_module[0])
Jiri Slaby27bba4d2014-02-03 11:13:13 +10303901 pr_cont(" [last unloaded: %s]", last_unloaded_module);
3902 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903}
3904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003906/* Generate the signature for all relevant module structures here.
3907 * If these change, we don't want to try to parse the module. */
3908void module_layout(struct module *mod,
3909 struct modversion_info *ver,
3910 struct kernel_param *kp,
3911 struct kernel_symbol *ks,
Mathieu Desnoyers65498642011-01-26 17:26:22 -05003912 struct tracepoint * const *tp)
Rusty Russell8c8ef422009-03-31 13:05:34 -06003913{
3914}
3915EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916#endif