blob: b0d7c2a41bd9120c324e19eae0cf8ad8d148d1d7 [file] [log] [blame]
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (C) 2002 Richard Henderson
3 Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/moduleloader.h>
21#include <linux/init.h>
Alexey Dobriyanae84e322007-05-08 00:28:38 -070022#include <linux/kallsyms.h>
Roland McGrath6d760132007-10-16 23:26:40 -070023#include <linux/sysfs.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070024#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/slab.h>
26#include <linux/vmalloc.h>
27#include <linux/elf.h>
28#include <linux/seq_file.h>
29#include <linux/syscalls.h>
30#include <linux/fcntl.h>
31#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080032#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/cpu.h>
34#include <linux/moduleparam.h>
35#include <linux/errno.h>
36#include <linux/err.h>
37#include <linux/vermagic.h>
38#include <linux/notifier.h>
Al Virof6a57032006-10-18 01:47:25 -040039#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/stop_machine.h>
41#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070042#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080043#include <linux/mutex.h>
Jan Beulich4552d5d2006-06-26 13:57:28 +020044#include <linux/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/cacheflush.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020047#include <linux/license.h>
Christoph Lameter6d762392008-02-08 04:18:42 -080048#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#if 0
51#define DEBUGP printk
52#else
53#define DEBUGP(fmt , a...)
54#endif
55
56#ifndef ARCH_SHF_SMALL
57#define ARCH_SHF_SMALL 0
58#endif
59
60/* If this is set, the section belongs in the init part of the module */
61#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
62
Rusty Russell24da1cb2007-07-15 23:41:46 -070063/* List of modules, protected by module_mutex or preempt_disable
64 * (add/delete uses stop_machine). */
Ashutosh Naik6389a382006-03-23 03:00:46 -080065static DEFINE_MUTEX(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static LIST_HEAD(modules);
67
Rusty Russellc9a3ba52008-01-29 17:13:18 -050068/* Waiting for a module to finish initializing? */
69static DECLARE_WAIT_QUEUE_HEAD(module_wq);
70
Alan Sterne041c682006-03-27 01:16:30 -080071static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73int register_module_notifier(struct notifier_block * nb)
74{
Alan Sterne041c682006-03-27 01:16:30 -080075 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77EXPORT_SYMBOL(register_module_notifier);
78
79int unregister_module_notifier(struct notifier_block * nb)
80{
Alan Sterne041c682006-03-27 01:16:30 -080081 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83EXPORT_SYMBOL(unregister_module_notifier);
84
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -080085/* We require a truly strong try_module_get(): 0 means failure due to
86 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static inline int strong_try_module_get(struct module *mod)
88{
89 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -050090 return -EBUSY;
91 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -050093 else
94 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Florin Malitafa3ba2e82006-10-11 01:21:48 -070097static inline void add_taint_module(struct module *mod, unsigned flag)
98{
99 add_taint(flag);
100 mod->taints |= flag;
101}
102
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200103/*
104 * A thread that wants to hold a reference to a module only while it
105 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
107void __module_put_and_exit(struct module *mod, long code)
108{
109 module_put(mod);
110 do_exit(code);
111}
112EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* Find a module section: 0 means not found. */
115static unsigned int find_sec(Elf_Ehdr *hdr,
116 Elf_Shdr *sechdrs,
117 const char *secstrings,
118 const char *name)
119{
120 unsigned int i;
121
122 for (i = 1; i < hdr->e_shnum; i++)
123 /* Alloc bit cleared means "ignore it." */
124 if ((sechdrs[i].sh_flags & SHF_ALLOC)
125 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
126 return i;
127 return 0;
128}
129
130/* Provided by the linker */
131extern const struct kernel_symbol __start___ksymtab[];
132extern const struct kernel_symbol __stop___ksymtab[];
133extern const struct kernel_symbol __start___ksymtab_gpl[];
134extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800135extern const struct kernel_symbol __start___ksymtab_gpl_future[];
136extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700137extern const struct kernel_symbol __start___ksymtab_unused[];
138extern const struct kernel_symbol __stop___ksymtab_unused[];
139extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
140extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
141extern const struct kernel_symbol __start___ksymtab_gpl_future[];
142extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143extern const unsigned long __start___kcrctab[];
144extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800145extern const unsigned long __start___kcrctab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700146extern const unsigned long __start___kcrctab_unused[];
147extern const unsigned long __start___kcrctab_unused_gpl[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149#ifndef CONFIG_MODVERSIONS
150#define symversion(base, idx) NULL
151#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800152#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#endif
154
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100155/* lookup symbol in given range of kernel_symbols */
156static const struct kernel_symbol *lookup_symbol(const char *name,
157 const struct kernel_symbol *start,
158 const struct kernel_symbol *stop)
159{
160 const struct kernel_symbol *ks = start;
161 for (; ks < stop; ks++)
162 if (strcmp(ks->name, name) == 0)
163 return ks;
164 return NULL;
165}
166
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700167static void printk_unused_warning(const char *name)
168{
169 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
170 "however this module is using it.\n", name);
171 printk(KERN_WARNING "This symbol will go away in the future.\n");
172 printk(KERN_WARNING "Please evalute if this is the right api to use, "
173 "and if it really is, submit a report the linux kernel "
174 "mailinglist together with submitting your code for "
175 "inclusion.\n");
176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/* Find a symbol, return value, crc and module which owns it */
179static unsigned long __find_symbol(const char *name,
180 struct module **owner,
181 const unsigned long **crc,
182 int gplok)
183{
184 struct module *mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100185 const struct kernel_symbol *ks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Daniel Walker22a8bde2007-10-18 03:06:07 -0700187 /* Core kernel first. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 *owner = NULL;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100189 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
190 if (ks) {
191 *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
192 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100195 ks = lookup_symbol(name, __start___ksymtab_gpl,
196 __stop___ksymtab_gpl);
197 if (ks) {
198 *crc = symversion(__start___kcrctab_gpl,
199 (ks - __start___ksymtab_gpl));
200 return ks->value;
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800203 ks = lookup_symbol(name, __start___ksymtab_gpl_future,
204 __stop___ksymtab_gpl_future);
205 if (ks) {
206 if (!gplok) {
207 printk(KERN_WARNING "Symbol %s is being used "
208 "by a non-GPL module, which will not "
209 "be allowed in the future\n", name);
210 printk(KERN_WARNING "Please see the file "
211 "Documentation/feature-removal-schedule.txt "
212 "in the kernel source tree for more "
213 "details.\n");
214 }
215 *crc = symversion(__start___kcrctab_gpl_future,
216 (ks - __start___ksymtab_gpl_future));
217 return ks->value;
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700220 ks = lookup_symbol(name, __start___ksymtab_unused,
221 __stop___ksymtab_unused);
222 if (ks) {
223 printk_unused_warning(name);
224 *crc = symversion(__start___kcrctab_unused,
225 (ks - __start___ksymtab_unused));
226 return ks->value;
227 }
228
229 if (gplok)
230 ks = lookup_symbol(name, __start___ksymtab_unused_gpl,
231 __stop___ksymtab_unused_gpl);
232 if (ks) {
233 printk_unused_warning(name);
234 *crc = symversion(__start___kcrctab_unused_gpl,
235 (ks - __start___ksymtab_unused_gpl));
236 return ks->value;
237 }
238
Daniel Walker22a8bde2007-10-18 03:06:07 -0700239 /* Now try modules. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 list_for_each_entry(mod, &modules, list) {
241 *owner = mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100242 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
243 if (ks) {
244 *crc = symversion(mod->crcs, (ks - mod->syms));
245 return ks->value;
246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100249 ks = lookup_symbol(name, mod->gpl_syms,
250 mod->gpl_syms + mod->num_gpl_syms);
251 if (ks) {
252 *crc = symversion(mod->gpl_crcs,
253 (ks - mod->gpl_syms));
254 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256 }
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700257 ks = lookup_symbol(name, mod->unused_syms, mod->unused_syms + mod->num_unused_syms);
258 if (ks) {
259 printk_unused_warning(name);
260 *crc = symversion(mod->unused_crcs, (ks - mod->unused_syms));
261 return ks->value;
262 }
263
264 if (gplok) {
265 ks = lookup_symbol(name, mod->unused_gpl_syms,
266 mod->unused_gpl_syms + mod->num_unused_gpl_syms);
267 if (ks) {
268 printk_unused_warning(name);
269 *crc = symversion(mod->unused_gpl_crcs,
270 (ks - mod->unused_gpl_syms));
271 return ks->value;
272 }
273 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800274 ks = lookup_symbol(name, mod->gpl_future_syms,
275 (mod->gpl_future_syms +
276 mod->num_gpl_future_syms));
277 if (ks) {
278 if (!gplok) {
279 printk(KERN_WARNING "Symbol %s is being used "
280 "by a non-GPL module, which will not "
281 "be allowed in the future\n", name);
282 printk(KERN_WARNING "Please see the file "
283 "Documentation/feature-removal-schedule.txt "
284 "in the kernel source tree for more "
285 "details.\n");
286 }
287 *crc = symversion(mod->gpl_future_crcs,
288 (ks - mod->gpl_future_syms));
289 return ks->value;
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 DEBUGP("Failed to find symbol %s\n", name);
Christoph Lameter88173502008-02-08 04:18:41 -0800293 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/* Search for module by name: must hold module_mutex. */
297static struct module *find_module(const char *name)
298{
299 struct module *mod;
300
301 list_for_each_entry(mod, &modules, list) {
302 if (strcmp(mod->name, name) == 0)
303 return mod;
304 }
305 return NULL;
306}
307
308#ifdef CONFIG_SMP
309/* Number of blocks used and allocated. */
310static unsigned int pcpu_num_used, pcpu_num_allocated;
311/* Size of each block. -ve means used. */
312static int *pcpu_size;
313
314static int split_block(unsigned int i, unsigned short size)
315{
316 /* Reallocation required? */
317 if (pcpu_num_used + 1 > pcpu_num_allocated) {
Pekka Enberg6d4f9c52007-05-08 00:24:58 -0700318 int *new;
319
320 new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
321 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (!new)
323 return 0;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 pcpu_num_allocated *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 pcpu_size = new;
327 }
328
329 /* Insert a new subblock */
330 memmove(&pcpu_size[i+1], &pcpu_size[i],
331 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
332 pcpu_num_used++;
333
334 pcpu_size[i+1] -= size;
335 pcpu_size[i] = size;
336 return 1;
337}
338
339static inline unsigned int block_size(int val)
340{
341 if (val < 0)
342 return -val;
343 return val;
344}
345
Rusty Russell842bbaa2005-08-01 21:11:47 -0700346static void *percpu_modalloc(unsigned long size, unsigned long align,
347 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 unsigned long extra;
350 unsigned int i;
351 void *ptr;
352
Jeremy Fitzhardingeb6e35902007-05-02 19:27:12 +0200353 if (align > PAGE_SIZE) {
354 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
355 name, align, PAGE_SIZE);
356 align = PAGE_SIZE;
Rusty Russell842bbaa2005-08-01 21:11:47 -0700357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 ptr = __per_cpu_start;
360 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
361 /* Extra for alignment requirement. */
362 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
363 BUG_ON(i == 0 && extra != 0);
364
365 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
366 continue;
367
368 /* Transfer extra to previous block. */
369 if (pcpu_size[i-1] < 0)
370 pcpu_size[i-1] -= extra;
371 else
372 pcpu_size[i-1] += extra;
373 pcpu_size[i] -= extra;
374 ptr += extra;
375
376 /* Split block if warranted */
377 if (pcpu_size[i] - size > sizeof(unsigned long))
378 if (!split_block(i, size))
379 return NULL;
380
381 /* Mark allocated */
382 pcpu_size[i] = -pcpu_size[i];
383 return ptr;
384 }
385
386 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
387 size);
388 return NULL;
389}
390
391static void percpu_modfree(void *freeme)
392{
393 unsigned int i;
394 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
395
396 /* First entry is core kernel percpu data. */
397 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
398 if (ptr == freeme) {
399 pcpu_size[i] = -pcpu_size[i];
400 goto free;
401 }
402 }
403 BUG();
404
405 free:
406 /* Merge with previous? */
407 if (pcpu_size[i-1] >= 0) {
408 pcpu_size[i-1] += pcpu_size[i];
409 pcpu_num_used--;
410 memmove(&pcpu_size[i], &pcpu_size[i+1],
411 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
412 i--;
413 }
414 /* Merge with next? */
415 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
416 pcpu_size[i] += pcpu_size[i+1];
417 pcpu_num_used--;
418 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
419 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
420 }
421}
422
423static unsigned int find_pcpusec(Elf_Ehdr *hdr,
424 Elf_Shdr *sechdrs,
425 const char *secstrings)
426{
427 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
428}
429
Mike Travisdd5af902008-01-30 13:33:32 +0100430static void percpu_modcopy(void *pcpudest, const void *from, unsigned long size)
431{
432 int cpu;
433
434 for_each_possible_cpu(cpu)
435 memcpy(pcpudest + per_cpu_offset(cpu), from, size);
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438static int percpu_modinit(void)
439{
440 pcpu_num_used = 2;
441 pcpu_num_allocated = 2;
442 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
443 GFP_KERNEL);
444 /* Static in-kernel percpu data (used). */
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +0200445 pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /* Free room. */
447 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
448 if (pcpu_size[1] < 0) {
449 printk(KERN_ERR "No per-cpu room for modules.\n");
450 pcpu_num_used = 1;
451 }
452
453 return 0;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700454}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455__initcall(percpu_modinit);
456#else /* ... !CONFIG_SMP */
Rusty Russell842bbaa2005-08-01 21:11:47 -0700457static inline void *percpu_modalloc(unsigned long size, unsigned long align,
458 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 return NULL;
461}
462static inline void percpu_modfree(void *pcpuptr)
463{
464 BUG();
465}
466static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
467 Elf_Shdr *sechdrs,
468 const char *secstrings)
469{
470 return 0;
471}
472static inline void percpu_modcopy(void *pcpudst, const void *src,
473 unsigned long size)
474{
475 /* pcpusec should be 0, and size of that section should be 0. */
476 BUG_ON(size != 0);
477}
478#endif /* CONFIG_SMP */
479
Matt Domschc988d2b2005-06-23 22:05:15 -0700480#define MODINFO_ATTR(field) \
481static void setup_modinfo_##field(struct module *mod, const char *s) \
482{ \
483 mod->field = kstrdup(s, GFP_KERNEL); \
484} \
485static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
486 struct module *mod, char *buffer) \
487{ \
488 return sprintf(buffer, "%s\n", mod->field); \
489} \
490static int modinfo_##field##_exists(struct module *mod) \
491{ \
492 return mod->field != NULL; \
493} \
494static void free_modinfo_##field(struct module *mod) \
495{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700496 kfree(mod->field); \
497 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700498} \
499static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900500 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700501 .show = show_modinfo_##field, \
502 .setup = setup_modinfo_##field, \
503 .test = modinfo_##field##_exists, \
504 .free = free_modinfo_##field, \
505};
506
507MODINFO_ATTR(version);
508MODINFO_ATTR(srcversion);
509
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100510static char last_unloaded_module[MODULE_NAME_LEN+1];
511
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800512#ifdef CONFIG_MODULE_UNLOAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/* Init the unload section of the module. */
514static void module_unload_init(struct module *mod)
515{
516 unsigned int i;
517
518 INIT_LIST_HEAD(&mod->modules_which_use_me);
519 for (i = 0; i < NR_CPUS; i++)
520 local_set(&mod->ref[i].count, 0);
521 /* Hold reference count during initialization. */
Ingo Molnar39c715b2005-06-21 17:14:34 -0700522 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /* Backwards compatibility macros put refcount during init. */
524 mod->waiter = current;
525}
526
527/* modules using other modules */
528struct module_use
529{
530 struct list_head list;
531 struct module *module_which_uses;
532};
533
534/* Does a already use b? */
535static int already_uses(struct module *a, struct module *b)
536{
537 struct module_use *use;
538
539 list_for_each_entry(use, &b->modules_which_use_me, list) {
540 if (use->module_which_uses == a) {
541 DEBUGP("%s uses %s!\n", a->name, b->name);
542 return 1;
543 }
544 }
545 DEBUGP("%s does not use %s!\n", a->name, b->name);
546 return 0;
547}
548
549/* Module a uses b */
550static int use_module(struct module *a, struct module *b)
551{
552 struct module_use *use;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500553 int no_warn, err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (b == NULL || already_uses(a, b)) return 1;
556
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500557 /* If we're interrupted or time out, we fail. */
558 if (wait_event_interruptible_timeout(
559 module_wq, (err = strong_try_module_get(b)) != -EBUSY,
560 30 * HZ) <= 0) {
561 printk("%s: gave up waiting for init of module %s.\n",
562 a->name, b->name);
563 return 0;
564 }
565
566 /* If strong_try_module_get() returned a different error, we fail. */
567 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 0;
569
570 DEBUGP("Allocating new usage for %s.\n", a->name);
571 use = kmalloc(sizeof(*use), GFP_ATOMIC);
572 if (!use) {
573 printk("%s: out of memory loading\n", a->name);
574 module_put(b);
575 return 0;
576 }
577
578 use->module_which_uses = a;
579 list_add(&use->list, &b->modules_which_use_me);
Kay Sievers270a6c42007-01-18 13:26:15 +0100580 no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return 1;
582}
583
584/* Clear the unload stuff of the module. */
585static void module_unload_free(struct module *mod)
586{
587 struct module *i;
588
589 list_for_each_entry(i, &modules, list) {
590 struct module_use *use;
591
592 list_for_each_entry(use, &i->modules_which_use_me, list) {
593 if (use->module_which_uses == mod) {
594 DEBUGP("%s unusing %s\n", mod->name, i->name);
595 module_put(i);
596 list_del(&use->list);
597 kfree(use);
Kay Sievers270a6c42007-01-18 13:26:15 +0100598 sysfs_remove_link(i->holders_dir, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* There can be at most one match. */
600 break;
601 }
602 }
603 }
604}
605
606#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800607static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 int ret = (flags & O_TRUNC);
610 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800611 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return ret;
613}
614#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800615static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 return 0;
618}
619#endif /* CONFIG_MODULE_FORCE_UNLOAD */
620
621struct stopref
622{
623 struct module *mod;
624 int flags;
625 int *forced;
626};
627
628/* Whole machine is stopped with interrupts off when this runs. */
629static int __try_stop_module(void *_sref)
630{
631 struct stopref *sref = _sref;
632
633 /* If it's not unused, quit unless we are told to block. */
634 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800635 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return -EWOULDBLOCK;
637 }
638
639 /* Mark it as dying. */
640 sref->mod->state = MODULE_STATE_GOING;
641 return 0;
642}
643
644static int try_stop_module(struct module *mod, int flags, int *forced)
645{
646 struct stopref sref = { mod, flags, forced };
647
648 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
649}
650
651unsigned int module_refcount(struct module *mod)
652{
653 unsigned int i, total = 0;
654
655 for (i = 0; i < NR_CPUS; i++)
656 total += local_read(&mod->ref[i].count);
657 return total;
658}
659EXPORT_SYMBOL(module_refcount);
660
661/* This exists whether we can unload or not */
662static void free_module(struct module *mod);
663
664static void wait_for_zero_refcount(struct module *mod)
665{
Matthew Wilcoxa6550202008-02-26 10:47:18 -0500666 /* Since we might sleep for some time, release the mutex first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800667 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 for (;;) {
669 DEBUGP("Looking at refcount...\n");
670 set_current_state(TASK_UNINTERRUPTIBLE);
671 if (module_refcount(mod) == 0)
672 break;
673 schedule();
674 }
675 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800676 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800679asmlinkage long
680sys_delete_module(const char __user *name_user, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800683 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 int ret, forced = 0;
685
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800686 if (!capable(CAP_SYS_MODULE))
687 return -EPERM;
688
689 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
690 return -EFAULT;
691 name[MODULE_NAME_LEN-1] = '\0';
692
Ashutosh Naik6389a382006-03-23 03:00:46 -0800693 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return -EINTR;
695
696 mod = find_module(name);
697 if (!mod) {
698 ret = -ENOENT;
699 goto out;
700 }
701
702 if (!list_empty(&mod->modules_which_use_me)) {
703 /* Other modules depend on us: get rid of them first. */
704 ret = -EWOULDBLOCK;
705 goto out;
706 }
707
708 /* Doing init or already dying? */
709 if (mod->state != MODULE_STATE_LIVE) {
710 /* FIXME: if (force), slam module count and wake up
711 waiter --RR */
712 DEBUGP("%s already dying\n", mod->name);
713 ret = -EBUSY;
714 goto out;
715 }
716
717 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700718 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800719 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (!forced) {
721 /* This module can't be removed */
722 ret = -EBUSY;
723 goto out;
724 }
725 }
726
727 /* Set this up before setting mod->state */
728 mod->waiter = current;
729
730 /* Stop the machine so refcounts can't move and disable module. */
731 ret = try_stop_module(mod, flags, &forced);
732 if (ret != 0)
733 goto out;
734
735 /* Never wait if forced. */
736 if (!forced && module_refcount(mod) != 0)
737 wait_for_zero_refcount(mod);
738
739 /* Final destruction now noone is using it. */
740 if (mod->exit != NULL) {
Ashutosh Naik6389a382006-03-23 03:00:46 -0800741 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 mod->exit();
Ashutosh Naik6389a382006-03-23 03:00:46 -0800743 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100745 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500746 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 free_module(mod);
748
749 out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800750 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return ret;
752}
753
754static void print_unload_info(struct seq_file *m, struct module *mod)
755{
756 struct module_use *use;
757 int printed_something = 0;
758
759 seq_printf(m, " %u ", module_refcount(mod));
760
761 /* Always include a trailing , so userspace can differentiate
762 between this and the old multi-field proc format. */
763 list_for_each_entry(use, &mod->modules_which_use_me, list) {
764 printed_something = 1;
765 seq_printf(m, "%s,", use->module_which_uses->name);
766 }
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (mod->init != NULL && mod->exit == NULL) {
769 printed_something = 1;
770 seq_printf(m, "[permanent],");
771 }
772
773 if (!printed_something)
774 seq_printf(m, "-");
775}
776
777void __symbol_put(const char *symbol)
778{
779 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 const unsigned long *crc;
781
Rusty Russell24da1cb2007-07-15 23:41:46 -0700782 preempt_disable();
Christoph Lameter88173502008-02-08 04:18:41 -0800783 if (IS_ERR_VALUE(__find_symbol(symbol, &owner, &crc, 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 BUG();
785 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700786 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788EXPORT_SYMBOL(__symbol_put);
789
790void symbol_put_addr(void *addr)
791{
Trent Piepho5e376612006-05-15 09:44:06 -0700792 struct module *modaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Trent Piepho5e376612006-05-15 09:44:06 -0700794 if (core_kernel_text((unsigned long)addr))
795 return;
796
797 if (!(modaddr = module_text_address((unsigned long)addr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 BUG();
Trent Piepho5e376612006-05-15 09:44:06 -0700799 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801EXPORT_SYMBOL_GPL(symbol_put_addr);
802
803static ssize_t show_refcnt(struct module_attribute *mattr,
804 struct module *mod, char *buffer)
805{
Alexey Dobriyan256e2fd2007-08-06 23:47:45 +0400806 return sprintf(buffer, "%u\n", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809static struct module_attribute refcnt = {
Tejun Heo7b595752007-06-14 03:45:17 +0900810 .attr = { .name = "refcnt", .mode = 0444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 .show = show_refcnt,
812};
813
Al Virof6a57032006-10-18 01:47:25 -0400814void module_put(struct module *module)
815{
816 if (module) {
817 unsigned int cpu = get_cpu();
818 local_dec(&module->ref[cpu].count);
819 /* Maybe they're waiting for us to drop reference? */
820 if (unlikely(!module_is_live(module)))
821 wake_up_process(module->waiter);
822 put_cpu();
823 }
824}
825EXPORT_SYMBOL(module_put);
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827#else /* !CONFIG_MODULE_UNLOAD */
828static void print_unload_info(struct seq_file *m, struct module *mod)
829{
830 /* We don't know the usage count, or what modules are using. */
831 seq_printf(m, " - -");
832}
833
834static inline void module_unload_free(struct module *mod)
835{
836}
837
838static inline int use_module(struct module *a, struct module *b)
839{
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500840 return strong_try_module_get(b) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
843static inline void module_unload_init(struct module *mod)
844{
845}
846#endif /* CONFIG_MODULE_UNLOAD */
847
Kay Sievers1f717402006-11-24 12:15:25 +0100848static ssize_t show_initstate(struct module_attribute *mattr,
849 struct module *mod, char *buffer)
850{
851 const char *state = "unknown";
852
853 switch (mod->state) {
854 case MODULE_STATE_LIVE:
855 state = "live";
856 break;
857 case MODULE_STATE_COMING:
858 state = "coming";
859 break;
860 case MODULE_STATE_GOING:
861 state = "going";
862 break;
863 }
864 return sprintf(buffer, "%s\n", state);
865}
866
867static struct module_attribute initstate = {
Tejun Heo7b595752007-06-14 03:45:17 +0900868 .attr = { .name = "initstate", .mode = 0444 },
Kay Sievers1f717402006-11-24 12:15:25 +0100869 .show = show_initstate,
870};
871
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800872static struct module_attribute *modinfo_attrs[] = {
873 &modinfo_version,
874 &modinfo_srcversion,
Kay Sievers1f717402006-11-24 12:15:25 +0100875 &initstate,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800876#ifdef CONFIG_MODULE_UNLOAD
877 &refcnt,
878#endif
879 NULL,
880};
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882static const char vermagic[] = VERMAGIC_STRING;
883
884#ifdef CONFIG_MODVERSIONS
885static int check_version(Elf_Shdr *sechdrs,
886 unsigned int versindex,
887 const char *symname,
888 struct module *mod,
889 const unsigned long *crc)
890{
891 unsigned int i, num_versions;
892 struct modversion_info *versions;
893
894 /* Exporting module didn't supply crcs? OK, we're already tainted. */
895 if (!crc)
896 return 1;
897
898 versions = (void *) sechdrs[versindex].sh_addr;
899 num_versions = sechdrs[versindex].sh_size
900 / sizeof(struct modversion_info);
901
902 for (i = 0; i < num_versions; i++) {
903 if (strcmp(versions[i].name, symname) != 0)
904 continue;
905
906 if (versions[i].crc == *crc)
907 return 1;
908 printk("%s: disagrees about version of symbol %s\n",
909 mod->name, symname);
910 DEBUGP("Found checksum %lX vs module %lX\n",
911 *crc, versions[i].crc);
912 return 0;
913 }
914 /* Not in module's version table. OK, but that taints the kernel. */
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700915 if (!(tainted & TAINT_FORCED_MODULE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 printk("%s: no version for \"%s\" found: kernel tainted.\n",
917 mod->name, symname);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700918 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return 1;
920}
921
922static inline int check_modstruct_version(Elf_Shdr *sechdrs,
923 unsigned int versindex,
924 struct module *mod)
925{
926 const unsigned long *crc;
927 struct module *owner;
928
Christoph Lameter88173502008-02-08 04:18:41 -0800929 if (IS_ERR_VALUE(__find_symbol("struct_module",
930 &owner, &crc, 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 BUG();
932 return check_version(sechdrs, versindex, "struct_module", mod,
933 crc);
934}
935
936/* First part is kernel version, which we ignore. */
937static inline int same_magic(const char *amagic, const char *bmagic)
938{
939 amagic += strcspn(amagic, " ");
940 bmagic += strcspn(bmagic, " ");
941 return strcmp(amagic, bmagic) == 0;
942}
943#else
944static inline int check_version(Elf_Shdr *sechdrs,
945 unsigned int versindex,
946 const char *symname,
947 struct module *mod,
948 const unsigned long *crc)
949{
950 return 1;
951}
952
953static inline int check_modstruct_version(Elf_Shdr *sechdrs,
954 unsigned int versindex,
955 struct module *mod)
956{
957 return 1;
958}
959
960static inline int same_magic(const char *amagic, const char *bmagic)
961{
962 return strcmp(amagic, bmagic) == 0;
963}
964#endif /* CONFIG_MODVERSIONS */
965
966/* Resolve a symbol for this module. I.e. if we find one, record usage.
967 Must be holding module_mutex. */
968static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
969 unsigned int versindex,
970 const char *name,
971 struct module *mod)
972{
973 struct module *owner;
974 unsigned long ret;
975 const unsigned long *crc;
976
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700977 ret = __find_symbol(name, &owner, &crc,
978 !(mod->taints & TAINT_PROPRIETARY_MODULE));
Christoph Lameter88173502008-02-08 04:18:41 -0800979 if (!IS_ERR_VALUE(ret)) {
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800980 /* use_module can fail due to OOM,
981 or module initialization or unloading */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (!check_version(sechdrs, versindex, name, mod, crc) ||
983 !use_module(mod, owner))
Christoph Lameter88173502008-02-08 04:18:41 -0800984 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return ret;
987}
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989/*
990 * /sys/module/foo/sections stuff
991 * J. Corbet <corbet@lwn.net>
992 */
Kay Sievers120fc3d2008-02-21 00:33:20 +0100993#if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
Rusty Russella58730c2008-03-13 09:03:44 +0000994struct module_sect_attr
995{
996 struct module_attribute mattr;
997 char *name;
998 unsigned long address;
999};
1000
1001struct module_sect_attrs
1002{
1003 struct attribute_group grp;
1004 unsigned int nsections;
1005 struct module_sect_attr attrs[0];
1006};
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008static ssize_t module_sect_show(struct module_attribute *mattr,
1009 struct module *mod, char *buf)
1010{
1011 struct module_sect_attr *sattr =
1012 container_of(mattr, struct module_sect_attr, mattr);
1013 return sprintf(buf, "0x%lx\n", sattr->address);
1014}
1015
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001016static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1017{
Rusty Russella58730c2008-03-13 09:03:44 +00001018 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001019
1020 for (section = 0; section < sect_attrs->nsections; section++)
1021 kfree(sect_attrs->attrs[section].name);
1022 kfree(sect_attrs);
1023}
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025static void add_sect_attrs(struct module *mod, unsigned int nsect,
1026 char *secstrings, Elf_Shdr *sechdrs)
1027{
1028 unsigned int nloaded = 0, i, size[2];
1029 struct module_sect_attrs *sect_attrs;
1030 struct module_sect_attr *sattr;
1031 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* Count loaded sections and allocate structures */
1034 for (i = 0; i < nsect; i++)
1035 if (sechdrs[i].sh_flags & SHF_ALLOC)
1036 nloaded++;
1037 size[0] = ALIGN(sizeof(*sect_attrs)
1038 + nloaded * sizeof(sect_attrs->attrs[0]),
1039 sizeof(sect_attrs->grp.attrs[0]));
1040 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001041 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1042 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return;
1044
1045 /* Setup section attributes. */
1046 sect_attrs->grp.name = "sections";
1047 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1048
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001049 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 sattr = &sect_attrs->attrs[0];
1051 gattr = &sect_attrs->grp.attrs[0];
1052 for (i = 0; i < nsect; i++) {
1053 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1054 continue;
1055 sattr->address = sechdrs[i].sh_addr;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001056 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1057 GFP_KERNEL);
1058 if (sattr->name == NULL)
1059 goto out;
1060 sect_attrs->nsections++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 sattr->mattr.show = module_sect_show;
1062 sattr->mattr.store = NULL;
1063 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 sattr->mattr.attr.mode = S_IRUGO;
1065 *(gattr++) = &(sattr++)->mattr.attr;
1066 }
1067 *gattr = NULL;
1068
1069 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1070 goto out;
1071
1072 mod->sect_attrs = sect_attrs;
1073 return;
1074 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001075 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
1078static void remove_sect_attrs(struct module *mod)
1079{
1080 if (mod->sect_attrs) {
1081 sysfs_remove_group(&mod->mkobj.kobj,
1082 &mod->sect_attrs->grp);
1083 /* We are positive that no one is using any sect attrs
1084 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001085 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 mod->sect_attrs = NULL;
1087 }
1088}
1089
Roland McGrath6d760132007-10-16 23:26:40 -07001090/*
1091 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1092 */
1093
1094struct module_notes_attrs {
1095 struct kobject *dir;
1096 unsigned int notes;
1097 struct bin_attribute attrs[0];
1098};
1099
1100static ssize_t module_notes_read(struct kobject *kobj,
1101 struct bin_attribute *bin_attr,
1102 char *buf, loff_t pos, size_t count)
1103{
1104 /*
1105 * The caller checked the pos and count against our size.
1106 */
1107 memcpy(buf, bin_attr->private + pos, count);
1108 return count;
1109}
1110
1111static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1112 unsigned int i)
1113{
1114 if (notes_attrs->dir) {
1115 while (i-- > 0)
1116 sysfs_remove_bin_file(notes_attrs->dir,
1117 &notes_attrs->attrs[i]);
1118 kobject_del(notes_attrs->dir);
1119 }
1120 kfree(notes_attrs);
1121}
1122
1123static void add_notes_attrs(struct module *mod, unsigned int nsect,
1124 char *secstrings, Elf_Shdr *sechdrs)
1125{
1126 unsigned int notes, loaded, i;
1127 struct module_notes_attrs *notes_attrs;
1128 struct bin_attribute *nattr;
1129
1130 /* Count notes sections and allocate structures. */
1131 notes = 0;
1132 for (i = 0; i < nsect; i++)
1133 if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
1134 (sechdrs[i].sh_type == SHT_NOTE))
1135 ++notes;
1136
1137 if (notes == 0)
1138 return;
1139
1140 notes_attrs = kzalloc(sizeof(*notes_attrs)
1141 + notes * sizeof(notes_attrs->attrs[0]),
1142 GFP_KERNEL);
1143 if (notes_attrs == NULL)
1144 return;
1145
1146 notes_attrs->notes = notes;
1147 nattr = &notes_attrs->attrs[0];
1148 for (loaded = i = 0; i < nsect; ++i) {
1149 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1150 continue;
1151 if (sechdrs[i].sh_type == SHT_NOTE) {
1152 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1153 nattr->attr.mode = S_IRUGO;
1154 nattr->size = sechdrs[i].sh_size;
1155 nattr->private = (void *) sechdrs[i].sh_addr;
1156 nattr->read = module_notes_read;
1157 ++nattr;
1158 }
1159 ++loaded;
1160 }
1161
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001162 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001163 if (!notes_attrs->dir)
1164 goto out;
1165
1166 for (i = 0; i < notes; ++i)
1167 if (sysfs_create_bin_file(notes_attrs->dir,
1168 &notes_attrs->attrs[i]))
1169 goto out;
1170
1171 mod->notes_attrs = notes_attrs;
1172 return;
1173
1174 out:
1175 free_notes_attrs(notes_attrs, i);
1176}
1177
1178static void remove_notes_attrs(struct module *mod)
1179{
1180 if (mod->notes_attrs)
1181 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1182}
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1187 char *sectstrings, Elf_Shdr *sechdrs)
1188{
1189}
1190
1191static inline void remove_sect_attrs(struct module *mod)
1192{
1193}
Roland McGrath6d760132007-10-16 23:26:40 -07001194
1195static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1196 char *sectstrings, Elf_Shdr *sechdrs)
1197{
1198}
1199
1200static inline void remove_notes_attrs(struct module *mod)
1201{
1202}
Kay Sievers120fc3d2008-02-21 00:33:20 +01001203#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Randy Dunlapef665c12007-02-13 15:19:06 -08001205#ifdef CONFIG_SYSFS
1206int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001207{
1208 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001209 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001210 int error = 0;
1211 int i;
1212
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001213 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1214 (ARRAY_SIZE(modinfo_attrs) + 1)),
1215 GFP_KERNEL);
1216 if (!mod->modinfo_attrs)
1217 return -ENOMEM;
1218
1219 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001220 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1221 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001222 (attr->test && attr->test(mod))) {
1223 memcpy(temp_attr, attr, sizeof(*temp_attr));
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001224 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1225 ++temp_attr;
1226 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001227 }
1228 return error;
1229}
1230
Randy Dunlapef665c12007-02-13 15:19:06 -08001231void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001232{
1233 struct module_attribute *attr;
1234 int i;
1235
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001236 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1237 /* pick a field to test for end of list */
1238 if (!attr->attr.name)
1239 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001240 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001241 if (attr->free)
1242 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001243 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001244 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001245}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Randy Dunlapef665c12007-02-13 15:19:06 -08001247int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
1249 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001250 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001252 if (!module_sysfs_initialized) {
1253 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001254 mod->name);
1255 err = -EINVAL;
1256 goto out;
1257 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001258
1259 kobj = kset_find_obj(module_kset, mod->name);
1260 if (kobj) {
1261 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1262 kobject_put(kobj);
1263 err = -EINVAL;
1264 goto out;
1265 }
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001268
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001269 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1270 mod->mkobj.kobj.kset = module_kset;
1271 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1272 "%s", mod->name);
1273 if (err)
1274 kobject_put(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001275
Kay Sievers97c146e2007-11-29 23:46:11 +01001276 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001277out:
1278 return err;
1279}
1280
Randy Dunlapef665c12007-02-13 15:19:06 -08001281int mod_sysfs_setup(struct module *mod,
Kay Sievers270a6c42007-01-18 13:26:15 +01001282 struct kernel_param *kparam,
1283 unsigned int num_params)
1284{
1285 int err;
1286
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001287 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001288 if (!mod->holders_dir) {
1289 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001290 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001291 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 err = module_param_sysfs_setup(mod, kparam, num_params);
1294 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001295 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Matt Domschc988d2b2005-06-23 22:05:15 -07001297 err = module_add_modinfo_attrs(mod);
1298 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001299 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001300
Kay Sieverse17e0f52006-11-24 12:15:25 +01001301 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return 0;
1303
Kay Sieverse17e0f52006-11-24 12:15:25 +01001304out_unreg_param:
1305 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001306out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001307 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001308out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001309 kobject_put(&mod->mkobj.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return err;
1311}
Randy Dunlapef665c12007-02-13 15:19:06 -08001312#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314static void mod_kobject_remove(struct module *mod)
1315{
Matt Domschc988d2b2005-06-23 22:05:15 -07001316 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001318 kobject_put(mod->mkobj.drivers_dir);
1319 kobject_put(mod->holders_dir);
1320 kobject_put(&mod->mkobj.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323/*
Rusty Russellbb9d3d52008-01-29 17:13:21 -05001324 * link the module with the whole machine is stopped with interrupts off
1325 * - this defends against kallsyms not taking locks
1326 */
1327static int __link_module(void *_mod)
1328{
1329 struct module *mod = _mod;
1330 list_add(&mod->list, &modules);
1331 return 0;
1332}
1333
1334/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 * unlink the module with the whole machine is stopped with interrupts off
1336 * - this defends against kallsyms not taking locks
1337 */
1338static int __unlink_module(void *_mod)
1339{
1340 struct module *mod = _mod;
1341 list_del(&mod->list);
1342 return 0;
1343}
1344
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001345/* Free a module, remove from lists, etc (must hold module_mutex). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346static void free_module(struct module *mod)
1347{
1348 /* Delete from various lists */
1349 stop_machine_run(__unlink_module, mod, NR_CPUS);
Roland McGrath6d760132007-10-16 23:26:40 -07001350 remove_notes_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 remove_sect_attrs(mod);
1352 mod_kobject_remove(mod);
1353
Jan Beulich4552d5d2006-06-26 13:57:28 +02001354 unwind_remove_table(mod->unwind_info, 0);
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 /* Arch-specific cleanup. */
1357 module_arch_cleanup(mod);
1358
1359 /* Module unload stuff */
1360 module_unload_free(mod);
1361
1362 /* This may be NULL, but that's OK */
1363 module_free(mod, mod->module_init);
1364 kfree(mod->args);
1365 if (mod->percpu)
1366 percpu_modfree(mod->percpu);
1367
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001368 /* Free lock-classes: */
1369 lockdep_free_key_range(mod->module_core, mod->core_size);
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 /* Finally, free the core (containing the module structure) */
1372 module_free(mod, mod->module_core);
1373}
1374
1375void *__symbol_get(const char *symbol)
1376{
1377 struct module *owner;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001378 unsigned long value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 const unsigned long *crc;
1380
Rusty Russell24da1cb2007-07-15 23:41:46 -07001381 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 value = __find_symbol(symbol, &owner, &crc, 1);
Christoph Lameter88173502008-02-08 04:18:41 -08001383 if (IS_ERR_VALUE(value))
1384 value = 0;
1385 else if (strong_try_module_get(owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 value = 0;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001387 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 return (void *)value;
1390}
1391EXPORT_SYMBOL_GPL(__symbol_get);
1392
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001393/*
1394 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001395 * in the kernel or in some other module's exported symbol table.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001396 */
1397static int verify_export_symbols(struct module *mod)
1398{
1399 const char *name = NULL;
1400 unsigned long i, ret = 0;
1401 struct module *owner;
1402 const unsigned long *crc;
1403
1404 for (i = 0; i < mod->num_syms; i++)
Christoph Lameter88173502008-02-08 04:18:41 -08001405 if (!IS_ERR_VALUE(__find_symbol(mod->syms[i].name,
1406 &owner, &crc, 1))) {
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001407 name = mod->syms[i].name;
1408 ret = -ENOEXEC;
1409 goto dup;
1410 }
1411
1412 for (i = 0; i < mod->num_gpl_syms; i++)
Christoph Lameter88173502008-02-08 04:18:41 -08001413 if (!IS_ERR_VALUE(__find_symbol(mod->gpl_syms[i].name,
1414 &owner, &crc, 1))) {
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001415 name = mod->gpl_syms[i].name;
1416 ret = -ENOEXEC;
1417 goto dup;
1418 }
1419
1420dup:
1421 if (ret)
1422 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1423 mod->name, name, module_name(owner));
1424
1425 return ret;
1426}
1427
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001428/* Change all symbols so that st_value encodes the pointer directly. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429static int simplify_symbols(Elf_Shdr *sechdrs,
1430 unsigned int symindex,
1431 const char *strtab,
1432 unsigned int versindex,
1433 unsigned int pcpuindex,
1434 struct module *mod)
1435{
1436 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1437 unsigned long secbase;
1438 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1439 int ret = 0;
1440
1441 for (i = 1; i < n; i++) {
1442 switch (sym[i].st_shndx) {
1443 case SHN_COMMON:
1444 /* We compiled with -fno-common. These are not
1445 supposed to happen. */
1446 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1447 printk("%s: please compile with -fno-common\n",
1448 mod->name);
1449 ret = -ENOEXEC;
1450 break;
1451
1452 case SHN_ABS:
1453 /* Don't need to do anything */
1454 DEBUGP("Absolute symbol: 0x%08lx\n",
1455 (long)sym[i].st_value);
1456 break;
1457
1458 case SHN_UNDEF:
1459 sym[i].st_value
1460 = resolve_symbol(sechdrs, versindex,
1461 strtab + sym[i].st_name, mod);
1462
1463 /* Ok if resolved. */
Christoph Lameter88173502008-02-08 04:18:41 -08001464 if (!IS_ERR_VALUE(sym[i].st_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 break;
1466 /* Ok if weak. */
1467 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1468 break;
1469
1470 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1471 mod->name, strtab + sym[i].st_name);
1472 ret = -ENOENT;
1473 break;
1474
1475 default:
1476 /* Divert to percpu allocation if a percpu var. */
1477 if (sym[i].st_shndx == pcpuindex)
1478 secbase = (unsigned long)mod->percpu;
1479 else
1480 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1481 sym[i].st_value += secbase;
1482 break;
1483 }
1484 }
1485
1486 return ret;
1487}
1488
1489/* Update size with this section: return offset. */
1490static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1491{
1492 long ret;
1493
1494 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1495 *size = ret + sechdr->sh_size;
1496 return ret;
1497}
1498
1499/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1500 might -- code, read-only data, read-write data, small data. Tally
1501 sizes, and place the offsets into sh_entsize fields: high bit means it
1502 belongs in init. */
1503static void layout_sections(struct module *mod,
1504 const Elf_Ehdr *hdr,
1505 Elf_Shdr *sechdrs,
1506 const char *secstrings)
1507{
1508 static unsigned long const masks[][2] = {
1509 /* NOTE: all executable code must be the first section
1510 * in this array; otherwise modify the text_size
1511 * finder in the two loops below */
1512 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1513 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1514 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1515 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1516 };
1517 unsigned int m, i;
1518
1519 for (i = 0; i < hdr->e_shnum; i++)
1520 sechdrs[i].sh_entsize = ~0UL;
1521
1522 DEBUGP("Core section allocation order:\n");
1523 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1524 for (i = 0; i < hdr->e_shnum; ++i) {
1525 Elf_Shdr *s = &sechdrs[i];
1526
1527 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1528 || (s->sh_flags & masks[m][1])
1529 || s->sh_entsize != ~0UL
1530 || strncmp(secstrings + s->sh_name,
1531 ".init", 5) == 0)
1532 continue;
1533 s->sh_entsize = get_offset(&mod->core_size, s);
1534 DEBUGP("\t%s\n", secstrings + s->sh_name);
1535 }
1536 if (m == 0)
1537 mod->core_text_size = mod->core_size;
1538 }
1539
1540 DEBUGP("Init section allocation order:\n");
1541 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1542 for (i = 0; i < hdr->e_shnum; ++i) {
1543 Elf_Shdr *s = &sechdrs[i];
1544
1545 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1546 || (s->sh_flags & masks[m][1])
1547 || s->sh_entsize != ~0UL
1548 || strncmp(secstrings + s->sh_name,
1549 ".init", 5) != 0)
1550 continue;
1551 s->sh_entsize = (get_offset(&mod->init_size, s)
1552 | INIT_OFFSET_MASK);
1553 DEBUGP("\t%s\n", secstrings + s->sh_name);
1554 }
1555 if (m == 0)
1556 mod->init_text_size = mod->init_size;
1557 }
1558}
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560static void set_license(struct module *mod, const char *license)
1561{
1562 if (!license)
1563 license = "unspecified";
1564
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001565 if (!license_is_gpl_compatible(license)) {
1566 if (!(tainted & TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07001567 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001568 "kernel.\n", mod->name, license);
1569 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571}
1572
1573/* Parse tag=value strings from .modinfo section */
1574static char *next_string(char *string, unsigned long *secsize)
1575{
1576 /* Skip non-zero chars */
1577 while (string[0]) {
1578 string++;
1579 if ((*secsize)-- <= 1)
1580 return NULL;
1581 }
1582
1583 /* Skip any zero padding. */
1584 while (!string[0]) {
1585 string++;
1586 if ((*secsize)-- <= 1)
1587 return NULL;
1588 }
1589 return string;
1590}
1591
1592static char *get_modinfo(Elf_Shdr *sechdrs,
1593 unsigned int info,
1594 const char *tag)
1595{
1596 char *p;
1597 unsigned int taglen = strlen(tag);
1598 unsigned long size = sechdrs[info].sh_size;
1599
1600 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1601 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1602 return p + taglen + 1;
1603 }
1604 return NULL;
1605}
1606
Matt Domschc988d2b2005-06-23 22:05:15 -07001607static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1608 unsigned int infoindex)
1609{
1610 struct module_attribute *attr;
1611 int i;
1612
1613 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1614 if (attr->setup)
1615 attr->setup(mod,
1616 get_modinfo(sechdrs,
1617 infoindex,
1618 attr->attr.name));
1619 }
1620}
Matt Domschc988d2b2005-06-23 22:05:15 -07001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622#ifdef CONFIG_KALLSYMS
Alexey Dobriyanea078902007-05-08 00:28:39 -07001623static int is_exported(const char *name, const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001625 if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1626 return 1;
1627 else
Jesper Juhlf867d2a2006-06-25 05:47:09 -07001628 if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return 1;
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001630 else
1631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
1634/* As per nm */
1635static char elf_type(const Elf_Sym *sym,
1636 Elf_Shdr *sechdrs,
1637 const char *secstrings,
1638 struct module *mod)
1639{
1640 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1641 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1642 return 'v';
1643 else
1644 return 'w';
1645 }
1646 if (sym->st_shndx == SHN_UNDEF)
1647 return 'U';
1648 if (sym->st_shndx == SHN_ABS)
1649 return 'a';
1650 if (sym->st_shndx >= SHN_LORESERVE)
1651 return '?';
1652 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1653 return 't';
1654 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1655 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1656 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1657 return 'r';
1658 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1659 return 'g';
1660 else
1661 return 'd';
1662 }
1663 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1664 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1665 return 's';
1666 else
1667 return 'b';
1668 }
1669 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1670 ".debug", strlen(".debug")) == 0)
1671 return 'n';
1672 return '?';
1673}
1674
1675static void add_kallsyms(struct module *mod,
1676 Elf_Shdr *sechdrs,
1677 unsigned int symindex,
1678 unsigned int strindex,
1679 const char *secstrings)
1680{
1681 unsigned int i;
1682
1683 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1684 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1685 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1686
1687 /* Set types up while we still have access to sections. */
1688 for (i = 0; i < mod->num_symtab; i++)
1689 mod->symtab[i].st_info
1690 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1691}
1692#else
1693static inline void add_kallsyms(struct module *mod,
1694 Elf_Shdr *sechdrs,
1695 unsigned int symindex,
1696 unsigned int strindex,
1697 const char *secstrings)
1698{
1699}
1700#endif /* CONFIG_KALLSYMS */
1701
1702/* Allocate and load the module: note that size of section 0 is always
1703 zero, and we rely on this for optional sections. */
1704static struct module *load_module(void __user *umod,
1705 unsigned long len,
1706 const char __user *uargs)
1707{
1708 Elf_Ehdr *hdr;
1709 Elf_Shdr *sechdrs;
1710 char *secstrings, *args, *modmagic, *strtab = NULL;
Andrew Morton84860f92006-06-28 04:26:46 -07001711 unsigned int i;
1712 unsigned int symindex = 0;
1713 unsigned int strindex = 0;
1714 unsigned int setupindex;
1715 unsigned int exindex;
1716 unsigned int exportindex;
1717 unsigned int modindex;
1718 unsigned int obsparmindex;
1719 unsigned int infoindex;
1720 unsigned int gplindex;
1721 unsigned int crcindex;
1722 unsigned int gplcrcindex;
1723 unsigned int versindex;
1724 unsigned int pcpuindex;
1725 unsigned int gplfutureindex;
1726 unsigned int gplfuturecrcindex;
1727 unsigned int unwindex = 0;
1728 unsigned int unusedindex;
1729 unsigned int unusedcrcindex;
1730 unsigned int unusedgplindex;
1731 unsigned int unusedgplcrcindex;
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001732 unsigned int markersindex;
1733 unsigned int markersstringsindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 struct module *mod;
1735 long err = 0;
1736 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1737 struct exception_table_entry *extable;
Thomas Koeller378bac82005-09-06 15:17:11 -07001738 mm_segment_t old_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1741 umod, len, uargs);
1742 if (len < sizeof(*hdr))
1743 return ERR_PTR(-ENOEXEC);
1744
1745 /* Suck in entire file: we'll want most of it. */
1746 /* vmalloc barfs on "unusual" numbers. Check here */
1747 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1748 return ERR_PTR(-ENOMEM);
1749 if (copy_from_user(hdr, umod, len) != 0) {
1750 err = -EFAULT;
1751 goto free_hdr;
1752 }
1753
1754 /* Sanity checks against insmoding binaries or wrong arch,
1755 weird elf version */
1756 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1757 || hdr->e_type != ET_REL
1758 || !elf_check_arch(hdr)
1759 || hdr->e_shentsize != sizeof(*sechdrs)) {
1760 err = -ENOEXEC;
1761 goto free_hdr;
1762 }
1763
1764 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1765 goto truncated;
1766
1767 /* Convenience variables */
1768 sechdrs = (void *)hdr + hdr->e_shoff;
1769 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1770 sechdrs[0].sh_addr = 0;
1771
1772 for (i = 1; i < hdr->e_shnum; i++) {
1773 if (sechdrs[i].sh_type != SHT_NOBITS
1774 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1775 goto truncated;
1776
1777 /* Mark all sections sh_addr with their address in the
1778 temporary image. */
1779 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1780
1781 /* Internal symbols and strings. */
1782 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1783 symindex = i;
1784 strindex = sechdrs[i].sh_link;
1785 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1786 }
1787#ifndef CONFIG_MODULE_UNLOAD
1788 /* Don't load .exit sections */
1789 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1790 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1791#endif
1792 }
1793
1794 modindex = find_sec(hdr, sechdrs, secstrings,
1795 ".gnu.linkonce.this_module");
1796 if (!modindex) {
1797 printk(KERN_WARNING "No module found in object\n");
1798 err = -ENOEXEC;
1799 goto free_hdr;
1800 }
1801 mod = (void *)sechdrs[modindex].sh_addr;
1802
1803 if (symindex == 0) {
1804 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1805 mod->name);
1806 err = -ENOEXEC;
1807 goto free_hdr;
1808 }
1809
1810 /* Optional sections */
1811 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1812 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001813 gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001814 unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
1815 unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1817 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001818 gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001819 unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
1820 unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1822 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1823 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1824 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1825 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1826 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
Jan Beulich4552d5d2006-06-26 13:57:28 +02001827#ifdef ARCH_UNWIND_SECTION_NAME
1828 unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
1829#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 /* Don't keep modinfo section */
1832 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1833#ifdef CONFIG_KALLSYMS
1834 /* Keep symbol and string tables for decoding later. */
1835 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1836 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1837#endif
Jan Beulich4552d5d2006-06-26 13:57:28 +02001838 if (unwindex)
1839 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 /* Check module struct version now, before we try to use module. */
1842 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1843 err = -ENOEXEC;
1844 goto free_hdr;
1845 }
1846
1847 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1848 /* This is allowed: modprobe --force will invalidate it. */
1849 if (!modmagic) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001850 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1852 mod->name);
1853 } else if (!same_magic(modmagic, vermagic)) {
1854 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1855 mod->name, modmagic, vermagic);
1856 err = -ENOEXEC;
1857 goto free_hdr;
1858 }
1859
1860 /* Now copy in args */
Davi Arnaut24277dd2006-03-24 03:18:43 -08001861 args = strndup_user(uargs, ~0UL >> 1);
1862 if (IS_ERR(args)) {
1863 err = PTR_ERR(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 goto free_hdr;
1865 }
Andrew Morton8e08b752006-02-07 12:58:45 -08001866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 if (find_module(mod->name)) {
1868 err = -EEXIST;
1869 goto free_mod;
1870 }
1871
1872 mod->state = MODULE_STATE_COMING;
1873
1874 /* Allow arches to frob section contents and sizes. */
1875 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1876 if (err < 0)
1877 goto free_mod;
1878
1879 if (pcpuindex) {
1880 /* We have a special allocation for this section. */
1881 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
Rusty Russell842bbaa2005-08-01 21:11:47 -07001882 sechdrs[pcpuindex].sh_addralign,
1883 mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 if (!percpu) {
1885 err = -ENOMEM;
1886 goto free_mod;
1887 }
1888 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1889 mod->percpu = percpu;
1890 }
1891
1892 /* Determine total sizes, and put offsets in sh_entsize. For now
1893 this is done generically; there doesn't appear to be any
1894 special cases for the architectures. */
1895 layout_sections(mod, hdr, sechdrs, secstrings);
1896
1897 /* Do the allocs. */
1898 ptr = module_alloc(mod->core_size);
1899 if (!ptr) {
1900 err = -ENOMEM;
1901 goto free_percpu;
1902 }
1903 memset(ptr, 0, mod->core_size);
1904 mod->module_core = ptr;
1905
1906 ptr = module_alloc(mod->init_size);
1907 if (!ptr && mod->init_size) {
1908 err = -ENOMEM;
1909 goto free_core;
1910 }
1911 memset(ptr, 0, mod->init_size);
1912 mod->module_init = ptr;
1913
1914 /* Transfer each section which specifies SHF_ALLOC */
1915 DEBUGP("final section addresses:\n");
1916 for (i = 0; i < hdr->e_shnum; i++) {
1917 void *dest;
1918
1919 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1920 continue;
1921
1922 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1923 dest = mod->module_init
1924 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1925 else
1926 dest = mod->module_core + sechdrs[i].sh_entsize;
1927
1928 if (sechdrs[i].sh_type != SHT_NOBITS)
1929 memcpy(dest, (void *)sechdrs[i].sh_addr,
1930 sechdrs[i].sh_size);
1931 /* Update sh_addr to point to copy in image. */
1932 sechdrs[i].sh_addr = (unsigned long)dest;
1933 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1934 }
1935 /* Module has been moved. */
1936 mod = (void *)sechdrs[modindex].sh_addr;
1937
1938 /* Now we've moved module, initialize linked lists, etc. */
1939 module_unload_init(mod);
1940
Kay Sievers97c146e2007-11-29 23:46:11 +01001941 /* add kobject, so we can reference it. */
Akinobu Mitad58ae672007-10-16 23:30:27 -07001942 err = mod_sysfs_init(mod);
1943 if (err)
Kay Sievers97c146e2007-11-29 23:46:11 +01001944 goto free_unload;
Kay Sievers270a6c42007-01-18 13:26:15 +01001945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 /* Set up license info based on the info section */
1947 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1948
Pavel Roskin9b37ccf2008-02-28 17:11:02 -05001949 /*
1950 * ndiswrapper is under GPL by itself, but loads proprietary modules.
1951 * Don't use add_taint_module(), as it would prevent ndiswrapper from
1952 * using GPL-only symbols it needs.
1953 */
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001954 if (strcmp(mod->name, "ndiswrapper") == 0)
Pavel Roskin9b37ccf2008-02-28 17:11:02 -05001955 add_taint(TAINT_PROPRIETARY_MODULE);
1956
1957 /* driverloader was caught wrongly pretending to be under GPL */
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001958 if (strcmp(mod->name, "driverloader") == 0)
1959 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Dave Jones9841d61d2006-01-08 01:03:41 -08001960
Matt Domschc988d2b2005-06-23 22:05:15 -07001961 /* Set up MODINFO_ATTR fields */
1962 setup_modinfo(mod, sechdrs, infoindex);
Matt Domschc988d2b2005-06-23 22:05:15 -07001963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 /* Fix up syms, so that st_value is a pointer to location. */
1965 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1966 mod);
1967 if (err < 0)
1968 goto cleanup;
1969
1970 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1971 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1972 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1973 if (crcindex)
1974 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1975 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1976 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1977 if (gplcrcindex)
1978 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001979 mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
1980 sizeof(*mod->gpl_future_syms);
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001981 mod->num_unused_syms = sechdrs[unusedindex].sh_size /
1982 sizeof(*mod->unused_syms);
1983 mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
1984 sizeof(*mod->unused_gpl_syms);
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001985 mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
1986 if (gplfuturecrcindex)
1987 mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001989 mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
1990 if (unusedcrcindex)
1991 mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
1992 mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
1993 if (unusedgplcrcindex)
1994 mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996#ifdef CONFIG_MODVERSIONS
Daniel Walker22a8bde2007-10-18 03:06:07 -07001997 if ((mod->num_syms && !crcindex) ||
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001998 (mod->num_gpl_syms && !gplcrcindex) ||
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001999 (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
2000 (mod->num_unused_syms && !unusedcrcindex) ||
2001 (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 printk(KERN_WARNING "%s: No versions for exported symbols."
2003 " Tainting kernel.\n", mod->name);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002004 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002007 markersindex = find_sec(hdr, sechdrs, secstrings, "__markers");
2008 markersstringsindex = find_sec(hdr, sechdrs, secstrings,
2009 "__markers_strings");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 /* Now do relocations. */
2012 for (i = 1; i < hdr->e_shnum; i++) {
2013 const char *strtab = (char *)sechdrs[strindex].sh_addr;
2014 unsigned int info = sechdrs[i].sh_info;
2015
2016 /* Not a valid relocation section? */
2017 if (info >= hdr->e_shnum)
2018 continue;
2019
2020 /* Don't bother with non-allocated sections */
2021 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
2022 continue;
2023
2024 if (sechdrs[i].sh_type == SHT_REL)
2025 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
2026 else if (sechdrs[i].sh_type == SHT_RELA)
2027 err = apply_relocate_add(sechdrs, strtab, symindex, i,
2028 mod);
2029 if (err < 0)
2030 goto cleanup;
2031 }
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002032#ifdef CONFIG_MARKERS
2033 mod->markers = (void *)sechdrs[markersindex].sh_addr;
2034 mod->num_markers =
2035 sechdrs[markersindex].sh_size / sizeof(*mod->markers);
2036#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002038 /* Find duplicate symbols */
2039 err = verify_export_symbols(mod);
2040
2041 if (err < 0)
2042 goto cleanup;
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 /* Set up and sort exception table */
2045 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
2046 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
2047 sort_extable(extable, extable + mod->num_exentries);
2048
2049 /* Finally, copy percpu area over. */
2050 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
2051 sechdrs[pcpuindex].sh_size);
2052
2053 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
2054
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002055#ifdef CONFIG_MARKERS
2056 if (!mod->taints)
2057 marker_update_probe_range(mod->markers,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -08002058 mod->markers + mod->num_markers);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002059#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 err = module_finalize(hdr, sechdrs, mod);
2061 if (err < 0)
2062 goto cleanup;
2063
Thomas Koeller378bac82005-09-06 15:17:11 -07002064 /* flush the icache in correct context */
2065 old_fs = get_fs();
2066 set_fs(KERNEL_DS);
2067
2068 /*
2069 * Flush the instruction cache, since we've played with text.
2070 * Do it before processing of module parameters, so the module
2071 * can provide parameter accessor functions of its own.
2072 */
2073 if (mod->module_init)
2074 flush_icache_range((unsigned long)mod->module_init,
2075 (unsigned long)mod->module_init
2076 + mod->init_size);
2077 flush_icache_range((unsigned long)mod->module_core,
2078 (unsigned long)mod->module_core + mod->core_size);
2079
2080 set_fs(old_fs);
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 mod->args = args;
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002083 if (obsparmindex)
2084 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2085 mod->name);
2086
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002087 /* Now sew it into the lists so we can get lockdep and oops
2088 * info during argument parsing. Noone should access us, since
2089 * strong_try_module_get() will fail. */
2090 stop_machine_run(__link_module, mod, NR_CPUS);
2091
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002092 /* Size of section 0 is 0, so this works well if no params */
2093 err = parse_args(mod->name, mod->args,
2094 (struct kernel_param *)
2095 sechdrs[setupindex].sh_addr,
2096 sechdrs[setupindex].sh_size
2097 / sizeof(struct kernel_param),
2098 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002100 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Daniel Walker22a8bde2007-10-18 03:06:07 -07002102 err = mod_sysfs_setup(mod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 (struct kernel_param *)
2104 sechdrs[setupindex].sh_addr,
2105 sechdrs[setupindex].sh_size
2106 / sizeof(struct kernel_param));
2107 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002108 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Roland McGrath6d760132007-10-16 23:26:40 -07002110 add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Jan Beulich4552d5d2006-06-26 13:57:28 +02002112 /* Size of section 0 is 0, so this works well if no unwind info. */
2113 mod->unwind_info = unwind_add_table(mod,
Daniel Walker22a8bde2007-10-18 03:06:07 -07002114 (void *)sechdrs[unwindex].sh_addr,
2115 sechdrs[unwindex].sh_size);
Jan Beulich4552d5d2006-06-26 13:57:28 +02002116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 /* Get rid of temporary copy */
2118 vfree(hdr);
2119
2120 /* Done! */
2121 return mod;
2122
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002123 unlink:
2124 stop_machine_run(__unlink_module, mod, NR_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 module_arch_cleanup(mod);
2126 cleanup:
Kay Sievers97c146e2007-11-29 23:46:11 +01002127 kobject_del(&mod->mkobj.kobj);
2128 kobject_put(&mod->mkobj.kobj);
2129 free_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 module_unload_free(mod);
2131 module_free(mod, mod->module_init);
2132 free_core:
2133 module_free(mod, mod->module_core);
2134 free_percpu:
2135 if (percpu)
2136 percpu_modfree(percpu);
2137 free_mod:
2138 kfree(args);
2139 free_hdr:
2140 vfree(hdr);
Jayachandran C6fe2e702006-01-06 00:19:54 -08002141 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 truncated:
2144 printk(KERN_ERR "Module len %lu truncated\n", len);
2145 err = -ENOEXEC;
2146 goto free_hdr;
2147}
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149/* This is where the real work happens */
2150asmlinkage long
2151sys_init_module(void __user *umod,
2152 unsigned long len,
2153 const char __user *uargs)
2154{
2155 struct module *mod;
2156 int ret = 0;
2157
2158 /* Must have permission */
2159 if (!capable(CAP_SYS_MODULE))
2160 return -EPERM;
2161
2162 /* Only one module load at a time, please */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002163 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 return -EINTR;
2165
2166 /* Do all the hard work */
2167 mod = load_module(umod, len, uargs);
2168 if (IS_ERR(mod)) {
Ashutosh Naik6389a382006-03-23 03:00:46 -08002169 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return PTR_ERR(mod);
2171 }
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 /* Drop lock so they can recurse */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002174 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Alan Sterne041c682006-03-27 01:16:30 -08002176 blocking_notifier_call_chain(&module_notify_list,
2177 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 /* Start the module */
2180 if (mod->init != NULL)
2181 ret = mod->init();
2182 if (ret < 0) {
2183 /* Init routine failed: abort. Try to protect us from
2184 buggy refcounters. */
2185 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002186 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002187 module_put(mod);
2188 mutex_lock(&module_mutex);
2189 free_module(mod);
2190 mutex_unlock(&module_mutex);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05002191 wake_up(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return ret;
2193 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07002194 if (ret > 0) {
2195 printk(KERN_WARNING "%s: '%s'->init suspiciously returned %d, "
2196 "it should follow 0/-E convention\n"
2197 KERN_WARNING "%s: loading module anyway...\n",
2198 __func__, mod->name, ret,
2199 __func__);
2200 dump_stack();
2201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Rusty Russell6c5db222008-03-10 11:43:52 -07002203 /* Now it's a first class citizen! Wake up anyone waiting for it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 mod->state = MODULE_STATE_LIVE;
Rusty Russell6c5db222008-03-10 11:43:52 -07002205 wake_up(&module_wq);
2206
2207 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 /* Drop initial reference. */
2209 module_put(mod);
Jan Beulich4552d5d2006-06-26 13:57:28 +02002210 unwind_remove_table(mod->unwind_info, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 module_free(mod, mod->module_init);
2212 mod->module_init = NULL;
2213 mod->init_size = 0;
2214 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08002215 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 return 0;
2218}
2219
2220static inline int within(unsigned long addr, void *start, unsigned long size)
2221{
2222 return ((void *)addr >= start && (void *)addr < start + size);
2223}
2224
2225#ifdef CONFIG_KALLSYMS
2226/*
2227 * This ignores the intensely annoying "mapping symbols" found
2228 * in ARM ELF files: $a, $t and $d.
2229 */
2230static inline int is_arm_mapping_symbol(const char *str)
2231{
Daniel Walker22a8bde2007-10-18 03:06:07 -07002232 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 && (str[2] == '\0' || str[2] == '.');
2234}
2235
2236static const char *get_ksymbol(struct module *mod,
2237 unsigned long addr,
2238 unsigned long *size,
2239 unsigned long *offset)
2240{
2241 unsigned int i, best = 0;
2242 unsigned long nextval;
2243
2244 /* At worse, next value is at end of module */
2245 if (within(addr, mod->module_init, mod->init_size))
2246 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002247 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2249
2250 /* Scan for closest preceeding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07002251 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 for (i = 1; i < mod->num_symtab; i++) {
2253 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2254 continue;
2255
2256 /* We ignore unnamed symbols: they're uninformative
2257 * and inserted at a whim. */
2258 if (mod->symtab[i].st_value <= addr
2259 && mod->symtab[i].st_value > mod->symtab[best].st_value
2260 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2261 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2262 best = i;
2263 if (mod->symtab[i].st_value > addr
2264 && mod->symtab[i].st_value < nextval
2265 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2266 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2267 nextval = mod->symtab[i].st_value;
2268 }
2269
2270 if (!best)
2271 return NULL;
2272
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002273 if (size)
2274 *size = nextval - mod->symtab[best].st_value;
2275 if (offset)
2276 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 return mod->strtab + mod->symtab[best].st_name;
2278}
2279
Rusty Russell6dd06c92008-01-29 17:13:22 -05002280/* For kallsyms to ask for address resolution. NULL means not found. Careful
2281 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002282const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05002283 unsigned long *size,
2284 unsigned long *offset,
2285 char **modname,
2286 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
2288 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002289 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Rusty Russellcb2a5202008-01-14 00:55:03 -08002291 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 list_for_each_entry(mod, &modules, list) {
2293 if (within(addr, mod->module_init, mod->init_size)
2294 || within(addr, mod->module_core, mod->core_size)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07002295 if (modname)
2296 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002297 ret = get_ksymbol(mod, addr, size, offset);
2298 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05002301 /* Make a copy in here where it's safe */
2302 if (ret) {
2303 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2304 ret = namebuf;
2305 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002306 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002307 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308}
2309
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002310int lookup_module_symbol_name(unsigned long addr, char *symname)
2311{
2312 struct module *mod;
2313
Rusty Russellcb2a5202008-01-14 00:55:03 -08002314 preempt_disable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002315 list_for_each_entry(mod, &modules, list) {
2316 if (within(addr, mod->module_init, mod->init_size) ||
2317 within(addr, mod->module_core, mod->core_size)) {
2318 const char *sym;
2319
2320 sym = get_ksymbol(mod, addr, NULL, NULL);
2321 if (!sym)
2322 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07002323 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002324 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002325 return 0;
2326 }
2327 }
2328out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002329 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002330 return -ERANGE;
2331}
2332
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002333int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2334 unsigned long *offset, char *modname, char *name)
2335{
2336 struct module *mod;
2337
Rusty Russellcb2a5202008-01-14 00:55:03 -08002338 preempt_disable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002339 list_for_each_entry(mod, &modules, list) {
2340 if (within(addr, mod->module_init, mod->init_size) ||
2341 within(addr, mod->module_core, mod->core_size)) {
2342 const char *sym;
2343
2344 sym = get_ksymbol(mod, addr, size, offset);
2345 if (!sym)
2346 goto out;
2347 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07002348 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002349 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07002350 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002351 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002352 return 0;
2353 }
2354 }
2355out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002356 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002357 return -ERANGE;
2358}
2359
Alexey Dobriyanea078902007-05-08 00:28:39 -07002360int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2361 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
2363 struct module *mod;
2364
Rusty Russellcb2a5202008-01-14 00:55:03 -08002365 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 list_for_each_entry(mod, &modules, list) {
2367 if (symnum < mod->num_symtab) {
2368 *value = mod->symtab[symnum].st_value;
2369 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07002370 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07002371 KSYM_NAME_LEN);
2372 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Alexey Dobriyanea078902007-05-08 00:28:39 -07002373 *exported = is_exported(name, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002374 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377 symnum -= mod->num_symtab;
2378 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002379 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002380 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
2382
2383static unsigned long mod_find_symname(struct module *mod, const char *name)
2384{
2385 unsigned int i;
2386
2387 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002388 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2389 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 return mod->symtab[i].st_value;
2391 return 0;
2392}
2393
2394/* Look for this name: can be of form module:name. */
2395unsigned long module_kallsyms_lookup_name(const char *name)
2396{
2397 struct module *mod;
2398 char *colon;
2399 unsigned long ret = 0;
2400
2401 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002402 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 if ((colon = strchr(name, ':')) != NULL) {
2404 *colon = '\0';
2405 if ((mod = find_module(name)) != NULL)
2406 ret = mod_find_symname(mod, colon+1);
2407 *colon = ':';
2408 } else {
2409 list_for_each_entry(mod, &modules, list)
2410 if ((ret = mod_find_symname(mod, name)) != 0)
2411 break;
2412 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002413 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return ret;
2415}
2416#endif /* CONFIG_KALLSYMS */
2417
2418/* Called by the /proc file system to return a list of modules. */
2419static void *m_start(struct seq_file *m, loff_t *pos)
2420{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002421 mutex_lock(&module_mutex);
Pavel Emelianov708f4b52007-07-15 23:39:54 -07002422 return seq_list_start(&modules, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423}
2424
2425static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2426{
Pavel Emelianov708f4b52007-07-15 23:39:54 -07002427 return seq_list_next(p, &modules, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428}
2429
2430static void m_stop(struct seq_file *m, void *p)
2431{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002432 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002435static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002436{
2437 int bx = 0;
2438
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002439 if (mod->taints ||
2440 mod->state == MODULE_STATE_GOING ||
2441 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002442 buf[bx++] = '(';
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002443 if (mod->taints & TAINT_PROPRIETARY_MODULE)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002444 buf[bx++] = 'P';
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002445 if (mod->taints & TAINT_FORCED_MODULE)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002446 buf[bx++] = 'F';
2447 /*
2448 * TAINT_FORCED_RMMOD: could be added.
2449 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2450 * apply to modules.
2451 */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002452
2453 /* Show a - for module-is-being-unloaded */
2454 if (mod->state == MODULE_STATE_GOING)
2455 buf[bx++] = '-';
2456 /* Show a + for module-is-being-loaded */
2457 if (mod->state == MODULE_STATE_COMING)
2458 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002459 buf[bx++] = ')';
2460 }
2461 buf[bx] = '\0';
2462
2463 return buf;
2464}
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466static int m_show(struct seq_file *m, void *p)
2467{
2468 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002469 char buf[8];
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 seq_printf(m, "%s %lu",
2472 mod->name, mod->init_size + mod->core_size);
2473 print_unload_info(m, mod);
2474
2475 /* Informative for users. */
2476 seq_printf(m, " %s",
2477 mod->state == MODULE_STATE_GOING ? "Unloading":
2478 mod->state == MODULE_STATE_COMING ? "Loading":
2479 "Live");
2480 /* Used by oprofile and other similar tools. */
2481 seq_printf(m, " 0x%p", mod->module_core);
2482
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002483 /* Taints info */
2484 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002485 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 seq_printf(m, "\n");
2488 return 0;
2489}
2490
2491/* Format: modulename size refcount deps address
2492
2493 Where refcount is a number or -, and deps is a comma-separated list
2494 of depends or -.
2495*/
Helge Deller15ad7cd2006-12-06 20:40:36 -08002496const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 .start = m_start,
2498 .next = m_next,
2499 .stop = m_stop,
2500 .show = m_show
2501};
2502
2503/* Given an address, look for it in the module exception tables. */
2504const struct exception_table_entry *search_module_extables(unsigned long addr)
2505{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 const struct exception_table_entry *e = NULL;
2507 struct module *mod;
2508
Rusty Russell24da1cb2007-07-15 23:41:46 -07002509 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 list_for_each_entry(mod, &modules, list) {
2511 if (mod->num_exentries == 0)
2512 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 e = search_extable(mod->extable,
2515 mod->extable + mod->num_exentries - 1,
2516 addr);
2517 if (e)
2518 break;
2519 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07002520 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07002523 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return e;
2525}
2526
Ingo Molnar4d435f92006-07-03 00:24:24 -07002527/*
2528 * Is this a valid module address?
2529 */
2530int is_module_address(unsigned long addr)
2531{
Ingo Molnar4d435f92006-07-03 00:24:24 -07002532 struct module *mod;
2533
Rusty Russell24da1cb2007-07-15 23:41:46 -07002534 preempt_disable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002535
2536 list_for_each_entry(mod, &modules, list) {
2537 if (within(addr, mod->module_core, mod->core_size)) {
Rusty Russell24da1cb2007-07-15 23:41:46 -07002538 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002539 return 1;
2540 }
2541 }
2542
Rusty Russell24da1cb2007-07-15 23:41:46 -07002543 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002544
2545 return 0;
2546}
2547
2548
Rusty Russell24da1cb2007-07-15 23:41:46 -07002549/* Is this a valid kernel address? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550struct module *__module_text_address(unsigned long addr)
2551{
2552 struct module *mod;
2553
2554 list_for_each_entry(mod, &modules, list)
2555 if (within(addr, mod->module_init, mod->init_text_size)
2556 || within(addr, mod->module_core, mod->core_text_size))
2557 return mod;
2558 return NULL;
2559}
2560
2561struct module *module_text_address(unsigned long addr)
2562{
2563 struct module *mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Rusty Russell24da1cb2007-07-15 23:41:46 -07002565 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 mod = __module_text_address(addr);
Rusty Russell24da1cb2007-07-15 23:41:46 -07002567 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569 return mod;
2570}
2571
2572/* Don't grab lock, we're oopsing. */
2573void print_modules(void)
2574{
2575 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07002576 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 printk("Modules linked in:");
2579 list_for_each_entry(mod, &modules, list)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002580 printk(" %s%s", mod->name, module_flags(mod, buf));
Arjan van de Vene14af7e2008-01-25 21:08:33 +01002581 if (last_unloaded_module[0])
2582 printk(" [last unloaded: %s]", last_unloaded_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 printk("\n");
2584}
2585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586#ifdef CONFIG_MODVERSIONS
2587/* Generate the signature for struct module here, too, for modversions. */
2588void struct_module(struct module *mod) { return; }
2589EXPORT_SYMBOL(struct_module);
2590#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002591
2592#ifdef CONFIG_MARKERS
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -08002593void module_update_markers(void)
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002594{
2595 struct module *mod;
2596
2597 mutex_lock(&module_mutex);
2598 list_for_each_entry(mod, &modules, list)
2599 if (!mod->taints)
2600 marker_update_probe_range(mod->markers,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -08002601 mod->markers + mod->num_markers);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002602 mutex_unlock(&module_mutex);
2603}
2604#endif