blob: 1395ca382fb51ffac1728a7716645799417d743b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/seq_file.h>
33#include <linux/syscalls.h>
34#include <linux/fcntl.h>
35#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080036#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/cpu.h>
38#include <linux/moduleparam.h>
39#include <linux/errno.h>
40#include <linux/err.h>
41#include <linux/vermagic.h>
42#include <linux/notifier.h>
Al Virof6a57032006-10-18 01:47:25 -040043#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/stop_machine.h>
45#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070046#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080047#include <linux/mutex.h>
Andi Kleend72b3752008-08-30 10:09:00 +020048#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/cacheflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070051#include <asm/mmu_context.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020052#include <linux/license.h>
Christoph Lameter6d762392008-02-08 04:18:42 -080053#include <asm/sections.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040054#include <linux/tracepoint.h>
Steven Rostedt90d595f2008-08-14 15:45:09 -040055#include <linux/ftrace.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080056#include <linux/async.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090057#include <linux/percpu.h>
Catalin Marinas4f2294b2009-06-11 13:23:20 +010058#include <linux/kmemleak.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040059#include <linux/jump_label.h>
matthieu castet84e1c6b2010-11-16 22:35:16 +010060#include <linux/pfn.h>
Alessio Igor Bogani403ed272011-04-20 11:10:52 +020061#include <linux/bsearch.h>
David Howells1d0059f2012-09-26 10:09:50 +010062#include <linux/fips.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 = {
138 .set = param_set_bool_enable_only,
139 .get = param_get_bool,
140};
141#define param_check_bool_enable_only param_check_bool
142
143module_param(sig_enforce, bool_enable_only, 0644);
144#endif /* !CONFIG_MODULE_SIG_FORCE */
145#endif /* CONFIG_MODULE_SIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Stephen Rothwell19e45292009-04-14 17:27:18 +1000147/* Block module loading/unloading? */
148int modules_disabled = 0;
Dave Young02608be2012-02-01 10:33:14 +0800149core_param(nomodule, modules_disabled, bint, 0);
Stephen Rothwell19e45292009-04-14 17:27:18 +1000150
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500151/* Waiting for a module to finish initializing? */
152static DECLARE_WAIT_QUEUE_HEAD(module_wq);
153
Alan Sterne041c682006-03-27 01:16:30 -0800154static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Rusty Russell75676502010-06-05 11:17:36 -0600156/* Bounds of module allocation, for speeding __module_address.
157 * Protected by module_mutex. */
Rusty Russell3a642e92008-07-22 19:24:28 -0500158static unsigned long module_addr_min = -1UL, module_addr_max = 0;
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160int register_module_notifier(struct notifier_block * nb)
161{
Alan Sterne041c682006-03-27 01:16:30 -0800162 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164EXPORT_SYMBOL(register_module_notifier);
165
166int unregister_module_notifier(struct notifier_block * nb)
167{
Alan Sterne041c682006-03-27 01:16:30 -0800168 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170EXPORT_SYMBOL(unregister_module_notifier);
171
Rusty Russelleded41c2010-08-05 12:59:07 -0600172struct load_info {
173 Elf_Ehdr *hdr;
174 unsigned long len;
175 Elf_Shdr *sechdrs;
Rusty Russell6526c532010-08-05 12:59:10 -0600176 char *secstrings, *strtab;
Rusty Russelld9131882010-08-05 12:59:08 -0600177 unsigned long symoffs, stroffs;
Rusty Russell811d66a2010-08-05 12:59:12 -0600178 struct _ddebug *debug;
179 unsigned int num_debug;
Rusty Russell106a4ee2012-09-26 10:09:40 +0100180 bool sig_ok;
Rusty Russelleded41c2010-08-05 12:59:07 -0600181 struct {
182 unsigned int sym, str, mod, vers, info, pcpu;
183 } index;
184};
185
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800186/* We require a truly strong try_module_get(): 0 means failure due to
187 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static inline int strong_try_module_get(struct module *mod)
189{
190 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500191 return -EBUSY;
192 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500194 else
195 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700198static inline void add_taint_module(struct module *mod, unsigned flag)
199{
200 add_taint(flag);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700201 mod->taints |= (1U << flag);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700202}
203
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200204/*
205 * A thread that wants to hold a reference to a module only while it
206 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 */
208void __module_put_and_exit(struct module *mod, long code)
209{
210 module_put(mod);
211 do_exit(code);
212}
213EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/* Find a module section: 0 means not found. */
Rusty Russell49668682010-08-05 12:59:10 -0600216static unsigned int find_sec(const struct load_info *info, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 unsigned int i;
219
Rusty Russell49668682010-08-05 12:59:10 -0600220 for (i = 1; i < info->hdr->e_shnum; i++) {
221 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /* Alloc bit cleared means "ignore it." */
Rusty Russell49668682010-08-05 12:59:10 -0600223 if ((shdr->sh_flags & SHF_ALLOC)
224 && strcmp(info->secstrings + shdr->sh_name, name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return i;
Rusty Russell49668682010-08-05 12:59:10 -0600226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return 0;
228}
229
Rusty Russell5e458cc2008-10-22 10:00:13 -0500230/* Find a module section, or NULL. */
Rusty Russell49668682010-08-05 12:59:10 -0600231static void *section_addr(const struct load_info *info, const char *name)
Rusty Russell5e458cc2008-10-22 10:00:13 -0500232{
233 /* Section 0 has sh_addr 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600234 return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500235}
236
237/* Find a module section, or NULL. Fill in number of "objects" in section. */
Rusty Russell49668682010-08-05 12:59:10 -0600238static void *section_objs(const struct load_info *info,
Rusty Russell5e458cc2008-10-22 10:00:13 -0500239 const char *name,
240 size_t object_size,
241 unsigned int *num)
242{
Rusty Russell49668682010-08-05 12:59:10 -0600243 unsigned int sec = find_sec(info, name);
Rusty Russell5e458cc2008-10-22 10:00:13 -0500244
245 /* Section 0 has sh_addr 0 and sh_size 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600246 *num = info->sechdrs[sec].sh_size / object_size;
247 return (void *)info->sechdrs[sec].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/* Provided by the linker */
251extern const struct kernel_symbol __start___ksymtab[];
252extern const struct kernel_symbol __stop___ksymtab[];
253extern const struct kernel_symbol __start___ksymtab_gpl[];
254extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800255extern const struct kernel_symbol __start___ksymtab_gpl_future[];
256extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257extern const unsigned long __start___kcrctab[];
258extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800259extern const unsigned long __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500260#ifdef CONFIG_UNUSED_SYMBOLS
261extern const struct kernel_symbol __start___ksymtab_unused[];
262extern const struct kernel_symbol __stop___ksymtab_unused[];
263extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
264extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700265extern const unsigned long __start___kcrctab_unused[];
266extern const unsigned long __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500267#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269#ifndef CONFIG_MODVERSIONS
270#define symversion(base, idx) NULL
271#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800272#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#endif
274
Rusty Russelldafd0942008-07-22 19:24:25 -0500275static bool each_symbol_in_section(const struct symsearch *arr,
276 unsigned int arrsize,
277 struct module *owner,
278 bool (*fn)(const struct symsearch *syms,
279 struct module *owner,
Rusty Russellde4d8d52011-04-19 21:49:58 +0200280 void *data),
Rusty Russelldafd0942008-07-22 19:24:25 -0500281 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100282{
Rusty Russellde4d8d52011-04-19 21:49:58 +0200283 unsigned int j;
Rusty Russelldafd0942008-07-22 19:24:25 -0500284
285 for (j = 0; j < arrsize; j++) {
Rusty Russellde4d8d52011-04-19 21:49:58 +0200286 if (fn(&arr[j], owner, data))
287 return true;
Rusty Russelldafd0942008-07-22 19:24:25 -0500288 }
289
290 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100291}
292
Rusty Russelldafd0942008-07-22 19:24:25 -0500293/* Returns true as soon as fn returns true, otherwise false. */
Rusty Russellde4d8d52011-04-19 21:49:58 +0200294bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
295 struct module *owner,
296 void *data),
297 void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700298{
Rusty Russelldafd0942008-07-22 19:24:25 -0500299 struct module *mod;
Linus Torvalds44032e62010-08-05 12:59:05 -0600300 static const struct symsearch arr[] = {
Rusty Russelldafd0942008-07-22 19:24:25 -0500301 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
302 NOT_GPL_ONLY, false },
303 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
304 __start___kcrctab_gpl,
305 GPL_ONLY, false },
306 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
307 __start___kcrctab_gpl_future,
308 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500309#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500310 { __start___ksymtab_unused, __stop___ksymtab_unused,
311 __start___kcrctab_unused,
312 NOT_GPL_ONLY, true },
313 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
314 __start___kcrctab_unused_gpl,
315 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500316#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500317 };
318
319 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
320 return true;
321
Andi Kleend72b3752008-08-30 10:09:00 +0200322 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500323 struct symsearch arr[] = {
324 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
325 NOT_GPL_ONLY, false },
326 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
327 mod->gpl_crcs,
328 GPL_ONLY, false },
329 { mod->gpl_future_syms,
330 mod->gpl_future_syms + mod->num_gpl_future_syms,
331 mod->gpl_future_crcs,
332 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500333#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500334 { mod->unused_syms,
335 mod->unused_syms + mod->num_unused_syms,
336 mod->unused_crcs,
337 NOT_GPL_ONLY, true },
338 { mod->unused_gpl_syms,
339 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
340 mod->unused_gpl_crcs,
341 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500342#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500343 };
344
345 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
346 return true;
347 }
348 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700349}
Rusty Russellde4d8d52011-04-19 21:49:58 +0200350EXPORT_SYMBOL_GPL(each_symbol_section);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700351
Rusty Russelldafd0942008-07-22 19:24:25 -0500352struct find_symbol_arg {
353 /* Input */
354 const char *name;
355 bool gplok;
356 bool warn;
357
358 /* Output */
359 struct module *owner;
360 const unsigned long *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500361 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500362};
363
Rusty Russellde4d8d52011-04-19 21:49:58 +0200364static bool check_symbol(const struct symsearch *syms,
365 struct module *owner,
366 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500367{
Rusty Russelldafd0942008-07-22 19:24:25 -0500368 struct find_symbol_arg *fsa = data;
369
Rusty Russelldafd0942008-07-22 19:24:25 -0500370 if (!fsa->gplok) {
371 if (syms->licence == GPL_ONLY)
372 return false;
373 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
374 printk(KERN_WARNING "Symbol %s is being used "
375 "by a non-GPL module, which will not "
376 "be allowed in the future\n", fsa->name);
377 printk(KERN_WARNING "Please see the file "
378 "Documentation/feature-removal-schedule.txt "
379 "in the kernel source tree for more details.\n");
380 }
381 }
382
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500383#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500384 if (syms->unused && fsa->warn) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500385 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
Rusty Russelldafd0942008-07-22 19:24:25 -0500386 "however this module is using it.\n", fsa->name);
Rusty Russellad9546c2008-05-01 21:14:59 -0500387 printk(KERN_WARNING
388 "This symbol will go away in the future.\n");
389 printk(KERN_WARNING
390 "Please evalute if this is the right api to use and if "
391 "it really is, submit a report the linux kernel "
392 "mailinglist together with submitting your code for "
393 "inclusion.\n");
394 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500395#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500396
397 fsa->owner = owner;
398 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500399 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500400 return true;
401}
402
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200403static int cmp_name(const void *va, const void *vb)
404{
405 const char *a;
406 const struct kernel_symbol *b;
407 a = va; b = vb;
408 return strcmp(a, b->name);
409}
410
Rusty Russellde4d8d52011-04-19 21:49:58 +0200411static bool find_symbol_in_section(const struct symsearch *syms,
412 struct module *owner,
413 void *data)
414{
415 struct find_symbol_arg *fsa = data;
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200416 struct kernel_symbol *sym;
Rusty Russellde4d8d52011-04-19 21:49:58 +0200417
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200418 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
419 sizeof(struct kernel_symbol), cmp_name);
420
421 if (sym != NULL && check_symbol(syms, owner, sym - syms->start, data))
422 return true;
423
Rusty Russellde4d8d52011-04-19 21:49:58 +0200424 return false;
425}
426
Tim Abbott414fd312008-12-05 19:03:56 -0500427/* Find a symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600428 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500429const struct kernel_symbol *find_symbol(const char *name,
430 struct module **owner,
431 const unsigned long **crc,
432 bool gplok,
433 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Rusty Russelldafd0942008-07-22 19:24:25 -0500435 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Rusty Russelldafd0942008-07-22 19:24:25 -0500437 fsa.name = name;
438 fsa.gplok = gplok;
439 fsa.warn = warn;
440
Rusty Russellde4d8d52011-04-19 21:49:58 +0200441 if (each_symbol_section(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500442 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500443 *owner = fsa.owner;
444 if (crc)
445 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500446 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500448
Jim Cromie5e124162011-12-06 12:11:31 -0700449 pr_debug("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500450 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
Tim Abbottc6b37802008-12-05 19:03:59 -0500452EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/* Search for module by name: must hold module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500455struct module *find_module(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 struct module *mod;
458
459 list_for_each_entry(mod, &modules, list) {
460 if (strcmp(mod->name, name) == 0)
461 return mod;
462 }
463 return NULL;
464}
Tim Abbottc6b37802008-12-05 19:03:59 -0500465EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900468
Tejun Heo259354d2010-03-10 18:56:10 +0900469static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900470{
Tejun Heo259354d2010-03-10 18:56:10 +0900471 return mod->percpu;
472}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900473
Tejun Heo259354d2010-03-10 18:56:10 +0900474static int percpu_modalloc(struct module *mod,
475 unsigned long size, unsigned long align)
476{
Tejun Heofbf59bc2009-02-20 16:29:08 +0900477 if (align > PAGE_SIZE) {
478 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
Tejun Heo259354d2010-03-10 18:56:10 +0900479 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900480 align = PAGE_SIZE;
481 }
482
Tejun Heo259354d2010-03-10 18:56:10 +0900483 mod->percpu = __alloc_reserved_percpu(size, align);
484 if (!mod->percpu) {
Tejun Heofbf59bc2009-02-20 16:29:08 +0900485 printk(KERN_WARNING
Rusty Russelld9131882010-08-05 12:59:08 -0600486 "%s: Could not allocate %lu bytes percpu data\n",
487 mod->name, size);
Tejun Heo259354d2010-03-10 18:56:10 +0900488 return -ENOMEM;
489 }
490 mod->percpu_size = size;
491 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900492}
493
Tejun Heo259354d2010-03-10 18:56:10 +0900494static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900495{
Tejun Heo259354d2010-03-10 18:56:10 +0900496 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900497}
498
Rusty Russell49668682010-08-05 12:59:10 -0600499static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900500{
Rusty Russell49668682010-08-05 12:59:10 -0600501 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900502}
503
Tejun Heo259354d2010-03-10 18:56:10 +0900504static void percpu_modcopy(struct module *mod,
505 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900506{
507 int cpu;
508
509 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900510 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900511}
512
Tejun Heo10fad5e2010-03-10 18:57:54 +0900513/**
514 * is_module_percpu_address - test whether address is from module static percpu
515 * @addr: address to test
516 *
517 * Test whether @addr belongs to module static percpu area.
518 *
519 * RETURNS:
520 * %true if @addr is from module static percpu area
521 */
522bool is_module_percpu_address(unsigned long addr)
523{
524 struct module *mod;
525 unsigned int cpu;
526
527 preempt_disable();
528
529 list_for_each_entry_rcu(mod, &modules, list) {
530 if (!mod->percpu_size)
531 continue;
532 for_each_possible_cpu(cpu) {
533 void *start = per_cpu_ptr(mod->percpu, cpu);
534
535 if ((void *)addr >= start &&
536 (void *)addr < start + mod->percpu_size) {
537 preempt_enable();
538 return true;
539 }
540 }
541 }
542
543 preempt_enable();
544 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700545}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900548
Tejun Heo259354d2010-03-10 18:56:10 +0900549static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 return NULL;
552}
Tejun Heo259354d2010-03-10 18:56:10 +0900553static inline int percpu_modalloc(struct module *mod,
554 unsigned long size, unsigned long align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Tejun Heo259354d2010-03-10 18:56:10 +0900556 return -ENOMEM;
557}
558static inline void percpu_modfree(struct module *mod)
559{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
Rusty Russell49668682010-08-05 12:59:10 -0600561static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 return 0;
564}
Tejun Heo259354d2010-03-10 18:56:10 +0900565static inline void percpu_modcopy(struct module *mod,
566 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 /* pcpusec should be 0, and size of that section should be 0. */
569 BUG_ON(size != 0);
570}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900571bool is_module_percpu_address(unsigned long addr)
572{
573 return false;
574}
Tejun Heo6b588c12009-02-20 16:29:07 +0900575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576#endif /* CONFIG_SMP */
577
Matt Domschc988d2b2005-06-23 22:05:15 -0700578#define MODINFO_ATTR(field) \
579static void setup_modinfo_##field(struct module *mod, const char *s) \
580{ \
581 mod->field = kstrdup(s, GFP_KERNEL); \
582} \
583static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
Kay Sievers4befb022011-07-24 22:06:04 +0930584 struct module_kobject *mk, char *buffer) \
Matt Domschc988d2b2005-06-23 22:05:15 -0700585{ \
Kay Sievers4befb022011-07-24 22:06:04 +0930586 return sprintf(buffer, "%s\n", mk->mod->field); \
Matt Domschc988d2b2005-06-23 22:05:15 -0700587} \
588static int modinfo_##field##_exists(struct module *mod) \
589{ \
590 return mod->field != NULL; \
591} \
592static void free_modinfo_##field(struct module *mod) \
593{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700594 kfree(mod->field); \
595 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700596} \
597static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900598 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700599 .show = show_modinfo_##field, \
600 .setup = setup_modinfo_##field, \
601 .test = modinfo_##field##_exists, \
602 .free = free_modinfo_##field, \
603};
604
605MODINFO_ATTR(version);
606MODINFO_ATTR(srcversion);
607
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100608static char last_unloaded_module[MODULE_NAME_LEN+1];
609
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800610#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400611
612EXPORT_TRACEPOINT_SYMBOL(module_get);
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600615static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600617 mod->refptr = alloc_percpu(struct module_ref);
618 if (!mod->refptr)
619 return -ENOMEM;
620
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700621 INIT_LIST_HEAD(&mod->source_list);
622 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* Hold reference count during initialization. */
Nick Piggin5fbfb182010-04-01 19:09:40 +1100625 __this_cpu_write(mod->refptr->incs, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /* Backwards compatibility macros put refcount during init. */
627 mod->waiter = current;
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600628
629 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632/* Does a already use b? */
633static int already_uses(struct module *a, struct module *b)
634{
635 struct module_use *use;
636
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700637 list_for_each_entry(use, &b->source_list, source_list) {
638 if (use->source == a) {
Jim Cromie5e124162011-12-06 12:11:31 -0700639 pr_debug("%s uses %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return 1;
641 }
642 }
Jim Cromie5e124162011-12-06 12:11:31 -0700643 pr_debug("%s does not use %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return 0;
645}
646
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700647/*
648 * Module a uses b
649 * - we add 'a' as a "source", 'b' as a "target" of module use
650 * - the module_use is added to the list of 'b' sources (so
651 * 'b' can walk the list to see who sourced them), and of 'a'
652 * targets (so 'a' can see what modules it targets).
653 */
654static int add_module_usage(struct module *a, struct module *b)
655{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700656 struct module_use *use;
657
Jim Cromie5e124162011-12-06 12:11:31 -0700658 pr_debug("Allocating new usage for %s.\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700659 use = kmalloc(sizeof(*use), GFP_ATOMIC);
660 if (!use) {
661 printk(KERN_WARNING "%s: out of memory loading\n", a->name);
662 return -ENOMEM;
663 }
664
665 use->source = a;
666 use->target = b;
667 list_add(&use->source_list, &b->source_list);
668 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700669 return 0;
670}
671
Rusty Russell75676502010-06-05 11:17:36 -0600672/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600673int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600675 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100676
Rusty Russell9bea7f22010-06-05 11:17:37 -0600677 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700678 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700679
Rusty Russell9bea7f22010-06-05 11:17:37 -0600680 /* If module isn't available, we fail. */
681 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500682 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600683 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700685 err = add_module_usage(a, b);
686 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600688 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600692EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694/* Clear the unload stuff of the module. */
695static void module_unload_free(struct module *mod)
696{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700697 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Rusty Russell75676502010-06-05 11:17:36 -0600699 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700700 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
701 struct module *i = use->target;
Jim Cromie5e124162011-12-06 12:11:31 -0700702 pr_debug("%s unusing %s\n", mod->name, i->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700703 module_put(i);
704 list_del(&use->source_list);
705 list_del(&use->target_list);
706 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
Rusty Russell75676502010-06-05 11:17:36 -0600708 mutex_unlock(&module_mutex);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600709
710 free_percpu(mod->refptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800714static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 int ret = (flags & O_TRUNC);
717 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800718 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return ret;
720}
721#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800722static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 return 0;
725}
726#endif /* CONFIG_MODULE_FORCE_UNLOAD */
727
728struct stopref
729{
730 struct module *mod;
731 int flags;
732 int *forced;
733};
734
735/* Whole machine is stopped with interrupts off when this runs. */
736static int __try_stop_module(void *_sref)
737{
738 struct stopref *sref = _sref;
739
Rusty Russellda39ba52008-07-22 19:24:25 -0500740 /* If it's not unused, quit unless we're forcing. */
741 if (module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800742 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return -EWOULDBLOCK;
744 }
745
746 /* Mark it as dying. */
747 sref->mod->state = MODULE_STATE_GOING;
748 return 0;
749}
750
751static int try_stop_module(struct module *mod, int flags, int *forced)
752{
Rusty Russellda39ba52008-07-22 19:24:25 -0500753 if (flags & O_NONBLOCK) {
754 struct stopref sref = { mod, flags, forced };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500756 return stop_machine(__try_stop_module, &sref, NULL);
Rusty Russellda39ba52008-07-22 19:24:25 -0500757 } else {
758 /* We don't need to stop the machine for this. */
759 mod->state = MODULE_STATE_GOING;
760 synchronize_sched();
761 return 0;
762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Eric Dumazetbd77c042012-01-13 09:32:14 +1030765unsigned long module_refcount(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Eric Dumazetbd77c042012-01-13 09:32:14 +1030767 unsigned long incs = 0, decs = 0;
Eric Dumazet720eba32009-02-03 13:31:36 +1030768 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Eric Dumazet720eba32009-02-03 13:31:36 +1030770 for_each_possible_cpu(cpu)
Nick Piggin5fbfb182010-04-01 19:09:40 +1100771 decs += per_cpu_ptr(mod->refptr, cpu)->decs;
772 /*
773 * ensure the incs are added up after the decs.
774 * module_put ensures incs are visible before decs with smp_wmb.
775 *
776 * This 2-count scheme avoids the situation where the refcount
777 * for CPU0 is read, then CPU0 increments the module refcount,
778 * then CPU1 drops that refcount, then the refcount for CPU1 is
779 * read. We would record a decrement but not its corresponding
780 * increment so we would see a low count (disaster).
781 *
782 * Rare situation? But module_refcount can be preempted, and we
783 * might be tallying up 4096+ CPUs. So it is not impossible.
784 */
785 smp_rmb();
786 for_each_possible_cpu(cpu)
787 incs += per_cpu_ptr(mod->refptr, cpu)->incs;
788 return incs - decs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790EXPORT_SYMBOL(module_refcount);
791
792/* This exists whether we can unload or not */
793static void free_module(struct module *mod);
794
795static void wait_for_zero_refcount(struct module *mod)
796{
Matthew Wilcoxa6550202008-02-26 10:47:18 -0500797 /* Since we might sleep for some time, release the mutex first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800798 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 for (;;) {
Jim Cromie5e124162011-12-06 12:11:31 -0700800 pr_debug("Looking at refcount...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 set_current_state(TASK_UNINTERRUPTIBLE);
802 if (module_refcount(mod) == 0)
803 break;
804 schedule();
805 }
806 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800807 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100810SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
811 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800814 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 int ret, forced = 0;
816
Kees Cook3d433212009-04-02 15:49:29 -0700817 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800818 return -EPERM;
819
820 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
821 return -EFAULT;
822 name[MODULE_NAME_LEN-1] = '\0';
823
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200824 if (mutex_lock_interruptible(&module_mutex) != 0)
825 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 mod = find_module(name);
828 if (!mod) {
829 ret = -ENOENT;
830 goto out;
831 }
832
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700833 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 /* Other modules depend on us: get rid of them first. */
835 ret = -EWOULDBLOCK;
836 goto out;
837 }
838
839 /* Doing init or already dying? */
840 if (mod->state != MODULE_STATE_LIVE) {
841 /* FIXME: if (force), slam module count and wake up
842 waiter --RR */
Jim Cromie5e124162011-12-06 12:11:31 -0700843 pr_debug("%s already dying\n", mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 ret = -EBUSY;
845 goto out;
846 }
847
848 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700849 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800850 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (!forced) {
852 /* This module can't be removed */
853 ret = -EBUSY;
854 goto out;
855 }
856 }
857
858 /* Set this up before setting mod->state */
859 mod->waiter = current;
860
861 /* Stop the machine so refcounts can't move and disable module. */
862 ret = try_stop_module(mod, flags, &forced);
863 if (ret != 0)
864 goto out;
865
866 /* Never wait if forced. */
867 if (!forced && module_refcount(mod) != 0)
868 wait_for_zero_refcount(mod);
869
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200870 mutex_unlock(&module_mutex);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300871 /* Final destruction now no one is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200872 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200874 blocking_notifier_call_chain(&module_notify_list,
875 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800876 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600877
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100878 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500879 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Rusty Russell75676502010-06-05 11:17:36 -0600881 free_module(mod);
882 return 0;
883out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800884 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return ret;
886}
887
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800888static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 struct module_use *use;
891 int printed_something = 0;
892
Eric Dumazetbd77c042012-01-13 09:32:14 +1030893 seq_printf(m, " %lu ", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 /* Always include a trailing , so userspace can differentiate
896 between this and the old multi-field proc format. */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700897 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700899 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (mod->init != NULL && mod->exit == NULL) {
903 printed_something = 1;
904 seq_printf(m, "[permanent],");
905 }
906
907 if (!printed_something)
908 seq_printf(m, "-");
909}
910
911void __symbol_put(const char *symbol)
912{
913 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Rusty Russell24da1cb2007-07-15 23:41:46 -0700915 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500916 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 BUG();
918 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700919 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921EXPORT_SYMBOL(__symbol_put);
922
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930923/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924void symbol_put_addr(void *addr)
925{
Trent Piepho5e376612006-05-15 09:44:06 -0700926 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930927 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930929 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700930 return;
931
Rusty Russella6e6abd2009-03-31 13:05:31 -0600932 /* module_text_address is safe here: we're supposed to have reference
933 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930934 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600935 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700936 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938EXPORT_SYMBOL_GPL(symbol_put_addr);
939
940static ssize_t show_refcnt(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +0930941 struct module_kobject *mk, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Eric Dumazetbd77c042012-01-13 09:32:14 +1030943 return sprintf(buffer, "%lu\n", module_refcount(mk->mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Kay Sieverscca3e702012-01-13 09:32:15 +1030946static struct module_attribute modinfo_refcnt =
947 __ATTR(refcnt, 0444, show_refcnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Steven Rostedtd53799b2012-03-26 12:50:52 +1030949void __module_get(struct module *module)
950{
951 if (module) {
952 preempt_disable();
953 __this_cpu_inc(module->refptr->incs);
954 trace_module_get(module, _RET_IP_);
955 preempt_enable();
956 }
957}
958EXPORT_SYMBOL(__module_get);
959
960bool try_module_get(struct module *module)
961{
962 bool ret = true;
963
964 if (module) {
965 preempt_disable();
966
967 if (likely(module_is_live(module))) {
968 __this_cpu_inc(module->refptr->incs);
969 trace_module_get(module, _RET_IP_);
970 } else
971 ret = false;
972
973 preempt_enable();
974 }
975 return ret;
976}
977EXPORT_SYMBOL(try_module_get);
978
Al Virof6a57032006-10-18 01:47:25 -0400979void module_put(struct module *module)
980{
981 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900982 preempt_disable();
Nick Piggin5fbfb182010-04-01 19:09:40 +1100983 smp_wmb(); /* see comment in module_refcount */
984 __this_cpu_inc(module->refptr->decs);
Christoph Lametere1783a22010-01-05 15:34:50 +0900985
Li Zefanae832d12010-03-24 10:57:43 +0800986 trace_module_put(module, _RET_IP_);
Al Virof6a57032006-10-18 01:47:25 -0400987 /* Maybe they're waiting for us to drop reference? */
988 if (unlikely(!module_is_live(module)))
989 wake_up_process(module->waiter);
Christoph Lametere1783a22010-01-05 15:34:50 +0900990 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400991 }
992}
993EXPORT_SYMBOL(module_put);
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800996static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 /* We don't know the usage count, or what modules are using. */
999 seq_printf(m, " - -");
1000}
1001
1002static inline void module_unload_free(struct module *mod)
1003{
1004}
1005
Rusty Russell9bea7f22010-06-05 11:17:37 -06001006int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Rusty Russell9bea7f22010-06-05 11:17:37 -06001008 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
Rusty Russell9bea7f22010-06-05 11:17:37 -06001010EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001012static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001014 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016#endif /* CONFIG_MODULE_UNLOAD */
1017
Kevin Winchester53999bf2012-01-15 19:32:55 -04001018static size_t module_flags_taint(struct module *mod, char *buf)
1019{
1020 size_t l = 0;
1021
1022 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
1023 buf[l++] = 'P';
1024 if (mod->taints & (1 << TAINT_OOT_MODULE))
1025 buf[l++] = 'O';
1026 if (mod->taints & (1 << TAINT_FORCED_MODULE))
1027 buf[l++] = 'F';
1028 if (mod->taints & (1 << TAINT_CRAP))
1029 buf[l++] = 'C';
1030 /*
1031 * TAINT_FORCED_RMMOD: could be added.
1032 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
1033 * apply to modules.
1034 */
1035 return l;
1036}
1037
Kay Sievers1f717402006-11-24 12:15:25 +01001038static ssize_t show_initstate(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301039 struct module_kobject *mk, char *buffer)
Kay Sievers1f717402006-11-24 12:15:25 +01001040{
1041 const char *state = "unknown";
1042
Kay Sievers4befb022011-07-24 22:06:04 +09301043 switch (mk->mod->state) {
Kay Sievers1f717402006-11-24 12:15:25 +01001044 case MODULE_STATE_LIVE:
1045 state = "live";
1046 break;
1047 case MODULE_STATE_COMING:
1048 state = "coming";
1049 break;
1050 case MODULE_STATE_GOING:
1051 state = "going";
1052 break;
1053 }
1054 return sprintf(buffer, "%s\n", state);
1055}
1056
Kay Sieverscca3e702012-01-13 09:32:15 +10301057static struct module_attribute modinfo_initstate =
1058 __ATTR(initstate, 0444, show_initstate, NULL);
Kay Sievers1f717402006-11-24 12:15:25 +01001059
Kay Sievers88bfa322011-07-24 22:06:04 +09301060static ssize_t store_uevent(struct module_attribute *mattr,
1061 struct module_kobject *mk,
1062 const char *buffer, size_t count)
1063{
1064 enum kobject_action action;
1065
1066 if (kobject_action_type(buffer, count, &action) == 0)
1067 kobject_uevent(&mk->kobj, action);
1068 return count;
1069}
1070
Kay Sieverscca3e702012-01-13 09:32:15 +10301071struct module_attribute module_uevent =
1072 __ATTR(uevent, 0200, NULL, store_uevent);
1073
1074static ssize_t show_coresize(struct module_attribute *mattr,
1075 struct module_kobject *mk, char *buffer)
1076{
1077 return sprintf(buffer, "%u\n", mk->mod->core_size);
1078}
1079
1080static struct module_attribute modinfo_coresize =
1081 __ATTR(coresize, 0444, show_coresize, NULL);
1082
1083static ssize_t show_initsize(struct module_attribute *mattr,
1084 struct module_kobject *mk, char *buffer)
1085{
1086 return sprintf(buffer, "%u\n", mk->mod->init_size);
1087}
1088
1089static struct module_attribute modinfo_initsize =
1090 __ATTR(initsize, 0444, show_initsize, NULL);
1091
1092static ssize_t show_taint(struct module_attribute *mattr,
1093 struct module_kobject *mk, char *buffer)
1094{
1095 size_t l;
1096
1097 l = module_flags_taint(mk->mod, buffer);
1098 buffer[l++] = '\n';
1099 return l;
1100}
1101
1102static struct module_attribute modinfo_taint =
1103 __ATTR(taint, 0444, show_taint, NULL);
Kay Sievers88bfa322011-07-24 22:06:04 +09301104
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001105static struct module_attribute *modinfo_attrs[] = {
Kay Sieverscca3e702012-01-13 09:32:15 +10301106 &module_uevent,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001107 &modinfo_version,
1108 &modinfo_srcversion,
Kay Sieverscca3e702012-01-13 09:32:15 +10301109 &modinfo_initstate,
1110 &modinfo_coresize,
1111 &modinfo_initsize,
1112 &modinfo_taint,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001113#ifdef CONFIG_MODULE_UNLOAD
Kay Sieverscca3e702012-01-13 09:32:15 +10301114 &modinfo_refcnt,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001115#endif
1116 NULL,
1117};
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119static const char vermagic[] = VERMAGIC_STRING;
1120
Rusty Russellc6e665c2009-03-31 13:05:33 -06001121static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -07001122{
1123#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -07001124 if (!test_taint(TAINT_FORCED_MODULE))
Rusty Russellc6e665c2009-03-31 13:05:33 -06001125 printk(KERN_WARNING "%s: %s: kernel tainted.\n",
1126 mod->name, reason);
Linus Torvalds826e4502008-05-04 17:04:16 -07001127 add_taint_module(mod, TAINT_FORCED_MODULE);
1128 return 0;
1129#else
1130 return -ENOEXEC;
1131#endif
1132}
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -06001135/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
1136static unsigned long maybe_relocated(unsigned long crc,
1137 const struct module *crc_owner)
1138{
1139#ifdef ARCH_RELOCATES_KCRCTAB
1140 if (crc_owner == NULL)
1141 return crc - (unsigned long)reloc_start;
1142#endif
1143 return crc;
1144}
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146static int check_version(Elf_Shdr *sechdrs,
1147 unsigned int versindex,
1148 const char *symname,
1149 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001150 const unsigned long *crc,
1151 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
1153 unsigned int i, num_versions;
1154 struct modversion_info *versions;
1155
1156 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1157 if (!crc)
1158 return 1;
1159
Rusty Russella5dd6972008-05-09 16:24:21 +10001160 /* No versions at all? modprobe --force does this. */
1161 if (versindex == 0)
1162 return try_to_force_load(mod, symname) == 0;
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 versions = (void *) sechdrs[versindex].sh_addr;
1165 num_versions = sechdrs[versindex].sh_size
1166 / sizeof(struct modversion_info);
1167
1168 for (i = 0; i < num_versions; i++) {
1169 if (strcmp(versions[i].name, symname) != 0)
1170 continue;
1171
Rusty Russelld4703ae2009-12-15 16:28:32 -06001172 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return 1;
Jim Cromie5e124162011-12-06 12:11:31 -07001174 pr_debug("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -06001175 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001176 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001178
Rusty Russella5dd6972008-05-09 16:24:21 +10001179 printk(KERN_WARNING "%s: no symbol version for %s\n",
1180 mod->name, symname);
1181 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -07001182
1183bad_version:
1184 printk("%s: disagrees about version of symbol %s\n",
1185 mod->name, symname);
1186 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
1189static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1190 unsigned int versindex,
1191 struct module *mod)
1192{
1193 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Rusty Russell75676502010-06-05 11:17:36 -06001195 /* Since this should be found in kernel (which can't be removed),
1196 * no locking is necessary. */
Mike Frysinger6560dc12009-07-23 23:42:08 +09301197 if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL,
1198 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 BUG();
Rusty Russelld4703ae2009-12-15 16:28:32 -06001200 return check_version(sechdrs, versindex, "module_layout", mod, crc,
1201 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
Rusty Russell91e37a72008-05-09 16:25:28 +10001204/* First part is kernel version, which we ignore if module has crcs. */
1205static inline int same_magic(const char *amagic, const char *bmagic,
1206 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
Rusty Russell91e37a72008-05-09 16:25:28 +10001208 if (has_crcs) {
1209 amagic += strcspn(amagic, " ");
1210 bmagic += strcspn(bmagic, " ");
1211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return strcmp(amagic, bmagic) == 0;
1213}
1214#else
1215static inline int check_version(Elf_Shdr *sechdrs,
1216 unsigned int versindex,
1217 const char *symname,
1218 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001219 const unsigned long *crc,
1220 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 return 1;
1223}
1224
1225static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1226 unsigned int versindex,
1227 struct module *mod)
1228{
1229 return 1;
1230}
1231
Rusty Russell91e37a72008-05-09 16:25:28 +10001232static inline int same_magic(const char *amagic, const char *bmagic,
1233 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
1235 return strcmp(amagic, bmagic) == 0;
1236}
1237#endif /* CONFIG_MODVERSIONS */
1238
Rusty Russell75676502010-06-05 11:17:36 -06001239/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001240static const struct kernel_symbol *resolve_symbol(struct module *mod,
1241 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001242 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001243 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001246 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 const unsigned long *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001248 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Rusty Russell75676502010-06-05 11:17:36 -06001250 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001251 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001252 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001253 if (!sym)
1254 goto unlock;
1255
Rusty Russell49668682010-08-05 12:59:10 -06001256 if (!check_version(info->sechdrs, info->index.vers, name, mod, crc,
1257 owner)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001258 sym = ERR_PTR(-EINVAL);
1259 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001261
1262 err = ref_module(mod, owner);
1263 if (err) {
1264 sym = ERR_PTR(err);
1265 goto getname;
1266 }
1267
1268getname:
1269 /* We must make copy under the lock if we failed to get ref. */
1270 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1271unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001272 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001273 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Rusty Russell49668682010-08-05 12:59:10 -06001276static const struct kernel_symbol *
1277resolve_symbol_wait(struct module *mod,
1278 const struct load_info *info,
1279 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001280{
1281 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001282 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001283
1284 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001285 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1286 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001287 30 * HZ) <= 0) {
1288 printk(KERN_WARNING "%s: gave up waiting for init of module %s.\n",
Rusty Russell49668682010-08-05 12:59:10 -06001289 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001290 }
1291 return ksym;
1292}
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294/*
1295 * /sys/module/foo/sections stuff
1296 * J. Corbet <corbet@lwn.net>
1297 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001298#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001299
Rusty Russell8f6d0372010-08-05 12:59:09 -06001300#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001301static inline bool sect_empty(const Elf_Shdr *sect)
1302{
1303 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1304}
1305
Rusty Russella58730c2008-03-13 09:03:44 +00001306struct module_sect_attr
1307{
1308 struct module_attribute mattr;
1309 char *name;
1310 unsigned long address;
1311};
1312
1313struct module_sect_attrs
1314{
1315 struct attribute_group grp;
1316 unsigned int nsections;
1317 struct module_sect_attr attrs[0];
1318};
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320static ssize_t module_sect_show(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301321 struct module_kobject *mk, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
1323 struct module_sect_attr *sattr =
1324 container_of(mattr, struct module_sect_attr, mattr);
Kees Cook9f36e2c2011-03-22 16:34:22 -07001325 return sprintf(buf, "0x%pK\n", (void *)sattr->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001328static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1329{
Rusty Russella58730c2008-03-13 09:03:44 +00001330 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001331
1332 for (section = 0; section < sect_attrs->nsections; section++)
1333 kfree(sect_attrs->attrs[section].name);
1334 kfree(sect_attrs);
1335}
1336
Rusty Russell8f6d0372010-08-05 12:59:09 -06001337static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 unsigned int nloaded = 0, i, size[2];
1340 struct module_sect_attrs *sect_attrs;
1341 struct module_sect_attr *sattr;
1342 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001345 for (i = 0; i < info->hdr->e_shnum; i++)
1346 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 nloaded++;
1348 size[0] = ALIGN(sizeof(*sect_attrs)
1349 + nloaded * sizeof(sect_attrs->attrs[0]),
1350 sizeof(sect_attrs->grp.attrs[0]));
1351 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001352 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1353 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return;
1355
1356 /* Setup section attributes. */
1357 sect_attrs->grp.name = "sections";
1358 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1359
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001360 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 sattr = &sect_attrs->attrs[0];
1362 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001363 for (i = 0; i < info->hdr->e_shnum; i++) {
1364 Elf_Shdr *sec = &info->sechdrs[i];
1365 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001366 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001367 sattr->address = sec->sh_addr;
1368 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001369 GFP_KERNEL);
1370 if (sattr->name == NULL)
1371 goto out;
1372 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001373 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 sattr->mattr.show = module_sect_show;
1375 sattr->mattr.store = NULL;
1376 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 sattr->mattr.attr.mode = S_IRUGO;
1378 *(gattr++) = &(sattr++)->mattr.attr;
1379 }
1380 *gattr = NULL;
1381
1382 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1383 goto out;
1384
1385 mod->sect_attrs = sect_attrs;
1386 return;
1387 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001388 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
1391static void remove_sect_attrs(struct module *mod)
1392{
1393 if (mod->sect_attrs) {
1394 sysfs_remove_group(&mod->mkobj.kobj,
1395 &mod->sect_attrs->grp);
1396 /* We are positive that no one is using any sect attrs
1397 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001398 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 mod->sect_attrs = NULL;
1400 }
1401}
1402
Roland McGrath6d760132007-10-16 23:26:40 -07001403/*
1404 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1405 */
1406
1407struct module_notes_attrs {
1408 struct kobject *dir;
1409 unsigned int notes;
1410 struct bin_attribute attrs[0];
1411};
1412
Chris Wright2c3c8be2010-05-12 18:28:57 -07001413static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001414 struct bin_attribute *bin_attr,
1415 char *buf, loff_t pos, size_t count)
1416{
1417 /*
1418 * The caller checked the pos and count against our size.
1419 */
1420 memcpy(buf, bin_attr->private + pos, count);
1421 return count;
1422}
1423
1424static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1425 unsigned int i)
1426{
1427 if (notes_attrs->dir) {
1428 while (i-- > 0)
1429 sysfs_remove_bin_file(notes_attrs->dir,
1430 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001431 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001432 }
1433 kfree(notes_attrs);
1434}
1435
Rusty Russell8f6d0372010-08-05 12:59:09 -06001436static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001437{
1438 unsigned int notes, loaded, i;
1439 struct module_notes_attrs *notes_attrs;
1440 struct bin_attribute *nattr;
1441
Ingo Molnarea6bff32009-08-28 10:44:56 +02001442 /* failed to create section attributes, so can't create notes */
1443 if (!mod->sect_attrs)
1444 return;
1445
Roland McGrath6d760132007-10-16 23:26:40 -07001446 /* Count notes sections and allocate structures. */
1447 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001448 for (i = 0; i < info->hdr->e_shnum; i++)
1449 if (!sect_empty(&info->sechdrs[i]) &&
1450 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001451 ++notes;
1452
1453 if (notes == 0)
1454 return;
1455
1456 notes_attrs = kzalloc(sizeof(*notes_attrs)
1457 + notes * sizeof(notes_attrs->attrs[0]),
1458 GFP_KERNEL);
1459 if (notes_attrs == NULL)
1460 return;
1461
1462 notes_attrs->notes = notes;
1463 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001464 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1465 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001466 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001467 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001468 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001469 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1470 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001471 nattr->size = info->sechdrs[i].sh_size;
1472 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001473 nattr->read = module_notes_read;
1474 ++nattr;
1475 }
1476 ++loaded;
1477 }
1478
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001479 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001480 if (!notes_attrs->dir)
1481 goto out;
1482
1483 for (i = 0; i < notes; ++i)
1484 if (sysfs_create_bin_file(notes_attrs->dir,
1485 &notes_attrs->attrs[i]))
1486 goto out;
1487
1488 mod->notes_attrs = notes_attrs;
1489 return;
1490
1491 out:
1492 free_notes_attrs(notes_attrs, i);
1493}
1494
1495static void remove_notes_attrs(struct module *mod)
1496{
1497 if (mod->notes_attrs)
1498 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1499}
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001502
Rusty Russell8f6d0372010-08-05 12:59:09 -06001503static inline void add_sect_attrs(struct module *mod,
1504 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506}
1507
1508static inline void remove_sect_attrs(struct module *mod)
1509{
1510}
Roland McGrath6d760132007-10-16 23:26:40 -07001511
Rusty Russell8f6d0372010-08-05 12:59:09 -06001512static inline void add_notes_attrs(struct module *mod,
1513 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001514{
1515}
1516
1517static inline void remove_notes_attrs(struct module *mod)
1518{
1519}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001520#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001522static void add_usage_links(struct module *mod)
1523{
1524#ifdef CONFIG_MODULE_UNLOAD
1525 struct module_use *use;
1526 int nowarn;
1527
Rusty Russell75676502010-06-05 11:17:36 -06001528 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001529 list_for_each_entry(use, &mod->target_list, target_list) {
1530 nowarn = sysfs_create_link(use->target->holders_dir,
1531 &mod->mkobj.kobj, mod->name);
1532 }
Rusty Russell75676502010-06-05 11:17:36 -06001533 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001534#endif
1535}
1536
1537static void del_usage_links(struct module *mod)
1538{
1539#ifdef CONFIG_MODULE_UNLOAD
1540 struct module_use *use;
1541
Rusty Russell75676502010-06-05 11:17:36 -06001542 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001543 list_for_each_entry(use, &mod->target_list, target_list)
1544 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001545 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001546#endif
1547}
1548
Rusty Russell6407ebb22010-06-05 11:17:36 -06001549static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001550{
1551 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001552 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001553 int error = 0;
1554 int i;
1555
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001556 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1557 (ARRAY_SIZE(modinfo_attrs) + 1)),
1558 GFP_KERNEL);
1559 if (!mod->modinfo_attrs)
1560 return -ENOMEM;
1561
1562 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001563 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1564 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001565 (attr->test && attr->test(mod))) {
1566 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001567 sysfs_attr_init(&temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001568 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1569 ++temp_attr;
1570 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001571 }
1572 return error;
1573}
1574
Rusty Russell6407ebb22010-06-05 11:17:36 -06001575static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001576{
1577 struct module_attribute *attr;
1578 int i;
1579
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001580 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1581 /* pick a field to test for end of list */
1582 if (!attr->attr.name)
1583 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001584 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001585 if (attr->free)
1586 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001587 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001588 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001589}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Rusty Russell6407ebb22010-06-05 11:17:36 -06001591static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001594 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001596 if (!module_sysfs_initialized) {
1597 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001598 mod->name);
1599 err = -EINVAL;
1600 goto out;
1601 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001602
1603 kobj = kset_find_obj(module_kset, mod->name);
1604 if (kobj) {
1605 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1606 kobject_put(kobj);
1607 err = -EINVAL;
1608 goto out;
1609 }
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001612
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001613 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1614 mod->mkobj.kobj.kset = module_kset;
1615 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1616 "%s", mod->name);
1617 if (err)
1618 kobject_put(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001619
Kay Sievers97c146e2007-11-29 23:46:11 +01001620 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001621out:
1622 return err;
1623}
1624
Rusty Russell6407ebb22010-06-05 11:17:36 -06001625static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001626 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001627 struct kernel_param *kparam,
1628 unsigned int num_params)
1629{
1630 int err;
1631
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001632 err = mod_sysfs_init(mod);
1633 if (err)
1634 goto out;
1635
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001636 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001637 if (!mod->holders_dir) {
1638 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001639 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001640 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 err = module_param_sysfs_setup(mod, kparam, num_params);
1643 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001644 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Matt Domschc988d2b2005-06-23 22:05:15 -07001646 err = module_add_modinfo_attrs(mod);
1647 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001648 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001649
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001650 add_usage_links(mod);
Rusty Russell8f6d0372010-08-05 12:59:09 -06001651 add_sect_attrs(mod, info);
1652 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001653
Kay Sieverse17e0f52006-11-24 12:15:25 +01001654 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return 0;
1656
Kay Sieverse17e0f52006-11-24 12:15:25 +01001657out_unreg_param:
1658 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001659out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001660 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001661out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001662 kobject_put(&mod->mkobj.kobj);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001663out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return err;
1665}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001666
1667static void mod_sysfs_fini(struct module *mod)
1668{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001669 remove_notes_attrs(mod);
1670 remove_sect_attrs(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001671 kobject_put(&mod->mkobj.kobj);
1672}
1673
Rusty Russell8f6d0372010-08-05 12:59:09 -06001674#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001675
Rusty Russell8f6d0372010-08-05 12:59:09 -06001676static int mod_sysfs_setup(struct module *mod,
1677 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001678 struct kernel_param *kparam,
1679 unsigned int num_params)
1680{
1681 return 0;
1682}
1683
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001684static void mod_sysfs_fini(struct module *mod)
1685{
1686}
1687
Rusty Russell36b03602010-08-05 12:59:09 -06001688static void module_remove_modinfo_attrs(struct module *mod)
1689{
1690}
1691
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001692static void del_usage_links(struct module *mod)
1693{
1694}
1695
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001696#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Rusty Russell36b03602010-08-05 12:59:09 -06001698static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001700 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001701 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001703 kobject_put(mod->mkobj.drivers_dir);
1704 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001705 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
1708/*
1709 * unlink the module with the whole machine is stopped with interrupts off
1710 * - this defends against kallsyms not taking locks
1711 */
1712static int __unlink_module(void *_mod)
1713{
1714 struct module *mod = _mod;
1715 list_del(&mod->list);
Linus Torvalds53363772010-10-05 11:29:27 -07001716 module_bug_cleanup(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return 0;
1718}
1719
matthieu castet84e1c6b2010-11-16 22:35:16 +01001720#ifdef CONFIG_DEBUG_SET_MODULE_RONX
1721/*
1722 * LKM RO/NX protection: protect module's text/ro-data
1723 * from modification and any data from execution.
1724 */
1725void set_page_attributes(void *start, void *end, int (*set)(unsigned long start, int num_pages))
1726{
1727 unsigned long begin_pfn = PFN_DOWN((unsigned long)start);
1728 unsigned long end_pfn = PFN_DOWN((unsigned long)end);
1729
1730 if (end_pfn > begin_pfn)
1731 set(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1732}
1733
1734static void set_section_ro_nx(void *base,
1735 unsigned long text_size,
1736 unsigned long ro_size,
1737 unsigned long total_size)
1738{
1739 /* begin and end PFNs of the current subsection */
1740 unsigned long begin_pfn;
1741 unsigned long end_pfn;
1742
1743 /*
1744 * Set RO for module text and RO-data:
1745 * - Always protect first page.
1746 * - Do not protect last partial page.
1747 */
1748 if (ro_size > 0)
1749 set_page_attributes(base, base + ro_size, set_memory_ro);
1750
1751 /*
1752 * Set NX permissions for module data:
1753 * - Do not protect first partial page.
1754 * - Always protect last page.
1755 */
1756 if (total_size > text_size) {
1757 begin_pfn = PFN_UP((unsigned long)base + text_size);
1758 end_pfn = PFN_UP((unsigned long)base + total_size);
1759 if (end_pfn > begin_pfn)
1760 set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
1761 }
1762}
1763
Jan Glauber01526ed2011-05-19 16:55:26 -06001764static void unset_module_core_ro_nx(struct module *mod)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001765{
Jan Glauber01526ed2011-05-19 16:55:26 -06001766 set_page_attributes(mod->module_core + mod->core_text_size,
1767 mod->module_core + mod->core_size,
1768 set_memory_x);
1769 set_page_attributes(mod->module_core,
1770 mod->module_core + mod->core_ro_size,
1771 set_memory_rw);
1772}
1773
1774static void unset_module_init_ro_nx(struct module *mod)
1775{
1776 set_page_attributes(mod->module_init + mod->init_text_size,
1777 mod->module_init + mod->init_size,
1778 set_memory_x);
1779 set_page_attributes(mod->module_init,
1780 mod->module_init + mod->init_ro_size,
1781 set_memory_rw);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001782}
1783
1784/* Iterate through all modules and set each module's text as RW */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001785void set_all_modules_text_rw(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001786{
1787 struct module *mod;
1788
1789 mutex_lock(&module_mutex);
1790 list_for_each_entry_rcu(mod, &modules, list) {
1791 if ((mod->module_core) && (mod->core_text_size)) {
1792 set_page_attributes(mod->module_core,
1793 mod->module_core + mod->core_text_size,
1794 set_memory_rw);
1795 }
1796 if ((mod->module_init) && (mod->init_text_size)) {
1797 set_page_attributes(mod->module_init,
1798 mod->module_init + mod->init_text_size,
1799 set_memory_rw);
1800 }
1801 }
1802 mutex_unlock(&module_mutex);
1803}
1804
1805/* Iterate through all modules and set each module's text as RO */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001806void set_all_modules_text_ro(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001807{
1808 struct module *mod;
1809
1810 mutex_lock(&module_mutex);
1811 list_for_each_entry_rcu(mod, &modules, list) {
1812 if ((mod->module_core) && (mod->core_text_size)) {
1813 set_page_attributes(mod->module_core,
1814 mod->module_core + mod->core_text_size,
1815 set_memory_ro);
1816 }
1817 if ((mod->module_init) && (mod->init_text_size)) {
1818 set_page_attributes(mod->module_init,
1819 mod->module_init + mod->init_text_size,
1820 set_memory_ro);
1821 }
1822 }
1823 mutex_unlock(&module_mutex);
1824}
1825#else
1826static 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 -06001827static void unset_module_core_ro_nx(struct module *mod) { }
1828static void unset_module_init_ro_nx(struct module *mod) { }
matthieu castet84e1c6b2010-11-16 22:35:16 +01001829#endif
1830
Jonas Bonn74e08fc2011-06-30 21:22:11 +02001831void __weak module_free(struct module *mod, void *module_region)
1832{
1833 vfree(module_region);
1834}
1835
1836void __weak module_arch_cleanup(struct module *mod)
1837{
1838}
1839
Rusty Russell75676502010-06-05 11:17:36 -06001840/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841static void free_module(struct module *mod)
1842{
Li Zefan7ead8b82009-08-17 16:56:28 +08001843 trace_module_free(mod);
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /* Delete from various lists */
Rusty Russell75676502010-06-05 11:17:36 -06001846 mutex_lock(&module_mutex);
Rusty Russell9b1a4d32008-07-28 12:16:30 -05001847 stop_machine(__unlink_module, mod, NULL);
Rusty Russell75676502010-06-05 11:17:36 -06001848 mutex_unlock(&module_mutex);
Rusty Russell36b03602010-08-05 12:59:09 -06001849 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Jason Baronb82bab4b2010-07-27 13:18:01 -07001851 /* Remove dynamic debug info */
1852 ddebug_remove_module(mod->name);
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 /* Arch-specific cleanup. */
1855 module_arch_cleanup(mod);
1856
1857 /* Module unload stuff */
1858 module_unload_free(mod);
1859
Rusty Russelle180a6b2009-03-31 13:05:29 -06001860 /* Free any allocated parameters. */
1861 destroy_params(mod->kp, mod->num_kp);
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 /* This may be NULL, but that's OK */
Jan Glauber01526ed2011-05-19 16:55:26 -06001864 unset_module_init_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 module_free(mod, mod->module_init);
1866 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001867 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001868
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001869 /* Free lock-classes: */
1870 lockdep_free_key_range(mod->module_core, mod->core_size);
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 /* Finally, free the core (containing the module structure) */
Jan Glauber01526ed2011-05-19 16:55:26 -06001873 unset_module_core_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 module_free(mod, mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001875
1876#ifdef CONFIG_MPU
1877 update_protections(current->mm);
1878#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
1881void *__symbol_get(const char *symbol)
1882{
1883 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001884 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Rusty Russell24da1cb2007-07-15 23:41:46 -07001886 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001887 sym = find_symbol(symbol, &owner, NULL, true, true);
1888 if (sym && strong_try_module_get(owner))
1889 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001890 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Tim Abbott414fd312008-12-05 19:03:56 -05001892 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894EXPORT_SYMBOL_GPL(__symbol_get);
1895
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001896/*
1897 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001898 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06001899 *
1900 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001901 */
1902static int verify_export_symbols(struct module *mod)
1903{
Rusty Russellb2111042008-05-01 21:15:00 -05001904 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001905 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001906 const struct kernel_symbol *s;
1907 struct {
1908 const struct kernel_symbol *sym;
1909 unsigned int num;
1910 } arr[] = {
1911 { mod->syms, mod->num_syms },
1912 { mod->gpl_syms, mod->num_gpl_syms },
1913 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001914#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001915 { mod->unused_syms, mod->num_unused_syms },
1916 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001917#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001918 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001919
Rusty Russellb2111042008-05-01 21:15:00 -05001920 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1921 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06001922 if (find_symbol(s->name, &owner, NULL, true, false)) {
Rusty Russellb2111042008-05-01 21:15:00 -05001923 printk(KERN_ERR
1924 "%s: exports duplicate symbol %s"
1925 " (owned by %s)\n",
1926 mod->name, s->name, module_name(owner));
1927 return -ENOEXEC;
1928 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001929 }
Rusty Russellb2111042008-05-01 21:15:00 -05001930 }
1931 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001932}
1933
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001934/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06001935static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
Rusty Russell49668682010-08-05 12:59:10 -06001937 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
1938 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06001940 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001942 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Rusty Russell49668682010-08-05 12:59:10 -06001944 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
1945 const char *name = info->strtab + sym[i].st_name;
1946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 switch (sym[i].st_shndx) {
1948 case SHN_COMMON:
1949 /* We compiled with -fno-common. These are not
1950 supposed to happen. */
Jim Cromie5e124162011-12-06 12:11:31 -07001951 pr_debug("Common symbol: %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 printk("%s: please compile with -fno-common\n",
1953 mod->name);
1954 ret = -ENOEXEC;
1955 break;
1956
1957 case SHN_ABS:
1958 /* Don't need to do anything */
Jim Cromie5e124162011-12-06 12:11:31 -07001959 pr_debug("Absolute symbol: 0x%08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 (long)sym[i].st_value);
1961 break;
1962
1963 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06001964 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001966 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05001967 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001969 }
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001972 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 break;
1974
Rusty Russell9bea7f22010-06-05 11:17:37 -06001975 printk(KERN_WARNING "%s: Unknown symbol %s (err %li)\n",
Rusty Russell49668682010-08-05 12:59:10 -06001976 mod->name, name, PTR_ERR(ksym));
Rusty Russell9bea7f22010-06-05 11:17:37 -06001977 ret = PTR_ERR(ksym) ?: -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 break;
1979
1980 default:
1981 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06001982 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09001983 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 else
Rusty Russell49668682010-08-05 12:59:10 -06001985 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 sym[i].st_value += secbase;
1987 break;
1988 }
1989 }
1990
1991 return ret;
1992}
1993
Rusty Russell49668682010-08-05 12:59:10 -06001994static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06001995{
1996 unsigned int i;
1997 int err = 0;
1998
1999 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06002000 for (i = 1; i < info->hdr->e_shnum; i++) {
2001 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06002002
2003 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06002004 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06002005 continue;
2006
2007 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06002008 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06002009 continue;
2010
Rusty Russell49668682010-08-05 12:59:10 -06002011 if (info->sechdrs[i].sh_type == SHT_REL)
2012 err = apply_relocate(info->sechdrs, info->strtab,
2013 info->index.sym, i, mod);
2014 else if (info->sechdrs[i].sh_type == SHT_RELA)
2015 err = apply_relocate_add(info->sechdrs, info->strtab,
2016 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002017 if (err < 0)
2018 break;
2019 }
2020 return err;
2021}
2022
Helge Deller088af9a2008-12-31 12:31:18 +01002023/* Additional bytes needed by arch in front of individual sections */
2024unsigned int __weak arch_mod_section_prepend(struct module *mod,
2025 unsigned int section)
2026{
2027 /* default implementation just returns zero */
2028 return 0;
2029}
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01002032static long get_offset(struct module *mod, unsigned int *size,
2033 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
2035 long ret;
2036
Helge Deller088af9a2008-12-31 12:31:18 +01002037 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2039 *size = ret + sechdr->sh_size;
2040 return ret;
2041}
2042
2043/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2044 might -- code, read-only data, read-write data, small data. Tally
2045 sizes, and place the offsets into sh_entsize fields: high bit means it
2046 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06002047static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 static unsigned long const masks[][2] = {
2050 /* NOTE: all executable code must be the first section
2051 * in this array; otherwise modify the text_size
2052 * finder in the two loops below */
2053 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2054 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
2055 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2056 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2057 };
2058 unsigned int m, i;
2059
Rusty Russell49668682010-08-05 12:59:10 -06002060 for (i = 0; i < info->hdr->e_shnum; i++)
2061 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Jim Cromie5e124162011-12-06 12:11:31 -07002063 pr_debug("Core section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002065 for (i = 0; i < info->hdr->e_shnum; ++i) {
2066 Elf_Shdr *s = &info->sechdrs[i];
2067 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2070 || (s->sh_flags & masks[m][1])
2071 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002072 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002074 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
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->core_size = debug_align(mod->core_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 mod->core_text_size = mod->core_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002081 break;
2082 case 1: /* RO: text and ro-data */
2083 mod->core_size = debug_align(mod->core_size);
2084 mod->core_ro_size = mod->core_size;
2085 break;
2086 case 3: /* whole core */
2087 mod->core_size = debug_align(mod->core_size);
2088 break;
2089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
2091
Jim Cromie5e124162011-12-06 12:11:31 -07002092 pr_debug("Init section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002094 for (i = 0; i < info->hdr->e_shnum; ++i) {
2095 Elf_Shdr *s = &info->sechdrs[i];
2096 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2099 || (s->sh_flags & masks[m][1])
2100 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002101 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01002103 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 | INIT_OFFSET_MASK);
Jim Cromie5e124162011-12-06 12:11:31 -07002105 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002107 switch (m) {
2108 case 0: /* executable */
2109 mod->init_size = debug_align(mod->init_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 mod->init_text_size = mod->init_size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002111 break;
2112 case 1: /* RO: text and ro-data */
2113 mod->init_size = debug_align(mod->init_size);
2114 mod->init_ro_size = mod->init_size;
2115 break;
2116 case 3: /* whole init */
2117 mod->init_size = debug_align(mod->init_size);
2118 break;
2119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
2121}
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123static void set_license(struct module *mod, const char *license)
2124{
2125 if (!license)
2126 license = "unspecified";
2127
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002128 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07002129 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07002130 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002131 "kernel.\n", mod->name, license);
2132 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 }
2134}
2135
2136/* Parse tag=value strings from .modinfo section */
2137static char *next_string(char *string, unsigned long *secsize)
2138{
2139 /* Skip non-zero chars */
2140 while (string[0]) {
2141 string++;
2142 if ((*secsize)-- <= 1)
2143 return NULL;
2144 }
2145
2146 /* Skip any zero padding. */
2147 while (!string[0]) {
2148 string++;
2149 if ((*secsize)-- <= 1)
2150 return NULL;
2151 }
2152 return string;
2153}
2154
Rusty Russell49668682010-08-05 12:59:10 -06002155static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 char *p;
2158 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06002159 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2160 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Rusty Russell49668682010-08-05 12:59:10 -06002162 for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2164 return p + taglen + 1;
2165 }
2166 return NULL;
2167}
2168
Rusty Russell49668682010-08-05 12:59:10 -06002169static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07002170{
2171 struct module_attribute *attr;
2172 int i;
2173
2174 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2175 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06002176 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07002177 }
2178}
Matt Domschc988d2b2005-06-23 22:05:15 -07002179
Rusty Russella263f772009-09-25 00:32:58 -06002180static void free_modinfo(struct module *mod)
2181{
2182 struct module_attribute *attr;
2183 int i;
2184
2185 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2186 if (attr->free)
2187 attr->free(mod);
2188 }
2189}
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01002192
2193/* lookup symbol in given range of kernel_symbols */
2194static const struct kernel_symbol *lookup_symbol(const char *name,
2195 const struct kernel_symbol *start,
2196 const struct kernel_symbol *stop)
2197{
Alessio Igor Bogani9d634872011-05-18 22:35:59 +02002198 return bsearch(name, start, stop - start,
2199 sizeof(struct kernel_symbol), cmp_name);
WANG Cong15bba372008-07-24 15:41:48 +01002200}
2201
Tim Abbottca4787b2009-01-05 08:40:10 -06002202static int is_exported(const char *name, unsigned long value,
2203 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
Tim Abbottca4787b2009-01-05 08:40:10 -06002205 const struct kernel_symbol *ks;
2206 if (!mod)
2207 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01002208 else
Tim Abbottca4787b2009-01-05 08:40:10 -06002209 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
2210 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211}
2212
2213/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06002214static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
Rusty Russelleded41c2010-08-05 12:59:07 -06002216 const Elf_Shdr *sechdrs = info->sechdrs;
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2219 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2220 return 'v';
2221 else
2222 return 'w';
2223 }
2224 if (sym->st_shndx == SHN_UNDEF)
2225 return 'U';
2226 if (sym->st_shndx == SHN_ABS)
2227 return 'a';
2228 if (sym->st_shndx >= SHN_LORESERVE)
2229 return '?';
2230 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2231 return 't';
2232 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2233 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2234 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2235 return 'r';
2236 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2237 return 'g';
2238 else
2239 return 'd';
2240 }
2241 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2242 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2243 return 's';
2244 else
2245 return 'b';
2246 }
Rusty Russelleded41c2010-08-05 12:59:07 -06002247 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2248 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06002250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 return '?';
2252}
2253
Jan Beulich4a496222009-07-06 14:50:42 +01002254static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
2255 unsigned int shnum)
2256{
2257 const Elf_Shdr *sec;
2258
2259 if (src->st_shndx == SHN_UNDEF
2260 || src->st_shndx >= shnum
2261 || !src->st_name)
2262 return false;
2263
2264 sec = sechdrs + src->st_shndx;
2265 if (!(sec->sh_flags & SHF_ALLOC)
2266#ifndef CONFIG_KALLSYMS_ALL
2267 || !(sec->sh_flags & SHF_EXECINSTR)
2268#endif
2269 || (sec->sh_entsize & INIT_OFFSET_MASK))
2270 return false;
2271
2272 return true;
2273}
2274
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302275/*
2276 * We only allocate and copy the strings needed by the parts of symtab
2277 * we keep. This is simple, but has the effect of making multiple
2278 * copies of duplicates. We could be more sophisticated, see
2279 * linux-kernel thread starting with
2280 * <73defb5e4bca04a6431392cc341112b1@localhost>.
2281 */
Rusty Russell49668682010-08-05 12:59:10 -06002282static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002283{
Rusty Russell49668682010-08-05 12:59:10 -06002284 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2285 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01002286 const Elf_Sym *src;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302287 unsigned int i, nsrc, ndst, strtab_size;
Jan Beulich4a496222009-07-06 14:50:42 +01002288
2289 /* Put symbol section at end of init part of module. */
2290 symsect->sh_flags |= SHF_ALLOC;
2291 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06002292 info->index.sym) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002293 pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002294
Rusty Russell49668682010-08-05 12:59:10 -06002295 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002296 nsrc = symsect->sh_size / sizeof(*src);
Kevin Cernekee70b1e9162011-11-12 19:08:55 -08002297
Rusty Russell59ef28b2012-10-25 10:49:25 +10302298 /* strtab always starts with a nul, so offset 0 is the empty string. */
2299 strtab_size = 1;
2300
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302301 /* Compute total space required for the core symbols' strtab. */
Rusty Russell59ef28b2012-10-25 10:49:25 +10302302 for (ndst = i = 0; i < nsrc; i++) {
2303 if (i == 0 ||
2304 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2305 strtab_size += strlen(&info->strtab[src[i].st_name])+1;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302306 ndst++;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002307 }
Rusty Russell59ef28b2012-10-25 10:49:25 +10302308 }
Jan Beulich4a496222009-07-06 14:50:42 +01002309
2310 /* Append room for core symbols at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06002311 info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302312 info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
2313 mod->core_size += strtab_size;
Jan Beulich4a496222009-07-06 14:50:42 +01002314
Jan Beulich554bdfe2009-07-06 14:51:44 +01002315 /* Put string table section at end of init part of module. */
2316 strsect->sh_flags |= SHF_ALLOC;
2317 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06002318 info->index.str) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002319 pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002320}
2321
Rusty Russell811d66a2010-08-05 12:59:12 -06002322static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
Jan Beulich4a496222009-07-06 14:50:42 +01002324 unsigned int i, ndst;
2325 const Elf_Sym *src;
2326 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002327 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002328 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Rusty Russelleded41c2010-08-05 12:59:07 -06002330 mod->symtab = (void *)symsec->sh_addr;
2331 mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002332 /* Make sure we get permanent strtab: don't use info->strtab. */
2333 mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 /* Set types up while we still have access to sections. */
2336 for (i = 0; i < mod->num_symtab; i++)
Rusty Russelleded41c2010-08-05 12:59:07 -06002337 mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002338
Rusty Russelld9131882010-08-05 12:59:08 -06002339 mod->core_symtab = dst = mod->module_core + info->symoffs;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302340 mod->core_strtab = s = mod->module_core + info->stroffs;
Jan Beulich4a496222009-07-06 14:50:42 +01002341 src = mod->symtab;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302342 *s++ = 0;
Rusty Russell59ef28b2012-10-25 10:49:25 +10302343 for (ndst = i = 0; i < mod->num_symtab; i++) {
2344 if (i == 0 ||
2345 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
2346 dst[ndst] = src[i];
2347 dst[ndst++].st_name = s - mod->core_strtab;
2348 s += strlcpy(s, &mod->strtab[src[i].st_name],
2349 KSYM_NAME_LEN) + 1;
2350 }
Jan Beulich4a496222009-07-06 14:50:42 +01002351 }
2352 mod->core_num_syms = ndst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354#else
Rusty Russell49668682010-08-05 12:59:10 -06002355static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002356{
2357}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002358
Michał Mirosławabbce902010-09-20 01:58:08 +02002359static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
2361}
2362#endif /* CONFIG_KALLSYMS */
2363
Jason Barone9d376f2009-02-05 11:51:38 -05002364static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002365{
Rusty Russell811d66a2010-08-05 12:59:12 -06002366 if (!debug)
2367 return;
Jason Barone9d376f2009-02-05 11:51:38 -05002368#ifdef CONFIG_DYNAMIC_DEBUG
2369 if (ddebug_add_module(debug, num, debug->modname))
2370 printk(KERN_ERR "dynamic debug error adding module: %s\n",
2371 debug->modname);
2372#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002373}
Jason Baron346e15b2008-08-12 16:46:19 -04002374
Yehuda Sadehff49d742010-07-03 13:07:35 +10002375static void dynamic_debug_remove(struct _ddebug *debug)
2376{
2377 if (debug)
2378 ddebug_remove_module(debug->modname);
2379}
2380
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002381void * __weak module_alloc(unsigned long size)
2382{
2383 return size == 0 ? NULL : vmalloc_exec(size);
2384}
2385
Rusty Russell3a642e92008-07-22 19:24:28 -05002386static void *module_alloc_update_bounds(unsigned long size)
2387{
2388 void *ret = module_alloc(size);
2389
2390 if (ret) {
Rusty Russell75676502010-06-05 11:17:36 -06002391 mutex_lock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002392 /* Update module bounds. */
2393 if ((unsigned long)ret < module_addr_min)
2394 module_addr_min = (unsigned long)ret;
2395 if ((unsigned long)ret + size > module_addr_max)
2396 module_addr_max = (unsigned long)ret + size;
Rusty Russell75676502010-06-05 11:17:36 -06002397 mutex_unlock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002398 }
2399 return ret;
2400}
2401
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002402#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002403static void kmemleak_load_module(const struct module *mod,
2404 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002405{
2406 unsigned int i;
2407
2408 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002409 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002410
Rusty Russell49668682010-08-05 12:59:10 -06002411 for (i = 1; i < info->hdr->e_shnum; i++) {
2412 const char *name = info->secstrings + info->sechdrs[i].sh_name;
2413 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002414 continue;
Rusty Russell49668682010-08-05 12:59:10 -06002415 if (!strstarts(name, ".data") && !strstarts(name, ".bss"))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002416 continue;
2417
Rusty Russell49668682010-08-05 12:59:10 -06002418 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2419 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002420 }
2421}
2422#else
Rusty Russell49668682010-08-05 12:59:10 -06002423static inline void kmemleak_load_module(const struct module *mod,
2424 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002425{
2426}
2427#endif
2428
Rusty Russell106a4ee2012-09-26 10:09:40 +01002429#ifdef CONFIG_MODULE_SIG
Kees Cook34e11692012-10-16 07:31:07 +10302430static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002431{
2432 int err = -ENOKEY;
Kees Cook34e11692012-10-16 07:31:07 +10302433 const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
2434 const void *mod = info->hdr;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002435
Kees Cook34e11692012-10-16 07:31:07 +10302436 if (info->len > markerlen &&
2437 memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
David Howellscaabe242012-10-20 01:19:29 +01002438 /* We truncate the module to discard the signature */
Kees Cook34e11692012-10-16 07:31:07 +10302439 info->len -= markerlen;
2440 err = mod_verify_sig(mod, &info->len);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002441 }
2442
2443 if (!err) {
2444 info->sig_ok = true;
2445 return 0;
2446 }
2447
2448 /* Not having a signature is only an error if we're strict. */
David Howells1d0059f2012-09-26 10:09:50 +01002449 if (err < 0 && fips_enabled)
2450 panic("Module verification failed with error %d in FIPS mode\n",
2451 err);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002452 if (err == -ENOKEY && !sig_enforce)
2453 err = 0;
2454
2455 return err;
2456}
2457#else /* !CONFIG_MODULE_SIG */
Kees Cook34e11692012-10-16 07:31:07 +10302458static int module_sig_check(struct load_info *info)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002459{
2460 return 0;
2461}
2462#endif /* !CONFIG_MODULE_SIG */
2463
Kees Cook34e11692012-10-16 07:31:07 +10302464/* Sanity checks against invalid binaries, wrong arch, weird elf version. */
2465static int elf_header_check(struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002466{
Kees Cook34e11692012-10-16 07:31:07 +10302467 if (info->len < sizeof(*(info->hdr)))
2468 return -ENOEXEC;
Rusty Russell40dd2562010-08-05 12:59:03 -06002469
Kees Cook34e11692012-10-16 07:31:07 +10302470 if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2471 || info->hdr->e_type != ET_REL
2472 || !elf_check_arch(info->hdr)
2473 || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2474 return -ENOEXEC;
2475
2476 if (info->hdr->e_shoff >= info->len
2477 || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2478 info->len - info->hdr->e_shoff))
2479 return -ENOEXEC;
2480
2481 return 0;
2482}
2483
2484/* Sets info->hdr and info->len. */
2485static int copy_module_from_user(const void __user *umod, unsigned long len,
2486 struct load_info *info)
2487{
2488 info->len = len;
2489 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002490 return -ENOEXEC;
2491
2492 /* Suck in entire file: we'll want most of it. */
Kees Cook34e11692012-10-16 07:31:07 +10302493 info->hdr = vmalloc(info->len);
2494 if (!info->hdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06002495 return -ENOMEM;
2496
Kees Cook34e11692012-10-16 07:31:07 +10302497 if (copy_from_user(info->hdr, umod, info->len) != 0) {
2498 vfree(info->hdr);
2499 return -EFAULT;
Rusty Russell40dd2562010-08-05 12:59:03 -06002500 }
2501
Rusty Russell40dd2562010-08-05 12:59:03 -06002502 return 0;
Kees Cook34e11692012-10-16 07:31:07 +10302503}
Rusty Russell40dd2562010-08-05 12:59:03 -06002504
Kees Cook34e11692012-10-16 07:31:07 +10302505/* Sets info->hdr and info->len. */
2506static int copy_module_from_fd(int fd, struct load_info *info)
2507{
2508 struct file *file;
2509 int err;
2510 struct kstat stat;
2511 loff_t pos;
2512 ssize_t bytes = 0;
2513
2514 file = fget(fd);
2515 if (!file)
2516 return -ENOEXEC;
2517
2518 err = vfs_getattr(file->f_vfsmnt, file->f_dentry, &stat);
2519 if (err)
2520 goto out;
2521
2522 if (stat.size > INT_MAX) {
2523 err = -EFBIG;
2524 goto out;
2525 }
2526 info->hdr = vmalloc(stat.size);
2527 if (!info->hdr) {
2528 err = -ENOMEM;
2529 goto out;
2530 }
2531
2532 pos = 0;
2533 while (pos < stat.size) {
2534 bytes = kernel_read(file, pos, (char *)(info->hdr) + pos,
2535 stat.size - pos);
2536 if (bytes < 0) {
2537 vfree(info->hdr);
2538 err = bytes;
2539 goto out;
2540 }
2541 if (bytes == 0)
2542 break;
2543 pos += bytes;
2544 }
2545 info->len = pos;
2546
2547out:
2548 fput(file);
Rusty Russell40dd2562010-08-05 12:59:03 -06002549 return err;
2550}
2551
Rusty Russelld9131882010-08-05 12:59:08 -06002552static void free_copy(struct load_info *info)
2553{
Rusty Russelld9131882010-08-05 12:59:08 -06002554 vfree(info->hdr);
2555}
2556
Rusty Russell2f3238a2012-10-22 18:09:41 +10302557static int rewrite_section_headers(struct load_info *info, int flags)
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002558{
2559 unsigned int i;
2560
2561 /* This should always be true, but let's be sure. */
2562 info->sechdrs[0].sh_addr = 0;
2563
2564 for (i = 1; i < info->hdr->e_shnum; i++) {
2565 Elf_Shdr *shdr = &info->sechdrs[i];
2566 if (shdr->sh_type != SHT_NOBITS
2567 && info->len < shdr->sh_offset + shdr->sh_size) {
2568 printk(KERN_ERR "Module len %lu truncated\n",
2569 info->len);
2570 return -ENOEXEC;
2571 }
2572
2573 /* Mark all sections sh_addr with their address in the
2574 temporary image. */
2575 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2576
2577#ifndef CONFIG_MODULE_UNLOAD
2578 /* Don't load .exit sections */
2579 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2580 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2581#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002582 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002583
2584 /* Track but don't keep modinfo and version sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302585 if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
2586 info->index.vers = 0; /* Pretend no __versions section! */
2587 else
2588 info->index.vers = find_sec(info, "__versions");
Rusty Russell49668682010-08-05 12:59:10 -06002589 info->index.info = find_sec(info, ".modinfo");
Rusty Russelld6df72a2010-08-05 12:59:07 -06002590 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2591 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002592 return 0;
2593}
2594
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002595/*
2596 * Set up our basic convenience variables (pointers to section headers,
2597 * search for module section index etc), and do some basic section
2598 * verification.
2599 *
2600 * Return the temporary module pointer (we'll replace it with the final
2601 * one when we move the module sections around).
2602 */
Rusty Russell2f3238a2012-10-22 18:09:41 +10302603static struct module *setup_load_info(struct load_info *info, int flags)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002604{
2605 unsigned int i;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002606 int err;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002607 struct module *mod;
2608
2609 /* Set up the convenience variables */
2610 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002611 info->secstrings = (void *)info->hdr
2612 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002613
Rusty Russell2f3238a2012-10-22 18:09:41 +10302614 err = rewrite_section_headers(info, flags);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002615 if (err)
2616 return ERR_PTR(err);
2617
2618 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002619 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002620 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2621 info->index.sym = i;
2622 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002623 info->strtab = (char *)info->hdr
2624 + info->sechdrs[info->index.str].sh_offset;
2625 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002626 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002627 }
2628
Rusty Russell49668682010-08-05 12:59:10 -06002629 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002630 if (!info->index.mod) {
2631 printk(KERN_WARNING "No module found in object\n");
2632 return ERR_PTR(-ENOEXEC);
2633 }
2634 /* This is temporary: point mod into copy of data. */
2635 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2636
2637 if (info->index.sym == 0) {
2638 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
2639 mod->name);
2640 return ERR_PTR(-ENOEXEC);
2641 }
2642
Rusty Russell49668682010-08-05 12:59:10 -06002643 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002644
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002645 /* Check module struct version now, before we try to use module. */
2646 if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
2647 return ERR_PTR(-ENOEXEC);
2648
2649 return mod;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002650}
2651
Rusty Russell2f3238a2012-10-22 18:09:41 +10302652static int check_modinfo(struct module *mod, struct load_info *info, int flags)
Rusty Russell40dd2562010-08-05 12:59:03 -06002653{
Rusty Russell49668682010-08-05 12:59:10 -06002654 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002655 int err;
2656
Rusty Russell2f3238a2012-10-22 18:09:41 +10302657 if (flags & MODULE_INIT_IGNORE_VERMAGIC)
2658 modmagic = NULL;
2659
Rusty Russell40dd2562010-08-05 12:59:03 -06002660 /* This is allowed: modprobe --force will invalidate it. */
2661 if (!modmagic) {
2662 err = try_to_force_load(mod, "bad vermagic");
2663 if (err)
2664 return err;
Rusty Russell49668682010-08-05 12:59:10 -06002665 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Rusty Russell40dd2562010-08-05 12:59:03 -06002666 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
2667 mod->name, modmagic, vermagic);
2668 return -ENOEXEC;
2669 }
2670
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002671 if (!get_modinfo(info, "intree"))
2672 add_taint_module(mod, TAINT_OOT_MODULE);
2673
Rusty Russell49668682010-08-05 12:59:10 -06002674 if (get_modinfo(info, "staging")) {
Rusty Russell40dd2562010-08-05 12:59:03 -06002675 add_taint_module(mod, TAINT_CRAP);
2676 printk(KERN_WARNING "%s: module is from the staging directory,"
2677 " the quality is unknown, you have been warned.\n",
2678 mod->name);
2679 }
Rusty Russell22e268e2010-08-05 12:59:05 -06002680
2681 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06002682 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06002683
Rusty Russell40dd2562010-08-05 12:59:03 -06002684 return 0;
2685}
2686
Rusty Russell811d66a2010-08-05 12:59:12 -06002687static void find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002688{
Rusty Russell49668682010-08-05 12:59:10 -06002689 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002690 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06002691 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002692 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002693 mod->crcs = section_addr(info, "__kcrctab");
2694 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002695 sizeof(*mod->gpl_syms),
2696 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002697 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
2698 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002699 "__ksymtab_gpl_future",
2700 sizeof(*mod->gpl_future_syms),
2701 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002702 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002703
2704#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06002705 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002706 sizeof(*mod->unused_syms),
2707 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002708 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
2709 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002710 sizeof(*mod->unused_gpl_syms),
2711 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002712 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002713#endif
2714#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06002715 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002716 sizeof(*mod->ctors), &mod->num_ctors);
2717#endif
2718
2719#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -05002720 mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
2721 sizeof(*mod->tracepoints_ptrs),
2722 &mod->num_tracepoints);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002723#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -04002724#ifdef HAVE_JUMP_LABEL
2725 mod->jump_entries = section_objs(info, "__jump_table",
2726 sizeof(*mod->jump_entries),
2727 &mod->num_jump_entries);
2728#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002729#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06002730 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002731 sizeof(*mod->trace_events),
2732 &mod->num_trace_events);
2733 /*
2734 * This section contains pointers to allocated objects in the trace
2735 * code and not scanning it leads to false positives.
2736 */
2737 kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) *
2738 mod->num_trace_events, GFP_KERNEL);
2739#endif
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05002740#ifdef CONFIG_TRACING
2741 mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
2742 sizeof(*mod->trace_bprintk_fmt_start),
2743 &mod->num_trace_bprintk_fmt);
2744 /*
2745 * This section contains pointers to allocated objects in the trace
2746 * code and not scanning it leads to false positives.
2747 */
2748 kmemleak_scan_area(mod->trace_bprintk_fmt_start,
2749 sizeof(*mod->trace_bprintk_fmt_start) *
2750 mod->num_trace_bprintk_fmt, GFP_KERNEL);
2751#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002752#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2753 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06002754 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002755 sizeof(*mod->ftrace_callsites),
2756 &mod->num_ftrace_callsites);
2757#endif
Rusty Russell22e268e2010-08-05 12:59:05 -06002758
Rusty Russell811d66a2010-08-05 12:59:12 -06002759 mod->extable = section_objs(info, "__ex_table",
2760 sizeof(*mod->extable), &mod->num_exentries);
2761
Rusty Russell49668682010-08-05 12:59:10 -06002762 if (section_addr(info, "__obsparm"))
Rusty Russell22e268e2010-08-05 12:59:05 -06002763 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2764 mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06002765
2766 info->debug = section_objs(info, "__verbose",
2767 sizeof(*info->debug), &info->num_debug);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002768}
2769
Rusty Russell49668682010-08-05 12:59:10 -06002770static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002771{
2772 int i;
2773 void *ptr;
2774
2775 /* Do the allocs. */
2776 ptr = module_alloc_update_bounds(mod->core_size);
2777 /*
2778 * The pointer to this block is stored in the module structure
2779 * which is inside the block. Just mark it as not being a
2780 * leak.
2781 */
2782 kmemleak_not_leak(ptr);
2783 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06002784 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002785
2786 memset(ptr, 0, mod->core_size);
2787 mod->module_core = ptr;
2788
2789 ptr = module_alloc_update_bounds(mod->init_size);
2790 /*
2791 * The pointer to this block is stored in the module structure
2792 * which is inside the block. This block doesn't need to be
2793 * scanned as it contains data and code that will be freed
2794 * after the module is initialized.
2795 */
2796 kmemleak_ignore(ptr);
2797 if (!ptr && mod->init_size) {
2798 module_free(mod, mod->module_core);
Rusty Russelld9131882010-08-05 12:59:08 -06002799 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002800 }
2801 memset(ptr, 0, mod->init_size);
2802 mod->module_init = ptr;
2803
2804 /* Transfer each section which specifies SHF_ALLOC */
Jim Cromie5e124162011-12-06 12:11:31 -07002805 pr_debug("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06002806 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002807 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06002808 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002809
Rusty Russell49668682010-08-05 12:59:10 -06002810 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002811 continue;
2812
Rusty Russell49668682010-08-05 12:59:10 -06002813 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002814 dest = mod->module_init
Rusty Russell49668682010-08-05 12:59:10 -06002815 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002816 else
Rusty Russell49668682010-08-05 12:59:10 -06002817 dest = mod->module_core + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002818
Rusty Russell49668682010-08-05 12:59:10 -06002819 if (shdr->sh_type != SHT_NOBITS)
2820 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002821 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06002822 shdr->sh_addr = (unsigned long)dest;
Jim Cromie5e124162011-12-06 12:11:31 -07002823 pr_debug("\t0x%lx %s\n",
2824 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002825 }
Rusty Russelld9131882010-08-05 12:59:08 -06002826
2827 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002828}
2829
Rusty Russell49668682010-08-05 12:59:10 -06002830static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06002831{
2832 /*
2833 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2834 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2835 * using GPL-only symbols it needs.
2836 */
2837 if (strcmp(mod->name, "ndiswrapper") == 0)
2838 add_taint(TAINT_PROPRIETARY_MODULE);
2839
2840 /* driverloader was caught wrongly pretending to be under GPL */
2841 if (strcmp(mod->name, "driverloader") == 0)
2842 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2843
Matthew Garrettc99af372012-06-22 13:49:31 -04002844 /* lve claims to be GPL but upstream won't provide source */
2845 if (strcmp(mod->name, "lve") == 0)
2846 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2847
Rusty Russell22e268e2010-08-05 12:59:05 -06002848#ifdef CONFIG_MODVERSIONS
2849 if ((mod->num_syms && !mod->crcs)
2850 || (mod->num_gpl_syms && !mod->gpl_crcs)
2851 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2852#ifdef CONFIG_UNUSED_SYMBOLS
2853 || (mod->num_unused_syms && !mod->unused_crcs)
2854 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2855#endif
2856 ) {
2857 return try_to_force_load(mod,
2858 "no versions for exported symbols");
2859 }
2860#endif
2861 return 0;
2862}
2863
2864static void flush_module_icache(const struct module *mod)
2865{
2866 mm_segment_t old_fs;
2867
2868 /* flush the icache in correct context */
2869 old_fs = get_fs();
2870 set_fs(KERNEL_DS);
2871
2872 /*
2873 * Flush the instruction cache, since we've played with text.
2874 * Do it before processing of module parameters, so the module
2875 * can provide parameter accessor functions of its own.
2876 */
2877 if (mod->module_init)
2878 flush_icache_range((unsigned long)mod->module_init,
2879 (unsigned long)mod->module_init
2880 + mod->init_size);
2881 flush_icache_range((unsigned long)mod->module_core,
2882 (unsigned long)mod->module_core + mod->core_size);
2883
2884 set_fs(old_fs);
2885}
2886
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002887int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
2888 Elf_Shdr *sechdrs,
2889 char *secstrings,
2890 struct module *mod)
2891{
2892 return 0;
2893}
2894
Rusty Russell2f3238a2012-10-22 18:09:41 +10302895static struct module *layout_and_allocate(struct load_info *info, int flags)
Rusty Russelld9131882010-08-05 12:59:08 -06002896{
2897 /* Module within temporary copy. */
2898 struct module *mod;
Rusty Russell49668682010-08-05 12:59:10 -06002899 Elf_Shdr *pcpusec;
Rusty Russelld9131882010-08-05 12:59:08 -06002900 int err;
2901
Rusty Russell2f3238a2012-10-22 18:09:41 +10302902 mod = setup_load_info(info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002903 if (IS_ERR(mod))
2904 return mod;
2905
Rusty Russell2f3238a2012-10-22 18:09:41 +10302906 err = check_modinfo(mod, info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06002907 if (err)
2908 return ERR_PTR(err);
2909
2910 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06002911 err = module_frob_arch_sections(info->hdr, info->sechdrs,
2912 info->secstrings, mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002913 if (err < 0)
Rusty Russell6526c532010-08-05 12:59:10 -06002914 goto out;
Rusty Russelld9131882010-08-05 12:59:08 -06002915
Rusty Russell49668682010-08-05 12:59:10 -06002916 pcpusec = &info->sechdrs[info->index.pcpu];
2917 if (pcpusec->sh_size) {
Rusty Russelld9131882010-08-05 12:59:08 -06002918 /* We have a special allocation for this section. */
Rusty Russell49668682010-08-05 12:59:10 -06002919 err = percpu_modalloc(mod,
2920 pcpusec->sh_size, pcpusec->sh_addralign);
Rusty Russelld9131882010-08-05 12:59:08 -06002921 if (err)
Rusty Russell6526c532010-08-05 12:59:10 -06002922 goto out;
Rusty Russell49668682010-08-05 12:59:10 -06002923 pcpusec->sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06002924 }
2925
2926 /* Determine total sizes, and put offsets in sh_entsize. For now
2927 this is done generically; there doesn't appear to be any
2928 special cases for the architectures. */
Rusty Russell49668682010-08-05 12:59:10 -06002929 layout_sections(mod, info);
Rusty Russell49668682010-08-05 12:59:10 -06002930 layout_symtab(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002931
2932 /* Allocate and move to the final place */
Rusty Russell49668682010-08-05 12:59:10 -06002933 err = move_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002934 if (err)
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302935 goto free_percpu;
Rusty Russelld9131882010-08-05 12:59:08 -06002936
2937 /* Module has been copied to its final place now: return it. */
2938 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06002939 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002940 return mod;
2941
Rusty Russelld9131882010-08-05 12:59:08 -06002942free_percpu:
2943 percpu_modfree(mod);
Rusty Russell6526c532010-08-05 12:59:10 -06002944out:
Rusty Russelld9131882010-08-05 12:59:08 -06002945 return ERR_PTR(err);
2946}
2947
2948/* mod is no longer valid after this! */
2949static void module_deallocate(struct module *mod, struct load_info *info)
2950{
Rusty Russelld9131882010-08-05 12:59:08 -06002951 percpu_modfree(mod);
2952 module_free(mod, mod->module_init);
2953 module_free(mod, mod->module_core);
2954}
2955
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002956int __weak module_finalize(const Elf_Ehdr *hdr,
2957 const Elf_Shdr *sechdrs,
2958 struct module *me)
2959{
2960 return 0;
2961}
2962
Rusty Russell811d66a2010-08-05 12:59:12 -06002963static int post_relocation(struct module *mod, const struct load_info *info)
2964{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002965 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002966 sort_extable(mod->extable, mod->extable + mod->num_exentries);
2967
2968 /* Copy relocated percpu area over. */
2969 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
2970 info->sechdrs[info->index.pcpu].sh_size);
2971
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002972 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002973 add_kallsyms(mod, info);
2974
2975 /* Arch-specific module finalizing. */
2976 return module_finalize(info->hdr, info->sechdrs, mod);
2977}
2978
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09302979/* Is this module of this name done loading? No locks held. */
2980static bool finished_loading(const char *name)
2981{
2982 struct module *mod;
2983 bool ret;
2984
2985 mutex_lock(&module_mutex);
2986 mod = find_module(name);
2987 ret = !mod || mod->state != MODULE_STATE_COMING;
2988 mutex_unlock(&module_mutex);
2989
2990 return ret;
2991}
2992
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002993/* Call module constructors. */
2994static void do_mod_ctors(struct module *mod)
2995{
2996#ifdef CONFIG_CONSTRUCTORS
2997 unsigned long i;
2998
2999 for (i = 0; i < mod->num_ctors; i++)
3000 mod->ctors[i]();
3001#endif
3002}
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004/* This is where the real work happens */
Kees Cook34e11692012-10-16 07:31:07 +10303005static int do_init_module(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 int ret = 0;
3008
Alan Sterne041c682006-03-27 01:16:30 -08003009 blocking_notifier_call_chain(&module_notify_list,
3010 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Steven Rostedt94462ad2010-11-29 13:15:42 -05003012 /* Set RO and NX regions for core */
3013 set_section_ro_nx(mod->module_core,
3014 mod->core_text_size,
3015 mod->core_ro_size,
3016 mod->core_size);
3017
3018 /* Set RO and NX regions for init */
3019 set_section_ro_nx(mod->module_init,
3020 mod->init_text_size,
3021 mod->init_ro_size,
3022 mod->init_size);
3023
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003024 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 /* Start the module */
3026 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07003027 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 if (ret < 0) {
3029 /* Init routine failed: abort. Try to protect us from
3030 buggy refcounters. */
3031 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003032 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07003033 module_put(mod);
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02003034 blocking_notifier_call_chain(&module_notify_list,
3035 MODULE_STATE_GOING, mod);
Rusty Russellaf49d922007-10-16 23:26:27 -07003036 free_module(mod);
Rusty Russell6f139092012-09-28 14:31:03 +09303037 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 return ret;
3039 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003040 if (ret > 0) {
Joe Perchesad361c92009-07-06 13:05:40 -07003041 printk(KERN_WARNING
3042"%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n"
3043"%s: loading module anyway...\n",
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003044 __func__, mod->name, ret,
3045 __func__);
3046 dump_stack();
3047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Rusty Russell6f139092012-09-28 14:31:03 +09303049 /* Now it's a first class citizen! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 mod->state = MODULE_STATE_LIVE;
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08003051 blocking_notifier_call_chain(&module_notify_list,
3052 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07003053
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07003054 /* We need to finish all async code before the module init sequence is done */
3055 async_synchronize_full();
3056
Rusty Russell6c5db222008-03-10 11:43:52 -07003057 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 /* Drop initial reference. */
3059 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06003060 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01003061#ifdef CONFIG_KALLSYMS
3062 mod->num_symtab = mod->core_num_syms;
3063 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01003064 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01003065#endif
Jan Glauber01526ed2011-05-19 16:55:26 -06003066 unset_module_init_ro_nx(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 module_free(mod, mod->module_init);
3068 mod->module_init = NULL;
3069 mod->init_size = 0;
Jan Glauber4d103802011-05-19 16:55:25 -06003070 mod->init_ro_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08003072 mutex_unlock(&module_mutex);
Rusty Russell6f139092012-09-28 14:31:03 +09303073 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075 return 0;
3076}
3077
Kees Cook34e11692012-10-16 07:31:07 +10303078static int may_init_module(void)
3079{
3080 if (!capable(CAP_SYS_MODULE) || modules_disabled)
3081 return -EPERM;
3082
3083 return 0;
3084}
3085
3086/* Allocate and load the module: note that size of section 0 is always
3087 zero, and we rely on this for optional sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303088static int load_module(struct load_info *info, const char __user *uargs,
3089 int flags)
Kees Cook34e11692012-10-16 07:31:07 +10303090{
3091 struct module *mod, *old;
3092 long err;
3093
3094 err = module_sig_check(info);
3095 if (err)
3096 goto free_copy;
3097
3098 err = elf_header_check(info);
3099 if (err)
3100 goto free_copy;
3101
3102 /* Figure out module layout, and allocate all the memory. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303103 mod = layout_and_allocate(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303104 if (IS_ERR(mod)) {
3105 err = PTR_ERR(mod);
3106 goto free_copy;
3107 }
3108
3109#ifdef CONFIG_MODULE_SIG
3110 mod->sig_ok = info->sig_ok;
3111 if (!mod->sig_ok)
3112 add_taint_module(mod, TAINT_FORCED_MODULE);
3113#endif
3114
3115 /* Now module is in final location, initialize linked lists, etc. */
3116 err = module_unload_init(mod);
3117 if (err)
3118 goto free_module;
3119
3120 /* Now we've got everything in the final locations, we can
3121 * find optional sections. */
3122 find_module_sections(mod, info);
3123
3124 err = check_module_license_and_versions(mod);
3125 if (err)
3126 goto free_unload;
3127
3128 /* Set up MODINFO_ATTR fields */
3129 setup_modinfo(mod, info);
3130
3131 /* Fix up syms, so that st_value is a pointer to location. */
3132 err = simplify_symbols(mod, info);
3133 if (err < 0)
3134 goto free_modinfo;
3135
3136 err = apply_relocations(mod, info);
3137 if (err < 0)
3138 goto free_modinfo;
3139
3140 err = post_relocation(mod, info);
3141 if (err < 0)
3142 goto free_modinfo;
3143
3144 flush_module_icache(mod);
3145
3146 /* Now copy in args */
3147 mod->args = strndup_user(uargs, ~0UL >> 1);
3148 if (IS_ERR(mod->args)) {
3149 err = PTR_ERR(mod->args);
3150 goto free_arch_cleanup;
3151 }
3152
3153 /* Mark state as coming so strong_try_module_get() ignores us. */
3154 mod->state = MODULE_STATE_COMING;
3155
3156 /* Now sew it into the lists so we can get lockdep and oops
3157 * info during argument parsing. No one should access us, since
3158 * strong_try_module_get() will fail.
3159 * lockdep/oops can run asynchronous, so use the RCU list insertion
3160 * function to insert in a way safe to concurrent readers.
3161 * The mutex protects against concurrent writers.
3162 */
3163again:
3164 mutex_lock(&module_mutex);
3165 if ((old = find_module(mod->name)) != NULL) {
3166 if (old->state == MODULE_STATE_COMING) {
3167 /* Wait in case it fails to load. */
3168 mutex_unlock(&module_mutex);
3169 err = wait_event_interruptible(module_wq,
3170 finished_loading(mod->name));
3171 if (err)
3172 goto free_arch_cleanup;
3173 goto again;
3174 }
3175 err = -EEXIST;
3176 goto unlock;
3177 }
3178
3179 /* This has to be done once we're sure module name is unique. */
3180 dynamic_debug_setup(info->debug, info->num_debug);
3181
3182 /* Find duplicate symbols */
3183 err = verify_export_symbols(mod);
3184 if (err < 0)
3185 goto ddebug;
3186
3187 module_bug_finalize(info->hdr, info->sechdrs, mod);
3188 list_add_rcu(&mod->list, &modules);
3189 mutex_unlock(&module_mutex);
3190
3191 /* Module is ready to execute: parsing args may do that. */
3192 err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
3193 -32768, 32767, &ddebug_dyndbg_module_param_cb);
3194 if (err < 0)
3195 goto unlink;
3196
3197 /* Link in to syfs. */
3198 err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
3199 if (err < 0)
3200 goto unlink;
3201
3202 /* Get rid of temporary copy. */
3203 free_copy(info);
3204
3205 /* Done! */
3206 trace_module_load(mod);
3207
3208 return do_init_module(mod);
3209
3210 unlink:
3211 mutex_lock(&module_mutex);
3212 /* Unlink carefully: kallsyms could be walking list. */
3213 list_del_rcu(&mod->list);
3214 module_bug_cleanup(mod);
3215 wake_up_all(&module_wq);
3216 ddebug:
3217 dynamic_debug_remove(info->debug);
3218 unlock:
3219 mutex_unlock(&module_mutex);
3220 synchronize_sched();
3221 kfree(mod->args);
3222 free_arch_cleanup:
3223 module_arch_cleanup(mod);
3224 free_modinfo:
3225 free_modinfo(mod);
3226 free_unload:
3227 module_unload_free(mod);
3228 free_module:
3229 module_deallocate(mod, info);
3230 free_copy:
3231 free_copy(info);
3232 return err;
3233}
3234
3235SYSCALL_DEFINE3(init_module, void __user *, umod,
3236 unsigned long, len, const char __user *, uargs)
3237{
3238 int err;
3239 struct load_info info = { };
3240
3241 err = may_init_module();
3242 if (err)
3243 return err;
3244
3245 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3246 umod, len, uargs);
3247
3248 err = copy_module_from_user(umod, len, &info);
3249 if (err)
3250 return err;
3251
Rusty Russell2f3238a2012-10-22 18:09:41 +10303252 return load_module(&info, uargs, 0);
Kees Cook34e11692012-10-16 07:31:07 +10303253}
3254
Rusty Russell2f3238a2012-10-22 18:09:41 +10303255SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
Kees Cook34e11692012-10-16 07:31:07 +10303256{
3257 int err;
3258 struct load_info info = { };
3259
3260 err = may_init_module();
3261 if (err)
3262 return err;
3263
Rusty Russell2f3238a2012-10-22 18:09:41 +10303264 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3265
3266 if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
3267 |MODULE_INIT_IGNORE_VERMAGIC))
3268 return -EINVAL;
Kees Cook34e11692012-10-16 07:31:07 +10303269
3270 err = copy_module_from_fd(fd, &info);
3271 if (err)
3272 return err;
3273
Rusty Russell2f3238a2012-10-22 18:09:41 +10303274 return load_module(&info, uargs, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303275}
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277static inline int within(unsigned long addr, void *start, unsigned long size)
3278{
3279 return ((void *)addr >= start && (void *)addr < start + size);
3280}
3281
3282#ifdef CONFIG_KALLSYMS
3283/*
3284 * This ignores the intensely annoying "mapping symbols" found
3285 * in ARM ELF files: $a, $t and $d.
3286 */
3287static inline int is_arm_mapping_symbol(const char *str)
3288{
Daniel Walker22a8bde2007-10-18 03:06:07 -07003289 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 && (str[2] == '\0' || str[2] == '.');
3291}
3292
3293static const char *get_ksymbol(struct module *mod,
3294 unsigned long addr,
3295 unsigned long *size,
3296 unsigned long *offset)
3297{
3298 unsigned int i, best = 0;
3299 unsigned long nextval;
3300
3301 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003302 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003304 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 nextval = (unsigned long)mod->module_core+mod->core_text_size;
3306
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003307 /* Scan for closest preceding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07003308 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 for (i = 1; i < mod->num_symtab; i++) {
3310 if (mod->symtab[i].st_shndx == SHN_UNDEF)
3311 continue;
3312
3313 /* We ignore unnamed symbols: they're uninformative
3314 * and inserted at a whim. */
3315 if (mod->symtab[i].st_value <= addr
3316 && mod->symtab[i].st_value > mod->symtab[best].st_value
3317 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3318 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3319 best = i;
3320 if (mod->symtab[i].st_value > addr
3321 && mod->symtab[i].st_value < nextval
3322 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
3323 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
3324 nextval = mod->symtab[i].st_value;
3325 }
3326
3327 if (!best)
3328 return NULL;
3329
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003330 if (size)
3331 *size = nextval - mod->symtab[best].st_value;
3332 if (offset)
3333 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 return mod->strtab + mod->symtab[best].st_name;
3335}
3336
Rusty Russell6dd06c92008-01-29 17:13:22 -05003337/* For kallsyms to ask for address resolution. NULL means not found. Careful
3338 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003339const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05003340 unsigned long *size,
3341 unsigned long *offset,
3342 char **modname,
3343 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344{
3345 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003346 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Rusty Russellcb2a5202008-01-14 00:55:03 -08003348 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003349 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003350 if (within_module_init(addr, mod) ||
3351 within_module_core(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07003352 if (modname)
3353 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08003354 ret = get_ksymbol(mod, addr, size, offset);
3355 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 }
3357 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05003358 /* Make a copy in here where it's safe */
3359 if (ret) {
3360 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
3361 ret = namebuf;
3362 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003363 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003364 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365}
3366
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003367int lookup_module_symbol_name(unsigned long addr, char *symname)
3368{
3369 struct module *mod;
3370
Rusty Russellcb2a5202008-01-14 00:55:03 -08003371 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003372 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003373 if (within_module_init(addr, mod) ||
3374 within_module_core(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003375 const char *sym;
3376
3377 sym = get_ksymbol(mod, addr, NULL, NULL);
3378 if (!sym)
3379 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07003380 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003381 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003382 return 0;
3383 }
3384 }
3385out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003386 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003387 return -ERANGE;
3388}
3389
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003390int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
3391 unsigned long *offset, char *modname, char *name)
3392{
3393 struct module *mod;
3394
Rusty Russellcb2a5202008-01-14 00:55:03 -08003395 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003396 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003397 if (within_module_init(addr, mod) ||
3398 within_module_core(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003399 const char *sym;
3400
3401 sym = get_ksymbol(mod, addr, size, offset);
3402 if (!sym)
3403 goto out;
3404 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07003405 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003406 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07003407 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003408 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003409 return 0;
3410 }
3411 }
3412out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003413 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003414 return -ERANGE;
3415}
3416
Alexey Dobriyanea078902007-05-08 00:28:39 -07003417int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
3418 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419{
3420 struct module *mod;
3421
Rusty Russellcb2a5202008-01-14 00:55:03 -08003422 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003423 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 if (symnum < mod->num_symtab) {
3425 *value = mod->symtab[symnum].st_value;
3426 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07003427 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07003428 KSYM_NAME_LEN);
3429 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06003430 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003431 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 }
3434 symnum -= mod->num_symtab;
3435 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003436 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07003437 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438}
3439
3440static unsigned long mod_find_symname(struct module *mod, const char *name)
3441{
3442 unsigned int i;
3443
3444 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08003445 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
3446 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 return mod->symtab[i].st_value;
3448 return 0;
3449}
3450
3451/* Look for this name: can be of form module:name. */
3452unsigned long module_kallsyms_lookup_name(const char *name)
3453{
3454 struct module *mod;
3455 char *colon;
3456 unsigned long ret = 0;
3457
3458 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08003459 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 if ((colon = strchr(name, ':')) != NULL) {
3461 *colon = '\0';
3462 if ((mod = find_module(name)) != NULL)
3463 ret = mod_find_symname(mod, colon+1);
3464 *colon = ':';
3465 } else {
Andi Kleend72b3752008-08-30 10:09:00 +02003466 list_for_each_entry_rcu(mod, &modules, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 if ((ret = mod_find_symname(mod, name)) != 0)
3468 break;
3469 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003470 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 return ret;
3472}
Anders Kaseorg75a66612008-12-05 19:03:58 -05003473
3474int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
3475 struct module *, unsigned long),
3476 void *data)
3477{
3478 struct module *mod;
3479 unsigned int i;
3480 int ret;
3481
3482 list_for_each_entry(mod, &modules, list) {
3483 for (i = 0; i < mod->num_symtab; i++) {
3484 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
3485 mod, mod->symtab[i].st_value);
3486 if (ret != 0)
3487 return ret;
3488 }
3489 }
3490 return 0;
3491}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492#endif /* CONFIG_KALLSYMS */
3493
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003494static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003495{
3496 int bx = 0;
3497
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003498 if (mod->taints ||
3499 mod->state == MODULE_STATE_GOING ||
3500 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003501 buf[bx++] = '(';
Kay Sieverscca3e702012-01-13 09:32:15 +10303502 bx += module_flags_taint(mod, buf + bx);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003503 /* Show a - for module-is-being-unloaded */
3504 if (mod->state == MODULE_STATE_GOING)
3505 buf[bx++] = '-';
3506 /* Show a + for module-is-being-loaded */
3507 if (mod->state == MODULE_STATE_COMING)
3508 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003509 buf[bx++] = ')';
3510 }
3511 buf[bx] = '\0';
3512
3513 return buf;
3514}
3515
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003516#ifdef CONFIG_PROC_FS
3517/* Called by the /proc file system to return a list of modules. */
3518static void *m_start(struct seq_file *m, loff_t *pos)
3519{
3520 mutex_lock(&module_mutex);
3521 return seq_list_start(&modules, *pos);
3522}
3523
3524static void *m_next(struct seq_file *m, void *p, loff_t *pos)
3525{
3526 return seq_list_next(p, &modules, pos);
3527}
3528
3529static void m_stop(struct seq_file *m, void *p)
3530{
3531 mutex_unlock(&module_mutex);
3532}
3533
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534static int m_show(struct seq_file *m, void *p)
3535{
3536 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003537 char buf[8];
3538
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05003539 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 mod->name, mod->init_size + mod->core_size);
3541 print_unload_info(m, mod);
3542
3543 /* Informative for users. */
3544 seq_printf(m, " %s",
3545 mod->state == MODULE_STATE_GOING ? "Unloading":
3546 mod->state == MODULE_STATE_COMING ? "Loading":
3547 "Live");
3548 /* Used by oprofile and other similar tools. */
Kees Cook9f36e2c2011-03-22 16:34:22 -07003549 seq_printf(m, " 0x%pK", mod->module_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003551 /* Taints info */
3552 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003553 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003554
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 seq_printf(m, "\n");
3556 return 0;
3557}
3558
3559/* Format: modulename size refcount deps address
3560
3561 Where refcount is a number or -, and deps is a comma-separated list
3562 of depends or -.
3563*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003564static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 .start = m_start,
3566 .next = m_next,
3567 .stop = m_stop,
3568 .show = m_show
3569};
3570
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003571static int modules_open(struct inode *inode, struct file *file)
3572{
3573 return seq_open(file, &modules_op);
3574}
3575
3576static const struct file_operations proc_modules_operations = {
3577 .open = modules_open,
3578 .read = seq_read,
3579 .llseek = seq_lseek,
3580 .release = seq_release,
3581};
3582
3583static int __init proc_modules_init(void)
3584{
3585 proc_create("modules", 0, NULL, &proc_modules_operations);
3586 return 0;
3587}
3588module_init(proc_modules_init);
3589#endif
3590
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591/* Given an address, look for it in the module exception tables. */
3592const struct exception_table_entry *search_module_extables(unsigned long addr)
3593{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 const struct exception_table_entry *e = NULL;
3595 struct module *mod;
3596
Rusty Russell24da1cb2007-07-15 23:41:46 -07003597 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003598 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 if (mod->num_exentries == 0)
3600 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003601
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 e = search_extable(mod->extable,
3603 mod->extable + mod->num_exentries - 1,
3604 addr);
3605 if (e)
3606 break;
3607 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07003608 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609
3610 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07003611 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 return e;
3613}
3614
Ingo Molnar4d435f92006-07-03 00:24:24 -07003615/*
Rusty Russelle6104992009-03-31 13:05:31 -06003616 * is_module_address - is this address inside a module?
3617 * @addr: the address to check.
3618 *
3619 * See is_module_text_address() if you simply want to see if the address
3620 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07003621 */
Rusty Russelle6104992009-03-31 13:05:31 -06003622bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07003623{
Rusty Russelle6104992009-03-31 13:05:31 -06003624 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003625
Rusty Russell24da1cb2007-07-15 23:41:46 -07003626 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06003627 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07003628 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07003629
Rusty Russelle6104992009-03-31 13:05:31 -06003630 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003631}
3632
Rusty Russelle6104992009-03-31 13:05:31 -06003633/*
3634 * __module_address - get the module which contains an address.
3635 * @addr: the address.
3636 *
3637 * Must be called with preempt disabled or module mutex held so that
3638 * module doesn't get freed during this.
3639 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07003640struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641{
3642 struct module *mod;
3643
Rusty Russell3a642e92008-07-22 19:24:28 -05003644 if (addr < module_addr_min || addr > module_addr_max)
3645 return NULL;
3646
Andi Kleend72b3752008-08-30 10:09:00 +02003647 list_for_each_entry_rcu(mod, &modules, list)
Rusty Russelle6104992009-03-31 13:05:31 -06003648 if (within_module_core(addr, mod)
3649 || within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 return mod;
3651 return NULL;
3652}
Tim Abbottc6b37802008-12-05 19:03:59 -05003653EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Rusty Russelle6104992009-03-31 13:05:31 -06003655/*
3656 * is_module_text_address - is this address inside module code?
3657 * @addr: the address to check.
3658 *
3659 * See is_module_address() if you simply want to see if the address is
3660 * anywhere in a module. See kernel_text_address() for testing if an
3661 * address corresponds to kernel or module code.
3662 */
3663bool is_module_text_address(unsigned long addr)
3664{
3665 bool ret;
3666
3667 preempt_disable();
3668 ret = __module_text_address(addr) != NULL;
3669 preempt_enable();
3670
3671 return ret;
3672}
3673
3674/*
3675 * __module_text_address - get the module whose code contains an address.
3676 * @addr: the address.
3677 *
3678 * Must be called with preempt disabled or module mutex held so that
3679 * module doesn't get freed during this.
3680 */
3681struct module *__module_text_address(unsigned long addr)
3682{
3683 struct module *mod = __module_address(addr);
3684 if (mod) {
3685 /* Make sure it's within the text section. */
3686 if (!within(addr, mod->module_init, mod->init_text_size)
3687 && !within(addr, mod->module_core, mod->core_text_size))
3688 mod = NULL;
3689 }
3690 return mod;
3691}
Tim Abbottc6b37802008-12-05 19:03:59 -05003692EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06003693
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694/* Don't grab lock, we're oopsing. */
3695void print_modules(void)
3696{
3697 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07003698 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
Linus Torvaldsb2311252009-06-16 11:07:14 -07003700 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02003701 /* Most callers should already have preempt disabled, but make sure */
3702 preempt_disable();
3703 list_for_each_entry_rcu(mod, &modules, list)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003704 printk(" %s%s", mod->name, module_flags(mod, buf));
Andi Kleend72b3752008-08-30 10:09:00 +02003705 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003706 if (last_unloaded_module[0])
3707 printk(" [last unloaded: %s]", last_unloaded_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 printk("\n");
3709}
3710
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003712/* Generate the signature for all relevant module structures here.
3713 * If these change, we don't want to try to parse the module. */
3714void module_layout(struct module *mod,
3715 struct modversion_info *ver,
3716 struct kernel_param *kp,
3717 struct kernel_symbol *ks,
Mathieu Desnoyers65498642011-01-26 17:26:22 -05003718 struct tracepoint * const *tp)
Rusty Russell8c8ef422009-03-31 13:05:34 -06003719{
3720}
3721EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722#endif