blob: 9f8d23d8b3a8f7fa98b9901ac6c4e9c2e8959c92 [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
62EXPORT_TRACEPOINT_SYMBOL(module_get);
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#if 0
65#define DEBUGP printk
66#else
67#define DEBUGP(fmt , a...)
68#endif
69
70#ifndef ARCH_SHF_SMALL
71#define ARCH_SHF_SMALL 0
72#endif
73
74/* If this is set, the section belongs in the init part of the module */
75#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
76
Rusty Russell24da1cb2007-07-15 23:41:46 -070077/* List of modules, protected by module_mutex or preempt_disable
Andi Kleend72b3752008-08-30 10:09:00 +020078 * (delete uses stop_machine/add uses RCU list operations). */
Tim Abbottc6b37802008-12-05 19:03:59 -050079DEFINE_MUTEX(module_mutex);
80EXPORT_SYMBOL_GPL(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static LIST_HEAD(modules);
82
Stephen Rothwell19e45292009-04-14 17:27:18 +100083/* Block module loading/unloading? */
84int modules_disabled = 0;
85
Rusty Russellc9a3ba52008-01-29 17:13:18 -050086/* Waiting for a module to finish initializing? */
87static DECLARE_WAIT_QUEUE_HEAD(module_wq);
88
Alan Sterne041c682006-03-27 01:16:30 -080089static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Rusty Russelle6104992009-03-31 13:05:31 -060091/* Bounds of module allocation, for speeding __module_address */
Rusty Russell3a642e92008-07-22 19:24:28 -050092static unsigned long module_addr_min = -1UL, module_addr_max = 0;
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094int register_module_notifier(struct notifier_block * nb)
95{
Alan Sterne041c682006-03-27 01:16:30 -080096 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98EXPORT_SYMBOL(register_module_notifier);
99
100int unregister_module_notifier(struct notifier_block * nb)
101{
Alan Sterne041c682006-03-27 01:16:30 -0800102 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104EXPORT_SYMBOL(unregister_module_notifier);
105
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800106/* We require a truly strong try_module_get(): 0 means failure due to
107 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static inline int strong_try_module_get(struct module *mod)
109{
110 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500111 return -EBUSY;
112 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500114 else
115 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700118static inline void add_taint_module(struct module *mod, unsigned flag)
119{
120 add_taint(flag);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700121 mod->taints |= (1U << flag);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700122}
123
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200124/*
125 * A thread that wants to hold a reference to a module only while it
126 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
128void __module_put_and_exit(struct module *mod, long code)
129{
130 module_put(mod);
131 do_exit(code);
132}
133EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/* Find a module section: 0 means not found. */
136static unsigned int find_sec(Elf_Ehdr *hdr,
137 Elf_Shdr *sechdrs,
138 const char *secstrings,
139 const char *name)
140{
141 unsigned int i;
142
143 for (i = 1; i < hdr->e_shnum; i++)
144 /* Alloc bit cleared means "ignore it." */
145 if ((sechdrs[i].sh_flags & SHF_ALLOC)
146 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
147 return i;
148 return 0;
149}
150
Rusty Russell5e458cc2008-10-22 10:00:13 -0500151/* Find a module section, or NULL. */
152static void *section_addr(Elf_Ehdr *hdr, Elf_Shdr *shdrs,
153 const char *secstrings, const char *name)
154{
155 /* Section 0 has sh_addr 0. */
156 return (void *)shdrs[find_sec(hdr, shdrs, secstrings, name)].sh_addr;
157}
158
159/* Find a module section, or NULL. Fill in number of "objects" in section. */
160static void *section_objs(Elf_Ehdr *hdr,
161 Elf_Shdr *sechdrs,
162 const char *secstrings,
163 const char *name,
164 size_t object_size,
165 unsigned int *num)
166{
167 unsigned int sec = find_sec(hdr, sechdrs, secstrings, name);
168
169 /* Section 0 has sh_addr 0 and sh_size 0. */
170 *num = sechdrs[sec].sh_size / object_size;
171 return (void *)sechdrs[sec].sh_addr;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/* Provided by the linker */
175extern const struct kernel_symbol __start___ksymtab[];
176extern const struct kernel_symbol __stop___ksymtab[];
177extern const struct kernel_symbol __start___ksymtab_gpl[];
178extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800179extern const struct kernel_symbol __start___ksymtab_gpl_future[];
180extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700181extern const struct kernel_symbol __start___ksymtab_gpl_future[];
182extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183extern const unsigned long __start___kcrctab[];
184extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800185extern const unsigned long __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500186#ifdef CONFIG_UNUSED_SYMBOLS
187extern const struct kernel_symbol __start___ksymtab_unused[];
188extern const struct kernel_symbol __stop___ksymtab_unused[];
189extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
190extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700191extern const unsigned long __start___kcrctab_unused[];
192extern const unsigned long __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500193#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195#ifndef CONFIG_MODVERSIONS
196#define symversion(base, idx) NULL
197#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800198#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif
200
Rusty Russelldafd0942008-07-22 19:24:25 -0500201static bool each_symbol_in_section(const struct symsearch *arr,
202 unsigned int arrsize,
203 struct module *owner,
204 bool (*fn)(const struct symsearch *syms,
205 struct module *owner,
206 unsigned int symnum, void *data),
207 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100208{
Rusty Russelldafd0942008-07-22 19:24:25 -0500209 unsigned int i, j;
210
211 for (j = 0; j < arrsize; j++) {
212 for (i = 0; i < arr[j].stop - arr[j].start; i++)
213 if (fn(&arr[j], owner, i, data))
214 return true;
215 }
216
217 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100218}
219
Rusty Russelldafd0942008-07-22 19:24:25 -0500220/* Returns true as soon as fn returns true, otherwise false. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500221bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
222 unsigned int symnum, void *data), void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700223{
Rusty Russelldafd0942008-07-22 19:24:25 -0500224 struct module *mod;
225 const struct symsearch arr[] = {
226 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
227 NOT_GPL_ONLY, false },
228 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
229 __start___kcrctab_gpl,
230 GPL_ONLY, false },
231 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
232 __start___kcrctab_gpl_future,
233 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500234#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500235 { __start___ksymtab_unused, __stop___ksymtab_unused,
236 __start___kcrctab_unused,
237 NOT_GPL_ONLY, true },
238 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
239 __start___kcrctab_unused_gpl,
240 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500241#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500242 };
243
244 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
245 return true;
246
Andi Kleend72b3752008-08-30 10:09:00 +0200247 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500248 struct symsearch arr[] = {
249 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
250 NOT_GPL_ONLY, false },
251 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
252 mod->gpl_crcs,
253 GPL_ONLY, false },
254 { mod->gpl_future_syms,
255 mod->gpl_future_syms + mod->num_gpl_future_syms,
256 mod->gpl_future_crcs,
257 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500258#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500259 { mod->unused_syms,
260 mod->unused_syms + mod->num_unused_syms,
261 mod->unused_crcs,
262 NOT_GPL_ONLY, true },
263 { mod->unused_gpl_syms,
264 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
265 mod->unused_gpl_crcs,
266 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500267#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500268 };
269
270 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
271 return true;
272 }
273 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700274}
Tim Abbottc6b37802008-12-05 19:03:59 -0500275EXPORT_SYMBOL_GPL(each_symbol);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700276
Rusty Russelldafd0942008-07-22 19:24:25 -0500277struct find_symbol_arg {
278 /* Input */
279 const char *name;
280 bool gplok;
281 bool warn;
282
283 /* Output */
284 struct module *owner;
285 const unsigned long *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500286 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500287};
288
289static bool find_symbol_in_section(const struct symsearch *syms,
290 struct module *owner,
291 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500292{
Rusty Russelldafd0942008-07-22 19:24:25 -0500293 struct find_symbol_arg *fsa = data;
294
295 if (strcmp(syms->start[symnum].name, fsa->name) != 0)
296 return false;
297
298 if (!fsa->gplok) {
299 if (syms->licence == GPL_ONLY)
300 return false;
301 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
302 printk(KERN_WARNING "Symbol %s is being used "
303 "by a non-GPL module, which will not "
304 "be allowed in the future\n", fsa->name);
305 printk(KERN_WARNING "Please see the file "
306 "Documentation/feature-removal-schedule.txt "
307 "in the kernel source tree for more details.\n");
308 }
309 }
310
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500311#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500312 if (syms->unused && fsa->warn) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500313 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
Rusty Russelldafd0942008-07-22 19:24:25 -0500314 "however this module is using it.\n", fsa->name);
Rusty Russellad9546c2008-05-01 21:14:59 -0500315 printk(KERN_WARNING
316 "This symbol will go away in the future.\n");
317 printk(KERN_WARNING
318 "Please evalute if this is the right api to use and if "
319 "it really is, submit a report the linux kernel "
320 "mailinglist together with submitting your code for "
321 "inclusion.\n");
322 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500323#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500324
325 fsa->owner = owner;
326 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500327 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500328 return true;
329}
330
Tim Abbott414fd312008-12-05 19:03:56 -0500331/* Find a symbol and return it, along with, (optional) crc and
332 * (optional) module which owns it */
Tim Abbottc6b37802008-12-05 19:03:59 -0500333const struct kernel_symbol *find_symbol(const char *name,
334 struct module **owner,
335 const unsigned long **crc,
336 bool gplok,
337 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Rusty Russelldafd0942008-07-22 19:24:25 -0500339 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Rusty Russelldafd0942008-07-22 19:24:25 -0500341 fsa.name = name;
342 fsa.gplok = gplok;
343 fsa.warn = warn;
344
345 if (each_symbol(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500346 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500347 *owner = fsa.owner;
348 if (crc)
349 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500350 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 DEBUGP("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500354 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
Tim Abbottc6b37802008-12-05 19:03:59 -0500356EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358/* Search for module by name: must hold module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500359struct module *find_module(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 struct module *mod;
362
363 list_for_each_entry(mod, &modules, list) {
364 if (strcmp(mod->name, name) == 0)
365 return mod;
366 }
367 return NULL;
368}
Tim Abbottc6b37802008-12-05 19:03:59 -0500369EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900372
Tejun Heo259354d2010-03-10 18:56:10 +0900373static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900374{
Tejun Heo259354d2010-03-10 18:56:10 +0900375 return mod->percpu;
376}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900377
Tejun Heo259354d2010-03-10 18:56:10 +0900378static int percpu_modalloc(struct module *mod,
379 unsigned long size, unsigned long align)
380{
Tejun Heofbf59bc2009-02-20 16:29:08 +0900381 if (align > PAGE_SIZE) {
382 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
Tejun Heo259354d2010-03-10 18:56:10 +0900383 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900384 align = PAGE_SIZE;
385 }
386
Tejun Heo259354d2010-03-10 18:56:10 +0900387 mod->percpu = __alloc_reserved_percpu(size, align);
388 if (!mod->percpu) {
Tejun Heofbf59bc2009-02-20 16:29:08 +0900389 printk(KERN_WARNING
390 "Could not allocate %lu bytes percpu data\n", size);
Tejun Heo259354d2010-03-10 18:56:10 +0900391 return -ENOMEM;
392 }
393 mod->percpu_size = size;
394 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900395}
396
Tejun Heo259354d2010-03-10 18:56:10 +0900397static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900398{
Tejun Heo259354d2010-03-10 18:56:10 +0900399 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900400}
401
Tejun Heo6b588c12009-02-20 16:29:07 +0900402static unsigned int find_pcpusec(Elf_Ehdr *hdr,
403 Elf_Shdr *sechdrs,
404 const char *secstrings)
405{
406 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
407}
408
Tejun Heo259354d2010-03-10 18:56:10 +0900409static void percpu_modcopy(struct module *mod,
410 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900411{
412 int cpu;
413
414 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900415 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900416}
417
Tejun Heo10fad5e2010-03-10 18:57:54 +0900418/**
419 * is_module_percpu_address - test whether address is from module static percpu
420 * @addr: address to test
421 *
422 * Test whether @addr belongs to module static percpu area.
423 *
424 * RETURNS:
425 * %true if @addr is from module static percpu area
426 */
427bool is_module_percpu_address(unsigned long addr)
428{
429 struct module *mod;
430 unsigned int cpu;
431
432 preempt_disable();
433
434 list_for_each_entry_rcu(mod, &modules, list) {
435 if (!mod->percpu_size)
436 continue;
437 for_each_possible_cpu(cpu) {
438 void *start = per_cpu_ptr(mod->percpu, cpu);
439
440 if ((void *)addr >= start &&
441 (void *)addr < start + mod->percpu_size) {
442 preempt_enable();
443 return true;
444 }
445 }
446 }
447
448 preempt_enable();
449 return false;
450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900453
Tejun Heo259354d2010-03-10 18:56:10 +0900454static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 return NULL;
457}
Tejun Heo259354d2010-03-10 18:56:10 +0900458static inline int percpu_modalloc(struct module *mod,
459 unsigned long size, unsigned long align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Tejun Heo259354d2010-03-10 18:56:10 +0900461 return -ENOMEM;
462}
463static inline void percpu_modfree(struct module *mod)
464{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
467 Elf_Shdr *sechdrs,
468 const char *secstrings)
469{
470 return 0;
471}
Tejun Heo259354d2010-03-10 18:56:10 +0900472static inline void percpu_modcopy(struct module *mod,
473 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 /* pcpusec should be 0, and size of that section should be 0. */
476 BUG_ON(size != 0);
477}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900478bool is_module_percpu_address(unsigned long addr)
479{
480 return false;
481}
Tejun Heo6b588c12009-02-20 16:29:07 +0900482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483#endif /* CONFIG_SMP */
484
Matt Domschc988d2b2005-06-23 22:05:15 -0700485#define MODINFO_ATTR(field) \
486static void setup_modinfo_##field(struct module *mod, const char *s) \
487{ \
488 mod->field = kstrdup(s, GFP_KERNEL); \
489} \
490static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
491 struct module *mod, char *buffer) \
492{ \
493 return sprintf(buffer, "%s\n", mod->field); \
494} \
495static int modinfo_##field##_exists(struct module *mod) \
496{ \
497 return mod->field != NULL; \
498} \
499static void free_modinfo_##field(struct module *mod) \
500{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700501 kfree(mod->field); \
502 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700503} \
504static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900505 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700506 .show = show_modinfo_##field, \
507 .setup = setup_modinfo_##field, \
508 .test = modinfo_##field##_exists, \
509 .free = free_modinfo_##field, \
510};
511
512MODINFO_ATTR(version);
513MODINFO_ATTR(srcversion);
514
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100515static char last_unloaded_module[MODULE_NAME_LEN+1];
516
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800517#ifdef CONFIG_MODULE_UNLOAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/* Init the unload section of the module. */
519static void module_unload_init(struct module *mod)
520{
Eric Dumazet720eba32009-02-03 13:31:36 +1030521 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 INIT_LIST_HEAD(&mod->modules_which_use_me);
Eric Dumazet720eba32009-02-03 13:31:36 +1030524 for_each_possible_cpu(cpu)
Christoph Lametere1783a22010-01-05 15:34:50 +0900525 per_cpu_ptr(mod->refptr, cpu)->count = 0;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* Hold reference count during initialization. */
Christoph Lametere1783a22010-01-05 15:34:50 +0900528 __this_cpu_write(mod->refptr->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* Backwards compatibility macros put refcount during init. */
530 mod->waiter = current;
531}
532
533/* modules using other modules */
534struct module_use
535{
536 struct list_head list;
537 struct module *module_which_uses;
538};
539
540/* Does a already use b? */
541static int already_uses(struct module *a, struct module *b)
542{
543 struct module_use *use;
544
545 list_for_each_entry(use, &b->modules_which_use_me, list) {
546 if (use->module_which_uses == a) {
547 DEBUGP("%s uses %s!\n", a->name, b->name);
548 return 1;
549 }
550 }
551 DEBUGP("%s does not use %s!\n", a->name, b->name);
552 return 0;
553}
554
555/* Module a uses b */
Tim Abbottc6b37802008-12-05 19:03:59 -0500556int use_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 struct module_use *use;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500559 int no_warn, err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (b == NULL || already_uses(a, b)) return 1;
562
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500563 /* If we're interrupted or time out, we fail. */
564 if (wait_event_interruptible_timeout(
565 module_wq, (err = strong_try_module_get(b)) != -EBUSY,
566 30 * HZ) <= 0) {
567 printk("%s: gave up waiting for init of module %s.\n",
568 a->name, b->name);
569 return 0;
570 }
571
572 /* If strong_try_module_get() returned a different error, we fail. */
573 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return 0;
575
576 DEBUGP("Allocating new usage for %s.\n", a->name);
577 use = kmalloc(sizeof(*use), GFP_ATOMIC);
578 if (!use) {
579 printk("%s: out of memory loading\n", a->name);
580 module_put(b);
581 return 0;
582 }
583
584 use->module_which_uses = a;
585 list_add(&use->list, &b->modules_which_use_me);
Kay Sievers270a6c42007-01-18 13:26:15 +0100586 no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return 1;
588}
Tim Abbottc6b37802008-12-05 19:03:59 -0500589EXPORT_SYMBOL_GPL(use_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591/* Clear the unload stuff of the module. */
592static void module_unload_free(struct module *mod)
593{
594 struct module *i;
595
596 list_for_each_entry(i, &modules, list) {
597 struct module_use *use;
598
599 list_for_each_entry(use, &i->modules_which_use_me, list) {
600 if (use->module_which_uses == mod) {
601 DEBUGP("%s unusing %s\n", mod->name, i->name);
602 module_put(i);
603 list_del(&use->list);
604 kfree(use);
Kay Sievers270a6c42007-01-18 13:26:15 +0100605 sysfs_remove_link(i->holders_dir, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* There can be at most one match. */
607 break;
608 }
609 }
610 }
611}
612
613#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800614static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 int ret = (flags & O_TRUNC);
617 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800618 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return ret;
620}
621#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800622static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
624 return 0;
625}
626#endif /* CONFIG_MODULE_FORCE_UNLOAD */
627
628struct stopref
629{
630 struct module *mod;
631 int flags;
632 int *forced;
633};
634
635/* Whole machine is stopped with interrupts off when this runs. */
636static int __try_stop_module(void *_sref)
637{
638 struct stopref *sref = _sref;
639
Rusty Russellda39ba52008-07-22 19:24:25 -0500640 /* If it's not unused, quit unless we're forcing. */
641 if (module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800642 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -EWOULDBLOCK;
644 }
645
646 /* Mark it as dying. */
647 sref->mod->state = MODULE_STATE_GOING;
648 return 0;
649}
650
651static int try_stop_module(struct module *mod, int flags, int *forced)
652{
Rusty Russellda39ba52008-07-22 19:24:25 -0500653 if (flags & O_NONBLOCK) {
654 struct stopref sref = { mod, flags, forced };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500656 return stop_machine(__try_stop_module, &sref, NULL);
Rusty Russellda39ba52008-07-22 19:24:25 -0500657 } else {
658 /* We don't need to stop the machine for this. */
659 mod->state = MODULE_STATE_GOING;
660 synchronize_sched();
661 return 0;
662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
665unsigned int module_refcount(struct module *mod)
666{
Eric Dumazet720eba32009-02-03 13:31:36 +1030667 unsigned int total = 0;
668 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Eric Dumazet720eba32009-02-03 13:31:36 +1030670 for_each_possible_cpu(cpu)
Christoph Lametere1783a22010-01-05 15:34:50 +0900671 total += per_cpu_ptr(mod->refptr, cpu)->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return total;
673}
674EXPORT_SYMBOL(module_refcount);
675
676/* This exists whether we can unload or not */
677static void free_module(struct module *mod);
678
679static void wait_for_zero_refcount(struct module *mod)
680{
Matthew Wilcoxa6550202008-02-26 10:47:18 -0500681 /* Since we might sleep for some time, release the mutex first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800682 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 for (;;) {
684 DEBUGP("Looking at refcount...\n");
685 set_current_state(TASK_UNINTERRUPTIBLE);
686 if (module_refcount(mod) == 0)
687 break;
688 schedule();
689 }
690 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800691 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100694SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
695 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800698 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int ret, forced = 0;
700
Kees Cook3d433212009-04-02 15:49:29 -0700701 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800702 return -EPERM;
703
704 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
705 return -EFAULT;
706 name[MODULE_NAME_LEN-1] = '\0';
707
Heiko Carstens9e018922008-12-22 12:36:31 +0100708 /* Create stop_machine threads since free_module relies on
709 * a non-failing stop_machine call. */
710 ret = stop_machine_create();
711 if (ret)
712 return ret;
713
714 if (mutex_lock_interruptible(&module_mutex) != 0) {
715 ret = -EINTR;
716 goto out_stop;
717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 mod = find_module(name);
720 if (!mod) {
721 ret = -ENOENT;
722 goto out;
723 }
724
725 if (!list_empty(&mod->modules_which_use_me)) {
726 /* Other modules depend on us: get rid of them first. */
727 ret = -EWOULDBLOCK;
728 goto out;
729 }
730
731 /* Doing init or already dying? */
732 if (mod->state != MODULE_STATE_LIVE) {
733 /* FIXME: if (force), slam module count and wake up
734 waiter --RR */
735 DEBUGP("%s already dying\n", mod->name);
736 ret = -EBUSY;
737 goto out;
738 }
739
740 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700741 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800742 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (!forced) {
744 /* This module can't be removed */
745 ret = -EBUSY;
746 goto out;
747 }
748 }
749
750 /* Set this up before setting mod->state */
751 mod->waiter = current;
752
753 /* Stop the machine so refcounts can't move and disable module. */
754 ret = try_stop_module(mod, flags, &forced);
755 if (ret != 0)
756 goto out;
757
758 /* Never wait if forced. */
759 if (!forced && module_refcount(mod) != 0)
760 wait_for_zero_refcount(mod);
761
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200762 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /* Final destruction now noone is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200764 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200766 blocking_notifier_call_chain(&module_notify_list,
767 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800768 async_synchronize_full();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200769 mutex_lock(&module_mutex);
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100770 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500771 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Jason Barone9d376f2009-02-05 11:51:38 -0500772 ddebug_remove_module(mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 free_module(mod);
774
775 out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800776 mutex_unlock(&module_mutex);
Heiko Carstens9e018922008-12-22 12:36:31 +0100777out_stop:
778 stop_machine_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return ret;
780}
781
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800782static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 struct module_use *use;
785 int printed_something = 0;
786
787 seq_printf(m, " %u ", module_refcount(mod));
788
789 /* Always include a trailing , so userspace can differentiate
790 between this and the old multi-field proc format. */
791 list_for_each_entry(use, &mod->modules_which_use_me, list) {
792 printed_something = 1;
793 seq_printf(m, "%s,", use->module_which_uses->name);
794 }
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (mod->init != NULL && mod->exit == NULL) {
797 printed_something = 1;
798 seq_printf(m, "[permanent],");
799 }
800
801 if (!printed_something)
802 seq_printf(m, "-");
803}
804
805void __symbol_put(const char *symbol)
806{
807 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Rusty Russell24da1cb2007-07-15 23:41:46 -0700809 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500810 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 BUG();
812 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700813 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815EXPORT_SYMBOL(__symbol_put);
816
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930817/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818void symbol_put_addr(void *addr)
819{
Trent Piepho5e376612006-05-15 09:44:06 -0700820 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930821 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930823 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700824 return;
825
Rusty Russella6e6abd2009-03-31 13:05:31 -0600826 /* module_text_address is safe here: we're supposed to have reference
827 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930828 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600829 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700830 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832EXPORT_SYMBOL_GPL(symbol_put_addr);
833
834static ssize_t show_refcnt(struct module_attribute *mattr,
835 struct module *mod, char *buffer)
836{
Alexey Dobriyan256e2fd2007-08-06 23:47:45 +0400837 return sprintf(buffer, "%u\n", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840static struct module_attribute refcnt = {
Tejun Heo7b595752007-06-14 03:45:17 +0900841 .attr = { .name = "refcnt", .mode = 0444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 .show = show_refcnt,
843};
844
Al Virof6a57032006-10-18 01:47:25 -0400845void module_put(struct module *module)
846{
847 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900848 preempt_disable();
849 __this_cpu_dec(module->refptr->count);
850
Li Zefan7ead8b82009-08-17 16:56:28 +0800851 trace_module_put(module, _RET_IP_,
Christoph Lametere1783a22010-01-05 15:34:50 +0900852 __this_cpu_read(module->refptr->count));
Al Virof6a57032006-10-18 01:47:25 -0400853 /* Maybe they're waiting for us to drop reference? */
854 if (unlikely(!module_is_live(module)))
855 wake_up_process(module->waiter);
Christoph Lametere1783a22010-01-05 15:34:50 +0900856 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400857 }
858}
859EXPORT_SYMBOL(module_put);
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800862static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 /* We don't know the usage count, or what modules are using. */
865 seq_printf(m, " - -");
866}
867
868static inline void module_unload_free(struct module *mod)
869{
870}
871
Tim Abbottc6b37802008-12-05 19:03:59 -0500872int use_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500874 return strong_try_module_get(b) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
Tim Abbottc6b37802008-12-05 19:03:59 -0500876EXPORT_SYMBOL_GPL(use_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878static inline void module_unload_init(struct module *mod)
879{
880}
881#endif /* CONFIG_MODULE_UNLOAD */
882
Kay Sievers1f717402006-11-24 12:15:25 +0100883static ssize_t show_initstate(struct module_attribute *mattr,
884 struct module *mod, char *buffer)
885{
886 const char *state = "unknown";
887
888 switch (mod->state) {
889 case MODULE_STATE_LIVE:
890 state = "live";
891 break;
892 case MODULE_STATE_COMING:
893 state = "coming";
894 break;
895 case MODULE_STATE_GOING:
896 state = "going";
897 break;
898 }
899 return sprintf(buffer, "%s\n", state);
900}
901
902static struct module_attribute initstate = {
Tejun Heo7b595752007-06-14 03:45:17 +0900903 .attr = { .name = "initstate", .mode = 0444 },
Kay Sievers1f717402006-11-24 12:15:25 +0100904 .show = show_initstate,
905};
906
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800907static struct module_attribute *modinfo_attrs[] = {
908 &modinfo_version,
909 &modinfo_srcversion,
Kay Sievers1f717402006-11-24 12:15:25 +0100910 &initstate,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800911#ifdef CONFIG_MODULE_UNLOAD
912 &refcnt,
913#endif
914 NULL,
915};
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917static const char vermagic[] = VERMAGIC_STRING;
918
Rusty Russellc6e665c2009-03-31 13:05:33 -0600919static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -0700920{
921#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -0700922 if (!test_taint(TAINT_FORCED_MODULE))
Rusty Russellc6e665c2009-03-31 13:05:33 -0600923 printk(KERN_WARNING "%s: %s: kernel tainted.\n",
924 mod->name, reason);
Linus Torvalds826e4502008-05-04 17:04:16 -0700925 add_taint_module(mod, TAINT_FORCED_MODULE);
926 return 0;
927#else
928 return -ENOEXEC;
929#endif
930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -0600933/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
934static unsigned long maybe_relocated(unsigned long crc,
935 const struct module *crc_owner)
936{
937#ifdef ARCH_RELOCATES_KCRCTAB
938 if (crc_owner == NULL)
939 return crc - (unsigned long)reloc_start;
940#endif
941 return crc;
942}
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944static int check_version(Elf_Shdr *sechdrs,
945 unsigned int versindex,
946 const char *symname,
947 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -0600948 const unsigned long *crc,
949 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 unsigned int i, num_versions;
952 struct modversion_info *versions;
953
954 /* Exporting module didn't supply crcs? OK, we're already tainted. */
955 if (!crc)
956 return 1;
957
Rusty Russella5dd6972008-05-09 16:24:21 +1000958 /* No versions at all? modprobe --force does this. */
959 if (versindex == 0)
960 return try_to_force_load(mod, symname) == 0;
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 versions = (void *) sechdrs[versindex].sh_addr;
963 num_versions = sechdrs[versindex].sh_size
964 / sizeof(struct modversion_info);
965
966 for (i = 0; i < num_versions; i++) {
967 if (strcmp(versions[i].name, symname) != 0)
968 continue;
969
Rusty Russelld4703ae2009-12-15 16:28:32 -0600970 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 DEBUGP("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -0600973 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -0700974 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
Linus Torvalds826e4502008-05-04 17:04:16 -0700976
Rusty Russella5dd6972008-05-09 16:24:21 +1000977 printk(KERN_WARNING "%s: no symbol version for %s\n",
978 mod->name, symname);
979 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -0700980
981bad_version:
982 printk("%s: disagrees about version of symbol %s\n",
983 mod->name, symname);
984 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
987static inline int check_modstruct_version(Elf_Shdr *sechdrs,
988 unsigned int versindex,
989 struct module *mod)
990{
991 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Mike Frysinger6560dc12009-07-23 23:42:08 +0930993 if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL,
994 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 BUG();
Rusty Russelld4703ae2009-12-15 16:28:32 -0600996 return check_version(sechdrs, versindex, "module_layout", mod, crc,
997 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
Rusty Russell91e37a72008-05-09 16:25:28 +10001000/* First part is kernel version, which we ignore if module has crcs. */
1001static inline int same_magic(const char *amagic, const char *bmagic,
1002 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Rusty Russell91e37a72008-05-09 16:25:28 +10001004 if (has_crcs) {
1005 amagic += strcspn(amagic, " ");
1006 bmagic += strcspn(bmagic, " ");
1007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return strcmp(amagic, bmagic) == 0;
1009}
1010#else
1011static inline int check_version(Elf_Shdr *sechdrs,
1012 unsigned int versindex,
1013 const char *symname,
1014 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001015 const unsigned long *crc,
1016 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
1018 return 1;
1019}
1020
1021static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1022 unsigned int versindex,
1023 struct module *mod)
1024{
1025 return 1;
1026}
1027
Rusty Russell91e37a72008-05-09 16:25:28 +10001028static inline int same_magic(const char *amagic, const char *bmagic,
1029 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 return strcmp(amagic, bmagic) == 0;
1032}
1033#endif /* CONFIG_MODVERSIONS */
1034
1035/* Resolve a symbol for this module. I.e. if we find one, record usage.
1036 Must be holding module_mutex. */
Tim Abbott414fd312008-12-05 19:03:56 -05001037static const struct kernel_symbol *resolve_symbol(Elf_Shdr *sechdrs,
1038 unsigned int versindex,
1039 const char *name,
1040 struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001043 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 const unsigned long *crc;
1045
Tim Abbott414fd312008-12-05 19:03:56 -05001046 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001047 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Tim Abbott414fd312008-12-05 19:03:56 -05001048 /* use_module can fail due to OOM,
1049 or module initialization or unloading */
1050 if (sym) {
Rusty Russelld4703ae2009-12-15 16:28:32 -06001051 if (!check_version(sechdrs, versindex, name, mod, crc, owner)
1052 || !use_module(mod, owner))
Tim Abbott414fd312008-12-05 19:03:56 -05001053 sym = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
Tim Abbott414fd312008-12-05 19:03:56 -05001055 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058/*
1059 * /sys/module/foo/sections stuff
1060 * J. Corbet <corbet@lwn.net>
1061 */
Kay Sievers120fc3d2008-02-21 00:33:20 +01001062#if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
Ben Hutchings10b465a2009-12-19 14:43:01 +00001063
1064static inline bool sect_empty(const Elf_Shdr *sect)
1065{
1066 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1067}
1068
Rusty Russella58730c2008-03-13 09:03:44 +00001069struct module_sect_attr
1070{
1071 struct module_attribute mattr;
1072 char *name;
1073 unsigned long address;
1074};
1075
1076struct module_sect_attrs
1077{
1078 struct attribute_group grp;
1079 unsigned int nsections;
1080 struct module_sect_attr attrs[0];
1081};
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083static ssize_t module_sect_show(struct module_attribute *mattr,
1084 struct module *mod, char *buf)
1085{
1086 struct module_sect_attr *sattr =
1087 container_of(mattr, struct module_sect_attr, mattr);
1088 return sprintf(buf, "0x%lx\n", sattr->address);
1089}
1090
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001091static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1092{
Rusty Russella58730c2008-03-13 09:03:44 +00001093 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001094
1095 for (section = 0; section < sect_attrs->nsections; section++)
1096 kfree(sect_attrs->attrs[section].name);
1097 kfree(sect_attrs);
1098}
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100static void add_sect_attrs(struct module *mod, unsigned int nsect,
1101 char *secstrings, Elf_Shdr *sechdrs)
1102{
1103 unsigned int nloaded = 0, i, size[2];
1104 struct module_sect_attrs *sect_attrs;
1105 struct module_sect_attr *sattr;
1106 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* Count loaded sections and allocate structures */
1109 for (i = 0; i < nsect; i++)
Ben Hutchings10b465a2009-12-19 14:43:01 +00001110 if (!sect_empty(&sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 nloaded++;
1112 size[0] = ALIGN(sizeof(*sect_attrs)
1113 + nloaded * sizeof(sect_attrs->attrs[0]),
1114 sizeof(sect_attrs->grp.attrs[0]));
1115 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001116 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1117 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return;
1119
1120 /* Setup section attributes. */
1121 sect_attrs->grp.name = "sections";
1122 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1123
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001124 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 sattr = &sect_attrs->attrs[0];
1126 gattr = &sect_attrs->grp.attrs[0];
1127 for (i = 0; i < nsect; i++) {
Ben Hutchings10b465a2009-12-19 14:43:01 +00001128 if (sect_empty(&sechdrs[i]))
Helge Deller35dead42009-12-03 00:29:15 +01001129 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 sattr->address = sechdrs[i].sh_addr;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001131 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1132 GFP_KERNEL);
1133 if (sattr->name == NULL)
1134 goto out;
1135 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001136 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 sattr->mattr.show = module_sect_show;
1138 sattr->mattr.store = NULL;
1139 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 sattr->mattr.attr.mode = S_IRUGO;
1141 *(gattr++) = &(sattr++)->mattr.attr;
1142 }
1143 *gattr = NULL;
1144
1145 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1146 goto out;
1147
1148 mod->sect_attrs = sect_attrs;
1149 return;
1150 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001151 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
1154static void remove_sect_attrs(struct module *mod)
1155{
1156 if (mod->sect_attrs) {
1157 sysfs_remove_group(&mod->mkobj.kobj,
1158 &mod->sect_attrs->grp);
1159 /* We are positive that no one is using any sect attrs
1160 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001161 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 mod->sect_attrs = NULL;
1163 }
1164}
1165
Roland McGrath6d760132007-10-16 23:26:40 -07001166/*
1167 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1168 */
1169
1170struct module_notes_attrs {
1171 struct kobject *dir;
1172 unsigned int notes;
1173 struct bin_attribute attrs[0];
1174};
1175
1176static ssize_t module_notes_read(struct kobject *kobj,
1177 struct bin_attribute *bin_attr,
1178 char *buf, loff_t pos, size_t count)
1179{
1180 /*
1181 * The caller checked the pos and count against our size.
1182 */
1183 memcpy(buf, bin_attr->private + pos, count);
1184 return count;
1185}
1186
1187static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1188 unsigned int i)
1189{
1190 if (notes_attrs->dir) {
1191 while (i-- > 0)
1192 sysfs_remove_bin_file(notes_attrs->dir,
1193 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001194 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001195 }
1196 kfree(notes_attrs);
1197}
1198
1199static void add_notes_attrs(struct module *mod, unsigned int nsect,
1200 char *secstrings, Elf_Shdr *sechdrs)
1201{
1202 unsigned int notes, loaded, i;
1203 struct module_notes_attrs *notes_attrs;
1204 struct bin_attribute *nattr;
1205
Ingo Molnarea6bff32009-08-28 10:44:56 +02001206 /* failed to create section attributes, so can't create notes */
1207 if (!mod->sect_attrs)
1208 return;
1209
Roland McGrath6d760132007-10-16 23:26:40 -07001210 /* Count notes sections and allocate structures. */
1211 notes = 0;
1212 for (i = 0; i < nsect; i++)
Ben Hutchings10b465a2009-12-19 14:43:01 +00001213 if (!sect_empty(&sechdrs[i]) &&
Roland McGrath6d760132007-10-16 23:26:40 -07001214 (sechdrs[i].sh_type == SHT_NOTE))
1215 ++notes;
1216
1217 if (notes == 0)
1218 return;
1219
1220 notes_attrs = kzalloc(sizeof(*notes_attrs)
1221 + notes * sizeof(notes_attrs->attrs[0]),
1222 GFP_KERNEL);
1223 if (notes_attrs == NULL)
1224 return;
1225
1226 notes_attrs->notes = notes;
1227 nattr = &notes_attrs->attrs[0];
1228 for (loaded = i = 0; i < nsect; ++i) {
Ben Hutchings10b465a2009-12-19 14:43:01 +00001229 if (sect_empty(&sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001230 continue;
1231 if (sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001232 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001233 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1234 nattr->attr.mode = S_IRUGO;
1235 nattr->size = sechdrs[i].sh_size;
1236 nattr->private = (void *) sechdrs[i].sh_addr;
1237 nattr->read = module_notes_read;
1238 ++nattr;
1239 }
1240 ++loaded;
1241 }
1242
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001243 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001244 if (!notes_attrs->dir)
1245 goto out;
1246
1247 for (i = 0; i < notes; ++i)
1248 if (sysfs_create_bin_file(notes_attrs->dir,
1249 &notes_attrs->attrs[i]))
1250 goto out;
1251
1252 mod->notes_attrs = notes_attrs;
1253 return;
1254
1255 out:
1256 free_notes_attrs(notes_attrs, i);
1257}
1258
1259static void remove_notes_attrs(struct module *mod)
1260{
1261 if (mod->notes_attrs)
1262 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1263}
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1268 char *sectstrings, Elf_Shdr *sechdrs)
1269{
1270}
1271
1272static inline void remove_sect_attrs(struct module *mod)
1273{
1274}
Roland McGrath6d760132007-10-16 23:26:40 -07001275
1276static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1277 char *sectstrings, Elf_Shdr *sechdrs)
1278{
1279}
1280
1281static inline void remove_notes_attrs(struct module *mod)
1282{
1283}
Kay Sievers120fc3d2008-02-21 00:33:20 +01001284#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Randy Dunlapef665c12007-02-13 15:19:06 -08001286#ifdef CONFIG_SYSFS
1287int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001288{
1289 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001290 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001291 int error = 0;
1292 int i;
1293
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001294 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1295 (ARRAY_SIZE(modinfo_attrs) + 1)),
1296 GFP_KERNEL);
1297 if (!mod->modinfo_attrs)
1298 return -ENOMEM;
1299
1300 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001301 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1302 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001303 (attr->test && attr->test(mod))) {
1304 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001305 sysfs_attr_init(&temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001306 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1307 ++temp_attr;
1308 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001309 }
1310 return error;
1311}
1312
Randy Dunlapef665c12007-02-13 15:19:06 -08001313void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001314{
1315 struct module_attribute *attr;
1316 int i;
1317
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001318 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1319 /* pick a field to test for end of list */
1320 if (!attr->attr.name)
1321 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001322 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001323 if (attr->free)
1324 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001325 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001326 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001327}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Randy Dunlapef665c12007-02-13 15:19:06 -08001329int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001332 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001334 if (!module_sysfs_initialized) {
1335 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001336 mod->name);
1337 err = -EINVAL;
1338 goto out;
1339 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001340
1341 kobj = kset_find_obj(module_kset, mod->name);
1342 if (kobj) {
1343 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1344 kobject_put(kobj);
1345 err = -EINVAL;
1346 goto out;
1347 }
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001350
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001351 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1352 mod->mkobj.kobj.kset = module_kset;
1353 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1354 "%s", mod->name);
1355 if (err)
1356 kobject_put(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001357
Kay Sievers97c146e2007-11-29 23:46:11 +01001358 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001359out:
1360 return err;
1361}
1362
Randy Dunlapef665c12007-02-13 15:19:06 -08001363int mod_sysfs_setup(struct module *mod,
Kay Sievers270a6c42007-01-18 13:26:15 +01001364 struct kernel_param *kparam,
1365 unsigned int num_params)
1366{
1367 int err;
1368
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001369 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001370 if (!mod->holders_dir) {
1371 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001372 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001373 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 err = module_param_sysfs_setup(mod, kparam, num_params);
1376 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001377 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Matt Domschc988d2b2005-06-23 22:05:15 -07001379 err = module_add_modinfo_attrs(mod);
1380 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001381 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001382
Kay Sieverse17e0f52006-11-24 12:15:25 +01001383 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return 0;
1385
Kay Sieverse17e0f52006-11-24 12:15:25 +01001386out_unreg_param:
1387 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001388out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001389 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001390out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001391 kobject_put(&mod->mkobj.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return err;
1393}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001394
1395static void mod_sysfs_fini(struct module *mod)
1396{
1397 kobject_put(&mod->mkobj.kobj);
1398}
1399
1400#else /* CONFIG_SYSFS */
1401
1402static void mod_sysfs_fini(struct module *mod)
1403{
1404}
1405
1406#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408static void mod_kobject_remove(struct module *mod)
1409{
Matt Domschc988d2b2005-06-23 22:05:15 -07001410 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001412 kobject_put(mod->mkobj.drivers_dir);
1413 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001414 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417/*
1418 * unlink the module with the whole machine is stopped with interrupts off
1419 * - this defends against kallsyms not taking locks
1420 */
1421static int __unlink_module(void *_mod)
1422{
1423 struct module *mod = _mod;
1424 list_del(&mod->list);
1425 return 0;
1426}
1427
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001428/* Free a module, remove from lists, etc (must hold module_mutex). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429static void free_module(struct module *mod)
1430{
Li Zefan7ead8b82009-08-17 16:56:28 +08001431 trace_module_free(mod);
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 /* Delete from various lists */
Rusty Russell9b1a4d32008-07-28 12:16:30 -05001434 stop_machine(__unlink_module, mod, NULL);
Roland McGrath6d760132007-10-16 23:26:40 -07001435 remove_notes_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 remove_sect_attrs(mod);
1437 mod_kobject_remove(mod);
1438
1439 /* Arch-specific cleanup. */
1440 module_arch_cleanup(mod);
1441
1442 /* Module unload stuff */
1443 module_unload_free(mod);
1444
Rusty Russelle180a6b2009-03-31 13:05:29 -06001445 /* Free any allocated parameters. */
1446 destroy_params(mod->kp, mod->num_kp);
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 /* This may be NULL, but that's OK */
1449 module_free(mod, mod->module_init);
1450 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001451 percpu_modfree(mod);
Christoph Lametere1783a22010-01-05 15:34:50 +09001452#if defined(CONFIG_MODULE_UNLOAD)
Eric Dumazet720eba32009-02-03 13:31:36 +10301453 if (mod->refptr)
Christoph Lametere1783a22010-01-05 15:34:50 +09001454 free_percpu(mod->refptr);
Eric Dumazet720eba32009-02-03 13:31:36 +10301455#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001456 /* Free lock-classes: */
1457 lockdep_free_key_range(mod->module_core, mod->core_size);
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /* Finally, free the core (containing the module structure) */
1460 module_free(mod, mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001461
1462#ifdef CONFIG_MPU
1463 update_protections(current->mm);
1464#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
1467void *__symbol_get(const char *symbol)
1468{
1469 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001470 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Rusty Russell24da1cb2007-07-15 23:41:46 -07001472 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001473 sym = find_symbol(symbol, &owner, NULL, true, true);
1474 if (sym && strong_try_module_get(owner))
1475 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001476 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Tim Abbott414fd312008-12-05 19:03:56 -05001478 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480EXPORT_SYMBOL_GPL(__symbol_get);
1481
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001482/*
1483 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001484 * in the kernel or in some other module's exported symbol table.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001485 */
1486static int verify_export_symbols(struct module *mod)
1487{
Rusty Russellb2111042008-05-01 21:15:00 -05001488 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001489 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001490 const struct kernel_symbol *s;
1491 struct {
1492 const struct kernel_symbol *sym;
1493 unsigned int num;
1494 } arr[] = {
1495 { mod->syms, mod->num_syms },
1496 { mod->gpl_syms, mod->num_gpl_syms },
1497 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001498#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001499 { mod->unused_syms, mod->num_unused_syms },
1500 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001501#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001502 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001503
Rusty Russellb2111042008-05-01 21:15:00 -05001504 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1505 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Tim Abbott414fd312008-12-05 19:03:56 -05001506 if (find_symbol(s->name, &owner, NULL, true, false)) {
Rusty Russellb2111042008-05-01 21:15:00 -05001507 printk(KERN_ERR
1508 "%s: exports duplicate symbol %s"
1509 " (owned by %s)\n",
1510 mod->name, s->name, module_name(owner));
1511 return -ENOEXEC;
1512 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001513 }
Rusty Russellb2111042008-05-01 21:15:00 -05001514 }
1515 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001516}
1517
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001518/* Change all symbols so that st_value encodes the pointer directly. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519static int simplify_symbols(Elf_Shdr *sechdrs,
1520 unsigned int symindex,
1521 const char *strtab,
1522 unsigned int versindex,
1523 unsigned int pcpuindex,
1524 struct module *mod)
1525{
1526 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1527 unsigned long secbase;
1528 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1529 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001530 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 for (i = 1; i < n; i++) {
1533 switch (sym[i].st_shndx) {
1534 case SHN_COMMON:
1535 /* We compiled with -fno-common. These are not
1536 supposed to happen. */
1537 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1538 printk("%s: please compile with -fno-common\n",
1539 mod->name);
1540 ret = -ENOEXEC;
1541 break;
1542
1543 case SHN_ABS:
1544 /* Don't need to do anything */
1545 DEBUGP("Absolute symbol: 0x%08lx\n",
1546 (long)sym[i].st_value);
1547 break;
1548
1549 case SHN_UNDEF:
Tim Abbott414fd312008-12-05 19:03:56 -05001550 ksym = resolve_symbol(sechdrs, versindex,
1551 strtab + sym[i].st_name, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 /* Ok if resolved. */
Tim Abbott414fd312008-12-05 19:03:56 -05001553 if (ksym) {
1554 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001556 }
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /* Ok if weak. */
1559 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1560 break;
1561
1562 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1563 mod->name, strtab + sym[i].st_name);
1564 ret = -ENOENT;
1565 break;
1566
1567 default:
1568 /* Divert to percpu allocation if a percpu var. */
1569 if (sym[i].st_shndx == pcpuindex)
Tejun Heo259354d2010-03-10 18:56:10 +09001570 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 else
1572 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1573 sym[i].st_value += secbase;
1574 break;
1575 }
1576 }
1577
1578 return ret;
1579}
1580
Helge Deller088af9a2008-12-31 12:31:18 +01001581/* Additional bytes needed by arch in front of individual sections */
1582unsigned int __weak arch_mod_section_prepend(struct module *mod,
1583 unsigned int section)
1584{
1585 /* default implementation just returns zero */
1586 return 0;
1587}
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01001590static long get_offset(struct module *mod, unsigned int *size,
1591 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 long ret;
1594
Helge Deller088af9a2008-12-31 12:31:18 +01001595 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1597 *size = ret + sechdr->sh_size;
1598 return ret;
1599}
1600
1601/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1602 might -- code, read-only data, read-write data, small data. Tally
1603 sizes, and place the offsets into sh_entsize fields: high bit means it
1604 belongs in init. */
1605static void layout_sections(struct module *mod,
1606 const Elf_Ehdr *hdr,
1607 Elf_Shdr *sechdrs,
1608 const char *secstrings)
1609{
1610 static unsigned long const masks[][2] = {
1611 /* NOTE: all executable code must be the first section
1612 * in this array; otherwise modify the text_size
1613 * finder in the two loops below */
1614 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1615 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1616 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1617 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1618 };
1619 unsigned int m, i;
1620
1621 for (i = 0; i < hdr->e_shnum; i++)
1622 sechdrs[i].sh_entsize = ~0UL;
1623
1624 DEBUGP("Core section allocation order:\n");
1625 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1626 for (i = 0; i < hdr->e_shnum; ++i) {
1627 Elf_Shdr *s = &sechdrs[i];
1628
1629 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1630 || (s->sh_flags & masks[m][1])
1631 || s->sh_entsize != ~0UL
Rusty Russell49502672009-03-31 13:05:36 -06001632 || strstarts(secstrings + s->sh_name, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01001634 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 DEBUGP("\t%s\n", secstrings + s->sh_name);
1636 }
1637 if (m == 0)
1638 mod->core_text_size = mod->core_size;
1639 }
1640
1641 DEBUGP("Init section allocation order:\n");
1642 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1643 for (i = 0; i < hdr->e_shnum; ++i) {
1644 Elf_Shdr *s = &sechdrs[i];
1645
1646 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1647 || (s->sh_flags & masks[m][1])
1648 || s->sh_entsize != ~0UL
Rusty Russell49502672009-03-31 13:05:36 -06001649 || !strstarts(secstrings + s->sh_name, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01001651 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 | INIT_OFFSET_MASK);
1653 DEBUGP("\t%s\n", secstrings + s->sh_name);
1654 }
1655 if (m == 0)
1656 mod->init_text_size = mod->init_size;
1657 }
1658}
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660static void set_license(struct module *mod, const char *license)
1661{
1662 if (!license)
1663 license = "unspecified";
1664
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001665 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07001666 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07001667 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001668 "kernel.\n", mod->name, license);
1669 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671}
1672
1673/* Parse tag=value strings from .modinfo section */
1674static char *next_string(char *string, unsigned long *secsize)
1675{
1676 /* Skip non-zero chars */
1677 while (string[0]) {
1678 string++;
1679 if ((*secsize)-- <= 1)
1680 return NULL;
1681 }
1682
1683 /* Skip any zero padding. */
1684 while (!string[0]) {
1685 string++;
1686 if ((*secsize)-- <= 1)
1687 return NULL;
1688 }
1689 return string;
1690}
1691
1692static char *get_modinfo(Elf_Shdr *sechdrs,
1693 unsigned int info,
1694 const char *tag)
1695{
1696 char *p;
1697 unsigned int taglen = strlen(tag);
1698 unsigned long size = sechdrs[info].sh_size;
1699
1700 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1701 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1702 return p + taglen + 1;
1703 }
1704 return NULL;
1705}
1706
Matt Domschc988d2b2005-06-23 22:05:15 -07001707static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1708 unsigned int infoindex)
1709{
1710 struct module_attribute *attr;
1711 int i;
1712
1713 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1714 if (attr->setup)
1715 attr->setup(mod,
1716 get_modinfo(sechdrs,
1717 infoindex,
1718 attr->attr.name));
1719 }
1720}
Matt Domschc988d2b2005-06-23 22:05:15 -07001721
Rusty Russella263f772009-09-25 00:32:58 -06001722static void free_modinfo(struct module *mod)
1723{
1724 struct module_attribute *attr;
1725 int i;
1726
1727 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1728 if (attr->free)
1729 attr->free(mod);
1730 }
1731}
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01001734
1735/* lookup symbol in given range of kernel_symbols */
1736static const struct kernel_symbol *lookup_symbol(const char *name,
1737 const struct kernel_symbol *start,
1738 const struct kernel_symbol *stop)
1739{
1740 const struct kernel_symbol *ks = start;
1741 for (; ks < stop; ks++)
1742 if (strcmp(ks->name, name) == 0)
1743 return ks;
1744 return NULL;
1745}
1746
Tim Abbottca4787b2009-01-05 08:40:10 -06001747static int is_exported(const char *name, unsigned long value,
1748 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Tim Abbottca4787b2009-01-05 08:40:10 -06001750 const struct kernel_symbol *ks;
1751 if (!mod)
1752 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001753 else
Tim Abbottca4787b2009-01-05 08:40:10 -06001754 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
1755 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
1757
1758/* As per nm */
1759static char elf_type(const Elf_Sym *sym,
1760 Elf_Shdr *sechdrs,
1761 const char *secstrings,
1762 struct module *mod)
1763{
1764 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1765 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1766 return 'v';
1767 else
1768 return 'w';
1769 }
1770 if (sym->st_shndx == SHN_UNDEF)
1771 return 'U';
1772 if (sym->st_shndx == SHN_ABS)
1773 return 'a';
1774 if (sym->st_shndx >= SHN_LORESERVE)
1775 return '?';
1776 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1777 return 't';
1778 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1779 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1780 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1781 return 'r';
1782 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1783 return 'g';
1784 else
1785 return 'd';
1786 }
1787 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1788 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1789 return 's';
1790 else
1791 return 'b';
1792 }
Rusty Russell49502672009-03-31 13:05:36 -06001793 if (strstarts(secstrings + sechdrs[sym->st_shndx].sh_name, ".debug"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return 'n';
1795 return '?';
1796}
1797
Jan Beulich4a496222009-07-06 14:50:42 +01001798static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
1799 unsigned int shnum)
1800{
1801 const Elf_Shdr *sec;
1802
1803 if (src->st_shndx == SHN_UNDEF
1804 || src->st_shndx >= shnum
1805 || !src->st_name)
1806 return false;
1807
1808 sec = sechdrs + src->st_shndx;
1809 if (!(sec->sh_flags & SHF_ALLOC)
1810#ifndef CONFIG_KALLSYMS_ALL
1811 || !(sec->sh_flags & SHF_EXECINSTR)
1812#endif
1813 || (sec->sh_entsize & INIT_OFFSET_MASK))
1814 return false;
1815
1816 return true;
1817}
1818
1819static unsigned long layout_symtab(struct module *mod,
1820 Elf_Shdr *sechdrs,
1821 unsigned int symindex,
Jan Beulich554bdfe2009-07-06 14:51:44 +01001822 unsigned int strindex,
Jan Beulich4a496222009-07-06 14:50:42 +01001823 const Elf_Ehdr *hdr,
Jan Beulich554bdfe2009-07-06 14:51:44 +01001824 const char *secstrings,
1825 unsigned long *pstroffs,
1826 unsigned long *strmap)
Jan Beulich4a496222009-07-06 14:50:42 +01001827{
1828 unsigned long symoffs;
1829 Elf_Shdr *symsect = sechdrs + symindex;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001830 Elf_Shdr *strsect = sechdrs + strindex;
Jan Beulich4a496222009-07-06 14:50:42 +01001831 const Elf_Sym *src;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001832 const char *strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01001833 unsigned int i, nsrc, ndst;
1834
1835 /* Put symbol section at end of init part of module. */
1836 symsect->sh_flags |= SHF_ALLOC;
1837 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
1838 symindex) | INIT_OFFSET_MASK;
1839 DEBUGP("\t%s\n", secstrings + symsect->sh_name);
1840
1841 src = (void *)hdr + symsect->sh_offset;
1842 nsrc = symsect->sh_size / sizeof(*src);
Jan Beulich554bdfe2009-07-06 14:51:44 +01001843 strtab = (void *)hdr + strsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01001844 for (ndst = i = 1; i < nsrc; ++i, ++src)
Jan Beulich554bdfe2009-07-06 14:51:44 +01001845 if (is_core_symbol(src, sechdrs, hdr->e_shnum)) {
1846 unsigned int j = src->st_name;
1847
1848 while(!__test_and_set_bit(j, strmap) && strtab[j])
1849 ++j;
Jan Beulich4a496222009-07-06 14:50:42 +01001850 ++ndst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001851 }
Jan Beulich4a496222009-07-06 14:50:42 +01001852
1853 /* Append room for core symbols at end of core part. */
1854 symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
1855 mod->core_size = symoffs + ndst * sizeof(Elf_Sym);
1856
Jan Beulich554bdfe2009-07-06 14:51:44 +01001857 /* Put string table section at end of init part of module. */
1858 strsect->sh_flags |= SHF_ALLOC;
1859 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
1860 strindex) | INIT_OFFSET_MASK;
1861 DEBUGP("\t%s\n", secstrings + strsect->sh_name);
1862
1863 /* Append room for core symbols' strings at end of core part. */
1864 *pstroffs = mod->core_size;
1865 __set_bit(0, strmap);
1866 mod->core_size += bitmap_weight(strmap, strsect->sh_size);
1867
Jan Beulich4a496222009-07-06 14:50:42 +01001868 return symoffs;
1869}
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871static void add_kallsyms(struct module *mod,
1872 Elf_Shdr *sechdrs,
Jan Beulich4a496222009-07-06 14:50:42 +01001873 unsigned int shnum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 unsigned int symindex,
1875 unsigned int strindex,
Jan Beulich4a496222009-07-06 14:50:42 +01001876 unsigned long symoffs,
Jan Beulich554bdfe2009-07-06 14:51:44 +01001877 unsigned long stroffs,
1878 const char *secstrings,
1879 unsigned long *strmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Jan Beulich4a496222009-07-06 14:50:42 +01001881 unsigned int i, ndst;
1882 const Elf_Sym *src;
1883 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001884 char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1887 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1888 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1889
1890 /* Set types up while we still have access to sections. */
1891 for (i = 0; i < mod->num_symtab; i++)
1892 mod->symtab[i].st_info
1893 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
Jan Beulich4a496222009-07-06 14:50:42 +01001894
1895 mod->core_symtab = dst = mod->module_core + symoffs;
1896 src = mod->symtab;
1897 *dst = *src;
1898 for (ndst = i = 1; i < mod->num_symtab; ++i, ++src) {
1899 if (!is_core_symbol(src, sechdrs, shnum))
1900 continue;
1901 dst[ndst] = *src;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001902 dst[ndst].st_name = bitmap_weight(strmap, dst[ndst].st_name);
Jan Beulich4a496222009-07-06 14:50:42 +01001903 ++ndst;
1904 }
1905 mod->core_num_syms = ndst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001906
1907 mod->core_strtab = s = mod->module_core + stroffs;
1908 for (*s = 0, i = 1; i < sechdrs[strindex].sh_size; ++i)
1909 if (test_bit(i, strmap))
1910 *++s = mod->strtab[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911}
1912#else
Jan Beulich4a496222009-07-06 14:50:42 +01001913static inline unsigned long layout_symtab(struct module *mod,
1914 Elf_Shdr *sechdrs,
1915 unsigned int symindex,
Jan Beulich554bdfe2009-07-06 14:51:44 +01001916 unsigned int strindex,
Paul Mundt3ae91c22009-10-01 15:43:54 -07001917 const Elf_Ehdr *hdr,
Jan Beulich554bdfe2009-07-06 14:51:44 +01001918 const char *secstrings,
1919 unsigned long *pstroffs,
1920 unsigned long *strmap)
Jan Beulich4a496222009-07-06 14:50:42 +01001921{
Paul Mundt3ae91c22009-10-01 15:43:54 -07001922 return 0;
Jan Beulich4a496222009-07-06 14:50:42 +01001923}
Paul Mundt3ae91c22009-10-01 15:43:54 -07001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925static inline void add_kallsyms(struct module *mod,
1926 Elf_Shdr *sechdrs,
Jan Beulich4a496222009-07-06 14:50:42 +01001927 unsigned int shnum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 unsigned int symindex,
1929 unsigned int strindex,
Jan Beulich4a496222009-07-06 14:50:42 +01001930 unsigned long symoffs,
Jan Beulich554bdfe2009-07-06 14:51:44 +01001931 unsigned long stroffs,
1932 const char *secstrings,
1933 const unsigned long *strmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
1935}
1936#endif /* CONFIG_KALLSYMS */
1937
Jason Barone9d376f2009-02-05 11:51:38 -05001938static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05001939{
Jason Barone9d376f2009-02-05 11:51:38 -05001940#ifdef CONFIG_DYNAMIC_DEBUG
1941 if (ddebug_add_module(debug, num, debug->modname))
1942 printk(KERN_ERR "dynamic debug error adding module: %s\n",
1943 debug->modname);
1944#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05001945}
Jason Baron346e15b2008-08-12 16:46:19 -04001946
Rusty Russell3a642e92008-07-22 19:24:28 -05001947static void *module_alloc_update_bounds(unsigned long size)
1948{
1949 void *ret = module_alloc(size);
1950
1951 if (ret) {
1952 /* Update module bounds. */
1953 if ((unsigned long)ret < module_addr_min)
1954 module_addr_min = (unsigned long)ret;
1955 if ((unsigned long)ret + size > module_addr_max)
1956 module_addr_max = (unsigned long)ret + size;
1957 }
1958 return ret;
1959}
1960
Catalin Marinas4f2294b2009-06-11 13:23:20 +01001961#ifdef CONFIG_DEBUG_KMEMLEAK
1962static void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
1963 Elf_Shdr *sechdrs, char *secstrings)
1964{
1965 unsigned int i;
1966
1967 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001968 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01001969
1970 for (i = 1; i < hdr->e_shnum; i++) {
1971 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1972 continue;
1973 if (strncmp(secstrings + sechdrs[i].sh_name, ".data", 5) != 0
1974 && strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) != 0)
1975 continue;
1976
Catalin Marinasc017b4b2009-10-28 13:33:09 +00001977 kmemleak_scan_area((void *)sechdrs[i].sh_addr,
Catalin Marinas4f2294b2009-06-11 13:23:20 +01001978 sechdrs[i].sh_size, GFP_KERNEL);
1979 }
1980}
1981#else
1982static inline void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
1983 Elf_Shdr *sechdrs, char *secstrings)
1984{
1985}
1986#endif
1987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988/* Allocate and load the module: note that size of section 0 is always
1989 zero, and we rely on this for optional sections. */
Linus Torvaldsffb4ba72008-08-25 11:10:26 -07001990static noinline struct module *load_module(void __user *umod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 unsigned long len,
1992 const char __user *uargs)
1993{
1994 Elf_Ehdr *hdr;
1995 Elf_Shdr *sechdrs;
1996 char *secstrings, *args, *modmagic, *strtab = NULL;
Greg Kroah-Hartman061b1bd2008-09-24 14:46:44 -07001997 char *staging;
Andrew Morton84860f92006-06-28 04:26:46 -07001998 unsigned int i;
1999 unsigned int symindex = 0;
2000 unsigned int strindex = 0;
Rusty Russell5e458cc2008-10-22 10:00:13 -05002001 unsigned int modindex, versindex, infoindex, pcpuindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct module *mod;
2003 long err = 0;
Tejun Heo259354d2010-03-10 18:56:10 +09002004 void *ptr = NULL; /* Stops spurious gcc warning */
Jan Beulich554bdfe2009-07-06 14:51:44 +01002005 unsigned long symoffs, stroffs, *strmap;
Paul Mundt3ae91c22009-10-01 15:43:54 -07002006
Thomas Koeller378bac82005-09-06 15:17:11 -07002007 mm_segment_t old_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
2010 umod, len, uargs);
2011 if (len < sizeof(*hdr))
2012 return ERR_PTR(-ENOEXEC);
2013
2014 /* Suck in entire file: we'll want most of it. */
2015 /* vmalloc barfs on "unusual" numbers. Check here */
2016 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
2017 return ERR_PTR(-ENOMEM);
Heiko Carstens9e018922008-12-22 12:36:31 +01002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 if (copy_from_user(hdr, umod, len) != 0) {
2020 err = -EFAULT;
2021 goto free_hdr;
2022 }
2023
2024 /* Sanity checks against insmoding binaries or wrong arch,
2025 weird elf version */
Cyrill Gorcunovc4ea6fc2008-05-14 16:27:29 -07002026 if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 || hdr->e_type != ET_REL
2028 || !elf_check_arch(hdr)
2029 || hdr->e_shentsize != sizeof(*sechdrs)) {
2030 err = -ENOEXEC;
2031 goto free_hdr;
2032 }
2033
2034 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
2035 goto truncated;
2036
2037 /* Convenience variables */
2038 sechdrs = (void *)hdr + hdr->e_shoff;
2039 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
2040 sechdrs[0].sh_addr = 0;
2041
2042 for (i = 1; i < hdr->e_shnum; i++) {
2043 if (sechdrs[i].sh_type != SHT_NOBITS
2044 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
2045 goto truncated;
2046
2047 /* Mark all sections sh_addr with their address in the
2048 temporary image. */
2049 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
2050
2051 /* Internal symbols and strings. */
2052 if (sechdrs[i].sh_type == SHT_SYMTAB) {
2053 symindex = i;
2054 strindex = sechdrs[i].sh_link;
2055 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
2056 }
2057#ifndef CONFIG_MODULE_UNLOAD
2058 /* Don't load .exit sections */
Rusty Russell49502672009-03-31 13:05:36 -06002059 if (strstarts(secstrings+sechdrs[i].sh_name, ".exit"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
2061#endif
2062 }
2063
2064 modindex = find_sec(hdr, sechdrs, secstrings,
2065 ".gnu.linkonce.this_module");
2066 if (!modindex) {
2067 printk(KERN_WARNING "No module found in object\n");
2068 err = -ENOEXEC;
2069 goto free_hdr;
2070 }
Rusty Russell5e458cc2008-10-22 10:00:13 -05002071 /* This is temporary: point mod into copy of data. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 mod = (void *)sechdrs[modindex].sh_addr;
2073
2074 if (symindex == 0) {
2075 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
2076 mod->name);
2077 err = -ENOEXEC;
2078 goto free_hdr;
2079 }
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
2082 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
2083 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
2084
Rusty Russellea01e792008-03-13 09:02:17 +00002085 /* Don't keep modinfo and version sections. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russellea01e792008-03-13 09:02:17 +00002087 sechdrs[versindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089 /* Check module struct version now, before we try to use module. */
2090 if (!check_modstruct_version(sechdrs, versindex, mod)) {
2091 err = -ENOEXEC;
2092 goto free_hdr;
2093 }
2094
2095 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
2096 /* This is allowed: modprobe --force will invalidate it. */
2097 if (!modmagic) {
Rusty Russellc6e665c2009-03-31 13:05:33 -06002098 err = try_to_force_load(mod, "bad vermagic");
Linus Torvalds826e4502008-05-04 17:04:16 -07002099 if (err)
2100 goto free_hdr;
Rusty Russell91e37a72008-05-09 16:25:28 +10002101 } else if (!same_magic(modmagic, vermagic, versindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
2103 mod->name, modmagic, vermagic);
2104 err = -ENOEXEC;
2105 goto free_hdr;
2106 }
2107
Greg Kroah-Hartman061b1bd2008-09-24 14:46:44 -07002108 staging = get_modinfo(sechdrs, infoindex, "staging");
2109 if (staging) {
2110 add_taint_module(mod, TAINT_CRAP);
2111 printk(KERN_WARNING "%s: module is from the staging directory,"
2112 " the quality is unknown, you have been warned.\n",
2113 mod->name);
2114 }
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 /* Now copy in args */
Davi Arnaut24277dd2006-03-24 03:18:43 -08002117 args = strndup_user(uargs, ~0UL >> 1);
2118 if (IS_ERR(args)) {
2119 err = PTR_ERR(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 goto free_hdr;
2121 }
Andrew Morton8e08b752006-02-07 12:58:45 -08002122
Jan Beulich554bdfe2009-07-06 14:51:44 +01002123 strmap = kzalloc(BITS_TO_LONGS(sechdrs[strindex].sh_size)
2124 * sizeof(long), GFP_KERNEL);
2125 if (!strmap) {
2126 err = -ENOMEM;
2127 goto free_mod;
2128 }
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (find_module(mod->name)) {
2131 err = -EEXIST;
2132 goto free_mod;
2133 }
2134
2135 mod->state = MODULE_STATE_COMING;
2136
2137 /* Allow arches to frob section contents and sizes. */
2138 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
2139 if (err < 0)
2140 goto free_mod;
2141
2142 if (pcpuindex) {
2143 /* We have a special allocation for this section. */
Tejun Heo259354d2010-03-10 18:56:10 +09002144 err = percpu_modalloc(mod, sechdrs[pcpuindex].sh_size,
2145 sechdrs[pcpuindex].sh_addralign);
2146 if (err)
Masami Hiramatsu6e2b7572009-03-16 18:13:36 -04002147 goto free_mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150
2151 /* Determine total sizes, and put offsets in sh_entsize. For now
2152 this is done generically; there doesn't appear to be any
2153 special cases for the architectures. */
2154 layout_sections(mod, hdr, sechdrs, secstrings);
Jan Beulich554bdfe2009-07-06 14:51:44 +01002155 symoffs = layout_symtab(mod, sechdrs, symindex, strindex, hdr,
2156 secstrings, &stroffs, strmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 /* Do the allocs. */
Rusty Russell3a642e92008-07-22 19:24:28 -05002159 ptr = module_alloc_update_bounds(mod->core_size);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002160 /*
2161 * The pointer to this block is stored in the module structure
2162 * which is inside the block. Just mark it as not being a
2163 * leak.
2164 */
2165 kmemleak_not_leak(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (!ptr) {
2167 err = -ENOMEM;
2168 goto free_percpu;
2169 }
2170 memset(ptr, 0, mod->core_size);
2171 mod->module_core = ptr;
2172
Rusty Russell3a642e92008-07-22 19:24:28 -05002173 ptr = module_alloc_update_bounds(mod->init_size);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002174 /*
2175 * The pointer to this block is stored in the module structure
2176 * which is inside the block. This block doesn't need to be
2177 * scanned as it contains data and code that will be freed
2178 * after the module is initialized.
2179 */
2180 kmemleak_ignore(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (!ptr && mod->init_size) {
2182 err = -ENOMEM;
2183 goto free_core;
2184 }
2185 memset(ptr, 0, mod->init_size);
2186 mod->module_init = ptr;
2187
2188 /* Transfer each section which specifies SHF_ALLOC */
2189 DEBUGP("final section addresses:\n");
2190 for (i = 0; i < hdr->e_shnum; i++) {
2191 void *dest;
2192
2193 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
2194 continue;
2195
2196 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
2197 dest = mod->module_init
2198 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
2199 else
2200 dest = mod->module_core + sechdrs[i].sh_entsize;
2201
2202 if (sechdrs[i].sh_type != SHT_NOBITS)
2203 memcpy(dest, (void *)sechdrs[i].sh_addr,
2204 sechdrs[i].sh_size);
2205 /* Update sh_addr to point to copy in image. */
2206 sechdrs[i].sh_addr = (unsigned long)dest;
2207 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
2208 }
2209 /* Module has been moved. */
2210 mod = (void *)sechdrs[modindex].sh_addr;
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002211 kmemleak_load_module(mod, hdr, sechdrs, secstrings);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Christoph Lametere1783a22010-01-05 15:34:50 +09002213#if defined(CONFIG_MODULE_UNLOAD)
2214 mod->refptr = alloc_percpu(struct module_ref);
Masami Hiramatsu6e2b7572009-03-16 18:13:36 -04002215 if (!mod->refptr) {
2216 err = -ENOMEM;
2217 goto free_init;
2218 }
2219#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 /* Now we've moved module, initialize linked lists, etc. */
2221 module_unload_init(mod);
2222
Kay Sievers97c146e2007-11-29 23:46:11 +01002223 /* add kobject, so we can reference it. */
Akinobu Mitad58ae672007-10-16 23:30:27 -07002224 err = mod_sysfs_init(mod);
2225 if (err)
Kay Sievers97c146e2007-11-29 23:46:11 +01002226 goto free_unload;
Kay Sievers270a6c42007-01-18 13:26:15 +01002227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 /* Set up license info based on the info section */
2229 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
2230
Pavel Roskin9b37ccf2008-02-28 17:11:02 -05002231 /*
2232 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2233 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2234 * using GPL-only symbols it needs.
2235 */
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002236 if (strcmp(mod->name, "ndiswrapper") == 0)
Pavel Roskin9b37ccf2008-02-28 17:11:02 -05002237 add_taint(TAINT_PROPRIETARY_MODULE);
2238
2239 /* driverloader was caught wrongly pretending to be under GPL */
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002240 if (strcmp(mod->name, "driverloader") == 0)
2241 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Dave Jones9841d61d2006-01-08 01:03:41 -08002242
Matt Domschc988d2b2005-06-23 22:05:15 -07002243 /* Set up MODINFO_ATTR fields */
2244 setup_modinfo(mod, sechdrs, infoindex);
Matt Domschc988d2b2005-06-23 22:05:15 -07002245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 /* Fix up syms, so that st_value is a pointer to location. */
2247 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
2248 mod);
2249 if (err < 0)
2250 goto cleanup;
2251
Rusty Russell5e458cc2008-10-22 10:00:13 -05002252 /* Now we've got everything in the final locations, we can
2253 * find optional sections. */
Rusty Russelle180a6b2009-03-31 13:05:29 -06002254 mod->kp = section_objs(hdr, sechdrs, secstrings, "__param",
2255 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell5e458cc2008-10-22 10:00:13 -05002256 mod->syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab",
2257 sizeof(*mod->syms), &mod->num_syms);
2258 mod->crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab");
2259 mod->gpl_syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab_gpl",
2260 sizeof(*mod->gpl_syms),
2261 &mod->num_gpl_syms);
2262 mod->gpl_crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab_gpl");
2263 mod->gpl_future_syms = section_objs(hdr, sechdrs, secstrings,
2264 "__ksymtab_gpl_future",
2265 sizeof(*mod->gpl_future_syms),
2266 &mod->num_gpl_future_syms);
2267 mod->gpl_future_crcs = section_addr(hdr, sechdrs, secstrings,
2268 "__kcrctab_gpl_future");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05002270#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell5e458cc2008-10-22 10:00:13 -05002271 mod->unused_syms = section_objs(hdr, sechdrs, secstrings,
2272 "__ksymtab_unused",
2273 sizeof(*mod->unused_syms),
2274 &mod->num_unused_syms);
2275 mod->unused_crcs = section_addr(hdr, sechdrs, secstrings,
2276 "__kcrctab_unused");
2277 mod->unused_gpl_syms = section_objs(hdr, sechdrs, secstrings,
2278 "__ksymtab_unused_gpl",
2279 sizeof(*mod->unused_gpl_syms),
2280 &mod->num_unused_gpl_syms);
2281 mod->unused_gpl_crcs = section_addr(hdr, sechdrs, secstrings,
2282 "__kcrctab_unused_gpl");
2283#endif
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002284#ifdef CONFIG_CONSTRUCTORS
2285 mod->ctors = section_objs(hdr, sechdrs, secstrings, ".ctors",
2286 sizeof(*mod->ctors), &mod->num_ctors);
2287#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002288
Rusty Russell5e458cc2008-10-22 10:00:13 -05002289#ifdef CONFIG_TRACEPOINTS
2290 mod->tracepoints = section_objs(hdr, sechdrs, secstrings,
2291 "__tracepoints",
2292 sizeof(*mod->tracepoints),
2293 &mod->num_tracepoints);
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05002294#endif
Steven Rostedt6d723732009-04-10 14:53:50 -04002295#ifdef CONFIG_EVENT_TRACING
2296 mod->trace_events = section_objs(hdr, sechdrs, secstrings,
2297 "_ftrace_events",
2298 sizeof(*mod->trace_events),
2299 &mod->num_trace_events);
Catalin Marinasa6f5aa12009-10-28 13:33:10 +00002300 /*
2301 * This section contains pointers to allocated objects in the trace
2302 * code and not scanning it leads to false positives.
2303 */
2304 kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) *
2305 mod->num_trace_events, GFP_KERNEL);
Steven Rostedt6d723732009-04-10 14:53:50 -04002306#endif
Steven Rostedt93eb6772009-04-15 13:24:06 -04002307#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2308 /* sechdrs[0].sh_size is always zero */
2309 mod->ftrace_callsites = section_objs(hdr, sechdrs, secstrings,
2310 "__mcount_loc",
2311 sizeof(*mod->ftrace_callsites),
2312 &mod->num_ftrace_callsites);
2313#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314#ifdef CONFIG_MODVERSIONS
Rusty Russell5e458cc2008-10-22 10:00:13 -05002315 if ((mod->num_syms && !mod->crcs)
2316 || (mod->num_gpl_syms && !mod->gpl_crcs)
2317 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05002318#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell5e458cc2008-10-22 10:00:13 -05002319 || (mod->num_unused_syms && !mod->unused_crcs)
2320 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05002321#endif
2322 ) {
Rusty Russellc6e665c2009-03-31 13:05:33 -06002323 err = try_to_force_load(mod,
2324 "no versions for exported symbols");
Linus Torvalds826e4502008-05-04 17:04:16 -07002325 if (err)
2326 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328#endif
2329
2330 /* Now do relocations. */
2331 for (i = 1; i < hdr->e_shnum; i++) {
2332 const char *strtab = (char *)sechdrs[strindex].sh_addr;
2333 unsigned int info = sechdrs[i].sh_info;
2334
2335 /* Not a valid relocation section? */
2336 if (info >= hdr->e_shnum)
2337 continue;
2338
2339 /* Don't bother with non-allocated sections */
2340 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
2341 continue;
2342
2343 if (sechdrs[i].sh_type == SHT_REL)
2344 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
2345 else if (sechdrs[i].sh_type == SHT_RELA)
2346 err = apply_relocate_add(sechdrs, strtab, symindex, i,
2347 mod);
2348 if (err < 0)
2349 goto cleanup;
2350 }
2351
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002352 /* Find duplicate symbols */
2353 err = verify_export_symbols(mod);
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002354 if (err < 0)
2355 goto cleanup;
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 /* Set up and sort exception table */
Rusty Russell5e458cc2008-10-22 10:00:13 -05002358 mod->extable = section_objs(hdr, sechdrs, secstrings, "__ex_table",
2359 sizeof(*mod->extable), &mod->num_exentries);
2360 sort_extable(mod->extable, mod->extable + mod->num_exentries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362 /* Finally, copy percpu area over. */
Tejun Heo259354d2010-03-10 18:56:10 +09002363 percpu_modcopy(mod, (void *)sechdrs[pcpuindex].sh_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 sechdrs[pcpuindex].sh_size);
2365
Jan Beulich4a496222009-07-06 14:50:42 +01002366 add_kallsyms(mod, sechdrs, hdr->e_shnum, symindex, strindex,
Jan Beulich554bdfe2009-07-06 14:51:44 +01002367 symoffs, stroffs, secstrings, strmap);
2368 kfree(strmap);
2369 strmap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -04002371 if (!mod->taints) {
Jason Barone9d376f2009-02-05 11:51:38 -05002372 struct _ddebug *debug;
Rusty Russell5e458cc2008-10-22 10:00:13 -05002373 unsigned int num_debug;
2374
Rusty Russell5e458cc2008-10-22 10:00:13 -05002375 debug = section_objs(hdr, sechdrs, secstrings, "__verbose",
2376 sizeof(*debug), &num_debug);
Jason Barone9d376f2009-02-05 11:51:38 -05002377 if (debug)
2378 dynamic_debug_setup(debug, num_debug);
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -04002379 }
Steven Rostedt90d595f2008-08-14 15:45:09 -04002380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 err = module_finalize(hdr, sechdrs, mod);
2382 if (err < 0)
2383 goto cleanup;
2384
Thomas Koeller378bac82005-09-06 15:17:11 -07002385 /* flush the icache in correct context */
2386 old_fs = get_fs();
2387 set_fs(KERNEL_DS);
2388
2389 /*
2390 * Flush the instruction cache, since we've played with text.
2391 * Do it before processing of module parameters, so the module
2392 * can provide parameter accessor functions of its own.
2393 */
2394 if (mod->module_init)
2395 flush_icache_range((unsigned long)mod->module_init,
2396 (unsigned long)mod->module_init
2397 + mod->init_size);
2398 flush_icache_range((unsigned long)mod->module_core,
2399 (unsigned long)mod->module_core + mod->core_size);
2400
2401 set_fs(old_fs);
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 mod->args = args;
Rusty Russell5e458cc2008-10-22 10:00:13 -05002404 if (section_addr(hdr, sechdrs, secstrings, "__obsparm"))
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002405 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2406 mod->name);
2407
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002408 /* Now sew it into the lists so we can get lockdep and oops
Andi Kleend72b3752008-08-30 10:09:00 +02002409 * info during argument parsing. Noone should access us, since
2410 * strong_try_module_get() will fail.
2411 * lockdep/oops can run asynchronous, so use the RCU list insertion
2412 * function to insert in a way safe to concurrent readers.
2413 * The mutex protects against concurrent writers.
2414 */
2415 list_add_rcu(&mod->list, &modules);
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002416
Rusty Russelle180a6b2009-03-31 13:05:29 -06002417 err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002419 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Rusty Russelle180a6b2009-03-31 13:05:29 -06002421 err = mod_sysfs_setup(mod, mod->kp, mod->num_kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002423 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Roland McGrath6d760132007-10-16 23:26:40 -07002425 add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427 /* Get rid of temporary copy */
2428 vfree(hdr);
2429
Li Zefan7ead8b82009-08-17 16:56:28 +08002430 trace_module_load(mod);
2431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 /* Done! */
2433 return mod;
2434
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002435 unlink:
Rusty Russelle91defa2009-03-31 13:05:35 -06002436 /* Unlink carefully: kallsyms could be walking list. */
2437 list_del_rcu(&mod->list);
2438 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 module_arch_cleanup(mod);
2440 cleanup:
Rusty Russella263f772009-09-25 00:32:58 -06002441 free_modinfo(mod);
Kay Sievers97c146e2007-11-29 23:46:11 +01002442 kobject_del(&mod->mkobj.kobj);
2443 kobject_put(&mod->mkobj.kobj);
2444 free_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 module_unload_free(mod);
Christoph Lametere1783a22010-01-05 15:34:50 +09002446#if defined(CONFIG_MODULE_UNLOAD)
2447 free_percpu(mod->refptr);
Rusty Russellffa9f122009-09-25 00:32:59 -06002448 free_init:
Eric Dumazet720eba32009-02-03 13:31:36 +10302449#endif
Masami Hiramatsu6e2b7572009-03-16 18:13:36 -04002450 module_free(mod, mod->module_init);
2451 free_core:
2452 module_free(mod, mod->module_core);
2453 /* mod will be freed with core. Don't access it beyond this line! */
2454 free_percpu:
Tejun Heo259354d2010-03-10 18:56:10 +09002455 percpu_modfree(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 free_mod:
2457 kfree(args);
Jan Beulich554bdfe2009-07-06 14:51:44 +01002458 kfree(strmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 free_hdr:
2460 vfree(hdr);
Jayachandran C6fe2e702006-01-06 00:19:54 -08002461 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
2463 truncated:
2464 printk(KERN_ERR "Module len %lu truncated\n", len);
2465 err = -ENOEXEC;
2466 goto free_hdr;
2467}
2468
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002469/* Call module constructors. */
2470static void do_mod_ctors(struct module *mod)
2471{
2472#ifdef CONFIG_CONSTRUCTORS
2473 unsigned long i;
2474
2475 for (i = 0; i < mod->num_ctors; i++)
2476 mod->ctors[i]();
2477#endif
2478}
2479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480/* This is where the real work happens */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002481SYSCALL_DEFINE3(init_module, void __user *, umod,
2482 unsigned long, len, const char __user *, uargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483{
2484 struct module *mod;
2485 int ret = 0;
2486
2487 /* Must have permission */
Kees Cook3d433212009-04-02 15:49:29 -07002488 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 return -EPERM;
2490
2491 /* Only one module load at a time, please */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002492 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return -EINTR;
2494
2495 /* Do all the hard work */
2496 mod = load_module(umod, len, uargs);
2497 if (IS_ERR(mod)) {
Ashutosh Naik6389a382006-03-23 03:00:46 -08002498 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 return PTR_ERR(mod);
2500 }
2501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 /* Drop lock so they can recurse */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002503 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Alan Sterne041c682006-03-27 01:16:30 -08002505 blocking_notifier_call_chain(&module_notify_list,
2506 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002508 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 /* Start the module */
2510 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07002511 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 if (ret < 0) {
2513 /* Init routine failed: abort. Try to protect us from
2514 buggy refcounters. */
2515 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002516 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002517 module_put(mod);
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02002518 blocking_notifier_call_chain(&module_notify_list,
2519 MODULE_STATE_GOING, mod);
Rusty Russellaf49d922007-10-16 23:26:27 -07002520 mutex_lock(&module_mutex);
2521 free_module(mod);
2522 mutex_unlock(&module_mutex);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05002523 wake_up(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return ret;
2525 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002526 if (ret > 0) {
Joe Perchesad361c92009-07-06 13:05:40 -07002527 printk(KERN_WARNING
2528"%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n"
2529"%s: loading module anyway...\n",
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002530 __func__, mod->name, ret,
2531 __func__);
2532 dump_stack();
2533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Rusty Russell6c5db222008-03-10 11:43:52 -07002535 /* Now it's a first class citizen! Wake up anyone waiting for it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 mod->state = MODULE_STATE_LIVE;
Rusty Russell6c5db222008-03-10 11:43:52 -07002537 wake_up(&module_wq);
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08002538 blocking_notifier_call_chain(&module_notify_list,
2539 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07002540
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07002541 /* We need to finish all async code before the module init sequence is done */
2542 async_synchronize_full();
2543
Rusty Russell6c5db222008-03-10 11:43:52 -07002544 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 /* Drop initial reference. */
2546 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06002547 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01002548#ifdef CONFIG_KALLSYMS
2549 mod->num_symtab = mod->core_num_syms;
2550 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002551 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01002552#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 module_free(mod, mod->module_init);
2554 mod->module_init = NULL;
2555 mod->init_size = 0;
2556 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08002557 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 return 0;
2560}
2561
2562static inline int within(unsigned long addr, void *start, unsigned long size)
2563{
2564 return ((void *)addr >= start && (void *)addr < start + size);
2565}
2566
2567#ifdef CONFIG_KALLSYMS
2568/*
2569 * This ignores the intensely annoying "mapping symbols" found
2570 * in ARM ELF files: $a, $t and $d.
2571 */
2572static inline int is_arm_mapping_symbol(const char *str)
2573{
Daniel Walker22a8bde2007-10-18 03:06:07 -07002574 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 && (str[2] == '\0' || str[2] == '.');
2576}
2577
2578static const char *get_ksymbol(struct module *mod,
2579 unsigned long addr,
2580 unsigned long *size,
2581 unsigned long *offset)
2582{
2583 unsigned int i, best = 0;
2584 unsigned long nextval;
2585
2586 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002587 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002589 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2591
2592 /* Scan for closest preceeding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07002593 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 for (i = 1; i < mod->num_symtab; i++) {
2595 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2596 continue;
2597
2598 /* We ignore unnamed symbols: they're uninformative
2599 * and inserted at a whim. */
2600 if (mod->symtab[i].st_value <= addr
2601 && mod->symtab[i].st_value > mod->symtab[best].st_value
2602 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2603 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2604 best = i;
2605 if (mod->symtab[i].st_value > addr
2606 && mod->symtab[i].st_value < nextval
2607 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2608 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2609 nextval = mod->symtab[i].st_value;
2610 }
2611
2612 if (!best)
2613 return NULL;
2614
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002615 if (size)
2616 *size = nextval - mod->symtab[best].st_value;
2617 if (offset)
2618 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 return mod->strtab + mod->symtab[best].st_name;
2620}
2621
Rusty Russell6dd06c92008-01-29 17:13:22 -05002622/* For kallsyms to ask for address resolution. NULL means not found. Careful
2623 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002624const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05002625 unsigned long *size,
2626 unsigned long *offset,
2627 char **modname,
2628 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
2630 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002631 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Rusty Russellcb2a5202008-01-14 00:55:03 -08002633 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002634 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002635 if (within_module_init(addr, mod) ||
2636 within_module_core(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07002637 if (modname)
2638 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002639 ret = get_ksymbol(mod, addr, size, offset);
2640 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 }
2642 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05002643 /* Make a copy in here where it's safe */
2644 if (ret) {
2645 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2646 ret = namebuf;
2647 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002648 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002649 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650}
2651
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002652int lookup_module_symbol_name(unsigned long addr, char *symname)
2653{
2654 struct module *mod;
2655
Rusty Russellcb2a5202008-01-14 00:55:03 -08002656 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002657 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002658 if (within_module_init(addr, mod) ||
2659 within_module_core(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002660 const char *sym;
2661
2662 sym = get_ksymbol(mod, addr, NULL, NULL);
2663 if (!sym)
2664 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07002665 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002666 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002667 return 0;
2668 }
2669 }
2670out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002671 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002672 return -ERANGE;
2673}
2674
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002675int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2676 unsigned long *offset, char *modname, char *name)
2677{
2678 struct module *mod;
2679
Rusty Russellcb2a5202008-01-14 00:55:03 -08002680 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002681 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002682 if (within_module_init(addr, mod) ||
2683 within_module_core(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002684 const char *sym;
2685
2686 sym = get_ksymbol(mod, addr, size, offset);
2687 if (!sym)
2688 goto out;
2689 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07002690 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002691 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07002692 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002693 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002694 return 0;
2695 }
2696 }
2697out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002698 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002699 return -ERANGE;
2700}
2701
Alexey Dobriyanea078902007-05-08 00:28:39 -07002702int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2703 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
2705 struct module *mod;
2706
Rusty Russellcb2a5202008-01-14 00:55:03 -08002707 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002708 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 if (symnum < mod->num_symtab) {
2710 *value = mod->symtab[symnum].st_value;
2711 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07002712 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07002713 KSYM_NAME_LEN);
2714 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06002715 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002716 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002717 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 }
2719 symnum -= mod->num_symtab;
2720 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002721 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002722 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723}
2724
2725static unsigned long mod_find_symname(struct module *mod, const char *name)
2726{
2727 unsigned int i;
2728
2729 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002730 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2731 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 return mod->symtab[i].st_value;
2733 return 0;
2734}
2735
2736/* Look for this name: can be of form module:name. */
2737unsigned long module_kallsyms_lookup_name(const char *name)
2738{
2739 struct module *mod;
2740 char *colon;
2741 unsigned long ret = 0;
2742
2743 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002744 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if ((colon = strchr(name, ':')) != NULL) {
2746 *colon = '\0';
2747 if ((mod = find_module(name)) != NULL)
2748 ret = mod_find_symname(mod, colon+1);
2749 *colon = ':';
2750 } else {
Andi Kleend72b3752008-08-30 10:09:00 +02002751 list_for_each_entry_rcu(mod, &modules, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 if ((ret = mod_find_symname(mod, name)) != 0)
2753 break;
2754 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002755 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 return ret;
2757}
Anders Kaseorg75a66612008-12-05 19:03:58 -05002758
2759int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
2760 struct module *, unsigned long),
2761 void *data)
2762{
2763 struct module *mod;
2764 unsigned int i;
2765 int ret;
2766
2767 list_for_each_entry(mod, &modules, list) {
2768 for (i = 0; i < mod->num_symtab; i++) {
2769 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
2770 mod, mod->symtab[i].st_value);
2771 if (ret != 0)
2772 return ret;
2773 }
2774 }
2775 return 0;
2776}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777#endif /* CONFIG_KALLSYMS */
2778
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002779static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002780{
2781 int bx = 0;
2782
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002783 if (mod->taints ||
2784 mod->state == MODULE_STATE_GOING ||
2785 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002786 buf[bx++] = '(';
Andi Kleen25ddbb12008-10-15 22:01:41 -07002787 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002788 buf[bx++] = 'P';
Andi Kleen25ddbb12008-10-15 22:01:41 -07002789 if (mod->taints & (1 << TAINT_FORCED_MODULE))
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002790 buf[bx++] = 'F';
Linus Torvalds26e9a392008-10-17 09:50:12 -07002791 if (mod->taints & (1 << TAINT_CRAP))
Greg Kroah-Hartman061b1bd2008-09-24 14:46:44 -07002792 buf[bx++] = 'C';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002793 /*
2794 * TAINT_FORCED_RMMOD: could be added.
2795 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2796 * apply to modules.
2797 */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002798
2799 /* Show a - for module-is-being-unloaded */
2800 if (mod->state == MODULE_STATE_GOING)
2801 buf[bx++] = '-';
2802 /* Show a + for module-is-being-loaded */
2803 if (mod->state == MODULE_STATE_COMING)
2804 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002805 buf[bx++] = ')';
2806 }
2807 buf[bx] = '\0';
2808
2809 return buf;
2810}
2811
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04002812#ifdef CONFIG_PROC_FS
2813/* Called by the /proc file system to return a list of modules. */
2814static void *m_start(struct seq_file *m, loff_t *pos)
2815{
2816 mutex_lock(&module_mutex);
2817 return seq_list_start(&modules, *pos);
2818}
2819
2820static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2821{
2822 return seq_list_next(p, &modules, pos);
2823}
2824
2825static void m_stop(struct seq_file *m, void *p)
2826{
2827 mutex_unlock(&module_mutex);
2828}
2829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830static int m_show(struct seq_file *m, void *p)
2831{
2832 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002833 char buf[8];
2834
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05002835 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 mod->name, mod->init_size + mod->core_size);
2837 print_unload_info(m, mod);
2838
2839 /* Informative for users. */
2840 seq_printf(m, " %s",
2841 mod->state == MODULE_STATE_GOING ? "Unloading":
2842 mod->state == MODULE_STATE_COMING ? "Loading":
2843 "Live");
2844 /* Used by oprofile and other similar tools. */
2845 seq_printf(m, " 0x%p", mod->module_core);
2846
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002847 /* Taints info */
2848 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002849 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 seq_printf(m, "\n");
2852 return 0;
2853}
2854
2855/* Format: modulename size refcount deps address
2856
2857 Where refcount is a number or -, and deps is a comma-separated list
2858 of depends or -.
2859*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04002860static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 .start = m_start,
2862 .next = m_next,
2863 .stop = m_stop,
2864 .show = m_show
2865};
2866
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04002867static int modules_open(struct inode *inode, struct file *file)
2868{
2869 return seq_open(file, &modules_op);
2870}
2871
2872static const struct file_operations proc_modules_operations = {
2873 .open = modules_open,
2874 .read = seq_read,
2875 .llseek = seq_lseek,
2876 .release = seq_release,
2877};
2878
2879static int __init proc_modules_init(void)
2880{
2881 proc_create("modules", 0, NULL, &proc_modules_operations);
2882 return 0;
2883}
2884module_init(proc_modules_init);
2885#endif
2886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887/* Given an address, look for it in the module exception tables. */
2888const struct exception_table_entry *search_module_extables(unsigned long addr)
2889{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 const struct exception_table_entry *e = NULL;
2891 struct module *mod;
2892
Rusty Russell24da1cb2007-07-15 23:41:46 -07002893 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002894 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 if (mod->num_exentries == 0)
2896 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 e = search_extable(mod->extable,
2899 mod->extable + mod->num_exentries - 1,
2900 addr);
2901 if (e)
2902 break;
2903 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07002904 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07002907 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 return e;
2909}
2910
Ingo Molnar4d435f92006-07-03 00:24:24 -07002911/*
Rusty Russelle6104992009-03-31 13:05:31 -06002912 * is_module_address - is this address inside a module?
2913 * @addr: the address to check.
2914 *
2915 * See is_module_text_address() if you simply want to see if the address
2916 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07002917 */
Rusty Russelle6104992009-03-31 13:05:31 -06002918bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07002919{
Rusty Russelle6104992009-03-31 13:05:31 -06002920 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07002921
Rusty Russell24da1cb2007-07-15 23:41:46 -07002922 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06002923 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07002924 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002925
Rusty Russelle6104992009-03-31 13:05:31 -06002926 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07002927}
2928
Rusty Russelle6104992009-03-31 13:05:31 -06002929/*
2930 * __module_address - get the module which contains an address.
2931 * @addr: the address.
2932 *
2933 * Must be called with preempt disabled or module mutex held so that
2934 * module doesn't get freed during this.
2935 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07002936struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937{
2938 struct module *mod;
2939
Rusty Russell3a642e92008-07-22 19:24:28 -05002940 if (addr < module_addr_min || addr > module_addr_max)
2941 return NULL;
2942
Andi Kleend72b3752008-08-30 10:09:00 +02002943 list_for_each_entry_rcu(mod, &modules, list)
Rusty Russelle6104992009-03-31 13:05:31 -06002944 if (within_module_core(addr, mod)
2945 || within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return mod;
2947 return NULL;
2948}
Tim Abbottc6b37802008-12-05 19:03:59 -05002949EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Rusty Russelle6104992009-03-31 13:05:31 -06002951/*
2952 * is_module_text_address - is this address inside module code?
2953 * @addr: the address to check.
2954 *
2955 * See is_module_address() if you simply want to see if the address is
2956 * anywhere in a module. See kernel_text_address() for testing if an
2957 * address corresponds to kernel or module code.
2958 */
2959bool is_module_text_address(unsigned long addr)
2960{
2961 bool ret;
2962
2963 preempt_disable();
2964 ret = __module_text_address(addr) != NULL;
2965 preempt_enable();
2966
2967 return ret;
2968}
2969
2970/*
2971 * __module_text_address - get the module whose code contains an address.
2972 * @addr: the address.
2973 *
2974 * Must be called with preempt disabled or module mutex held so that
2975 * module doesn't get freed during this.
2976 */
2977struct module *__module_text_address(unsigned long addr)
2978{
2979 struct module *mod = __module_address(addr);
2980 if (mod) {
2981 /* Make sure it's within the text section. */
2982 if (!within(addr, mod->module_init, mod->init_text_size)
2983 && !within(addr, mod->module_core, mod->core_text_size))
2984 mod = NULL;
2985 }
2986 return mod;
2987}
Tim Abbottc6b37802008-12-05 19:03:59 -05002988EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06002989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990/* Don't grab lock, we're oopsing. */
2991void print_modules(void)
2992{
2993 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07002994 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Linus Torvaldsb2311252009-06-16 11:07:14 -07002996 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02002997 /* Most callers should already have preempt disabled, but make sure */
2998 preempt_disable();
2999 list_for_each_entry_rcu(mod, &modules, list)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003000 printk(" %s%s", mod->name, module_flags(mod, buf));
Andi Kleend72b3752008-08-30 10:09:00 +02003001 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003002 if (last_unloaded_module[0])
3003 printk(" [last unloaded: %s]", last_unloaded_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 printk("\n");
3005}
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003008/* Generate the signature for all relevant module structures here.
3009 * If these change, we don't want to try to parse the module. */
3010void module_layout(struct module *mod,
3011 struct modversion_info *ver,
3012 struct kernel_param *kp,
3013 struct kernel_symbol *ks,
Rusty Russell8c8ef422009-03-31 13:05:34 -06003014 struct tracepoint *tp)
3015{
3016}
3017EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07003019
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -04003020#ifdef CONFIG_TRACEPOINTS
3021void module_update_tracepoints(void)
3022{
3023 struct module *mod;
3024
3025 mutex_lock(&module_mutex);
3026 list_for_each_entry(mod, &modules, list)
3027 if (!mod->taints)
3028 tracepoint_update_probe_range(mod->tracepoints,
3029 mod->tracepoints + mod->num_tracepoints);
3030 mutex_unlock(&module_mutex);
3031}
3032
3033/*
3034 * Returns 0 if current not found.
3035 * Returns 1 if current found.
3036 */
3037int module_get_iter_tracepoints(struct tracepoint_iter *iter)
3038{
3039 struct module *iter_mod;
3040 int found = 0;
3041
3042 mutex_lock(&module_mutex);
3043 list_for_each_entry(iter_mod, &modules, list) {
3044 if (!iter_mod->taints) {
3045 /*
3046 * Sorted module list
3047 */
3048 if (iter_mod < iter->module)
3049 continue;
3050 else if (iter_mod > iter->module)
3051 iter->tracepoint = NULL;
3052 found = tracepoint_get_iter_range(&iter->tracepoint,
3053 iter_mod->tracepoints,
3054 iter_mod->tracepoints
3055 + iter_mod->num_tracepoints);
3056 if (found) {
3057 iter->module = iter_mod;
3058 break;
3059 }
3060 }
3061 }
3062 mutex_unlock(&module_mutex);
3063 return found;
3064}
3065#endif