blob: 437a74a7524a7f592f669dbdc91a6c90503959ae [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*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#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>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040024#include <linux/fs.h>
Roland McGrath6d760132007-10-16 23:26:40 -070025#include <linux/sysfs.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070026#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/slab.h>
28#include <linux/vmalloc.h>
29#include <linux/elf.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040030#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/seq_file.h>
32#include <linux/syscalls.h>
33#include <linux/fcntl.h>
34#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080035#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/cpu.h>
37#include <linux/moduleparam.h>
38#include <linux/errno.h>
39#include <linux/err.h>
40#include <linux/vermagic.h>
41#include <linux/notifier.h>
Al Virof6a57032006-10-18 01:47:25 -040042#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/stop_machine.h>
44#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070045#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080046#include <linux/mutex.h>
Andi Kleend72b3752008-08-30 10:09:00 +020047#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/cacheflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070050#include <asm/mmu_context.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020051#include <linux/license.h>
Christoph Lameter6d762392008-02-08 04:18:42 -080052#include <asm/sections.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040053#include <linux/tracepoint.h>
Steven Rostedt90d595f2008-08-14 15:45:09 -040054#include <linux/ftrace.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080055#include <linux/async.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090056#include <linux/percpu.h>
Catalin Marinas4f2294b2009-06-11 13:23:20 +010057#include <linux/kmemleak.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040058#include <linux/jump_label.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Li Zefan7ead8b82009-08-17 16:56:28 +080060#define CREATE_TRACE_POINTS
61#include <trace/events/module.h>
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#if 0
64#define DEBUGP printk
65#else
66#define DEBUGP(fmt , a...)
67#endif
68
69#ifndef ARCH_SHF_SMALL
70#define ARCH_SHF_SMALL 0
71#endif
72
73/* If this is set, the section belongs in the init part of the module */
74#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
75
Rusty Russell75676502010-06-05 11:17:36 -060076/*
77 * Mutex protects:
78 * 1) List of modules (also safely readable with preempt_disable),
79 * 2) module_use links,
80 * 3) module_addr_min/module_addr_max.
Andi Kleend72b3752008-08-30 10:09:00 +020081 * (delete uses stop_machine/add uses RCU list operations). */
Tim Abbottc6b37802008-12-05 19:03:59 -050082DEFINE_MUTEX(module_mutex);
83EXPORT_SYMBOL_GPL(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static LIST_HEAD(modules);
Jason Wessel67fc4e02010-05-20 21:04:21 -050085#ifdef CONFIG_KGDB_KDB
86struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
87#endif /* CONFIG_KGDB_KDB */
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Stephen Rothwell19e45292009-04-14 17:27:18 +100090/* Block module loading/unloading? */
91int modules_disabled = 0;
92
Rusty Russellc9a3ba52008-01-29 17:13:18 -050093/* Waiting for a module to finish initializing? */
94static DECLARE_WAIT_QUEUE_HEAD(module_wq);
95
Alan Sterne041c682006-03-27 01:16:30 -080096static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Rusty Russell75676502010-06-05 11:17:36 -060098/* Bounds of module allocation, for speeding __module_address.
99 * Protected by module_mutex. */
Rusty Russell3a642e92008-07-22 19:24:28 -0500100static unsigned long module_addr_min = -1UL, module_addr_max = 0;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102int register_module_notifier(struct notifier_block * nb)
103{
Alan Sterne041c682006-03-27 01:16:30 -0800104 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106EXPORT_SYMBOL(register_module_notifier);
107
108int unregister_module_notifier(struct notifier_block * nb)
109{
Alan Sterne041c682006-03-27 01:16:30 -0800110 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112EXPORT_SYMBOL(unregister_module_notifier);
113
Rusty Russelleded41c2010-08-05 12:59:07 -0600114struct load_info {
115 Elf_Ehdr *hdr;
116 unsigned long len;
117 Elf_Shdr *sechdrs;
Rusty Russell6526c532010-08-05 12:59:10 -0600118 char *secstrings, *strtab;
Rusty Russelld9131882010-08-05 12:59:08 -0600119 unsigned long *strmap;
120 unsigned long symoffs, stroffs;
Rusty Russell811d66a2010-08-05 12:59:12 -0600121 struct _ddebug *debug;
122 unsigned int num_debug;
Rusty Russelleded41c2010-08-05 12:59:07 -0600123 struct {
124 unsigned int sym, str, mod, vers, info, pcpu;
125 } index;
126};
127
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800128/* We require a truly strong try_module_get(): 0 means failure due to
129 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static inline int strong_try_module_get(struct module *mod)
131{
132 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500133 return -EBUSY;
134 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500136 else
137 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700140static inline void add_taint_module(struct module *mod, unsigned flag)
141{
142 add_taint(flag);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700143 mod->taints |= (1U << flag);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700144}
145
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200146/*
147 * A thread that wants to hold a reference to a module only while it
148 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
150void __module_put_and_exit(struct module *mod, long code)
151{
152 module_put(mod);
153 do_exit(code);
154}
155EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/* Find a module section: 0 means not found. */
Rusty Russell49668682010-08-05 12:59:10 -0600158static unsigned int find_sec(const struct load_info *info, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 unsigned int i;
161
Rusty Russell49668682010-08-05 12:59:10 -0600162 for (i = 1; i < info->hdr->e_shnum; i++) {
163 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* Alloc bit cleared means "ignore it." */
Rusty Russell49668682010-08-05 12:59:10 -0600165 if ((shdr->sh_flags & SHF_ALLOC)
166 && strcmp(info->secstrings + shdr->sh_name, name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return i;
Rusty Russell49668682010-08-05 12:59:10 -0600168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 0;
170}
171
Rusty Russell5e458cc2008-10-22 10:00:13 -0500172/* Find a module section, or NULL. */
Rusty Russell49668682010-08-05 12:59:10 -0600173static void *section_addr(const struct load_info *info, const char *name)
Rusty Russell5e458cc2008-10-22 10:00:13 -0500174{
175 /* Section 0 has sh_addr 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600176 return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500177}
178
179/* Find a module section, or NULL. Fill in number of "objects" in section. */
Rusty Russell49668682010-08-05 12:59:10 -0600180static void *section_objs(const struct load_info *info,
Rusty Russell5e458cc2008-10-22 10:00:13 -0500181 const char *name,
182 size_t object_size,
183 unsigned int *num)
184{
Rusty Russell49668682010-08-05 12:59:10 -0600185 unsigned int sec = find_sec(info, name);
Rusty Russell5e458cc2008-10-22 10:00:13 -0500186
187 /* Section 0 has sh_addr 0 and sh_size 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600188 *num = info->sechdrs[sec].sh_size / object_size;
189 return (void *)info->sechdrs[sec].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/* Provided by the linker */
193extern const struct kernel_symbol __start___ksymtab[];
194extern const struct kernel_symbol __stop___ksymtab[];
195extern const struct kernel_symbol __start___ksymtab_gpl[];
196extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800197extern const struct kernel_symbol __start___ksymtab_gpl_future[];
198extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199extern const unsigned long __start___kcrctab[];
200extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800201extern const unsigned long __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500202#ifdef CONFIG_UNUSED_SYMBOLS
203extern const struct kernel_symbol __start___ksymtab_unused[];
204extern const struct kernel_symbol __stop___ksymtab_unused[];
205extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
206extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700207extern const unsigned long __start___kcrctab_unused[];
208extern const unsigned long __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500209#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211#ifndef CONFIG_MODVERSIONS
212#define symversion(base, idx) NULL
213#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800214#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#endif
216
Rusty Russelldafd0942008-07-22 19:24:25 -0500217static bool each_symbol_in_section(const struct symsearch *arr,
218 unsigned int arrsize,
219 struct module *owner,
220 bool (*fn)(const struct symsearch *syms,
221 struct module *owner,
222 unsigned int symnum, void *data),
223 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100224{
Rusty Russelldafd0942008-07-22 19:24:25 -0500225 unsigned int i, j;
226
227 for (j = 0; j < arrsize; j++) {
228 for (i = 0; i < arr[j].stop - arr[j].start; i++)
229 if (fn(&arr[j], owner, i, data))
230 return true;
231 }
232
233 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100234}
235
Rusty Russelldafd0942008-07-22 19:24:25 -0500236/* Returns true as soon as fn returns true, otherwise false. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500237bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
238 unsigned int symnum, void *data), void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700239{
Rusty Russelldafd0942008-07-22 19:24:25 -0500240 struct module *mod;
Linus Torvalds44032e62010-08-05 12:59:05 -0600241 static const struct symsearch arr[] = {
Rusty Russelldafd0942008-07-22 19:24:25 -0500242 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
243 NOT_GPL_ONLY, false },
244 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
245 __start___kcrctab_gpl,
246 GPL_ONLY, false },
247 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
248 __start___kcrctab_gpl_future,
249 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500250#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500251 { __start___ksymtab_unused, __stop___ksymtab_unused,
252 __start___kcrctab_unused,
253 NOT_GPL_ONLY, true },
254 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
255 __start___kcrctab_unused_gpl,
256 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500257#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500258 };
259
260 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
261 return true;
262
Andi Kleend72b3752008-08-30 10:09:00 +0200263 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500264 struct symsearch arr[] = {
265 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
266 NOT_GPL_ONLY, false },
267 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
268 mod->gpl_crcs,
269 GPL_ONLY, false },
270 { mod->gpl_future_syms,
271 mod->gpl_future_syms + mod->num_gpl_future_syms,
272 mod->gpl_future_crcs,
273 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500274#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500275 { mod->unused_syms,
276 mod->unused_syms + mod->num_unused_syms,
277 mod->unused_crcs,
278 NOT_GPL_ONLY, true },
279 { mod->unused_gpl_syms,
280 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
281 mod->unused_gpl_crcs,
282 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500283#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500284 };
285
286 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
287 return true;
288 }
289 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700290}
Tim Abbottc6b37802008-12-05 19:03:59 -0500291EXPORT_SYMBOL_GPL(each_symbol);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700292
Rusty Russelldafd0942008-07-22 19:24:25 -0500293struct find_symbol_arg {
294 /* Input */
295 const char *name;
296 bool gplok;
297 bool warn;
298
299 /* Output */
300 struct module *owner;
301 const unsigned long *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500302 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500303};
304
305static bool find_symbol_in_section(const struct symsearch *syms,
306 struct module *owner,
307 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500308{
Rusty Russelldafd0942008-07-22 19:24:25 -0500309 struct find_symbol_arg *fsa = data;
310
311 if (strcmp(syms->start[symnum].name, fsa->name) != 0)
312 return false;
313
314 if (!fsa->gplok) {
315 if (syms->licence == GPL_ONLY)
316 return false;
317 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
318 printk(KERN_WARNING "Symbol %s is being used "
319 "by a non-GPL module, which will not "
320 "be allowed in the future\n", fsa->name);
321 printk(KERN_WARNING "Please see the file "
322 "Documentation/feature-removal-schedule.txt "
323 "in the kernel source tree for more details.\n");
324 }
325 }
326
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500327#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500328 if (syms->unused && fsa->warn) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500329 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
Rusty Russelldafd0942008-07-22 19:24:25 -0500330 "however this module is using it.\n", fsa->name);
Rusty Russellad9546c2008-05-01 21:14:59 -0500331 printk(KERN_WARNING
332 "This symbol will go away in the future.\n");
333 printk(KERN_WARNING
334 "Please evalute if this is the right api to use and if "
335 "it really is, submit a report the linux kernel "
336 "mailinglist together with submitting your code for "
337 "inclusion.\n");
338 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500339#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500340
341 fsa->owner = owner;
342 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500343 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500344 return true;
345}
346
Tim Abbott414fd312008-12-05 19:03:56 -0500347/* Find a symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600348 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500349const struct kernel_symbol *find_symbol(const char *name,
350 struct module **owner,
351 const unsigned long **crc,
352 bool gplok,
353 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Rusty Russelldafd0942008-07-22 19:24:25 -0500355 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Rusty Russelldafd0942008-07-22 19:24:25 -0500357 fsa.name = name;
358 fsa.gplok = gplok;
359 fsa.warn = warn;
360
361 if (each_symbol(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500362 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500363 *owner = fsa.owner;
364 if (crc)
365 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500366 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 DEBUGP("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500370 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
Tim Abbottc6b37802008-12-05 19:03:59 -0500372EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/* Search for module by name: must hold module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500375struct module *find_module(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 struct module *mod;
378
379 list_for_each_entry(mod, &modules, list) {
380 if (strcmp(mod->name, name) == 0)
381 return mod;
382 }
383 return NULL;
384}
Tim Abbottc6b37802008-12-05 19:03:59 -0500385EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900388
Tejun Heo259354d2010-03-10 18:56:10 +0900389static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900390{
Tejun Heo259354d2010-03-10 18:56:10 +0900391 return mod->percpu;
392}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900393
Tejun Heo259354d2010-03-10 18:56:10 +0900394static int percpu_modalloc(struct module *mod,
395 unsigned long size, unsigned long align)
396{
Tejun Heofbf59bc2009-02-20 16:29:08 +0900397 if (align > PAGE_SIZE) {
398 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
Tejun Heo259354d2010-03-10 18:56:10 +0900399 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900400 align = PAGE_SIZE;
401 }
402
Tejun Heo259354d2010-03-10 18:56:10 +0900403 mod->percpu = __alloc_reserved_percpu(size, align);
404 if (!mod->percpu) {
Tejun Heofbf59bc2009-02-20 16:29:08 +0900405 printk(KERN_WARNING
Rusty Russelld9131882010-08-05 12:59:08 -0600406 "%s: Could not allocate %lu bytes percpu data\n",
407 mod->name, size);
Tejun Heo259354d2010-03-10 18:56:10 +0900408 return -ENOMEM;
409 }
410 mod->percpu_size = size;
411 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900412}
413
Tejun Heo259354d2010-03-10 18:56:10 +0900414static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900415{
Tejun Heo259354d2010-03-10 18:56:10 +0900416 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900417}
418
Rusty Russell49668682010-08-05 12:59:10 -0600419static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900420{
Rusty Russell49668682010-08-05 12:59:10 -0600421 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900422}
423
Tejun Heo259354d2010-03-10 18:56:10 +0900424static void percpu_modcopy(struct module *mod,
425 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900426{
427 int cpu;
428
429 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900430 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900431}
432
Tejun Heo10fad5e2010-03-10 18:57:54 +0900433/**
434 * is_module_percpu_address - test whether address is from module static percpu
435 * @addr: address to test
436 *
437 * Test whether @addr belongs to module static percpu area.
438 *
439 * RETURNS:
440 * %true if @addr is from module static percpu area
441 */
442bool is_module_percpu_address(unsigned long addr)
443{
444 struct module *mod;
445 unsigned int cpu;
446
447 preempt_disable();
448
449 list_for_each_entry_rcu(mod, &modules, list) {
450 if (!mod->percpu_size)
451 continue;
452 for_each_possible_cpu(cpu) {
453 void *start = per_cpu_ptr(mod->percpu, cpu);
454
455 if ((void *)addr >= start &&
456 (void *)addr < start + mod->percpu_size) {
457 preempt_enable();
458 return true;
459 }
460 }
461 }
462
463 preempt_enable();
464 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700465}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900468
Tejun Heo259354d2010-03-10 18:56:10 +0900469static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 return NULL;
472}
Tejun Heo259354d2010-03-10 18:56:10 +0900473static inline int percpu_modalloc(struct module *mod,
474 unsigned long size, unsigned long align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Tejun Heo259354d2010-03-10 18:56:10 +0900476 return -ENOMEM;
477}
478static inline void percpu_modfree(struct module *mod)
479{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
Rusty Russell49668682010-08-05 12:59:10 -0600481static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 return 0;
484}
Tejun Heo259354d2010-03-10 18:56:10 +0900485static inline void percpu_modcopy(struct module *mod,
486 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 /* pcpusec should be 0, and size of that section should be 0. */
489 BUG_ON(size != 0);
490}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900491bool is_module_percpu_address(unsigned long addr)
492{
493 return false;
494}
Tejun Heo6b588c12009-02-20 16:29:07 +0900495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496#endif /* CONFIG_SMP */
497
Matt Domschc988d2b2005-06-23 22:05:15 -0700498#define MODINFO_ATTR(field) \
499static void setup_modinfo_##field(struct module *mod, const char *s) \
500{ \
501 mod->field = kstrdup(s, GFP_KERNEL); \
502} \
503static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
504 struct module *mod, char *buffer) \
505{ \
506 return sprintf(buffer, "%s\n", mod->field); \
507} \
508static int modinfo_##field##_exists(struct module *mod) \
509{ \
510 return mod->field != NULL; \
511} \
512static void free_modinfo_##field(struct module *mod) \
513{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700514 kfree(mod->field); \
515 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700516} \
517static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900518 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700519 .show = show_modinfo_##field, \
520 .setup = setup_modinfo_##field, \
521 .test = modinfo_##field##_exists, \
522 .free = free_modinfo_##field, \
523};
524
525MODINFO_ATTR(version);
526MODINFO_ATTR(srcversion);
527
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100528static char last_unloaded_module[MODULE_NAME_LEN+1];
529
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800530#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400531
532EXPORT_TRACEPOINT_SYMBOL(module_get);
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600535static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600537 mod->refptr = alloc_percpu(struct module_ref);
538 if (!mod->refptr)
539 return -ENOMEM;
540
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700541 INIT_LIST_HEAD(&mod->source_list);
542 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* Hold reference count during initialization. */
Nick Piggin5fbfb182010-04-01 19:09:40 +1100545 __this_cpu_write(mod->refptr->incs, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* Backwards compatibility macros put refcount during init. */
547 mod->waiter = current;
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600548
549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552/* Does a already use b? */
553static int already_uses(struct module *a, struct module *b)
554{
555 struct module_use *use;
556
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700557 list_for_each_entry(use, &b->source_list, source_list) {
558 if (use->source == a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 DEBUGP("%s uses %s!\n", a->name, b->name);
560 return 1;
561 }
562 }
563 DEBUGP("%s does not use %s!\n", a->name, b->name);
564 return 0;
565}
566
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700567/*
568 * Module a uses b
569 * - we add 'a' as a "source", 'b' as a "target" of module use
570 * - the module_use is added to the list of 'b' sources (so
571 * 'b' can walk the list to see who sourced them), and of 'a'
572 * targets (so 'a' can see what modules it targets).
573 */
574static int add_module_usage(struct module *a, struct module *b)
575{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700576 struct module_use *use;
577
578 DEBUGP("Allocating new usage for %s.\n", a->name);
579 use = kmalloc(sizeof(*use), GFP_ATOMIC);
580 if (!use) {
581 printk(KERN_WARNING "%s: out of memory loading\n", a->name);
582 return -ENOMEM;
583 }
584
585 use->source = a;
586 use->target = b;
587 list_add(&use->source_list, &b->source_list);
588 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700589 return 0;
590}
591
Rusty Russell75676502010-06-05 11:17:36 -0600592/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600593int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600595 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100596
Rusty Russell9bea7f22010-06-05 11:17:37 -0600597 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700598 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700599
Rusty Russell9bea7f22010-06-05 11:17:37 -0600600 /* If module isn't available, we fail. */
601 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500602 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600603 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700605 err = add_module_usage(a, b);
606 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600608 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600610 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600612EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614/* Clear the unload stuff of the module. */
615static void module_unload_free(struct module *mod)
616{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700617 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Rusty Russell75676502010-06-05 11:17:36 -0600619 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700620 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
621 struct module *i = use->target;
622 DEBUGP("%s unusing %s\n", mod->name, i->name);
623 module_put(i);
624 list_del(&use->source_list);
625 list_del(&use->target_list);
626 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Rusty Russell75676502010-06-05 11:17:36 -0600628 mutex_unlock(&module_mutex);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600629
630 free_percpu(mod->refptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800634static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 int ret = (flags & O_TRUNC);
637 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800638 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return ret;
640}
641#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800642static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
644 return 0;
645}
646#endif /* CONFIG_MODULE_FORCE_UNLOAD */
647
648struct stopref
649{
650 struct module *mod;
651 int flags;
652 int *forced;
653};
654
655/* Whole machine is stopped with interrupts off when this runs. */
656static int __try_stop_module(void *_sref)
657{
658 struct stopref *sref = _sref;
659
Rusty Russellda39ba52008-07-22 19:24:25 -0500660 /* If it's not unused, quit unless we're forcing. */
661 if (module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800662 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return -EWOULDBLOCK;
664 }
665
666 /* Mark it as dying. */
667 sref->mod->state = MODULE_STATE_GOING;
668 return 0;
669}
670
671static int try_stop_module(struct module *mod, int flags, int *forced)
672{
Rusty Russellda39ba52008-07-22 19:24:25 -0500673 if (flags & O_NONBLOCK) {
674 struct stopref sref = { mod, flags, forced };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500676 return stop_machine(__try_stop_module, &sref, NULL);
Rusty Russellda39ba52008-07-22 19:24:25 -0500677 } else {
678 /* We don't need to stop the machine for this. */
679 mod->state = MODULE_STATE_GOING;
680 synchronize_sched();
681 return 0;
682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685unsigned int module_refcount(struct module *mod)
686{
Nick Piggin5fbfb182010-04-01 19:09:40 +1100687 unsigned int incs = 0, decs = 0;
Eric Dumazet720eba32009-02-03 13:31:36 +1030688 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Eric Dumazet720eba32009-02-03 13:31:36 +1030690 for_each_possible_cpu(cpu)
Nick Piggin5fbfb182010-04-01 19:09:40 +1100691 decs += per_cpu_ptr(mod->refptr, cpu)->decs;
692 /*
693 * ensure the incs are added up after the decs.
694 * module_put ensures incs are visible before decs with smp_wmb.
695 *
696 * This 2-count scheme avoids the situation where the refcount
697 * for CPU0 is read, then CPU0 increments the module refcount,
698 * then CPU1 drops that refcount, then the refcount for CPU1 is
699 * read. We would record a decrement but not its corresponding
700 * increment so we would see a low count (disaster).
701 *
702 * Rare situation? But module_refcount can be preempted, and we
703 * might be tallying up 4096+ CPUs. So it is not impossible.
704 */
705 smp_rmb();
706 for_each_possible_cpu(cpu)
707 incs += per_cpu_ptr(mod->refptr, cpu)->incs;
708 return incs - decs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710EXPORT_SYMBOL(module_refcount);
711
712/* This exists whether we can unload or not */
713static void free_module(struct module *mod);
714
715static void wait_for_zero_refcount(struct module *mod)
716{
Matthew Wilcoxa6550202008-02-26 10:47:18 -0500717 /* Since we might sleep for some time, release the mutex first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800718 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 for (;;) {
720 DEBUGP("Looking at refcount...\n");
721 set_current_state(TASK_UNINTERRUPTIBLE);
722 if (module_refcount(mod) == 0)
723 break;
724 schedule();
725 }
726 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800727 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100730SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
731 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800734 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 int ret, forced = 0;
736
Kees Cook3d433212009-04-02 15:49:29 -0700737 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800738 return -EPERM;
739
740 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
741 return -EFAULT;
742 name[MODULE_NAME_LEN-1] = '\0';
743
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200744 if (mutex_lock_interruptible(&module_mutex) != 0)
745 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 mod = find_module(name);
748 if (!mod) {
749 ret = -ENOENT;
750 goto out;
751 }
752
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700753 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* Other modules depend on us: get rid of them first. */
755 ret = -EWOULDBLOCK;
756 goto out;
757 }
758
759 /* Doing init or already dying? */
760 if (mod->state != MODULE_STATE_LIVE) {
761 /* FIXME: if (force), slam module count and wake up
762 waiter --RR */
763 DEBUGP("%s already dying\n", mod->name);
764 ret = -EBUSY;
765 goto out;
766 }
767
768 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700769 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800770 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!forced) {
772 /* This module can't be removed */
773 ret = -EBUSY;
774 goto out;
775 }
776 }
777
778 /* Set this up before setting mod->state */
779 mod->waiter = current;
780
781 /* Stop the machine so refcounts can't move and disable module. */
782 ret = try_stop_module(mod, flags, &forced);
783 if (ret != 0)
784 goto out;
785
786 /* Never wait if forced. */
787 if (!forced && module_refcount(mod) != 0)
788 wait_for_zero_refcount(mod);
789
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200790 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /* Final destruction now noone is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200792 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200794 blocking_notifier_call_chain(&module_notify_list,
795 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800796 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600797
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100798 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500799 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Rusty Russell75676502010-06-05 11:17:36 -0600801 free_module(mod);
802 return 0;
803out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800804 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return ret;
806}
807
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800808static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct module_use *use;
811 int printed_something = 0;
812
813 seq_printf(m, " %u ", module_refcount(mod));
814
815 /* Always include a trailing , so userspace can differentiate
816 between this and the old multi-field proc format. */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700817 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700819 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (mod->init != NULL && mod->exit == NULL) {
823 printed_something = 1;
824 seq_printf(m, "[permanent],");
825 }
826
827 if (!printed_something)
828 seq_printf(m, "-");
829}
830
831void __symbol_put(const char *symbol)
832{
833 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Rusty Russell24da1cb2007-07-15 23:41:46 -0700835 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500836 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 BUG();
838 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700839 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841EXPORT_SYMBOL(__symbol_put);
842
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930843/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844void symbol_put_addr(void *addr)
845{
Trent Piepho5e376612006-05-15 09:44:06 -0700846 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930847 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930849 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700850 return;
851
Rusty Russella6e6abd2009-03-31 13:05:31 -0600852 /* module_text_address is safe here: we're supposed to have reference
853 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930854 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600855 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700856 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858EXPORT_SYMBOL_GPL(symbol_put_addr);
859
860static ssize_t show_refcnt(struct module_attribute *mattr,
861 struct module *mod, char *buffer)
862{
Alexey Dobriyan256e2fd2007-08-06 23:47:45 +0400863 return sprintf(buffer, "%u\n", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866static struct module_attribute refcnt = {
Tejun Heo7b595752007-06-14 03:45:17 +0900867 .attr = { .name = "refcnt", .mode = 0444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 .show = show_refcnt,
869};
870
Al Virof6a57032006-10-18 01:47:25 -0400871void module_put(struct module *module)
872{
873 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900874 preempt_disable();
Nick Piggin5fbfb182010-04-01 19:09:40 +1100875 smp_wmb(); /* see comment in module_refcount */
876 __this_cpu_inc(module->refptr->decs);
Christoph Lametere1783a22010-01-05 15:34:50 +0900877
Li Zefanae832d12010-03-24 10:57:43 +0800878 trace_module_put(module, _RET_IP_);
Al Virof6a57032006-10-18 01:47:25 -0400879 /* Maybe they're waiting for us to drop reference? */
880 if (unlikely(!module_is_live(module)))
881 wake_up_process(module->waiter);
Christoph Lametere1783a22010-01-05 15:34:50 +0900882 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400883 }
884}
885EXPORT_SYMBOL(module_put);
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887#else /* !CONFIG_MODULE_UNLOAD */
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 /* We don't know the usage count, or what modules are using. */
891 seq_printf(m, " - -");
892}
893
894static inline void module_unload_free(struct module *mod)
895{
896}
897
Rusty Russell9bea7f22010-06-05 11:17:37 -0600898int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Rusty Russell9bea7f22010-06-05 11:17:37 -0600900 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600902EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600904static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600906 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908#endif /* CONFIG_MODULE_UNLOAD */
909
Kay Sievers1f717402006-11-24 12:15:25 +0100910static ssize_t show_initstate(struct module_attribute *mattr,
911 struct module *mod, char *buffer)
912{
913 const char *state = "unknown";
914
915 switch (mod->state) {
916 case MODULE_STATE_LIVE:
917 state = "live";
918 break;
919 case MODULE_STATE_COMING:
920 state = "coming";
921 break;
922 case MODULE_STATE_GOING:
923 state = "going";
924 break;
925 }
926 return sprintf(buffer, "%s\n", state);
927}
928
929static struct module_attribute initstate = {
Tejun Heo7b595752007-06-14 03:45:17 +0900930 .attr = { .name = "initstate", .mode = 0444 },
Kay Sievers1f717402006-11-24 12:15:25 +0100931 .show = show_initstate,
932};
933
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800934static struct module_attribute *modinfo_attrs[] = {
935 &modinfo_version,
936 &modinfo_srcversion,
Kay Sievers1f717402006-11-24 12:15:25 +0100937 &initstate,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800938#ifdef CONFIG_MODULE_UNLOAD
939 &refcnt,
940#endif
941 NULL,
942};
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944static const char vermagic[] = VERMAGIC_STRING;
945
Rusty Russellc6e665c2009-03-31 13:05:33 -0600946static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -0700947{
948#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -0700949 if (!test_taint(TAINT_FORCED_MODULE))
Rusty Russellc6e665c2009-03-31 13:05:33 -0600950 printk(KERN_WARNING "%s: %s: kernel tainted.\n",
951 mod->name, reason);
Linus Torvalds826e4502008-05-04 17:04:16 -0700952 add_taint_module(mod, TAINT_FORCED_MODULE);
953 return 0;
954#else
955 return -ENOEXEC;
956#endif
957}
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -0600960/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
961static unsigned long maybe_relocated(unsigned long crc,
962 const struct module *crc_owner)
963{
964#ifdef ARCH_RELOCATES_KCRCTAB
965 if (crc_owner == NULL)
966 return crc - (unsigned long)reloc_start;
967#endif
968 return crc;
969}
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971static int check_version(Elf_Shdr *sechdrs,
972 unsigned int versindex,
973 const char *symname,
974 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -0600975 const unsigned long *crc,
976 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 unsigned int i, num_versions;
979 struct modversion_info *versions;
980
981 /* Exporting module didn't supply crcs? OK, we're already tainted. */
982 if (!crc)
983 return 1;
984
Rusty Russella5dd6972008-05-09 16:24:21 +1000985 /* No versions at all? modprobe --force does this. */
986 if (versindex == 0)
987 return try_to_force_load(mod, symname) == 0;
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 versions = (void *) sechdrs[versindex].sh_addr;
990 num_versions = sechdrs[versindex].sh_size
991 / sizeof(struct modversion_info);
992
993 for (i = 0; i < num_versions; i++) {
994 if (strcmp(versions[i].name, symname) != 0)
995 continue;
996
Rusty Russelld4703ae2009-12-15 16:28:32 -0600997 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 DEBUGP("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -06001000 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001001 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001003
Rusty Russella5dd6972008-05-09 16:24:21 +10001004 printk(KERN_WARNING "%s: no symbol version for %s\n",
1005 mod->name, symname);
1006 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -07001007
1008bad_version:
1009 printk("%s: disagrees about version of symbol %s\n",
1010 mod->name, symname);
1011 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
1014static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1015 unsigned int versindex,
1016 struct module *mod)
1017{
1018 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Rusty Russell75676502010-06-05 11:17:36 -06001020 /* Since this should be found in kernel (which can't be removed),
1021 * no locking is necessary. */
Mike Frysinger6560dc12009-07-23 23:42:08 +09301022 if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL,
1023 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 BUG();
Rusty Russelld4703ae2009-12-15 16:28:32 -06001025 return check_version(sechdrs, versindex, "module_layout", mod, crc,
1026 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Rusty Russell91e37a72008-05-09 16:25:28 +10001029/* First part is kernel version, which we ignore if module has crcs. */
1030static inline int same_magic(const char *amagic, const char *bmagic,
1031 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Rusty Russell91e37a72008-05-09 16:25:28 +10001033 if (has_crcs) {
1034 amagic += strcspn(amagic, " ");
1035 bmagic += strcspn(bmagic, " ");
1036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return strcmp(amagic, bmagic) == 0;
1038}
1039#else
1040static inline int check_version(Elf_Shdr *sechdrs,
1041 unsigned int versindex,
1042 const char *symname,
1043 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001044 const unsigned long *crc,
1045 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 return 1;
1048}
1049
1050static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1051 unsigned int versindex,
1052 struct module *mod)
1053{
1054 return 1;
1055}
1056
Rusty Russell91e37a72008-05-09 16:25:28 +10001057static inline int same_magic(const char *amagic, const char *bmagic,
1058 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 return strcmp(amagic, bmagic) == 0;
1061}
1062#endif /* CONFIG_MODVERSIONS */
1063
Rusty Russell75676502010-06-05 11:17:36 -06001064/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001065static const struct kernel_symbol *resolve_symbol(struct module *mod,
1066 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001067 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001068 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001071 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 const unsigned long *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001073 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Rusty Russell75676502010-06-05 11:17:36 -06001075 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001076 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001077 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001078 if (!sym)
1079 goto unlock;
1080
Rusty Russell49668682010-08-05 12:59:10 -06001081 if (!check_version(info->sechdrs, info->index.vers, name, mod, crc,
1082 owner)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001083 sym = ERR_PTR(-EINVAL);
1084 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001086
1087 err = ref_module(mod, owner);
1088 if (err) {
1089 sym = ERR_PTR(err);
1090 goto getname;
1091 }
1092
1093getname:
1094 /* We must make copy under the lock if we failed to get ref. */
1095 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1096unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001097 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001098 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
Rusty Russell49668682010-08-05 12:59:10 -06001101static const struct kernel_symbol *
1102resolve_symbol_wait(struct module *mod,
1103 const struct load_info *info,
1104 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001105{
1106 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001107 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001108
1109 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001110 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1111 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001112 30 * HZ) <= 0) {
1113 printk(KERN_WARNING "%s: gave up waiting for init of module %s.\n",
Rusty Russell49668682010-08-05 12:59:10 -06001114 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001115 }
1116 return ksym;
1117}
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119/*
1120 * /sys/module/foo/sections stuff
1121 * J. Corbet <corbet@lwn.net>
1122 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001123#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001124
Rusty Russell8f6d0372010-08-05 12:59:09 -06001125#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001126static inline bool sect_empty(const Elf_Shdr *sect)
1127{
1128 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1129}
1130
Rusty Russella58730c2008-03-13 09:03:44 +00001131struct module_sect_attr
1132{
1133 struct module_attribute mattr;
1134 char *name;
1135 unsigned long address;
1136};
1137
1138struct module_sect_attrs
1139{
1140 struct attribute_group grp;
1141 unsigned int nsections;
1142 struct module_sect_attr attrs[0];
1143};
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145static ssize_t module_sect_show(struct module_attribute *mattr,
1146 struct module *mod, char *buf)
1147{
1148 struct module_sect_attr *sattr =
1149 container_of(mattr, struct module_sect_attr, mattr);
1150 return sprintf(buf, "0x%lx\n", sattr->address);
1151}
1152
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001153static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1154{
Rusty Russella58730c2008-03-13 09:03:44 +00001155 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001156
1157 for (section = 0; section < sect_attrs->nsections; section++)
1158 kfree(sect_attrs->attrs[section].name);
1159 kfree(sect_attrs);
1160}
1161
Rusty Russell8f6d0372010-08-05 12:59:09 -06001162static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 unsigned int nloaded = 0, i, size[2];
1165 struct module_sect_attrs *sect_attrs;
1166 struct module_sect_attr *sattr;
1167 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001170 for (i = 0; i < info->hdr->e_shnum; i++)
1171 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 nloaded++;
1173 size[0] = ALIGN(sizeof(*sect_attrs)
1174 + nloaded * sizeof(sect_attrs->attrs[0]),
1175 sizeof(sect_attrs->grp.attrs[0]));
1176 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001177 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1178 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return;
1180
1181 /* Setup section attributes. */
1182 sect_attrs->grp.name = "sections";
1183 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1184
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001185 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 sattr = &sect_attrs->attrs[0];
1187 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001188 for (i = 0; i < info->hdr->e_shnum; i++) {
1189 Elf_Shdr *sec = &info->sechdrs[i];
1190 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001191 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001192 sattr->address = sec->sh_addr;
1193 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001194 GFP_KERNEL);
1195 if (sattr->name == NULL)
1196 goto out;
1197 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001198 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 sattr->mattr.show = module_sect_show;
1200 sattr->mattr.store = NULL;
1201 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 sattr->mattr.attr.mode = S_IRUGO;
1203 *(gattr++) = &(sattr++)->mattr.attr;
1204 }
1205 *gattr = NULL;
1206
1207 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1208 goto out;
1209
1210 mod->sect_attrs = sect_attrs;
1211 return;
1212 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001213 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
1216static void remove_sect_attrs(struct module *mod)
1217{
1218 if (mod->sect_attrs) {
1219 sysfs_remove_group(&mod->mkobj.kobj,
1220 &mod->sect_attrs->grp);
1221 /* We are positive that no one is using any sect attrs
1222 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001223 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 mod->sect_attrs = NULL;
1225 }
1226}
1227
Roland McGrath6d760132007-10-16 23:26:40 -07001228/*
1229 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1230 */
1231
1232struct module_notes_attrs {
1233 struct kobject *dir;
1234 unsigned int notes;
1235 struct bin_attribute attrs[0];
1236};
1237
Chris Wright2c3c8be2010-05-12 18:28:57 -07001238static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001239 struct bin_attribute *bin_attr,
1240 char *buf, loff_t pos, size_t count)
1241{
1242 /*
1243 * The caller checked the pos and count against our size.
1244 */
1245 memcpy(buf, bin_attr->private + pos, count);
1246 return count;
1247}
1248
1249static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1250 unsigned int i)
1251{
1252 if (notes_attrs->dir) {
1253 while (i-- > 0)
1254 sysfs_remove_bin_file(notes_attrs->dir,
1255 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001256 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001257 }
1258 kfree(notes_attrs);
1259}
1260
Rusty Russell8f6d0372010-08-05 12:59:09 -06001261static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001262{
1263 unsigned int notes, loaded, i;
1264 struct module_notes_attrs *notes_attrs;
1265 struct bin_attribute *nattr;
1266
Ingo Molnarea6bff32009-08-28 10:44:56 +02001267 /* failed to create section attributes, so can't create notes */
1268 if (!mod->sect_attrs)
1269 return;
1270
Roland McGrath6d760132007-10-16 23:26:40 -07001271 /* Count notes sections and allocate structures. */
1272 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001273 for (i = 0; i < info->hdr->e_shnum; i++)
1274 if (!sect_empty(&info->sechdrs[i]) &&
1275 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001276 ++notes;
1277
1278 if (notes == 0)
1279 return;
1280
1281 notes_attrs = kzalloc(sizeof(*notes_attrs)
1282 + notes * sizeof(notes_attrs->attrs[0]),
1283 GFP_KERNEL);
1284 if (notes_attrs == NULL)
1285 return;
1286
1287 notes_attrs->notes = notes;
1288 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001289 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1290 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001291 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001292 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001293 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001294 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1295 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001296 nattr->size = info->sechdrs[i].sh_size;
1297 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001298 nattr->read = module_notes_read;
1299 ++nattr;
1300 }
1301 ++loaded;
1302 }
1303
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001304 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001305 if (!notes_attrs->dir)
1306 goto out;
1307
1308 for (i = 0; i < notes; ++i)
1309 if (sysfs_create_bin_file(notes_attrs->dir,
1310 &notes_attrs->attrs[i]))
1311 goto out;
1312
1313 mod->notes_attrs = notes_attrs;
1314 return;
1315
1316 out:
1317 free_notes_attrs(notes_attrs, i);
1318}
1319
1320static void remove_notes_attrs(struct module *mod)
1321{
1322 if (mod->notes_attrs)
1323 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1324}
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001327
Rusty Russell8f6d0372010-08-05 12:59:09 -06001328static inline void add_sect_attrs(struct module *mod,
1329 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331}
1332
1333static inline void remove_sect_attrs(struct module *mod)
1334{
1335}
Roland McGrath6d760132007-10-16 23:26:40 -07001336
Rusty Russell8f6d0372010-08-05 12:59:09 -06001337static inline void add_notes_attrs(struct module *mod,
1338 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001339{
1340}
1341
1342static inline void remove_notes_attrs(struct module *mod)
1343{
1344}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001345#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001347static void add_usage_links(struct module *mod)
1348{
1349#ifdef CONFIG_MODULE_UNLOAD
1350 struct module_use *use;
1351 int nowarn;
1352
Rusty Russell75676502010-06-05 11:17:36 -06001353 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001354 list_for_each_entry(use, &mod->target_list, target_list) {
1355 nowarn = sysfs_create_link(use->target->holders_dir,
1356 &mod->mkobj.kobj, mod->name);
1357 }
Rusty Russell75676502010-06-05 11:17:36 -06001358 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001359#endif
1360}
1361
1362static void del_usage_links(struct module *mod)
1363{
1364#ifdef CONFIG_MODULE_UNLOAD
1365 struct module_use *use;
1366
Rusty Russell75676502010-06-05 11:17:36 -06001367 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001368 list_for_each_entry(use, &mod->target_list, target_list)
1369 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001370 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001371#endif
1372}
1373
Rusty Russell6407ebb22010-06-05 11:17:36 -06001374static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001375{
1376 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001377 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001378 int error = 0;
1379 int i;
1380
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001381 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1382 (ARRAY_SIZE(modinfo_attrs) + 1)),
1383 GFP_KERNEL);
1384 if (!mod->modinfo_attrs)
1385 return -ENOMEM;
1386
1387 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001388 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1389 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001390 (attr->test && attr->test(mod))) {
1391 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001392 sysfs_attr_init(&temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001393 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1394 ++temp_attr;
1395 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001396 }
1397 return error;
1398}
1399
Rusty Russell6407ebb22010-06-05 11:17:36 -06001400static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001401{
1402 struct module_attribute *attr;
1403 int i;
1404
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001405 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1406 /* pick a field to test for end of list */
1407 if (!attr->attr.name)
1408 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001409 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001410 if (attr->free)
1411 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001412 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001413 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001414}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Rusty Russell6407ebb22010-06-05 11:17:36 -06001416static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
1418 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001419 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001421 if (!module_sysfs_initialized) {
1422 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001423 mod->name);
1424 err = -EINVAL;
1425 goto out;
1426 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001427
1428 kobj = kset_find_obj(module_kset, mod->name);
1429 if (kobj) {
1430 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1431 kobject_put(kobj);
1432 err = -EINVAL;
1433 goto out;
1434 }
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001437
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001438 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1439 mod->mkobj.kobj.kset = module_kset;
1440 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1441 "%s", mod->name);
1442 if (err)
1443 kobject_put(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001444
Kay Sievers97c146e2007-11-29 23:46:11 +01001445 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001446out:
1447 return err;
1448}
1449
Rusty Russell6407ebb22010-06-05 11:17:36 -06001450static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001451 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001452 struct kernel_param *kparam,
1453 unsigned int num_params)
1454{
1455 int err;
1456
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001457 err = mod_sysfs_init(mod);
1458 if (err)
1459 goto out;
1460
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001461 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001462 if (!mod->holders_dir) {
1463 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001464 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001465 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 err = module_param_sysfs_setup(mod, kparam, num_params);
1468 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001469 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Matt Domschc988d2b2005-06-23 22:05:15 -07001471 err = module_add_modinfo_attrs(mod);
1472 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001473 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001474
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001475 add_usage_links(mod);
Rusty Russell8f6d0372010-08-05 12:59:09 -06001476 add_sect_attrs(mod, info);
1477 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001478
Kay Sieverse17e0f52006-11-24 12:15:25 +01001479 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return 0;
1481
Kay Sieverse17e0f52006-11-24 12:15:25 +01001482out_unreg_param:
1483 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001484out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001485 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001486out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001487 kobject_put(&mod->mkobj.kobj);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001488out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return err;
1490}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001491
1492static void mod_sysfs_fini(struct module *mod)
1493{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001494 remove_notes_attrs(mod);
1495 remove_sect_attrs(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001496 kobject_put(&mod->mkobj.kobj);
1497}
1498
Rusty Russell8f6d0372010-08-05 12:59:09 -06001499#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001500
Rusty Russell8f6d0372010-08-05 12:59:09 -06001501static int mod_sysfs_setup(struct module *mod,
1502 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001503 struct kernel_param *kparam,
1504 unsigned int num_params)
1505{
1506 return 0;
1507}
1508
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001509static void mod_sysfs_fini(struct module *mod)
1510{
1511}
1512
Rusty Russell36b03602010-08-05 12:59:09 -06001513static void module_remove_modinfo_attrs(struct module *mod)
1514{
1515}
1516
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001517static void del_usage_links(struct module *mod)
1518{
1519}
1520
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001521#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Rusty Russell36b03602010-08-05 12:59:09 -06001523static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001525 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001526 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001528 kobject_put(mod->mkobj.drivers_dir);
1529 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001530 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
1532
1533/*
1534 * unlink the module with the whole machine is stopped with interrupts off
1535 * - this defends against kallsyms not taking locks
1536 */
1537static int __unlink_module(void *_mod)
1538{
1539 struct module *mod = _mod;
1540 list_del(&mod->list);
Linus Torvalds53363772010-10-05 11:29:27 -07001541 module_bug_cleanup(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return 0;
1543}
1544
Rusty Russell75676502010-06-05 11:17:36 -06001545/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546static void free_module(struct module *mod)
1547{
Li Zefan7ead8b82009-08-17 16:56:28 +08001548 trace_module_free(mod);
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 /* Delete from various lists */
Rusty Russell75676502010-06-05 11:17:36 -06001551 mutex_lock(&module_mutex);
Rusty Russell9b1a4d32008-07-28 12:16:30 -05001552 stop_machine(__unlink_module, mod, NULL);
Rusty Russell75676502010-06-05 11:17:36 -06001553 mutex_unlock(&module_mutex);
Rusty Russell36b03602010-08-05 12:59:09 -06001554 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Jason Baronb82bab4b2010-07-27 13:18:01 -07001556 /* Remove dynamic debug info */
1557 ddebug_remove_module(mod->name);
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 /* Arch-specific cleanup. */
1560 module_arch_cleanup(mod);
1561
1562 /* Module unload stuff */
1563 module_unload_free(mod);
1564
Rusty Russelle180a6b2009-03-31 13:05:29 -06001565 /* Free any allocated parameters. */
1566 destroy_params(mod->kp, mod->num_kp);
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /* This may be NULL, but that's OK */
1569 module_free(mod, mod->module_init);
1570 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001571 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001572
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001573 /* Free lock-classes: */
1574 lockdep_free_key_range(mod->module_core, mod->core_size);
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 /* Finally, free the core (containing the module structure) */
1577 module_free(mod, mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001578
1579#ifdef CONFIG_MPU
1580 update_protections(current->mm);
1581#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
1584void *__symbol_get(const char *symbol)
1585{
1586 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001587 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Rusty Russell24da1cb2007-07-15 23:41:46 -07001589 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001590 sym = find_symbol(symbol, &owner, NULL, true, true);
1591 if (sym && strong_try_module_get(owner))
1592 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001593 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Tim Abbott414fd312008-12-05 19:03:56 -05001595 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597EXPORT_SYMBOL_GPL(__symbol_get);
1598
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001599/*
1600 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001601 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06001602 *
1603 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001604 */
1605static int verify_export_symbols(struct module *mod)
1606{
Rusty Russellb2111042008-05-01 21:15:00 -05001607 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001608 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001609 const struct kernel_symbol *s;
1610 struct {
1611 const struct kernel_symbol *sym;
1612 unsigned int num;
1613 } arr[] = {
1614 { mod->syms, mod->num_syms },
1615 { mod->gpl_syms, mod->num_gpl_syms },
1616 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001617#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001618 { mod->unused_syms, mod->num_unused_syms },
1619 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001620#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001621 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001622
Rusty Russellb2111042008-05-01 21:15:00 -05001623 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1624 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06001625 if (find_symbol(s->name, &owner, NULL, true, false)) {
Rusty Russellb2111042008-05-01 21:15:00 -05001626 printk(KERN_ERR
1627 "%s: exports duplicate symbol %s"
1628 " (owned by %s)\n",
1629 mod->name, s->name, module_name(owner));
1630 return -ENOEXEC;
1631 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001632 }
Rusty Russellb2111042008-05-01 21:15:00 -05001633 }
1634 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001635}
1636
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001637/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06001638static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Rusty Russell49668682010-08-05 12:59:10 -06001640 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
1641 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06001643 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001645 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Rusty Russell49668682010-08-05 12:59:10 -06001647 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
1648 const char *name = info->strtab + sym[i].st_name;
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 switch (sym[i].st_shndx) {
1651 case SHN_COMMON:
1652 /* We compiled with -fno-common. These are not
1653 supposed to happen. */
Rusty Russell49668682010-08-05 12:59:10 -06001654 DEBUGP("Common symbol: %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 printk("%s: please compile with -fno-common\n",
1656 mod->name);
1657 ret = -ENOEXEC;
1658 break;
1659
1660 case SHN_ABS:
1661 /* Don't need to do anything */
1662 DEBUGP("Absolute symbol: 0x%08lx\n",
1663 (long)sym[i].st_value);
1664 break;
1665
1666 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06001667 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001669 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05001670 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001672 }
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001675 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 break;
1677
Rusty Russell9bea7f22010-06-05 11:17:37 -06001678 printk(KERN_WARNING "%s: Unknown symbol %s (err %li)\n",
Rusty Russell49668682010-08-05 12:59:10 -06001679 mod->name, name, PTR_ERR(ksym));
Rusty Russell9bea7f22010-06-05 11:17:37 -06001680 ret = PTR_ERR(ksym) ?: -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 break;
1682
1683 default:
1684 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06001685 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09001686 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 else
Rusty Russell49668682010-08-05 12:59:10 -06001688 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 sym[i].st_value += secbase;
1690 break;
1691 }
1692 }
1693
1694 return ret;
1695}
1696
Rusty Russell49668682010-08-05 12:59:10 -06001697static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06001698{
1699 unsigned int i;
1700 int err = 0;
1701
1702 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06001703 for (i = 1; i < info->hdr->e_shnum; i++) {
1704 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06001705
1706 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06001707 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06001708 continue;
1709
1710 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06001711 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06001712 continue;
1713
Rusty Russell49668682010-08-05 12:59:10 -06001714 if (info->sechdrs[i].sh_type == SHT_REL)
1715 err = apply_relocate(info->sechdrs, info->strtab,
1716 info->index.sym, i, mod);
1717 else if (info->sechdrs[i].sh_type == SHT_RELA)
1718 err = apply_relocate_add(info->sechdrs, info->strtab,
1719 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06001720 if (err < 0)
1721 break;
1722 }
1723 return err;
1724}
1725
Helge Deller088af9a2008-12-31 12:31:18 +01001726/* Additional bytes needed by arch in front of individual sections */
1727unsigned int __weak arch_mod_section_prepend(struct module *mod,
1728 unsigned int section)
1729{
1730 /* default implementation just returns zero */
1731 return 0;
1732}
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01001735static long get_offset(struct module *mod, unsigned int *size,
1736 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 long ret;
1739
Helge Deller088af9a2008-12-31 12:31:18 +01001740 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1742 *size = ret + sechdr->sh_size;
1743 return ret;
1744}
1745
1746/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1747 might -- code, read-only data, read-write data, small data. Tally
1748 sizes, and place the offsets into sh_entsize fields: high bit means it
1749 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06001750static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
1752 static unsigned long const masks[][2] = {
1753 /* NOTE: all executable code must be the first section
1754 * in this array; otherwise modify the text_size
1755 * finder in the two loops below */
1756 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1757 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1758 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1759 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1760 };
1761 unsigned int m, i;
1762
Rusty Russell49668682010-08-05 12:59:10 -06001763 for (i = 0; i < info->hdr->e_shnum; i++)
1764 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766 DEBUGP("Core section allocation order:\n");
1767 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06001768 for (i = 0; i < info->hdr->e_shnum; ++i) {
1769 Elf_Shdr *s = &info->sechdrs[i];
1770 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1773 || (s->sh_flags & masks[m][1])
1774 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06001775 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01001777 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
Rusty Russell49668682010-08-05 12:59:10 -06001778 DEBUGP("\t%s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 }
1780 if (m == 0)
1781 mod->core_text_size = mod->core_size;
1782 }
1783
1784 DEBUGP("Init section allocation order:\n");
1785 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06001786 for (i = 0; i < info->hdr->e_shnum; ++i) {
1787 Elf_Shdr *s = &info->sechdrs[i];
1788 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1791 || (s->sh_flags & masks[m][1])
1792 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06001793 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01001795 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 | INIT_OFFSET_MASK);
Rusty Russell49668682010-08-05 12:59:10 -06001797 DEBUGP("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799 if (m == 0)
1800 mod->init_text_size = mod->init_size;
1801 }
1802}
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804static void set_license(struct module *mod, const char *license)
1805{
1806 if (!license)
1807 license = "unspecified";
1808
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001809 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07001810 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07001811 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001812 "kernel.\n", mod->name, license);
1813 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815}
1816
1817/* Parse tag=value strings from .modinfo section */
1818static char *next_string(char *string, unsigned long *secsize)
1819{
1820 /* Skip non-zero chars */
1821 while (string[0]) {
1822 string++;
1823 if ((*secsize)-- <= 1)
1824 return NULL;
1825 }
1826
1827 /* Skip any zero padding. */
1828 while (!string[0]) {
1829 string++;
1830 if ((*secsize)-- <= 1)
1831 return NULL;
1832 }
1833 return string;
1834}
1835
Rusty Russell49668682010-08-05 12:59:10 -06001836static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 char *p;
1839 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06001840 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
1841 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Rusty Russell49668682010-08-05 12:59:10 -06001843 for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1845 return p + taglen + 1;
1846 }
1847 return NULL;
1848}
1849
Rusty Russell49668682010-08-05 12:59:10 -06001850static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07001851{
1852 struct module_attribute *attr;
1853 int i;
1854
1855 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1856 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06001857 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07001858 }
1859}
Matt Domschc988d2b2005-06-23 22:05:15 -07001860
Rusty Russella263f772009-09-25 00:32:58 -06001861static void free_modinfo(struct module *mod)
1862{
1863 struct module_attribute *attr;
1864 int i;
1865
1866 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1867 if (attr->free)
1868 attr->free(mod);
1869 }
1870}
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01001873
1874/* lookup symbol in given range of kernel_symbols */
1875static const struct kernel_symbol *lookup_symbol(const char *name,
1876 const struct kernel_symbol *start,
1877 const struct kernel_symbol *stop)
1878{
1879 const struct kernel_symbol *ks = start;
1880 for (; ks < stop; ks++)
1881 if (strcmp(ks->name, name) == 0)
1882 return ks;
1883 return NULL;
1884}
1885
Tim Abbottca4787b2009-01-05 08:40:10 -06001886static int is_exported(const char *name, unsigned long value,
1887 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Tim Abbottca4787b2009-01-05 08:40:10 -06001889 const struct kernel_symbol *ks;
1890 if (!mod)
1891 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001892 else
Tim Abbottca4787b2009-01-05 08:40:10 -06001893 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
1894 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895}
1896
1897/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06001898static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
Rusty Russelleded41c2010-08-05 12:59:07 -06001900 const Elf_Shdr *sechdrs = info->sechdrs;
1901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1903 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1904 return 'v';
1905 else
1906 return 'w';
1907 }
1908 if (sym->st_shndx == SHN_UNDEF)
1909 return 'U';
1910 if (sym->st_shndx == SHN_ABS)
1911 return 'a';
1912 if (sym->st_shndx >= SHN_LORESERVE)
1913 return '?';
1914 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1915 return 't';
1916 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1917 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1918 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1919 return 'r';
1920 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1921 return 'g';
1922 else
1923 return 'd';
1924 }
1925 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1926 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1927 return 's';
1928 else
1929 return 'b';
1930 }
Rusty Russelleded41c2010-08-05 12:59:07 -06001931 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
1932 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06001934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 return '?';
1936}
1937
Jan Beulich4a496222009-07-06 14:50:42 +01001938static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
1939 unsigned int shnum)
1940{
1941 const Elf_Shdr *sec;
1942
1943 if (src->st_shndx == SHN_UNDEF
1944 || src->st_shndx >= shnum
1945 || !src->st_name)
1946 return false;
1947
1948 sec = sechdrs + src->st_shndx;
1949 if (!(sec->sh_flags & SHF_ALLOC)
1950#ifndef CONFIG_KALLSYMS_ALL
1951 || !(sec->sh_flags & SHF_EXECINSTR)
1952#endif
1953 || (sec->sh_entsize & INIT_OFFSET_MASK))
1954 return false;
1955
1956 return true;
1957}
1958
Rusty Russell49668682010-08-05 12:59:10 -06001959static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01001960{
Rusty Russell49668682010-08-05 12:59:10 -06001961 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
1962 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01001963 const Elf_Sym *src;
1964 unsigned int i, nsrc, ndst;
1965
1966 /* Put symbol section at end of init part of module. */
1967 symsect->sh_flags |= SHF_ALLOC;
1968 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06001969 info->index.sym) | INIT_OFFSET_MASK;
1970 DEBUGP("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01001971
Rusty Russell49668682010-08-05 12:59:10 -06001972 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01001973 nsrc = symsect->sh_size / sizeof(*src);
1974 for (ndst = i = 1; i < nsrc; ++i, ++src)
Rusty Russell49668682010-08-05 12:59:10 -06001975 if (is_core_symbol(src, info->sechdrs, info->hdr->e_shnum)) {
Jan Beulich554bdfe2009-07-06 14:51:44 +01001976 unsigned int j = src->st_name;
1977
Rusty Russell49668682010-08-05 12:59:10 -06001978 while (!__test_and_set_bit(j, info->strmap)
1979 && info->strtab[j])
Jan Beulich554bdfe2009-07-06 14:51:44 +01001980 ++j;
Jan Beulich4a496222009-07-06 14:50:42 +01001981 ++ndst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001982 }
Jan Beulich4a496222009-07-06 14:50:42 +01001983
1984 /* Append room for core symbols at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06001985 info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
1986 mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
Jan Beulich4a496222009-07-06 14:50:42 +01001987
Jan Beulich554bdfe2009-07-06 14:51:44 +01001988 /* Put string table section at end of init part of module. */
1989 strsect->sh_flags |= SHF_ALLOC;
1990 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06001991 info->index.str) | INIT_OFFSET_MASK;
1992 DEBUGP("\t%s\n", info->secstrings + strsect->sh_name);
Jan Beulich554bdfe2009-07-06 14:51:44 +01001993
1994 /* Append room for core symbols' strings at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06001995 info->stroffs = mod->core_size;
1996 __set_bit(0, info->strmap);
1997 mod->core_size += bitmap_weight(info->strmap, strsect->sh_size);
Jan Beulich4a496222009-07-06 14:50:42 +01001998}
1999
Rusty Russell811d66a2010-08-05 12:59:12 -06002000static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Jan Beulich4a496222009-07-06 14:50:42 +01002002 unsigned int i, ndst;
2003 const Elf_Sym *src;
2004 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002005 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002006 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Rusty Russelleded41c2010-08-05 12:59:07 -06002008 mod->symtab = (void *)symsec->sh_addr;
2009 mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002010 /* Make sure we get permanent strtab: don't use info->strtab. */
2011 mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 /* Set types up while we still have access to sections. */
2014 for (i = 0; i < mod->num_symtab; i++)
Rusty Russelleded41c2010-08-05 12:59:07 -06002015 mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002016
Rusty Russelld9131882010-08-05 12:59:08 -06002017 mod->core_symtab = dst = mod->module_core + info->symoffs;
Jan Beulich4a496222009-07-06 14:50:42 +01002018 src = mod->symtab;
2019 *dst = *src;
2020 for (ndst = i = 1; i < mod->num_symtab; ++i, ++src) {
Rusty Russelleded41c2010-08-05 12:59:07 -06002021 if (!is_core_symbol(src, info->sechdrs, info->hdr->e_shnum))
Jan Beulich4a496222009-07-06 14:50:42 +01002022 continue;
2023 dst[ndst] = *src;
Rusty Russelld9131882010-08-05 12:59:08 -06002024 dst[ndst].st_name = bitmap_weight(info->strmap,
2025 dst[ndst].st_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002026 ++ndst;
2027 }
2028 mod->core_num_syms = ndst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002029
Rusty Russelld9131882010-08-05 12:59:08 -06002030 mod->core_strtab = s = mod->module_core + info->stroffs;
Rusty Russelleded41c2010-08-05 12:59:07 -06002031 for (*s = 0, i = 1; i < info->sechdrs[info->index.str].sh_size; ++i)
Rusty Russelld9131882010-08-05 12:59:08 -06002032 if (test_bit(i, info->strmap))
Jan Beulich554bdfe2009-07-06 14:51:44 +01002033 *++s = mod->strtab[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035#else
Rusty Russell49668682010-08-05 12:59:10 -06002036static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002037{
2038}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002039
Michał Mirosławabbce902010-09-20 01:58:08 +02002040static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
2042}
2043#endif /* CONFIG_KALLSYMS */
2044
Jason Barone9d376f2009-02-05 11:51:38 -05002045static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002046{
Rusty Russell811d66a2010-08-05 12:59:12 -06002047 if (!debug)
2048 return;
Jason Barone9d376f2009-02-05 11:51:38 -05002049#ifdef CONFIG_DYNAMIC_DEBUG
2050 if (ddebug_add_module(debug, num, debug->modname))
2051 printk(KERN_ERR "dynamic debug error adding module: %s\n",
2052 debug->modname);
2053#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002054}
Jason Baron346e15b2008-08-12 16:46:19 -04002055
Yehuda Sadehff49d742010-07-03 13:07:35 +10002056static void dynamic_debug_remove(struct _ddebug *debug)
2057{
2058 if (debug)
2059 ddebug_remove_module(debug->modname);
2060}
2061
Rusty Russell3a642e92008-07-22 19:24:28 -05002062static void *module_alloc_update_bounds(unsigned long size)
2063{
2064 void *ret = module_alloc(size);
2065
2066 if (ret) {
Rusty Russell75676502010-06-05 11:17:36 -06002067 mutex_lock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002068 /* Update module bounds. */
2069 if ((unsigned long)ret < module_addr_min)
2070 module_addr_min = (unsigned long)ret;
2071 if ((unsigned long)ret + size > module_addr_max)
2072 module_addr_max = (unsigned long)ret + size;
Rusty Russell75676502010-06-05 11:17:36 -06002073 mutex_unlock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002074 }
2075 return ret;
2076}
2077
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002078#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002079static void kmemleak_load_module(const struct module *mod,
2080 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002081{
2082 unsigned int i;
2083
2084 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002085 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002086
Rusty Russell49668682010-08-05 12:59:10 -06002087 for (i = 1; i < info->hdr->e_shnum; i++) {
2088 const char *name = info->secstrings + info->sechdrs[i].sh_name;
2089 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002090 continue;
Rusty Russell49668682010-08-05 12:59:10 -06002091 if (!strstarts(name, ".data") && !strstarts(name, ".bss"))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002092 continue;
2093
Rusty Russell49668682010-08-05 12:59:10 -06002094 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2095 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002096 }
2097}
2098#else
Rusty Russell49668682010-08-05 12:59:10 -06002099static inline void kmemleak_load_module(const struct module *mod,
2100 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002101{
2102}
2103#endif
2104
Rusty Russell6526c532010-08-05 12:59:10 -06002105/* Sets info->hdr and info->len. */
Rusty Russelld9131882010-08-05 12:59:08 -06002106static int copy_and_check(struct load_info *info,
2107 const void __user *umod, unsigned long len,
2108 const char __user *uargs)
Rusty Russell40dd2562010-08-05 12:59:03 -06002109{
2110 int err;
2111 Elf_Ehdr *hdr;
2112
2113 if (len < sizeof(*hdr))
2114 return -ENOEXEC;
2115
2116 /* Suck in entire file: we'll want most of it. */
2117 /* vmalloc barfs on "unusual" numbers. Check here */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002118 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
Rusty Russell40dd2562010-08-05 12:59:03 -06002119 return -ENOMEM;
2120
2121 if (copy_from_user(hdr, umod, len) != 0) {
2122 err = -EFAULT;
2123 goto free_hdr;
2124 }
2125
2126 /* Sanity checks against insmoding binaries or wrong arch,
2127 weird elf version */
2128 if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
2129 || hdr->e_type != ET_REL
2130 || !elf_check_arch(hdr)
2131 || hdr->e_shentsize != sizeof(Elf_Shdr)) {
2132 err = -ENOEXEC;
2133 goto free_hdr;
2134 }
2135
2136 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr)) {
2137 err = -ENOEXEC;
2138 goto free_hdr;
2139 }
Rusty Russelld9131882010-08-05 12:59:08 -06002140
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002141 info->hdr = hdr;
2142 info->len = len;
Rusty Russell40dd2562010-08-05 12:59:03 -06002143 return 0;
2144
2145free_hdr:
2146 vfree(hdr);
2147 return err;
2148}
2149
Rusty Russelld9131882010-08-05 12:59:08 -06002150static void free_copy(struct load_info *info)
2151{
Rusty Russelld9131882010-08-05 12:59:08 -06002152 vfree(info->hdr);
2153}
2154
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002155static int rewrite_section_headers(struct load_info *info)
2156{
2157 unsigned int i;
2158
2159 /* This should always be true, but let's be sure. */
2160 info->sechdrs[0].sh_addr = 0;
2161
2162 for (i = 1; i < info->hdr->e_shnum; i++) {
2163 Elf_Shdr *shdr = &info->sechdrs[i];
2164 if (shdr->sh_type != SHT_NOBITS
2165 && info->len < shdr->sh_offset + shdr->sh_size) {
2166 printk(KERN_ERR "Module len %lu truncated\n",
2167 info->len);
2168 return -ENOEXEC;
2169 }
2170
2171 /* Mark all sections sh_addr with their address in the
2172 temporary image. */
2173 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2174
2175#ifndef CONFIG_MODULE_UNLOAD
2176 /* Don't load .exit sections */
2177 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2178 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2179#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002180 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002181
2182 /* Track but don't keep modinfo and version sections. */
Rusty Russell49668682010-08-05 12:59:10 -06002183 info->index.vers = find_sec(info, "__versions");
2184 info->index.info = find_sec(info, ".modinfo");
Rusty Russelld6df72a2010-08-05 12:59:07 -06002185 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2186 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002187 return 0;
2188}
2189
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002190/*
2191 * Set up our basic convenience variables (pointers to section headers,
2192 * search for module section index etc), and do some basic section
2193 * verification.
2194 *
2195 * Return the temporary module pointer (we'll replace it with the final
2196 * one when we move the module sections around).
2197 */
2198static struct module *setup_load_info(struct load_info *info)
2199{
2200 unsigned int i;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002201 int err;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002202 struct module *mod;
2203
2204 /* Set up the convenience variables */
2205 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002206 info->secstrings = (void *)info->hdr
2207 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002208
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002209 err = rewrite_section_headers(info);
2210 if (err)
2211 return ERR_PTR(err);
2212
2213 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002214 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002215 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2216 info->index.sym = i;
2217 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002218 info->strtab = (char *)info->hdr
2219 + info->sechdrs[info->index.str].sh_offset;
2220 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002221 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002222 }
2223
Rusty Russell49668682010-08-05 12:59:10 -06002224 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002225 if (!info->index.mod) {
2226 printk(KERN_WARNING "No module found in object\n");
2227 return ERR_PTR(-ENOEXEC);
2228 }
2229 /* This is temporary: point mod into copy of data. */
2230 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2231
2232 if (info->index.sym == 0) {
2233 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
2234 mod->name);
2235 return ERR_PTR(-ENOEXEC);
2236 }
2237
Rusty Russell49668682010-08-05 12:59:10 -06002238 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002239
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002240 /* Check module struct version now, before we try to use module. */
2241 if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
2242 return ERR_PTR(-ENOEXEC);
2243
2244 return mod;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002245}
2246
Rusty Russell49668682010-08-05 12:59:10 -06002247static int check_modinfo(struct module *mod, struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002248{
Rusty Russell49668682010-08-05 12:59:10 -06002249 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002250 int err;
2251
2252 /* This is allowed: modprobe --force will invalidate it. */
2253 if (!modmagic) {
2254 err = try_to_force_load(mod, "bad vermagic");
2255 if (err)
2256 return err;
Rusty Russell49668682010-08-05 12:59:10 -06002257 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Rusty Russell40dd2562010-08-05 12:59:03 -06002258 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
2259 mod->name, modmagic, vermagic);
2260 return -ENOEXEC;
2261 }
2262
Rusty Russell49668682010-08-05 12:59:10 -06002263 if (get_modinfo(info, "staging")) {
Rusty Russell40dd2562010-08-05 12:59:03 -06002264 add_taint_module(mod, TAINT_CRAP);
2265 printk(KERN_WARNING "%s: module is from the staging directory,"
2266 " the quality is unknown, you have been warned.\n",
2267 mod->name);
2268 }
Rusty Russell22e268e2010-08-05 12:59:05 -06002269
2270 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06002271 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06002272
Rusty Russell40dd2562010-08-05 12:59:03 -06002273 return 0;
2274}
2275
Rusty Russell811d66a2010-08-05 12:59:12 -06002276static void find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002277{
Rusty Russell49668682010-08-05 12:59:10 -06002278 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002279 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06002280 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002281 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002282 mod->crcs = section_addr(info, "__kcrctab");
2283 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002284 sizeof(*mod->gpl_syms),
2285 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002286 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
2287 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002288 "__ksymtab_gpl_future",
2289 sizeof(*mod->gpl_future_syms),
2290 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002291 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002292
2293#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06002294 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002295 sizeof(*mod->unused_syms),
2296 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002297 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
2298 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002299 sizeof(*mod->unused_gpl_syms),
2300 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002301 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002302#endif
2303#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06002304 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002305 sizeof(*mod->ctors), &mod->num_ctors);
2306#endif
2307
2308#ifdef CONFIG_TRACEPOINTS
Rusty Russell49668682010-08-05 12:59:10 -06002309 mod->tracepoints = section_objs(info, "__tracepoints",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002310 sizeof(*mod->tracepoints),
2311 &mod->num_tracepoints);
2312#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -04002313#ifdef HAVE_JUMP_LABEL
2314 mod->jump_entries = section_objs(info, "__jump_table",
2315 sizeof(*mod->jump_entries),
2316 &mod->num_jump_entries);
2317#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002318#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06002319 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002320 sizeof(*mod->trace_events),
2321 &mod->num_trace_events);
2322 /*
2323 * This section contains pointers to allocated objects in the trace
2324 * code and not scanning it leads to false positives.
2325 */
2326 kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) *
2327 mod->num_trace_events, GFP_KERNEL);
2328#endif
2329#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2330 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06002331 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002332 sizeof(*mod->ftrace_callsites),
2333 &mod->num_ftrace_callsites);
2334#endif
Rusty Russell22e268e2010-08-05 12:59:05 -06002335
Rusty Russell811d66a2010-08-05 12:59:12 -06002336 mod->extable = section_objs(info, "__ex_table",
2337 sizeof(*mod->extable), &mod->num_exentries);
2338
Rusty Russell49668682010-08-05 12:59:10 -06002339 if (section_addr(info, "__obsparm"))
Rusty Russell22e268e2010-08-05 12:59:05 -06002340 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2341 mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06002342
2343 info->debug = section_objs(info, "__verbose",
2344 sizeof(*info->debug), &info->num_debug);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002345}
2346
Rusty Russell49668682010-08-05 12:59:10 -06002347static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002348{
2349 int i;
2350 void *ptr;
2351
2352 /* Do the allocs. */
2353 ptr = module_alloc_update_bounds(mod->core_size);
2354 /*
2355 * The pointer to this block is stored in the module structure
2356 * which is inside the block. Just mark it as not being a
2357 * leak.
2358 */
2359 kmemleak_not_leak(ptr);
2360 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06002361 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002362
2363 memset(ptr, 0, mod->core_size);
2364 mod->module_core = ptr;
2365
2366 ptr = module_alloc_update_bounds(mod->init_size);
2367 /*
2368 * The pointer to this block is stored in the module structure
2369 * which is inside the block. This block doesn't need to be
2370 * scanned as it contains data and code that will be freed
2371 * after the module is initialized.
2372 */
2373 kmemleak_ignore(ptr);
2374 if (!ptr && mod->init_size) {
2375 module_free(mod, mod->module_core);
Rusty Russelld9131882010-08-05 12:59:08 -06002376 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002377 }
2378 memset(ptr, 0, mod->init_size);
2379 mod->module_init = ptr;
2380
2381 /* Transfer each section which specifies SHF_ALLOC */
2382 DEBUGP("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06002383 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002384 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06002385 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002386
Rusty Russell49668682010-08-05 12:59:10 -06002387 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002388 continue;
2389
Rusty Russell49668682010-08-05 12:59:10 -06002390 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002391 dest = mod->module_init
Rusty Russell49668682010-08-05 12:59:10 -06002392 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002393 else
Rusty Russell49668682010-08-05 12:59:10 -06002394 dest = mod->module_core + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002395
Rusty Russell49668682010-08-05 12:59:10 -06002396 if (shdr->sh_type != SHT_NOBITS)
2397 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002398 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06002399 shdr->sh_addr = (unsigned long)dest;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002400 DEBUGP("\t0x%lx %s\n",
Rusty Russell49668682010-08-05 12:59:10 -06002401 shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002402 }
Rusty Russelld9131882010-08-05 12:59:08 -06002403
2404 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002405}
2406
Rusty Russell49668682010-08-05 12:59:10 -06002407static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06002408{
2409 /*
2410 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2411 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2412 * using GPL-only symbols it needs.
2413 */
2414 if (strcmp(mod->name, "ndiswrapper") == 0)
2415 add_taint(TAINT_PROPRIETARY_MODULE);
2416
2417 /* driverloader was caught wrongly pretending to be under GPL */
2418 if (strcmp(mod->name, "driverloader") == 0)
2419 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2420
2421#ifdef CONFIG_MODVERSIONS
2422 if ((mod->num_syms && !mod->crcs)
2423 || (mod->num_gpl_syms && !mod->gpl_crcs)
2424 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2425#ifdef CONFIG_UNUSED_SYMBOLS
2426 || (mod->num_unused_syms && !mod->unused_crcs)
2427 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2428#endif
2429 ) {
2430 return try_to_force_load(mod,
2431 "no versions for exported symbols");
2432 }
2433#endif
2434 return 0;
2435}
2436
2437static void flush_module_icache(const struct module *mod)
2438{
2439 mm_segment_t old_fs;
2440
2441 /* flush the icache in correct context */
2442 old_fs = get_fs();
2443 set_fs(KERNEL_DS);
2444
2445 /*
2446 * Flush the instruction cache, since we've played with text.
2447 * Do it before processing of module parameters, so the module
2448 * can provide parameter accessor functions of its own.
2449 */
2450 if (mod->module_init)
2451 flush_icache_range((unsigned long)mod->module_init,
2452 (unsigned long)mod->module_init
2453 + mod->init_size);
2454 flush_icache_range((unsigned long)mod->module_core,
2455 (unsigned long)mod->module_core + mod->core_size);
2456
2457 set_fs(old_fs);
2458}
2459
Rusty Russelld9131882010-08-05 12:59:08 -06002460static struct module *layout_and_allocate(struct load_info *info)
2461{
2462 /* Module within temporary copy. */
2463 struct module *mod;
Rusty Russell49668682010-08-05 12:59:10 -06002464 Elf_Shdr *pcpusec;
Rusty Russelld9131882010-08-05 12:59:08 -06002465 int err;
2466
2467 mod = setup_load_info(info);
2468 if (IS_ERR(mod))
2469 return mod;
2470
Rusty Russell49668682010-08-05 12:59:10 -06002471 err = check_modinfo(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002472 if (err)
2473 return ERR_PTR(err);
2474
2475 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06002476 err = module_frob_arch_sections(info->hdr, info->sechdrs,
2477 info->secstrings, mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002478 if (err < 0)
Rusty Russell6526c532010-08-05 12:59:10 -06002479 goto out;
Rusty Russelld9131882010-08-05 12:59:08 -06002480
Rusty Russell49668682010-08-05 12:59:10 -06002481 pcpusec = &info->sechdrs[info->index.pcpu];
2482 if (pcpusec->sh_size) {
Rusty Russelld9131882010-08-05 12:59:08 -06002483 /* We have a special allocation for this section. */
Rusty Russell49668682010-08-05 12:59:10 -06002484 err = percpu_modalloc(mod,
2485 pcpusec->sh_size, pcpusec->sh_addralign);
Rusty Russelld9131882010-08-05 12:59:08 -06002486 if (err)
Rusty Russell6526c532010-08-05 12:59:10 -06002487 goto out;
Rusty Russell49668682010-08-05 12:59:10 -06002488 pcpusec->sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06002489 }
2490
2491 /* Determine total sizes, and put offsets in sh_entsize. For now
2492 this is done generically; there doesn't appear to be any
2493 special cases for the architectures. */
Rusty Russell49668682010-08-05 12:59:10 -06002494 layout_sections(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002495
2496 info->strmap = kzalloc(BITS_TO_LONGS(info->sechdrs[info->index.str].sh_size)
2497 * sizeof(long), GFP_KERNEL);
2498 if (!info->strmap) {
2499 err = -ENOMEM;
2500 goto free_percpu;
2501 }
Rusty Russell49668682010-08-05 12:59:10 -06002502 layout_symtab(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002503
2504 /* Allocate and move to the final place */
Rusty Russell49668682010-08-05 12:59:10 -06002505 err = move_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002506 if (err)
2507 goto free_strmap;
2508
2509 /* Module has been copied to its final place now: return it. */
2510 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06002511 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002512 return mod;
2513
2514free_strmap:
2515 kfree(info->strmap);
2516free_percpu:
2517 percpu_modfree(mod);
Rusty Russell6526c532010-08-05 12:59:10 -06002518out:
Rusty Russelld9131882010-08-05 12:59:08 -06002519 return ERR_PTR(err);
2520}
2521
2522/* mod is no longer valid after this! */
2523static void module_deallocate(struct module *mod, struct load_info *info)
2524{
2525 kfree(info->strmap);
2526 percpu_modfree(mod);
2527 module_free(mod, mod->module_init);
2528 module_free(mod, mod->module_core);
2529}
2530
Rusty Russell811d66a2010-08-05 12:59:12 -06002531static int post_relocation(struct module *mod, const struct load_info *info)
2532{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002533 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002534 sort_extable(mod->extable, mod->extable + mod->num_exentries);
2535
2536 /* Copy relocated percpu area over. */
2537 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
2538 info->sechdrs[info->index.pcpu].sh_size);
2539
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002540 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002541 add_kallsyms(mod, info);
2542
2543 /* Arch-specific module finalizing. */
2544 return module_finalize(info->hdr, info->sechdrs, mod);
2545}
2546
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547/* Allocate and load the module: note that size of section 0 is always
2548 zero, and we rely on this for optional sections. */
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002549static struct module *load_module(void __user *umod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 unsigned long len,
2551 const char __user *uargs)
2552{
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002553 struct load_info info = { NULL, };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 struct module *mod;
Rusty Russell40dd2562010-08-05 12:59:03 -06002555 long err;
Paul Mundt3ae91c22009-10-01 15:43:54 -07002556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
2558 umod, len, uargs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Rusty Russelld9131882010-08-05 12:59:08 -06002560 /* Copy in the blobs from userspace, check they are vaguely sane. */
2561 err = copy_and_check(&info, umod, len, uargs);
Rusty Russell40dd2562010-08-05 12:59:03 -06002562 if (err)
2563 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Rusty Russelld9131882010-08-05 12:59:08 -06002565 /* Figure out module layout, and allocate all the memory. */
2566 mod = layout_and_allocate(&info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002567 if (IS_ERR(mod)) {
2568 err = PTR_ERR(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002569 goto free_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
Rusty Russell49668682010-08-05 12:59:10 -06002572 /* Now module is in final location, initialize linked lists, etc. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -06002573 err = module_unload_init(mod);
2574 if (err)
Rusty Russelld9131882010-08-05 12:59:08 -06002575 goto free_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Rusty Russell22e268e2010-08-05 12:59:05 -06002577 /* Now we've got everything in the final locations, we can
2578 * find optional sections. */
Rusty Russell49668682010-08-05 12:59:10 -06002579 find_module_sections(mod, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Rusty Russell49668682010-08-05 12:59:10 -06002581 err = check_module_license_and_versions(mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002582 if (err)
2583 goto free_unload;
Dave Jones9841d61d2006-01-08 01:03:41 -08002584
Matt Domschc988d2b2005-06-23 22:05:15 -07002585 /* Set up MODINFO_ATTR fields */
Rusty Russell49668682010-08-05 12:59:10 -06002586 setup_modinfo(mod, &info);
Matt Domschc988d2b2005-06-23 22:05:15 -07002587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 /* Fix up syms, so that st_value is a pointer to location. */
Rusty Russell49668682010-08-05 12:59:10 -06002589 err = simplify_symbols(mod, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002591 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Rusty Russell49668682010-08-05 12:59:10 -06002593 err = apply_relocations(mod, &info);
Rusty Russell22e268e2010-08-05 12:59:05 -06002594 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002595 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
Rusty Russell811d66a2010-08-05 12:59:12 -06002597 err = post_relocation(mod, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002599 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Rusty Russell22e268e2010-08-05 12:59:05 -06002601 flush_module_icache(mod);
Thomas Koeller378bac82005-09-06 15:17:11 -07002602
Rusty Russell6526c532010-08-05 12:59:10 -06002603 /* Now copy in args */
2604 mod->args = strndup_user(uargs, ~0UL >> 1);
2605 if (IS_ERR(mod->args)) {
2606 err = PTR_ERR(mod->args);
2607 goto free_arch_cleanup;
2608 }
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002609
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002610 /* Mark state as coming so strong_try_module_get() ignores us. */
Rusty Russelld9131882010-08-05 12:59:08 -06002611 mod->state = MODULE_STATE_COMING;
2612
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002613 /* Now sew it into the lists so we can get lockdep and oops
Andi Kleend72b3752008-08-30 10:09:00 +02002614 * info during argument parsing. Noone should access us, since
2615 * strong_try_module_get() will fail.
2616 * lockdep/oops can run asynchronous, so use the RCU list insertion
2617 * function to insert in a way safe to concurrent readers.
2618 * The mutex protects against concurrent writers.
2619 */
Rusty Russell75676502010-06-05 11:17:36 -06002620 mutex_lock(&module_mutex);
Linus Torvalds3bafeb62010-06-05 11:17:36 -06002621 if (find_module(mod->name)) {
2622 err = -EEXIST;
Rusty Russellbe593f42010-06-05 11:17:37 -06002623 goto unlock;
Linus Torvalds3bafeb62010-06-05 11:17:36 -06002624 }
2625
Rusty Russell811d66a2010-08-05 12:59:12 -06002626 /* This has to be done once we're sure module name is unique. */
2627 if (!mod->taints)
2628 dynamic_debug_setup(info.debug, info.num_debug);
Yehuda Sadehff49d742010-07-03 13:07:35 +10002629
Rusty Russellbe593f42010-06-05 11:17:37 -06002630 /* Find duplicate symbols */
2631 err = verify_export_symbols(mod);
2632 if (err < 0)
Yehuda Sadehff49d742010-07-03 13:07:35 +10002633 goto ddebug;
Rusty Russellbe593f42010-06-05 11:17:37 -06002634
Linus Torvalds53363772010-10-05 11:29:27 -07002635 module_bug_finalize(info.hdr, info.sechdrs, mod);
Andi Kleend72b3752008-08-30 10:09:00 +02002636 list_add_rcu(&mod->list, &modules);
Rusty Russell75676502010-06-05 11:17:36 -06002637 mutex_unlock(&module_mutex);
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002638
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002639 /* Module is ready to execute: parsing args may do that. */
Rusty Russelle180a6b2009-03-31 13:05:29 -06002640 err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002642 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002644 /* Link in to syfs. */
Rusty Russell8f6d0372010-08-05 12:59:09 -06002645 err = mod_sysfs_setup(mod, &info, mod->kp, mod->num_kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002647 goto unlink;
Rusty Russell80a3d1b2010-06-05 11:17:36 -06002648
Rusty Russelld9131882010-08-05 12:59:08 -06002649 /* Get rid of temporary copy and strmap. */
2650 kfree(info.strmap);
2651 free_copy(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653 /* Done! */
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002654 trace_module_load(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 return mod;
2656
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002657 unlink:
Rusty Russell75676502010-06-05 11:17:36 -06002658 mutex_lock(&module_mutex);
Rusty Russelle91defa2009-03-31 13:05:35 -06002659 /* Unlink carefully: kallsyms could be walking list. */
2660 list_del_rcu(&mod->list);
Linus Torvalds53363772010-10-05 11:29:27 -07002661 module_bug_cleanup(mod);
2662
Yehuda Sadehff49d742010-07-03 13:07:35 +10002663 ddebug:
Rusty Russell811d66a2010-08-05 12:59:12 -06002664 if (!mod->taints)
2665 dynamic_debug_remove(info.debug);
Rusty Russellbe593f42010-06-05 11:17:37 -06002666 unlock:
Rusty Russell75676502010-06-05 11:17:36 -06002667 mutex_unlock(&module_mutex);
Rusty Russelle91defa2009-03-31 13:05:35 -06002668 synchronize_sched();
Rusty Russell6526c532010-08-05 12:59:10 -06002669 kfree(mod->args);
2670 free_arch_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 module_arch_cleanup(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002672 free_modinfo:
Rusty Russella263f772009-09-25 00:32:58 -06002673 free_modinfo(mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002674 free_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 module_unload_free(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002676 free_module:
2677 module_deallocate(mod, &info);
2678 free_copy:
2679 free_copy(&info);
Jayachandran C6fe2e702006-01-06 00:19:54 -08002680 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681}
2682
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002683/* Call module constructors. */
2684static void do_mod_ctors(struct module *mod)
2685{
2686#ifdef CONFIG_CONSTRUCTORS
2687 unsigned long i;
2688
2689 for (i = 0; i < mod->num_ctors; i++)
2690 mod->ctors[i]();
2691#endif
2692}
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694/* This is where the real work happens */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002695SYSCALL_DEFINE3(init_module, void __user *, umod,
2696 unsigned long, len, const char __user *, uargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
2698 struct module *mod;
2699 int ret = 0;
2700
2701 /* Must have permission */
Kees Cook3d433212009-04-02 15:49:29 -07002702 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 return -EPERM;
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 /* Do all the hard work */
2706 mod = load_module(umod, len, uargs);
Rusty Russell75676502010-06-05 11:17:36 -06002707 if (IS_ERR(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return PTR_ERR(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Alan Sterne041c682006-03-27 01:16:30 -08002710 blocking_notifier_call_chain(&module_notify_list,
2711 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002713 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 /* Start the module */
2715 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07002716 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 if (ret < 0) {
2718 /* Init routine failed: abort. Try to protect us from
2719 buggy refcounters. */
2720 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002721 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002722 module_put(mod);
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02002723 blocking_notifier_call_chain(&module_notify_list,
2724 MODULE_STATE_GOING, mod);
Rusty Russellaf49d922007-10-16 23:26:27 -07002725 free_module(mod);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05002726 wake_up(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 return ret;
2728 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002729 if (ret > 0) {
Joe Perchesad361c92009-07-06 13:05:40 -07002730 printk(KERN_WARNING
2731"%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n"
2732"%s: loading module anyway...\n",
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002733 __func__, mod->name, ret,
2734 __func__);
2735 dump_stack();
2736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
Rusty Russell6c5db222008-03-10 11:43:52 -07002738 /* Now it's a first class citizen! Wake up anyone waiting for it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 mod->state = MODULE_STATE_LIVE;
Rusty Russell6c5db222008-03-10 11:43:52 -07002740 wake_up(&module_wq);
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08002741 blocking_notifier_call_chain(&module_notify_list,
2742 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07002743
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07002744 /* We need to finish all async code before the module init sequence is done */
2745 async_synchronize_full();
2746
Rusty Russell6c5db222008-03-10 11:43:52 -07002747 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 /* Drop initial reference. */
2749 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06002750 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01002751#ifdef CONFIG_KALLSYMS
2752 mod->num_symtab = mod->core_num_syms;
2753 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002754 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01002755#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 module_free(mod, mod->module_init);
2757 mod->module_init = NULL;
2758 mod->init_size = 0;
2759 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08002760 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 return 0;
2763}
2764
2765static inline int within(unsigned long addr, void *start, unsigned long size)
2766{
2767 return ((void *)addr >= start && (void *)addr < start + size);
2768}
2769
2770#ifdef CONFIG_KALLSYMS
2771/*
2772 * This ignores the intensely annoying "mapping symbols" found
2773 * in ARM ELF files: $a, $t and $d.
2774 */
2775static inline int is_arm_mapping_symbol(const char *str)
2776{
Daniel Walker22a8bde2007-10-18 03:06:07 -07002777 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 && (str[2] == '\0' || str[2] == '.');
2779}
2780
2781static const char *get_ksymbol(struct module *mod,
2782 unsigned long addr,
2783 unsigned long *size,
2784 unsigned long *offset)
2785{
2786 unsigned int i, best = 0;
2787 unsigned long nextval;
2788
2789 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002790 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002792 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2794
2795 /* Scan for closest preceeding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07002796 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 for (i = 1; i < mod->num_symtab; i++) {
2798 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2799 continue;
2800
2801 /* We ignore unnamed symbols: they're uninformative
2802 * and inserted at a whim. */
2803 if (mod->symtab[i].st_value <= addr
2804 && mod->symtab[i].st_value > mod->symtab[best].st_value
2805 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2806 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2807 best = i;
2808 if (mod->symtab[i].st_value > addr
2809 && mod->symtab[i].st_value < nextval
2810 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2811 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2812 nextval = mod->symtab[i].st_value;
2813 }
2814
2815 if (!best)
2816 return NULL;
2817
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002818 if (size)
2819 *size = nextval - mod->symtab[best].st_value;
2820 if (offset)
2821 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 return mod->strtab + mod->symtab[best].st_name;
2823}
2824
Rusty Russell6dd06c92008-01-29 17:13:22 -05002825/* For kallsyms to ask for address resolution. NULL means not found. Careful
2826 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002827const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05002828 unsigned long *size,
2829 unsigned long *offset,
2830 char **modname,
2831 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
2833 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002834 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Rusty Russellcb2a5202008-01-14 00:55:03 -08002836 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002837 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002838 if (within_module_init(addr, mod) ||
2839 within_module_core(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07002840 if (modname)
2841 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002842 ret = get_ksymbol(mod, addr, size, offset);
2843 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 }
2845 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05002846 /* Make a copy in here where it's safe */
2847 if (ret) {
2848 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2849 ret = namebuf;
2850 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002851 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002852 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853}
2854
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002855int lookup_module_symbol_name(unsigned long addr, char *symname)
2856{
2857 struct module *mod;
2858
Rusty Russellcb2a5202008-01-14 00:55:03 -08002859 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002860 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002861 if (within_module_init(addr, mod) ||
2862 within_module_core(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002863 const char *sym;
2864
2865 sym = get_ksymbol(mod, addr, NULL, NULL);
2866 if (!sym)
2867 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07002868 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002869 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002870 return 0;
2871 }
2872 }
2873out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002874 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002875 return -ERANGE;
2876}
2877
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002878int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2879 unsigned long *offset, char *modname, char *name)
2880{
2881 struct module *mod;
2882
Rusty Russellcb2a5202008-01-14 00:55:03 -08002883 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002884 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002885 if (within_module_init(addr, mod) ||
2886 within_module_core(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002887 const char *sym;
2888
2889 sym = get_ksymbol(mod, addr, size, offset);
2890 if (!sym)
2891 goto out;
2892 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07002893 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002894 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07002895 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002896 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002897 return 0;
2898 }
2899 }
2900out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002901 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002902 return -ERANGE;
2903}
2904
Alexey Dobriyanea078902007-05-08 00:28:39 -07002905int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2906 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
2908 struct module *mod;
2909
Rusty Russellcb2a5202008-01-14 00:55:03 -08002910 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002911 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 if (symnum < mod->num_symtab) {
2913 *value = mod->symtab[symnum].st_value;
2914 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07002915 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07002916 KSYM_NAME_LEN);
2917 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06002918 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002919 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 }
2922 symnum -= mod->num_symtab;
2923 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002924 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002925 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
2928static unsigned long mod_find_symname(struct module *mod, const char *name)
2929{
2930 unsigned int i;
2931
2932 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002933 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2934 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 return mod->symtab[i].st_value;
2936 return 0;
2937}
2938
2939/* Look for this name: can be of form module:name. */
2940unsigned long module_kallsyms_lookup_name(const char *name)
2941{
2942 struct module *mod;
2943 char *colon;
2944 unsigned long ret = 0;
2945
2946 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002947 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 if ((colon = strchr(name, ':')) != NULL) {
2949 *colon = '\0';
2950 if ((mod = find_module(name)) != NULL)
2951 ret = mod_find_symname(mod, colon+1);
2952 *colon = ':';
2953 } else {
Andi Kleend72b3752008-08-30 10:09:00 +02002954 list_for_each_entry_rcu(mod, &modules, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 if ((ret = mod_find_symname(mod, name)) != 0)
2956 break;
2957 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002958 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 return ret;
2960}
Anders Kaseorg75a66612008-12-05 19:03:58 -05002961
2962int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
2963 struct module *, unsigned long),
2964 void *data)
2965{
2966 struct module *mod;
2967 unsigned int i;
2968 int ret;
2969
2970 list_for_each_entry(mod, &modules, list) {
2971 for (i = 0; i < mod->num_symtab; i++) {
2972 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
2973 mod, mod->symtab[i].st_value);
2974 if (ret != 0)
2975 return ret;
2976 }
2977 }
2978 return 0;
2979}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980#endif /* CONFIG_KALLSYMS */
2981
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002982static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002983{
2984 int bx = 0;
2985
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002986 if (mod->taints ||
2987 mod->state == MODULE_STATE_GOING ||
2988 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002989 buf[bx++] = '(';
Andi Kleen25ddbb12008-10-15 22:01:41 -07002990 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002991 buf[bx++] = 'P';
Andi Kleen25ddbb12008-10-15 22:01:41 -07002992 if (mod->taints & (1 << TAINT_FORCED_MODULE))
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002993 buf[bx++] = 'F';
Linus Torvalds26e9a392008-10-17 09:50:12 -07002994 if (mod->taints & (1 << TAINT_CRAP))
Greg Kroah-Hartman061b1bd2008-09-24 14:46:44 -07002995 buf[bx++] = 'C';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002996 /*
2997 * TAINT_FORCED_RMMOD: could be added.
2998 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2999 * apply to modules.
3000 */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003001
3002 /* Show a - for module-is-being-unloaded */
3003 if (mod->state == MODULE_STATE_GOING)
3004 buf[bx++] = '-';
3005 /* Show a + for module-is-being-loaded */
3006 if (mod->state == MODULE_STATE_COMING)
3007 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003008 buf[bx++] = ')';
3009 }
3010 buf[bx] = '\0';
3011
3012 return buf;
3013}
3014
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003015#ifdef CONFIG_PROC_FS
3016/* Called by the /proc file system to return a list of modules. */
3017static void *m_start(struct seq_file *m, loff_t *pos)
3018{
3019 mutex_lock(&module_mutex);
3020 return seq_list_start(&modules, *pos);
3021}
3022
3023static void *m_next(struct seq_file *m, void *p, loff_t *pos)
3024{
3025 return seq_list_next(p, &modules, pos);
3026}
3027
3028static void m_stop(struct seq_file *m, void *p)
3029{
3030 mutex_unlock(&module_mutex);
3031}
3032
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033static int m_show(struct seq_file *m, void *p)
3034{
3035 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003036 char buf[8];
3037
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05003038 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 mod->name, mod->init_size + mod->core_size);
3040 print_unload_info(m, mod);
3041
3042 /* Informative for users. */
3043 seq_printf(m, " %s",
3044 mod->state == MODULE_STATE_GOING ? "Unloading":
3045 mod->state == MODULE_STATE_COMING ? "Loading":
3046 "Live");
3047 /* Used by oprofile and other similar tools. */
3048 seq_printf(m, " 0x%p", mod->module_core);
3049
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003050 /* Taints info */
3051 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003052 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 seq_printf(m, "\n");
3055 return 0;
3056}
3057
3058/* Format: modulename size refcount deps address
3059
3060 Where refcount is a number or -, and deps is a comma-separated list
3061 of depends or -.
3062*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003063static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 .start = m_start,
3065 .next = m_next,
3066 .stop = m_stop,
3067 .show = m_show
3068};
3069
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003070static int modules_open(struct inode *inode, struct file *file)
3071{
3072 return seq_open(file, &modules_op);
3073}
3074
3075static const struct file_operations proc_modules_operations = {
3076 .open = modules_open,
3077 .read = seq_read,
3078 .llseek = seq_lseek,
3079 .release = seq_release,
3080};
3081
3082static int __init proc_modules_init(void)
3083{
3084 proc_create("modules", 0, NULL, &proc_modules_operations);
3085 return 0;
3086}
3087module_init(proc_modules_init);
3088#endif
3089
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090/* Given an address, look for it in the module exception tables. */
3091const struct exception_table_entry *search_module_extables(unsigned long addr)
3092{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 const struct exception_table_entry *e = NULL;
3094 struct module *mod;
3095
Rusty Russell24da1cb2007-07-15 23:41:46 -07003096 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003097 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 if (mod->num_exentries == 0)
3099 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 e = search_extable(mod->extable,
3102 mod->extable + mod->num_exentries - 1,
3103 addr);
3104 if (e)
3105 break;
3106 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07003107 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
3109 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07003110 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 return e;
3112}
3113
Ingo Molnar4d435f92006-07-03 00:24:24 -07003114/*
Rusty Russelle6104992009-03-31 13:05:31 -06003115 * is_module_address - is this address inside a module?
3116 * @addr: the address to check.
3117 *
3118 * See is_module_text_address() if you simply want to see if the address
3119 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07003120 */
Rusty Russelle6104992009-03-31 13:05:31 -06003121bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07003122{
Rusty Russelle6104992009-03-31 13:05:31 -06003123 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003124
Rusty Russell24da1cb2007-07-15 23:41:46 -07003125 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06003126 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07003127 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07003128
Rusty Russelle6104992009-03-31 13:05:31 -06003129 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003130}
3131
Rusty Russelle6104992009-03-31 13:05:31 -06003132/*
3133 * __module_address - get the module which contains an address.
3134 * @addr: the address.
3135 *
3136 * Must be called with preempt disabled or module mutex held so that
3137 * module doesn't get freed during this.
3138 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07003139struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140{
3141 struct module *mod;
3142
Rusty Russell3a642e92008-07-22 19:24:28 -05003143 if (addr < module_addr_min || addr > module_addr_max)
3144 return NULL;
3145
Andi Kleend72b3752008-08-30 10:09:00 +02003146 list_for_each_entry_rcu(mod, &modules, list)
Rusty Russelle6104992009-03-31 13:05:31 -06003147 if (within_module_core(addr, mod)
3148 || within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 return mod;
3150 return NULL;
3151}
Tim Abbottc6b37802008-12-05 19:03:59 -05003152EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Rusty Russelle6104992009-03-31 13:05:31 -06003154/*
3155 * is_module_text_address - is this address inside module code?
3156 * @addr: the address to check.
3157 *
3158 * See is_module_address() if you simply want to see if the address is
3159 * anywhere in a module. See kernel_text_address() for testing if an
3160 * address corresponds to kernel or module code.
3161 */
3162bool is_module_text_address(unsigned long addr)
3163{
3164 bool ret;
3165
3166 preempt_disable();
3167 ret = __module_text_address(addr) != NULL;
3168 preempt_enable();
3169
3170 return ret;
3171}
3172
3173/*
3174 * __module_text_address - get the module whose code contains an address.
3175 * @addr: the address.
3176 *
3177 * Must be called with preempt disabled or module mutex held so that
3178 * module doesn't get freed during this.
3179 */
3180struct module *__module_text_address(unsigned long addr)
3181{
3182 struct module *mod = __module_address(addr);
3183 if (mod) {
3184 /* Make sure it's within the text section. */
3185 if (!within(addr, mod->module_init, mod->init_text_size)
3186 && !within(addr, mod->module_core, mod->core_text_size))
3187 mod = NULL;
3188 }
3189 return mod;
3190}
Tim Abbottc6b37802008-12-05 19:03:59 -05003191EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06003192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193/* Don't grab lock, we're oopsing. */
3194void print_modules(void)
3195{
3196 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07003197 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Linus Torvaldsb2311252009-06-16 11:07:14 -07003199 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02003200 /* Most callers should already have preempt disabled, but make sure */
3201 preempt_disable();
3202 list_for_each_entry_rcu(mod, &modules, list)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003203 printk(" %s%s", mod->name, module_flags(mod, buf));
Andi Kleend72b3752008-08-30 10:09:00 +02003204 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003205 if (last_unloaded_module[0])
3206 printk(" [last unloaded: %s]", last_unloaded_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 printk("\n");
3208}
3209
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003211/* Generate the signature for all relevant module structures here.
3212 * If these change, we don't want to try to parse the module. */
3213void module_layout(struct module *mod,
3214 struct modversion_info *ver,
3215 struct kernel_param *kp,
3216 struct kernel_symbol *ks,
Rusty Russell8c8ef422009-03-31 13:05:34 -06003217 struct tracepoint *tp)
3218{
3219}
3220EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07003222
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -04003223#ifdef CONFIG_TRACEPOINTS
3224void module_update_tracepoints(void)
3225{
3226 struct module *mod;
3227
3228 mutex_lock(&module_mutex);
3229 list_for_each_entry(mod, &modules, list)
3230 if (!mod->taints)
3231 tracepoint_update_probe_range(mod->tracepoints,
3232 mod->tracepoints + mod->num_tracepoints);
3233 mutex_unlock(&module_mutex);
3234}
3235
3236/*
3237 * Returns 0 if current not found.
3238 * Returns 1 if current found.
3239 */
3240int module_get_iter_tracepoints(struct tracepoint_iter *iter)
3241{
3242 struct module *iter_mod;
3243 int found = 0;
3244
3245 mutex_lock(&module_mutex);
3246 list_for_each_entry(iter_mod, &modules, list) {
3247 if (!iter_mod->taints) {
3248 /*
3249 * Sorted module list
3250 */
3251 if (iter_mod < iter->module)
3252 continue;
3253 else if (iter_mod > iter->module)
3254 iter->tracepoint = NULL;
3255 found = tracepoint_get_iter_range(&iter->tracepoint,
3256 iter_mod->tracepoints,
3257 iter_mod->tracepoints
3258 + iter_mod->num_tracepoints);
3259 if (found) {
3260 iter->module = iter_mod;
3261 break;
3262 }
3263 }
3264 }
3265 mutex_unlock(&module_mutex);
3266 return found;
3267}
3268#endif