blob: b1d485df5ac1c9a7e6c253a2602d93be5ae55e2e [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/stop_machine.h>
46#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070047#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080048#include <linux/mutex.h>
Andi Kleend72b3752008-08-30 10:09:00 +020049#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/cacheflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070052#include <asm/mmu_context.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020053#include <linux/license.h>
Christoph Lameter6d762392008-02-08 04:18:42 -080054#include <asm/sections.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040055#include <linux/tracepoint.h>
Steven Rostedt90d595f2008-08-14 15:45:09 -040056#include <linux/ftrace.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080057#include <linux/async.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090058#include <linux/percpu.h>
Catalin Marinas4f2294b2009-06-11 13:23:20 +010059#include <linux/kmemleak.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040060#include <linux/jump_label.h>
matthieu castet84e1c6b2010-11-16 22:35:16 +010061#include <linux/pfn.h>
Alessio Igor Bogani403ed272011-04-20 11:10:52 +020062#include <linux/bsearch.h>
Rusty Russell2f3238a2012-10-22 18:09:41 +103063#include <uapi/linux/module.h>
Rusty Russell106a4ee2012-09-26 10:09:40 +010064#include "module-internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Li Zefan7ead8b82009-08-17 16:56:28 +080066#define CREATE_TRACE_POINTS
67#include <trace/events/module.h>
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#ifndef ARCH_SHF_SMALL
70#define ARCH_SHF_SMALL 0
71#endif
72
matthieu castet84e1c6b2010-11-16 22:35:16 +010073/*
74 * Modules' sections will be aligned on page boundaries
75 * to ensure complete separation of code and data, but
76 * only when CONFIG_DEBUG_SET_MODULE_RONX=y
77 */
78#ifdef CONFIG_DEBUG_SET_MODULE_RONX
79# define debug_align(X) ALIGN(X, PAGE_SIZE)
80#else
81# define debug_align(X) (X)
82#endif
83
84/*
85 * Given BASE and SIZE this macro calculates the number of pages the
86 * memory regions occupies
87 */
88#define MOD_NUMBER_OF_PAGES(BASE, SIZE) (((SIZE) > 0) ? \
89 (PFN_DOWN((unsigned long)(BASE) + (SIZE) - 1) - \
90 PFN_DOWN((unsigned long)BASE) + 1) \
91 : (0UL))
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/* If this is set, the section belongs in the init part of the module */
94#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
95
Rusty Russell75676502010-06-05 11:17:36 -060096/*
97 * Mutex protects:
98 * 1) List of modules (also safely readable with preempt_disable),
99 * 2) module_use links,
100 * 3) module_addr_min/module_addr_max.
Andi Kleend72b3752008-08-30 10:09:00 +0200101 * (delete uses stop_machine/add uses RCU list operations). */
Tim Abbottc6b37802008-12-05 19:03:59 -0500102DEFINE_MUTEX(module_mutex);
103EXPORT_SYMBOL_GPL(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static LIST_HEAD(modules);
Jason Wessel67fc4e02010-05-20 21:04:21 -0500105#ifdef CONFIG_KGDB_KDB
106struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
107#endif /* CONFIG_KGDB_KDB */
108
Rusty Russell106a4ee2012-09-26 10:09:40 +0100109#ifdef CONFIG_MODULE_SIG
110#ifdef CONFIG_MODULE_SIG_FORCE
111static bool sig_enforce = true;
112#else
113static bool sig_enforce = false;
114
115static int param_set_bool_enable_only(const char *val,
116 const struct kernel_param *kp)
117{
118 int err;
119 bool test;
120 struct kernel_param dummy_kp = *kp;
121
122 dummy_kp.arg = &test;
123
124 err = param_set_bool(val, &dummy_kp);
125 if (err)
126 return err;
127
128 /* Don't let them unset it once it's set! */
129 if (!test && sig_enforce)
130 return -EROFS;
131
132 if (test)
133 sig_enforce = true;
134 return 0;
135}
136
137static const struct kernel_param_ops param_ops_bool_enable_only = {
Jani Nikula6a4c2642014-08-27 06:21:23 +0930138 .flags = KERNEL_PARAM_OPS_FL_NOARG,
Rusty Russell106a4ee2012-09-26 10:09:40 +0100139 .set = param_set_bool_enable_only,
140 .get = param_get_bool,
141};
142#define param_check_bool_enable_only param_check_bool
143
144module_param(sig_enforce, bool_enable_only, 0644);
145#endif /* !CONFIG_MODULE_SIG_FORCE */
146#endif /* CONFIG_MODULE_SIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Stephen Rothwell19e45292009-04-14 17:27:18 +1000148/* Block module loading/unloading? */
149int modules_disabled = 0;
Dave Young02608be2012-02-01 10:33:14 +0800150core_param(nomodule, modules_disabled, bint, 0);
Stephen Rothwell19e45292009-04-14 17:27:18 +1000151
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500152/* Waiting for a module to finish initializing? */
153static DECLARE_WAIT_QUEUE_HEAD(module_wq);
154
Alan Sterne041c682006-03-27 01:16:30 -0800155static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Rusty Russell75676502010-06-05 11:17:36 -0600157/* Bounds of module allocation, for speeding __module_address.
158 * Protected by module_mutex. */
Rusty Russell3a642e92008-07-22 19:24:28 -0500159static unsigned long module_addr_min = -1UL, module_addr_max = 0;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161int register_module_notifier(struct notifier_block * nb)
162{
Alan Sterne041c682006-03-27 01:16:30 -0800163 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165EXPORT_SYMBOL(register_module_notifier);
166
167int unregister_module_notifier(struct notifier_block * nb)
168{
Alan Sterne041c682006-03-27 01:16:30 -0800169 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171EXPORT_SYMBOL(unregister_module_notifier);
172
Rusty Russelleded41c2010-08-05 12:59:07 -0600173struct load_info {
174 Elf_Ehdr *hdr;
175 unsigned long len;
176 Elf_Shdr *sechdrs;
Rusty Russell6526c532010-08-05 12:59:10 -0600177 char *secstrings, *strtab;
Rusty Russelld9131882010-08-05 12:59:08 -0600178 unsigned long symoffs, stroffs;
Rusty Russell811d66a2010-08-05 12:59:12 -0600179 struct _ddebug *debug;
180 unsigned int num_debug;
Rusty Russell106a4ee2012-09-26 10:09:40 +0100181 bool sig_ok;
Rusty Russelleded41c2010-08-05 12:59:07 -0600182 struct {
183 unsigned int sym, str, mod, vers, info, pcpu;
184 } index;
185};
186
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800187/* We require a truly strong try_module_get(): 0 means failure due to
188 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189static inline int strong_try_module_get(struct module *mod)
190{
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030191 BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500193 return -EBUSY;
194 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500196 else
197 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Rusty Russell373d4d02013-01-21 17:17:39 +1030200static inline void add_taint_module(struct module *mod, unsigned flag,
201 enum lockdep_ok lockdep_ok)
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700202{
Rusty Russell373d4d02013-01-21 17:17:39 +1030203 add_taint(flag, lockdep_ok);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700204 mod->taints |= (1U << flag);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700205}
206
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200207/*
208 * A thread that wants to hold a reference to a module only while it
209 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 */
211void __module_put_and_exit(struct module *mod, long code)
212{
213 module_put(mod);
214 do_exit(code);
215}
216EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/* Find a module section: 0 means not found. */
Rusty Russell49668682010-08-05 12:59:10 -0600219static unsigned int find_sec(const struct load_info *info, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 unsigned int i;
222
Rusty Russell49668682010-08-05 12:59:10 -0600223 for (i = 1; i < info->hdr->e_shnum; i++) {
224 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /* Alloc bit cleared means "ignore it." */
Rusty Russell49668682010-08-05 12:59:10 -0600226 if ((shdr->sh_flags & SHF_ALLOC)
227 && strcmp(info->secstrings + shdr->sh_name, name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return i;
Rusty Russell49668682010-08-05 12:59:10 -0600229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return 0;
231}
232
Rusty Russell5e458cc2008-10-22 10:00:13 -0500233/* Find a module section, or NULL. */
Rusty Russell49668682010-08-05 12:59:10 -0600234static void *section_addr(const struct load_info *info, const char *name)
Rusty Russell5e458cc2008-10-22 10:00:13 -0500235{
236 /* Section 0 has sh_addr 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600237 return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500238}
239
240/* Find a module section, or NULL. Fill in number of "objects" in section. */
Rusty Russell49668682010-08-05 12:59:10 -0600241static void *section_objs(const struct load_info *info,
Rusty Russell5e458cc2008-10-22 10:00:13 -0500242 const char *name,
243 size_t object_size,
244 unsigned int *num)
245{
Rusty Russell49668682010-08-05 12:59:10 -0600246 unsigned int sec = find_sec(info, name);
Rusty Russell5e458cc2008-10-22 10:00:13 -0500247
248 /* Section 0 has sh_addr 0 and sh_size 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600249 *num = info->sechdrs[sec].sh_size / object_size;
250 return (void *)info->sechdrs[sec].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/* Provided by the linker */
254extern const struct kernel_symbol __start___ksymtab[];
255extern const struct kernel_symbol __stop___ksymtab[];
256extern const struct kernel_symbol __start___ksymtab_gpl[];
257extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800258extern const struct kernel_symbol __start___ksymtab_gpl_future[];
259extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260extern const unsigned long __start___kcrctab[];
261extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800262extern const unsigned long __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500263#ifdef CONFIG_UNUSED_SYMBOLS
264extern const struct kernel_symbol __start___ksymtab_unused[];
265extern const struct kernel_symbol __stop___ksymtab_unused[];
266extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
267extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700268extern const unsigned long __start___kcrctab_unused[];
269extern const unsigned long __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500270#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272#ifndef CONFIG_MODVERSIONS
273#define symversion(base, idx) NULL
274#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800275#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276#endif
277
Rusty Russelldafd0942008-07-22 19:24:25 -0500278static bool each_symbol_in_section(const struct symsearch *arr,
279 unsigned int arrsize,
280 struct module *owner,
281 bool (*fn)(const struct symsearch *syms,
282 struct module *owner,
Rusty Russellde4d8d52011-04-19 21:49:58 +0200283 void *data),
Rusty Russelldafd0942008-07-22 19:24:25 -0500284 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100285{
Rusty Russellde4d8d52011-04-19 21:49:58 +0200286 unsigned int j;
Rusty Russelldafd0942008-07-22 19:24:25 -0500287
288 for (j = 0; j < arrsize; j++) {
Rusty Russellde4d8d52011-04-19 21:49:58 +0200289 if (fn(&arr[j], owner, data))
290 return true;
Rusty Russelldafd0942008-07-22 19:24:25 -0500291 }
292
293 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100294}
295
Rusty Russelldafd0942008-07-22 19:24:25 -0500296/* Returns true as soon as fn returns true, otherwise false. */
Rusty Russellde4d8d52011-04-19 21:49:58 +0200297bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
298 struct module *owner,
299 void *data),
300 void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700301{
Rusty Russelldafd0942008-07-22 19:24:25 -0500302 struct module *mod;
Linus Torvalds44032e62010-08-05 12:59:05 -0600303 static const struct symsearch arr[] = {
Rusty Russelldafd0942008-07-22 19:24:25 -0500304 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
305 NOT_GPL_ONLY, false },
306 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
307 __start___kcrctab_gpl,
308 GPL_ONLY, false },
309 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
310 __start___kcrctab_gpl_future,
311 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500312#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500313 { __start___ksymtab_unused, __stop___ksymtab_unused,
314 __start___kcrctab_unused,
315 NOT_GPL_ONLY, true },
316 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
317 __start___kcrctab_unused_gpl,
318 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500319#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500320 };
321
322 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
323 return true;
324
Andi Kleend72b3752008-08-30 10:09:00 +0200325 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500326 struct symsearch arr[] = {
327 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
328 NOT_GPL_ONLY, false },
329 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
330 mod->gpl_crcs,
331 GPL_ONLY, false },
332 { mod->gpl_future_syms,
333 mod->gpl_future_syms + mod->num_gpl_future_syms,
334 mod->gpl_future_crcs,
335 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500336#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500337 { mod->unused_syms,
338 mod->unused_syms + mod->num_unused_syms,
339 mod->unused_crcs,
340 NOT_GPL_ONLY, true },
341 { mod->unused_gpl_syms,
342 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
343 mod->unused_gpl_crcs,
344 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500345#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500346 };
347
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030348 if (mod->state == MODULE_STATE_UNFORMED)
349 continue;
350
Rusty Russelldafd0942008-07-22 19:24:25 -0500351 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
352 return true;
353 }
354 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700355}
Rusty Russellde4d8d52011-04-19 21:49:58 +0200356EXPORT_SYMBOL_GPL(each_symbol_section);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700357
Rusty Russelldafd0942008-07-22 19:24:25 -0500358struct find_symbol_arg {
359 /* Input */
360 const char *name;
361 bool gplok;
362 bool warn;
363
364 /* Output */
365 struct module *owner;
366 const unsigned long *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500367 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500368};
369
Rusty Russellde4d8d52011-04-19 21:49:58 +0200370static bool check_symbol(const struct symsearch *syms,
371 struct module *owner,
372 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500373{
Rusty Russelldafd0942008-07-22 19:24:25 -0500374 struct find_symbol_arg *fsa = data;
375
Rusty Russelldafd0942008-07-22 19:24:25 -0500376 if (!fsa->gplok) {
377 if (syms->licence == GPL_ONLY)
378 return false;
379 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800380 pr_warn("Symbol %s is being used by a non-GPL module, "
381 "which will not be allowed in the future\n",
382 fsa->name);
Rusty Russelldafd0942008-07-22 19:24:25 -0500383 }
384 }
385
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500386#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500387 if (syms->unused && fsa->warn) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800388 pr_warn("Symbol %s is marked as UNUSED, however this module is "
389 "using it.\n", fsa->name);
390 pr_warn("This symbol will go away in the future.\n");
391 pr_warn("Please evalute if this is the right api to use and if "
392 "it really is, submit a report the linux kernel "
393 "mailinglist together with submitting your code for "
394 "inclusion.\n");
Rusty Russellad9546c2008-05-01 21:14:59 -0500395 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500396#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500397
398 fsa->owner = owner;
399 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500400 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500401 return true;
402}
403
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200404static int cmp_name(const void *va, const void *vb)
405{
406 const char *a;
407 const struct kernel_symbol *b;
408 a = va; b = vb;
409 return strcmp(a, b->name);
410}
411
Rusty Russellde4d8d52011-04-19 21:49:58 +0200412static bool find_symbol_in_section(const struct symsearch *syms,
413 struct module *owner,
414 void *data)
415{
416 struct find_symbol_arg *fsa = data;
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200417 struct kernel_symbol *sym;
Rusty Russellde4d8d52011-04-19 21:49:58 +0200418
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200419 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
420 sizeof(struct kernel_symbol), cmp_name);
421
422 if (sym != NULL && check_symbol(syms, owner, sym - syms->start, data))
423 return true;
424
Rusty Russellde4d8d52011-04-19 21:49:58 +0200425 return false;
426}
427
Tim Abbott414fd312008-12-05 19:03:56 -0500428/* Find a symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600429 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500430const struct kernel_symbol *find_symbol(const char *name,
431 struct module **owner,
432 const unsigned long **crc,
433 bool gplok,
434 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Rusty Russelldafd0942008-07-22 19:24:25 -0500436 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Rusty Russelldafd0942008-07-22 19:24:25 -0500438 fsa.name = name;
439 fsa.gplok = gplok;
440 fsa.warn = warn;
441
Rusty Russellde4d8d52011-04-19 21:49:58 +0200442 if (each_symbol_section(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500443 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500444 *owner = fsa.owner;
445 if (crc)
446 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500447 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500449
Jim Cromie5e124162011-12-06 12:11:31 -0700450 pr_debug("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500451 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
Tim Abbottc6b37802008-12-05 19:03:59 -0500453EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455/* Search for module by name: must hold module_mutex. */
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930456static struct module *find_module_all(const char *name, size_t len,
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030457 bool even_unformed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 struct module *mod;
460
461 list_for_each_entry(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030462 if (!even_unformed && mod->state == MODULE_STATE_UNFORMED)
463 continue;
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930464 if (strlen(mod->name) == len && !memcmp(mod->name, name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return mod;
466 }
467 return NULL;
468}
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030469
470struct module *find_module(const char *name)
471{
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930472 return find_module_all(name, strlen(name), false);
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030473}
Tim Abbottc6b37802008-12-05 19:03:59 -0500474EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900477
Tejun Heo259354d2010-03-10 18:56:10 +0900478static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900479{
Tejun Heo259354d2010-03-10 18:56:10 +0900480 return mod->percpu;
481}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900482
Rusty Russell9eb76d72013-07-03 10:06:29 +0930483static int percpu_modalloc(struct module *mod, struct load_info *info)
Tejun Heo259354d2010-03-10 18:56:10 +0900484{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930485 Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu];
486 unsigned long align = pcpusec->sh_addralign;
487
488 if (!pcpusec->sh_size)
489 return 0;
490
Tejun Heofbf59bc2009-02-20 16:29:08 +0900491 if (align > PAGE_SIZE) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800492 pr_warn("%s: per-cpu alignment %li > %li\n",
493 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900494 align = PAGE_SIZE;
495 }
496
Rusty Russell9eb76d72013-07-03 10:06:29 +0930497 mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align);
Tejun Heo259354d2010-03-10 18:56:10 +0900498 if (!mod->percpu) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800499 pr_warn("%s: Could not allocate %lu bytes percpu data\n",
500 mod->name, (unsigned long)pcpusec->sh_size);
Tejun Heo259354d2010-03-10 18:56:10 +0900501 return -ENOMEM;
502 }
Rusty Russell9eb76d72013-07-03 10:06:29 +0930503 mod->percpu_size = pcpusec->sh_size;
Tejun Heo259354d2010-03-10 18:56:10 +0900504 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900505}
506
Tejun Heo259354d2010-03-10 18:56:10 +0900507static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900508{
Tejun Heo259354d2010-03-10 18:56:10 +0900509 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900510}
511
Rusty Russell49668682010-08-05 12:59:10 -0600512static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900513{
Rusty Russell49668682010-08-05 12:59:10 -0600514 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900515}
516
Tejun Heo259354d2010-03-10 18:56:10 +0900517static void percpu_modcopy(struct module *mod,
518 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900519{
520 int cpu;
521
522 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900523 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900524}
525
Tejun Heo10fad5e2010-03-10 18:57:54 +0900526/**
527 * is_module_percpu_address - test whether address is from module static percpu
528 * @addr: address to test
529 *
530 * Test whether @addr belongs to module static percpu area.
531 *
532 * RETURNS:
533 * %true if @addr is from module static percpu area
534 */
535bool is_module_percpu_address(unsigned long addr)
536{
537 struct module *mod;
538 unsigned int cpu;
539
540 preempt_disable();
541
542 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030543 if (mod->state == MODULE_STATE_UNFORMED)
544 continue;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900545 if (!mod->percpu_size)
546 continue;
547 for_each_possible_cpu(cpu) {
548 void *start = per_cpu_ptr(mod->percpu, cpu);
549
550 if ((void *)addr >= start &&
551 (void *)addr < start + mod->percpu_size) {
552 preempt_enable();
553 return true;
554 }
555 }
556 }
557
558 preempt_enable();
559 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700560}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900563
Tejun Heo259354d2010-03-10 18:56:10 +0900564static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 return NULL;
567}
Rusty Russell9eb76d72013-07-03 10:06:29 +0930568static int percpu_modalloc(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930570 /* UP modules shouldn't have this section: ENOMEM isn't quite right */
571 if (info->sechdrs[info->index.pcpu].sh_size != 0)
572 return -ENOMEM;
573 return 0;
Tejun Heo259354d2010-03-10 18:56:10 +0900574}
575static inline void percpu_modfree(struct module *mod)
576{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
Rusty Russell49668682010-08-05 12:59:10 -0600578static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 return 0;
581}
Tejun Heo259354d2010-03-10 18:56:10 +0900582static inline void percpu_modcopy(struct module *mod,
583 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
585 /* pcpusec should be 0, and size of that section should be 0. */
586 BUG_ON(size != 0);
587}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900588bool is_module_percpu_address(unsigned long addr)
589{
590 return false;
591}
Tejun Heo6b588c12009-02-20 16:29:07 +0900592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593#endif /* CONFIG_SMP */
594
Matt Domschc988d2b2005-06-23 22:05:15 -0700595#define MODINFO_ATTR(field) \
596static void setup_modinfo_##field(struct module *mod, const char *s) \
597{ \
598 mod->field = kstrdup(s, GFP_KERNEL); \
599} \
600static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
Kay Sievers4befb022011-07-24 22:06:04 +0930601 struct module_kobject *mk, char *buffer) \
Matt Domschc988d2b2005-06-23 22:05:15 -0700602{ \
Chen Gangcc56ded2013-08-20 15:34:21 +0930603 return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field); \
Matt Domschc988d2b2005-06-23 22:05:15 -0700604} \
605static int modinfo_##field##_exists(struct module *mod) \
606{ \
607 return mod->field != NULL; \
608} \
609static void free_modinfo_##field(struct module *mod) \
610{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700611 kfree(mod->field); \
612 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700613} \
614static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900615 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700616 .show = show_modinfo_##field, \
617 .setup = setup_modinfo_##field, \
618 .test = modinfo_##field##_exists, \
619 .free = free_modinfo_##field, \
620};
621
622MODINFO_ATTR(version);
623MODINFO_ATTR(srcversion);
624
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100625static char last_unloaded_module[MODULE_NAME_LEN+1];
626
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800627#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400628
629EXPORT_TRACEPOINT_SYMBOL(module_get);
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600632static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700634 INIT_LIST_HEAD(&mod->source_list);
635 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* Hold reference count during initialization. */
Masami Hiramatsu2f35c412014-11-10 09:29:29 +1030638 atomic_set(&mod->refcnt, 1);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600639
640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643/* Does a already use b? */
644static int already_uses(struct module *a, struct module *b)
645{
646 struct module_use *use;
647
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700648 list_for_each_entry(use, &b->source_list, source_list) {
649 if (use->source == a) {
Jim Cromie5e124162011-12-06 12:11:31 -0700650 pr_debug("%s uses %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return 1;
652 }
653 }
Jim Cromie5e124162011-12-06 12:11:31 -0700654 pr_debug("%s does not use %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656}
657
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700658/*
659 * Module a uses b
660 * - we add 'a' as a "source", 'b' as a "target" of module use
661 * - the module_use is added to the list of 'b' sources (so
662 * 'b' can walk the list to see who sourced them), and of 'a'
663 * targets (so 'a' can see what modules it targets).
664 */
665static int add_module_usage(struct module *a, struct module *b)
666{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700667 struct module_use *use;
668
Jim Cromie5e124162011-12-06 12:11:31 -0700669 pr_debug("Allocating new usage for %s.\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700670 use = kmalloc(sizeof(*use), GFP_ATOMIC);
671 if (!use) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800672 pr_warn("%s: out of memory loading\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700673 return -ENOMEM;
674 }
675
676 use->source = a;
677 use->target = b;
678 list_add(&use->source_list, &b->source_list);
679 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700680 return 0;
681}
682
Rusty Russell75676502010-06-05 11:17:36 -0600683/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600684int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600686 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100687
Rusty Russell9bea7f22010-06-05 11:17:37 -0600688 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700689 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700690
Rusty Russell9bea7f22010-06-05 11:17:37 -0600691 /* If module isn't available, we fail. */
692 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500693 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600694 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700696 err = add_module_usage(a, b);
697 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600699 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600703EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705/* Clear the unload stuff of the module. */
706static void module_unload_free(struct module *mod)
707{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700708 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Rusty Russell75676502010-06-05 11:17:36 -0600710 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700711 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
712 struct module *i = use->target;
Jim Cromie5e124162011-12-06 12:11:31 -0700713 pr_debug("%s unusing %s\n", mod->name, i->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700714 module_put(i);
715 list_del(&use->source_list);
716 list_del(&use->target_list);
717 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
Rusty Russell75676502010-06-05 11:17:36 -0600719 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800723static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 int ret = (flags & O_TRUNC);
726 if (ret)
Rusty Russell373d4d02013-01-21 17:17:39 +1030727 add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return ret;
729}
730#else
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 return 0;
734}
735#endif /* CONFIG_MODULE_FORCE_UNLOAD */
736
737struct stopref
738{
739 struct module *mod;
740 int flags;
741 int *forced;
742};
743
744/* Whole machine is stopped with interrupts off when this runs. */
745static int __try_stop_module(void *_sref)
746{
747 struct stopref *sref = _sref;
748
Rusty Russellda39ba52008-07-22 19:24:25 -0500749 /* If it's not unused, quit unless we're forcing. */
750 if (module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800751 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return -EWOULDBLOCK;
753 }
754
755 /* Mark it as dying. */
756 sref->mod->state = MODULE_STATE_GOING;
757 return 0;
758}
759
760static int try_stop_module(struct module *mod, int flags, int *forced)
761{
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930762 struct stopref sref = { mod, flags, forced };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930764 return stop_machine(__try_stop_module, &sref, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Eric Dumazetbd77c042012-01-13 09:32:14 +1030767unsigned long module_refcount(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Masami Hiramatsu2f35c412014-11-10 09:29:29 +1030769 return (unsigned long)atomic_read(&mod->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771EXPORT_SYMBOL(module_refcount);
772
773/* This exists whether we can unload or not */
774static void free_module(struct module *mod);
775
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100776SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
777 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
779 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800780 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 int ret, forced = 0;
782
Kees Cook3d433212009-04-02 15:49:29 -0700783 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800784 return -EPERM;
785
786 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
787 return -EFAULT;
788 name[MODULE_NAME_LEN-1] = '\0';
789
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200790 if (mutex_lock_interruptible(&module_mutex) != 0)
791 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 mod = find_module(name);
794 if (!mod) {
795 ret = -ENOENT;
796 goto out;
797 }
798
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700799 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /* Other modules depend on us: get rid of them first. */
801 ret = -EWOULDBLOCK;
802 goto out;
803 }
804
805 /* Doing init or already dying? */
806 if (mod->state != MODULE_STATE_LIVE) {
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930807 /* FIXME: if (force), slam module count damn the torpedoes */
Jim Cromie5e124162011-12-06 12:11:31 -0700808 pr_debug("%s already dying\n", mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 ret = -EBUSY;
810 goto out;
811 }
812
813 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700814 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800815 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (!forced) {
817 /* This module can't be removed */
818 ret = -EBUSY;
819 goto out;
820 }
821 }
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* Stop the machine so refcounts can't move and disable module. */
824 ret = try_stop_module(mod, flags, &forced);
825 if (ret != 0)
826 goto out;
827
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200828 mutex_unlock(&module_mutex);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300829 /* Final destruction now no one is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200830 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200832 blocking_notifier_call_chain(&module_notify_list,
833 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800834 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600835
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100836 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500837 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Rusty Russell75676502010-06-05 11:17:36 -0600839 free_module(mod);
840 return 0;
841out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800842 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return ret;
844}
845
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800846static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 struct module_use *use;
849 int printed_something = 0;
850
Eric Dumazetbd77c042012-01-13 09:32:14 +1030851 seq_printf(m, " %lu ", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 /* Always include a trailing , so userspace can differentiate
854 between this and the old multi-field proc format. */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700855 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700857 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (mod->init != NULL && mod->exit == NULL) {
861 printed_something = 1;
862 seq_printf(m, "[permanent],");
863 }
864
865 if (!printed_something)
866 seq_printf(m, "-");
867}
868
869void __symbol_put(const char *symbol)
870{
871 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Rusty Russell24da1cb2007-07-15 23:41:46 -0700873 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500874 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 BUG();
876 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700877 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879EXPORT_SYMBOL(__symbol_put);
880
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930881/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882void symbol_put_addr(void *addr)
883{
Trent Piepho5e376612006-05-15 09:44:06 -0700884 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930885 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930887 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700888 return;
889
Rusty Russella6e6abd2009-03-31 13:05:31 -0600890 /* module_text_address is safe here: we're supposed to have reference
891 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930892 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600893 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700894 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896EXPORT_SYMBOL_GPL(symbol_put_addr);
897
898static ssize_t show_refcnt(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +0930899 struct module_kobject *mk, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Eric Dumazetbd77c042012-01-13 09:32:14 +1030901 return sprintf(buffer, "%lu\n", module_refcount(mk->mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Kay Sieverscca3e702012-01-13 09:32:15 +1030904static struct module_attribute modinfo_refcnt =
905 __ATTR(refcnt, 0444, show_refcnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Steven Rostedtd53799b2012-03-26 12:50:52 +1030907void __module_get(struct module *module)
908{
909 if (module) {
910 preempt_disable();
Masami Hiramatsu2f35c412014-11-10 09:29:29 +1030911 atomic_inc(&module->refcnt);
Steven Rostedtd53799b2012-03-26 12:50:52 +1030912 trace_module_get(module, _RET_IP_);
913 preempt_enable();
914 }
915}
916EXPORT_SYMBOL(__module_get);
917
918bool try_module_get(struct module *module)
919{
920 bool ret = true;
921
922 if (module) {
923 preempt_disable();
924
925 if (likely(module_is_live(module))) {
Masami Hiramatsu2f35c412014-11-10 09:29:29 +1030926 atomic_inc(&module->refcnt);
Steven Rostedtd53799b2012-03-26 12:50:52 +1030927 trace_module_get(module, _RET_IP_);
928 } else
929 ret = false;
930
931 preempt_enable();
932 }
933 return ret;
934}
935EXPORT_SYMBOL(try_module_get);
936
Al Virof6a57032006-10-18 01:47:25 -0400937void module_put(struct module *module)
938{
939 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900940 preempt_disable();
Masami Hiramatsu2f35c412014-11-10 09:29:29 +1030941 atomic_dec(&module->refcnt);
Li Zefanae832d12010-03-24 10:57:43 +0800942 trace_module_put(module, _RET_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +0900943 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400944 }
945}
946EXPORT_SYMBOL(module_put);
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800949static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 /* We don't know the usage count, or what modules are using. */
952 seq_printf(m, " - -");
953}
954
955static inline void module_unload_free(struct module *mod)
956{
957}
958
Rusty Russell9bea7f22010-06-05 11:17:37 -0600959int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Rusty Russell9bea7f22010-06-05 11:17:37 -0600961 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600963EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600965static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600967 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969#endif /* CONFIG_MODULE_UNLOAD */
970
Kevin Winchester53999bf2012-01-15 19:32:55 -0400971static size_t module_flags_taint(struct module *mod, char *buf)
972{
973 size_t l = 0;
974
975 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
976 buf[l++] = 'P';
977 if (mod->taints & (1 << TAINT_OOT_MODULE))
978 buf[l++] = 'O';
979 if (mod->taints & (1 << TAINT_FORCED_MODULE))
980 buf[l++] = 'F';
981 if (mod->taints & (1 << TAINT_CRAP))
982 buf[l++] = 'C';
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +1030983 if (mod->taints & (1 << TAINT_UNSIGNED_MODULE))
Rusty Russell57673c22014-03-31 14:39:57 +1030984 buf[l++] = 'E';
Kevin Winchester53999bf2012-01-15 19:32:55 -0400985 /*
986 * TAINT_FORCED_RMMOD: could be added.
Dave Jones8c904872014-02-26 10:49:49 -0500987 * TAINT_CPU_OUT_OF_SPEC, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
Kevin Winchester53999bf2012-01-15 19:32:55 -0400988 * apply to modules.
989 */
990 return l;
991}
992
Kay Sievers1f717402006-11-24 12:15:25 +0100993static ssize_t show_initstate(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +0930994 struct module_kobject *mk, char *buffer)
Kay Sievers1f717402006-11-24 12:15:25 +0100995{
996 const char *state = "unknown";
997
Kay Sievers4befb022011-07-24 22:06:04 +0930998 switch (mk->mod->state) {
Kay Sievers1f717402006-11-24 12:15:25 +0100999 case MODULE_STATE_LIVE:
1000 state = "live";
1001 break;
1002 case MODULE_STATE_COMING:
1003 state = "coming";
1004 break;
1005 case MODULE_STATE_GOING:
1006 state = "going";
1007 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301008 default:
1009 BUG();
Kay Sievers1f717402006-11-24 12:15:25 +01001010 }
1011 return sprintf(buffer, "%s\n", state);
1012}
1013
Kay Sieverscca3e702012-01-13 09:32:15 +10301014static struct module_attribute modinfo_initstate =
1015 __ATTR(initstate, 0444, show_initstate, NULL);
Kay Sievers1f717402006-11-24 12:15:25 +01001016
Kay Sievers88bfa322011-07-24 22:06:04 +09301017static ssize_t store_uevent(struct module_attribute *mattr,
1018 struct module_kobject *mk,
1019 const char *buffer, size_t count)
1020{
1021 enum kobject_action action;
1022
1023 if (kobject_action_type(buffer, count, &action) == 0)
1024 kobject_uevent(&mk->kobj, action);
1025 return count;
1026}
1027
Kay Sieverscca3e702012-01-13 09:32:15 +10301028struct module_attribute module_uevent =
1029 __ATTR(uevent, 0200, NULL, store_uevent);
1030
1031static ssize_t show_coresize(struct module_attribute *mattr,
1032 struct module_kobject *mk, char *buffer)
1033{
1034 return sprintf(buffer, "%u\n", mk->mod->core_size);
1035}
1036
1037static struct module_attribute modinfo_coresize =
1038 __ATTR(coresize, 0444, show_coresize, NULL);
1039
1040static ssize_t show_initsize(struct module_attribute *mattr,
1041 struct module_kobject *mk, char *buffer)
1042{
1043 return sprintf(buffer, "%u\n", mk->mod->init_size);
1044}
1045
1046static struct module_attribute modinfo_initsize =
1047 __ATTR(initsize, 0444, show_initsize, NULL);
1048
1049static ssize_t show_taint(struct module_attribute *mattr,
1050 struct module_kobject *mk, char *buffer)
1051{
1052 size_t l;
1053
1054 l = module_flags_taint(mk->mod, buffer);
1055 buffer[l++] = '\n';
1056 return l;
1057}
1058
1059static struct module_attribute modinfo_taint =
1060 __ATTR(taint, 0444, show_taint, NULL);
Kay Sievers88bfa322011-07-24 22:06:04 +09301061
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001062static struct module_attribute *modinfo_attrs[] = {
Kay Sieverscca3e702012-01-13 09:32:15 +10301063 &module_uevent,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001064 &modinfo_version,
1065 &modinfo_srcversion,
Kay Sieverscca3e702012-01-13 09:32:15 +10301066 &modinfo_initstate,
1067 &modinfo_coresize,
1068 &modinfo_initsize,
1069 &modinfo_taint,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001070#ifdef CONFIG_MODULE_UNLOAD
Kay Sieverscca3e702012-01-13 09:32:15 +10301071 &modinfo_refcnt,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001072#endif
1073 NULL,
1074};
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076static const char vermagic[] = VERMAGIC_STRING;
1077
Rusty Russellc6e665c2009-03-31 13:05:33 -06001078static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -07001079{
1080#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -07001081 if (!test_taint(TAINT_FORCED_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001082 pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
Rusty Russell373d4d02013-01-21 17:17:39 +10301083 add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds826e4502008-05-04 17:04:16 -07001084 return 0;
1085#else
1086 return -ENOEXEC;
1087#endif
1088}
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -06001091/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
1092static unsigned long maybe_relocated(unsigned long crc,
1093 const struct module *crc_owner)
1094{
1095#ifdef ARCH_RELOCATES_KCRCTAB
1096 if (crc_owner == NULL)
1097 return crc - (unsigned long)reloc_start;
1098#endif
1099 return crc;
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102static int check_version(Elf_Shdr *sechdrs,
1103 unsigned int versindex,
1104 const char *symname,
1105 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001106 const unsigned long *crc,
1107 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
1109 unsigned int i, num_versions;
1110 struct modversion_info *versions;
1111
1112 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1113 if (!crc)
1114 return 1;
1115
Rusty Russella5dd6972008-05-09 16:24:21 +10001116 /* No versions at all? modprobe --force does this. */
1117 if (versindex == 0)
1118 return try_to_force_load(mod, symname) == 0;
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 versions = (void *) sechdrs[versindex].sh_addr;
1121 num_versions = sechdrs[versindex].sh_size
1122 / sizeof(struct modversion_info);
1123
1124 for (i = 0; i < num_versions; i++) {
1125 if (strcmp(versions[i].name, symname) != 0)
1126 continue;
1127
Rusty Russelld4703ae2009-12-15 16:28:32 -06001128 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return 1;
Jim Cromie5e124162011-12-06 12:11:31 -07001130 pr_debug("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -06001131 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001132 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001134
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001135 pr_warn("%s: no symbol version for %s\n", mod->name, symname);
Rusty Russella5dd6972008-05-09 16:24:21 +10001136 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -07001137
1138bad_version:
1139 printk("%s: disagrees about version of symbol %s\n",
1140 mod->name, symname);
1141 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
1144static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1145 unsigned int versindex,
1146 struct module *mod)
1147{
1148 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Rusty Russell75676502010-06-05 11:17:36 -06001150 /* Since this should be found in kernel (which can't be removed),
1151 * no locking is necessary. */
Rusty Russellb92021b2013-03-15 15:04:17 +10301152 if (!find_symbol(VMLINUX_SYMBOL_STR(module_layout), NULL,
Mike Frysinger6560dc12009-07-23 23:42:08 +09301153 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 BUG();
James Hogana4b6a772013-03-18 19:38:56 +10301155 return check_version(sechdrs, versindex,
1156 VMLINUX_SYMBOL_STR(module_layout), mod, crc,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001157 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
Rusty Russell91e37a72008-05-09 16:25:28 +10001160/* First part is kernel version, which we ignore if module has crcs. */
1161static inline int same_magic(const char *amagic, const char *bmagic,
1162 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Rusty Russell91e37a72008-05-09 16:25:28 +10001164 if (has_crcs) {
1165 amagic += strcspn(amagic, " ");
1166 bmagic += strcspn(bmagic, " ");
1167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return strcmp(amagic, bmagic) == 0;
1169}
1170#else
1171static inline int check_version(Elf_Shdr *sechdrs,
1172 unsigned int versindex,
1173 const char *symname,
1174 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001175 const unsigned long *crc,
1176 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
1178 return 1;
1179}
1180
1181static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1182 unsigned int versindex,
1183 struct module *mod)
1184{
1185 return 1;
1186}
1187
Rusty Russell91e37a72008-05-09 16:25:28 +10001188static inline int same_magic(const char *amagic, const char *bmagic,
1189 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
1191 return strcmp(amagic, bmagic) == 0;
1192}
1193#endif /* CONFIG_MODVERSIONS */
1194
Rusty Russell75676502010-06-05 11:17:36 -06001195/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001196static const struct kernel_symbol *resolve_symbol(struct module *mod,
1197 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001198 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001199 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001202 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 const unsigned long *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001204 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Rusty Russell75676502010-06-05 11:17:36 -06001206 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001207 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001208 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001209 if (!sym)
1210 goto unlock;
1211
Rusty Russell49668682010-08-05 12:59:10 -06001212 if (!check_version(info->sechdrs, info->index.vers, name, mod, crc,
1213 owner)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001214 sym = ERR_PTR(-EINVAL);
1215 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001217
1218 err = ref_module(mod, owner);
1219 if (err) {
1220 sym = ERR_PTR(err);
1221 goto getname;
1222 }
1223
1224getname:
1225 /* We must make copy under the lock if we failed to get ref. */
1226 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1227unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001228 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001229 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Rusty Russell49668682010-08-05 12:59:10 -06001232static const struct kernel_symbol *
1233resolve_symbol_wait(struct module *mod,
1234 const struct load_info *info,
1235 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001236{
1237 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001238 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001239
1240 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001241 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1242 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001243 30 * HZ) <= 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001244 pr_warn("%s: gave up waiting for init of module %s.\n",
1245 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001246 }
1247 return ksym;
1248}
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250/*
1251 * /sys/module/foo/sections stuff
1252 * J. Corbet <corbet@lwn.net>
1253 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001254#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001255
Rusty Russell8f6d0372010-08-05 12:59:09 -06001256#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001257static inline bool sect_empty(const Elf_Shdr *sect)
1258{
1259 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1260}
1261
Rusty Russella58730c2008-03-13 09:03:44 +00001262struct module_sect_attr
1263{
1264 struct module_attribute mattr;
1265 char *name;
1266 unsigned long address;
1267};
1268
1269struct module_sect_attrs
1270{
1271 struct attribute_group grp;
1272 unsigned int nsections;
1273 struct module_sect_attr attrs[0];
1274};
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276static ssize_t module_sect_show(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301277 struct module_kobject *mk, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 struct module_sect_attr *sattr =
1280 container_of(mattr, struct module_sect_attr, mattr);
Kees Cook9f36e2c2011-03-22 16:34:22 -07001281 return sprintf(buf, "0x%pK\n", (void *)sattr->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001284static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1285{
Rusty Russella58730c2008-03-13 09:03:44 +00001286 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001287
1288 for (section = 0; section < sect_attrs->nsections; section++)
1289 kfree(sect_attrs->attrs[section].name);
1290 kfree(sect_attrs);
1291}
1292
Rusty Russell8f6d0372010-08-05 12:59:09 -06001293static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 unsigned int nloaded = 0, i, size[2];
1296 struct module_sect_attrs *sect_attrs;
1297 struct module_sect_attr *sattr;
1298 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001301 for (i = 0; i < info->hdr->e_shnum; i++)
1302 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 nloaded++;
1304 size[0] = ALIGN(sizeof(*sect_attrs)
1305 + nloaded * sizeof(sect_attrs->attrs[0]),
1306 sizeof(sect_attrs->grp.attrs[0]));
1307 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001308 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1309 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return;
1311
1312 /* Setup section attributes. */
1313 sect_attrs->grp.name = "sections";
1314 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1315
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001316 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 sattr = &sect_attrs->attrs[0];
1318 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001319 for (i = 0; i < info->hdr->e_shnum; i++) {
1320 Elf_Shdr *sec = &info->sechdrs[i];
1321 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001322 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001323 sattr->address = sec->sh_addr;
1324 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001325 GFP_KERNEL);
1326 if (sattr->name == NULL)
1327 goto out;
1328 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001329 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 sattr->mattr.show = module_sect_show;
1331 sattr->mattr.store = NULL;
1332 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 sattr->mattr.attr.mode = S_IRUGO;
1334 *(gattr++) = &(sattr++)->mattr.attr;
1335 }
1336 *gattr = NULL;
1337
1338 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1339 goto out;
1340
1341 mod->sect_attrs = sect_attrs;
1342 return;
1343 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001344 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
1347static void remove_sect_attrs(struct module *mod)
1348{
1349 if (mod->sect_attrs) {
1350 sysfs_remove_group(&mod->mkobj.kobj,
1351 &mod->sect_attrs->grp);
1352 /* We are positive that no one is using any sect attrs
1353 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001354 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 mod->sect_attrs = NULL;
1356 }
1357}
1358
Roland McGrath6d760132007-10-16 23:26:40 -07001359/*
1360 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1361 */
1362
1363struct module_notes_attrs {
1364 struct kobject *dir;
1365 unsigned int notes;
1366 struct bin_attribute attrs[0];
1367};
1368
Chris Wright2c3c8be2010-05-12 18:28:57 -07001369static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001370 struct bin_attribute *bin_attr,
1371 char *buf, loff_t pos, size_t count)
1372{
1373 /*
1374 * The caller checked the pos and count against our size.
1375 */
1376 memcpy(buf, bin_attr->private + pos, count);
1377 return count;
1378}
1379
1380static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1381 unsigned int i)
1382{
1383 if (notes_attrs->dir) {
1384 while (i-- > 0)
1385 sysfs_remove_bin_file(notes_attrs->dir,
1386 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001387 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001388 }
1389 kfree(notes_attrs);
1390}
1391
Rusty Russell8f6d0372010-08-05 12:59:09 -06001392static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001393{
1394 unsigned int notes, loaded, i;
1395 struct module_notes_attrs *notes_attrs;
1396 struct bin_attribute *nattr;
1397
Ingo Molnarea6bff32009-08-28 10:44:56 +02001398 /* failed to create section attributes, so can't create notes */
1399 if (!mod->sect_attrs)
1400 return;
1401
Roland McGrath6d760132007-10-16 23:26:40 -07001402 /* Count notes sections and allocate structures. */
1403 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001404 for (i = 0; i < info->hdr->e_shnum; i++)
1405 if (!sect_empty(&info->sechdrs[i]) &&
1406 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001407 ++notes;
1408
1409 if (notes == 0)
1410 return;
1411
1412 notes_attrs = kzalloc(sizeof(*notes_attrs)
1413 + notes * sizeof(notes_attrs->attrs[0]),
1414 GFP_KERNEL);
1415 if (notes_attrs == NULL)
1416 return;
1417
1418 notes_attrs->notes = notes;
1419 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001420 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1421 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001422 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001423 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001424 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001425 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1426 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001427 nattr->size = info->sechdrs[i].sh_size;
1428 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001429 nattr->read = module_notes_read;
1430 ++nattr;
1431 }
1432 ++loaded;
1433 }
1434
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001435 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001436 if (!notes_attrs->dir)
1437 goto out;
1438
1439 for (i = 0; i < notes; ++i)
1440 if (sysfs_create_bin_file(notes_attrs->dir,
1441 &notes_attrs->attrs[i]))
1442 goto out;
1443
1444 mod->notes_attrs = notes_attrs;
1445 return;
1446
1447 out:
1448 free_notes_attrs(notes_attrs, i);
1449}
1450
1451static void remove_notes_attrs(struct module *mod)
1452{
1453 if (mod->notes_attrs)
1454 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1455}
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001458
Rusty Russell8f6d0372010-08-05 12:59:09 -06001459static inline void add_sect_attrs(struct module *mod,
1460 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462}
1463
1464static inline void remove_sect_attrs(struct module *mod)
1465{
1466}
Roland McGrath6d760132007-10-16 23:26:40 -07001467
Rusty Russell8f6d0372010-08-05 12:59:09 -06001468static inline void add_notes_attrs(struct module *mod,
1469 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001470{
1471}
1472
1473static inline void remove_notes_attrs(struct module *mod)
1474{
1475}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001476#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001478static void add_usage_links(struct module *mod)
1479{
1480#ifdef CONFIG_MODULE_UNLOAD
1481 struct module_use *use;
1482 int nowarn;
1483
Rusty Russell75676502010-06-05 11:17:36 -06001484 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001485 list_for_each_entry(use, &mod->target_list, target_list) {
1486 nowarn = sysfs_create_link(use->target->holders_dir,
1487 &mod->mkobj.kobj, mod->name);
1488 }
Rusty Russell75676502010-06-05 11:17:36 -06001489 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001490#endif
1491}
1492
1493static void del_usage_links(struct module *mod)
1494{
1495#ifdef CONFIG_MODULE_UNLOAD
1496 struct module_use *use;
1497
Rusty Russell75676502010-06-05 11:17:36 -06001498 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001499 list_for_each_entry(use, &mod->target_list, target_list)
1500 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001501 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001502#endif
1503}
1504
Rusty Russell6407ebb22010-06-05 11:17:36 -06001505static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001506{
1507 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001508 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001509 int error = 0;
1510 int i;
1511
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001512 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1513 (ARRAY_SIZE(modinfo_attrs) + 1)),
1514 GFP_KERNEL);
1515 if (!mod->modinfo_attrs)
1516 return -ENOMEM;
1517
1518 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001519 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1520 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001521 (attr->test && attr->test(mod))) {
1522 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001523 sysfs_attr_init(&temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001524 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1525 ++temp_attr;
1526 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001527 }
1528 return error;
1529}
1530
Rusty Russell6407ebb22010-06-05 11:17:36 -06001531static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001532{
1533 struct module_attribute *attr;
1534 int i;
1535
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001536 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1537 /* pick a field to test for end of list */
1538 if (!attr->attr.name)
1539 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001540 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001541 if (attr->free)
1542 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001543 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001544 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001545}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Li Zhong942e4432013-09-03 16:33:57 +09301547static void mod_kobject_put(struct module *mod)
1548{
1549 DECLARE_COMPLETION_ONSTACK(c);
1550 mod->mkobj.kobj_completion = &c;
1551 kobject_put(&mod->mkobj.kobj);
1552 wait_for_completion(&c);
1553}
1554
Rusty Russell6407ebb22010-06-05 11:17:36 -06001555static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
1557 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001558 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001560 if (!module_sysfs_initialized) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001561 pr_err("%s: module sysfs not initialized\n", mod->name);
Ed Swierk1cc5f712006-09-25 16:25:36 -07001562 err = -EINVAL;
1563 goto out;
1564 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001565
1566 kobj = kset_find_obj(module_kset, mod->name);
1567 if (kobj) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001568 pr_err("%s: module is already loaded\n", mod->name);
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001569 kobject_put(kobj);
1570 err = -EINVAL;
1571 goto out;
1572 }
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001575
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001576 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1577 mod->mkobj.kobj.kset = module_kset;
1578 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1579 "%s", mod->name);
1580 if (err)
Li Zhong942e4432013-09-03 16:33:57 +09301581 mod_kobject_put(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001582
Kay Sievers97c146e2007-11-29 23:46:11 +01001583 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001584out:
1585 return err;
1586}
1587
Rusty Russell6407ebb22010-06-05 11:17:36 -06001588static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001589 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001590 struct kernel_param *kparam,
1591 unsigned int num_params)
1592{
1593 int err;
1594
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001595 err = mod_sysfs_init(mod);
1596 if (err)
1597 goto out;
1598
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001599 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001600 if (!mod->holders_dir) {
1601 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001602 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001603 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 err = module_param_sysfs_setup(mod, kparam, num_params);
1606 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001607 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Matt Domschc988d2b2005-06-23 22:05:15 -07001609 err = module_add_modinfo_attrs(mod);
1610 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001611 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001612
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001613 add_usage_links(mod);
Rusty Russell8f6d0372010-08-05 12:59:09 -06001614 add_sect_attrs(mod, info);
1615 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001616
Kay Sieverse17e0f52006-11-24 12:15:25 +01001617 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return 0;
1619
Kay Sieverse17e0f52006-11-24 12:15:25 +01001620out_unreg_param:
1621 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001622out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001623 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001624out_unreg:
Li Zhong942e4432013-09-03 16:33:57 +09301625 mod_kobject_put(mod);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001626out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return err;
1628}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001629
1630static void mod_sysfs_fini(struct module *mod)
1631{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001632 remove_notes_attrs(mod);
1633 remove_sect_attrs(mod);
Li Zhong942e4432013-09-03 16:33:57 +09301634 mod_kobject_put(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001635}
1636
Rusty Russell8f6d0372010-08-05 12:59:09 -06001637#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001638
Rusty Russell8f6d0372010-08-05 12:59:09 -06001639static int mod_sysfs_setup(struct module *mod,
1640 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001641 struct kernel_param *kparam,
1642 unsigned int num_params)
1643{
1644 return 0;
1645}
1646
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001647static void mod_sysfs_fini(struct module *mod)
1648{
1649}
1650
Rusty Russell36b03602010-08-05 12:59:09 -06001651static void module_remove_modinfo_attrs(struct module *mod)
1652{
1653}
1654
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001655static void del_usage_links(struct module *mod)
1656{
1657}
1658
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001659#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Rusty Russell36b03602010-08-05 12:59:09 -06001661static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001663 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001664 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001666 kobject_put(mod->mkobj.drivers_dir);
1667 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001668 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669}
1670
matthieu castet84e1c6b2010-11-16 22:35:16 +01001671#ifdef CONFIG_DEBUG_SET_MODULE_RONX
1672/*
1673 * LKM RO/NX protection: protect module's text/ro-data
1674 * from modification and any data from execution.
1675 */
1676void set_page_attributes(void *start, void *end, int (*set)(unsigned long start, int num_pages))
1677{
1678 unsigned long begin_pfn = PFN_DOWN((unsigned long)start);
1679 unsigned long end_pfn = PFN_DOWN((unsigned long)end);
1680
1681 if (end_pfn > begin_pfn)
1682 set(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1683}
1684
1685static void set_section_ro_nx(void *base,
1686 unsigned long text_size,
1687 unsigned long ro_size,
1688 unsigned long total_size)
1689{
1690 /* begin and end PFNs of the current subsection */
1691 unsigned long begin_pfn;
1692 unsigned long end_pfn;
1693
1694 /*
1695 * Set RO for module text and RO-data:
1696 * - Always protect first page.
1697 * - Do not protect last partial page.
1698 */
1699 if (ro_size > 0)
1700 set_page_attributes(base, base + ro_size, set_memory_ro);
1701
1702 /*
1703 * Set NX permissions for module data:
1704 * - Do not protect first partial page.
1705 * - Always protect last page.
1706 */
1707 if (total_size > text_size) {
1708 begin_pfn = PFN_UP((unsigned long)base + text_size);
1709 end_pfn = PFN_UP((unsigned long)base + total_size);
1710 if (end_pfn > begin_pfn)
1711 set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1712 }
1713}
1714
Jan Glauber01526ed2011-05-19 16:55:26 -06001715static void unset_module_core_ro_nx(struct module *mod)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001716{
Jan Glauber01526ed2011-05-19 16:55:26 -06001717 set_page_attributes(mod->module_core + mod->core_text_size,
1718 mod->module_core + mod->core_size,
1719 set_memory_x);
1720 set_page_attributes(mod->module_core,
1721 mod->module_core + mod->core_ro_size,
1722 set_memory_rw);
1723}
1724
1725static void unset_module_init_ro_nx(struct module *mod)
1726{
1727 set_page_attributes(mod->module_init + mod->init_text_size,
1728 mod->module_init + mod->init_size,
1729 set_memory_x);
1730 set_page_attributes(mod->module_init,
1731 mod->module_init + mod->init_ro_size,
1732 set_memory_rw);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001733}
1734
1735/* Iterate through all modules and set each module's text as RW */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001736void set_all_modules_text_rw(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001737{
1738 struct module *mod;
1739
1740 mutex_lock(&module_mutex);
1741 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301742 if (mod->state == MODULE_STATE_UNFORMED)
1743 continue;
matthieu castet84e1c6b2010-11-16 22:35:16 +01001744 if ((mod->module_core) && (mod->core_text_size)) {
1745 set_page_attributes(mod->module_core,
1746 mod->module_core + mod->core_text_size,
1747 set_memory_rw);
1748 }
1749 if ((mod->module_init) && (mod->init_text_size)) {
1750 set_page_attributes(mod->module_init,
1751 mod->module_init + mod->init_text_size,
1752 set_memory_rw);
1753 }
1754 }
1755 mutex_unlock(&module_mutex);
1756}
1757
1758/* Iterate through all modules and set each module's text as RO */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001759void set_all_modules_text_ro(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001760{
1761 struct module *mod;
1762
1763 mutex_lock(&module_mutex);
1764 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301765 if (mod->state == MODULE_STATE_UNFORMED)
1766 continue;
matthieu castet84e1c6b2010-11-16 22:35:16 +01001767 if ((mod->module_core) && (mod->core_text_size)) {
1768 set_page_attributes(mod->module_core,
1769 mod->module_core + mod->core_text_size,
1770 set_memory_ro);
1771 }
1772 if ((mod->module_init) && (mod->init_text_size)) {
1773 set_page_attributes(mod->module_init,
1774 mod->module_init + mod->init_text_size,
1775 set_memory_ro);
1776 }
1777 }
1778 mutex_unlock(&module_mutex);
1779}
1780#else
1781static 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 -06001782static void unset_module_core_ro_nx(struct module *mod) { }
1783static void unset_module_init_ro_nx(struct module *mod) { }
matthieu castet84e1c6b2010-11-16 22:35:16 +01001784#endif
1785
Jonas Bonn74e08fc2011-06-30 21:22:11 +02001786void __weak module_free(struct module *mod, void *module_region)
1787{
1788 vfree(module_region);
1789}
1790
1791void __weak module_arch_cleanup(struct module *mod)
1792{
1793}
1794
Rusty Russell75676502010-06-05 11:17:36 -06001795/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796static void free_module(struct module *mod)
1797{
Li Zefan7ead8b82009-08-17 16:56:28 +08001798 trace_module_free(mod);
1799
Rusty Russell36b03602010-08-05 12:59:09 -06001800 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Rusty Russell944a1fa2013-04-17 13:20:03 +09301802 /* We leave it in list to prevent duplicate loads, but make sure
1803 * that noone uses it while it's being deconstructed. */
Prarit Bhargavad3051b42014-10-14 02:51:39 +10301804 mutex_lock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09301805 mod->state = MODULE_STATE_UNFORMED;
Prarit Bhargavad3051b42014-10-14 02:51:39 +10301806 mutex_unlock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09301807
Jason Baronb82bab4b2010-07-27 13:18:01 -07001808 /* Remove dynamic debug info */
1809 ddebug_remove_module(mod->name);
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 /* Arch-specific cleanup. */
1812 module_arch_cleanup(mod);
1813
1814 /* Module unload stuff */
1815 module_unload_free(mod);
1816
Rusty Russelle180a6b2009-03-31 13:05:29 -06001817 /* Free any allocated parameters. */
1818 destroy_params(mod->kp, mod->num_kp);
1819
Rusty Russell944a1fa2013-04-17 13:20:03 +09301820 /* Now we can delete it from the lists */
1821 mutex_lock(&module_mutex);
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10301822 /* Unlink carefully: kallsyms could be walking list. */
1823 list_del_rcu(&mod->list);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10301824 /* Remove this module from bug list, this uses list_del_rcu */
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10301825 module_bug_cleanup(mod);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10301826 /* Wait for RCU synchronizing before releasing mod->list and buglist. */
1827 synchronize_rcu();
Rusty Russell944a1fa2013-04-17 13:20:03 +09301828 mutex_unlock(&module_mutex);
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 /* This may be NULL, but that's OK */
Jan Glauber01526ed2011-05-19 16:55:26 -06001831 unset_module_init_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 module_free(mod, mod->module_init);
1833 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001834 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001835
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001836 /* Free lock-classes: */
1837 lockdep_free_key_range(mod->module_core, mod->core_size);
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 /* Finally, free the core (containing the module structure) */
Jan Glauber01526ed2011-05-19 16:55:26 -06001840 unset_module_core_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 module_free(mod, mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001842
1843#ifdef CONFIG_MPU
1844 update_protections(current->mm);
1845#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
1848void *__symbol_get(const char *symbol)
1849{
1850 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001851 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Rusty Russell24da1cb2007-07-15 23:41:46 -07001853 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001854 sym = find_symbol(symbol, &owner, NULL, true, true);
1855 if (sym && strong_try_module_get(owner))
1856 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001857 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Tim Abbott414fd312008-12-05 19:03:56 -05001859 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861EXPORT_SYMBOL_GPL(__symbol_get);
1862
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001863/*
1864 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001865 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06001866 *
1867 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001868 */
1869static int verify_export_symbols(struct module *mod)
1870{
Rusty Russellb2111042008-05-01 21:15:00 -05001871 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001872 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001873 const struct kernel_symbol *s;
1874 struct {
1875 const struct kernel_symbol *sym;
1876 unsigned int num;
1877 } arr[] = {
1878 { mod->syms, mod->num_syms },
1879 { mod->gpl_syms, mod->num_gpl_syms },
1880 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001881#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001882 { mod->unused_syms, mod->num_unused_syms },
1883 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001884#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001885 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001886
Rusty Russellb2111042008-05-01 21:15:00 -05001887 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1888 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06001889 if (find_symbol(s->name, &owner, NULL, true, false)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001890 pr_err("%s: exports duplicate symbol %s"
Rusty Russellb2111042008-05-01 21:15:00 -05001891 " (owned by %s)\n",
1892 mod->name, s->name, module_name(owner));
1893 return -ENOEXEC;
1894 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001895 }
Rusty Russellb2111042008-05-01 21:15:00 -05001896 }
1897 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001898}
1899
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001900/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06001901static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
Rusty Russell49668682010-08-05 12:59:10 -06001903 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
1904 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06001906 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001908 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Rusty Russell49668682010-08-05 12:59:10 -06001910 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
1911 const char *name = info->strtab + sym[i].st_name;
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 switch (sym[i].st_shndx) {
1914 case SHN_COMMON:
Joe Mario80375982014-02-08 09:01:09 +01001915 /* Ignore common symbols */
1916 if (!strncmp(name, "__gnu_lto", 9))
1917 break;
1918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 /* We compiled with -fno-common. These are not
1920 supposed to happen. */
Jim Cromie5e124162011-12-06 12:11:31 -07001921 pr_debug("Common symbol: %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 printk("%s: please compile with -fno-common\n",
1923 mod->name);
1924 ret = -ENOEXEC;
1925 break;
1926
1927 case SHN_ABS:
1928 /* Don't need to do anything */
Jim Cromie5e124162011-12-06 12:11:31 -07001929 pr_debug("Absolute symbol: 0x%08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 (long)sym[i].st_value);
1931 break;
1932
1933 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06001934 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001936 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05001937 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001939 }
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001942 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 break;
1944
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001945 pr_warn("%s: Unknown symbol %s (err %li)\n",
1946 mod->name, name, PTR_ERR(ksym));
Rusty Russell9bea7f22010-06-05 11:17:37 -06001947 ret = PTR_ERR(ksym) ?: -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 break;
1949
1950 default:
1951 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06001952 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09001953 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 else
Rusty Russell49668682010-08-05 12:59:10 -06001955 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 sym[i].st_value += secbase;
1957 break;
1958 }
1959 }
1960
1961 return ret;
1962}
1963
Rusty Russell49668682010-08-05 12:59:10 -06001964static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06001965{
1966 unsigned int i;
1967 int err = 0;
1968
1969 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06001970 for (i = 1; i < info->hdr->e_shnum; i++) {
1971 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06001972
1973 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06001974 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06001975 continue;
1976
1977 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06001978 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06001979 continue;
1980
Rusty Russell49668682010-08-05 12:59:10 -06001981 if (info->sechdrs[i].sh_type == SHT_REL)
1982 err = apply_relocate(info->sechdrs, info->strtab,
1983 info->index.sym, i, mod);
1984 else if (info->sechdrs[i].sh_type == SHT_RELA)
1985 err = apply_relocate_add(info->sechdrs, info->strtab,
1986 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06001987 if (err < 0)
1988 break;
1989 }
1990 return err;
1991}
1992
Helge Deller088af9a2008-12-31 12:31:18 +01001993/* Additional bytes needed by arch in front of individual sections */
1994unsigned int __weak arch_mod_section_prepend(struct module *mod,
1995 unsigned int section)
1996{
1997 /* default implementation just returns zero */
1998 return 0;
1999}
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01002002static long get_offset(struct module *mod, unsigned int *size,
2003 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
2005 long ret;
2006
Helge Deller088af9a2008-12-31 12:31:18 +01002007 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2009 *size = ret + sechdr->sh_size;
2010 return ret;
2011}
2012
2013/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2014 might -- code, read-only data, read-write data, small data. Tally
2015 sizes, and place the offsets into sh_entsize fields: high bit means it
2016 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06002017static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
2019 static unsigned long const masks[][2] = {
2020 /* NOTE: all executable code must be the first section
2021 * in this array; otherwise modify the text_size
2022 * finder in the two loops below */
2023 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2024 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
2025 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2026 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2027 };
2028 unsigned int m, i;
2029
Rusty Russell49668682010-08-05 12:59:10 -06002030 for (i = 0; i < info->hdr->e_shnum; i++)
2031 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Jim Cromie5e124162011-12-06 12:11:31 -07002033 pr_debug("Core section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002035 for (i = 0; i < info->hdr->e_shnum; ++i) {
2036 Elf_Shdr *s = &info->sechdrs[i];
2037 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2040 || (s->sh_flags & masks[m][1])
2041 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002042 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002044 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
Jim Cromie5e124162011-12-06 12:11:31 -07002045 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002047 switch (m) {
2048 case 0: /* executable */
2049 mod->core_size = debug_align(mod->core_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 mod->core_text_size = mod->core_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002051 break;
2052 case 1: /* RO: text and ro-data */
2053 mod->core_size = debug_align(mod->core_size);
2054 mod->core_ro_size = mod->core_size;
2055 break;
2056 case 3: /* whole core */
2057 mod->core_size = debug_align(mod->core_size);
2058 break;
2059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
2061
Jim Cromie5e124162011-12-06 12:11:31 -07002062 pr_debug("Init section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002064 for (i = 0; i < info->hdr->e_shnum; ++i) {
2065 Elf_Shdr *s = &info->sechdrs[i];
2066 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2069 || (s->sh_flags & masks[m][1])
2070 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002071 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002073 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 | INIT_OFFSET_MASK);
Jim Cromie5e124162011-12-06 12:11:31 -07002075 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002077 switch (m) {
2078 case 0: /* executable */
2079 mod->init_size = debug_align(mod->init_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 mod->init_text_size = mod->init_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002081 break;
2082 case 1: /* RO: text and ro-data */
2083 mod->init_size = debug_align(mod->init_size);
2084 mod->init_ro_size = mod->init_size;
2085 break;
2086 case 3: /* whole init */
2087 mod->init_size = debug_align(mod->init_size);
2088 break;
2089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
2091}
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093static void set_license(struct module *mod, const char *license)
2094{
2095 if (!license)
2096 license = "unspecified";
2097
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002098 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07002099 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002100 pr_warn("%s: module license '%s' taints kernel.\n",
2101 mod->name, license);
Rusty Russell373d4d02013-01-21 17:17:39 +10302102 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2103 LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
2105}
2106
2107/* Parse tag=value strings from .modinfo section */
2108static char *next_string(char *string, unsigned long *secsize)
2109{
2110 /* Skip non-zero chars */
2111 while (string[0]) {
2112 string++;
2113 if ((*secsize)-- <= 1)
2114 return NULL;
2115 }
2116
2117 /* Skip any zero padding. */
2118 while (!string[0]) {
2119 string++;
2120 if ((*secsize)-- <= 1)
2121 return NULL;
2122 }
2123 return string;
2124}
2125
Rusty Russell49668682010-08-05 12:59:10 -06002126static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
2128 char *p;
2129 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06002130 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2131 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Rusty Russell49668682010-08-05 12:59:10 -06002133 for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2135 return p + taglen + 1;
2136 }
2137 return NULL;
2138}
2139
Rusty Russell49668682010-08-05 12:59:10 -06002140static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07002141{
2142 struct module_attribute *attr;
2143 int i;
2144
2145 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2146 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06002147 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07002148 }
2149}
Matt Domschc988d2b2005-06-23 22:05:15 -07002150
Rusty Russella263f772009-09-25 00:32:58 -06002151static void free_modinfo(struct module *mod)
2152{
2153 struct module_attribute *attr;
2154 int i;
2155
2156 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2157 if (attr->free)
2158 attr->free(mod);
2159 }
2160}
2161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01002163
2164/* lookup symbol in given range of kernel_symbols */
2165static const struct kernel_symbol *lookup_symbol(const char *name,
2166 const struct kernel_symbol *start,
2167 const struct kernel_symbol *stop)
2168{
Alessio Igor Bogani9d634872011-05-18 22:35:59 +02002169 return bsearch(name, start, stop - start,
2170 sizeof(struct kernel_symbol), cmp_name);
WANG Cong15bba372008-07-24 15:41:48 +01002171}
2172
Tim Abbottca4787b2009-01-05 08:40:10 -06002173static int is_exported(const char *name, unsigned long value,
2174 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
Tim Abbottca4787b2009-01-05 08:40:10 -06002176 const struct kernel_symbol *ks;
2177 if (!mod)
2178 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01002179 else
Tim Abbottca4787b2009-01-05 08:40:10 -06002180 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
2181 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
2184/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06002185static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
Rusty Russelleded41c2010-08-05 12:59:07 -06002187 const Elf_Shdr *sechdrs = info->sechdrs;
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2190 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2191 return 'v';
2192 else
2193 return 'w';
2194 }
2195 if (sym->st_shndx == SHN_UNDEF)
2196 return 'U';
2197 if (sym->st_shndx == SHN_ABS)
2198 return 'a';
2199 if (sym->st_shndx >= SHN_LORESERVE)
2200 return '?';
2201 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2202 return 't';
2203 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2204 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2205 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2206 return 'r';
2207 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2208 return 'g';
2209 else
2210 return 'd';
2211 }
2212 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2213 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2214 return 's';
2215 else
2216 return 'b';
2217 }
Rusty Russelleded41c2010-08-05 12:59:07 -06002218 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2219 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06002221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 return '?';
2223}
2224
Jan Beulich4a496222009-07-06 14:50:42 +01002225static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
2226 unsigned int shnum)
2227{
2228 const Elf_Shdr *sec;
2229
2230 if (src->st_shndx == SHN_UNDEF
2231 || src->st_shndx >= shnum
2232 || !src->st_name)
2233 return false;
2234
2235 sec = sechdrs + src->st_shndx;
2236 if (!(sec->sh_flags & SHF_ALLOC)
2237#ifndef CONFIG_KALLSYMS_ALL
2238 || !(sec->sh_flags & SHF_EXECINSTR)
2239#endif
2240 || (sec->sh_entsize & INIT_OFFSET_MASK))
2241 return false;
2242
2243 return true;
2244}
2245
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302246/*
2247 * We only allocate and copy the strings needed by the parts of symtab
2248 * we keep. This is simple, but has the effect of making multiple
2249 * copies of duplicates. We could be more sophisticated, see
2250 * linux-kernel thread starting with
2251 * <73defb5e4bca04a6431392cc341112b1@localhost>.
2252 */
Rusty Russell49668682010-08-05 12:59:10 -06002253static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002254{
Rusty Russell49668682010-08-05 12:59:10 -06002255 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2256 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01002257 const Elf_Sym *src;
Satoru Takeuchi54523ec2012-12-05 12:29:04 +10302258 unsigned int i, nsrc, ndst, strtab_size = 0;
Jan Beulich4a496222009-07-06 14:50:42 +01002259
2260 /* Put symbol section at end of init part of module. */
2261 symsect->sh_flags |= SHF_ALLOC;
2262 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06002263 info->index.sym) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002264 pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002265
Rusty Russell49668682010-08-05 12:59:10 -06002266 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002267 nsrc = symsect->sh_size / sizeof(*src);
Kevin Cernekee70b1e9162011-11-12 19:08:55 -08002268
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302269 /* Compute total space required for the core symbols' strtab. */
Rusty Russell59ef28b2012-10-25 10:49:25 +10302270 for (ndst = i = 0; i < nsrc; i++) {
2271 if (i == 0 ||
2272 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2273 strtab_size += strlen(&info->strtab[src[i].st_name])+1;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302274 ndst++;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002275 }
Rusty Russell59ef28b2012-10-25 10:49:25 +10302276 }
Jan Beulich4a496222009-07-06 14:50:42 +01002277
2278 /* Append room for core symbols at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06002279 info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302280 info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
2281 mod->core_size += strtab_size;
Jan Beulich4a496222009-07-06 14:50:42 +01002282
Jan Beulich554bdfe2009-07-06 14:51:44 +01002283 /* Put string table section at end of init part of module. */
2284 strsect->sh_flags |= SHF_ALLOC;
2285 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06002286 info->index.str) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002287 pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002288}
2289
Rusty Russell811d66a2010-08-05 12:59:12 -06002290static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291{
Jan Beulich4a496222009-07-06 14:50:42 +01002292 unsigned int i, ndst;
2293 const Elf_Sym *src;
2294 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002295 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002296 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Rusty Russelleded41c2010-08-05 12:59:07 -06002298 mod->symtab = (void *)symsec->sh_addr;
2299 mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002300 /* Make sure we get permanent strtab: don't use info->strtab. */
2301 mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 /* Set types up while we still have access to sections. */
2304 for (i = 0; i < mod->num_symtab; i++)
Rusty Russelleded41c2010-08-05 12:59:07 -06002305 mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002306
Rusty Russelld9131882010-08-05 12:59:08 -06002307 mod->core_symtab = dst = mod->module_core + info->symoffs;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302308 mod->core_strtab = s = mod->module_core + info->stroffs;
Jan Beulich4a496222009-07-06 14:50:42 +01002309 src = mod->symtab;
Rusty Russell59ef28b2012-10-25 10:49:25 +10302310 for (ndst = i = 0; i < mod->num_symtab; i++) {
2311 if (i == 0 ||
2312 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2313 dst[ndst] = src[i];
2314 dst[ndst++].st_name = s - mod->core_strtab;
2315 s += strlcpy(s, &mod->strtab[src[i].st_name],
2316 KSYM_NAME_LEN) + 1;
2317 }
Jan Beulich4a496222009-07-06 14:50:42 +01002318 }
2319 mod->core_num_syms = ndst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320}
2321#else
Rusty Russell49668682010-08-05 12:59:10 -06002322static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002323{
2324}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002325
Michał Mirosławabbce902010-09-20 01:58:08 +02002326static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
2328}
2329#endif /* CONFIG_KALLSYMS */
2330
Jason Barone9d376f2009-02-05 11:51:38 -05002331static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002332{
Rusty Russell811d66a2010-08-05 12:59:12 -06002333 if (!debug)
2334 return;
Jason Barone9d376f2009-02-05 11:51:38 -05002335#ifdef CONFIG_DYNAMIC_DEBUG
2336 if (ddebug_add_module(debug, num, debug->modname))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002337 pr_err("dynamic debug error adding module: %s\n",
2338 debug->modname);
Jason Barone9d376f2009-02-05 11:51:38 -05002339#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002340}
Jason Baron346e15b2008-08-12 16:46:19 -04002341
Yehuda Sadehff49d742010-07-03 13:07:35 +10002342static void dynamic_debug_remove(struct _ddebug *debug)
2343{
2344 if (debug)
2345 ddebug_remove_module(debug->modname);
2346}
2347
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002348void * __weak module_alloc(unsigned long size)
2349{
Rusty Russell82fab442012-12-11 09:38:33 +10302350 return vmalloc_exec(size);
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002351}
2352
Rusty Russell3a642e92008-07-22 19:24:28 -05002353static void *module_alloc_update_bounds(unsigned long size)
2354{
2355 void *ret = module_alloc(size);
2356
2357 if (ret) {
Rusty Russell75676502010-06-05 11:17:36 -06002358 mutex_lock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002359 /* Update module bounds. */
2360 if ((unsigned long)ret < module_addr_min)
2361 module_addr_min = (unsigned long)ret;
2362 if ((unsigned long)ret + size > module_addr_max)
2363 module_addr_max = (unsigned long)ret + size;
Rusty Russell75676502010-06-05 11:17:36 -06002364 mutex_unlock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002365 }
2366 return ret;
2367}
2368
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002369#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002370static void kmemleak_load_module(const struct module *mod,
2371 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002372{
2373 unsigned int i;
2374
2375 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002376 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002377
Rusty Russell49668682010-08-05 12:59:10 -06002378 for (i = 1; i < info->hdr->e_shnum; i++) {
Steven Rostedt06c94942013-05-15 20:33:01 +01002379 /* Scan all writable sections that's not executable */
2380 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
2381 !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
2382 (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002383 continue;
2384
Rusty Russell49668682010-08-05 12:59:10 -06002385 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2386 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002387 }
2388}
2389#else
Rusty Russell49668682010-08-05 12:59:10 -06002390static inline void kmemleak_load_module(const struct module *mod,
2391 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002392{
2393}
2394#endif
2395
Rusty Russell106a4ee2012-09-26 10:09:40 +01002396#ifdef CONFIG_MODULE_SIG
Kees Cook34e11692012-10-16 07:31:07 +10302397static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002398{
2399 int err = -ENOKEY;
Kees Cook34e11692012-10-16 07:31:07 +10302400 const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
2401 const void *mod = info->hdr;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002402
Kees Cook34e11692012-10-16 07:31:07 +10302403 if (info->len > markerlen &&
2404 memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
David Howellscaabe242012-10-20 01:19:29 +01002405 /* We truncate the module to discard the signature */
Kees Cook34e11692012-10-16 07:31:07 +10302406 info->len -= markerlen;
2407 err = mod_verify_sig(mod, &info->len);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002408 }
2409
2410 if (!err) {
2411 info->sig_ok = true;
2412 return 0;
2413 }
2414
2415 /* Not having a signature is only an error if we're strict. */
2416 if (err == -ENOKEY && !sig_enforce)
2417 err = 0;
2418
2419 return err;
2420}
2421#else /* !CONFIG_MODULE_SIG */
Kees Cook34e11692012-10-16 07:31:07 +10302422static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002423{
2424 return 0;
2425}
2426#endif /* !CONFIG_MODULE_SIG */
2427
Kees Cook34e11692012-10-16 07:31:07 +10302428/* Sanity checks against invalid binaries, wrong arch, weird elf version. */
2429static int elf_header_check(struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002430{
Kees Cook34e11692012-10-16 07:31:07 +10302431 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002432 return -ENOEXEC;
2433
Kees Cook34e11692012-10-16 07:31:07 +10302434 if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2435 || info->hdr->e_type != ET_REL
2436 || !elf_check_arch(info->hdr)
2437 || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2438 return -ENOEXEC;
2439
2440 if (info->hdr->e_shoff >= info->len
2441 || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2442 info->len - info->hdr->e_shoff))
2443 return -ENOEXEC;
2444
2445 return 0;
2446}
2447
2448/* Sets info->hdr and info->len. */
2449static int copy_module_from_user(const void __user *umod, unsigned long len,
2450 struct load_info *info)
2451{
Kees Cook2e72d512012-10-16 07:32:07 +10302452 int err;
2453
Kees Cook34e11692012-10-16 07:31:07 +10302454 info->len = len;
2455 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002456 return -ENOEXEC;
2457
Kees Cook2e72d512012-10-16 07:32:07 +10302458 err = security_kernel_module_from_file(NULL);
2459 if (err)
2460 return err;
2461
Rusty Russell40dd2562010-08-05 12:59:03 -06002462 /* Suck in entire file: we'll want most of it. */
Kees Cook34e11692012-10-16 07:31:07 +10302463 info->hdr = vmalloc(info->len);
2464 if (!info->hdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06002465 return -ENOMEM;
2466
Kees Cook34e11692012-10-16 07:31:07 +10302467 if (copy_from_user(info->hdr, umod, info->len) != 0) {
2468 vfree(info->hdr);
2469 return -EFAULT;
Rusty Russell40dd2562010-08-05 12:59:03 -06002470 }
2471
Rusty Russell40dd2562010-08-05 12:59:03 -06002472 return 0;
Kees Cook34e11692012-10-16 07:31:07 +10302473}
Rusty Russell40dd2562010-08-05 12:59:03 -06002474
Kees Cook34e11692012-10-16 07:31:07 +10302475/* Sets info->hdr and info->len. */
2476static int copy_module_from_fd(int fd, struct load_info *info)
2477{
Al Viroa2e05782013-08-30 12:41:41 -04002478 struct fd f = fdget(fd);
Kees Cook34e11692012-10-16 07:31:07 +10302479 int err;
2480 struct kstat stat;
2481 loff_t pos;
2482 ssize_t bytes = 0;
2483
Al Viroa2e05782013-08-30 12:41:41 -04002484 if (!f.file)
Kees Cook34e11692012-10-16 07:31:07 +10302485 return -ENOEXEC;
2486
Al Viroa2e05782013-08-30 12:41:41 -04002487 err = security_kernel_module_from_file(f.file);
Kees Cook2e72d512012-10-16 07:32:07 +10302488 if (err)
2489 goto out;
2490
Al Viroa2e05782013-08-30 12:41:41 -04002491 err = vfs_getattr(&f.file->f_path, &stat);
Kees Cook34e11692012-10-16 07:31:07 +10302492 if (err)
2493 goto out;
2494
2495 if (stat.size > INT_MAX) {
2496 err = -EFBIG;
2497 goto out;
2498 }
Sasha Levin52441fa2013-01-03 11:09:53 +10302499
2500 /* Don't hand 0 to vmalloc, it whines. */
2501 if (stat.size == 0) {
2502 err = -EINVAL;
2503 goto out;
2504 }
2505
Kees Cook34e11692012-10-16 07:31:07 +10302506 info->hdr = vmalloc(stat.size);
2507 if (!info->hdr) {
2508 err = -ENOMEM;
2509 goto out;
2510 }
2511
2512 pos = 0;
2513 while (pos < stat.size) {
Al Viroa2e05782013-08-30 12:41:41 -04002514 bytes = kernel_read(f.file, pos, (char *)(info->hdr) + pos,
Kees Cook34e11692012-10-16 07:31:07 +10302515 stat.size - pos);
2516 if (bytes < 0) {
2517 vfree(info->hdr);
2518 err = bytes;
2519 goto out;
2520 }
2521 if (bytes == 0)
2522 break;
2523 pos += bytes;
2524 }
2525 info->len = pos;
2526
2527out:
Al Viroa2e05782013-08-30 12:41:41 -04002528 fdput(f);
Rusty Russell40dd2562010-08-05 12:59:03 -06002529 return err;
2530}
2531
Rusty Russelld9131882010-08-05 12:59:08 -06002532static void free_copy(struct load_info *info)
2533{
Rusty Russelld9131882010-08-05 12:59:08 -06002534 vfree(info->hdr);
2535}
2536
Rusty Russell2f3238a2012-10-22 18:09:41 +10302537static int rewrite_section_headers(struct load_info *info, int flags)
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002538{
2539 unsigned int i;
2540
2541 /* This should always be true, but let's be sure. */
2542 info->sechdrs[0].sh_addr = 0;
2543
2544 for (i = 1; i < info->hdr->e_shnum; i++) {
2545 Elf_Shdr *shdr = &info->sechdrs[i];
2546 if (shdr->sh_type != SHT_NOBITS
2547 && info->len < shdr->sh_offset + shdr->sh_size) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002548 pr_err("Module len %lu truncated\n", info->len);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002549 return -ENOEXEC;
2550 }
2551
2552 /* Mark all sections sh_addr with their address in the
2553 temporary image. */
2554 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2555
2556#ifndef CONFIG_MODULE_UNLOAD
2557 /* Don't load .exit sections */
2558 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2559 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2560#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002561 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002562
2563 /* Track but don't keep modinfo and version sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302564 if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
2565 info->index.vers = 0; /* Pretend no __versions section! */
2566 else
2567 info->index.vers = find_sec(info, "__versions");
Rusty Russell49668682010-08-05 12:59:10 -06002568 info->index.info = find_sec(info, ".modinfo");
Rusty Russelld6df72a2010-08-05 12:59:07 -06002569 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2570 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002571 return 0;
2572}
2573
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002574/*
2575 * Set up our basic convenience variables (pointers to section headers,
2576 * search for module section index etc), and do some basic section
2577 * verification.
2578 *
2579 * Return the temporary module pointer (we'll replace it with the final
2580 * one when we move the module sections around).
2581 */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302582static struct module *setup_load_info(struct load_info *info, int flags)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002583{
2584 unsigned int i;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002585 int err;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002586 struct module *mod;
2587
2588 /* Set up the convenience variables */
2589 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002590 info->secstrings = (void *)info->hdr
2591 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002592
Rusty Russell2f3238a2012-10-22 18:09:41 +10302593 err = rewrite_section_headers(info, flags);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002594 if (err)
2595 return ERR_PTR(err);
2596
2597 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002598 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002599 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2600 info->index.sym = i;
2601 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002602 info->strtab = (char *)info->hdr
2603 + info->sechdrs[info->index.str].sh_offset;
2604 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002605 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002606 }
2607
Rusty Russell49668682010-08-05 12:59:10 -06002608 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002609 if (!info->index.mod) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002610 pr_warn("No module found in object\n");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002611 return ERR_PTR(-ENOEXEC);
2612 }
2613 /* This is temporary: point mod into copy of data. */
2614 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2615
2616 if (info->index.sym == 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002617 pr_warn("%s: module has no symbols (stripped?)\n", mod->name);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002618 return ERR_PTR(-ENOEXEC);
2619 }
2620
Rusty Russell49668682010-08-05 12:59:10 -06002621 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002622
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002623 /* Check module struct version now, before we try to use module. */
2624 if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
2625 return ERR_PTR(-ENOEXEC);
2626
2627 return mod;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002628}
2629
Rusty Russell2f3238a2012-10-22 18:09:41 +10302630static int check_modinfo(struct module *mod, struct load_info *info, int flags)
Rusty Russell40dd2562010-08-05 12:59:03 -06002631{
Rusty Russell49668682010-08-05 12:59:10 -06002632 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002633 int err;
2634
Rusty Russell2f3238a2012-10-22 18:09:41 +10302635 if (flags & MODULE_INIT_IGNORE_VERMAGIC)
2636 modmagic = NULL;
2637
Rusty Russell40dd2562010-08-05 12:59:03 -06002638 /* This is allowed: modprobe --force will invalidate it. */
2639 if (!modmagic) {
2640 err = try_to_force_load(mod, "bad vermagic");
2641 if (err)
2642 return err;
Rusty Russell49668682010-08-05 12:59:10 -06002643 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002644 pr_err("%s: version magic '%s' should be '%s'\n",
Rusty Russell40dd2562010-08-05 12:59:03 -06002645 mod->name, modmagic, vermagic);
2646 return -ENOEXEC;
2647 }
2648
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002649 if (!get_modinfo(info, "intree"))
Rusty Russell373d4d02013-01-21 17:17:39 +10302650 add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002651
Rusty Russell49668682010-08-05 12:59:10 -06002652 if (get_modinfo(info, "staging")) {
Rusty Russell373d4d02013-01-21 17:17:39 +10302653 add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002654 pr_warn("%s: module is from the staging directory, the quality "
2655 "is unknown, you have been warned.\n", mod->name);
Rusty Russell40dd2562010-08-05 12:59:03 -06002656 }
Rusty Russell22e268e2010-08-05 12:59:05 -06002657
2658 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06002659 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06002660
Rusty Russell40dd2562010-08-05 12:59:03 -06002661 return 0;
2662}
2663
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302664static int find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002665{
Rusty Russell49668682010-08-05 12:59:10 -06002666 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002667 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06002668 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002669 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002670 mod->crcs = section_addr(info, "__kcrctab");
2671 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002672 sizeof(*mod->gpl_syms),
2673 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002674 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
2675 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002676 "__ksymtab_gpl_future",
2677 sizeof(*mod->gpl_future_syms),
2678 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002679 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002680
2681#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06002682 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002683 sizeof(*mod->unused_syms),
2684 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002685 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
2686 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002687 sizeof(*mod->unused_gpl_syms),
2688 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002689 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002690#endif
2691#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06002692 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002693 sizeof(*mod->ctors), &mod->num_ctors);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302694 if (!mod->ctors)
2695 mod->ctors = section_objs(info, ".init_array",
2696 sizeof(*mod->ctors), &mod->num_ctors);
2697 else if (find_sec(info, ".init_array")) {
2698 /*
2699 * This shouldn't happen with same compiler and binutils
2700 * building all parts of the module.
2701 */
2702 printk(KERN_WARNING "%s: has both .ctors and .init_array.\n",
2703 mod->name);
2704 return -EINVAL;
2705 }
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002706#endif
2707
2708#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -05002709 mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
2710 sizeof(*mod->tracepoints_ptrs),
2711 &mod->num_tracepoints);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002712#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -04002713#ifdef HAVE_JUMP_LABEL
2714 mod->jump_entries = section_objs(info, "__jump_table",
2715 sizeof(*mod->jump_entries),
2716 &mod->num_jump_entries);
2717#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002718#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06002719 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002720 sizeof(*mod->trace_events),
2721 &mod->num_trace_events);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002722#endif
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002723#ifdef CONFIG_TRACING
2724 mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
2725 sizeof(*mod->trace_bprintk_fmt_start),
2726 &mod->num_trace_bprintk_fmt);
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002727#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002728#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2729 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06002730 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002731 sizeof(*mod->ftrace_callsites),
2732 &mod->num_ftrace_callsites);
2733#endif
Rusty Russell22e268e2010-08-05 12:59:05 -06002734
Rusty Russell811d66a2010-08-05 12:59:12 -06002735 mod->extable = section_objs(info, "__ex_table",
2736 sizeof(*mod->extable), &mod->num_exentries);
2737
Rusty Russell49668682010-08-05 12:59:10 -06002738 if (section_addr(info, "__obsparm"))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002739 pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06002740
2741 info->debug = section_objs(info, "__verbose",
2742 sizeof(*info->debug), &info->num_debug);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10302743
2744 return 0;
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002745}
2746
Rusty Russell49668682010-08-05 12:59:10 -06002747static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002748{
2749 int i;
2750 void *ptr;
2751
2752 /* Do the allocs. */
2753 ptr = module_alloc_update_bounds(mod->core_size);
2754 /*
2755 * The pointer to this block is stored in the module structure
2756 * which is inside the block. Just mark it as not being a
2757 * leak.
2758 */
2759 kmemleak_not_leak(ptr);
2760 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06002761 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002762
2763 memset(ptr, 0, mod->core_size);
2764 mod->module_core = ptr;
2765
Rusty Russell82fab442012-12-11 09:38:33 +10302766 if (mod->init_size) {
2767 ptr = module_alloc_update_bounds(mod->init_size);
2768 /*
2769 * The pointer to this block is stored in the module structure
2770 * which is inside the block. This block doesn't need to be
2771 * scanned as it contains data and code that will be freed
2772 * after the module is initialized.
2773 */
2774 kmemleak_ignore(ptr);
2775 if (!ptr) {
2776 module_free(mod, mod->module_core);
2777 return -ENOMEM;
2778 }
2779 memset(ptr, 0, mod->init_size);
2780 mod->module_init = ptr;
2781 } else
2782 mod->module_init = NULL;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002783
2784 /* Transfer each section which specifies SHF_ALLOC */
Jim Cromie5e124162011-12-06 12:11:31 -07002785 pr_debug("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06002786 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002787 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06002788 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002789
Rusty Russell49668682010-08-05 12:59:10 -06002790 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002791 continue;
2792
Rusty Russell49668682010-08-05 12:59:10 -06002793 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002794 dest = mod->module_init
Rusty Russell49668682010-08-05 12:59:10 -06002795 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002796 else
Rusty Russell49668682010-08-05 12:59:10 -06002797 dest = mod->module_core + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002798
Rusty Russell49668682010-08-05 12:59:10 -06002799 if (shdr->sh_type != SHT_NOBITS)
2800 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002801 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06002802 shdr->sh_addr = (unsigned long)dest;
Jim Cromie5e124162011-12-06 12:11:31 -07002803 pr_debug("\t0x%lx %s\n",
2804 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002805 }
Rusty Russelld9131882010-08-05 12:59:08 -06002806
2807 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002808}
2809
Rusty Russell49668682010-08-05 12:59:10 -06002810static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06002811{
2812 /*
2813 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2814 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2815 * using GPL-only symbols it needs.
2816 */
2817 if (strcmp(mod->name, "ndiswrapper") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302818 add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06002819
2820 /* driverloader was caught wrongly pretending to be under GPL */
2821 if (strcmp(mod->name, "driverloader") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302822 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2823 LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06002824
Matthew Garrettc99af372012-06-22 13:49:31 -04002825 /* lve claims to be GPL but upstream won't provide source */
2826 if (strcmp(mod->name, "lve") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10302827 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2828 LOCKDEP_NOW_UNRELIABLE);
Matthew Garrettc99af372012-06-22 13:49:31 -04002829
Rusty Russell22e268e2010-08-05 12:59:05 -06002830#ifdef CONFIG_MODVERSIONS
2831 if ((mod->num_syms && !mod->crcs)
2832 || (mod->num_gpl_syms && !mod->gpl_crcs)
2833 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2834#ifdef CONFIG_UNUSED_SYMBOLS
2835 || (mod->num_unused_syms && !mod->unused_crcs)
2836 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2837#endif
2838 ) {
2839 return try_to_force_load(mod,
2840 "no versions for exported symbols");
2841 }
2842#endif
2843 return 0;
2844}
2845
2846static void flush_module_icache(const struct module *mod)
2847{
2848 mm_segment_t old_fs;
2849
2850 /* flush the icache in correct context */
2851 old_fs = get_fs();
2852 set_fs(KERNEL_DS);
2853
2854 /*
2855 * Flush the instruction cache, since we've played with text.
2856 * Do it before processing of module parameters, so the module
2857 * can provide parameter accessor functions of its own.
2858 */
2859 if (mod->module_init)
2860 flush_icache_range((unsigned long)mod->module_init,
2861 (unsigned long)mod->module_init
2862 + mod->init_size);
2863 flush_icache_range((unsigned long)mod->module_core,
2864 (unsigned long)mod->module_core + mod->core_size);
2865
2866 set_fs(old_fs);
2867}
2868
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002869int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
2870 Elf_Shdr *sechdrs,
2871 char *secstrings,
2872 struct module *mod)
2873{
2874 return 0;
2875}
2876
Rusty Russell2f3238a2012-10-22 18:09:41 +10302877static struct module *layout_and_allocate(struct load_info *info, int flags)
Rusty Russelld9131882010-08-05 12:59:08 -06002878{
2879 /* Module within temporary copy. */
2880 struct module *mod;
2881 int err;
2882
Rusty Russell2f3238a2012-10-22 18:09:41 +10302883 mod = setup_load_info(info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002884 if (IS_ERR(mod))
2885 return mod;
2886
Rusty Russell2f3238a2012-10-22 18:09:41 +10302887 err = check_modinfo(mod, info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002888 if (err)
2889 return ERR_PTR(err);
2890
2891 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06002892 err = module_frob_arch_sections(info->hdr, info->sechdrs,
2893 info->secstrings, mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002894 if (err < 0)
Rusty Russell8d8022e2013-07-03 10:06:28 +09302895 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06002896
Rusty Russell8d8022e2013-07-03 10:06:28 +09302897 /* We will do a special allocation for per-cpu sections later. */
2898 info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06002899
2900 /* Determine total sizes, and put offsets in sh_entsize. For now
2901 this is done generically; there doesn't appear to be any
2902 special cases for the architectures. */
Rusty Russell49668682010-08-05 12:59:10 -06002903 layout_sections(mod, info);
Rusty Russell49668682010-08-05 12:59:10 -06002904 layout_symtab(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002905
2906 /* Allocate and move to the final place */
Rusty Russell49668682010-08-05 12:59:10 -06002907 err = move_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002908 if (err)
Rusty Russell8d8022e2013-07-03 10:06:28 +09302909 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06002910
2911 /* Module has been copied to its final place now: return it. */
2912 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06002913 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002914 return mod;
Rusty Russelld9131882010-08-05 12:59:08 -06002915}
2916
2917/* mod is no longer valid after this! */
2918static void module_deallocate(struct module *mod, struct load_info *info)
2919{
Rusty Russelld9131882010-08-05 12:59:08 -06002920 percpu_modfree(mod);
2921 module_free(mod, mod->module_init);
2922 module_free(mod, mod->module_core);
2923}
2924
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002925int __weak module_finalize(const Elf_Ehdr *hdr,
2926 const Elf_Shdr *sechdrs,
2927 struct module *me)
2928{
2929 return 0;
2930}
2931
Rusty Russell811d66a2010-08-05 12:59:12 -06002932static int post_relocation(struct module *mod, const struct load_info *info)
2933{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002934 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002935 sort_extable(mod->extable, mod->extable + mod->num_exentries);
2936
2937 /* Copy relocated percpu area over. */
2938 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
2939 info->sechdrs[info->index.pcpu].sh_size);
2940
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002941 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002942 add_kallsyms(mod, info);
2943
2944 /* Arch-specific module finalizing. */
2945 return module_finalize(info->hdr, info->sechdrs, mod);
2946}
2947
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09302948/* Is this module of this name done loading? No locks held. */
2949static bool finished_loading(const char *name)
2950{
2951 struct module *mod;
2952 bool ret;
2953
2954 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09302955 mod = find_module_all(name, strlen(name), true);
Rusty Russell0d21b0e2013-01-12 11:38:44 +10302956 ret = !mod || mod->state == MODULE_STATE_LIVE
2957 || mod->state == MODULE_STATE_GOING;
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09302958 mutex_unlock(&module_mutex);
2959
2960 return ret;
2961}
2962
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002963/* Call module constructors. */
2964static void do_mod_ctors(struct module *mod)
2965{
2966#ifdef CONFIG_CONSTRUCTORS
2967 unsigned long i;
2968
2969 for (i = 0; i < mod->num_ctors; i++)
2970 mod->ctors[i]();
2971#endif
2972}
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974/* This is where the real work happens */
Kees Cook34e11692012-10-16 07:31:07 +10302975static int do_init_module(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 int ret = 0;
2978
Tejun Heo774a1222013-01-15 18:52:51 -08002979 /*
2980 * We want to find out whether @mod uses async during init. Clear
2981 * PF_USED_ASYNC. async_schedule*() will set it.
2982 */
2983 current->flags &= ~PF_USED_ASYNC;
2984
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002985 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 /* Start the module */
2987 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07002988 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 if (ret < 0) {
2990 /* Init routine failed: abort. Try to protect us from
2991 buggy refcounters. */
2992 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002993 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002994 module_put(mod);
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02002995 blocking_notifier_call_chain(&module_notify_list,
2996 MODULE_STATE_GOING, mod);
Rusty Russellaf49d922007-10-16 23:26:27 -07002997 free_module(mod);
Rusty Russell6f139092012-09-28 14:31:03 +09302998 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 return ret;
3000 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003001 if (ret > 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003002 pr_warn("%s: '%s'->init suspiciously returned %d, it should "
3003 "follow 0/-E convention\n"
3004 "%s: loading module anyway...\n",
3005 __func__, mod->name, ret, __func__);
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003006 dump_stack();
3007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
Rusty Russell6f139092012-09-28 14:31:03 +09303009 /* Now it's a first class citizen! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 mod->state = MODULE_STATE_LIVE;
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08003011 blocking_notifier_call_chain(&module_notify_list,
3012 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07003013
Tejun Heo774a1222013-01-15 18:52:51 -08003014 /*
3015 * We need to finish all async code before the module init sequence
3016 * is done. This has potential to deadlock. For example, a newly
3017 * detected block device can trigger request_module() of the
3018 * default iosched from async probing task. Once userland helper
3019 * reaches here, async_synchronize_full() will wait on the async
3020 * task waiting on request_module() and deadlock.
3021 *
3022 * This deadlock is avoided by perfomring async_synchronize_full()
3023 * iff module init queued any async jobs. This isn't a full
3024 * solution as it will deadlock the same if module loading from
3025 * async jobs nests more than once; however, due to the various
3026 * constraints, this hack seems to be the best option for now.
3027 * Please refer to the following thread for details.
3028 *
3029 * http://thread.gmane.org/gmane.linux.kernel/1420814
3030 */
3031 if (current->flags & PF_USED_ASYNC)
3032 async_synchronize_full();
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07003033
Rusty Russell6c5db222008-03-10 11:43:52 -07003034 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 /* Drop initial reference. */
3036 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06003037 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01003038#ifdef CONFIG_KALLSYMS
3039 mod->num_symtab = mod->core_num_syms;
3040 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01003041 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01003042#endif
Jan Glauber01526ed2011-05-19 16:55:26 -06003043 unset_module_init_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 module_free(mod, mod->module_init);
3045 mod->module_init = NULL;
3046 mod->init_size = 0;
Jan Glauber4d103802011-05-19 16:55:25 -06003047 mod->init_ro_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08003049 mutex_unlock(&module_mutex);
Rusty Russell6f139092012-09-28 14:31:03 +09303050 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
3052 return 0;
3053}
3054
Kees Cook34e11692012-10-16 07:31:07 +10303055static int may_init_module(void)
3056{
3057 if (!capable(CAP_SYS_MODULE) || modules_disabled)
3058 return -EPERM;
3059
3060 return 0;
3061}
3062
Rusty Russella3535c72013-01-21 17:18:59 +10303063/*
3064 * We try to place it in the list now to make sure it's unique before
3065 * we dedicate too many resources. In particular, temporary percpu
3066 * memory exhaustion.
3067 */
3068static int add_unformed_module(struct module *mod)
3069{
3070 int err;
3071 struct module *old;
3072
3073 mod->state = MODULE_STATE_UNFORMED;
3074
3075again:
3076 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303077 old = find_module_all(mod->name, strlen(mod->name), true);
3078 if (old != NULL) {
Rusty Russella3535c72013-01-21 17:18:59 +10303079 if (old->state == MODULE_STATE_COMING
3080 || old->state == MODULE_STATE_UNFORMED) {
3081 /* Wait in case it fails to load. */
3082 mutex_unlock(&module_mutex);
3083 err = wait_event_interruptible(module_wq,
3084 finished_loading(mod->name));
3085 if (err)
3086 goto out_unlocked;
3087 goto again;
3088 }
3089 err = -EEXIST;
3090 goto out;
3091 }
3092 list_add_rcu(&mod->list, &modules);
3093 err = 0;
3094
3095out:
3096 mutex_unlock(&module_mutex);
3097out_unlocked:
3098 return err;
3099}
3100
3101static int complete_formation(struct module *mod, struct load_info *info)
3102{
3103 int err;
3104
3105 mutex_lock(&module_mutex);
3106
3107 /* Find duplicate symbols (must be called under lock). */
3108 err = verify_export_symbols(mod);
3109 if (err < 0)
3110 goto out;
3111
3112 /* This relies on module_mutex for list integrity. */
3113 module_bug_finalize(info->hdr, info->sechdrs, mod);
3114
Rusty Russell49822232014-05-14 10:54:19 +09303115 /* Set RO and NX regions for core */
3116 set_section_ro_nx(mod->module_core,
3117 mod->core_text_size,
3118 mod->core_ro_size,
3119 mod->core_size);
3120
3121 /* Set RO and NX regions for init */
3122 set_section_ro_nx(mod->module_init,
3123 mod->init_text_size,
3124 mod->init_ro_size,
3125 mod->init_size);
3126
Rusty Russella3535c72013-01-21 17:18:59 +10303127 /* Mark state as coming so strong_try_module_get() ignores us,
3128 * but kallsyms etc. can see us. */
3129 mod->state = MODULE_STATE_COMING;
Rusty Russell49822232014-05-14 10:54:19 +09303130 mutex_unlock(&module_mutex);
3131
3132 blocking_notifier_call_chain(&module_notify_list,
3133 MODULE_STATE_COMING, mod);
3134 return 0;
Rusty Russella3535c72013-01-21 17:18:59 +10303135
3136out:
3137 mutex_unlock(&module_mutex);
3138 return err;
3139}
3140
Rusty Russell54041d82013-07-02 15:35:12 +09303141static int unknown_module_param_cb(char *param, char *val, const char *modname)
3142{
3143 /* Check for magic 'dyndbg' arg */
3144 int ret = ddebug_dyndbg_module_param_cb(param, val, modname);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003145 if (ret != 0)
3146 pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
Rusty Russell54041d82013-07-02 15:35:12 +09303147 return 0;
3148}
3149
Kees Cook34e11692012-10-16 07:31:07 +10303150/* Allocate and load the module: note that size of section 0 is always
3151 zero, and we rely on this for optional sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303152static int load_module(struct load_info *info, const char __user *uargs,
3153 int flags)
Kees Cook34e11692012-10-16 07:31:07 +10303154{
Rusty Russella3535c72013-01-21 17:18:59 +10303155 struct module *mod;
Kees Cook34e11692012-10-16 07:31:07 +10303156 long err;
Rusty Russell51e158c2014-04-28 11:34:33 +09303157 char *after_dashes;
Kees Cook34e11692012-10-16 07:31:07 +10303158
3159 err = module_sig_check(info);
3160 if (err)
3161 goto free_copy;
3162
3163 err = elf_header_check(info);
3164 if (err)
3165 goto free_copy;
3166
3167 /* Figure out module layout, and allocate all the memory. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303168 mod = layout_and_allocate(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303169 if (IS_ERR(mod)) {
3170 err = PTR_ERR(mod);
3171 goto free_copy;
3172 }
3173
Rusty Russella3535c72013-01-21 17:18:59 +10303174 /* Reserve our place in the list. */
3175 err = add_unformed_module(mod);
3176 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303177 goto free_module;
Rusty Russell1fb93412013-01-12 13:27:34 +10303178
Kees Cook34e11692012-10-16 07:31:07 +10303179#ifdef CONFIG_MODULE_SIG
3180 mod->sig_ok = info->sig_ok;
Rusty Russell64748a22013-01-21 17:03:02 +10303181 if (!mod->sig_ok) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003182 pr_notice_once("%s: module verification failed: signature "
3183 "and/or required key missing - tainting "
3184 "kernel\n", mod->name);
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10303185 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
Rusty Russell64748a22013-01-21 17:03:02 +10303186 }
Kees Cook34e11692012-10-16 07:31:07 +10303187#endif
3188
Rusty Russell8d8022e2013-07-03 10:06:28 +09303189 /* To avoid stressing percpu allocator, do this once we're unique. */
Rusty Russell9eb76d72013-07-03 10:06:29 +09303190 err = percpu_modalloc(mod, info);
Rusty Russell8d8022e2013-07-03 10:06:28 +09303191 if (err)
3192 goto unlink_mod;
3193
Kees Cook34e11692012-10-16 07:31:07 +10303194 /* Now module is in final location, initialize linked lists, etc. */
3195 err = module_unload_init(mod);
3196 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303197 goto unlink_mod;
Kees Cook34e11692012-10-16 07:31:07 +10303198
3199 /* Now we've got everything in the final locations, we can
3200 * find optional sections. */
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303201 err = find_module_sections(mod, info);
3202 if (err)
3203 goto free_unload;
Kees Cook34e11692012-10-16 07:31:07 +10303204
3205 err = check_module_license_and_versions(mod);
3206 if (err)
3207 goto free_unload;
3208
3209 /* Set up MODINFO_ATTR fields */
3210 setup_modinfo(mod, info);
3211
3212 /* Fix up syms, so that st_value is a pointer to location. */
3213 err = simplify_symbols(mod, info);
3214 if (err < 0)
3215 goto free_modinfo;
3216
3217 err = apply_relocations(mod, info);
3218 if (err < 0)
3219 goto free_modinfo;
3220
3221 err = post_relocation(mod, info);
3222 if (err < 0)
3223 goto free_modinfo;
3224
3225 flush_module_icache(mod);
3226
3227 /* Now copy in args */
3228 mod->args = strndup_user(uargs, ~0UL >> 1);
3229 if (IS_ERR(mod->args)) {
3230 err = PTR_ERR(mod->args);
3231 goto free_arch_cleanup;
3232 }
3233
Kees Cook34e11692012-10-16 07:31:07 +10303234 dynamic_debug_setup(info->debug, info->num_debug);
3235
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04003236 /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
3237 ftrace_module_init(mod);
3238
Rusty Russella3535c72013-01-21 17:18:59 +10303239 /* Finally it's fully formed, ready to start executing. */
3240 err = complete_formation(mod, info);
3241 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303242 goto ddebug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303243
Kees Cook34e11692012-10-16 07:31:07 +10303244 /* Module is ready to execute: parsing args may do that. */
Rusty Russell51e158c2014-04-28 11:34:33 +09303245 after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
3246 -32768, 32767, unknown_module_param_cb);
3247 if (IS_ERR(after_dashes)) {
3248 err = PTR_ERR(after_dashes);
Rusty Russell1fb93412013-01-12 13:27:34 +10303249 goto bug_cleanup;
Rusty Russell51e158c2014-04-28 11:34:33 +09303250 } else if (after_dashes) {
3251 pr_warn("%s: parameters '%s' after `--' ignored\n",
3252 mod->name, after_dashes);
3253 }
Kees Cook34e11692012-10-16 07:31:07 +10303254
3255 /* Link in to syfs. */
3256 err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
3257 if (err < 0)
Rusty Russell1fb93412013-01-12 13:27:34 +10303258 goto bug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303259
3260 /* Get rid of temporary copy. */
3261 free_copy(info);
3262
3263 /* Done! */
3264 trace_module_load(mod);
3265
3266 return do_init_module(mod);
3267
Rusty Russell1fb93412013-01-12 13:27:34 +10303268 bug_cleanup:
3269 /* module_bug_cleanup needs module_mutex protection */
Kees Cook34e11692012-10-16 07:31:07 +10303270 mutex_lock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303271 module_bug_cleanup(mod);
Linus Torvaldsee61abb2013-01-20 20:22:58 -08003272 mutex_unlock(&module_mutex);
Andy Lutomirskiff7e0052014-08-16 04:13:37 +09303273
3274 /* we can't deallocate the module until we clear memory protection */
3275 unset_module_init_ro_nx(mod);
3276 unset_module_core_ro_nx(mod);
3277
Rusty Russella3535c72013-01-21 17:18:59 +10303278 ddebug_cleanup:
Rusty Russell1fb93412013-01-12 13:27:34 +10303279 dynamic_debug_remove(info->debug);
Kees Cook34e11692012-10-16 07:31:07 +10303280 synchronize_sched();
3281 kfree(mod->args);
3282 free_arch_cleanup:
3283 module_arch_cleanup(mod);
3284 free_modinfo:
3285 free_modinfo(mod);
3286 free_unload:
3287 module_unload_free(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303288 unlink_mod:
3289 mutex_lock(&module_mutex);
3290 /* Unlink carefully: kallsyms could be walking list. */
3291 list_del_rcu(&mod->list);
3292 wake_up_all(&module_wq);
Masami Hiramatsu4f487952014-11-10 09:26:29 +10303293 /* Wait for RCU synchronizing before releasing mod->list. */
3294 synchronize_rcu();
Rusty Russell1fb93412013-01-12 13:27:34 +10303295 mutex_unlock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303296 free_module:
3297 module_deallocate(mod, info);
3298 free_copy:
3299 free_copy(info);
3300 return err;
3301}
3302
3303SYSCALL_DEFINE3(init_module, void __user *, umod,
3304 unsigned long, len, const char __user *, uargs)
3305{
3306 int err;
3307 struct load_info info = { };
3308
3309 err = may_init_module();
3310 if (err)
3311 return err;
3312
3313 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3314 umod, len, uargs);
3315
3316 err = copy_module_from_user(umod, len, &info);
3317 if (err)
3318 return err;
3319
Rusty Russell2f3238a2012-10-22 18:09:41 +10303320 return load_module(&info, uargs, 0);
Kees Cook34e11692012-10-16 07:31:07 +10303321}
3322
Rusty Russell2f3238a2012-10-22 18:09:41 +10303323SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
Kees Cook34e11692012-10-16 07:31:07 +10303324{
3325 int err;
3326 struct load_info info = { };
3327
3328 err = may_init_module();
3329 if (err)
3330 return err;
3331
Rusty Russell2f3238a2012-10-22 18:09:41 +10303332 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3333
3334 if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
3335 |MODULE_INIT_IGNORE_VERMAGIC))
3336 return -EINVAL;
Kees Cook34e11692012-10-16 07:31:07 +10303337
3338 err = copy_module_from_fd(fd, &info);
3339 if (err)
3340 return err;
3341
Rusty Russell2f3238a2012-10-22 18:09:41 +10303342 return load_module(&info, uargs, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303343}
3344
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345static inline int within(unsigned long addr, void *start, unsigned long size)
3346{
3347 return ((void *)addr >= start && (void *)addr < start + size);
3348}
3349
3350#ifdef CONFIG_KALLSYMS
3351/*
3352 * This ignores the intensely annoying "mapping symbols" found
3353 * in ARM ELF files: $a, $t and $d.
3354 */
3355static inline int is_arm_mapping_symbol(const char *str)
3356{
Russell King2e3a10a2014-07-27 07:29:01 +09303357 if (str[0] == '.' && str[1] == 'L')
3358 return true;
Kyle McMartin6c34f1f2014-09-16 22:37:18 +01003359 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 && (str[2] == '\0' || str[2] == '.');
3361}
3362
3363static const char *get_ksymbol(struct module *mod,
3364 unsigned long addr,
3365 unsigned long *size,
3366 unsigned long *offset)
3367{
3368 unsigned int i, best = 0;
3369 unsigned long nextval;
3370
3371 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003372 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003374 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 nextval = (unsigned long)mod->module_core+mod->core_text_size;
3376
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003377 /* Scan for closest preceding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07003378 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 for (i = 1; i < mod->num_symtab; i++) {
3380 if (mod->symtab[i].st_shndx == SHN_UNDEF)
3381 continue;
3382
3383 /* We ignore unnamed symbols: they're uninformative
3384 * and inserted at a whim. */
3385 if (mod->symtab[i].st_value <= addr
3386 && mod->symtab[i].st_value > mod->symtab[best].st_value
3387 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3388 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3389 best = i;
3390 if (mod->symtab[i].st_value > addr
3391 && mod->symtab[i].st_value < nextval
3392 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3393 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3394 nextval = mod->symtab[i].st_value;
3395 }
3396
3397 if (!best)
3398 return NULL;
3399
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003400 if (size)
3401 *size = nextval - mod->symtab[best].st_value;
3402 if (offset)
3403 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 return mod->strtab + mod->symtab[best].st_name;
3405}
3406
Rusty Russell6dd06c92008-01-29 17:13:22 -05003407/* For kallsyms to ask for address resolution. NULL means not found. Careful
3408 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003409const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05003410 unsigned long *size,
3411 unsigned long *offset,
3412 char **modname,
3413 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414{
3415 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003416 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Rusty Russellcb2a5202008-01-14 00:55:03 -08003418 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003419 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303420 if (mod->state == MODULE_STATE_UNFORMED)
3421 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303422 if (within_module(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07003423 if (modname)
3424 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003425 ret = get_ksymbol(mod, addr, size, offset);
3426 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 }
3428 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05003429 /* Make a copy in here where it's safe */
3430 if (ret) {
3431 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
3432 ret = namebuf;
3433 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003434 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003435 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436}
3437
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003438int lookup_module_symbol_name(unsigned long addr, char *symname)
3439{
3440 struct module *mod;
3441
Rusty Russellcb2a5202008-01-14 00:55:03 -08003442 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003443 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303444 if (mod->state == MODULE_STATE_UNFORMED)
3445 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303446 if (within_module(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003447 const char *sym;
3448
3449 sym = get_ksymbol(mod, addr, NULL, NULL);
3450 if (!sym)
3451 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07003452 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003453 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003454 return 0;
3455 }
3456 }
3457out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003458 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003459 return -ERANGE;
3460}
3461
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003462int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
3463 unsigned long *offset, char *modname, char *name)
3464{
3465 struct module *mod;
3466
Rusty Russellcb2a5202008-01-14 00:55:03 -08003467 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003468 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303469 if (mod->state == MODULE_STATE_UNFORMED)
3470 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303471 if (within_module(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003472 const char *sym;
3473
3474 sym = get_ksymbol(mod, addr, size, offset);
3475 if (!sym)
3476 goto out;
3477 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07003478 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003479 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07003480 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003481 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003482 return 0;
3483 }
3484 }
3485out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003486 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003487 return -ERANGE;
3488}
3489
Alexey Dobriyanea078902007-05-08 00:28:39 -07003490int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
3491 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492{
3493 struct module *mod;
3494
Rusty Russellcb2a5202008-01-14 00:55:03 -08003495 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003496 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303497 if (mod->state == MODULE_STATE_UNFORMED)
3498 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 if (symnum < mod->num_symtab) {
3500 *value = mod->symtab[symnum].st_value;
3501 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07003502 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07003503 KSYM_NAME_LEN);
3504 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06003505 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003506 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 }
3509 symnum -= mod->num_symtab;
3510 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003511 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003512 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513}
3514
3515static unsigned long mod_find_symname(struct module *mod, const char *name)
3516{
3517 unsigned int i;
3518
3519 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08003520 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
3521 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 return mod->symtab[i].st_value;
3523 return 0;
3524}
3525
3526/* Look for this name: can be of form module:name. */
3527unsigned long module_kallsyms_lookup_name(const char *name)
3528{
3529 struct module *mod;
3530 char *colon;
3531 unsigned long ret = 0;
3532
3533 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08003534 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 if ((colon = strchr(name, ':')) != NULL) {
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303536 if ((mod = find_module_all(name, colon - name, false)) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 ret = mod_find_symname(mod, colon+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 } else {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303539 list_for_each_entry_rcu(mod, &modules, list) {
3540 if (mod->state == MODULE_STATE_UNFORMED)
3541 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 if ((ret = mod_find_symname(mod, name)) != 0)
3543 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003546 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 return ret;
3548}
Anders Kaseorg75a66612008-12-05 19:03:58 -05003549
3550int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
3551 struct module *, unsigned long),
3552 void *data)
3553{
3554 struct module *mod;
3555 unsigned int i;
3556 int ret;
3557
3558 list_for_each_entry(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303559 if (mod->state == MODULE_STATE_UNFORMED)
3560 continue;
Anders Kaseorg75a66612008-12-05 19:03:58 -05003561 for (i = 0; i < mod->num_symtab; i++) {
3562 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
3563 mod, mod->symtab[i].st_value);
3564 if (ret != 0)
3565 return ret;
3566 }
3567 }
3568 return 0;
3569}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570#endif /* CONFIG_KALLSYMS */
3571
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003572static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003573{
3574 int bx = 0;
3575
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303576 BUG_ON(mod->state == MODULE_STATE_UNFORMED);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003577 if (mod->taints ||
3578 mod->state == MODULE_STATE_GOING ||
3579 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003580 buf[bx++] = '(';
Kay Sieverscca3e702012-01-13 09:32:15 +10303581 bx += module_flags_taint(mod, buf + bx);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003582 /* Show a - for module-is-being-unloaded */
3583 if (mod->state == MODULE_STATE_GOING)
3584 buf[bx++] = '-';
3585 /* Show a + for module-is-being-loaded */
3586 if (mod->state == MODULE_STATE_COMING)
3587 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003588 buf[bx++] = ')';
3589 }
3590 buf[bx] = '\0';
3591
3592 return buf;
3593}
3594
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003595#ifdef CONFIG_PROC_FS
3596/* Called by the /proc file system to return a list of modules. */
3597static void *m_start(struct seq_file *m, loff_t *pos)
3598{
3599 mutex_lock(&module_mutex);
3600 return seq_list_start(&modules, *pos);
3601}
3602
3603static void *m_next(struct seq_file *m, void *p, loff_t *pos)
3604{
3605 return seq_list_next(p, &modules, pos);
3606}
3607
3608static void m_stop(struct seq_file *m, void *p)
3609{
3610 mutex_unlock(&module_mutex);
3611}
3612
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613static int m_show(struct seq_file *m, void *p)
3614{
3615 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003616 char buf[8];
3617
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303618 /* We always ignore unformed modules. */
3619 if (mod->state == MODULE_STATE_UNFORMED)
3620 return 0;
3621
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05003622 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 mod->name, mod->init_size + mod->core_size);
3624 print_unload_info(m, mod);
3625
3626 /* Informative for users. */
3627 seq_printf(m, " %s",
3628 mod->state == MODULE_STATE_GOING ? "Unloading":
3629 mod->state == MODULE_STATE_COMING ? "Loading":
3630 "Live");
3631 /* Used by oprofile and other similar tools. */
Kees Cook9f36e2c2011-03-22 16:34:22 -07003632 seq_printf(m, " 0x%pK", mod->module_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003634 /* Taints info */
3635 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003636 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 seq_printf(m, "\n");
3639 return 0;
3640}
3641
3642/* Format: modulename size refcount deps address
3643
3644 Where refcount is a number or -, and deps is a comma-separated list
3645 of depends or -.
3646*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003647static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 .start = m_start,
3649 .next = m_next,
3650 .stop = m_stop,
3651 .show = m_show
3652};
3653
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003654static int modules_open(struct inode *inode, struct file *file)
3655{
3656 return seq_open(file, &modules_op);
3657}
3658
3659static const struct file_operations proc_modules_operations = {
3660 .open = modules_open,
3661 .read = seq_read,
3662 .llseek = seq_lseek,
3663 .release = seq_release,
3664};
3665
3666static int __init proc_modules_init(void)
3667{
3668 proc_create("modules", 0, NULL, &proc_modules_operations);
3669 return 0;
3670}
3671module_init(proc_modules_init);
3672#endif
3673
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674/* Given an address, look for it in the module exception tables. */
3675const struct exception_table_entry *search_module_extables(unsigned long addr)
3676{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 const struct exception_table_entry *e = NULL;
3678 struct module *mod;
3679
Rusty Russell24da1cb2007-07-15 23:41:46 -07003680 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003681 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303682 if (mod->state == MODULE_STATE_UNFORMED)
3683 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 if (mod->num_exentries == 0)
3685 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 e = search_extable(mod->extable,
3688 mod->extable + mod->num_exentries - 1,
3689 addr);
3690 if (e)
3691 break;
3692 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07003693 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
3695 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07003696 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 return e;
3698}
3699
Ingo Molnar4d435f92006-07-03 00:24:24 -07003700/*
Rusty Russelle6104992009-03-31 13:05:31 -06003701 * is_module_address - is this address inside a module?
3702 * @addr: the address to check.
3703 *
3704 * See is_module_text_address() if you simply want to see if the address
3705 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07003706 */
Rusty Russelle6104992009-03-31 13:05:31 -06003707bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07003708{
Rusty Russelle6104992009-03-31 13:05:31 -06003709 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003710
Rusty Russell24da1cb2007-07-15 23:41:46 -07003711 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06003712 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07003713 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07003714
Rusty Russelle6104992009-03-31 13:05:31 -06003715 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003716}
3717
Rusty Russelle6104992009-03-31 13:05:31 -06003718/*
3719 * __module_address - get the module which contains an address.
3720 * @addr: the address.
3721 *
3722 * Must be called with preempt disabled or module mutex held so that
3723 * module doesn't get freed during this.
3724 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07003725struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726{
3727 struct module *mod;
3728
Rusty Russell3a642e92008-07-22 19:24:28 -05003729 if (addr < module_addr_min || addr > module_addr_max)
3730 return NULL;
3731
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303732 list_for_each_entry_rcu(mod, &modules, list) {
3733 if (mod->state == MODULE_STATE_UNFORMED)
3734 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303735 if (within_module(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 return mod;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 return NULL;
3739}
Tim Abbottc6b37802008-12-05 19:03:59 -05003740EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
Rusty Russelle6104992009-03-31 13:05:31 -06003742/*
3743 * is_module_text_address - is this address inside module code?
3744 * @addr: the address to check.
3745 *
3746 * See is_module_address() if you simply want to see if the address is
3747 * anywhere in a module. See kernel_text_address() for testing if an
3748 * address corresponds to kernel or module code.
3749 */
3750bool is_module_text_address(unsigned long addr)
3751{
3752 bool ret;
3753
3754 preempt_disable();
3755 ret = __module_text_address(addr) != NULL;
3756 preempt_enable();
3757
3758 return ret;
3759}
3760
3761/*
3762 * __module_text_address - get the module whose code contains an address.
3763 * @addr: the address.
3764 *
3765 * Must be called with preempt disabled or module mutex held so that
3766 * module doesn't get freed during this.
3767 */
3768struct module *__module_text_address(unsigned long addr)
3769{
3770 struct module *mod = __module_address(addr);
3771 if (mod) {
3772 /* Make sure it's within the text section. */
3773 if (!within(addr, mod->module_init, mod->init_text_size)
3774 && !within(addr, mod->module_core, mod->core_text_size))
3775 mod = NULL;
3776 }
3777 return mod;
3778}
Tim Abbottc6b37802008-12-05 19:03:59 -05003779EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06003780
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781/* Don't grab lock, we're oopsing. */
3782void print_modules(void)
3783{
3784 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07003785 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Linus Torvaldsb2311252009-06-16 11:07:14 -07003787 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02003788 /* Most callers should already have preempt disabled, but make sure */
3789 preempt_disable();
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303790 list_for_each_entry_rcu(mod, &modules, list) {
3791 if (mod->state == MODULE_STATE_UNFORMED)
3792 continue;
Jiri Slaby27bba4d2014-02-03 11:13:13 +10303793 pr_cont(" %s%s", mod->name, module_flags(mod, buf));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303794 }
Andi Kleend72b3752008-08-30 10:09:00 +02003795 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003796 if (last_unloaded_module[0])
Jiri Slaby27bba4d2014-02-03 11:13:13 +10303797 pr_cont(" [last unloaded: %s]", last_unloaded_module);
3798 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799}
3800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003802/* Generate the signature for all relevant module structures here.
3803 * If these change, we don't want to try to parse the module. */
3804void module_layout(struct module *mod,
3805 struct modversion_info *ver,
3806 struct kernel_param *kp,
3807 struct kernel_symbol *ks,
Mathieu Desnoyers65498642011-01-26 17:26:22 -05003808 struct tracepoint * const *tp)
Rusty Russell8c8ef422009-03-31 13:05:34 -06003809{
3810}
3811EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812#endif