blob: fb11e2a8823379bfa448716b89ae2a9eed098770 [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
3 Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM.
4
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Li Zefan7ead8b82009-08-17 16:56:28 +080059#define CREATE_TRACE_POINTS
60#include <trace/events/module.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#if 0
63#define DEBUGP printk
64#else
65#define DEBUGP(fmt , a...)
66#endif
67
68#ifndef ARCH_SHF_SMALL
69#define ARCH_SHF_SMALL 0
70#endif
71
72/* If this is set, the section belongs in the init part of the module */
73#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
74
Rusty Russell75676502010-06-05 11:17:36 -060075/*
76 * Mutex protects:
77 * 1) List of modules (also safely readable with preempt_disable),
78 * 2) module_use links,
79 * 3) module_addr_min/module_addr_max.
Andi Kleend72b3752008-08-30 10:09:00 +020080 * (delete uses stop_machine/add uses RCU list operations). */
Tim Abbottc6b37802008-12-05 19:03:59 -050081DEFINE_MUTEX(module_mutex);
82EXPORT_SYMBOL_GPL(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static LIST_HEAD(modules);
Jason Wessel67fc4e02010-05-20 21:04:21 -050084#ifdef CONFIG_KGDB_KDB
85struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
86#endif /* CONFIG_KGDB_KDB */
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Stephen Rothwell19e45292009-04-14 17:27:18 +100089/* Block module loading/unloading? */
90int modules_disabled = 0;
91
Rusty Russellc9a3ba52008-01-29 17:13:18 -050092/* Waiting for a module to finish initializing? */
93static DECLARE_WAIT_QUEUE_HEAD(module_wq);
94
Alan Sterne041c682006-03-27 01:16:30 -080095static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Rusty Russell75676502010-06-05 11:17:36 -060097/* Bounds of module allocation, for speeding __module_address.
98 * Protected by module_mutex. */
Rusty Russell3a642e92008-07-22 19:24:28 -050099static unsigned long module_addr_min = -1UL, module_addr_max = 0;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101int register_module_notifier(struct notifier_block * nb)
102{
Alan Sterne041c682006-03-27 01:16:30 -0800103 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105EXPORT_SYMBOL(register_module_notifier);
106
107int unregister_module_notifier(struct notifier_block * nb)
108{
Alan Sterne041c682006-03-27 01:16:30 -0800109 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111EXPORT_SYMBOL(unregister_module_notifier);
112
Rusty Russelleded41c2010-08-05 12:59:07 -0600113struct load_info {
114 Elf_Ehdr *hdr;
115 unsigned long len;
116 Elf_Shdr *sechdrs;
117 char *secstrings, *args, *strtab;
Rusty Russelld9131882010-08-05 12:59:08 -0600118 unsigned long *strmap;
119 unsigned long symoffs, stroffs;
Rusty Russelleded41c2010-08-05 12:59:07 -0600120 struct {
121 unsigned int sym, str, mod, vers, info, pcpu;
122 } index;
123};
124
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800125/* We require a truly strong try_module_get(): 0 means failure due to
126 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static inline int strong_try_module_get(struct module *mod)
128{
129 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500130 return -EBUSY;
131 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500133 else
134 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700137static inline void add_taint_module(struct module *mod, unsigned flag)
138{
139 add_taint(flag);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700140 mod->taints |= (1U << flag);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700141}
142
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200143/*
144 * A thread that wants to hold a reference to a module only while it
145 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
147void __module_put_and_exit(struct module *mod, long code)
148{
149 module_put(mod);
150 do_exit(code);
151}
152EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/* Find a module section: 0 means not found. */
155static unsigned int find_sec(Elf_Ehdr *hdr,
156 Elf_Shdr *sechdrs,
157 const char *secstrings,
158 const char *name)
159{
160 unsigned int i;
161
162 for (i = 1; i < hdr->e_shnum; i++)
163 /* Alloc bit cleared means "ignore it." */
164 if ((sechdrs[i].sh_flags & SHF_ALLOC)
165 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
166 return i;
167 return 0;
168}
169
Rusty Russell5e458cc2008-10-22 10:00:13 -0500170/* Find a module section, or NULL. */
171static void *section_addr(Elf_Ehdr *hdr, Elf_Shdr *shdrs,
172 const char *secstrings, const char *name)
173{
174 /* Section 0 has sh_addr 0. */
175 return (void *)shdrs[find_sec(hdr, shdrs, secstrings, name)].sh_addr;
176}
177
178/* Find a module section, or NULL. Fill in number of "objects" in section. */
179static void *section_objs(Elf_Ehdr *hdr,
180 Elf_Shdr *sechdrs,
181 const char *secstrings,
182 const char *name,
183 size_t object_size,
184 unsigned int *num)
185{
186 unsigned int sec = find_sec(hdr, sechdrs, secstrings, name);
187
188 /* Section 0 has sh_addr 0 and sh_size 0. */
189 *num = sechdrs[sec].sh_size / object_size;
190 return (void *)sechdrs[sec].sh_addr;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/* Provided by the linker */
194extern const struct kernel_symbol __start___ksymtab[];
195extern const struct kernel_symbol __stop___ksymtab[];
196extern const struct kernel_symbol __start___ksymtab_gpl[];
197extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800198extern const struct kernel_symbol __start___ksymtab_gpl_future[];
199extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200extern const unsigned long __start___kcrctab[];
201extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800202extern const unsigned long __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500203#ifdef CONFIG_UNUSED_SYMBOLS
204extern const struct kernel_symbol __start___ksymtab_unused[];
205extern const struct kernel_symbol __stop___ksymtab_unused[];
206extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
207extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700208extern const unsigned long __start___kcrctab_unused[];
209extern const unsigned long __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212#ifndef CONFIG_MODVERSIONS
213#define symversion(base, idx) NULL
214#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800215#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216#endif
217
Rusty Russelldafd0942008-07-22 19:24:25 -0500218static bool each_symbol_in_section(const struct symsearch *arr,
219 unsigned int arrsize,
220 struct module *owner,
221 bool (*fn)(const struct symsearch *syms,
222 struct module *owner,
223 unsigned int symnum, void *data),
224 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100225{
Rusty Russelldafd0942008-07-22 19:24:25 -0500226 unsigned int i, j;
227
228 for (j = 0; j < arrsize; j++) {
229 for (i = 0; i < arr[j].stop - arr[j].start; i++)
230 if (fn(&arr[j], owner, i, data))
231 return true;
232 }
233
234 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100235}
236
Rusty Russelldafd0942008-07-22 19:24:25 -0500237/* Returns true as soon as fn returns true, otherwise false. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500238bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
239 unsigned int symnum, void *data), void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700240{
Rusty Russelldafd0942008-07-22 19:24:25 -0500241 struct module *mod;
Linus Torvalds44032e62010-08-05 12:59:05 -0600242 static const struct symsearch arr[] = {
Rusty Russelldafd0942008-07-22 19:24:25 -0500243 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
244 NOT_GPL_ONLY, false },
245 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
246 __start___kcrctab_gpl,
247 GPL_ONLY, false },
248 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
249 __start___kcrctab_gpl_future,
250 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500251#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500252 { __start___ksymtab_unused, __stop___ksymtab_unused,
253 __start___kcrctab_unused,
254 NOT_GPL_ONLY, true },
255 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
256 __start___kcrctab_unused_gpl,
257 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500258#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500259 };
260
261 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
262 return true;
263
Andi Kleend72b3752008-08-30 10:09:00 +0200264 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500265 struct symsearch arr[] = {
266 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
267 NOT_GPL_ONLY, false },
268 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
269 mod->gpl_crcs,
270 GPL_ONLY, false },
271 { mod->gpl_future_syms,
272 mod->gpl_future_syms + mod->num_gpl_future_syms,
273 mod->gpl_future_crcs,
274 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500275#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500276 { mod->unused_syms,
277 mod->unused_syms + mod->num_unused_syms,
278 mod->unused_crcs,
279 NOT_GPL_ONLY, true },
280 { mod->unused_gpl_syms,
281 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
282 mod->unused_gpl_crcs,
283 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500284#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500285 };
286
287 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
288 return true;
289 }
290 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700291}
Tim Abbottc6b37802008-12-05 19:03:59 -0500292EXPORT_SYMBOL_GPL(each_symbol);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700293
Rusty Russelldafd0942008-07-22 19:24:25 -0500294struct find_symbol_arg {
295 /* Input */
296 const char *name;
297 bool gplok;
298 bool warn;
299
300 /* Output */
301 struct module *owner;
302 const unsigned long *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500303 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500304};
305
306static bool find_symbol_in_section(const struct symsearch *syms,
307 struct module *owner,
308 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500309{
Rusty Russelldafd0942008-07-22 19:24:25 -0500310 struct find_symbol_arg *fsa = data;
311
312 if (strcmp(syms->start[symnum].name, fsa->name) != 0)
313 return false;
314
315 if (!fsa->gplok) {
316 if (syms->licence == GPL_ONLY)
317 return false;
318 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
319 printk(KERN_WARNING "Symbol %s is being used "
320 "by a non-GPL module, which will not "
321 "be allowed in the future\n", fsa->name);
322 printk(KERN_WARNING "Please see the file "
323 "Documentation/feature-removal-schedule.txt "
324 "in the kernel source tree for more details.\n");
325 }
326 }
327
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500328#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500329 if (syms->unused && fsa->warn) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500330 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
Rusty Russelldafd0942008-07-22 19:24:25 -0500331 "however this module is using it.\n", fsa->name);
Rusty Russellad9546c2008-05-01 21:14:59 -0500332 printk(KERN_WARNING
333 "This symbol will go away in the future.\n");
334 printk(KERN_WARNING
335 "Please evalute if this is the right api to use and if "
336 "it really is, submit a report the linux kernel "
337 "mailinglist together with submitting your code for "
338 "inclusion.\n");
339 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500340#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500341
342 fsa->owner = owner;
343 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500344 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500345 return true;
346}
347
Tim Abbott414fd312008-12-05 19:03:56 -0500348/* Find a symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600349 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500350const struct kernel_symbol *find_symbol(const char *name,
351 struct module **owner,
352 const unsigned long **crc,
353 bool gplok,
354 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Rusty Russelldafd0942008-07-22 19:24:25 -0500356 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Rusty Russelldafd0942008-07-22 19:24:25 -0500358 fsa.name = name;
359 fsa.gplok = gplok;
360 fsa.warn = warn;
361
362 if (each_symbol(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500363 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500364 *owner = fsa.owner;
365 if (crc)
366 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500367 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 DEBUGP("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500371 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
Tim Abbottc6b37802008-12-05 19:03:59 -0500373EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/* Search for module by name: must hold module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500376struct module *find_module(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 struct module *mod;
379
380 list_for_each_entry(mod, &modules, list) {
381 if (strcmp(mod->name, name) == 0)
382 return mod;
383 }
384 return NULL;
385}
Tim Abbottc6b37802008-12-05 19:03:59 -0500386EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900389
Tejun Heo259354d2010-03-10 18:56:10 +0900390static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900391{
Tejun Heo259354d2010-03-10 18:56:10 +0900392 return mod->percpu;
393}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900394
Tejun Heo259354d2010-03-10 18:56:10 +0900395static int percpu_modalloc(struct module *mod,
396 unsigned long size, unsigned long align)
397{
Tejun Heofbf59bc2009-02-20 16:29:08 +0900398 if (align > PAGE_SIZE) {
399 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
Tejun Heo259354d2010-03-10 18:56:10 +0900400 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900401 align = PAGE_SIZE;
402 }
403
Tejun Heo259354d2010-03-10 18:56:10 +0900404 mod->percpu = __alloc_reserved_percpu(size, align);
405 if (!mod->percpu) {
Tejun Heofbf59bc2009-02-20 16:29:08 +0900406 printk(KERN_WARNING
Rusty Russelld9131882010-08-05 12:59:08 -0600407 "%s: Could not allocate %lu bytes percpu data\n",
408 mod->name, size);
Tejun Heo259354d2010-03-10 18:56:10 +0900409 return -ENOMEM;
410 }
411 mod->percpu_size = size;
412 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900413}
414
Tejun Heo259354d2010-03-10 18:56:10 +0900415static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900416{
Tejun Heo259354d2010-03-10 18:56:10 +0900417 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900418}
419
Tejun Heo6b588c12009-02-20 16:29:07 +0900420static unsigned int find_pcpusec(Elf_Ehdr *hdr,
421 Elf_Shdr *sechdrs,
422 const char *secstrings)
423{
Denys Vlasenko3d9a8542010-02-20 01:03:43 +0100424 return find_sec(hdr, sechdrs, secstrings, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900425}
426
Tejun Heo259354d2010-03-10 18:56:10 +0900427static void percpu_modcopy(struct module *mod,
428 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900429{
430 int cpu;
431
432 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900433 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900434}
435
Tejun Heo10fad5e2010-03-10 18:57:54 +0900436/**
437 * is_module_percpu_address - test whether address is from module static percpu
438 * @addr: address to test
439 *
440 * Test whether @addr belongs to module static percpu area.
441 *
442 * RETURNS:
443 * %true if @addr is from module static percpu area
444 */
445bool is_module_percpu_address(unsigned long addr)
446{
447 struct module *mod;
448 unsigned int cpu;
449
450 preempt_disable();
451
452 list_for_each_entry_rcu(mod, &modules, list) {
453 if (!mod->percpu_size)
454 continue;
455 for_each_possible_cpu(cpu) {
456 void *start = per_cpu_ptr(mod->percpu, cpu);
457
458 if ((void *)addr >= start &&
459 (void *)addr < start + mod->percpu_size) {
460 preempt_enable();
461 return true;
462 }
463 }
464 }
465
466 preempt_enable();
467 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700468}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900471
Tejun Heo259354d2010-03-10 18:56:10 +0900472static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 return NULL;
475}
Tejun Heo259354d2010-03-10 18:56:10 +0900476static inline int percpu_modalloc(struct module *mod,
477 unsigned long size, unsigned long align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Tejun Heo259354d2010-03-10 18:56:10 +0900479 return -ENOMEM;
480}
481static inline void percpu_modfree(struct module *mod)
482{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
485 Elf_Shdr *sechdrs,
486 const char *secstrings)
487{
488 return 0;
489}
Tejun Heo259354d2010-03-10 18:56:10 +0900490static inline void percpu_modcopy(struct module *mod,
491 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 /* pcpusec should be 0, and size of that section should be 0. */
494 BUG_ON(size != 0);
495}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900496bool is_module_percpu_address(unsigned long addr)
497{
498 return false;
499}
Tejun Heo6b588c12009-02-20 16:29:07 +0900500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501#endif /* CONFIG_SMP */
502
Matt Domschc988d2b2005-06-23 22:05:15 -0700503#define MODINFO_ATTR(field) \
504static void setup_modinfo_##field(struct module *mod, const char *s) \
505{ \
506 mod->field = kstrdup(s, GFP_KERNEL); \
507} \
508static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
509 struct module *mod, char *buffer) \
510{ \
511 return sprintf(buffer, "%s\n", mod->field); \
512} \
513static int modinfo_##field##_exists(struct module *mod) \
514{ \
515 return mod->field != NULL; \
516} \
517static void free_modinfo_##field(struct module *mod) \
518{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700519 kfree(mod->field); \
520 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700521} \
522static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900523 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700524 .show = show_modinfo_##field, \
525 .setup = setup_modinfo_##field, \
526 .test = modinfo_##field##_exists, \
527 .free = free_modinfo_##field, \
528};
529
530MODINFO_ATTR(version);
531MODINFO_ATTR(srcversion);
532
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100533static char last_unloaded_module[MODULE_NAME_LEN+1];
534
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800535#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400536
537EXPORT_TRACEPOINT_SYMBOL(module_get);
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600540static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600542 mod->refptr = alloc_percpu(struct module_ref);
543 if (!mod->refptr)
544 return -ENOMEM;
545
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700546 INIT_LIST_HEAD(&mod->source_list);
547 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* Hold reference count during initialization. */
Nick Piggin5fbfb182010-04-01 19:09:40 +1100550 __this_cpu_write(mod->refptr->incs, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /* Backwards compatibility macros put refcount during init. */
552 mod->waiter = current;
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600553
554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557/* Does a already use b? */
558static int already_uses(struct module *a, struct module *b)
559{
560 struct module_use *use;
561
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700562 list_for_each_entry(use, &b->source_list, source_list) {
563 if (use->source == a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 DEBUGP("%s uses %s!\n", a->name, b->name);
565 return 1;
566 }
567 }
568 DEBUGP("%s does not use %s!\n", a->name, b->name);
569 return 0;
570}
571
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700572/*
573 * Module a uses b
574 * - we add 'a' as a "source", 'b' as a "target" of module use
575 * - the module_use is added to the list of 'b' sources (so
576 * 'b' can walk the list to see who sourced them), and of 'a'
577 * targets (so 'a' can see what modules it targets).
578 */
579static int add_module_usage(struct module *a, struct module *b)
580{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700581 struct module_use *use;
582
583 DEBUGP("Allocating new usage for %s.\n", a->name);
584 use = kmalloc(sizeof(*use), GFP_ATOMIC);
585 if (!use) {
586 printk(KERN_WARNING "%s: out of memory loading\n", a->name);
587 return -ENOMEM;
588 }
589
590 use->source = a;
591 use->target = b;
592 list_add(&use->source_list, &b->source_list);
593 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700594 return 0;
595}
596
Rusty Russell75676502010-06-05 11:17:36 -0600597/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600598int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600600 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100601
Rusty Russell9bea7f22010-06-05 11:17:37 -0600602 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700603 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700604
Rusty Russell9bea7f22010-06-05 11:17:37 -0600605 /* If module isn't available, we fail. */
606 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500607 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600608 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700610 err = add_module_usage(a, b);
611 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600613 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600617EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619/* Clear the unload stuff of the module. */
620static void module_unload_free(struct module *mod)
621{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700622 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Rusty Russell75676502010-06-05 11:17:36 -0600624 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700625 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
626 struct module *i = use->target;
627 DEBUGP("%s unusing %s\n", mod->name, i->name);
628 module_put(i);
629 list_del(&use->source_list);
630 list_del(&use->target_list);
631 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
Rusty Russell75676502010-06-05 11:17:36 -0600633 mutex_unlock(&module_mutex);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600634
635 free_percpu(mod->refptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
638#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800639static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 int ret = (flags & O_TRUNC);
642 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800643 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return ret;
645}
646#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800647static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 return 0;
650}
651#endif /* CONFIG_MODULE_FORCE_UNLOAD */
652
653struct stopref
654{
655 struct module *mod;
656 int flags;
657 int *forced;
658};
659
660/* Whole machine is stopped with interrupts off when this runs. */
661static int __try_stop_module(void *_sref)
662{
663 struct stopref *sref = _sref;
664
Rusty Russellda39ba52008-07-22 19:24:25 -0500665 /* If it's not unused, quit unless we're forcing. */
666 if (module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800667 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return -EWOULDBLOCK;
669 }
670
671 /* Mark it as dying. */
672 sref->mod->state = MODULE_STATE_GOING;
673 return 0;
674}
675
676static int try_stop_module(struct module *mod, int flags, int *forced)
677{
Rusty Russellda39ba52008-07-22 19:24:25 -0500678 if (flags & O_NONBLOCK) {
679 struct stopref sref = { mod, flags, forced };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500681 return stop_machine(__try_stop_module, &sref, NULL);
Rusty Russellda39ba52008-07-22 19:24:25 -0500682 } else {
683 /* We don't need to stop the machine for this. */
684 mod->state = MODULE_STATE_GOING;
685 synchronize_sched();
686 return 0;
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690unsigned int module_refcount(struct module *mod)
691{
Nick Piggin5fbfb182010-04-01 19:09:40 +1100692 unsigned int incs = 0, decs = 0;
Eric Dumazet720eba32009-02-03 13:31:36 +1030693 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Eric Dumazet720eba32009-02-03 13:31:36 +1030695 for_each_possible_cpu(cpu)
Nick Piggin5fbfb182010-04-01 19:09:40 +1100696 decs += per_cpu_ptr(mod->refptr, cpu)->decs;
697 /*
698 * ensure the incs are added up after the decs.
699 * module_put ensures incs are visible before decs with smp_wmb.
700 *
701 * This 2-count scheme avoids the situation where the refcount
702 * for CPU0 is read, then CPU0 increments the module refcount,
703 * then CPU1 drops that refcount, then the refcount for CPU1 is
704 * read. We would record a decrement but not its corresponding
705 * increment so we would see a low count (disaster).
706 *
707 * Rare situation? But module_refcount can be preempted, and we
708 * might be tallying up 4096+ CPUs. So it is not impossible.
709 */
710 smp_rmb();
711 for_each_possible_cpu(cpu)
712 incs += per_cpu_ptr(mod->refptr, cpu)->incs;
713 return incs - decs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715EXPORT_SYMBOL(module_refcount);
716
717/* This exists whether we can unload or not */
718static void free_module(struct module *mod);
719
720static void wait_for_zero_refcount(struct module *mod)
721{
Matthew Wilcoxa6550202008-02-26 10:47:18 -0500722 /* Since we might sleep for some time, release the mutex first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800723 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 for (;;) {
725 DEBUGP("Looking at refcount...\n");
726 set_current_state(TASK_UNINTERRUPTIBLE);
727 if (module_refcount(mod) == 0)
728 break;
729 schedule();
730 }
731 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800732 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100735SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
736 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800739 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 int ret, forced = 0;
741
Kees Cook3d433212009-04-02 15:49:29 -0700742 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800743 return -EPERM;
744
745 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
746 return -EFAULT;
747 name[MODULE_NAME_LEN-1] = '\0';
748
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200749 if (mutex_lock_interruptible(&module_mutex) != 0)
750 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 mod = find_module(name);
753 if (!mod) {
754 ret = -ENOENT;
755 goto out;
756 }
757
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700758 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /* Other modules depend on us: get rid of them first. */
760 ret = -EWOULDBLOCK;
761 goto out;
762 }
763
764 /* Doing init or already dying? */
765 if (mod->state != MODULE_STATE_LIVE) {
766 /* FIXME: if (force), slam module count and wake up
767 waiter --RR */
768 DEBUGP("%s already dying\n", mod->name);
769 ret = -EBUSY;
770 goto out;
771 }
772
773 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700774 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800775 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (!forced) {
777 /* This module can't be removed */
778 ret = -EBUSY;
779 goto out;
780 }
781 }
782
783 /* Set this up before setting mod->state */
784 mod->waiter = current;
785
786 /* Stop the machine so refcounts can't move and disable module. */
787 ret = try_stop_module(mod, flags, &forced);
788 if (ret != 0)
789 goto out;
790
791 /* Never wait if forced. */
792 if (!forced && module_refcount(mod) != 0)
793 wait_for_zero_refcount(mod);
794
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200795 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /* Final destruction now noone is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200797 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200799 blocking_notifier_call_chain(&module_notify_list,
800 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800801 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600802
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100803 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500804 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Rusty Russell75676502010-06-05 11:17:36 -0600806 free_module(mod);
807 return 0;
808out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800809 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return ret;
811}
812
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800813static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 struct module_use *use;
816 int printed_something = 0;
817
818 seq_printf(m, " %u ", module_refcount(mod));
819
820 /* Always include a trailing , so userspace can differentiate
821 between this and the old multi-field proc format. */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700822 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700824 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (mod->init != NULL && mod->exit == NULL) {
828 printed_something = 1;
829 seq_printf(m, "[permanent],");
830 }
831
832 if (!printed_something)
833 seq_printf(m, "-");
834}
835
836void __symbol_put(const char *symbol)
837{
838 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Rusty Russell24da1cb2007-07-15 23:41:46 -0700840 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500841 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 BUG();
843 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700844 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846EXPORT_SYMBOL(__symbol_put);
847
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930848/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849void symbol_put_addr(void *addr)
850{
Trent Piepho5e376612006-05-15 09:44:06 -0700851 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930852 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930854 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700855 return;
856
Rusty Russella6e6abd2009-03-31 13:05:31 -0600857 /* module_text_address is safe here: we're supposed to have reference
858 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930859 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600860 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700861 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863EXPORT_SYMBOL_GPL(symbol_put_addr);
864
865static ssize_t show_refcnt(struct module_attribute *mattr,
866 struct module *mod, char *buffer)
867{
Alexey Dobriyan256e2fd2007-08-06 23:47:45 +0400868 return sprintf(buffer, "%u\n", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
871static struct module_attribute refcnt = {
Tejun Heo7b595752007-06-14 03:45:17 +0900872 .attr = { .name = "refcnt", .mode = 0444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 .show = show_refcnt,
874};
875
Al Virof6a57032006-10-18 01:47:25 -0400876void module_put(struct module *module)
877{
878 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900879 preempt_disable();
Nick Piggin5fbfb182010-04-01 19:09:40 +1100880 smp_wmb(); /* see comment in module_refcount */
881 __this_cpu_inc(module->refptr->decs);
Christoph Lametere1783a22010-01-05 15:34:50 +0900882
Li Zefanae832d12010-03-24 10:57:43 +0800883 trace_module_put(module, _RET_IP_);
Al Virof6a57032006-10-18 01:47:25 -0400884 /* Maybe they're waiting for us to drop reference? */
885 if (unlikely(!module_is_live(module)))
886 wake_up_process(module->waiter);
Christoph Lametere1783a22010-01-05 15:34:50 +0900887 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400888 }
889}
890EXPORT_SYMBOL(module_put);
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800893static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 /* We don't know the usage count, or what modules are using. */
896 seq_printf(m, " - -");
897}
898
899static inline void module_unload_free(struct module *mod)
900{
901}
902
Rusty Russell9bea7f22010-06-05 11:17:37 -0600903int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Rusty Russell9bea7f22010-06-05 11:17:37 -0600905 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600907EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600909static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600911 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913#endif /* CONFIG_MODULE_UNLOAD */
914
Kay Sievers1f717402006-11-24 12:15:25 +0100915static ssize_t show_initstate(struct module_attribute *mattr,
916 struct module *mod, char *buffer)
917{
918 const char *state = "unknown";
919
920 switch (mod->state) {
921 case MODULE_STATE_LIVE:
922 state = "live";
923 break;
924 case MODULE_STATE_COMING:
925 state = "coming";
926 break;
927 case MODULE_STATE_GOING:
928 state = "going";
929 break;
930 }
931 return sprintf(buffer, "%s\n", state);
932}
933
934static struct module_attribute initstate = {
Tejun Heo7b595752007-06-14 03:45:17 +0900935 .attr = { .name = "initstate", .mode = 0444 },
Kay Sievers1f717402006-11-24 12:15:25 +0100936 .show = show_initstate,
937};
938
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800939static struct module_attribute *modinfo_attrs[] = {
940 &modinfo_version,
941 &modinfo_srcversion,
Kay Sievers1f717402006-11-24 12:15:25 +0100942 &initstate,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800943#ifdef CONFIG_MODULE_UNLOAD
944 &refcnt,
945#endif
946 NULL,
947};
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949static const char vermagic[] = VERMAGIC_STRING;
950
Rusty Russellc6e665c2009-03-31 13:05:33 -0600951static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -0700952{
953#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -0700954 if (!test_taint(TAINT_FORCED_MODULE))
Rusty Russellc6e665c2009-03-31 13:05:33 -0600955 printk(KERN_WARNING "%s: %s: kernel tainted.\n",
956 mod->name, reason);
Linus Torvalds826e4502008-05-04 17:04:16 -0700957 add_taint_module(mod, TAINT_FORCED_MODULE);
958 return 0;
959#else
960 return -ENOEXEC;
961#endif
962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -0600965/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
966static unsigned long maybe_relocated(unsigned long crc,
967 const struct module *crc_owner)
968{
969#ifdef ARCH_RELOCATES_KCRCTAB
970 if (crc_owner == NULL)
971 return crc - (unsigned long)reloc_start;
972#endif
973 return crc;
974}
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976static int check_version(Elf_Shdr *sechdrs,
977 unsigned int versindex,
978 const char *symname,
979 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -0600980 const unsigned long *crc,
981 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 unsigned int i, num_versions;
984 struct modversion_info *versions;
985
986 /* Exporting module didn't supply crcs? OK, we're already tainted. */
987 if (!crc)
988 return 1;
989
Rusty Russella5dd6972008-05-09 16:24:21 +1000990 /* No versions at all? modprobe --force does this. */
991 if (versindex == 0)
992 return try_to_force_load(mod, symname) == 0;
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 versions = (void *) sechdrs[versindex].sh_addr;
995 num_versions = sechdrs[versindex].sh_size
996 / sizeof(struct modversion_info);
997
998 for (i = 0; i < num_versions; i++) {
999 if (strcmp(versions[i].name, symname) != 0)
1000 continue;
1001
Rusty Russelld4703ae2009-12-15 16:28:32 -06001002 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 DEBUGP("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -06001005 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001006 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001008
Rusty Russella5dd6972008-05-09 16:24:21 +10001009 printk(KERN_WARNING "%s: no symbol version for %s\n",
1010 mod->name, symname);
1011 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -07001012
1013bad_version:
1014 printk("%s: disagrees about version of symbol %s\n",
1015 mod->name, symname);
1016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
1019static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1020 unsigned int versindex,
1021 struct module *mod)
1022{
1023 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Rusty Russell75676502010-06-05 11:17:36 -06001025 /* Since this should be found in kernel (which can't be removed),
1026 * no locking is necessary. */
Mike Frysinger6560dc12009-07-23 23:42:08 +09301027 if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL,
1028 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 BUG();
Rusty Russelld4703ae2009-12-15 16:28:32 -06001030 return check_version(sechdrs, versindex, "module_layout", mod, crc,
1031 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033
Rusty Russell91e37a72008-05-09 16:25:28 +10001034/* First part is kernel version, which we ignore if module has crcs. */
1035static inline int same_magic(const char *amagic, const char *bmagic,
1036 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Rusty Russell91e37a72008-05-09 16:25:28 +10001038 if (has_crcs) {
1039 amagic += strcspn(amagic, " ");
1040 bmagic += strcspn(bmagic, " ");
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return strcmp(amagic, bmagic) == 0;
1043}
1044#else
1045static inline int check_version(Elf_Shdr *sechdrs,
1046 unsigned int versindex,
1047 const char *symname,
1048 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001049 const unsigned long *crc,
1050 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 return 1;
1053}
1054
1055static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1056 unsigned int versindex,
1057 struct module *mod)
1058{
1059 return 1;
1060}
1061
Rusty Russell91e37a72008-05-09 16:25:28 +10001062static inline int same_magic(const char *amagic, const char *bmagic,
1063 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
1065 return strcmp(amagic, bmagic) == 0;
1066}
1067#endif /* CONFIG_MODVERSIONS */
1068
Rusty Russell75676502010-06-05 11:17:36 -06001069/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Tim Abbott414fd312008-12-05 19:03:56 -05001070static const struct kernel_symbol *resolve_symbol(Elf_Shdr *sechdrs,
1071 unsigned int versindex,
1072 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001073 struct module *mod,
1074 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001077 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 const unsigned long *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001079 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Rusty Russell75676502010-06-05 11:17:36 -06001081 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001082 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001083 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001084 if (!sym)
1085 goto unlock;
1086
1087 if (!check_version(sechdrs, versindex, name, mod, crc, owner)) {
1088 sym = ERR_PTR(-EINVAL);
1089 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001091
1092 err = ref_module(mod, owner);
1093 if (err) {
1094 sym = ERR_PTR(err);
1095 goto getname;
1096 }
1097
1098getname:
1099 /* We must make copy under the lock if we failed to get ref. */
1100 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1101unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001102 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001103 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Rusty Russell9bea7f22010-06-05 11:17:37 -06001106static const struct kernel_symbol *resolve_symbol_wait(Elf_Shdr *sechdrs,
1107 unsigned int versindex,
1108 const char *name,
1109 struct module *mod)
1110{
1111 const struct kernel_symbol *ksym;
1112 char ownername[MODULE_NAME_LEN];
1113
1114 if (wait_event_interruptible_timeout(module_wq,
1115 !IS_ERR(ksym = resolve_symbol(sechdrs, versindex, name,
1116 mod, ownername)) ||
1117 PTR_ERR(ksym) != -EBUSY,
1118 30 * HZ) <= 0) {
1119 printk(KERN_WARNING "%s: gave up waiting for init of module %s.\n",
1120 mod->name, ownername);
1121 }
1122 return ksym;
1123}
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125/*
1126 * /sys/module/foo/sections stuff
1127 * J. Corbet <corbet@lwn.net>
1128 */
Kay Sievers120fc3d2008-02-21 00:33:20 +01001129#if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
Ben Hutchings10b465a2009-12-19 14:43:01 +00001130
1131static inline bool sect_empty(const Elf_Shdr *sect)
1132{
1133 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1134}
1135
Rusty Russella58730c2008-03-13 09:03:44 +00001136struct module_sect_attr
1137{
1138 struct module_attribute mattr;
1139 char *name;
1140 unsigned long address;
1141};
1142
1143struct module_sect_attrs
1144{
1145 struct attribute_group grp;
1146 unsigned int nsections;
1147 struct module_sect_attr attrs[0];
1148};
1149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150static ssize_t module_sect_show(struct module_attribute *mattr,
1151 struct module *mod, char *buf)
1152{
1153 struct module_sect_attr *sattr =
1154 container_of(mattr, struct module_sect_attr, mattr);
1155 return sprintf(buf, "0x%lx\n", sattr->address);
1156}
1157
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001158static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1159{
Rusty Russella58730c2008-03-13 09:03:44 +00001160 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001161
1162 for (section = 0; section < sect_attrs->nsections; section++)
1163 kfree(sect_attrs->attrs[section].name);
1164 kfree(sect_attrs);
1165}
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167static void add_sect_attrs(struct module *mod, unsigned int nsect,
1168 char *secstrings, Elf_Shdr *sechdrs)
1169{
1170 unsigned int nloaded = 0, i, size[2];
1171 struct module_sect_attrs *sect_attrs;
1172 struct module_sect_attr *sattr;
1173 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 /* Count loaded sections and allocate structures */
1176 for (i = 0; i < nsect; i++)
Ben Hutchings10b465a2009-12-19 14:43:01 +00001177 if (!sect_empty(&sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 nloaded++;
1179 size[0] = ALIGN(sizeof(*sect_attrs)
1180 + nloaded * sizeof(sect_attrs->attrs[0]),
1181 sizeof(sect_attrs->grp.attrs[0]));
1182 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001183 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1184 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return;
1186
1187 /* Setup section attributes. */
1188 sect_attrs->grp.name = "sections";
1189 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1190
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001191 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 sattr = &sect_attrs->attrs[0];
1193 gattr = &sect_attrs->grp.attrs[0];
1194 for (i = 0; i < nsect; i++) {
Ben Hutchings10b465a2009-12-19 14:43:01 +00001195 if (sect_empty(&sechdrs[i]))
Helge Deller35dead42009-12-03 00:29:15 +01001196 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 sattr->address = sechdrs[i].sh_addr;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001198 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1199 GFP_KERNEL);
1200 if (sattr->name == NULL)
1201 goto out;
1202 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001203 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 sattr->mattr.show = module_sect_show;
1205 sattr->mattr.store = NULL;
1206 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 sattr->mattr.attr.mode = S_IRUGO;
1208 *(gattr++) = &(sattr++)->mattr.attr;
1209 }
1210 *gattr = NULL;
1211
1212 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1213 goto out;
1214
1215 mod->sect_attrs = sect_attrs;
1216 return;
1217 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001218 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
1221static void remove_sect_attrs(struct module *mod)
1222{
1223 if (mod->sect_attrs) {
1224 sysfs_remove_group(&mod->mkobj.kobj,
1225 &mod->sect_attrs->grp);
1226 /* We are positive that no one is using any sect attrs
1227 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001228 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 mod->sect_attrs = NULL;
1230 }
1231}
1232
Roland McGrath6d760132007-10-16 23:26:40 -07001233/*
1234 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1235 */
1236
1237struct module_notes_attrs {
1238 struct kobject *dir;
1239 unsigned int notes;
1240 struct bin_attribute attrs[0];
1241};
1242
Chris Wright2c3c8be2010-05-12 18:28:57 -07001243static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001244 struct bin_attribute *bin_attr,
1245 char *buf, loff_t pos, size_t count)
1246{
1247 /*
1248 * The caller checked the pos and count against our size.
1249 */
1250 memcpy(buf, bin_attr->private + pos, count);
1251 return count;
1252}
1253
1254static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1255 unsigned int i)
1256{
1257 if (notes_attrs->dir) {
1258 while (i-- > 0)
1259 sysfs_remove_bin_file(notes_attrs->dir,
1260 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001261 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001262 }
1263 kfree(notes_attrs);
1264}
1265
1266static void add_notes_attrs(struct module *mod, unsigned int nsect,
1267 char *secstrings, Elf_Shdr *sechdrs)
1268{
1269 unsigned int notes, loaded, i;
1270 struct module_notes_attrs *notes_attrs;
1271 struct bin_attribute *nattr;
1272
Ingo Molnarea6bff32009-08-28 10:44:56 +02001273 /* failed to create section attributes, so can't create notes */
1274 if (!mod->sect_attrs)
1275 return;
1276
Roland McGrath6d760132007-10-16 23:26:40 -07001277 /* Count notes sections and allocate structures. */
1278 notes = 0;
1279 for (i = 0; i < nsect; i++)
Ben Hutchings10b465a2009-12-19 14:43:01 +00001280 if (!sect_empty(&sechdrs[i]) &&
Roland McGrath6d760132007-10-16 23:26:40 -07001281 (sechdrs[i].sh_type == SHT_NOTE))
1282 ++notes;
1283
1284 if (notes == 0)
1285 return;
1286
1287 notes_attrs = kzalloc(sizeof(*notes_attrs)
1288 + notes * sizeof(notes_attrs->attrs[0]),
1289 GFP_KERNEL);
1290 if (notes_attrs == NULL)
1291 return;
1292
1293 notes_attrs->notes = notes;
1294 nattr = &notes_attrs->attrs[0];
1295 for (loaded = i = 0; i < nsect; ++i) {
Ben Hutchings10b465a2009-12-19 14:43:01 +00001296 if (sect_empty(&sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001297 continue;
1298 if (sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001299 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001300 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1301 nattr->attr.mode = S_IRUGO;
1302 nattr->size = sechdrs[i].sh_size;
1303 nattr->private = (void *) sechdrs[i].sh_addr;
1304 nattr->read = module_notes_read;
1305 ++nattr;
1306 }
1307 ++loaded;
1308 }
1309
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001310 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001311 if (!notes_attrs->dir)
1312 goto out;
1313
1314 for (i = 0; i < notes; ++i)
1315 if (sysfs_create_bin_file(notes_attrs->dir,
1316 &notes_attrs->attrs[i]))
1317 goto out;
1318
1319 mod->notes_attrs = notes_attrs;
1320 return;
1321
1322 out:
1323 free_notes_attrs(notes_attrs, i);
1324}
1325
1326static void remove_notes_attrs(struct module *mod)
1327{
1328 if (mod->notes_attrs)
1329 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1330}
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1335 char *sectstrings, Elf_Shdr *sechdrs)
1336{
1337}
1338
1339static inline void remove_sect_attrs(struct module *mod)
1340{
1341}
Roland McGrath6d760132007-10-16 23:26:40 -07001342
1343static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1344 char *sectstrings, Elf_Shdr *sechdrs)
1345{
1346}
1347
1348static inline void remove_notes_attrs(struct module *mod)
1349{
1350}
Kay Sievers120fc3d2008-02-21 00:33:20 +01001351#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Randy Dunlapef665c12007-02-13 15:19:06 -08001353#ifdef CONFIG_SYSFS
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001354static void add_usage_links(struct module *mod)
1355{
1356#ifdef CONFIG_MODULE_UNLOAD
1357 struct module_use *use;
1358 int nowarn;
1359
Rusty Russell75676502010-06-05 11:17:36 -06001360 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001361 list_for_each_entry(use, &mod->target_list, target_list) {
1362 nowarn = sysfs_create_link(use->target->holders_dir,
1363 &mod->mkobj.kobj, mod->name);
1364 }
Rusty Russell75676502010-06-05 11:17:36 -06001365 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001366#endif
1367}
1368
1369static void del_usage_links(struct module *mod)
1370{
1371#ifdef CONFIG_MODULE_UNLOAD
1372 struct module_use *use;
1373
Rusty Russell75676502010-06-05 11:17:36 -06001374 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001375 list_for_each_entry(use, &mod->target_list, target_list)
1376 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001377 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001378#endif
1379}
1380
Rusty Russell6407ebb22010-06-05 11:17:36 -06001381static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001382{
1383 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001384 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001385 int error = 0;
1386 int i;
1387
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001388 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1389 (ARRAY_SIZE(modinfo_attrs) + 1)),
1390 GFP_KERNEL);
1391 if (!mod->modinfo_attrs)
1392 return -ENOMEM;
1393
1394 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001395 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1396 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001397 (attr->test && attr->test(mod))) {
1398 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001399 sysfs_attr_init(&temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001400 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1401 ++temp_attr;
1402 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001403 }
1404 return error;
1405}
1406
Rusty Russell6407ebb22010-06-05 11:17:36 -06001407static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001408{
1409 struct module_attribute *attr;
1410 int i;
1411
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001412 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1413 /* pick a field to test for end of list */
1414 if (!attr->attr.name)
1415 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001416 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001417 if (attr->free)
1418 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001419 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001420 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001421}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Rusty Russell6407ebb22010-06-05 11:17:36 -06001423static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
1425 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001426 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001428 if (!module_sysfs_initialized) {
1429 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001430 mod->name);
1431 err = -EINVAL;
1432 goto out;
1433 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001434
1435 kobj = kset_find_obj(module_kset, mod->name);
1436 if (kobj) {
1437 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1438 kobject_put(kobj);
1439 err = -EINVAL;
1440 goto out;
1441 }
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001444
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001445 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1446 mod->mkobj.kobj.kset = module_kset;
1447 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1448 "%s", mod->name);
1449 if (err)
1450 kobject_put(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001451
Kay Sievers97c146e2007-11-29 23:46:11 +01001452 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001453out:
1454 return err;
1455}
1456
Rusty Russell6407ebb22010-06-05 11:17:36 -06001457static int mod_sysfs_setup(struct module *mod,
Kay Sievers270a6c42007-01-18 13:26:15 +01001458 struct kernel_param *kparam,
1459 unsigned int num_params)
1460{
1461 int err;
1462
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001463 err = mod_sysfs_init(mod);
1464 if (err)
1465 goto out;
1466
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001467 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001468 if (!mod->holders_dir) {
1469 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001470 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001471 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 err = module_param_sysfs_setup(mod, kparam, num_params);
1474 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001475 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Matt Domschc988d2b2005-06-23 22:05:15 -07001477 err = module_add_modinfo_attrs(mod);
1478 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001479 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001480
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001481 add_usage_links(mod);
1482
Kay Sieverse17e0f52006-11-24 12:15:25 +01001483 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return 0;
1485
Kay Sieverse17e0f52006-11-24 12:15:25 +01001486out_unreg_param:
1487 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001488out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001489 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001490out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001491 kobject_put(&mod->mkobj.kobj);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001492out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return err;
1494}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001495
1496static void mod_sysfs_fini(struct module *mod)
1497{
1498 kobject_put(&mod->mkobj.kobj);
1499}
1500
1501#else /* CONFIG_SYSFS */
1502
Rusty Russell6407ebb22010-06-05 11:17:36 -06001503static inline int mod_sysfs_init(struct module *mod)
1504{
1505 return 0;
1506}
1507
1508static inline int mod_sysfs_setup(struct module *mod,
1509 struct kernel_param *kparam,
1510 unsigned int num_params)
1511{
1512 return 0;
1513}
1514
1515static inline int module_add_modinfo_attrs(struct module *mod)
1516{
1517 return 0;
1518}
1519
1520static inline void module_remove_modinfo_attrs(struct module *mod)
1521{
1522}
1523
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001524static void mod_sysfs_fini(struct module *mod)
1525{
1526}
1527
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001528static void del_usage_links(struct module *mod)
1529{
1530}
1531
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001532#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534static void mod_kobject_remove(struct module *mod)
1535{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001536 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001537 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001539 kobject_put(mod->mkobj.drivers_dir);
1540 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001541 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
1544/*
1545 * unlink the module with the whole machine is stopped with interrupts off
1546 * - this defends against kallsyms not taking locks
1547 */
1548static int __unlink_module(void *_mod)
1549{
1550 struct module *mod = _mod;
1551 list_del(&mod->list);
1552 return 0;
1553}
1554
Rusty Russell75676502010-06-05 11:17:36 -06001555/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556static void free_module(struct module *mod)
1557{
Li Zefan7ead8b82009-08-17 16:56:28 +08001558 trace_module_free(mod);
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 /* Delete from various lists */
Rusty Russell75676502010-06-05 11:17:36 -06001561 mutex_lock(&module_mutex);
Rusty Russell9b1a4d32008-07-28 12:16:30 -05001562 stop_machine(__unlink_module, mod, NULL);
Rusty Russell75676502010-06-05 11:17:36 -06001563 mutex_unlock(&module_mutex);
Roland McGrath6d760132007-10-16 23:26:40 -07001564 remove_notes_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 remove_sect_attrs(mod);
1566 mod_kobject_remove(mod);
1567
Jason Baronb82bab4b2010-07-27 13:18:01 -07001568 /* Remove dynamic debug info */
1569 ddebug_remove_module(mod->name);
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 /* Arch-specific cleanup. */
1572 module_arch_cleanup(mod);
1573
1574 /* Module unload stuff */
1575 module_unload_free(mod);
1576
Rusty Russelle180a6b2009-03-31 13:05:29 -06001577 /* Free any allocated parameters. */
1578 destroy_params(mod->kp, mod->num_kp);
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 /* This may be NULL, but that's OK */
1581 module_free(mod, mod->module_init);
1582 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001583 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001584
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001585 /* Free lock-classes: */
1586 lockdep_free_key_range(mod->module_core, mod->core_size);
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /* Finally, free the core (containing the module structure) */
1589 module_free(mod, mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001590
1591#ifdef CONFIG_MPU
1592 update_protections(current->mm);
1593#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596void *__symbol_get(const char *symbol)
1597{
1598 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001599 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Rusty Russell24da1cb2007-07-15 23:41:46 -07001601 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001602 sym = find_symbol(symbol, &owner, NULL, true, true);
1603 if (sym && strong_try_module_get(owner))
1604 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001605 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Tim Abbott414fd312008-12-05 19:03:56 -05001607 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609EXPORT_SYMBOL_GPL(__symbol_get);
1610
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001611/*
1612 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001613 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06001614 *
1615 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001616 */
1617static int verify_export_symbols(struct module *mod)
1618{
Rusty Russellb2111042008-05-01 21:15:00 -05001619 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001620 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001621 const struct kernel_symbol *s;
1622 struct {
1623 const struct kernel_symbol *sym;
1624 unsigned int num;
1625 } arr[] = {
1626 { mod->syms, mod->num_syms },
1627 { mod->gpl_syms, mod->num_gpl_syms },
1628 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001629#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001630 { mod->unused_syms, mod->num_unused_syms },
1631 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001632#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001633 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001634
Rusty Russellb2111042008-05-01 21:15:00 -05001635 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1636 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06001637 if (find_symbol(s->name, &owner, NULL, true, false)) {
Rusty Russellb2111042008-05-01 21:15:00 -05001638 printk(KERN_ERR
1639 "%s: exports duplicate symbol %s"
1640 " (owned by %s)\n",
1641 mod->name, s->name, module_name(owner));
1642 return -ENOEXEC;
1643 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001644 }
Rusty Russellb2111042008-05-01 21:15:00 -05001645 }
1646 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001647}
1648
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001649/* Change all symbols so that st_value encodes the pointer directly. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650static int simplify_symbols(Elf_Shdr *sechdrs,
1651 unsigned int symindex,
1652 const char *strtab,
1653 unsigned int versindex,
1654 unsigned int pcpuindex,
1655 struct module *mod)
1656{
1657 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1658 unsigned long secbase;
1659 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1660 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001661 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 for (i = 1; i < n; i++) {
1664 switch (sym[i].st_shndx) {
1665 case SHN_COMMON:
1666 /* We compiled with -fno-common. These are not
1667 supposed to happen. */
1668 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1669 printk("%s: please compile with -fno-common\n",
1670 mod->name);
1671 ret = -ENOEXEC;
1672 break;
1673
1674 case SHN_ABS:
1675 /* Don't need to do anything */
1676 DEBUGP("Absolute symbol: 0x%08lx\n",
1677 (long)sym[i].st_value);
1678 break;
1679
1680 case SHN_UNDEF:
Rusty Russell9bea7f22010-06-05 11:17:37 -06001681 ksym = resolve_symbol_wait(sechdrs, versindex,
1682 strtab + sym[i].st_name,
1683 mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001685 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05001686 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001688 }
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001691 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 break;
1693
Rusty Russell9bea7f22010-06-05 11:17:37 -06001694 printk(KERN_WARNING "%s: Unknown symbol %s (err %li)\n",
1695 mod->name, strtab + sym[i].st_name,
1696 PTR_ERR(ksym));
1697 ret = PTR_ERR(ksym) ?: -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 break;
1699
1700 default:
1701 /* Divert to percpu allocation if a percpu var. */
1702 if (sym[i].st_shndx == pcpuindex)
Tejun Heo259354d2010-03-10 18:56:10 +09001703 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 else
1705 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1706 sym[i].st_value += secbase;
1707 break;
1708 }
1709 }
1710
1711 return ret;
1712}
1713
Rusty Russell22e268e2010-08-05 12:59:05 -06001714static int apply_relocations(struct module *mod,
1715 Elf_Ehdr *hdr,
1716 Elf_Shdr *sechdrs,
1717 unsigned int symindex,
1718 unsigned int strindex)
1719{
1720 unsigned int i;
1721 int err = 0;
1722
1723 /* Now do relocations. */
1724 for (i = 1; i < hdr->e_shnum; i++) {
1725 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1726 unsigned int info = sechdrs[i].sh_info;
1727
1728 /* Not a valid relocation section? */
1729 if (info >= hdr->e_shnum)
1730 continue;
1731
1732 /* Don't bother with non-allocated sections */
1733 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1734 continue;
1735
1736 if (sechdrs[i].sh_type == SHT_REL)
1737 err = apply_relocate(sechdrs, strtab, symindex, i, mod);
1738 else if (sechdrs[i].sh_type == SHT_RELA)
1739 err = apply_relocate_add(sechdrs, strtab, symindex, i,
1740 mod);
1741 if (err < 0)
1742 break;
1743 }
1744 return err;
1745}
1746
Helge Deller088af9a2008-12-31 12:31:18 +01001747/* Additional bytes needed by arch in front of individual sections */
1748unsigned int __weak arch_mod_section_prepend(struct module *mod,
1749 unsigned int section)
1750{
1751 /* default implementation just returns zero */
1752 return 0;
1753}
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01001756static long get_offset(struct module *mod, unsigned int *size,
1757 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
1759 long ret;
1760
Helge Deller088af9a2008-12-31 12:31:18 +01001761 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1763 *size = ret + sechdr->sh_size;
1764 return ret;
1765}
1766
1767/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1768 might -- code, read-only data, read-write data, small data. Tally
1769 sizes, and place the offsets into sh_entsize fields: high bit means it
1770 belongs in init. */
1771static void layout_sections(struct module *mod,
1772 const Elf_Ehdr *hdr,
1773 Elf_Shdr *sechdrs,
1774 const char *secstrings)
1775{
1776 static unsigned long const masks[][2] = {
1777 /* NOTE: all executable code must be the first section
1778 * in this array; otherwise modify the text_size
1779 * finder in the two loops below */
1780 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1781 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1782 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1783 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1784 };
1785 unsigned int m, i;
1786
1787 for (i = 0; i < hdr->e_shnum; i++)
1788 sechdrs[i].sh_entsize = ~0UL;
1789
1790 DEBUGP("Core section allocation order:\n");
1791 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1792 for (i = 0; i < hdr->e_shnum; ++i) {
1793 Elf_Shdr *s = &sechdrs[i];
1794
1795 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1796 || (s->sh_flags & masks[m][1])
1797 || s->sh_entsize != ~0UL
Rusty Russell49502672009-03-31 13:05:36 -06001798 || strstarts(secstrings + s->sh_name, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01001800 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 DEBUGP("\t%s\n", secstrings + s->sh_name);
1802 }
1803 if (m == 0)
1804 mod->core_text_size = mod->core_size;
1805 }
1806
1807 DEBUGP("Init section allocation order:\n");
1808 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1809 for (i = 0; i < hdr->e_shnum; ++i) {
1810 Elf_Shdr *s = &sechdrs[i];
1811
1812 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1813 || (s->sh_flags & masks[m][1])
1814 || s->sh_entsize != ~0UL
Rusty Russell49502672009-03-31 13:05:36 -06001815 || !strstarts(secstrings + s->sh_name, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01001817 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 | INIT_OFFSET_MASK);
1819 DEBUGP("\t%s\n", secstrings + s->sh_name);
1820 }
1821 if (m == 0)
1822 mod->init_text_size = mod->init_size;
1823 }
1824}
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826static void set_license(struct module *mod, const char *license)
1827{
1828 if (!license)
1829 license = "unspecified";
1830
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001831 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07001832 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07001833 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001834 "kernel.\n", mod->name, license);
1835 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837}
1838
1839/* Parse tag=value strings from .modinfo section */
1840static char *next_string(char *string, unsigned long *secsize)
1841{
1842 /* Skip non-zero chars */
1843 while (string[0]) {
1844 string++;
1845 if ((*secsize)-- <= 1)
1846 return NULL;
1847 }
1848
1849 /* Skip any zero padding. */
1850 while (!string[0]) {
1851 string++;
1852 if ((*secsize)-- <= 1)
1853 return NULL;
1854 }
1855 return string;
1856}
1857
Rusty Russell40dd2562010-08-05 12:59:03 -06001858static char *get_modinfo(const Elf_Shdr *sechdrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 unsigned int info,
1860 const char *tag)
1861{
1862 char *p;
1863 unsigned int taglen = strlen(tag);
1864 unsigned long size = sechdrs[info].sh_size;
1865
1866 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1867 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1868 return p + taglen + 1;
1869 }
1870 return NULL;
1871}
1872
Matt Domschc988d2b2005-06-23 22:05:15 -07001873static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1874 unsigned int infoindex)
1875{
1876 struct module_attribute *attr;
1877 int i;
1878
1879 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1880 if (attr->setup)
1881 attr->setup(mod,
1882 get_modinfo(sechdrs,
1883 infoindex,
1884 attr->attr.name));
1885 }
1886}
Matt Domschc988d2b2005-06-23 22:05:15 -07001887
Rusty Russella263f772009-09-25 00:32:58 -06001888static void free_modinfo(struct module *mod)
1889{
1890 struct module_attribute *attr;
1891 int i;
1892
1893 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1894 if (attr->free)
1895 attr->free(mod);
1896 }
1897}
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01001900
1901/* lookup symbol in given range of kernel_symbols */
1902static const struct kernel_symbol *lookup_symbol(const char *name,
1903 const struct kernel_symbol *start,
1904 const struct kernel_symbol *stop)
1905{
1906 const struct kernel_symbol *ks = start;
1907 for (; ks < stop; ks++)
1908 if (strcmp(ks->name, name) == 0)
1909 return ks;
1910 return NULL;
1911}
1912
Tim Abbottca4787b2009-01-05 08:40:10 -06001913static int is_exported(const char *name, unsigned long value,
1914 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Tim Abbottca4787b2009-01-05 08:40:10 -06001916 const struct kernel_symbol *ks;
1917 if (!mod)
1918 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001919 else
Tim Abbottca4787b2009-01-05 08:40:10 -06001920 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
1921 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923
1924/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06001925static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Rusty Russelleded41c2010-08-05 12:59:07 -06001927 const Elf_Shdr *sechdrs = info->sechdrs;
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1930 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1931 return 'v';
1932 else
1933 return 'w';
1934 }
1935 if (sym->st_shndx == SHN_UNDEF)
1936 return 'U';
1937 if (sym->st_shndx == SHN_ABS)
1938 return 'a';
1939 if (sym->st_shndx >= SHN_LORESERVE)
1940 return '?';
1941 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1942 return 't';
1943 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1944 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1945 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1946 return 'r';
1947 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1948 return 'g';
1949 else
1950 return 'd';
1951 }
1952 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1953 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1954 return 's';
1955 else
1956 return 'b';
1957 }
Rusty Russelleded41c2010-08-05 12:59:07 -06001958 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
1959 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06001961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 return '?';
1963}
1964
Jan Beulich4a496222009-07-06 14:50:42 +01001965static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
1966 unsigned int shnum)
1967{
1968 const Elf_Shdr *sec;
1969
1970 if (src->st_shndx == SHN_UNDEF
1971 || src->st_shndx >= shnum
1972 || !src->st_name)
1973 return false;
1974
1975 sec = sechdrs + src->st_shndx;
1976 if (!(sec->sh_flags & SHF_ALLOC)
1977#ifndef CONFIG_KALLSYMS_ALL
1978 || !(sec->sh_flags & SHF_EXECINSTR)
1979#endif
1980 || (sec->sh_entsize & INIT_OFFSET_MASK))
1981 return false;
1982
1983 return true;
1984}
1985
1986static unsigned long layout_symtab(struct module *mod,
1987 Elf_Shdr *sechdrs,
1988 unsigned int symindex,
Jan Beulich554bdfe2009-07-06 14:51:44 +01001989 unsigned int strindex,
Jan Beulich4a496222009-07-06 14:50:42 +01001990 const Elf_Ehdr *hdr,
Jan Beulich554bdfe2009-07-06 14:51:44 +01001991 const char *secstrings,
1992 unsigned long *pstroffs,
1993 unsigned long *strmap)
Jan Beulich4a496222009-07-06 14:50:42 +01001994{
1995 unsigned long symoffs;
1996 Elf_Shdr *symsect = sechdrs + symindex;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001997 Elf_Shdr *strsect = sechdrs + strindex;
Jan Beulich4a496222009-07-06 14:50:42 +01001998 const Elf_Sym *src;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001999 const char *strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01002000 unsigned int i, nsrc, ndst;
2001
2002 /* Put symbol section at end of init part of module. */
2003 symsect->sh_flags |= SHF_ALLOC;
2004 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
2005 symindex) | INIT_OFFSET_MASK;
2006 DEBUGP("\t%s\n", secstrings + symsect->sh_name);
2007
2008 src = (void *)hdr + symsect->sh_offset;
2009 nsrc = symsect->sh_size / sizeof(*src);
Jan Beulich554bdfe2009-07-06 14:51:44 +01002010 strtab = (void *)hdr + strsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002011 for (ndst = i = 1; i < nsrc; ++i, ++src)
Jan Beulich554bdfe2009-07-06 14:51:44 +01002012 if (is_core_symbol(src, sechdrs, hdr->e_shnum)) {
2013 unsigned int j = src->st_name;
2014
2015 while(!__test_and_set_bit(j, strmap) && strtab[j])
2016 ++j;
Jan Beulich4a496222009-07-06 14:50:42 +01002017 ++ndst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002018 }
Jan Beulich4a496222009-07-06 14:50:42 +01002019
2020 /* Append room for core symbols at end of core part. */
2021 symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
2022 mod->core_size = symoffs + ndst * sizeof(Elf_Sym);
2023
Jan Beulich554bdfe2009-07-06 14:51:44 +01002024 /* Put string table section at end of init part of module. */
2025 strsect->sh_flags |= SHF_ALLOC;
2026 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
2027 strindex) | INIT_OFFSET_MASK;
2028 DEBUGP("\t%s\n", secstrings + strsect->sh_name);
2029
2030 /* Append room for core symbols' strings at end of core part. */
2031 *pstroffs = mod->core_size;
2032 __set_bit(0, strmap);
2033 mod->core_size += bitmap_weight(strmap, strsect->sh_size);
2034
Jan Beulich4a496222009-07-06 14:50:42 +01002035 return symoffs;
2036}
2037
Rusty Russelld9131882010-08-05 12:59:08 -06002038static void add_kallsyms(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
Jan Beulich4a496222009-07-06 14:50:42 +01002040 unsigned int i, ndst;
2041 const Elf_Sym *src;
2042 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002043 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002044 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Rusty Russelleded41c2010-08-05 12:59:07 -06002046 mod->symtab = (void *)symsec->sh_addr;
2047 mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002048 /* Make sure we get permanent strtab: don't use info->strtab. */
2049 mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 /* Set types up while we still have access to sections. */
2052 for (i = 0; i < mod->num_symtab; i++)
Rusty Russelleded41c2010-08-05 12:59:07 -06002053 mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002054
Rusty Russelld9131882010-08-05 12:59:08 -06002055 mod->core_symtab = dst = mod->module_core + info->symoffs;
Jan Beulich4a496222009-07-06 14:50:42 +01002056 src = mod->symtab;
2057 *dst = *src;
2058 for (ndst = i = 1; i < mod->num_symtab; ++i, ++src) {
Rusty Russelleded41c2010-08-05 12:59:07 -06002059 if (!is_core_symbol(src, info->sechdrs, info->hdr->e_shnum))
Jan Beulich4a496222009-07-06 14:50:42 +01002060 continue;
2061 dst[ndst] = *src;
Rusty Russelld9131882010-08-05 12:59:08 -06002062 dst[ndst].st_name = bitmap_weight(info->strmap,
2063 dst[ndst].st_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002064 ++ndst;
2065 }
2066 mod->core_num_syms = ndst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002067
Rusty Russelld9131882010-08-05 12:59:08 -06002068 mod->core_strtab = s = mod->module_core + info->stroffs;
Rusty Russelleded41c2010-08-05 12:59:07 -06002069 for (*s = 0, i = 1; i < info->sechdrs[info->index.str].sh_size; ++i)
Rusty Russelld9131882010-08-05 12:59:08 -06002070 if (test_bit(i, info->strmap))
Jan Beulich554bdfe2009-07-06 14:51:44 +01002071 *++s = mod->strtab[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073#else
Jan Beulich4a496222009-07-06 14:50:42 +01002074static inline unsigned long layout_symtab(struct module *mod,
2075 Elf_Shdr *sechdrs,
2076 unsigned int symindex,
Jan Beulich554bdfe2009-07-06 14:51:44 +01002077 unsigned int strindex,
Paul Mundt3ae91c22009-10-01 15:43:54 -07002078 const Elf_Ehdr *hdr,
Jan Beulich554bdfe2009-07-06 14:51:44 +01002079 const char *secstrings,
2080 unsigned long *pstroffs,
2081 unsigned long *strmap)
Jan Beulich4a496222009-07-06 14:50:42 +01002082{
Paul Mundt3ae91c22009-10-01 15:43:54 -07002083 return 0;
Jan Beulich4a496222009-07-06 14:50:42 +01002084}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002085
Rusty Russelld9131882010-08-05 12:59:08 -06002086static void add_kallsyms(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
2088}
2089#endif /* CONFIG_KALLSYMS */
2090
Jason Barone9d376f2009-02-05 11:51:38 -05002091static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002092{
Jason Barone9d376f2009-02-05 11:51:38 -05002093#ifdef CONFIG_DYNAMIC_DEBUG
2094 if (ddebug_add_module(debug, num, debug->modname))
2095 printk(KERN_ERR "dynamic debug error adding module: %s\n",
2096 debug->modname);
2097#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002098}
Jason Baron346e15b2008-08-12 16:46:19 -04002099
Yehuda Sadehff49d742010-07-03 13:07:35 +10002100static void dynamic_debug_remove(struct _ddebug *debug)
2101{
2102 if (debug)
2103 ddebug_remove_module(debug->modname);
2104}
2105
Rusty Russell3a642e92008-07-22 19:24:28 -05002106static void *module_alloc_update_bounds(unsigned long size)
2107{
2108 void *ret = module_alloc(size);
2109
2110 if (ret) {
Rusty Russell75676502010-06-05 11:17:36 -06002111 mutex_lock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002112 /* Update module bounds. */
2113 if ((unsigned long)ret < module_addr_min)
2114 module_addr_min = (unsigned long)ret;
2115 if ((unsigned long)ret + size > module_addr_max)
2116 module_addr_max = (unsigned long)ret + size;
Rusty Russell75676502010-06-05 11:17:36 -06002117 mutex_unlock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002118 }
2119 return ret;
2120}
2121
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002122#ifdef CONFIG_DEBUG_KMEMLEAK
2123static void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002124 const Elf_Shdr *sechdrs,
2125 const char *secstrings)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002126{
2127 unsigned int i;
2128
2129 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002130 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002131
2132 for (i = 1; i < hdr->e_shnum; i++) {
2133 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
2134 continue;
2135 if (strncmp(secstrings + sechdrs[i].sh_name, ".data", 5) != 0
2136 && strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) != 0)
2137 continue;
2138
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002139 kmemleak_scan_area((void *)sechdrs[i].sh_addr,
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002140 sechdrs[i].sh_size, GFP_KERNEL);
2141 }
2142}
2143#else
2144static inline void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002145 Elf_Shdr *sechdrs,
2146 const char *secstrings)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002147{
2148}
2149#endif
2150
Rusty Russelld9131882010-08-05 12:59:08 -06002151/* Sets info->hdr, info->len and info->args. */
2152static int copy_and_check(struct load_info *info,
2153 const void __user *umod, unsigned long len,
2154 const char __user *uargs)
Rusty Russell40dd2562010-08-05 12:59:03 -06002155{
2156 int err;
2157 Elf_Ehdr *hdr;
2158
2159 if (len < sizeof(*hdr))
2160 return -ENOEXEC;
2161
2162 /* Suck in entire file: we'll want most of it. */
2163 /* vmalloc barfs on "unusual" numbers. Check here */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002164 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
Rusty Russell40dd2562010-08-05 12:59:03 -06002165 return -ENOMEM;
2166
2167 if (copy_from_user(hdr, umod, len) != 0) {
2168 err = -EFAULT;
2169 goto free_hdr;
2170 }
2171
2172 /* Sanity checks against insmoding binaries or wrong arch,
2173 weird elf version */
2174 if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
2175 || hdr->e_type != ET_REL
2176 || !elf_check_arch(hdr)
2177 || hdr->e_shentsize != sizeof(Elf_Shdr)) {
2178 err = -ENOEXEC;
2179 goto free_hdr;
2180 }
2181
2182 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr)) {
2183 err = -ENOEXEC;
2184 goto free_hdr;
2185 }
Rusty Russelld9131882010-08-05 12:59:08 -06002186
2187 /* Now copy in args */
2188 info->args = strndup_user(uargs, ~0UL >> 1);
2189 if (IS_ERR(info->args)) {
2190 err = PTR_ERR(info->args);
2191 goto free_hdr;
2192 }
2193
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002194 info->hdr = hdr;
2195 info->len = len;
Rusty Russell40dd2562010-08-05 12:59:03 -06002196 return 0;
2197
2198free_hdr:
2199 vfree(hdr);
2200 return err;
2201}
2202
Rusty Russelld9131882010-08-05 12:59:08 -06002203static void free_copy(struct load_info *info)
2204{
2205 kfree(info->args);
2206 vfree(info->hdr);
2207}
2208
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002209static int rewrite_section_headers(struct load_info *info)
2210{
2211 unsigned int i;
2212
2213 /* This should always be true, but let's be sure. */
2214 info->sechdrs[0].sh_addr = 0;
2215
2216 for (i = 1; i < info->hdr->e_shnum; i++) {
2217 Elf_Shdr *shdr = &info->sechdrs[i];
2218 if (shdr->sh_type != SHT_NOBITS
2219 && info->len < shdr->sh_offset + shdr->sh_size) {
2220 printk(KERN_ERR "Module len %lu truncated\n",
2221 info->len);
2222 return -ENOEXEC;
2223 }
2224
2225 /* Mark all sections sh_addr with their address in the
2226 temporary image. */
2227 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2228
2229#ifndef CONFIG_MODULE_UNLOAD
2230 /* Don't load .exit sections */
2231 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2232 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2233#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002234 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002235
2236 /* Track but don't keep modinfo and version sections. */
2237 info->index.vers = find_sec(info->hdr, info->sechdrs, info->secstrings, "__versions");
2238 info->index.info = find_sec(info->hdr, info->sechdrs, info->secstrings, ".modinfo");
2239 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2240 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002241 return 0;
2242}
2243
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002244/*
2245 * Set up our basic convenience variables (pointers to section headers,
2246 * search for module section index etc), and do some basic section
2247 * verification.
2248 *
2249 * Return the temporary module pointer (we'll replace it with the final
2250 * one when we move the module sections around).
2251 */
2252static struct module *setup_load_info(struct load_info *info)
2253{
2254 unsigned int i;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002255 int err;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002256 struct module *mod;
2257
2258 /* Set up the convenience variables */
2259 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002260 info->secstrings = (void *)info->hdr
2261 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002262
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002263 err = rewrite_section_headers(info);
2264 if (err)
2265 return ERR_PTR(err);
2266
2267 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002268 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002269 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2270 info->index.sym = i;
2271 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002272 info->strtab = (char *)info->hdr
2273 + info->sechdrs[info->index.str].sh_offset;
2274 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002275 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002276 }
2277
2278 info->index.mod = find_sec(info->hdr, info->sechdrs, info->secstrings,
2279 ".gnu.linkonce.this_module");
2280 if (!info->index.mod) {
2281 printk(KERN_WARNING "No module found in object\n");
2282 return ERR_PTR(-ENOEXEC);
2283 }
2284 /* This is temporary: point mod into copy of data. */
2285 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2286
2287 if (info->index.sym == 0) {
2288 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
2289 mod->name);
2290 return ERR_PTR(-ENOEXEC);
2291 }
2292
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002293 info->index.pcpu = find_pcpusec(info->hdr, info->sechdrs, info->secstrings);
2294
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002295 /* Check module struct version now, before we try to use module. */
2296 if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
2297 return ERR_PTR(-ENOEXEC);
2298
2299 return mod;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002300}
2301
Rusty Russell40dd2562010-08-05 12:59:03 -06002302static int check_modinfo(struct module *mod,
2303 const Elf_Shdr *sechdrs,
2304 unsigned int infoindex, unsigned int versindex)
2305{
2306 const char *modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
2307 int err;
2308
2309 /* This is allowed: modprobe --force will invalidate it. */
2310 if (!modmagic) {
2311 err = try_to_force_load(mod, "bad vermagic");
2312 if (err)
2313 return err;
2314 } else if (!same_magic(modmagic, vermagic, versindex)) {
2315 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
2316 mod->name, modmagic, vermagic);
2317 return -ENOEXEC;
2318 }
2319
2320 if (get_modinfo(sechdrs, infoindex, "staging")) {
2321 add_taint_module(mod, TAINT_CRAP);
2322 printk(KERN_WARNING "%s: module is from the staging directory,"
2323 " the quality is unknown, you have been warned.\n",
2324 mod->name);
2325 }
Rusty Russell22e268e2010-08-05 12:59:05 -06002326
2327 /* Set up license info based on the info section */
2328 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
2329
Rusty Russell40dd2562010-08-05 12:59:03 -06002330 return 0;
2331}
2332
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002333static void find_module_sections(struct module *mod, Elf_Ehdr *hdr,
2334 Elf_Shdr *sechdrs, const char *secstrings)
2335{
2336 mod->kp = section_objs(hdr, sechdrs, secstrings, "__param",
2337 sizeof(*mod->kp), &mod->num_kp);
2338 mod->syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab",
2339 sizeof(*mod->syms), &mod->num_syms);
2340 mod->crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab");
2341 mod->gpl_syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab_gpl",
2342 sizeof(*mod->gpl_syms),
2343 &mod->num_gpl_syms);
2344 mod->gpl_crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab_gpl");
2345 mod->gpl_future_syms = section_objs(hdr, sechdrs, secstrings,
2346 "__ksymtab_gpl_future",
2347 sizeof(*mod->gpl_future_syms),
2348 &mod->num_gpl_future_syms);
2349 mod->gpl_future_crcs = section_addr(hdr, sechdrs, secstrings,
2350 "__kcrctab_gpl_future");
2351
2352#ifdef CONFIG_UNUSED_SYMBOLS
2353 mod->unused_syms = section_objs(hdr, sechdrs, secstrings,
2354 "__ksymtab_unused",
2355 sizeof(*mod->unused_syms),
2356 &mod->num_unused_syms);
2357 mod->unused_crcs = section_addr(hdr, sechdrs, secstrings,
2358 "__kcrctab_unused");
2359 mod->unused_gpl_syms = section_objs(hdr, sechdrs, secstrings,
2360 "__ksymtab_unused_gpl",
2361 sizeof(*mod->unused_gpl_syms),
2362 &mod->num_unused_gpl_syms);
2363 mod->unused_gpl_crcs = section_addr(hdr, sechdrs, secstrings,
2364 "__kcrctab_unused_gpl");
2365#endif
2366#ifdef CONFIG_CONSTRUCTORS
2367 mod->ctors = section_objs(hdr, sechdrs, secstrings, ".ctors",
2368 sizeof(*mod->ctors), &mod->num_ctors);
2369#endif
2370
2371#ifdef CONFIG_TRACEPOINTS
2372 mod->tracepoints = section_objs(hdr, sechdrs, secstrings,
2373 "__tracepoints",
2374 sizeof(*mod->tracepoints),
2375 &mod->num_tracepoints);
2376#endif
2377#ifdef CONFIG_EVENT_TRACING
2378 mod->trace_events = section_objs(hdr, sechdrs, secstrings,
2379 "_ftrace_events",
2380 sizeof(*mod->trace_events),
2381 &mod->num_trace_events);
2382 /*
2383 * This section contains pointers to allocated objects in the trace
2384 * code and not scanning it leads to false positives.
2385 */
2386 kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) *
2387 mod->num_trace_events, GFP_KERNEL);
2388#endif
2389#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2390 /* sechdrs[0].sh_size is always zero */
2391 mod->ftrace_callsites = section_objs(hdr, sechdrs, secstrings,
2392 "__mcount_loc",
2393 sizeof(*mod->ftrace_callsites),
2394 &mod->num_ftrace_callsites);
2395#endif
Rusty Russell22e268e2010-08-05 12:59:05 -06002396
2397 if (section_addr(hdr, sechdrs, secstrings, "__obsparm"))
2398 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2399 mod->name);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002400}
2401
Rusty Russelld9131882010-08-05 12:59:08 -06002402static int move_module(struct module *mod,
2403 Elf_Ehdr *hdr, Elf_Shdr *sechdrs,
2404 const char *secstrings, unsigned modindex)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002405{
2406 int i;
2407 void *ptr;
2408
2409 /* Do the allocs. */
2410 ptr = module_alloc_update_bounds(mod->core_size);
2411 /*
2412 * The pointer to this block is stored in the module structure
2413 * which is inside the block. Just mark it as not being a
2414 * leak.
2415 */
2416 kmemleak_not_leak(ptr);
2417 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06002418 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002419
2420 memset(ptr, 0, mod->core_size);
2421 mod->module_core = ptr;
2422
2423 ptr = module_alloc_update_bounds(mod->init_size);
2424 /*
2425 * The pointer to this block is stored in the module structure
2426 * which is inside the block. This block doesn't need to be
2427 * scanned as it contains data and code that will be freed
2428 * after the module is initialized.
2429 */
2430 kmemleak_ignore(ptr);
2431 if (!ptr && mod->init_size) {
2432 module_free(mod, mod->module_core);
Rusty Russelld9131882010-08-05 12:59:08 -06002433 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002434 }
2435 memset(ptr, 0, mod->init_size);
2436 mod->module_init = ptr;
2437
2438 /* Transfer each section which specifies SHF_ALLOC */
2439 DEBUGP("final section addresses:\n");
2440 for (i = 0; i < hdr->e_shnum; i++) {
2441 void *dest;
2442
2443 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
2444 continue;
2445
2446 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
2447 dest = mod->module_init
2448 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
2449 else
2450 dest = mod->module_core + sechdrs[i].sh_entsize;
2451
2452 if (sechdrs[i].sh_type != SHT_NOBITS)
2453 memcpy(dest, (void *)sechdrs[i].sh_addr,
2454 sechdrs[i].sh_size);
2455 /* Update sh_addr to point to copy in image. */
2456 sechdrs[i].sh_addr = (unsigned long)dest;
2457 DEBUGP("\t0x%lx %s\n",
2458 sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
2459 }
Rusty Russelld9131882010-08-05 12:59:08 -06002460
2461 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002462}
2463
Rusty Russell22e268e2010-08-05 12:59:05 -06002464static int check_module_license_and_versions(struct module *mod,
2465 Elf_Shdr *sechdrs)
2466{
2467 /*
2468 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2469 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2470 * using GPL-only symbols it needs.
2471 */
2472 if (strcmp(mod->name, "ndiswrapper") == 0)
2473 add_taint(TAINT_PROPRIETARY_MODULE);
2474
2475 /* driverloader was caught wrongly pretending to be under GPL */
2476 if (strcmp(mod->name, "driverloader") == 0)
2477 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2478
2479#ifdef CONFIG_MODVERSIONS
2480 if ((mod->num_syms && !mod->crcs)
2481 || (mod->num_gpl_syms && !mod->gpl_crcs)
2482 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2483#ifdef CONFIG_UNUSED_SYMBOLS
2484 || (mod->num_unused_syms && !mod->unused_crcs)
2485 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2486#endif
2487 ) {
2488 return try_to_force_load(mod,
2489 "no versions for exported symbols");
2490 }
2491#endif
2492 return 0;
2493}
2494
2495static void flush_module_icache(const struct module *mod)
2496{
2497 mm_segment_t old_fs;
2498
2499 /* flush the icache in correct context */
2500 old_fs = get_fs();
2501 set_fs(KERNEL_DS);
2502
2503 /*
2504 * Flush the instruction cache, since we've played with text.
2505 * Do it before processing of module parameters, so the module
2506 * can provide parameter accessor functions of its own.
2507 */
2508 if (mod->module_init)
2509 flush_icache_range((unsigned long)mod->module_init,
2510 (unsigned long)mod->module_init
2511 + mod->init_size);
2512 flush_icache_range((unsigned long)mod->module_core,
2513 (unsigned long)mod->module_core + mod->core_size);
2514
2515 set_fs(old_fs);
2516}
2517
Rusty Russelld9131882010-08-05 12:59:08 -06002518static struct module *layout_and_allocate(struct load_info *info)
2519{
2520 /* Module within temporary copy. */
2521 struct module *mod;
2522 int err;
2523
2524 mod = setup_load_info(info);
2525 if (IS_ERR(mod))
2526 return mod;
2527
2528 err = check_modinfo(mod, info->sechdrs, info->index.info, info->index.vers);
2529 if (err)
2530 return ERR_PTR(err);
2531
2532 /* Allow arches to frob section contents and sizes. */
2533 err = module_frob_arch_sections(info->hdr, info->sechdrs, info->secstrings, mod);
2534 if (err < 0)
2535 goto free_args;
2536
2537 if (info->index.pcpu) {
2538 /* We have a special allocation for this section. */
2539 err = percpu_modalloc(mod, info->sechdrs[info->index.pcpu].sh_size,
2540 info->sechdrs[info->index.pcpu].sh_addralign);
2541 if (err)
2542 goto free_args;
2543 info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
2544 }
2545
2546 /* Determine total sizes, and put offsets in sh_entsize. For now
2547 this is done generically; there doesn't appear to be any
2548 special cases for the architectures. */
2549 layout_sections(mod, info->hdr, info->sechdrs, info->secstrings);
2550
2551 info->strmap = kzalloc(BITS_TO_LONGS(info->sechdrs[info->index.str].sh_size)
2552 * sizeof(long), GFP_KERNEL);
2553 if (!info->strmap) {
2554 err = -ENOMEM;
2555 goto free_percpu;
2556 }
2557 info->symoffs = layout_symtab(mod, info->sechdrs, info->index.sym, info->index.str, info->hdr,
2558 info->secstrings, &info->stroffs, info->strmap);
2559
2560 /* Allocate and move to the final place */
2561 err = move_module(mod, info->hdr, info->sechdrs, info->secstrings, info->index.mod);
2562 if (err)
2563 goto free_strmap;
2564
2565 /* Module has been copied to its final place now: return it. */
2566 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2567 kmemleak_load_module(mod, info->hdr, info->sechdrs, info->secstrings);
2568 return mod;
2569
2570free_strmap:
2571 kfree(info->strmap);
2572free_percpu:
2573 percpu_modfree(mod);
2574free_args:
2575 kfree(info->args);
2576 return ERR_PTR(err);
2577}
2578
2579/* mod is no longer valid after this! */
2580static void module_deallocate(struct module *mod, struct load_info *info)
2581{
2582 kfree(info->strmap);
2583 percpu_modfree(mod);
2584 module_free(mod, mod->module_init);
2585 module_free(mod, mod->module_core);
2586}
2587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588/* Allocate and load the module: note that size of section 0 is always
2589 zero, and we rely on this for optional sections. */
Linus Torvaldsffb4ba72008-08-25 11:10:26 -07002590static noinline struct module *load_module(void __user *umod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 unsigned long len,
2592 const char __user *uargs)
2593{
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002594 struct load_info info = { NULL, };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 struct module *mod;
Rusty Russell40dd2562010-08-05 12:59:03 -06002596 long err;
Yehuda Sadehff49d742010-07-03 13:07:35 +10002597 struct _ddebug *debug = NULL;
2598 unsigned int num_debug = 0;
Paul Mundt3ae91c22009-10-01 15:43:54 -07002599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
2601 umod, len, uargs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Rusty Russelld9131882010-08-05 12:59:08 -06002603 /* Copy in the blobs from userspace, check they are vaguely sane. */
2604 err = copy_and_check(&info, umod, len, uargs);
Rusty Russell40dd2562010-08-05 12:59:03 -06002605 if (err)
2606 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Rusty Russelld9131882010-08-05 12:59:08 -06002608 /* Figure out module layout, and allocate all the memory. */
2609 mod = layout_and_allocate(&info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002610 if (IS_ERR(mod)) {
2611 err = PTR_ERR(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002612 goto free_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
2615 /* Now we've moved module, initialize linked lists, etc. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -06002616 err = module_unload_init(mod);
2617 if (err)
Rusty Russelld9131882010-08-05 12:59:08 -06002618 goto free_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Rusty Russell22e268e2010-08-05 12:59:05 -06002620 /* Now we've got everything in the final locations, we can
2621 * find optional sections. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002622 find_module_sections(mod, info.hdr, info.sechdrs, info.secstrings);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002624 err = check_module_license_and_versions(mod, info.sechdrs);
Rusty Russell22e268e2010-08-05 12:59:05 -06002625 if (err)
2626 goto free_unload;
Dave Jones9841d61d2006-01-08 01:03:41 -08002627
Matt Domschc988d2b2005-06-23 22:05:15 -07002628 /* Set up MODINFO_ATTR fields */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002629 setup_modinfo(mod, info.sechdrs, info.index.info);
Matt Domschc988d2b2005-06-23 22:05:15 -07002630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 /* Fix up syms, so that st_value is a pointer to location. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002632 err = simplify_symbols(info.sechdrs, info.index.sym, info.strtab, info.index.vers, info.index.pcpu,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 mod);
2634 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002635 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002637 err = apply_relocations(mod, info.hdr, info.sechdrs, info.index.sym, info.index.str);
Rusty Russell22e268e2010-08-05 12:59:05 -06002638 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002639 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
2641 /* Set up and sort exception table */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002642 mod->extable = section_objs(info.hdr, info.sechdrs, info.secstrings, "__ex_table",
Rusty Russell5e458cc2008-10-22 10:00:13 -05002643 sizeof(*mod->extable), &mod->num_exentries);
2644 sort_extable(mod->extable, mod->extable + mod->num_exentries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
2646 /* Finally, copy percpu area over. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002647 percpu_modcopy(mod, (void *)info.sechdrs[info.index.pcpu].sh_addr,
2648 info.sechdrs[info.index.pcpu].sh_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Rusty Russelld9131882010-08-05 12:59:08 -06002650 add_kallsyms(mod, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
Yehuda Sadehff49d742010-07-03 13:07:35 +10002652 if (!mod->taints)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002653 debug = section_objs(info.hdr, info.sechdrs, info.secstrings, "__verbose",
Rusty Russell5e458cc2008-10-22 10:00:13 -05002654 sizeof(*debug), &num_debug);
Steven Rostedt90d595f2008-08-14 15:45:09 -04002655
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002656 err = module_finalize(info.hdr, info.sechdrs, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002658 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Rusty Russell22e268e2010-08-05 12:59:05 -06002660 flush_module_icache(mod);
Thomas Koeller378bac82005-09-06 15:17:11 -07002661
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002662 mod->args = info.args;
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002663
Rusty Russelld9131882010-08-05 12:59:08 -06002664 mod->state = MODULE_STATE_COMING;
2665
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002666 /* Now sew it into the lists so we can get lockdep and oops
Andi Kleend72b3752008-08-30 10:09:00 +02002667 * info during argument parsing. Noone should access us, since
2668 * strong_try_module_get() will fail.
2669 * lockdep/oops can run asynchronous, so use the RCU list insertion
2670 * function to insert in a way safe to concurrent readers.
2671 * The mutex protects against concurrent writers.
2672 */
Rusty Russell75676502010-06-05 11:17:36 -06002673 mutex_lock(&module_mutex);
Linus Torvalds3bafeb62010-06-05 11:17:36 -06002674 if (find_module(mod->name)) {
2675 err = -EEXIST;
Rusty Russellbe593f42010-06-05 11:17:37 -06002676 goto unlock;
Linus Torvalds3bafeb62010-06-05 11:17:36 -06002677 }
2678
Yehuda Sadehff49d742010-07-03 13:07:35 +10002679 if (debug)
2680 dynamic_debug_setup(debug, num_debug);
2681
Rusty Russellbe593f42010-06-05 11:17:37 -06002682 /* Find duplicate symbols */
2683 err = verify_export_symbols(mod);
2684 if (err < 0)
Yehuda Sadehff49d742010-07-03 13:07:35 +10002685 goto ddebug;
Rusty Russellbe593f42010-06-05 11:17:37 -06002686
Andi Kleend72b3752008-08-30 10:09:00 +02002687 list_add_rcu(&mod->list, &modules);
Rusty Russell75676502010-06-05 11:17:36 -06002688 mutex_unlock(&module_mutex);
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002689
Rusty Russelle180a6b2009-03-31 13:05:29 -06002690 err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002692 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Rusty Russelle180a6b2009-03-31 13:05:29 -06002694 err = mod_sysfs_setup(mod, mod->kp, mod->num_kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002696 goto unlink;
Rusty Russell80a3d1b2010-06-05 11:17:36 -06002697
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002698 add_sect_attrs(mod, info.hdr->e_shnum, info.secstrings, info.sechdrs);
2699 add_notes_attrs(mod, info.hdr->e_shnum, info.secstrings, info.sechdrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
Rusty Russelld9131882010-08-05 12:59:08 -06002701 /* Get rid of temporary copy and strmap. */
2702 kfree(info.strmap);
2703 free_copy(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Li Zefan7ead8b82009-08-17 16:56:28 +08002705 trace_module_load(mod);
2706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /* Done! */
2708 return mod;
2709
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002710 unlink:
Rusty Russell75676502010-06-05 11:17:36 -06002711 mutex_lock(&module_mutex);
Rusty Russelle91defa2009-03-31 13:05:35 -06002712 /* Unlink carefully: kallsyms could be walking list. */
2713 list_del_rcu(&mod->list);
Yehuda Sadehff49d742010-07-03 13:07:35 +10002714 ddebug:
2715 dynamic_debug_remove(debug);
Rusty Russellbe593f42010-06-05 11:17:37 -06002716 unlock:
Rusty Russell75676502010-06-05 11:17:36 -06002717 mutex_unlock(&module_mutex);
Rusty Russelle91defa2009-03-31 13:05:35 -06002718 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 module_arch_cleanup(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002720 free_modinfo:
Rusty Russella263f772009-09-25 00:32:58 -06002721 free_modinfo(mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002722 free_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 module_unload_free(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002724 free_module:
2725 module_deallocate(mod, &info);
2726 free_copy:
2727 free_copy(&info);
Jayachandran C6fe2e702006-01-06 00:19:54 -08002728 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729}
2730
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002731/* Call module constructors. */
2732static void do_mod_ctors(struct module *mod)
2733{
2734#ifdef CONFIG_CONSTRUCTORS
2735 unsigned long i;
2736
2737 for (i = 0; i < mod->num_ctors; i++)
2738 mod->ctors[i]();
2739#endif
2740}
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742/* This is where the real work happens */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002743SYSCALL_DEFINE3(init_module, void __user *, umod,
2744 unsigned long, len, const char __user *, uargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
2746 struct module *mod;
2747 int ret = 0;
2748
2749 /* Must have permission */
Kees Cook3d433212009-04-02 15:49:29 -07002750 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 return -EPERM;
2752
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 /* Do all the hard work */
2754 mod = load_module(umod, len, uargs);
Rusty Russell75676502010-06-05 11:17:36 -06002755 if (IS_ERR(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 return PTR_ERR(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Alan Sterne041c682006-03-27 01:16:30 -08002758 blocking_notifier_call_chain(&module_notify_list,
2759 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002761 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 /* Start the module */
2763 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07002764 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 if (ret < 0) {
2766 /* Init routine failed: abort. Try to protect us from
2767 buggy refcounters. */
2768 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002769 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002770 module_put(mod);
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02002771 blocking_notifier_call_chain(&module_notify_list,
2772 MODULE_STATE_GOING, mod);
Rusty Russellaf49d922007-10-16 23:26:27 -07002773 free_module(mod);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05002774 wake_up(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 return ret;
2776 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002777 if (ret > 0) {
Joe Perchesad361c92009-07-06 13:05:40 -07002778 printk(KERN_WARNING
2779"%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n"
2780"%s: loading module anyway...\n",
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002781 __func__, mod->name, ret,
2782 __func__);
2783 dump_stack();
2784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Rusty Russell6c5db222008-03-10 11:43:52 -07002786 /* Now it's a first class citizen! Wake up anyone waiting for it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 mod->state = MODULE_STATE_LIVE;
Rusty Russell6c5db222008-03-10 11:43:52 -07002788 wake_up(&module_wq);
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08002789 blocking_notifier_call_chain(&module_notify_list,
2790 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07002791
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07002792 /* We need to finish all async code before the module init sequence is done */
2793 async_synchronize_full();
2794
Rusty Russell6c5db222008-03-10 11:43:52 -07002795 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 /* Drop initial reference. */
2797 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06002798 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01002799#ifdef CONFIG_KALLSYMS
2800 mod->num_symtab = mod->core_num_syms;
2801 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002802 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01002803#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 module_free(mod, mod->module_init);
2805 mod->module_init = NULL;
2806 mod->init_size = 0;
2807 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08002808 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
2810 return 0;
2811}
2812
2813static inline int within(unsigned long addr, void *start, unsigned long size)
2814{
2815 return ((void *)addr >= start && (void *)addr < start + size);
2816}
2817
2818#ifdef CONFIG_KALLSYMS
2819/*
2820 * This ignores the intensely annoying "mapping symbols" found
2821 * in ARM ELF files: $a, $t and $d.
2822 */
2823static inline int is_arm_mapping_symbol(const char *str)
2824{
Daniel Walker22a8bde2007-10-18 03:06:07 -07002825 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 && (str[2] == '\0' || str[2] == '.');
2827}
2828
2829static const char *get_ksymbol(struct module *mod,
2830 unsigned long addr,
2831 unsigned long *size,
2832 unsigned long *offset)
2833{
2834 unsigned int i, best = 0;
2835 unsigned long nextval;
2836
2837 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002838 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002840 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2842
2843 /* Scan for closest preceeding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07002844 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 for (i = 1; i < mod->num_symtab; i++) {
2846 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2847 continue;
2848
2849 /* We ignore unnamed symbols: they're uninformative
2850 * and inserted at a whim. */
2851 if (mod->symtab[i].st_value <= addr
2852 && mod->symtab[i].st_value > mod->symtab[best].st_value
2853 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2854 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2855 best = i;
2856 if (mod->symtab[i].st_value > addr
2857 && mod->symtab[i].st_value < nextval
2858 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2859 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2860 nextval = mod->symtab[i].st_value;
2861 }
2862
2863 if (!best)
2864 return NULL;
2865
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002866 if (size)
2867 *size = nextval - mod->symtab[best].st_value;
2868 if (offset)
2869 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return mod->strtab + mod->symtab[best].st_name;
2871}
2872
Rusty Russell6dd06c92008-01-29 17:13:22 -05002873/* For kallsyms to ask for address resolution. NULL means not found. Careful
2874 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002875const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05002876 unsigned long *size,
2877 unsigned long *offset,
2878 char **modname,
2879 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
2881 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002882 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Rusty Russellcb2a5202008-01-14 00:55:03 -08002884 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002885 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002886 if (within_module_init(addr, mod) ||
2887 within_module_core(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07002888 if (modname)
2889 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002890 ret = get_ksymbol(mod, addr, size, offset);
2891 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 }
2893 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05002894 /* Make a copy in here where it's safe */
2895 if (ret) {
2896 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2897 ret = namebuf;
2898 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002899 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002900 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901}
2902
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002903int lookup_module_symbol_name(unsigned long addr, char *symname)
2904{
2905 struct module *mod;
2906
Rusty Russellcb2a5202008-01-14 00:55:03 -08002907 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002908 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002909 if (within_module_init(addr, mod) ||
2910 within_module_core(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002911 const char *sym;
2912
2913 sym = get_ksymbol(mod, addr, NULL, NULL);
2914 if (!sym)
2915 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07002916 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002917 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002918 return 0;
2919 }
2920 }
2921out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002922 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002923 return -ERANGE;
2924}
2925
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002926int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2927 unsigned long *offset, char *modname, char *name)
2928{
2929 struct module *mod;
2930
Rusty Russellcb2a5202008-01-14 00:55:03 -08002931 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002932 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002933 if (within_module_init(addr, mod) ||
2934 within_module_core(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002935 const char *sym;
2936
2937 sym = get_ksymbol(mod, addr, size, offset);
2938 if (!sym)
2939 goto out;
2940 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07002941 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002942 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07002943 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002944 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002945 return 0;
2946 }
2947 }
2948out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002949 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002950 return -ERANGE;
2951}
2952
Alexey Dobriyanea078902007-05-08 00:28:39 -07002953int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2954 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955{
2956 struct module *mod;
2957
Rusty Russellcb2a5202008-01-14 00:55:03 -08002958 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002959 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 if (symnum < mod->num_symtab) {
2961 *value = mod->symtab[symnum].st_value;
2962 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07002963 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07002964 KSYM_NAME_LEN);
2965 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06002966 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002967 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002968 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 }
2970 symnum -= mod->num_symtab;
2971 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002972 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002973 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974}
2975
2976static unsigned long mod_find_symname(struct module *mod, const char *name)
2977{
2978 unsigned int i;
2979
2980 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002981 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2982 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 return mod->symtab[i].st_value;
2984 return 0;
2985}
2986
2987/* Look for this name: can be of form module:name. */
2988unsigned long module_kallsyms_lookup_name(const char *name)
2989{
2990 struct module *mod;
2991 char *colon;
2992 unsigned long ret = 0;
2993
2994 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002995 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 if ((colon = strchr(name, ':')) != NULL) {
2997 *colon = '\0';
2998 if ((mod = find_module(name)) != NULL)
2999 ret = mod_find_symname(mod, colon+1);
3000 *colon = ':';
3001 } else {
Andi Kleend72b3752008-08-30 10:09:00 +02003002 list_for_each_entry_rcu(mod, &modules, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 if ((ret = mod_find_symname(mod, name)) != 0)
3004 break;
3005 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003006 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 return ret;
3008}
Anders Kaseorg75a66612008-12-05 19:03:58 -05003009
3010int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
3011 struct module *, unsigned long),
3012 void *data)
3013{
3014 struct module *mod;
3015 unsigned int i;
3016 int ret;
3017
3018 list_for_each_entry(mod, &modules, list) {
3019 for (i = 0; i < mod->num_symtab; i++) {
3020 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
3021 mod, mod->symtab[i].st_value);
3022 if (ret != 0)
3023 return ret;
3024 }
3025 }
3026 return 0;
3027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028#endif /* CONFIG_KALLSYMS */
3029
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003030static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003031{
3032 int bx = 0;
3033
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003034 if (mod->taints ||
3035 mod->state == MODULE_STATE_GOING ||
3036 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003037 buf[bx++] = '(';
Andi Kleen25ddbb12008-10-15 22:01:41 -07003038 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003039 buf[bx++] = 'P';
Andi Kleen25ddbb12008-10-15 22:01:41 -07003040 if (mod->taints & (1 << TAINT_FORCED_MODULE))
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003041 buf[bx++] = 'F';
Linus Torvalds26e9a392008-10-17 09:50:12 -07003042 if (mod->taints & (1 << TAINT_CRAP))
Greg Kroah-Hartman061b1bd2008-09-24 14:46:44 -07003043 buf[bx++] = 'C';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003044 /*
3045 * TAINT_FORCED_RMMOD: could be added.
3046 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
3047 * apply to modules.
3048 */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003049
3050 /* Show a - for module-is-being-unloaded */
3051 if (mod->state == MODULE_STATE_GOING)
3052 buf[bx++] = '-';
3053 /* Show a + for module-is-being-loaded */
3054 if (mod->state == MODULE_STATE_COMING)
3055 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003056 buf[bx++] = ')';
3057 }
3058 buf[bx] = '\0';
3059
3060 return buf;
3061}
3062
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003063#ifdef CONFIG_PROC_FS
3064/* Called by the /proc file system to return a list of modules. */
3065static void *m_start(struct seq_file *m, loff_t *pos)
3066{
3067 mutex_lock(&module_mutex);
3068 return seq_list_start(&modules, *pos);
3069}
3070
3071static void *m_next(struct seq_file *m, void *p, loff_t *pos)
3072{
3073 return seq_list_next(p, &modules, pos);
3074}
3075
3076static void m_stop(struct seq_file *m, void *p)
3077{
3078 mutex_unlock(&module_mutex);
3079}
3080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081static int m_show(struct seq_file *m, void *p)
3082{
3083 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003084 char buf[8];
3085
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05003086 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 mod->name, mod->init_size + mod->core_size);
3088 print_unload_info(m, mod);
3089
3090 /* Informative for users. */
3091 seq_printf(m, " %s",
3092 mod->state == MODULE_STATE_GOING ? "Unloading":
3093 mod->state == MODULE_STATE_COMING ? "Loading":
3094 "Live");
3095 /* Used by oprofile and other similar tools. */
3096 seq_printf(m, " 0x%p", mod->module_core);
3097
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003098 /* Taints info */
3099 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003100 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 seq_printf(m, "\n");
3103 return 0;
3104}
3105
3106/* Format: modulename size refcount deps address
3107
3108 Where refcount is a number or -, and deps is a comma-separated list
3109 of depends or -.
3110*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003111static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 .start = m_start,
3113 .next = m_next,
3114 .stop = m_stop,
3115 .show = m_show
3116};
3117
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003118static int modules_open(struct inode *inode, struct file *file)
3119{
3120 return seq_open(file, &modules_op);
3121}
3122
3123static const struct file_operations proc_modules_operations = {
3124 .open = modules_open,
3125 .read = seq_read,
3126 .llseek = seq_lseek,
3127 .release = seq_release,
3128};
3129
3130static int __init proc_modules_init(void)
3131{
3132 proc_create("modules", 0, NULL, &proc_modules_operations);
3133 return 0;
3134}
3135module_init(proc_modules_init);
3136#endif
3137
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138/* Given an address, look for it in the module exception tables. */
3139const struct exception_table_entry *search_module_extables(unsigned long addr)
3140{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 const struct exception_table_entry *e = NULL;
3142 struct module *mod;
3143
Rusty Russell24da1cb2007-07-15 23:41:46 -07003144 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003145 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 if (mod->num_exentries == 0)
3147 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 e = search_extable(mod->extable,
3150 mod->extable + mod->num_exentries - 1,
3151 addr);
3152 if (e)
3153 break;
3154 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07003155 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
3157 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07003158 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 return e;
3160}
3161
Ingo Molnar4d435f92006-07-03 00:24:24 -07003162/*
Rusty Russelle6104992009-03-31 13:05:31 -06003163 * is_module_address - is this address inside a module?
3164 * @addr: the address to check.
3165 *
3166 * See is_module_text_address() if you simply want to see if the address
3167 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07003168 */
Rusty Russelle6104992009-03-31 13:05:31 -06003169bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07003170{
Rusty Russelle6104992009-03-31 13:05:31 -06003171 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003172
Rusty Russell24da1cb2007-07-15 23:41:46 -07003173 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06003174 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07003175 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07003176
Rusty Russelle6104992009-03-31 13:05:31 -06003177 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003178}
3179
Rusty Russelle6104992009-03-31 13:05:31 -06003180/*
3181 * __module_address - get the module which contains an address.
3182 * @addr: the address.
3183 *
3184 * Must be called with preempt disabled or module mutex held so that
3185 * module doesn't get freed during this.
3186 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07003187struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188{
3189 struct module *mod;
3190
Rusty Russell3a642e92008-07-22 19:24:28 -05003191 if (addr < module_addr_min || addr > module_addr_max)
3192 return NULL;
3193
Andi Kleend72b3752008-08-30 10:09:00 +02003194 list_for_each_entry_rcu(mod, &modules, list)
Rusty Russelle6104992009-03-31 13:05:31 -06003195 if (within_module_core(addr, mod)
3196 || within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 return mod;
3198 return NULL;
3199}
Tim Abbottc6b37802008-12-05 19:03:59 -05003200EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Rusty Russelle6104992009-03-31 13:05:31 -06003202/*
3203 * is_module_text_address - is this address inside module code?
3204 * @addr: the address to check.
3205 *
3206 * See is_module_address() if you simply want to see if the address is
3207 * anywhere in a module. See kernel_text_address() for testing if an
3208 * address corresponds to kernel or module code.
3209 */
3210bool is_module_text_address(unsigned long addr)
3211{
3212 bool ret;
3213
3214 preempt_disable();
3215 ret = __module_text_address(addr) != NULL;
3216 preempt_enable();
3217
3218 return ret;
3219}
3220
3221/*
3222 * __module_text_address - get the module whose code contains an address.
3223 * @addr: the address.
3224 *
3225 * Must be called with preempt disabled or module mutex held so that
3226 * module doesn't get freed during this.
3227 */
3228struct module *__module_text_address(unsigned long addr)
3229{
3230 struct module *mod = __module_address(addr);
3231 if (mod) {
3232 /* Make sure it's within the text section. */
3233 if (!within(addr, mod->module_init, mod->init_text_size)
3234 && !within(addr, mod->module_core, mod->core_text_size))
3235 mod = NULL;
3236 }
3237 return mod;
3238}
Tim Abbottc6b37802008-12-05 19:03:59 -05003239EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06003240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241/* Don't grab lock, we're oopsing. */
3242void print_modules(void)
3243{
3244 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07003245 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
Linus Torvaldsb2311252009-06-16 11:07:14 -07003247 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02003248 /* Most callers should already have preempt disabled, but make sure */
3249 preempt_disable();
3250 list_for_each_entry_rcu(mod, &modules, list)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003251 printk(" %s%s", mod->name, module_flags(mod, buf));
Andi Kleend72b3752008-08-30 10:09:00 +02003252 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003253 if (last_unloaded_module[0])
3254 printk(" [last unloaded: %s]", last_unloaded_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 printk("\n");
3256}
3257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003259/* Generate the signature for all relevant module structures here.
3260 * If these change, we don't want to try to parse the module. */
3261void module_layout(struct module *mod,
3262 struct modversion_info *ver,
3263 struct kernel_param *kp,
3264 struct kernel_symbol *ks,
Rusty Russell8c8ef422009-03-31 13:05:34 -06003265 struct tracepoint *tp)
3266{
3267}
3268EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07003270
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -04003271#ifdef CONFIG_TRACEPOINTS
3272void module_update_tracepoints(void)
3273{
3274 struct module *mod;
3275
3276 mutex_lock(&module_mutex);
3277 list_for_each_entry(mod, &modules, list)
3278 if (!mod->taints)
3279 tracepoint_update_probe_range(mod->tracepoints,
3280 mod->tracepoints + mod->num_tracepoints);
3281 mutex_unlock(&module_mutex);
3282}
3283
3284/*
3285 * Returns 0 if current not found.
3286 * Returns 1 if current found.
3287 */
3288int module_get_iter_tracepoints(struct tracepoint_iter *iter)
3289{
3290 struct module *iter_mod;
3291 int found = 0;
3292
3293 mutex_lock(&module_mutex);
3294 list_for_each_entry(iter_mod, &modules, list) {
3295 if (!iter_mod->taints) {
3296 /*
3297 * Sorted module list
3298 */
3299 if (iter_mod < iter->module)
3300 continue;
3301 else if (iter_mod > iter->module)
3302 iter->tracepoint = NULL;
3303 found = tracepoint_get_iter_range(&iter->tracepoint,
3304 iter_mod->tracepoints,
3305 iter_mod->tracepoints
3306 + iter_mod->num_tracepoints);
3307 if (found) {
3308 iter->module = iter_mod;
3309 break;
3310 }
3311 }
3312 }
3313 mutex_unlock(&module_mutex);
3314 return found;
3315}
3316#endif