blob: ccd641991842f4990906946f895fd5062a0389c3 [file] [log] [blame]
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (C) 2002 Richard Henderson
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003 Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/moduleloader.h>
Steven Rostedt6d723732009-04-10 14:53:50 -040021#include <linux/ftrace_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
Alexey Dobriyanae84e322007-05-08 00:28:38 -070023#include <linux/kallsyms.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040024#include <linux/fs.h>
Roland McGrath6d760132007-10-16 23:26:40 -070025#include <linux/sysfs.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070026#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/slab.h>
28#include <linux/vmalloc.h>
29#include <linux/elf.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040030#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/seq_file.h>
32#include <linux/syscalls.h>
33#include <linux/fcntl.h>
34#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080035#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/cpu.h>
37#include <linux/moduleparam.h>
38#include <linux/errno.h>
39#include <linux/err.h>
40#include <linux/vermagic.h>
41#include <linux/notifier.h>
Al Virof6a57032006-10-18 01:47:25 -040042#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/stop_machine.h>
44#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070045#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080046#include <linux/mutex.h>
Andi Kleend72b3752008-08-30 10:09:00 +020047#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/cacheflush.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070050#include <asm/mmu_context.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020051#include <linux/license.h>
Christoph Lameter6d762392008-02-08 04:18:42 -080052#include <asm/sections.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040053#include <linux/tracepoint.h>
Steven Rostedt90d595f2008-08-14 15:45:09 -040054#include <linux/ftrace.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080055#include <linux/async.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090056#include <linux/percpu.h>
Catalin Marinas4f2294b2009-06-11 13:23:20 +010057#include <linux/kmemleak.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Li Zefan7ead8b82009-08-17 16:56:28 +080059#define CREATE_TRACE_POINTS
60#include <trace/events/module.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#if 0
63#define DEBUGP printk
64#else
65#define DEBUGP(fmt , a...)
66#endif
67
68#ifndef ARCH_SHF_SMALL
69#define ARCH_SHF_SMALL 0
70#endif
71
72/* If this is set, the section belongs in the init part of the module */
73#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
74
Rusty Russell75676502010-06-05 11:17:36 -060075/*
76 * Mutex protects:
77 * 1) List of modules (also safely readable with preempt_disable),
78 * 2) module_use links,
79 * 3) module_addr_min/module_addr_max.
Andi Kleend72b3752008-08-30 10:09:00 +020080 * (delete uses stop_machine/add uses RCU list operations). */
Tim Abbottc6b37802008-12-05 19:03:59 -050081DEFINE_MUTEX(module_mutex);
82EXPORT_SYMBOL_GPL(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static LIST_HEAD(modules);
Jason Wessel67fc4e02010-05-20 21:04:21 -050084#ifdef CONFIG_KGDB_KDB
85struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
86#endif /* CONFIG_KGDB_KDB */
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Stephen Rothwell19e45292009-04-14 17:27:18 +100089/* Block module loading/unloading? */
90int modules_disabled = 0;
91
Rusty Russellc9a3ba52008-01-29 17:13:18 -050092/* Waiting for a module to finish initializing? */
93static DECLARE_WAIT_QUEUE_HEAD(module_wq);
94
Alan Sterne041c682006-03-27 01:16:30 -080095static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Rusty Russell75676502010-06-05 11:17:36 -060097/* Bounds of module allocation, for speeding __module_address.
98 * Protected by module_mutex. */
Rusty Russell3a642e92008-07-22 19:24:28 -050099static unsigned long module_addr_min = -1UL, module_addr_max = 0;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101int register_module_notifier(struct notifier_block * nb)
102{
Alan Sterne041c682006-03-27 01:16:30 -0800103 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105EXPORT_SYMBOL(register_module_notifier);
106
107int unregister_module_notifier(struct notifier_block * nb)
108{
Alan Sterne041c682006-03-27 01:16:30 -0800109 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111EXPORT_SYMBOL(unregister_module_notifier);
112
Rusty Russelleded41c2010-08-05 12:59:07 -0600113struct load_info {
114 Elf_Ehdr *hdr;
115 unsigned long len;
116 Elf_Shdr *sechdrs;
Rusty Russell6526c532010-08-05 12:59:10 -0600117 char *secstrings, *strtab;
Rusty Russelld9131882010-08-05 12:59:08 -0600118 unsigned long *strmap;
119 unsigned long symoffs, stroffs;
Rusty Russell811d66a2010-08-05 12:59:12 -0600120 struct _ddebug *debug;
121 unsigned int num_debug;
Rusty Russelleded41c2010-08-05 12:59:07 -0600122 struct {
123 unsigned int sym, str, mod, vers, info, pcpu;
124 } index;
125};
126
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800127/* We require a truly strong try_module_get(): 0 means failure due to
128 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static inline int strong_try_module_get(struct module *mod)
130{
131 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500132 return -EBUSY;
133 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500135 else
136 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700139static inline void add_taint_module(struct module *mod, unsigned flag)
140{
141 add_taint(flag);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700142 mod->taints |= (1U << flag);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700143}
144
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200145/*
146 * A thread that wants to hold a reference to a module only while it
147 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
149void __module_put_and_exit(struct module *mod, long code)
150{
151 module_put(mod);
152 do_exit(code);
153}
154EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/* Find a module section: 0 means not found. */
Rusty Russell49668682010-08-05 12:59:10 -0600157static unsigned int find_sec(const struct load_info *info, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 unsigned int i;
160
Rusty Russell49668682010-08-05 12:59:10 -0600161 for (i = 1; i < info->hdr->e_shnum; i++) {
162 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 /* Alloc bit cleared means "ignore it." */
Rusty Russell49668682010-08-05 12:59:10 -0600164 if ((shdr->sh_flags & SHF_ALLOC)
165 && strcmp(info->secstrings + shdr->sh_name, name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return i;
Rusty Russell49668682010-08-05 12:59:10 -0600167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return 0;
169}
170
Rusty Russell5e458cc2008-10-22 10:00:13 -0500171/* Find a module section, or NULL. */
Rusty Russell49668682010-08-05 12:59:10 -0600172static void *section_addr(const struct load_info *info, const char *name)
Rusty Russell5e458cc2008-10-22 10:00:13 -0500173{
174 /* Section 0 has sh_addr 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600175 return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500176}
177
178/* Find a module section, or NULL. Fill in number of "objects" in section. */
Rusty Russell49668682010-08-05 12:59:10 -0600179static void *section_objs(const struct load_info *info,
Rusty Russell5e458cc2008-10-22 10:00:13 -0500180 const char *name,
181 size_t object_size,
182 unsigned int *num)
183{
Rusty Russell49668682010-08-05 12:59:10 -0600184 unsigned int sec = find_sec(info, name);
Rusty Russell5e458cc2008-10-22 10:00:13 -0500185
186 /* Section 0 has sh_addr 0 and sh_size 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600187 *num = info->sechdrs[sec].sh_size / object_size;
188 return (void *)info->sechdrs[sec].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/* Provided by the linker */
192extern const struct kernel_symbol __start___ksymtab[];
193extern const struct kernel_symbol __stop___ksymtab[];
194extern const struct kernel_symbol __start___ksymtab_gpl[];
195extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800196extern const struct kernel_symbol __start___ksymtab_gpl_future[];
197extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198extern const unsigned long __start___kcrctab[];
199extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800200extern const unsigned long __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500201#ifdef CONFIG_UNUSED_SYMBOLS
202extern const struct kernel_symbol __start___ksymtab_unused[];
203extern const struct kernel_symbol __stop___ksymtab_unused[];
204extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
205extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700206extern const unsigned long __start___kcrctab_unused[];
207extern const unsigned long __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500208#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210#ifndef CONFIG_MODVERSIONS
211#define symversion(base, idx) NULL
212#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800213#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#endif
215
Rusty Russelldafd0942008-07-22 19:24:25 -0500216static bool each_symbol_in_section(const struct symsearch *arr,
217 unsigned int arrsize,
218 struct module *owner,
219 bool (*fn)(const struct symsearch *syms,
220 struct module *owner,
221 unsigned int symnum, void *data),
222 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100223{
Rusty Russelldafd0942008-07-22 19:24:25 -0500224 unsigned int i, j;
225
226 for (j = 0; j < arrsize; j++) {
227 for (i = 0; i < arr[j].stop - arr[j].start; i++)
228 if (fn(&arr[j], owner, i, data))
229 return true;
230 }
231
232 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100233}
234
Rusty Russelldafd0942008-07-22 19:24:25 -0500235/* Returns true as soon as fn returns true, otherwise false. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500236bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
237 unsigned int symnum, void *data), void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700238{
Rusty Russelldafd0942008-07-22 19:24:25 -0500239 struct module *mod;
Linus Torvalds44032e62010-08-05 12:59:05 -0600240 static const struct symsearch arr[] = {
Rusty Russelldafd0942008-07-22 19:24:25 -0500241 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
242 NOT_GPL_ONLY, false },
243 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
244 __start___kcrctab_gpl,
245 GPL_ONLY, false },
246 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
247 __start___kcrctab_gpl_future,
248 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500249#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500250 { __start___ksymtab_unused, __stop___ksymtab_unused,
251 __start___kcrctab_unused,
252 NOT_GPL_ONLY, true },
253 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
254 __start___kcrctab_unused_gpl,
255 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500256#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500257 };
258
259 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
260 return true;
261
Andi Kleend72b3752008-08-30 10:09:00 +0200262 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500263 struct symsearch arr[] = {
264 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
265 NOT_GPL_ONLY, false },
266 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
267 mod->gpl_crcs,
268 GPL_ONLY, false },
269 { mod->gpl_future_syms,
270 mod->gpl_future_syms + mod->num_gpl_future_syms,
271 mod->gpl_future_crcs,
272 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500273#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500274 { mod->unused_syms,
275 mod->unused_syms + mod->num_unused_syms,
276 mod->unused_crcs,
277 NOT_GPL_ONLY, true },
278 { mod->unused_gpl_syms,
279 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
280 mod->unused_gpl_crcs,
281 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500282#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500283 };
284
285 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
286 return true;
287 }
288 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700289}
Tim Abbottc6b37802008-12-05 19:03:59 -0500290EXPORT_SYMBOL_GPL(each_symbol);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700291
Rusty Russelldafd0942008-07-22 19:24:25 -0500292struct find_symbol_arg {
293 /* Input */
294 const char *name;
295 bool gplok;
296 bool warn;
297
298 /* Output */
299 struct module *owner;
300 const unsigned long *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500301 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500302};
303
304static bool find_symbol_in_section(const struct symsearch *syms,
305 struct module *owner,
306 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500307{
Rusty Russelldafd0942008-07-22 19:24:25 -0500308 struct find_symbol_arg *fsa = data;
309
310 if (strcmp(syms->start[symnum].name, fsa->name) != 0)
311 return false;
312
313 if (!fsa->gplok) {
314 if (syms->licence == GPL_ONLY)
315 return false;
316 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
317 printk(KERN_WARNING "Symbol %s is being used "
318 "by a non-GPL module, which will not "
319 "be allowed in the future\n", fsa->name);
320 printk(KERN_WARNING "Please see the file "
321 "Documentation/feature-removal-schedule.txt "
322 "in the kernel source tree for more details.\n");
323 }
324 }
325
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500326#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500327 if (syms->unused && fsa->warn) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500328 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
Rusty Russelldafd0942008-07-22 19:24:25 -0500329 "however this module is using it.\n", fsa->name);
Rusty Russellad9546c2008-05-01 21:14:59 -0500330 printk(KERN_WARNING
331 "This symbol will go away in the future.\n");
332 printk(KERN_WARNING
333 "Please evalute if this is the right api to use and if "
334 "it really is, submit a report the linux kernel "
335 "mailinglist together with submitting your code for "
336 "inclusion.\n");
337 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500338#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500339
340 fsa->owner = owner;
341 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500342 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500343 return true;
344}
345
Tim Abbott414fd312008-12-05 19:03:56 -0500346/* Find a symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600347 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500348const struct kernel_symbol *find_symbol(const char *name,
349 struct module **owner,
350 const unsigned long **crc,
351 bool gplok,
352 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Rusty Russelldafd0942008-07-22 19:24:25 -0500354 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Rusty Russelldafd0942008-07-22 19:24:25 -0500356 fsa.name = name;
357 fsa.gplok = gplok;
358 fsa.warn = warn;
359
360 if (each_symbol(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500361 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500362 *owner = fsa.owner;
363 if (crc)
364 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500365 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 DEBUGP("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500369 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
Tim Abbottc6b37802008-12-05 19:03:59 -0500371EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/* Search for module by name: must hold module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500374struct module *find_module(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 struct module *mod;
377
378 list_for_each_entry(mod, &modules, list) {
379 if (strcmp(mod->name, name) == 0)
380 return mod;
381 }
382 return NULL;
383}
Tim Abbottc6b37802008-12-05 19:03:59 -0500384EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900387
Tejun Heo259354d2010-03-10 18:56:10 +0900388static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900389{
Tejun Heo259354d2010-03-10 18:56:10 +0900390 return mod->percpu;
391}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900392
Tejun Heo259354d2010-03-10 18:56:10 +0900393static int percpu_modalloc(struct module *mod,
394 unsigned long size, unsigned long align)
395{
Tejun Heofbf59bc2009-02-20 16:29:08 +0900396 if (align > PAGE_SIZE) {
397 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
Tejun Heo259354d2010-03-10 18:56:10 +0900398 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900399 align = PAGE_SIZE;
400 }
401
Tejun Heo259354d2010-03-10 18:56:10 +0900402 mod->percpu = __alloc_reserved_percpu(size, align);
403 if (!mod->percpu) {
Tejun Heofbf59bc2009-02-20 16:29:08 +0900404 printk(KERN_WARNING
Rusty Russelld9131882010-08-05 12:59:08 -0600405 "%s: Could not allocate %lu bytes percpu data\n",
406 mod->name, size);
Tejun Heo259354d2010-03-10 18:56:10 +0900407 return -ENOMEM;
408 }
409 mod->percpu_size = size;
410 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900411}
412
Tejun Heo259354d2010-03-10 18:56:10 +0900413static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900414{
Tejun Heo259354d2010-03-10 18:56:10 +0900415 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900416}
417
Rusty Russell49668682010-08-05 12:59:10 -0600418static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900419{
Rusty Russell49668682010-08-05 12:59:10 -0600420 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900421}
422
Tejun Heo259354d2010-03-10 18:56:10 +0900423static void percpu_modcopy(struct module *mod,
424 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900425{
426 int cpu;
427
428 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900429 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900430}
431
Tejun Heo10fad5e2010-03-10 18:57:54 +0900432/**
433 * is_module_percpu_address - test whether address is from module static percpu
434 * @addr: address to test
435 *
436 * Test whether @addr belongs to module static percpu area.
437 *
438 * RETURNS:
439 * %true if @addr is from module static percpu area
440 */
441bool is_module_percpu_address(unsigned long addr)
442{
443 struct module *mod;
444 unsigned int cpu;
445
446 preempt_disable();
447
448 list_for_each_entry_rcu(mod, &modules, list) {
449 if (!mod->percpu_size)
450 continue;
451 for_each_possible_cpu(cpu) {
452 void *start = per_cpu_ptr(mod->percpu, cpu);
453
454 if ((void *)addr >= start &&
455 (void *)addr < start + mod->percpu_size) {
456 preempt_enable();
457 return true;
458 }
459 }
460 }
461
462 preempt_enable();
463 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700464}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900467
Tejun Heo259354d2010-03-10 18:56:10 +0900468static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 return NULL;
471}
Tejun Heo259354d2010-03-10 18:56:10 +0900472static inline int percpu_modalloc(struct module *mod,
473 unsigned long size, unsigned long align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Tejun Heo259354d2010-03-10 18:56:10 +0900475 return -ENOMEM;
476}
477static inline void percpu_modfree(struct module *mod)
478{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
Rusty Russell49668682010-08-05 12:59:10 -0600480static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 return 0;
483}
Tejun Heo259354d2010-03-10 18:56:10 +0900484static inline void percpu_modcopy(struct module *mod,
485 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 /* pcpusec should be 0, and size of that section should be 0. */
488 BUG_ON(size != 0);
489}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900490bool is_module_percpu_address(unsigned long addr)
491{
492 return false;
493}
Tejun Heo6b588c12009-02-20 16:29:07 +0900494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495#endif /* CONFIG_SMP */
496
Matt Domschc988d2b2005-06-23 22:05:15 -0700497#define MODINFO_ATTR(field) \
498static void setup_modinfo_##field(struct module *mod, const char *s) \
499{ \
500 mod->field = kstrdup(s, GFP_KERNEL); \
501} \
502static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
503 struct module *mod, char *buffer) \
504{ \
505 return sprintf(buffer, "%s\n", mod->field); \
506} \
507static int modinfo_##field##_exists(struct module *mod) \
508{ \
509 return mod->field != NULL; \
510} \
511static void free_modinfo_##field(struct module *mod) \
512{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700513 kfree(mod->field); \
514 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700515} \
516static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900517 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700518 .show = show_modinfo_##field, \
519 .setup = setup_modinfo_##field, \
520 .test = modinfo_##field##_exists, \
521 .free = free_modinfo_##field, \
522};
523
524MODINFO_ATTR(version);
525MODINFO_ATTR(srcversion);
526
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100527static char last_unloaded_module[MODULE_NAME_LEN+1];
528
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800529#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400530
531EXPORT_TRACEPOINT_SYMBOL(module_get);
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600534static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600536 mod->refptr = alloc_percpu(struct module_ref);
537 if (!mod->refptr)
538 return -ENOMEM;
539
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700540 INIT_LIST_HEAD(&mod->source_list);
541 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /* Hold reference count during initialization. */
Nick Piggin5fbfb182010-04-01 19:09:40 +1100544 __this_cpu_write(mod->refptr->incs, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* Backwards compatibility macros put refcount during init. */
546 mod->waiter = current;
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600547
548 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/* Does a already use b? */
552static int already_uses(struct module *a, struct module *b)
553{
554 struct module_use *use;
555
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700556 list_for_each_entry(use, &b->source_list, source_list) {
557 if (use->source == a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 DEBUGP("%s uses %s!\n", a->name, b->name);
559 return 1;
560 }
561 }
562 DEBUGP("%s does not use %s!\n", a->name, b->name);
563 return 0;
564}
565
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700566/*
567 * Module a uses b
568 * - we add 'a' as a "source", 'b' as a "target" of module use
569 * - the module_use is added to the list of 'b' sources (so
570 * 'b' can walk the list to see who sourced them), and of 'a'
571 * targets (so 'a' can see what modules it targets).
572 */
573static int add_module_usage(struct module *a, struct module *b)
574{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700575 struct module_use *use;
576
577 DEBUGP("Allocating new usage for %s.\n", a->name);
578 use = kmalloc(sizeof(*use), GFP_ATOMIC);
579 if (!use) {
580 printk(KERN_WARNING "%s: out of memory loading\n", a->name);
581 return -ENOMEM;
582 }
583
584 use->source = a;
585 use->target = b;
586 list_add(&use->source_list, &b->source_list);
587 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700588 return 0;
589}
590
Rusty Russell75676502010-06-05 11:17:36 -0600591/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600592int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600594 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100595
Rusty Russell9bea7f22010-06-05 11:17:37 -0600596 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700597 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700598
Rusty Russell9bea7f22010-06-05 11:17:37 -0600599 /* If module isn't available, we fail. */
600 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500601 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600602 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700604 err = add_module_usage(a, b);
605 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600607 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600609 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600611EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613/* Clear the unload stuff of the module. */
614static void module_unload_free(struct module *mod)
615{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700616 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Rusty Russell75676502010-06-05 11:17:36 -0600618 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700619 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
620 struct module *i = use->target;
621 DEBUGP("%s unusing %s\n", mod->name, i->name);
622 module_put(i);
623 list_del(&use->source_list);
624 list_del(&use->target_list);
625 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Rusty Russell75676502010-06-05 11:17:36 -0600627 mutex_unlock(&module_mutex);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600628
629 free_percpu(mod->refptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800633static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
635 int ret = (flags & O_TRUNC);
636 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800637 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return ret;
639}
640#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800641static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 return 0;
644}
645#endif /* CONFIG_MODULE_FORCE_UNLOAD */
646
647struct stopref
648{
649 struct module *mod;
650 int flags;
651 int *forced;
652};
653
654/* Whole machine is stopped with interrupts off when this runs. */
655static int __try_stop_module(void *_sref)
656{
657 struct stopref *sref = _sref;
658
Rusty Russellda39ba52008-07-22 19:24:25 -0500659 /* If it's not unused, quit unless we're forcing. */
660 if (module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800661 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return -EWOULDBLOCK;
663 }
664
665 /* Mark it as dying. */
666 sref->mod->state = MODULE_STATE_GOING;
667 return 0;
668}
669
670static int try_stop_module(struct module *mod, int flags, int *forced)
671{
Rusty Russellda39ba52008-07-22 19:24:25 -0500672 if (flags & O_NONBLOCK) {
673 struct stopref sref = { mod, flags, forced };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500675 return stop_machine(__try_stop_module, &sref, NULL);
Rusty Russellda39ba52008-07-22 19:24:25 -0500676 } else {
677 /* We don't need to stop the machine for this. */
678 mod->state = MODULE_STATE_GOING;
679 synchronize_sched();
680 return 0;
681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684unsigned int module_refcount(struct module *mod)
685{
Nick Piggin5fbfb182010-04-01 19:09:40 +1100686 unsigned int incs = 0, decs = 0;
Eric Dumazet720eba32009-02-03 13:31:36 +1030687 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Eric Dumazet720eba32009-02-03 13:31:36 +1030689 for_each_possible_cpu(cpu)
Nick Piggin5fbfb182010-04-01 19:09:40 +1100690 decs += per_cpu_ptr(mod->refptr, cpu)->decs;
691 /*
692 * ensure the incs are added up after the decs.
693 * module_put ensures incs are visible before decs with smp_wmb.
694 *
695 * This 2-count scheme avoids the situation where the refcount
696 * for CPU0 is read, then CPU0 increments the module refcount,
697 * then CPU1 drops that refcount, then the refcount for CPU1 is
698 * read. We would record a decrement but not its corresponding
699 * increment so we would see a low count (disaster).
700 *
701 * Rare situation? But module_refcount can be preempted, and we
702 * might be tallying up 4096+ CPUs. So it is not impossible.
703 */
704 smp_rmb();
705 for_each_possible_cpu(cpu)
706 incs += per_cpu_ptr(mod->refptr, cpu)->incs;
707 return incs - decs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709EXPORT_SYMBOL(module_refcount);
710
711/* This exists whether we can unload or not */
712static void free_module(struct module *mod);
713
714static void wait_for_zero_refcount(struct module *mod)
715{
Matthew Wilcoxa6550202008-02-26 10:47:18 -0500716 /* Since we might sleep for some time, release the mutex first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800717 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 for (;;) {
719 DEBUGP("Looking at refcount...\n");
720 set_current_state(TASK_UNINTERRUPTIBLE);
721 if (module_refcount(mod) == 0)
722 break;
723 schedule();
724 }
725 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800726 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100729SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
730 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800733 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 int ret, forced = 0;
735
Kees Cook3d433212009-04-02 15:49:29 -0700736 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800737 return -EPERM;
738
739 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
740 return -EFAULT;
741 name[MODULE_NAME_LEN-1] = '\0';
742
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200743 if (mutex_lock_interruptible(&module_mutex) != 0)
744 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 mod = find_module(name);
747 if (!mod) {
748 ret = -ENOENT;
749 goto out;
750 }
751
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700752 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /* Other modules depend on us: get rid of them first. */
754 ret = -EWOULDBLOCK;
755 goto out;
756 }
757
758 /* Doing init or already dying? */
759 if (mod->state != MODULE_STATE_LIVE) {
760 /* FIXME: if (force), slam module count and wake up
761 waiter --RR */
762 DEBUGP("%s already dying\n", mod->name);
763 ret = -EBUSY;
764 goto out;
765 }
766
767 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700768 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800769 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!forced) {
771 /* This module can't be removed */
772 ret = -EBUSY;
773 goto out;
774 }
775 }
776
777 /* Set this up before setting mod->state */
778 mod->waiter = current;
779
780 /* Stop the machine so refcounts can't move and disable module. */
781 ret = try_stop_module(mod, flags, &forced);
782 if (ret != 0)
783 goto out;
784
785 /* Never wait if forced. */
786 if (!forced && module_refcount(mod) != 0)
787 wait_for_zero_refcount(mod);
788
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200789 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* Final destruction now noone is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200791 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200793 blocking_notifier_call_chain(&module_notify_list,
794 MODULE_STATE_GOING, mod);
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800795 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600796
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100797 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500798 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Rusty Russell75676502010-06-05 11:17:36 -0600800 free_module(mod);
801 return 0;
802out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800803 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return ret;
805}
806
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800807static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
809 struct module_use *use;
810 int printed_something = 0;
811
812 seq_printf(m, " %u ", module_refcount(mod));
813
814 /* Always include a trailing , so userspace can differentiate
815 between this and the old multi-field proc format. */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700816 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700818 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (mod->init != NULL && mod->exit == NULL) {
822 printed_something = 1;
823 seq_printf(m, "[permanent],");
824 }
825
826 if (!printed_something)
827 seq_printf(m, "-");
828}
829
830void __symbol_put(const char *symbol)
831{
832 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Rusty Russell24da1cb2007-07-15 23:41:46 -0700834 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -0500835 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 BUG();
837 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700838 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840EXPORT_SYMBOL(__symbol_put);
841
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930842/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843void symbol_put_addr(void *addr)
844{
Trent Piepho5e376612006-05-15 09:44:06 -0700845 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930846 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930848 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -0700849 return;
850
Rusty Russella6e6abd2009-03-31 13:05:31 -0600851 /* module_text_address is safe here: we're supposed to have reference
852 * to module from symbol_get, so it can't go away. */
Rusty Russell7d1d16e2009-08-26 22:02:54 +0930853 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -0600854 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -0700855 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857EXPORT_SYMBOL_GPL(symbol_put_addr);
858
859static ssize_t show_refcnt(struct module_attribute *mattr,
860 struct module *mod, char *buffer)
861{
Alexey Dobriyan256e2fd2007-08-06 23:47:45 +0400862 return sprintf(buffer, "%u\n", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
865static struct module_attribute refcnt = {
Tejun Heo7b595752007-06-14 03:45:17 +0900866 .attr = { .name = "refcnt", .mode = 0444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 .show = show_refcnt,
868};
869
Al Virof6a57032006-10-18 01:47:25 -0400870void module_put(struct module *module)
871{
872 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900873 preempt_disable();
Nick Piggin5fbfb182010-04-01 19:09:40 +1100874 smp_wmb(); /* see comment in module_refcount */
875 __this_cpu_inc(module->refptr->decs);
Christoph Lametere1783a22010-01-05 15:34:50 +0900876
Li Zefanae832d12010-03-24 10:57:43 +0800877 trace_module_put(module, _RET_IP_);
Al Virof6a57032006-10-18 01:47:25 -0400878 /* Maybe they're waiting for us to drop reference? */
879 if (unlikely(!module_is_live(module)))
880 wake_up_process(module->waiter);
Christoph Lametere1783a22010-01-05 15:34:50 +0900881 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -0400882 }
883}
884EXPORT_SYMBOL(module_put);
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800887static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 /* We don't know the usage count, or what modules are using. */
890 seq_printf(m, " - -");
891}
892
893static inline void module_unload_free(struct module *mod)
894{
895}
896
Rusty Russell9bea7f22010-06-05 11:17:37 -0600897int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Rusty Russell9bea7f22010-06-05 11:17:37 -0600899 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600901EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600903static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600905 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907#endif /* CONFIG_MODULE_UNLOAD */
908
Kay Sievers1f717402006-11-24 12:15:25 +0100909static ssize_t show_initstate(struct module_attribute *mattr,
910 struct module *mod, char *buffer)
911{
912 const char *state = "unknown";
913
914 switch (mod->state) {
915 case MODULE_STATE_LIVE:
916 state = "live";
917 break;
918 case MODULE_STATE_COMING:
919 state = "coming";
920 break;
921 case MODULE_STATE_GOING:
922 state = "going";
923 break;
924 }
925 return sprintf(buffer, "%s\n", state);
926}
927
928static struct module_attribute initstate = {
Tejun Heo7b595752007-06-14 03:45:17 +0900929 .attr = { .name = "initstate", .mode = 0444 },
Kay Sievers1f717402006-11-24 12:15:25 +0100930 .show = show_initstate,
931};
932
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800933static struct module_attribute *modinfo_attrs[] = {
934 &modinfo_version,
935 &modinfo_srcversion,
Kay Sievers1f717402006-11-24 12:15:25 +0100936 &initstate,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800937#ifdef CONFIG_MODULE_UNLOAD
938 &refcnt,
939#endif
940 NULL,
941};
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943static const char vermagic[] = VERMAGIC_STRING;
944
Rusty Russellc6e665c2009-03-31 13:05:33 -0600945static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -0700946{
947#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -0700948 if (!test_taint(TAINT_FORCED_MODULE))
Rusty Russellc6e665c2009-03-31 13:05:33 -0600949 printk(KERN_WARNING "%s: %s: kernel tainted.\n",
950 mod->name, reason);
Linus Torvalds826e4502008-05-04 17:04:16 -0700951 add_taint_module(mod, TAINT_FORCED_MODULE);
952 return 0;
953#else
954 return -ENOEXEC;
955#endif
956}
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958#ifdef CONFIG_MODVERSIONS
Rusty Russelld4703ae2009-12-15 16:28:32 -0600959/* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
960static unsigned long maybe_relocated(unsigned long crc,
961 const struct module *crc_owner)
962{
963#ifdef ARCH_RELOCATES_KCRCTAB
964 if (crc_owner == NULL)
965 return crc - (unsigned long)reloc_start;
966#endif
967 return crc;
968}
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970static int check_version(Elf_Shdr *sechdrs,
971 unsigned int versindex,
972 const char *symname,
973 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -0600974 const unsigned long *crc,
975 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 unsigned int i, num_versions;
978 struct modversion_info *versions;
979
980 /* Exporting module didn't supply crcs? OK, we're already tainted. */
981 if (!crc)
982 return 1;
983
Rusty Russella5dd6972008-05-09 16:24:21 +1000984 /* No versions at all? modprobe --force does this. */
985 if (versindex == 0)
986 return try_to_force_load(mod, symname) == 0;
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 versions = (void *) sechdrs[versindex].sh_addr;
989 num_versions = sechdrs[versindex].sh_size
990 / sizeof(struct modversion_info);
991
992 for (i = 0; i < num_versions; i++) {
993 if (strcmp(versions[i].name, symname) != 0)
994 continue;
995
Rusty Russelld4703ae2009-12-15 16:28:32 -0600996 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 DEBUGP("Found checksum %lX vs module %lX\n",
Rusty Russelld4703ae2009-12-15 16:28:32 -0600999 maybe_relocated(*crc, crc_owner), versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001000 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001002
Rusty Russella5dd6972008-05-09 16:24:21 +10001003 printk(KERN_WARNING "%s: no symbol version for %s\n",
1004 mod->name, symname);
1005 return 0;
Linus Torvalds826e4502008-05-04 17:04:16 -07001006
1007bad_version:
1008 printk("%s: disagrees about version of symbol %s\n",
1009 mod->name, symname);
1010 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
1013static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1014 unsigned int versindex,
1015 struct module *mod)
1016{
1017 const unsigned long *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Rusty Russell75676502010-06-05 11:17:36 -06001019 /* Since this should be found in kernel (which can't be removed),
1020 * no locking is necessary. */
Mike Frysinger6560dc12009-07-23 23:42:08 +09301021 if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL,
1022 &crc, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 BUG();
Rusty Russelld4703ae2009-12-15 16:28:32 -06001024 return check_version(sechdrs, versindex, "module_layout", mod, crc,
1025 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Rusty Russell91e37a72008-05-09 16:25:28 +10001028/* First part is kernel version, which we ignore if module has crcs. */
1029static inline int same_magic(const char *amagic, const char *bmagic,
1030 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Rusty Russell91e37a72008-05-09 16:25:28 +10001032 if (has_crcs) {
1033 amagic += strcspn(amagic, " ");
1034 bmagic += strcspn(bmagic, " ");
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return strcmp(amagic, bmagic) == 0;
1037}
1038#else
1039static inline int check_version(Elf_Shdr *sechdrs,
1040 unsigned int versindex,
1041 const char *symname,
1042 struct module *mod,
Rusty Russelld4703ae2009-12-15 16:28:32 -06001043 const unsigned long *crc,
1044 const struct module *crc_owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 return 1;
1047}
1048
1049static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1050 unsigned int versindex,
1051 struct module *mod)
1052{
1053 return 1;
1054}
1055
Rusty Russell91e37a72008-05-09 16:25:28 +10001056static inline int same_magic(const char *amagic, const char *bmagic,
1057 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 return strcmp(amagic, bmagic) == 0;
1060}
1061#endif /* CONFIG_MODVERSIONS */
1062
Rusty Russell75676502010-06-05 11:17:36 -06001063/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001064static const struct kernel_symbol *resolve_symbol(struct module *mod,
1065 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001066 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001067 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001070 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 const unsigned long *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001072 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Rusty Russell75676502010-06-05 11:17:36 -06001074 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001075 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001076 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001077 if (!sym)
1078 goto unlock;
1079
Rusty Russell49668682010-08-05 12:59:10 -06001080 if (!check_version(info->sechdrs, info->index.vers, name, mod, crc,
1081 owner)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001082 sym = ERR_PTR(-EINVAL);
1083 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001085
1086 err = ref_module(mod, owner);
1087 if (err) {
1088 sym = ERR_PTR(err);
1089 goto getname;
1090 }
1091
1092getname:
1093 /* We must make copy under the lock if we failed to get ref. */
1094 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1095unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001096 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001097 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
Rusty Russell49668682010-08-05 12:59:10 -06001100static const struct kernel_symbol *
1101resolve_symbol_wait(struct module *mod,
1102 const struct load_info *info,
1103 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001104{
1105 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001106 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001107
1108 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001109 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1110 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001111 30 * HZ) <= 0) {
1112 printk(KERN_WARNING "%s: gave up waiting for init of module %s.\n",
Rusty Russell49668682010-08-05 12:59:10 -06001113 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001114 }
1115 return ksym;
1116}
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118/*
1119 * /sys/module/foo/sections stuff
1120 * J. Corbet <corbet@lwn.net>
1121 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001122#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001123
Rusty Russell8f6d0372010-08-05 12:59:09 -06001124#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001125static inline bool sect_empty(const Elf_Shdr *sect)
1126{
1127 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1128}
1129
Rusty Russella58730c2008-03-13 09:03:44 +00001130struct module_sect_attr
1131{
1132 struct module_attribute mattr;
1133 char *name;
1134 unsigned long address;
1135};
1136
1137struct module_sect_attrs
1138{
1139 struct attribute_group grp;
1140 unsigned int nsections;
1141 struct module_sect_attr attrs[0];
1142};
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144static ssize_t module_sect_show(struct module_attribute *mattr,
1145 struct module *mod, char *buf)
1146{
1147 struct module_sect_attr *sattr =
1148 container_of(mattr, struct module_sect_attr, mattr);
1149 return sprintf(buf, "0x%lx\n", sattr->address);
1150}
1151
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001152static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1153{
Rusty Russella58730c2008-03-13 09:03:44 +00001154 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001155
1156 for (section = 0; section < sect_attrs->nsections; section++)
1157 kfree(sect_attrs->attrs[section].name);
1158 kfree(sect_attrs);
1159}
1160
Rusty Russell8f6d0372010-08-05 12:59:09 -06001161static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
1163 unsigned int nloaded = 0, i, size[2];
1164 struct module_sect_attrs *sect_attrs;
1165 struct module_sect_attr *sattr;
1166 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001169 for (i = 0; i < info->hdr->e_shnum; i++)
1170 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 nloaded++;
1172 size[0] = ALIGN(sizeof(*sect_attrs)
1173 + nloaded * sizeof(sect_attrs->attrs[0]),
1174 sizeof(sect_attrs->grp.attrs[0]));
1175 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001176 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1177 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return;
1179
1180 /* Setup section attributes. */
1181 sect_attrs->grp.name = "sections";
1182 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1183
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001184 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 sattr = &sect_attrs->attrs[0];
1186 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001187 for (i = 0; i < info->hdr->e_shnum; i++) {
1188 Elf_Shdr *sec = &info->sechdrs[i];
1189 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001190 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001191 sattr->address = sec->sh_addr;
1192 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001193 GFP_KERNEL);
1194 if (sattr->name == NULL)
1195 goto out;
1196 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001197 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 sattr->mattr.show = module_sect_show;
1199 sattr->mattr.store = NULL;
1200 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 sattr->mattr.attr.mode = S_IRUGO;
1202 *(gattr++) = &(sattr++)->mattr.attr;
1203 }
1204 *gattr = NULL;
1205
1206 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1207 goto out;
1208
1209 mod->sect_attrs = sect_attrs;
1210 return;
1211 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001212 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
1215static void remove_sect_attrs(struct module *mod)
1216{
1217 if (mod->sect_attrs) {
1218 sysfs_remove_group(&mod->mkobj.kobj,
1219 &mod->sect_attrs->grp);
1220 /* We are positive that no one is using any sect attrs
1221 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001222 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 mod->sect_attrs = NULL;
1224 }
1225}
1226
Roland McGrath6d760132007-10-16 23:26:40 -07001227/*
1228 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1229 */
1230
1231struct module_notes_attrs {
1232 struct kobject *dir;
1233 unsigned int notes;
1234 struct bin_attribute attrs[0];
1235};
1236
Chris Wright2c3c8be2010-05-12 18:28:57 -07001237static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001238 struct bin_attribute *bin_attr,
1239 char *buf, loff_t pos, size_t count)
1240{
1241 /*
1242 * The caller checked the pos and count against our size.
1243 */
1244 memcpy(buf, bin_attr->private + pos, count);
1245 return count;
1246}
1247
1248static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1249 unsigned int i)
1250{
1251 if (notes_attrs->dir) {
1252 while (i-- > 0)
1253 sysfs_remove_bin_file(notes_attrs->dir,
1254 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001255 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001256 }
1257 kfree(notes_attrs);
1258}
1259
Rusty Russell8f6d0372010-08-05 12:59:09 -06001260static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001261{
1262 unsigned int notes, loaded, i;
1263 struct module_notes_attrs *notes_attrs;
1264 struct bin_attribute *nattr;
1265
Ingo Molnarea6bff32009-08-28 10:44:56 +02001266 /* failed to create section attributes, so can't create notes */
1267 if (!mod->sect_attrs)
1268 return;
1269
Roland McGrath6d760132007-10-16 23:26:40 -07001270 /* Count notes sections and allocate structures. */
1271 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001272 for (i = 0; i < info->hdr->e_shnum; i++)
1273 if (!sect_empty(&info->sechdrs[i]) &&
1274 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001275 ++notes;
1276
1277 if (notes == 0)
1278 return;
1279
1280 notes_attrs = kzalloc(sizeof(*notes_attrs)
1281 + notes * sizeof(notes_attrs->attrs[0]),
1282 GFP_KERNEL);
1283 if (notes_attrs == NULL)
1284 return;
1285
1286 notes_attrs->notes = notes;
1287 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001288 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1289 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001290 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001291 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001292 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001293 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1294 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001295 nattr->size = info->sechdrs[i].sh_size;
1296 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001297 nattr->read = module_notes_read;
1298 ++nattr;
1299 }
1300 ++loaded;
1301 }
1302
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001303 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001304 if (!notes_attrs->dir)
1305 goto out;
1306
1307 for (i = 0; i < notes; ++i)
1308 if (sysfs_create_bin_file(notes_attrs->dir,
1309 &notes_attrs->attrs[i]))
1310 goto out;
1311
1312 mod->notes_attrs = notes_attrs;
1313 return;
1314
1315 out:
1316 free_notes_attrs(notes_attrs, i);
1317}
1318
1319static void remove_notes_attrs(struct module *mod)
1320{
1321 if (mod->notes_attrs)
1322 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1323}
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001326
Rusty Russell8f6d0372010-08-05 12:59:09 -06001327static inline void add_sect_attrs(struct module *mod,
1328 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330}
1331
1332static inline void remove_sect_attrs(struct module *mod)
1333{
1334}
Roland McGrath6d760132007-10-16 23:26:40 -07001335
Rusty Russell8f6d0372010-08-05 12:59:09 -06001336static inline void add_notes_attrs(struct module *mod,
1337 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001338{
1339}
1340
1341static inline void remove_notes_attrs(struct module *mod)
1342{
1343}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001344#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001346static void add_usage_links(struct module *mod)
1347{
1348#ifdef CONFIG_MODULE_UNLOAD
1349 struct module_use *use;
1350 int nowarn;
1351
Rusty Russell75676502010-06-05 11:17:36 -06001352 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001353 list_for_each_entry(use, &mod->target_list, target_list) {
1354 nowarn = sysfs_create_link(use->target->holders_dir,
1355 &mod->mkobj.kobj, mod->name);
1356 }
Rusty Russell75676502010-06-05 11:17:36 -06001357 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001358#endif
1359}
1360
1361static void del_usage_links(struct module *mod)
1362{
1363#ifdef CONFIG_MODULE_UNLOAD
1364 struct module_use *use;
1365
Rusty Russell75676502010-06-05 11:17:36 -06001366 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001367 list_for_each_entry(use, &mod->target_list, target_list)
1368 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001369 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001370#endif
1371}
1372
Rusty Russell6407ebb22010-06-05 11:17:36 -06001373static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001374{
1375 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001376 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001377 int error = 0;
1378 int i;
1379
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001380 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1381 (ARRAY_SIZE(modinfo_attrs) + 1)),
1382 GFP_KERNEL);
1383 if (!mod->modinfo_attrs)
1384 return -ENOMEM;
1385
1386 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001387 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1388 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001389 (attr->test && attr->test(mod))) {
1390 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001391 sysfs_attr_init(&temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001392 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1393 ++temp_attr;
1394 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001395 }
1396 return error;
1397}
1398
Rusty Russell6407ebb22010-06-05 11:17:36 -06001399static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001400{
1401 struct module_attribute *attr;
1402 int i;
1403
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001404 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1405 /* pick a field to test for end of list */
1406 if (!attr->attr.name)
1407 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001408 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001409 if (attr->free)
1410 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001411 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001412 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001413}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Rusty Russell6407ebb22010-06-05 11:17:36 -06001415static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
1417 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001418 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001420 if (!module_sysfs_initialized) {
1421 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001422 mod->name);
1423 err = -EINVAL;
1424 goto out;
1425 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001426
1427 kobj = kset_find_obj(module_kset, mod->name);
1428 if (kobj) {
1429 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1430 kobject_put(kobj);
1431 err = -EINVAL;
1432 goto out;
1433 }
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001436
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001437 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1438 mod->mkobj.kobj.kset = module_kset;
1439 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1440 "%s", mod->name);
1441 if (err)
1442 kobject_put(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001443
Kay Sievers97c146e2007-11-29 23:46:11 +01001444 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001445out:
1446 return err;
1447}
1448
Rusty Russell6407ebb22010-06-05 11:17:36 -06001449static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001450 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001451 struct kernel_param *kparam,
1452 unsigned int num_params)
1453{
1454 int err;
1455
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001456 err = mod_sysfs_init(mod);
1457 if (err)
1458 goto out;
1459
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001460 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001461 if (!mod->holders_dir) {
1462 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001463 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001464 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 err = module_param_sysfs_setup(mod, kparam, num_params);
1467 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001468 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Matt Domschc988d2b2005-06-23 22:05:15 -07001470 err = module_add_modinfo_attrs(mod);
1471 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001472 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001473
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001474 add_usage_links(mod);
Rusty Russell8f6d0372010-08-05 12:59:09 -06001475 add_sect_attrs(mod, info);
1476 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001477
Kay Sieverse17e0f52006-11-24 12:15:25 +01001478 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return 0;
1480
Kay Sieverse17e0f52006-11-24 12:15:25 +01001481out_unreg_param:
1482 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001483out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001484 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001485out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001486 kobject_put(&mod->mkobj.kobj);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001487out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return err;
1489}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001490
1491static void mod_sysfs_fini(struct module *mod)
1492{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001493 remove_notes_attrs(mod);
1494 remove_sect_attrs(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001495 kobject_put(&mod->mkobj.kobj);
1496}
1497
Rusty Russell8f6d0372010-08-05 12:59:09 -06001498#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001499
Rusty Russell8f6d0372010-08-05 12:59:09 -06001500static int mod_sysfs_setup(struct module *mod,
1501 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001502 struct kernel_param *kparam,
1503 unsigned int num_params)
1504{
1505 return 0;
1506}
1507
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001508static void mod_sysfs_fini(struct module *mod)
1509{
1510}
1511
Rusty Russell36b03602010-08-05 12:59:09 -06001512static void module_remove_modinfo_attrs(struct module *mod)
1513{
1514}
1515
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001516static void del_usage_links(struct module *mod)
1517{
1518}
1519
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001520#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Rusty Russell36b03602010-08-05 12:59:09 -06001522static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001524 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001525 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001527 kobject_put(mod->mkobj.drivers_dir);
1528 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001529 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
1532/*
1533 * unlink the module with the whole machine is stopped with interrupts off
1534 * - this defends against kallsyms not taking locks
1535 */
1536static int __unlink_module(void *_mod)
1537{
1538 struct module *mod = _mod;
1539 list_del(&mod->list);
Linus Torvalds53363772010-10-05 11:29:27 -07001540 module_bug_cleanup(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return 0;
1542}
1543
Rusty Russell75676502010-06-05 11:17:36 -06001544/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545static void free_module(struct module *mod)
1546{
Li Zefan7ead8b82009-08-17 16:56:28 +08001547 trace_module_free(mod);
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /* Delete from various lists */
Rusty Russell75676502010-06-05 11:17:36 -06001550 mutex_lock(&module_mutex);
Rusty Russell9b1a4d32008-07-28 12:16:30 -05001551 stop_machine(__unlink_module, mod, NULL);
Rusty Russell75676502010-06-05 11:17:36 -06001552 mutex_unlock(&module_mutex);
Rusty Russell36b03602010-08-05 12:59:09 -06001553 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Jason Baronb82bab4b2010-07-27 13:18:01 -07001555 /* Remove dynamic debug info */
1556 ddebug_remove_module(mod->name);
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /* Arch-specific cleanup. */
1559 module_arch_cleanup(mod);
1560
1561 /* Module unload stuff */
1562 module_unload_free(mod);
1563
Rusty Russelle180a6b2009-03-31 13:05:29 -06001564 /* Free any allocated parameters. */
1565 destroy_params(mod->kp, mod->num_kp);
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 /* This may be NULL, but that's OK */
1568 module_free(mod, mod->module_init);
1569 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09001570 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001571
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001572 /* Free lock-classes: */
1573 lockdep_free_key_range(mod->module_core, mod->core_size);
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 /* Finally, free the core (containing the module structure) */
1576 module_free(mod, mod->module_core);
Bernd Schmidteb8cdec2009-09-21 17:03:57 -07001577
1578#ifdef CONFIG_MPU
1579 update_protections(current->mm);
1580#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583void *__symbol_get(const char *symbol)
1584{
1585 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001586 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Rusty Russell24da1cb2007-07-15 23:41:46 -07001588 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001589 sym = find_symbol(symbol, &owner, NULL, true, true);
1590 if (sym && strong_try_module_get(owner))
1591 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001592 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Tim Abbott414fd312008-12-05 19:03:56 -05001594 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596EXPORT_SYMBOL_GPL(__symbol_get);
1597
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001598/*
1599 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001600 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06001601 *
1602 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001603 */
1604static int verify_export_symbols(struct module *mod)
1605{
Rusty Russellb2111042008-05-01 21:15:00 -05001606 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001607 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05001608 const struct kernel_symbol *s;
1609 struct {
1610 const struct kernel_symbol *sym;
1611 unsigned int num;
1612 } arr[] = {
1613 { mod->syms, mod->num_syms },
1614 { mod->gpl_syms, mod->num_gpl_syms },
1615 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001616#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05001617 { mod->unused_syms, mod->num_unused_syms },
1618 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05001619#endif
Rusty Russellb2111042008-05-01 21:15:00 -05001620 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001621
Rusty Russellb2111042008-05-01 21:15:00 -05001622 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1623 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06001624 if (find_symbol(s->name, &owner, NULL, true, false)) {
Rusty Russellb2111042008-05-01 21:15:00 -05001625 printk(KERN_ERR
1626 "%s: exports duplicate symbol %s"
1627 " (owned by %s)\n",
1628 mod->name, s->name, module_name(owner));
1629 return -ENOEXEC;
1630 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001631 }
Rusty Russellb2111042008-05-01 21:15:00 -05001632 }
1633 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001634}
1635
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001636/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06001637static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Rusty Russell49668682010-08-05 12:59:10 -06001639 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
1640 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06001642 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05001644 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Rusty Russell49668682010-08-05 12:59:10 -06001646 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
1647 const char *name = info->strtab + sym[i].st_name;
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 switch (sym[i].st_shndx) {
1650 case SHN_COMMON:
1651 /* We compiled with -fno-common. These are not
1652 supposed to happen. */
Rusty Russell49668682010-08-05 12:59:10 -06001653 DEBUGP("Common symbol: %s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 printk("%s: please compile with -fno-common\n",
1655 mod->name);
1656 ret = -ENOEXEC;
1657 break;
1658
1659 case SHN_ABS:
1660 /* Don't need to do anything */
1661 DEBUGP("Absolute symbol: 0x%08lx\n",
1662 (long)sym[i].st_value);
1663 break;
1664
1665 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06001666 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001668 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05001669 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 break;
Tim Abbott414fd312008-12-05 19:03:56 -05001671 }
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06001674 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 break;
1676
Rusty Russell9bea7f22010-06-05 11:17:37 -06001677 printk(KERN_WARNING "%s: Unknown symbol %s (err %li)\n",
Rusty Russell49668682010-08-05 12:59:10 -06001678 mod->name, name, PTR_ERR(ksym));
Rusty Russell9bea7f22010-06-05 11:17:37 -06001679 ret = PTR_ERR(ksym) ?: -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 break;
1681
1682 default:
1683 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06001684 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09001685 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 else
Rusty Russell49668682010-08-05 12:59:10 -06001687 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 sym[i].st_value += secbase;
1689 break;
1690 }
1691 }
1692
1693 return ret;
1694}
1695
Rusty Russell49668682010-08-05 12:59:10 -06001696static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06001697{
1698 unsigned int i;
1699 int err = 0;
1700
1701 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06001702 for (i = 1; i < info->hdr->e_shnum; i++) {
1703 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06001704
1705 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06001706 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06001707 continue;
1708
1709 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06001710 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06001711 continue;
1712
Rusty Russell49668682010-08-05 12:59:10 -06001713 if (info->sechdrs[i].sh_type == SHT_REL)
1714 err = apply_relocate(info->sechdrs, info->strtab,
1715 info->index.sym, i, mod);
1716 else if (info->sechdrs[i].sh_type == SHT_RELA)
1717 err = apply_relocate_add(info->sechdrs, info->strtab,
1718 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06001719 if (err < 0)
1720 break;
1721 }
1722 return err;
1723}
1724
Helge Deller088af9a2008-12-31 12:31:18 +01001725/* Additional bytes needed by arch in front of individual sections */
1726unsigned int __weak arch_mod_section_prepend(struct module *mod,
1727 unsigned int section)
1728{
1729 /* default implementation just returns zero */
1730 return 0;
1731}
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01001734static long get_offset(struct module *mod, unsigned int *size,
1735 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
1737 long ret;
1738
Helge Deller088af9a2008-12-31 12:31:18 +01001739 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1741 *size = ret + sechdr->sh_size;
1742 return ret;
1743}
1744
1745/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1746 might -- code, read-only data, read-write data, small data. Tally
1747 sizes, and place the offsets into sh_entsize fields: high bit means it
1748 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06001749static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
1751 static unsigned long const masks[][2] = {
1752 /* NOTE: all executable code must be the first section
1753 * in this array; otherwise modify the text_size
1754 * finder in the two loops below */
1755 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1756 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1757 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1758 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1759 };
1760 unsigned int m, i;
1761
Rusty Russell49668682010-08-05 12:59:10 -06001762 for (i = 0; i < info->hdr->e_shnum; i++)
1763 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 DEBUGP("Core section allocation order:\n");
1766 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06001767 for (i = 0; i < info->hdr->e_shnum; ++i) {
1768 Elf_Shdr *s = &info->sechdrs[i];
1769 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1772 || (s->sh_flags & masks[m][1])
1773 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06001774 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01001776 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
Rusty Russell49668682010-08-05 12:59:10 -06001777 DEBUGP("\t%s\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
1779 if (m == 0)
1780 mod->core_text_size = mod->core_size;
1781 }
1782
1783 DEBUGP("Init section allocation order:\n");
1784 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06001785 for (i = 0; i < info->hdr->e_shnum; ++i) {
1786 Elf_Shdr *s = &info->sechdrs[i];
1787 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1790 || (s->sh_flags & masks[m][1])
1791 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06001792 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 continue;
Helge Deller088af9a2008-12-31 12:31:18 +01001794 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 | INIT_OFFSET_MASK);
Rusty Russell49668682010-08-05 12:59:10 -06001796 DEBUGP("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798 if (m == 0)
1799 mod->init_text_size = mod->init_size;
1800 }
1801}
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803static void set_license(struct module *mod, const char *license)
1804{
1805 if (!license)
1806 license = "unspecified";
1807
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001808 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07001809 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07001810 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001811 "kernel.\n", mod->name, license);
1812 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814}
1815
1816/* Parse tag=value strings from .modinfo section */
1817static char *next_string(char *string, unsigned long *secsize)
1818{
1819 /* Skip non-zero chars */
1820 while (string[0]) {
1821 string++;
1822 if ((*secsize)-- <= 1)
1823 return NULL;
1824 }
1825
1826 /* Skip any zero padding. */
1827 while (!string[0]) {
1828 string++;
1829 if ((*secsize)-- <= 1)
1830 return NULL;
1831 }
1832 return string;
1833}
1834
Rusty Russell49668682010-08-05 12:59:10 -06001835static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
1837 char *p;
1838 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06001839 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
1840 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Rusty Russell49668682010-08-05 12:59:10 -06001842 for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1844 return p + taglen + 1;
1845 }
1846 return NULL;
1847}
1848
Rusty Russell49668682010-08-05 12:59:10 -06001849static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07001850{
1851 struct module_attribute *attr;
1852 int i;
1853
1854 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1855 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06001856 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07001857 }
1858}
Matt Domschc988d2b2005-06-23 22:05:15 -07001859
Rusty Russella263f772009-09-25 00:32:58 -06001860static void free_modinfo(struct module *mod)
1861{
1862 struct module_attribute *attr;
1863 int i;
1864
1865 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1866 if (attr->free)
1867 attr->free(mod);
1868 }
1869}
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01001872
1873/* lookup symbol in given range of kernel_symbols */
1874static const struct kernel_symbol *lookup_symbol(const char *name,
1875 const struct kernel_symbol *start,
1876 const struct kernel_symbol *stop)
1877{
1878 const struct kernel_symbol *ks = start;
1879 for (; ks < stop; ks++)
1880 if (strcmp(ks->name, name) == 0)
1881 return ks;
1882 return NULL;
1883}
1884
Tim Abbottca4787b2009-01-05 08:40:10 -06001885static int is_exported(const char *name, unsigned long value,
1886 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Tim Abbottca4787b2009-01-05 08:40:10 -06001888 const struct kernel_symbol *ks;
1889 if (!mod)
1890 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001891 else
Tim Abbottca4787b2009-01-05 08:40:10 -06001892 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
1893 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
1895
1896/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06001897static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Rusty Russelleded41c2010-08-05 12:59:07 -06001899 const Elf_Shdr *sechdrs = info->sechdrs;
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1902 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1903 return 'v';
1904 else
1905 return 'w';
1906 }
1907 if (sym->st_shndx == SHN_UNDEF)
1908 return 'U';
1909 if (sym->st_shndx == SHN_ABS)
1910 return 'a';
1911 if (sym->st_shndx >= SHN_LORESERVE)
1912 return '?';
1913 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1914 return 't';
1915 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1916 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1917 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1918 return 'r';
1919 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1920 return 'g';
1921 else
1922 return 'd';
1923 }
1924 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1925 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1926 return 's';
1927 else
1928 return 'b';
1929 }
Rusty Russelleded41c2010-08-05 12:59:07 -06001930 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
1931 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06001933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 return '?';
1935}
1936
Jan Beulich4a496222009-07-06 14:50:42 +01001937static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
1938 unsigned int shnum)
1939{
1940 const Elf_Shdr *sec;
1941
1942 if (src->st_shndx == SHN_UNDEF
1943 || src->st_shndx >= shnum
1944 || !src->st_name)
1945 return false;
1946
1947 sec = sechdrs + src->st_shndx;
1948 if (!(sec->sh_flags & SHF_ALLOC)
1949#ifndef CONFIG_KALLSYMS_ALL
1950 || !(sec->sh_flags & SHF_EXECINSTR)
1951#endif
1952 || (sec->sh_entsize & INIT_OFFSET_MASK))
1953 return false;
1954
1955 return true;
1956}
1957
Rusty Russell49668682010-08-05 12:59:10 -06001958static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01001959{
Rusty Russell49668682010-08-05 12:59:10 -06001960 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
1961 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01001962 const Elf_Sym *src;
1963 unsigned int i, nsrc, ndst;
1964
1965 /* Put symbol section at end of init part of module. */
1966 symsect->sh_flags |= SHF_ALLOC;
1967 symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06001968 info->index.sym) | INIT_OFFSET_MASK;
1969 DEBUGP("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01001970
Rusty Russell49668682010-08-05 12:59:10 -06001971 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01001972 nsrc = symsect->sh_size / sizeof(*src);
1973 for (ndst = i = 1; i < nsrc; ++i, ++src)
Rusty Russell49668682010-08-05 12:59:10 -06001974 if (is_core_symbol(src, info->sechdrs, info->hdr->e_shnum)) {
Jan Beulich554bdfe2009-07-06 14:51:44 +01001975 unsigned int j = src->st_name;
1976
Rusty Russell49668682010-08-05 12:59:10 -06001977 while (!__test_and_set_bit(j, info->strmap)
1978 && info->strtab[j])
Jan Beulich554bdfe2009-07-06 14:51:44 +01001979 ++j;
Jan Beulich4a496222009-07-06 14:50:42 +01001980 ++ndst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01001981 }
Jan Beulich4a496222009-07-06 14:50:42 +01001982
1983 /* Append room for core symbols at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06001984 info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
1985 mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
Jan Beulich4a496222009-07-06 14:50:42 +01001986
Jan Beulich554bdfe2009-07-06 14:51:44 +01001987 /* Put string table section at end of init part of module. */
1988 strsect->sh_flags |= SHF_ALLOC;
1989 strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06001990 info->index.str) | INIT_OFFSET_MASK;
1991 DEBUGP("\t%s\n", info->secstrings + strsect->sh_name);
Jan Beulich554bdfe2009-07-06 14:51:44 +01001992
1993 /* Append room for core symbols' strings at end of core part. */
Rusty Russell49668682010-08-05 12:59:10 -06001994 info->stroffs = mod->core_size;
1995 __set_bit(0, info->strmap);
1996 mod->core_size += bitmap_weight(info->strmap, strsect->sh_size);
Jan Beulich4a496222009-07-06 14:50:42 +01001997}
1998
Rusty Russell811d66a2010-08-05 12:59:12 -06001999static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
Jan Beulich4a496222009-07-06 14:50:42 +01002001 unsigned int i, ndst;
2002 const Elf_Sym *src;
2003 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002004 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002005 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Rusty Russelleded41c2010-08-05 12:59:07 -06002007 mod->symtab = (void *)symsec->sh_addr;
2008 mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002009 /* Make sure we get permanent strtab: don't use info->strtab. */
2010 mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 /* Set types up while we still have access to sections. */
2013 for (i = 0; i < mod->num_symtab; i++)
Rusty Russelleded41c2010-08-05 12:59:07 -06002014 mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002015
Rusty Russelld9131882010-08-05 12:59:08 -06002016 mod->core_symtab = dst = mod->module_core + info->symoffs;
Jan Beulich4a496222009-07-06 14:50:42 +01002017 src = mod->symtab;
2018 *dst = *src;
2019 for (ndst = i = 1; i < mod->num_symtab; ++i, ++src) {
Rusty Russelleded41c2010-08-05 12:59:07 -06002020 if (!is_core_symbol(src, info->sechdrs, info->hdr->e_shnum))
Jan Beulich4a496222009-07-06 14:50:42 +01002021 continue;
2022 dst[ndst] = *src;
Rusty Russelld9131882010-08-05 12:59:08 -06002023 dst[ndst].st_name = bitmap_weight(info->strmap,
2024 dst[ndst].st_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002025 ++ndst;
2026 }
2027 mod->core_num_syms = ndst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002028
Rusty Russelld9131882010-08-05 12:59:08 -06002029 mod->core_strtab = s = mod->module_core + info->stroffs;
Rusty Russelleded41c2010-08-05 12:59:07 -06002030 for (*s = 0, i = 1; i < info->sechdrs[info->index.str].sh_size; ++i)
Rusty Russelld9131882010-08-05 12:59:08 -06002031 if (test_bit(i, info->strmap))
Jan Beulich554bdfe2009-07-06 14:51:44 +01002032 *++s = mod->strtab[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033}
2034#else
Rusty Russell49668682010-08-05 12:59:10 -06002035static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002036{
2037}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002038
Rusty Russelld9131882010-08-05 12:59:08 -06002039static void add_kallsyms(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
2041}
2042#endif /* CONFIG_KALLSYMS */
2043
Jason Barone9d376f2009-02-05 11:51:38 -05002044static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002045{
Rusty Russell811d66a2010-08-05 12:59:12 -06002046 if (!debug)
2047 return;
Jason Barone9d376f2009-02-05 11:51:38 -05002048#ifdef CONFIG_DYNAMIC_DEBUG
2049 if (ddebug_add_module(debug, num, debug->modname))
2050 printk(KERN_ERR "dynamic debug error adding module: %s\n",
2051 debug->modname);
2052#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002053}
Jason Baron346e15b2008-08-12 16:46:19 -04002054
Yehuda Sadehff49d742010-07-03 13:07:35 +10002055static void dynamic_debug_remove(struct _ddebug *debug)
2056{
2057 if (debug)
2058 ddebug_remove_module(debug->modname);
2059}
2060
Rusty Russell3a642e92008-07-22 19:24:28 -05002061static void *module_alloc_update_bounds(unsigned long size)
2062{
2063 void *ret = module_alloc(size);
2064
2065 if (ret) {
Rusty Russell75676502010-06-05 11:17:36 -06002066 mutex_lock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002067 /* Update module bounds. */
2068 if ((unsigned long)ret < module_addr_min)
2069 module_addr_min = (unsigned long)ret;
2070 if ((unsigned long)ret + size > module_addr_max)
2071 module_addr_max = (unsigned long)ret + size;
Rusty Russell75676502010-06-05 11:17:36 -06002072 mutex_unlock(&module_mutex);
Rusty Russell3a642e92008-07-22 19:24:28 -05002073 }
2074 return ret;
2075}
2076
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002077#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002078static void kmemleak_load_module(const struct module *mod,
2079 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002080{
2081 unsigned int i;
2082
2083 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002084 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002085
Rusty Russell49668682010-08-05 12:59:10 -06002086 for (i = 1; i < info->hdr->e_shnum; i++) {
2087 const char *name = info->secstrings + info->sechdrs[i].sh_name;
2088 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002089 continue;
Rusty Russell49668682010-08-05 12:59:10 -06002090 if (!strstarts(name, ".data") && !strstarts(name, ".bss"))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002091 continue;
2092
Rusty Russell49668682010-08-05 12:59:10 -06002093 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2094 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002095 }
2096}
2097#else
Rusty Russell49668682010-08-05 12:59:10 -06002098static inline void kmemleak_load_module(const struct module *mod,
2099 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002100{
2101}
2102#endif
2103
Rusty Russell6526c532010-08-05 12:59:10 -06002104/* Sets info->hdr and info->len. */
Rusty Russelld9131882010-08-05 12:59:08 -06002105static int copy_and_check(struct load_info *info,
2106 const void __user *umod, unsigned long len,
2107 const char __user *uargs)
Rusty Russell40dd2562010-08-05 12:59:03 -06002108{
2109 int err;
2110 Elf_Ehdr *hdr;
2111
2112 if (len < sizeof(*hdr))
2113 return -ENOEXEC;
2114
2115 /* Suck in entire file: we'll want most of it. */
2116 /* vmalloc barfs on "unusual" numbers. Check here */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002117 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
Rusty Russell40dd2562010-08-05 12:59:03 -06002118 return -ENOMEM;
2119
2120 if (copy_from_user(hdr, umod, len) != 0) {
2121 err = -EFAULT;
2122 goto free_hdr;
2123 }
2124
2125 /* Sanity checks against insmoding binaries or wrong arch,
2126 weird elf version */
2127 if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
2128 || hdr->e_type != ET_REL
2129 || !elf_check_arch(hdr)
2130 || hdr->e_shentsize != sizeof(Elf_Shdr)) {
2131 err = -ENOEXEC;
2132 goto free_hdr;
2133 }
2134
2135 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr)) {
2136 err = -ENOEXEC;
2137 goto free_hdr;
2138 }
Rusty Russelld9131882010-08-05 12:59:08 -06002139
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002140 info->hdr = hdr;
2141 info->len = len;
Rusty Russell40dd2562010-08-05 12:59:03 -06002142 return 0;
2143
2144free_hdr:
2145 vfree(hdr);
2146 return err;
2147}
2148
Rusty Russelld9131882010-08-05 12:59:08 -06002149static void free_copy(struct load_info *info)
2150{
Rusty Russelld9131882010-08-05 12:59:08 -06002151 vfree(info->hdr);
2152}
2153
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002154static int rewrite_section_headers(struct load_info *info)
2155{
2156 unsigned int i;
2157
2158 /* This should always be true, but let's be sure. */
2159 info->sechdrs[0].sh_addr = 0;
2160
2161 for (i = 1; i < info->hdr->e_shnum; i++) {
2162 Elf_Shdr *shdr = &info->sechdrs[i];
2163 if (shdr->sh_type != SHT_NOBITS
2164 && info->len < shdr->sh_offset + shdr->sh_size) {
2165 printk(KERN_ERR "Module len %lu truncated\n",
2166 info->len);
2167 return -ENOEXEC;
2168 }
2169
2170 /* Mark all sections sh_addr with their address in the
2171 temporary image. */
2172 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2173
2174#ifndef CONFIG_MODULE_UNLOAD
2175 /* Don't load .exit sections */
2176 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2177 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2178#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002179 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002180
2181 /* Track but don't keep modinfo and version sections. */
Rusty Russell49668682010-08-05 12:59:10 -06002182 info->index.vers = find_sec(info, "__versions");
2183 info->index.info = find_sec(info, ".modinfo");
Rusty Russelld6df72a2010-08-05 12:59:07 -06002184 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2185 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002186 return 0;
2187}
2188
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002189/*
2190 * Set up our basic convenience variables (pointers to section headers,
2191 * search for module section index etc), and do some basic section
2192 * verification.
2193 *
2194 * Return the temporary module pointer (we'll replace it with the final
2195 * one when we move the module sections around).
2196 */
2197static struct module *setup_load_info(struct load_info *info)
2198{
2199 unsigned int i;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002200 int err;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002201 struct module *mod;
2202
2203 /* Set up the convenience variables */
2204 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002205 info->secstrings = (void *)info->hdr
2206 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002207
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002208 err = rewrite_section_headers(info);
2209 if (err)
2210 return ERR_PTR(err);
2211
2212 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002213 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002214 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2215 info->index.sym = i;
2216 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002217 info->strtab = (char *)info->hdr
2218 + info->sechdrs[info->index.str].sh_offset;
2219 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002220 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002221 }
2222
Rusty Russell49668682010-08-05 12:59:10 -06002223 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002224 if (!info->index.mod) {
2225 printk(KERN_WARNING "No module found in object\n");
2226 return ERR_PTR(-ENOEXEC);
2227 }
2228 /* This is temporary: point mod into copy of data. */
2229 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
2230
2231 if (info->index.sym == 0) {
2232 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
2233 mod->name);
2234 return ERR_PTR(-ENOEXEC);
2235 }
2236
Rusty Russell49668682010-08-05 12:59:10 -06002237 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002238
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002239 /* Check module struct version now, before we try to use module. */
2240 if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
2241 return ERR_PTR(-ENOEXEC);
2242
2243 return mod;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002244}
2245
Rusty Russell49668682010-08-05 12:59:10 -06002246static int check_modinfo(struct module *mod, struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002247{
Rusty Russell49668682010-08-05 12:59:10 -06002248 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002249 int err;
2250
2251 /* This is allowed: modprobe --force will invalidate it. */
2252 if (!modmagic) {
2253 err = try_to_force_load(mod, "bad vermagic");
2254 if (err)
2255 return err;
Rusty Russell49668682010-08-05 12:59:10 -06002256 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Rusty Russell40dd2562010-08-05 12:59:03 -06002257 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
2258 mod->name, modmagic, vermagic);
2259 return -ENOEXEC;
2260 }
2261
Rusty Russell49668682010-08-05 12:59:10 -06002262 if (get_modinfo(info, "staging")) {
Rusty Russell40dd2562010-08-05 12:59:03 -06002263 add_taint_module(mod, TAINT_CRAP);
2264 printk(KERN_WARNING "%s: module is from the staging directory,"
2265 " the quality is unknown, you have been warned.\n",
2266 mod->name);
2267 }
Rusty Russell22e268e2010-08-05 12:59:05 -06002268
2269 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06002270 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06002271
Rusty Russell40dd2562010-08-05 12:59:03 -06002272 return 0;
2273}
2274
Rusty Russell811d66a2010-08-05 12:59:12 -06002275static void find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002276{
Rusty Russell49668682010-08-05 12:59:10 -06002277 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002278 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06002279 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002280 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002281 mod->crcs = section_addr(info, "__kcrctab");
2282 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002283 sizeof(*mod->gpl_syms),
2284 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002285 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
2286 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002287 "__ksymtab_gpl_future",
2288 sizeof(*mod->gpl_future_syms),
2289 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002290 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002291
2292#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06002293 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002294 sizeof(*mod->unused_syms),
2295 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002296 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
2297 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002298 sizeof(*mod->unused_gpl_syms),
2299 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06002300 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002301#endif
2302#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06002303 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002304 sizeof(*mod->ctors), &mod->num_ctors);
2305#endif
2306
2307#ifdef CONFIG_TRACEPOINTS
Rusty Russell49668682010-08-05 12:59:10 -06002308 mod->tracepoints = section_objs(info, "__tracepoints",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002309 sizeof(*mod->tracepoints),
2310 &mod->num_tracepoints);
2311#endif
2312#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06002313 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002314 sizeof(*mod->trace_events),
2315 &mod->num_trace_events);
2316 /*
2317 * This section contains pointers to allocated objects in the trace
2318 * code and not scanning it leads to false positives.
2319 */
2320 kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) *
2321 mod->num_trace_events, GFP_KERNEL);
2322#endif
2323#ifdef CONFIG_FTRACE_MCOUNT_RECORD
2324 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06002325 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002326 sizeof(*mod->ftrace_callsites),
2327 &mod->num_ftrace_callsites);
2328#endif
Rusty Russell22e268e2010-08-05 12:59:05 -06002329
Rusty Russell811d66a2010-08-05 12:59:12 -06002330 mod->extable = section_objs(info, "__ex_table",
2331 sizeof(*mod->extable), &mod->num_exentries);
2332
Rusty Russell49668682010-08-05 12:59:10 -06002333 if (section_addr(info, "__obsparm"))
Rusty Russell22e268e2010-08-05 12:59:05 -06002334 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2335 mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06002336
2337 info->debug = section_objs(info, "__verbose",
2338 sizeof(*info->debug), &info->num_debug);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06002339}
2340
Rusty Russell49668682010-08-05 12:59:10 -06002341static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002342{
2343 int i;
2344 void *ptr;
2345
2346 /* Do the allocs. */
2347 ptr = module_alloc_update_bounds(mod->core_size);
2348 /*
2349 * The pointer to this block is stored in the module structure
2350 * which is inside the block. Just mark it as not being a
2351 * leak.
2352 */
2353 kmemleak_not_leak(ptr);
2354 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06002355 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002356
2357 memset(ptr, 0, mod->core_size);
2358 mod->module_core = ptr;
2359
2360 ptr = module_alloc_update_bounds(mod->init_size);
2361 /*
2362 * The pointer to this block is stored in the module structure
2363 * which is inside the block. This block doesn't need to be
2364 * scanned as it contains data and code that will be freed
2365 * after the module is initialized.
2366 */
2367 kmemleak_ignore(ptr);
2368 if (!ptr && mod->init_size) {
2369 module_free(mod, mod->module_core);
Rusty Russelld9131882010-08-05 12:59:08 -06002370 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002371 }
2372 memset(ptr, 0, mod->init_size);
2373 mod->module_init = ptr;
2374
2375 /* Transfer each section which specifies SHF_ALLOC */
2376 DEBUGP("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06002377 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002378 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06002379 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002380
Rusty Russell49668682010-08-05 12:59:10 -06002381 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002382 continue;
2383
Rusty Russell49668682010-08-05 12:59:10 -06002384 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002385 dest = mod->module_init
Rusty Russell49668682010-08-05 12:59:10 -06002386 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002387 else
Rusty Russell49668682010-08-05 12:59:10 -06002388 dest = mod->module_core + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002389
Rusty Russell49668682010-08-05 12:59:10 -06002390 if (shdr->sh_type != SHT_NOBITS)
2391 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002392 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06002393 shdr->sh_addr = (unsigned long)dest;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002394 DEBUGP("\t0x%lx %s\n",
Rusty Russell49668682010-08-05 12:59:10 -06002395 shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002396 }
Rusty Russelld9131882010-08-05 12:59:08 -06002397
2398 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06002399}
2400
Rusty Russell49668682010-08-05 12:59:10 -06002401static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06002402{
2403 /*
2404 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2405 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2406 * using GPL-only symbols it needs.
2407 */
2408 if (strcmp(mod->name, "ndiswrapper") == 0)
2409 add_taint(TAINT_PROPRIETARY_MODULE);
2410
2411 /* driverloader was caught wrongly pretending to be under GPL */
2412 if (strcmp(mod->name, "driverloader") == 0)
2413 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2414
2415#ifdef CONFIG_MODVERSIONS
2416 if ((mod->num_syms && !mod->crcs)
2417 || (mod->num_gpl_syms && !mod->gpl_crcs)
2418 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2419#ifdef CONFIG_UNUSED_SYMBOLS
2420 || (mod->num_unused_syms && !mod->unused_crcs)
2421 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2422#endif
2423 ) {
2424 return try_to_force_load(mod,
2425 "no versions for exported symbols");
2426 }
2427#endif
2428 return 0;
2429}
2430
2431static void flush_module_icache(const struct module *mod)
2432{
2433 mm_segment_t old_fs;
2434
2435 /* flush the icache in correct context */
2436 old_fs = get_fs();
2437 set_fs(KERNEL_DS);
2438
2439 /*
2440 * Flush the instruction cache, since we've played with text.
2441 * Do it before processing of module parameters, so the module
2442 * can provide parameter accessor functions of its own.
2443 */
2444 if (mod->module_init)
2445 flush_icache_range((unsigned long)mod->module_init,
2446 (unsigned long)mod->module_init
2447 + mod->init_size);
2448 flush_icache_range((unsigned long)mod->module_core,
2449 (unsigned long)mod->module_core + mod->core_size);
2450
2451 set_fs(old_fs);
2452}
2453
Rusty Russelld9131882010-08-05 12:59:08 -06002454static struct module *layout_and_allocate(struct load_info *info)
2455{
2456 /* Module within temporary copy. */
2457 struct module *mod;
Rusty Russell49668682010-08-05 12:59:10 -06002458 Elf_Shdr *pcpusec;
Rusty Russelld9131882010-08-05 12:59:08 -06002459 int err;
2460
2461 mod = setup_load_info(info);
2462 if (IS_ERR(mod))
2463 return mod;
2464
Rusty Russell49668682010-08-05 12:59:10 -06002465 err = check_modinfo(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002466 if (err)
2467 return ERR_PTR(err);
2468
2469 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06002470 err = module_frob_arch_sections(info->hdr, info->sechdrs,
2471 info->secstrings, mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002472 if (err < 0)
Rusty Russell6526c532010-08-05 12:59:10 -06002473 goto out;
Rusty Russelld9131882010-08-05 12:59:08 -06002474
Rusty Russell49668682010-08-05 12:59:10 -06002475 pcpusec = &info->sechdrs[info->index.pcpu];
2476 if (pcpusec->sh_size) {
Rusty Russelld9131882010-08-05 12:59:08 -06002477 /* We have a special allocation for this section. */
Rusty Russell49668682010-08-05 12:59:10 -06002478 err = percpu_modalloc(mod,
2479 pcpusec->sh_size, pcpusec->sh_addralign);
Rusty Russelld9131882010-08-05 12:59:08 -06002480 if (err)
Rusty Russell6526c532010-08-05 12:59:10 -06002481 goto out;
Rusty Russell49668682010-08-05 12:59:10 -06002482 pcpusec->sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06002483 }
2484
2485 /* Determine total sizes, and put offsets in sh_entsize. For now
2486 this is done generically; there doesn't appear to be any
2487 special cases for the architectures. */
Rusty Russell49668682010-08-05 12:59:10 -06002488 layout_sections(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002489
2490 info->strmap = kzalloc(BITS_TO_LONGS(info->sechdrs[info->index.str].sh_size)
2491 * sizeof(long), GFP_KERNEL);
2492 if (!info->strmap) {
2493 err = -ENOMEM;
2494 goto free_percpu;
2495 }
Rusty Russell49668682010-08-05 12:59:10 -06002496 layout_symtab(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002497
2498 /* Allocate and move to the final place */
Rusty Russell49668682010-08-05 12:59:10 -06002499 err = move_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002500 if (err)
2501 goto free_strmap;
2502
2503 /* Module has been copied to its final place now: return it. */
2504 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06002505 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06002506 return mod;
2507
2508free_strmap:
2509 kfree(info->strmap);
2510free_percpu:
2511 percpu_modfree(mod);
Rusty Russell6526c532010-08-05 12:59:10 -06002512out:
Rusty Russelld9131882010-08-05 12:59:08 -06002513 return ERR_PTR(err);
2514}
2515
2516/* mod is no longer valid after this! */
2517static void module_deallocate(struct module *mod, struct load_info *info)
2518{
2519 kfree(info->strmap);
2520 percpu_modfree(mod);
2521 module_free(mod, mod->module_init);
2522 module_free(mod, mod->module_core);
2523}
2524
Rusty Russell811d66a2010-08-05 12:59:12 -06002525static int post_relocation(struct module *mod, const struct load_info *info)
2526{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002527 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002528 sort_extable(mod->extable, mod->extable + mod->num_exentries);
2529
2530 /* Copy relocated percpu area over. */
2531 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
2532 info->sechdrs[info->index.pcpu].sh_size);
2533
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002534 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06002535 add_kallsyms(mod, info);
2536
2537 /* Arch-specific module finalizing. */
2538 return module_finalize(info->hdr, info->sechdrs, mod);
2539}
2540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541/* Allocate and load the module: note that size of section 0 is always
2542 zero, and we rely on this for optional sections. */
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002543static struct module *load_module(void __user *umod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 unsigned long len,
2545 const char __user *uargs)
2546{
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002547 struct load_info info = { NULL, };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 struct module *mod;
Rusty Russell40dd2562010-08-05 12:59:03 -06002549 long err;
Paul Mundt3ae91c22009-10-01 15:43:54 -07002550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
2552 umod, len, uargs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Rusty Russelld9131882010-08-05 12:59:08 -06002554 /* Copy in the blobs from userspace, check they are vaguely sane. */
2555 err = copy_and_check(&info, umod, len, uargs);
Rusty Russell40dd2562010-08-05 12:59:03 -06002556 if (err)
2557 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Rusty Russelld9131882010-08-05 12:59:08 -06002559 /* Figure out module layout, and allocate all the memory. */
2560 mod = layout_and_allocate(&info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002561 if (IS_ERR(mod)) {
2562 err = PTR_ERR(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002563 goto free_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Rusty Russell49668682010-08-05 12:59:10 -06002566 /* Now module is in final location, initialize linked lists, etc. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -06002567 err = module_unload_init(mod);
2568 if (err)
Rusty Russelld9131882010-08-05 12:59:08 -06002569 goto free_module;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Rusty Russell22e268e2010-08-05 12:59:05 -06002571 /* Now we've got everything in the final locations, we can
2572 * find optional sections. */
Rusty Russell49668682010-08-05 12:59:10 -06002573 find_module_sections(mod, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Rusty Russell49668682010-08-05 12:59:10 -06002575 err = check_module_license_and_versions(mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002576 if (err)
2577 goto free_unload;
Dave Jones9841d61d2006-01-08 01:03:41 -08002578
Matt Domschc988d2b2005-06-23 22:05:15 -07002579 /* Set up MODINFO_ATTR fields */
Rusty Russell49668682010-08-05 12:59:10 -06002580 setup_modinfo(mod, &info);
Matt Domschc988d2b2005-06-23 22:05:15 -07002581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 /* Fix up syms, so that st_value is a pointer to location. */
Rusty Russell49668682010-08-05 12:59:10 -06002583 err = simplify_symbols(mod, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002585 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Rusty Russell49668682010-08-05 12:59:10 -06002587 err = apply_relocations(mod, &info);
Rusty Russell22e268e2010-08-05 12:59:05 -06002588 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002589 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Rusty Russell811d66a2010-08-05 12:59:12 -06002591 err = post_relocation(mod, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 if (err < 0)
Rusty Russelld9131882010-08-05 12:59:08 -06002593 goto free_modinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Rusty Russell22e268e2010-08-05 12:59:05 -06002595 flush_module_icache(mod);
Thomas Koeller378bac82005-09-06 15:17:11 -07002596
Rusty Russell6526c532010-08-05 12:59:10 -06002597 /* Now copy in args */
2598 mod->args = strndup_user(uargs, ~0UL >> 1);
2599 if (IS_ERR(mod->args)) {
2600 err = PTR_ERR(mod->args);
2601 goto free_arch_cleanup;
2602 }
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002603
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002604 /* Mark state as coming so strong_try_module_get() ignores us. */
Rusty Russelld9131882010-08-05 12:59:08 -06002605 mod->state = MODULE_STATE_COMING;
2606
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002607 /* Now sew it into the lists so we can get lockdep and oops
Andi Kleend72b3752008-08-30 10:09:00 +02002608 * info during argument parsing. Noone should access us, since
2609 * strong_try_module_get() will fail.
2610 * lockdep/oops can run asynchronous, so use the RCU list insertion
2611 * function to insert in a way safe to concurrent readers.
2612 * The mutex protects against concurrent writers.
2613 */
Rusty Russell75676502010-06-05 11:17:36 -06002614 mutex_lock(&module_mutex);
Linus Torvalds3bafeb62010-06-05 11:17:36 -06002615 if (find_module(mod->name)) {
2616 err = -EEXIST;
Rusty Russellbe593f42010-06-05 11:17:37 -06002617 goto unlock;
Linus Torvalds3bafeb62010-06-05 11:17:36 -06002618 }
2619
Rusty Russell811d66a2010-08-05 12:59:12 -06002620 /* This has to be done once we're sure module name is unique. */
2621 if (!mod->taints)
2622 dynamic_debug_setup(info.debug, info.num_debug);
Yehuda Sadehff49d742010-07-03 13:07:35 +10002623
Rusty Russellbe593f42010-06-05 11:17:37 -06002624 /* Find duplicate symbols */
2625 err = verify_export_symbols(mod);
2626 if (err < 0)
Yehuda Sadehff49d742010-07-03 13:07:35 +10002627 goto ddebug;
Rusty Russellbe593f42010-06-05 11:17:37 -06002628
Linus Torvalds53363772010-10-05 11:29:27 -07002629 module_bug_finalize(info.hdr, info.sechdrs, mod);
Andi Kleend72b3752008-08-30 10:09:00 +02002630 list_add_rcu(&mod->list, &modules);
Rusty Russell75676502010-06-05 11:17:36 -06002631 mutex_unlock(&module_mutex);
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002632
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002633 /* Module is ready to execute: parsing args may do that. */
Rusty Russelle180a6b2009-03-31 13:05:29 -06002634 err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002636 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002638 /* Link in to syfs. */
Rusty Russell8f6d0372010-08-05 12:59:09 -06002639 err = mod_sysfs_setup(mod, &info, mod->kp, mod->num_kp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002641 goto unlink;
Rusty Russell80a3d1b2010-06-05 11:17:36 -06002642
Rusty Russelld9131882010-08-05 12:59:08 -06002643 /* Get rid of temporary copy and strmap. */
2644 kfree(info.strmap);
2645 free_copy(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 /* Done! */
Rusty Russell51f3d0f2010-08-05 12:59:13 -06002648 trace_module_load(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 return mod;
2650
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002651 unlink:
Rusty Russell75676502010-06-05 11:17:36 -06002652 mutex_lock(&module_mutex);
Rusty Russelle91defa2009-03-31 13:05:35 -06002653 /* Unlink carefully: kallsyms could be walking list. */
2654 list_del_rcu(&mod->list);
Linus Torvalds53363772010-10-05 11:29:27 -07002655 module_bug_cleanup(mod);
2656
Yehuda Sadehff49d742010-07-03 13:07:35 +10002657 ddebug:
Rusty Russell811d66a2010-08-05 12:59:12 -06002658 if (!mod->taints)
2659 dynamic_debug_remove(info.debug);
Rusty Russellbe593f42010-06-05 11:17:37 -06002660 unlock:
Rusty Russell75676502010-06-05 11:17:36 -06002661 mutex_unlock(&module_mutex);
Rusty Russelle91defa2009-03-31 13:05:35 -06002662 synchronize_sched();
Rusty Russell6526c532010-08-05 12:59:10 -06002663 kfree(mod->args);
2664 free_arch_cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 module_arch_cleanup(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002666 free_modinfo:
Rusty Russella263f772009-09-25 00:32:58 -06002667 free_modinfo(mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002668 free_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 module_unload_free(mod);
Rusty Russelld9131882010-08-05 12:59:08 -06002670 free_module:
2671 module_deallocate(mod, &info);
2672 free_copy:
2673 free_copy(&info);
Jayachandran C6fe2e702006-01-06 00:19:54 -08002674 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002677/* Call module constructors. */
2678static void do_mod_ctors(struct module *mod)
2679{
2680#ifdef CONFIG_CONSTRUCTORS
2681 unsigned long i;
2682
2683 for (i = 0; i < mod->num_ctors; i++)
2684 mod->ctors[i]();
2685#endif
2686}
2687
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688/* This is where the real work happens */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002689SYSCALL_DEFINE3(init_module, void __user *, umod,
2690 unsigned long, len, const char __user *, uargs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
2692 struct module *mod;
2693 int ret = 0;
2694
2695 /* Must have permission */
Kees Cook3d433212009-04-02 15:49:29 -07002696 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 return -EPERM;
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 /* Do all the hard work */
2700 mod = load_module(umod, len, uargs);
Rusty Russell75676502010-06-05 11:17:36 -06002701 if (IS_ERR(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 return PTR_ERR(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Alan Sterne041c682006-03-27 01:16:30 -08002704 blocking_notifier_call_chain(&module_notify_list,
2705 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07002707 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 /* Start the module */
2709 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07002710 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (ret < 0) {
2712 /* Init routine failed: abort. Try to protect us from
2713 buggy refcounters. */
2714 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002715 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002716 module_put(mod);
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02002717 blocking_notifier_call_chain(&module_notify_list,
2718 MODULE_STATE_GOING, mod);
Rusty Russellaf49d922007-10-16 23:26:27 -07002719 free_module(mod);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05002720 wake_up(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 return ret;
2722 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002723 if (ret > 0) {
Joe Perchesad361c92009-07-06 13:05:40 -07002724 printk(KERN_WARNING
2725"%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n"
2726"%s: loading module anyway...\n",
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002727 __func__, mod->name, ret,
2728 __func__);
2729 dump_stack();
2730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Rusty Russell6c5db222008-03-10 11:43:52 -07002732 /* Now it's a first class citizen! Wake up anyone waiting for it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 mod->state = MODULE_STATE_LIVE;
Rusty Russell6c5db222008-03-10 11:43:52 -07002734 wake_up(&module_wq);
Masami Hiramatsu0deddf432009-01-06 14:41:54 -08002735 blocking_notifier_call_chain(&module_notify_list,
2736 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07002737
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07002738 /* We need to finish all async code before the module init sequence is done */
2739 async_synchronize_full();
2740
Rusty Russell6c5db222008-03-10 11:43:52 -07002741 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 /* Drop initial reference. */
2743 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06002744 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01002745#ifdef CONFIG_KALLSYMS
2746 mod->num_symtab = mod->core_num_syms;
2747 mod->symtab = mod->core_symtab;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002748 mod->strtab = mod->core_strtab;
Jan Beulich4a496222009-07-06 14:50:42 +01002749#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 module_free(mod, mod->module_init);
2751 mod->module_init = NULL;
2752 mod->init_size = 0;
2753 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08002754 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 return 0;
2757}
2758
2759static inline int within(unsigned long addr, void *start, unsigned long size)
2760{
2761 return ((void *)addr >= start && (void *)addr < start + size);
2762}
2763
2764#ifdef CONFIG_KALLSYMS
2765/*
2766 * This ignores the intensely annoying "mapping symbols" found
2767 * in ARM ELF files: $a, $t and $d.
2768 */
2769static inline int is_arm_mapping_symbol(const char *str)
2770{
Daniel Walker22a8bde2007-10-18 03:06:07 -07002771 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 && (str[2] == '\0' || str[2] == '.');
2773}
2774
2775static const char *get_ksymbol(struct module *mod,
2776 unsigned long addr,
2777 unsigned long *size,
2778 unsigned long *offset)
2779{
2780 unsigned int i, best = 0;
2781 unsigned long nextval;
2782
2783 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002784 if (within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002786 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2788
2789 /* Scan for closest preceeding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07002790 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 for (i = 1; i < mod->num_symtab; i++) {
2792 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2793 continue;
2794
2795 /* We ignore unnamed symbols: they're uninformative
2796 * and inserted at a whim. */
2797 if (mod->symtab[i].st_value <= addr
2798 && mod->symtab[i].st_value > mod->symtab[best].st_value
2799 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2800 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2801 best = i;
2802 if (mod->symtab[i].st_value > addr
2803 && mod->symtab[i].st_value < nextval
2804 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2805 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2806 nextval = mod->symtab[i].st_value;
2807 }
2808
2809 if (!best)
2810 return NULL;
2811
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002812 if (size)
2813 *size = nextval - mod->symtab[best].st_value;
2814 if (offset)
2815 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 return mod->strtab + mod->symtab[best].st_name;
2817}
2818
Rusty Russell6dd06c92008-01-29 17:13:22 -05002819/* For kallsyms to ask for address resolution. NULL means not found. Careful
2820 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002821const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05002822 unsigned long *size,
2823 unsigned long *offset,
2824 char **modname,
2825 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
2827 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002828 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
Rusty Russellcb2a5202008-01-14 00:55:03 -08002830 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002831 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002832 if (within_module_init(addr, mod) ||
2833 within_module_core(addr, mod)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07002834 if (modname)
2835 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002836 ret = get_ksymbol(mod, addr, size, offset);
2837 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 }
2839 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05002840 /* Make a copy in here where it's safe */
2841 if (ret) {
2842 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2843 ret = namebuf;
2844 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002845 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002846 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847}
2848
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002849int lookup_module_symbol_name(unsigned long addr, char *symname)
2850{
2851 struct module *mod;
2852
Rusty Russellcb2a5202008-01-14 00:55:03 -08002853 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002854 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002855 if (within_module_init(addr, mod) ||
2856 within_module_core(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002857 const char *sym;
2858
2859 sym = get_ksymbol(mod, addr, NULL, NULL);
2860 if (!sym)
2861 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07002862 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002863 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002864 return 0;
2865 }
2866 }
2867out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002868 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002869 return -ERANGE;
2870}
2871
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002872int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2873 unsigned long *offset, char *modname, char *name)
2874{
2875 struct module *mod;
2876
Rusty Russellcb2a5202008-01-14 00:55:03 -08002877 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002878 list_for_each_entry_rcu(mod, &modules, list) {
Masami Hiramatsua06f6212009-01-06 14:41:49 -08002879 if (within_module_init(addr, mod) ||
2880 within_module_core(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002881 const char *sym;
2882
2883 sym = get_ksymbol(mod, addr, size, offset);
2884 if (!sym)
2885 goto out;
2886 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07002887 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002888 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07002889 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002890 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002891 return 0;
2892 }
2893 }
2894out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002895 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002896 return -ERANGE;
2897}
2898
Alexey Dobriyanea078902007-05-08 00:28:39 -07002899int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2900 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
2902 struct module *mod;
2903
Rusty Russellcb2a5202008-01-14 00:55:03 -08002904 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02002905 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 if (symnum < mod->num_symtab) {
2907 *value = mod->symtab[symnum].st_value;
2908 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07002909 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07002910 KSYM_NAME_LEN);
2911 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06002912 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002913 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002914 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 }
2916 symnum -= mod->num_symtab;
2917 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002918 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002919 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920}
2921
2922static unsigned long mod_find_symname(struct module *mod, const char *name)
2923{
2924 unsigned int i;
2925
2926 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002927 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2928 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 return mod->symtab[i].st_value;
2930 return 0;
2931}
2932
2933/* Look for this name: can be of form module:name. */
2934unsigned long module_kallsyms_lookup_name(const char *name)
2935{
2936 struct module *mod;
2937 char *colon;
2938 unsigned long ret = 0;
2939
2940 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002941 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 if ((colon = strchr(name, ':')) != NULL) {
2943 *colon = '\0';
2944 if ((mod = find_module(name)) != NULL)
2945 ret = mod_find_symname(mod, colon+1);
2946 *colon = ':';
2947 } else {
Andi Kleend72b3752008-08-30 10:09:00 +02002948 list_for_each_entry_rcu(mod, &modules, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 if ((ret = mod_find_symname(mod, name)) != 0)
2950 break;
2951 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002952 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 return ret;
2954}
Anders Kaseorg75a66612008-12-05 19:03:58 -05002955
2956int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
2957 struct module *, unsigned long),
2958 void *data)
2959{
2960 struct module *mod;
2961 unsigned int i;
2962 int ret;
2963
2964 list_for_each_entry(mod, &modules, list) {
2965 for (i = 0; i < mod->num_symtab; i++) {
2966 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
2967 mod, mod->symtab[i].st_value);
2968 if (ret != 0)
2969 return ret;
2970 }
2971 }
2972 return 0;
2973}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974#endif /* CONFIG_KALLSYMS */
2975
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002976static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002977{
2978 int bx = 0;
2979
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002980 if (mod->taints ||
2981 mod->state == MODULE_STATE_GOING ||
2982 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002983 buf[bx++] = '(';
Andi Kleen25ddbb12008-10-15 22:01:41 -07002984 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002985 buf[bx++] = 'P';
Andi Kleen25ddbb12008-10-15 22:01:41 -07002986 if (mod->taints & (1 << TAINT_FORCED_MODULE))
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002987 buf[bx++] = 'F';
Linus Torvalds26e9a392008-10-17 09:50:12 -07002988 if (mod->taints & (1 << TAINT_CRAP))
Greg Kroah-Hartman061b1bd2008-09-24 14:46:44 -07002989 buf[bx++] = 'C';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002990 /*
2991 * TAINT_FORCED_RMMOD: could be added.
2992 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2993 * apply to modules.
2994 */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002995
2996 /* Show a - for module-is-being-unloaded */
2997 if (mod->state == MODULE_STATE_GOING)
2998 buf[bx++] = '-';
2999 /* Show a + for module-is-being-loaded */
3000 if (mod->state == MODULE_STATE_COMING)
3001 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003002 buf[bx++] = ')';
3003 }
3004 buf[bx] = '\0';
3005
3006 return buf;
3007}
3008
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003009#ifdef CONFIG_PROC_FS
3010/* Called by the /proc file system to return a list of modules. */
3011static void *m_start(struct seq_file *m, loff_t *pos)
3012{
3013 mutex_lock(&module_mutex);
3014 return seq_list_start(&modules, *pos);
3015}
3016
3017static void *m_next(struct seq_file *m, void *p, loff_t *pos)
3018{
3019 return seq_list_next(p, &modules, pos);
3020}
3021
3022static void m_stop(struct seq_file *m, void *p)
3023{
3024 mutex_unlock(&module_mutex);
3025}
3026
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027static int m_show(struct seq_file *m, void *p)
3028{
3029 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003030 char buf[8];
3031
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05003032 seq_printf(m, "%s %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 mod->name, mod->init_size + mod->core_size);
3034 print_unload_info(m, mod);
3035
3036 /* Informative for users. */
3037 seq_printf(m, " %s",
3038 mod->state == MODULE_STATE_GOING ? "Unloading":
3039 mod->state == MODULE_STATE_COMING ? "Loading":
3040 "Live");
3041 /* Used by oprofile and other similar tools. */
3042 seq_printf(m, " 0x%p", mod->module_core);
3043
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003044 /* Taints info */
3045 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003046 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07003047
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 seq_printf(m, "\n");
3049 return 0;
3050}
3051
3052/* Format: modulename size refcount deps address
3053
3054 Where refcount is a number or -, and deps is a comma-separated list
3055 of depends or -.
3056*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003057static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 .start = m_start,
3059 .next = m_next,
3060 .stop = m_stop,
3061 .show = m_show
3062};
3063
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04003064static int modules_open(struct inode *inode, struct file *file)
3065{
3066 return seq_open(file, &modules_op);
3067}
3068
3069static const struct file_operations proc_modules_operations = {
3070 .open = modules_open,
3071 .read = seq_read,
3072 .llseek = seq_lseek,
3073 .release = seq_release,
3074};
3075
3076static int __init proc_modules_init(void)
3077{
3078 proc_create("modules", 0, NULL, &proc_modules_operations);
3079 return 0;
3080}
3081module_init(proc_modules_init);
3082#endif
3083
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084/* Given an address, look for it in the module exception tables. */
3085const struct exception_table_entry *search_module_extables(unsigned long addr)
3086{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 const struct exception_table_entry *e = NULL;
3088 struct module *mod;
3089
Rusty Russell24da1cb2007-07-15 23:41:46 -07003090 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003091 list_for_each_entry_rcu(mod, &modules, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 if (mod->num_exentries == 0)
3093 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003094
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 e = search_extable(mod->extable,
3096 mod->extable + mod->num_exentries - 1,
3097 addr);
3098 if (e)
3099 break;
3100 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07003101 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
3103 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07003104 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 return e;
3106}
3107
Ingo Molnar4d435f92006-07-03 00:24:24 -07003108/*
Rusty Russelle6104992009-03-31 13:05:31 -06003109 * is_module_address - is this address inside a module?
3110 * @addr: the address to check.
3111 *
3112 * See is_module_text_address() if you simply want to see if the address
3113 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07003114 */
Rusty Russelle6104992009-03-31 13:05:31 -06003115bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07003116{
Rusty Russelle6104992009-03-31 13:05:31 -06003117 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003118
Rusty Russell24da1cb2007-07-15 23:41:46 -07003119 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06003120 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07003121 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07003122
Rusty Russelle6104992009-03-31 13:05:31 -06003123 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07003124}
3125
Rusty Russelle6104992009-03-31 13:05:31 -06003126/*
3127 * __module_address - get the module which contains an address.
3128 * @addr: the address.
3129 *
3130 * Must be called with preempt disabled or module mutex held so that
3131 * module doesn't get freed during this.
3132 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07003133struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134{
3135 struct module *mod;
3136
Rusty Russell3a642e92008-07-22 19:24:28 -05003137 if (addr < module_addr_min || addr > module_addr_max)
3138 return NULL;
3139
Andi Kleend72b3752008-08-30 10:09:00 +02003140 list_for_each_entry_rcu(mod, &modules, list)
Rusty Russelle6104992009-03-31 13:05:31 -06003141 if (within_module_core(addr, mod)
3142 || within_module_init(addr, mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 return mod;
3144 return NULL;
3145}
Tim Abbottc6b37802008-12-05 19:03:59 -05003146EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Rusty Russelle6104992009-03-31 13:05:31 -06003148/*
3149 * is_module_text_address - is this address inside module code?
3150 * @addr: the address to check.
3151 *
3152 * See is_module_address() if you simply want to see if the address is
3153 * anywhere in a module. See kernel_text_address() for testing if an
3154 * address corresponds to kernel or module code.
3155 */
3156bool is_module_text_address(unsigned long addr)
3157{
3158 bool ret;
3159
3160 preempt_disable();
3161 ret = __module_text_address(addr) != NULL;
3162 preempt_enable();
3163
3164 return ret;
3165}
3166
3167/*
3168 * __module_text_address - get the module whose code contains an address.
3169 * @addr: the address.
3170 *
3171 * Must be called with preempt disabled or module mutex held so that
3172 * module doesn't get freed during this.
3173 */
3174struct module *__module_text_address(unsigned long addr)
3175{
3176 struct module *mod = __module_address(addr);
3177 if (mod) {
3178 /* Make sure it's within the text section. */
3179 if (!within(addr, mod->module_init, mod->init_text_size)
3180 && !within(addr, mod->module_core, mod->core_text_size))
3181 mod = NULL;
3182 }
3183 return mod;
3184}
Tim Abbottc6b37802008-12-05 19:03:59 -05003185EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06003186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187/* Don't grab lock, we're oopsing. */
3188void print_modules(void)
3189{
3190 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07003191 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Linus Torvaldsb2311252009-06-16 11:07:14 -07003193 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02003194 /* Most callers should already have preempt disabled, but make sure */
3195 preempt_disable();
3196 list_for_each_entry_rcu(mod, &modules, list)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01003197 printk(" %s%s", mod->name, module_flags(mod, buf));
Andi Kleend72b3752008-08-30 10:09:00 +02003198 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01003199 if (last_unloaded_module[0])
3200 printk(" [last unloaded: %s]", last_unloaded_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 printk("\n");
3202}
3203
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06003205/* Generate the signature for all relevant module structures here.
3206 * If these change, we don't want to try to parse the module. */
3207void module_layout(struct module *mod,
3208 struct modversion_info *ver,
3209 struct kernel_param *kp,
3210 struct kernel_symbol *ks,
Rusty Russell8c8ef422009-03-31 13:05:34 -06003211 struct tracepoint *tp)
3212{
3213}
3214EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07003216
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -04003217#ifdef CONFIG_TRACEPOINTS
3218void module_update_tracepoints(void)
3219{
3220 struct module *mod;
3221
3222 mutex_lock(&module_mutex);
3223 list_for_each_entry(mod, &modules, list)
3224 if (!mod->taints)
3225 tracepoint_update_probe_range(mod->tracepoints,
3226 mod->tracepoints + mod->num_tracepoints);
3227 mutex_unlock(&module_mutex);
3228}
3229
3230/*
3231 * Returns 0 if current not found.
3232 * Returns 1 if current found.
3233 */
3234int module_get_iter_tracepoints(struct tracepoint_iter *iter)
3235{
3236 struct module *iter_mod;
3237 int found = 0;
3238
3239 mutex_lock(&module_mutex);
3240 list_for_each_entry(iter_mod, &modules, list) {
3241 if (!iter_mod->taints) {
3242 /*
3243 * Sorted module list
3244 */
3245 if (iter_mod < iter->module)
3246 continue;
3247 else if (iter_mod > iter->module)
3248 iter->tracepoint = NULL;
3249 found = tracepoint_get_iter_range(&iter->tracepoint,
3250 iter_mod->tracepoints,
3251 iter_mod->tracepoints
3252 + iter_mod->num_tracepoints);
3253 if (found) {
3254 iter->module = iter_mod;
3255 break;
3256 }
3257 }
3258 }
3259 mutex_unlock(&module_mutex);
3260 return found;
3261}
3262#endif