[ARM] MINI2440: Create a mini2440_defconfig file
[linux-2.6/mini2440.git] / kernel / module.c
blobe4ab36ce767222becc860650e0892399ab58b96d
1 /*
2 Copyright (C) 2002 Richard Henderson
3 Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM.
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.
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.
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
19 #include <linux/module.h>
20 #include <linux/moduleloader.h>
21 #include <linux/ftrace_event.h>
22 #include <linux/init.h>
23 #include <linux/kallsyms.h>
24 #include <linux/fs.h>
25 #include <linux/sysfs.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/vmalloc.h>
29 #include <linux/elf.h>
30 #include <linux/proc_fs.h>
31 #include <linux/seq_file.h>
32 #include <linux/syscalls.h>
33 #include <linux/fcntl.h>
34 #include <linux/rcupdate.h>
35 #include <linux/capability.h>
36 #include <linux/cpu.h>
37 #include <linux/moduleparam.h>
38 #include <linux/errno.h>
39 #include <linux/err.h>
40 #include <linux/vermagic.h>
41 #include <linux/notifier.h>
42 #include <linux/sched.h>
43 #include <linux/stop_machine.h>
44 #include <linux/device.h>
45 #include <linux/string.h>
46 #include <linux/mutex.h>
47 #include <linux/rculist.h>
48 #include <asm/uaccess.h>
49 #include <asm/cacheflush.h>
50 #include <linux/license.h>
51 #include <asm/sections.h>
52 #include <linux/tracepoint.h>
53 #include <linux/ftrace.h>
54 #include <linux/async.h>
55 #include <linux/percpu.h>
56 #include <linux/kmemleak.h>
58 #if 0
59 #define DEBUGP printk
60 #else
61 #define DEBUGP(fmt , a...)
62 #endif
64 #ifndef ARCH_SHF_SMALL
65 #define ARCH_SHF_SMALL 0
66 #endif
68 /* If this is set, the section belongs in the init part of the module */
69 #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
71 /* List of modules, protected by module_mutex or preempt_disable
72 * (delete uses stop_machine/add uses RCU list operations). */
73 DEFINE_MUTEX(module_mutex);
74 EXPORT_SYMBOL_GPL(module_mutex);
75 static LIST_HEAD(modules);
77 /* Block module loading/unloading? */
78 int modules_disabled = 0;
80 /* Waiting for a module to finish initializing? */
81 static DECLARE_WAIT_QUEUE_HEAD(module_wq);
83 static BLOCKING_NOTIFIER_HEAD(module_notify_list);
85 /* Bounds of module allocation, for speeding __module_address */
86 static unsigned long module_addr_min = -1UL, module_addr_max = 0;
88 int register_module_notifier(struct notifier_block * nb)
90 return blocking_notifier_chain_register(&module_notify_list, nb);
92 EXPORT_SYMBOL(register_module_notifier);
94 int unregister_module_notifier(struct notifier_block * nb)
96 return blocking_notifier_chain_unregister(&module_notify_list, nb);
98 EXPORT_SYMBOL(unregister_module_notifier);
100 /* We require a truly strong try_module_get(): 0 means failure due to
101 ongoing or failed initialization etc. */
102 static inline int strong_try_module_get(struct module *mod)
104 if (mod && mod->state == MODULE_STATE_COMING)
105 return -EBUSY;
106 if (try_module_get(mod))
107 return 0;
108 else
109 return -ENOENT;
112 static inline void add_taint_module(struct module *mod, unsigned flag)
114 add_taint(flag);
115 mod->taints |= (1U << flag);
119 * A thread that wants to hold a reference to a module only while it
120 * is running can call this to safely exit. nfsd and lockd use this.
122 void __module_put_and_exit(struct module *mod, long code)
124 module_put(mod);
125 do_exit(code);
127 EXPORT_SYMBOL(__module_put_and_exit);
129 /* Find a module section: 0 means not found. */
130 static unsigned int find_sec(Elf_Ehdr *hdr,
131 Elf_Shdr *sechdrs,
132 const char *secstrings,
133 const char *name)
135 unsigned int i;
137 for (i = 1; i < hdr->e_shnum; i++)
138 /* Alloc bit cleared means "ignore it." */
139 if ((sechdrs[i].sh_flags & SHF_ALLOC)
140 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
141 return i;
142 return 0;
145 /* Find a module section, or NULL. */
146 static void *section_addr(Elf_Ehdr *hdr, Elf_Shdr *shdrs,
147 const char *secstrings, const char *name)
149 /* Section 0 has sh_addr 0. */
150 return (void *)shdrs[find_sec(hdr, shdrs, secstrings, name)].sh_addr;
153 /* Find a module section, or NULL. Fill in number of "objects" in section. */
154 static void *section_objs(Elf_Ehdr *hdr,
155 Elf_Shdr *sechdrs,
156 const char *secstrings,
157 const char *name,
158 size_t object_size,
159 unsigned int *num)
161 unsigned int sec = find_sec(hdr, sechdrs, secstrings, name);
163 /* Section 0 has sh_addr 0 and sh_size 0. */
164 *num = sechdrs[sec].sh_size / object_size;
165 return (void *)sechdrs[sec].sh_addr;
168 /* Provided by the linker */
169 extern const struct kernel_symbol __start___ksymtab[];
170 extern const struct kernel_symbol __stop___ksymtab[];
171 extern const struct kernel_symbol __start___ksymtab_gpl[];
172 extern const struct kernel_symbol __stop___ksymtab_gpl[];
173 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
174 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
175 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
176 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
177 extern const unsigned long __start___kcrctab[];
178 extern const unsigned long __start___kcrctab_gpl[];
179 extern const unsigned long __start___kcrctab_gpl_future[];
180 #ifdef CONFIG_UNUSED_SYMBOLS
181 extern const struct kernel_symbol __start___ksymtab_unused[];
182 extern const struct kernel_symbol __stop___ksymtab_unused[];
183 extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
184 extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
185 extern const unsigned long __start___kcrctab_unused[];
186 extern const unsigned long __start___kcrctab_unused_gpl[];
187 #endif
189 #ifndef CONFIG_MODVERSIONS
190 #define symversion(base, idx) NULL
191 #else
192 #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
193 #endif
195 static bool each_symbol_in_section(const struct symsearch *arr,
196 unsigned int arrsize,
197 struct module *owner,
198 bool (*fn)(const struct symsearch *syms,
199 struct module *owner,
200 unsigned int symnum, void *data),
201 void *data)
203 unsigned int i, j;
205 for (j = 0; j < arrsize; j++) {
206 for (i = 0; i < arr[j].stop - arr[j].start; i++)
207 if (fn(&arr[j], owner, i, data))
208 return true;
211 return false;
214 /* Returns true as soon as fn returns true, otherwise false. */
215 bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
216 unsigned int symnum, void *data), void *data)
218 struct module *mod;
219 const struct symsearch arr[] = {
220 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
221 NOT_GPL_ONLY, false },
222 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
223 __start___kcrctab_gpl,
224 GPL_ONLY, false },
225 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
226 __start___kcrctab_gpl_future,
227 WILL_BE_GPL_ONLY, false },
228 #ifdef CONFIG_UNUSED_SYMBOLS
229 { __start___ksymtab_unused, __stop___ksymtab_unused,
230 __start___kcrctab_unused,
231 NOT_GPL_ONLY, true },
232 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
233 __start___kcrctab_unused_gpl,
234 GPL_ONLY, true },
235 #endif
238 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
239 return true;
241 list_for_each_entry_rcu(mod, &modules, list) {
242 struct symsearch arr[] = {
243 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
244 NOT_GPL_ONLY, false },
245 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
246 mod->gpl_crcs,
247 GPL_ONLY, false },
248 { mod->gpl_future_syms,
249 mod->gpl_future_syms + mod->num_gpl_future_syms,
250 mod->gpl_future_crcs,
251 WILL_BE_GPL_ONLY, false },
252 #ifdef CONFIG_UNUSED_SYMBOLS
253 { mod->unused_syms,
254 mod->unused_syms + mod->num_unused_syms,
255 mod->unused_crcs,
256 NOT_GPL_ONLY, true },
257 { mod->unused_gpl_syms,
258 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
259 mod->unused_gpl_crcs,
260 GPL_ONLY, true },
261 #endif
264 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
265 return true;
267 return false;
269 EXPORT_SYMBOL_GPL(each_symbol);
271 struct find_symbol_arg {
272 /* Input */
273 const char *name;
274 bool gplok;
275 bool warn;
277 /* Output */
278 struct module *owner;
279 const unsigned long *crc;
280 const struct kernel_symbol *sym;
283 static bool find_symbol_in_section(const struct symsearch *syms,
284 struct module *owner,
285 unsigned int symnum, void *data)
287 struct find_symbol_arg *fsa = data;
289 if (strcmp(syms->start[symnum].name, fsa->name) != 0)
290 return false;
292 if (!fsa->gplok) {
293 if (syms->licence == GPL_ONLY)
294 return false;
295 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
296 printk(KERN_WARNING "Symbol %s is being used "
297 "by a non-GPL module, which will not "
298 "be allowed in the future\n", fsa->name);
299 printk(KERN_WARNING "Please see the file "
300 "Documentation/feature-removal-schedule.txt "
301 "in the kernel source tree for more details.\n");
305 #ifdef CONFIG_UNUSED_SYMBOLS
306 if (syms->unused && fsa->warn) {
307 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
308 "however this module is using it.\n", fsa->name);
309 printk(KERN_WARNING
310 "This symbol will go away in the future.\n");
311 printk(KERN_WARNING
312 "Please evalute if this is the right api to use and if "
313 "it really is, submit a report the linux kernel "
314 "mailinglist together with submitting your code for "
315 "inclusion.\n");
317 #endif
319 fsa->owner = owner;
320 fsa->crc = symversion(syms->crcs, symnum);
321 fsa->sym = &syms->start[symnum];
322 return true;
325 /* Find a symbol and return it, along with, (optional) crc and
326 * (optional) module which owns it */
327 const struct kernel_symbol *find_symbol(const char *name,
328 struct module **owner,
329 const unsigned long **crc,
330 bool gplok,
331 bool warn)
333 struct find_symbol_arg fsa;
335 fsa.name = name;
336 fsa.gplok = gplok;
337 fsa.warn = warn;
339 if (each_symbol(find_symbol_in_section, &fsa)) {
340 if (owner)
341 *owner = fsa.owner;
342 if (crc)
343 *crc = fsa.crc;
344 return fsa.sym;
347 DEBUGP("Failed to find symbol %s\n", name);
348 return NULL;
350 EXPORT_SYMBOL_GPL(find_symbol);
352 /* Search for module by name: must hold module_mutex. */
353 struct module *find_module(const char *name)
355 struct module *mod;
357 list_for_each_entry(mod, &modules, list) {
358 if (strcmp(mod->name, name) == 0)
359 return mod;
361 return NULL;
363 EXPORT_SYMBOL_GPL(find_module);
365 #ifdef CONFIG_SMP
367 #ifdef CONFIG_HAVE_DYNAMIC_PER_CPU_AREA
369 static void *percpu_modalloc(unsigned long size, unsigned long align,
370 const char *name)
372 void *ptr;
374 if (align > PAGE_SIZE) {
375 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
376 name, align, PAGE_SIZE);
377 align = PAGE_SIZE;
380 ptr = __alloc_reserved_percpu(size, align);
381 if (!ptr)
382 printk(KERN_WARNING
383 "Could not allocate %lu bytes percpu data\n", size);
384 return ptr;
387 static void percpu_modfree(void *freeme)
389 free_percpu(freeme);
392 #else /* ... !CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */
394 /* Number of blocks used and allocated. */
395 static unsigned int pcpu_num_used, pcpu_num_allocated;
396 /* Size of each block. -ve means used. */
397 static int *pcpu_size;
399 static int split_block(unsigned int i, unsigned short size)
401 /* Reallocation required? */
402 if (pcpu_num_used + 1 > pcpu_num_allocated) {
403 int *new;
405 new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
406 GFP_KERNEL);
407 if (!new)
408 return 0;
410 pcpu_num_allocated *= 2;
411 pcpu_size = new;
414 /* Insert a new subblock */
415 memmove(&pcpu_size[i+1], &pcpu_size[i],
416 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
417 pcpu_num_used++;
419 pcpu_size[i+1] -= size;
420 pcpu_size[i] = size;
421 return 1;
424 static inline unsigned int block_size(int val)
426 if (val < 0)
427 return -val;
428 return val;
431 static void *percpu_modalloc(unsigned long size, unsigned long align,
432 const char *name)
434 unsigned long extra;
435 unsigned int i;
436 void *ptr;
437 int cpu;
439 if (align > PAGE_SIZE) {
440 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
441 name, align, PAGE_SIZE);
442 align = PAGE_SIZE;
445 ptr = __per_cpu_start;
446 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
447 /* Extra for alignment requirement. */
448 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
449 BUG_ON(i == 0 && extra != 0);
451 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
452 continue;
454 /* Transfer extra to previous block. */
455 if (pcpu_size[i-1] < 0)
456 pcpu_size[i-1] -= extra;
457 else
458 pcpu_size[i-1] += extra;
459 pcpu_size[i] -= extra;
460 ptr += extra;
462 /* Split block if warranted */
463 if (pcpu_size[i] - size > sizeof(unsigned long))
464 if (!split_block(i, size))
465 return NULL;
467 /* add the per-cpu scanning areas */
468 for_each_possible_cpu(cpu)
469 kmemleak_alloc(ptr + per_cpu_offset(cpu), size, 0,
470 GFP_KERNEL);
472 /* Mark allocated */
473 pcpu_size[i] = -pcpu_size[i];
474 return ptr;
477 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
478 size);
479 return NULL;
482 static void percpu_modfree(void *freeme)
484 unsigned int i;
485 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
486 int cpu;
488 /* First entry is core kernel percpu data. */
489 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
490 if (ptr == freeme) {
491 pcpu_size[i] = -pcpu_size[i];
492 goto free;
495 BUG();
497 free:
498 /* remove the per-cpu scanning areas */
499 for_each_possible_cpu(cpu)
500 kmemleak_free(freeme + per_cpu_offset(cpu));
502 /* Merge with previous? */
503 if (pcpu_size[i-1] >= 0) {
504 pcpu_size[i-1] += pcpu_size[i];
505 pcpu_num_used--;
506 memmove(&pcpu_size[i], &pcpu_size[i+1],
507 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
508 i--;
510 /* Merge with next? */
511 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
512 pcpu_size[i] += pcpu_size[i+1];
513 pcpu_num_used--;
514 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
515 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
519 static int percpu_modinit(void)
521 pcpu_num_used = 2;
522 pcpu_num_allocated = 2;
523 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
524 GFP_KERNEL);
525 /* Static in-kernel percpu data (used). */
526 pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
527 /* Free room. */
528 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
529 if (pcpu_size[1] < 0) {
530 printk(KERN_ERR "No per-cpu room for modules.\n");
531 pcpu_num_used = 1;
534 return 0;
536 __initcall(percpu_modinit);
538 #endif /* CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */
540 static unsigned int find_pcpusec(Elf_Ehdr *hdr,
541 Elf_Shdr *sechdrs,
542 const char *secstrings)
544 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
547 static void percpu_modcopy(void *pcpudest, const void *from, unsigned long size)
549 int cpu;
551 for_each_possible_cpu(cpu)
552 memcpy(pcpudest + per_cpu_offset(cpu), from, size);
555 #else /* ... !CONFIG_SMP */
557 static inline void *percpu_modalloc(unsigned long size, unsigned long align,
558 const char *name)
560 return NULL;
562 static inline void percpu_modfree(void *pcpuptr)
564 BUG();
566 static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
567 Elf_Shdr *sechdrs,
568 const char *secstrings)
570 return 0;
572 static inline void percpu_modcopy(void *pcpudst, const void *src,
573 unsigned long size)
575 /* pcpusec should be 0, and size of that section should be 0. */
576 BUG_ON(size != 0);
579 #endif /* CONFIG_SMP */
581 #define MODINFO_ATTR(field) \
582 static void setup_modinfo_##field(struct module *mod, const char *s) \
584 mod->field = kstrdup(s, GFP_KERNEL); \
586 static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
587 struct module *mod, char *buffer) \
589 return sprintf(buffer, "%s\n", mod->field); \
591 static int modinfo_##field##_exists(struct module *mod) \
593 return mod->field != NULL; \
595 static void free_modinfo_##field(struct module *mod) \
597 kfree(mod->field); \
598 mod->field = NULL; \
600 static struct module_attribute modinfo_##field = { \
601 .attr = { .name = __stringify(field), .mode = 0444 }, \
602 .show = show_modinfo_##field, \
603 .setup = setup_modinfo_##field, \
604 .test = modinfo_##field##_exists, \
605 .free = free_modinfo_##field, \
608 MODINFO_ATTR(version);
609 MODINFO_ATTR(srcversion);
611 static char last_unloaded_module[MODULE_NAME_LEN+1];
613 #ifdef CONFIG_MODULE_UNLOAD
614 /* Init the unload section of the module. */
615 static void module_unload_init(struct module *mod)
617 int cpu;
619 INIT_LIST_HEAD(&mod->modules_which_use_me);
620 for_each_possible_cpu(cpu)
621 local_set(__module_ref_addr(mod, cpu), 0);
622 /* Hold reference count during initialization. */
623 local_set(__module_ref_addr(mod, raw_smp_processor_id()), 1);
624 /* Backwards compatibility macros put refcount during init. */
625 mod->waiter = current;
628 /* modules using other modules */
629 struct module_use
631 struct list_head list;
632 struct module *module_which_uses;
635 /* Does a already use b? */
636 static int already_uses(struct module *a, struct module *b)
638 struct module_use *use;
640 list_for_each_entry(use, &b->modules_which_use_me, list) {
641 if (use->module_which_uses == a) {
642 DEBUGP("%s uses %s!\n", a->name, b->name);
643 return 1;
646 DEBUGP("%s does not use %s!\n", a->name, b->name);
647 return 0;
650 /* Module a uses b */
651 int use_module(struct module *a, struct module *b)
653 struct module_use *use;
654 int no_warn, err;
656 if (b == NULL || already_uses(a, b)) return 1;
658 /* If we're interrupted or time out, we fail. */
659 if (wait_event_interruptible_timeout(
660 module_wq, (err = strong_try_module_get(b)) != -EBUSY,
661 30 * HZ) <= 0) {
662 printk("%s: gave up waiting for init of module %s.\n",
663 a->name, b->name);
664 return 0;
667 /* If strong_try_module_get() returned a different error, we fail. */
668 if (err)
669 return 0;
671 DEBUGP("Allocating new usage for %s.\n", a->name);
672 use = kmalloc(sizeof(*use), GFP_ATOMIC);
673 if (!use) {
674 printk("%s: out of memory loading\n", a->name);
675 module_put(b);
676 return 0;
679 use->module_which_uses = a;
680 list_add(&use->list, &b->modules_which_use_me);
681 no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
682 return 1;
684 EXPORT_SYMBOL_GPL(use_module);
686 /* Clear the unload stuff of the module. */
687 static void module_unload_free(struct module *mod)
689 struct module *i;
691 list_for_each_entry(i, &modules, list) {
692 struct module_use *use;
694 list_for_each_entry(use, &i->modules_which_use_me, list) {
695 if (use->module_which_uses == mod) {
696 DEBUGP("%s unusing %s\n", mod->name, i->name);
697 module_put(i);
698 list_del(&use->list);
699 kfree(use);
700 sysfs_remove_link(i->holders_dir, mod->name);
701 /* There can be at most one match. */
702 break;
708 #ifdef CONFIG_MODULE_FORCE_UNLOAD
709 static inline int try_force_unload(unsigned int flags)
711 int ret = (flags & O_TRUNC);
712 if (ret)
713 add_taint(TAINT_FORCED_RMMOD);
714 return ret;
716 #else
717 static inline int try_force_unload(unsigned int flags)
719 return 0;
721 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
723 struct stopref
725 struct module *mod;
726 int flags;
727 int *forced;
730 /* Whole machine is stopped with interrupts off when this runs. */
731 static int __try_stop_module(void *_sref)
733 struct stopref *sref = _sref;
735 /* If it's not unused, quit unless we're forcing. */
736 if (module_refcount(sref->mod) != 0) {
737 if (!(*sref->forced = try_force_unload(sref->flags)))
738 return -EWOULDBLOCK;
741 /* Mark it as dying. */
742 sref->mod->state = MODULE_STATE_GOING;
743 return 0;
746 static int try_stop_module(struct module *mod, int flags, int *forced)
748 if (flags & O_NONBLOCK) {
749 struct stopref sref = { mod, flags, forced };
751 return stop_machine(__try_stop_module, &sref, NULL);
752 } else {
753 /* We don't need to stop the machine for this. */
754 mod->state = MODULE_STATE_GOING;
755 synchronize_sched();
756 return 0;
760 unsigned int module_refcount(struct module *mod)
762 unsigned int total = 0;
763 int cpu;
765 for_each_possible_cpu(cpu)
766 total += local_read(__module_ref_addr(mod, cpu));
767 return total;
769 EXPORT_SYMBOL(module_refcount);
771 /* This exists whether we can unload or not */
772 static void free_module(struct module *mod);
774 static void wait_for_zero_refcount(struct module *mod)
776 /* Since we might sleep for some time, release the mutex first */
777 mutex_unlock(&module_mutex);
778 for (;;) {
779 DEBUGP("Looking at refcount...\n");
780 set_current_state(TASK_UNINTERRUPTIBLE);
781 if (module_refcount(mod) == 0)
782 break;
783 schedule();
785 current->state = TASK_RUNNING;
786 mutex_lock(&module_mutex);
789 SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
790 unsigned int, flags)
792 struct module *mod;
793 char name[MODULE_NAME_LEN];
794 int ret, forced = 0;
796 if (!capable(CAP_SYS_MODULE) || modules_disabled)
797 return -EPERM;
799 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
800 return -EFAULT;
801 name[MODULE_NAME_LEN-1] = '\0';
803 /* Create stop_machine threads since free_module relies on
804 * a non-failing stop_machine call. */
805 ret = stop_machine_create();
806 if (ret)
807 return ret;
809 if (mutex_lock_interruptible(&module_mutex) != 0) {
810 ret = -EINTR;
811 goto out_stop;
814 mod = find_module(name);
815 if (!mod) {
816 ret = -ENOENT;
817 goto out;
820 if (!list_empty(&mod->modules_which_use_me)) {
821 /* Other modules depend on us: get rid of them first. */
822 ret = -EWOULDBLOCK;
823 goto out;
826 /* Doing init or already dying? */
827 if (mod->state != MODULE_STATE_LIVE) {
828 /* FIXME: if (force), slam module count and wake up
829 waiter --RR */
830 DEBUGP("%s already dying\n", mod->name);
831 ret = -EBUSY;
832 goto out;
835 /* If it has an init func, it must have an exit func to unload */
836 if (mod->init && !mod->exit) {
837 forced = try_force_unload(flags);
838 if (!forced) {
839 /* This module can't be removed */
840 ret = -EBUSY;
841 goto out;
845 /* Set this up before setting mod->state */
846 mod->waiter = current;
848 /* Stop the machine so refcounts can't move and disable module. */
849 ret = try_stop_module(mod, flags, &forced);
850 if (ret != 0)
851 goto out;
853 /* Never wait if forced. */
854 if (!forced && module_refcount(mod) != 0)
855 wait_for_zero_refcount(mod);
857 mutex_unlock(&module_mutex);
858 /* Final destruction now noone is using it. */
859 if (mod->exit != NULL)
860 mod->exit();
861 blocking_notifier_call_chain(&module_notify_list,
862 MODULE_STATE_GOING, mod);
863 async_synchronize_full();
864 mutex_lock(&module_mutex);
865 /* Store the name of the last unloaded module for diagnostic purposes */
866 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
867 ddebug_remove_module(mod->name);
868 free_module(mod);
870 out:
871 mutex_unlock(&module_mutex);
872 out_stop:
873 stop_machine_destroy();
874 return ret;
877 static inline void print_unload_info(struct seq_file *m, struct module *mod)
879 struct module_use *use;
880 int printed_something = 0;
882 seq_printf(m, " %u ", module_refcount(mod));
884 /* Always include a trailing , so userspace can differentiate
885 between this and the old multi-field proc format. */
886 list_for_each_entry(use, &mod->modules_which_use_me, list) {
887 printed_something = 1;
888 seq_printf(m, "%s,", use->module_which_uses->name);
891 if (mod->init != NULL && mod->exit == NULL) {
892 printed_something = 1;
893 seq_printf(m, "[permanent],");
896 if (!printed_something)
897 seq_printf(m, "-");
900 void __symbol_put(const char *symbol)
902 struct module *owner;
904 preempt_disable();
905 if (!find_symbol(symbol, &owner, NULL, true, false))
906 BUG();
907 module_put(owner);
908 preempt_enable();
910 EXPORT_SYMBOL(__symbol_put);
912 void symbol_put_addr(void *addr)
914 struct module *modaddr;
916 if (core_kernel_text((unsigned long)addr))
917 return;
919 /* module_text_address is safe here: we're supposed to have reference
920 * to module from symbol_get, so it can't go away. */
921 modaddr = __module_text_address((unsigned long)addr);
922 BUG_ON(!modaddr);
923 module_put(modaddr);
925 EXPORT_SYMBOL_GPL(symbol_put_addr);
927 static ssize_t show_refcnt(struct module_attribute *mattr,
928 struct module *mod, char *buffer)
930 return sprintf(buffer, "%u\n", module_refcount(mod));
933 static struct module_attribute refcnt = {
934 .attr = { .name = "refcnt", .mode = 0444 },
935 .show = show_refcnt,
938 void module_put(struct module *module)
940 if (module) {
941 unsigned int cpu = get_cpu();
942 local_dec(__module_ref_addr(module, cpu));
943 /* Maybe they're waiting for us to drop reference? */
944 if (unlikely(!module_is_live(module)))
945 wake_up_process(module->waiter);
946 put_cpu();
949 EXPORT_SYMBOL(module_put);
951 #else /* !CONFIG_MODULE_UNLOAD */
952 static inline void print_unload_info(struct seq_file *m, struct module *mod)
954 /* We don't know the usage count, or what modules are using. */
955 seq_printf(m, " - -");
958 static inline void module_unload_free(struct module *mod)
962 int use_module(struct module *a, struct module *b)
964 return strong_try_module_get(b) == 0;
966 EXPORT_SYMBOL_GPL(use_module);
968 static inline void module_unload_init(struct module *mod)
971 #endif /* CONFIG_MODULE_UNLOAD */
973 static ssize_t show_initstate(struct module_attribute *mattr,
974 struct module *mod, char *buffer)
976 const char *state = "unknown";
978 switch (mod->state) {
979 case MODULE_STATE_LIVE:
980 state = "live";
981 break;
982 case MODULE_STATE_COMING:
983 state = "coming";
984 break;
985 case MODULE_STATE_GOING:
986 state = "going";
987 break;
989 return sprintf(buffer, "%s\n", state);
992 static struct module_attribute initstate = {
993 .attr = { .name = "initstate", .mode = 0444 },
994 .show = show_initstate,
997 static struct module_attribute *modinfo_attrs[] = {
998 &modinfo_version,
999 &modinfo_srcversion,
1000 &initstate,
1001 #ifdef CONFIG_MODULE_UNLOAD
1002 &refcnt,
1003 #endif
1004 NULL,
1007 static const char vermagic[] = VERMAGIC_STRING;
1009 static int try_to_force_load(struct module *mod, const char *reason)
1011 #ifdef CONFIG_MODULE_FORCE_LOAD
1012 if (!test_taint(TAINT_FORCED_MODULE))
1013 printk(KERN_WARNING "%s: %s: kernel tainted.\n",
1014 mod->name, reason);
1015 add_taint_module(mod, TAINT_FORCED_MODULE);
1016 return 0;
1017 #else
1018 return -ENOEXEC;
1019 #endif
1022 #ifdef CONFIG_MODVERSIONS
1023 static int check_version(Elf_Shdr *sechdrs,
1024 unsigned int versindex,
1025 const char *symname,
1026 struct module *mod,
1027 const unsigned long *crc)
1029 unsigned int i, num_versions;
1030 struct modversion_info *versions;
1032 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1033 if (!crc)
1034 return 1;
1036 /* No versions at all? modprobe --force does this. */
1037 if (versindex == 0)
1038 return try_to_force_load(mod, symname) == 0;
1040 versions = (void *) sechdrs[versindex].sh_addr;
1041 num_versions = sechdrs[versindex].sh_size
1042 / sizeof(struct modversion_info);
1044 for (i = 0; i < num_versions; i++) {
1045 if (strcmp(versions[i].name, symname) != 0)
1046 continue;
1048 if (versions[i].crc == *crc)
1049 return 1;
1050 DEBUGP("Found checksum %lX vs module %lX\n",
1051 *crc, versions[i].crc);
1052 goto bad_version;
1055 printk(KERN_WARNING "%s: no symbol version for %s\n",
1056 mod->name, symname);
1057 return 0;
1059 bad_version:
1060 printk("%s: disagrees about version of symbol %s\n",
1061 mod->name, symname);
1062 return 0;
1065 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1066 unsigned int versindex,
1067 struct module *mod)
1069 const unsigned long *crc;
1071 if (!find_symbol("module_layout", NULL, &crc, true, false))
1072 BUG();
1073 return check_version(sechdrs, versindex, "module_layout", mod, crc);
1076 /* First part is kernel version, which we ignore if module has crcs. */
1077 static inline int same_magic(const char *amagic, const char *bmagic,
1078 bool has_crcs)
1080 if (has_crcs) {
1081 amagic += strcspn(amagic, " ");
1082 bmagic += strcspn(bmagic, " ");
1084 return strcmp(amagic, bmagic) == 0;
1086 #else
1087 static inline int check_version(Elf_Shdr *sechdrs,
1088 unsigned int versindex,
1089 const char *symname,
1090 struct module *mod,
1091 const unsigned long *crc)
1093 return 1;
1096 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1097 unsigned int versindex,
1098 struct module *mod)
1100 return 1;
1103 static inline int same_magic(const char *amagic, const char *bmagic,
1104 bool has_crcs)
1106 return strcmp(amagic, bmagic) == 0;
1108 #endif /* CONFIG_MODVERSIONS */
1110 /* Resolve a symbol for this module. I.e. if we find one, record usage.
1111 Must be holding module_mutex. */
1112 static const struct kernel_symbol *resolve_symbol(Elf_Shdr *sechdrs,
1113 unsigned int versindex,
1114 const char *name,
1115 struct module *mod)
1117 struct module *owner;
1118 const struct kernel_symbol *sym;
1119 const unsigned long *crc;
1121 sym = find_symbol(name, &owner, &crc,
1122 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
1123 /* use_module can fail due to OOM,
1124 or module initialization or unloading */
1125 if (sym) {
1126 if (!check_version(sechdrs, versindex, name, mod, crc) ||
1127 !use_module(mod, owner))
1128 sym = NULL;
1130 return sym;
1134 * /sys/module/foo/sections stuff
1135 * J. Corbet <corbet@lwn.net>
1137 #if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
1138 struct module_sect_attr
1140 struct module_attribute mattr;
1141 char *name;
1142 unsigned long address;
1145 struct module_sect_attrs
1147 struct attribute_group grp;
1148 unsigned int nsections;
1149 struct module_sect_attr attrs[0];
1152 static ssize_t module_sect_show(struct module_attribute *mattr,
1153 struct module *mod, char *buf)
1155 struct module_sect_attr *sattr =
1156 container_of(mattr, struct module_sect_attr, mattr);
1157 return sprintf(buf, "0x%lx\n", sattr->address);
1160 static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1162 unsigned int section;
1164 for (section = 0; section < sect_attrs->nsections; section++)
1165 kfree(sect_attrs->attrs[section].name);
1166 kfree(sect_attrs);
1169 static void add_sect_attrs(struct module *mod, unsigned int nsect,
1170 char *secstrings, Elf_Shdr *sechdrs)
1172 unsigned int nloaded = 0, i, size[2];
1173 struct module_sect_attrs *sect_attrs;
1174 struct module_sect_attr *sattr;
1175 struct attribute **gattr;
1177 /* Count loaded sections and allocate structures */
1178 for (i = 0; i < nsect; i++)
1179 if (sechdrs[i].sh_flags & SHF_ALLOC)
1180 nloaded++;
1181 size[0] = ALIGN(sizeof(*sect_attrs)
1182 + nloaded * sizeof(sect_attrs->attrs[0]),
1183 sizeof(sect_attrs->grp.attrs[0]));
1184 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
1185 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1186 if (sect_attrs == NULL)
1187 return;
1189 /* Setup section attributes. */
1190 sect_attrs->grp.name = "sections";
1191 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1193 sect_attrs->nsections = 0;
1194 sattr = &sect_attrs->attrs[0];
1195 gattr = &sect_attrs->grp.attrs[0];
1196 for (i = 0; i < nsect; i++) {
1197 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1198 continue;
1199 sattr->address = sechdrs[i].sh_addr;
1200 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1201 GFP_KERNEL);
1202 if (sattr->name == NULL)
1203 goto out;
1204 sect_attrs->nsections++;
1205 sattr->mattr.show = module_sect_show;
1206 sattr->mattr.store = NULL;
1207 sattr->mattr.attr.name = sattr->name;
1208 sattr->mattr.attr.mode = S_IRUGO;
1209 *(gattr++) = &(sattr++)->mattr.attr;
1211 *gattr = NULL;
1213 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1214 goto out;
1216 mod->sect_attrs = sect_attrs;
1217 return;
1218 out:
1219 free_sect_attrs(sect_attrs);
1222 static void remove_sect_attrs(struct module *mod)
1224 if (mod->sect_attrs) {
1225 sysfs_remove_group(&mod->mkobj.kobj,
1226 &mod->sect_attrs->grp);
1227 /* We are positive that no one is using any sect attrs
1228 * at this point. Deallocate immediately. */
1229 free_sect_attrs(mod->sect_attrs);
1230 mod->sect_attrs = NULL;
1235 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1238 struct module_notes_attrs {
1239 struct kobject *dir;
1240 unsigned int notes;
1241 struct bin_attribute attrs[0];
1244 static ssize_t module_notes_read(struct kobject *kobj,
1245 struct bin_attribute *bin_attr,
1246 char *buf, loff_t pos, size_t count)
1249 * The caller checked the pos and count against our size.
1251 memcpy(buf, bin_attr->private + pos, count);
1252 return count;
1255 static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1256 unsigned int i)
1258 if (notes_attrs->dir) {
1259 while (i-- > 0)
1260 sysfs_remove_bin_file(notes_attrs->dir,
1261 &notes_attrs->attrs[i]);
1262 kobject_put(notes_attrs->dir);
1264 kfree(notes_attrs);
1267 static void add_notes_attrs(struct module *mod, unsigned int nsect,
1268 char *secstrings, Elf_Shdr *sechdrs)
1270 unsigned int notes, loaded, i;
1271 struct module_notes_attrs *notes_attrs;
1272 struct bin_attribute *nattr;
1274 /* Count notes sections and allocate structures. */
1275 notes = 0;
1276 for (i = 0; i < nsect; i++)
1277 if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
1278 (sechdrs[i].sh_type == SHT_NOTE))
1279 ++notes;
1281 if (notes == 0)
1282 return;
1284 notes_attrs = kzalloc(sizeof(*notes_attrs)
1285 + notes * sizeof(notes_attrs->attrs[0]),
1286 GFP_KERNEL);
1287 if (notes_attrs == NULL)
1288 return;
1290 notes_attrs->notes = notes;
1291 nattr = &notes_attrs->attrs[0];
1292 for (loaded = i = 0; i < nsect; ++i) {
1293 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1294 continue;
1295 if (sechdrs[i].sh_type == SHT_NOTE) {
1296 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1297 nattr->attr.mode = S_IRUGO;
1298 nattr->size = sechdrs[i].sh_size;
1299 nattr->private = (void *) sechdrs[i].sh_addr;
1300 nattr->read = module_notes_read;
1301 ++nattr;
1303 ++loaded;
1306 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
1307 if (!notes_attrs->dir)
1308 goto out;
1310 for (i = 0; i < notes; ++i)
1311 if (sysfs_create_bin_file(notes_attrs->dir,
1312 &notes_attrs->attrs[i]))
1313 goto out;
1315 mod->notes_attrs = notes_attrs;
1316 return;
1318 out:
1319 free_notes_attrs(notes_attrs, i);
1322 static void remove_notes_attrs(struct module *mod)
1324 if (mod->notes_attrs)
1325 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1328 #else
1330 static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1331 char *sectstrings, Elf_Shdr *sechdrs)
1335 static inline void remove_sect_attrs(struct module *mod)
1339 static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1340 char *sectstrings, Elf_Shdr *sechdrs)
1344 static inline void remove_notes_attrs(struct module *mod)
1347 #endif
1349 #ifdef CONFIG_SYSFS
1350 int module_add_modinfo_attrs(struct module *mod)
1352 struct module_attribute *attr;
1353 struct module_attribute *temp_attr;
1354 int error = 0;
1355 int i;
1357 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1358 (ARRAY_SIZE(modinfo_attrs) + 1)),
1359 GFP_KERNEL);
1360 if (!mod->modinfo_attrs)
1361 return -ENOMEM;
1363 temp_attr = mod->modinfo_attrs;
1364 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1365 if (!attr->test ||
1366 (attr->test && attr->test(mod))) {
1367 memcpy(temp_attr, attr, sizeof(*temp_attr));
1368 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1369 ++temp_attr;
1372 return error;
1375 void module_remove_modinfo_attrs(struct module *mod)
1377 struct module_attribute *attr;
1378 int i;
1380 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1381 /* pick a field to test for end of list */
1382 if (!attr->attr.name)
1383 break;
1384 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
1385 if (attr->free)
1386 attr->free(mod);
1388 kfree(mod->modinfo_attrs);
1391 int mod_sysfs_init(struct module *mod)
1393 int err;
1394 struct kobject *kobj;
1396 if (!module_sysfs_initialized) {
1397 printk(KERN_ERR "%s: module sysfs not initialized\n",
1398 mod->name);
1399 err = -EINVAL;
1400 goto out;
1403 kobj = kset_find_obj(module_kset, mod->name);
1404 if (kobj) {
1405 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1406 kobject_put(kobj);
1407 err = -EINVAL;
1408 goto out;
1411 mod->mkobj.mod = mod;
1413 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1414 mod->mkobj.kobj.kset = module_kset;
1415 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1416 "%s", mod->name);
1417 if (err)
1418 kobject_put(&mod->mkobj.kobj);
1420 /* delay uevent until full sysfs population */
1421 out:
1422 return err;
1425 int mod_sysfs_setup(struct module *mod,
1426 struct kernel_param *kparam,
1427 unsigned int num_params)
1429 int err;
1431 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
1432 if (!mod->holders_dir) {
1433 err = -ENOMEM;
1434 goto out_unreg;
1437 err = module_param_sysfs_setup(mod, kparam, num_params);
1438 if (err)
1439 goto out_unreg_holders;
1441 err = module_add_modinfo_attrs(mod);
1442 if (err)
1443 goto out_unreg_param;
1445 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
1446 return 0;
1448 out_unreg_param:
1449 module_param_sysfs_remove(mod);
1450 out_unreg_holders:
1451 kobject_put(mod->holders_dir);
1452 out_unreg:
1453 kobject_put(&mod->mkobj.kobj);
1454 return err;
1457 static void mod_sysfs_fini(struct module *mod)
1459 kobject_put(&mod->mkobj.kobj);
1462 #else /* CONFIG_SYSFS */
1464 static void mod_sysfs_fini(struct module *mod)
1468 #endif /* CONFIG_SYSFS */
1470 static void mod_kobject_remove(struct module *mod)
1472 module_remove_modinfo_attrs(mod);
1473 module_param_sysfs_remove(mod);
1474 kobject_put(mod->mkobj.drivers_dir);
1475 kobject_put(mod->holders_dir);
1476 mod_sysfs_fini(mod);
1480 * unlink the module with the whole machine is stopped with interrupts off
1481 * - this defends against kallsyms not taking locks
1483 static int __unlink_module(void *_mod)
1485 struct module *mod = _mod;
1486 list_del(&mod->list);
1487 return 0;
1490 /* Free a module, remove from lists, etc (must hold module_mutex). */
1491 static void free_module(struct module *mod)
1493 /* Delete from various lists */
1494 stop_machine(__unlink_module, mod, NULL);
1495 remove_notes_attrs(mod);
1496 remove_sect_attrs(mod);
1497 mod_kobject_remove(mod);
1499 /* Arch-specific cleanup. */
1500 module_arch_cleanup(mod);
1502 /* Module unload stuff */
1503 module_unload_free(mod);
1505 /* Free any allocated parameters. */
1506 destroy_params(mod->kp, mod->num_kp);
1508 /* This may be NULL, but that's OK */
1509 module_free(mod, mod->module_init);
1510 kfree(mod->args);
1511 if (mod->percpu)
1512 percpu_modfree(mod->percpu);
1513 #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP)
1514 if (mod->refptr)
1515 percpu_modfree(mod->refptr);
1516 #endif
1517 /* Free lock-classes: */
1518 lockdep_free_key_range(mod->module_core, mod->core_size);
1520 /* Finally, free the core (containing the module structure) */
1521 module_free(mod, mod->module_core);
1524 void *__symbol_get(const char *symbol)
1526 struct module *owner;
1527 const struct kernel_symbol *sym;
1529 preempt_disable();
1530 sym = find_symbol(symbol, &owner, NULL, true, true);
1531 if (sym && strong_try_module_get(owner))
1532 sym = NULL;
1533 preempt_enable();
1535 return sym ? (void *)sym->value : NULL;
1537 EXPORT_SYMBOL_GPL(__symbol_get);
1540 * Ensure that an exported symbol [global namespace] does not already exist
1541 * in the kernel or in some other module's exported symbol table.
1543 static int verify_export_symbols(struct module *mod)
1545 unsigned int i;
1546 struct module *owner;
1547 const struct kernel_symbol *s;
1548 struct {
1549 const struct kernel_symbol *sym;
1550 unsigned int num;
1551 } arr[] = {
1552 { mod->syms, mod->num_syms },
1553 { mod->gpl_syms, mod->num_gpl_syms },
1554 { mod->gpl_future_syms, mod->num_gpl_future_syms },
1555 #ifdef CONFIG_UNUSED_SYMBOLS
1556 { mod->unused_syms, mod->num_unused_syms },
1557 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
1558 #endif
1561 for (i = 0; i < ARRAY_SIZE(arr); i++) {
1562 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
1563 if (find_symbol(s->name, &owner, NULL, true, false)) {
1564 printk(KERN_ERR
1565 "%s: exports duplicate symbol %s"
1566 " (owned by %s)\n",
1567 mod->name, s->name, module_name(owner));
1568 return -ENOEXEC;
1572 return 0;
1575 /* Change all symbols so that st_value encodes the pointer directly. */
1576 static int simplify_symbols(Elf_Shdr *sechdrs,
1577 unsigned int symindex,
1578 const char *strtab,
1579 unsigned int versindex,
1580 unsigned int pcpuindex,
1581 struct module *mod)
1583 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1584 unsigned long secbase;
1585 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1586 int ret = 0;
1587 const struct kernel_symbol *ksym;
1589 for (i = 1; i < n; i++) {
1590 switch (sym[i].st_shndx) {
1591 case SHN_COMMON:
1592 /* We compiled with -fno-common. These are not
1593 supposed to happen. */
1594 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1595 printk("%s: please compile with -fno-common\n",
1596 mod->name);
1597 ret = -ENOEXEC;
1598 break;
1600 case SHN_ABS:
1601 /* Don't need to do anything */
1602 DEBUGP("Absolute symbol: 0x%08lx\n",
1603 (long)sym[i].st_value);
1604 break;
1606 case SHN_UNDEF:
1607 ksym = resolve_symbol(sechdrs, versindex,
1608 strtab + sym[i].st_name, mod);
1609 /* Ok if resolved. */
1610 if (ksym) {
1611 sym[i].st_value = ksym->value;
1612 break;
1615 /* Ok if weak. */
1616 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1617 break;
1619 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1620 mod->name, strtab + sym[i].st_name);
1621 ret = -ENOENT;
1622 break;
1624 default:
1625 /* Divert to percpu allocation if a percpu var. */
1626 if (sym[i].st_shndx == pcpuindex)
1627 secbase = (unsigned long)mod->percpu;
1628 else
1629 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1630 sym[i].st_value += secbase;
1631 break;
1635 return ret;
1638 /* Additional bytes needed by arch in front of individual sections */
1639 unsigned int __weak arch_mod_section_prepend(struct module *mod,
1640 unsigned int section)
1642 /* default implementation just returns zero */
1643 return 0;
1646 /* Update size with this section: return offset. */
1647 static long get_offset(struct module *mod, unsigned int *size,
1648 Elf_Shdr *sechdr, unsigned int section)
1650 long ret;
1652 *size += arch_mod_section_prepend(mod, section);
1653 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1654 *size = ret + sechdr->sh_size;
1655 return ret;
1658 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1659 might -- code, read-only data, read-write data, small data. Tally
1660 sizes, and place the offsets into sh_entsize fields: high bit means it
1661 belongs in init. */
1662 static void layout_sections(struct module *mod,
1663 const Elf_Ehdr *hdr,
1664 Elf_Shdr *sechdrs,
1665 const char *secstrings)
1667 static unsigned long const masks[][2] = {
1668 /* NOTE: all executable code must be the first section
1669 * in this array; otherwise modify the text_size
1670 * finder in the two loops below */
1671 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1672 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1673 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1674 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1676 unsigned int m, i;
1678 for (i = 0; i < hdr->e_shnum; i++)
1679 sechdrs[i].sh_entsize = ~0UL;
1681 DEBUGP("Core section allocation order:\n");
1682 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1683 for (i = 0; i < hdr->e_shnum; ++i) {
1684 Elf_Shdr *s = &sechdrs[i];
1686 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1687 || (s->sh_flags & masks[m][1])
1688 || s->sh_entsize != ~0UL
1689 || strstarts(secstrings + s->sh_name, ".init"))
1690 continue;
1691 s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
1692 DEBUGP("\t%s\n", secstrings + s->sh_name);
1694 if (m == 0)
1695 mod->core_text_size = mod->core_size;
1698 DEBUGP("Init section allocation order:\n");
1699 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1700 for (i = 0; i < hdr->e_shnum; ++i) {
1701 Elf_Shdr *s = &sechdrs[i];
1703 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1704 || (s->sh_flags & masks[m][1])
1705 || s->sh_entsize != ~0UL
1706 || !strstarts(secstrings + s->sh_name, ".init"))
1707 continue;
1708 s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
1709 | INIT_OFFSET_MASK);
1710 DEBUGP("\t%s\n", secstrings + s->sh_name);
1712 if (m == 0)
1713 mod->init_text_size = mod->init_size;
1717 static void set_license(struct module *mod, const char *license)
1719 if (!license)
1720 license = "unspecified";
1722 if (!license_is_gpl_compatible(license)) {
1723 if (!test_taint(TAINT_PROPRIETARY_MODULE))
1724 printk(KERN_WARNING "%s: module license '%s' taints "
1725 "kernel.\n", mod->name, license);
1726 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
1730 /* Parse tag=value strings from .modinfo section */
1731 static char *next_string(char *string, unsigned long *secsize)
1733 /* Skip non-zero chars */
1734 while (string[0]) {
1735 string++;
1736 if ((*secsize)-- <= 1)
1737 return NULL;
1740 /* Skip any zero padding. */
1741 while (!string[0]) {
1742 string++;
1743 if ((*secsize)-- <= 1)
1744 return NULL;
1746 return string;
1749 static char *get_modinfo(Elf_Shdr *sechdrs,
1750 unsigned int info,
1751 const char *tag)
1753 char *p;
1754 unsigned int taglen = strlen(tag);
1755 unsigned long size = sechdrs[info].sh_size;
1757 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1758 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1759 return p + taglen + 1;
1761 return NULL;
1764 static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1765 unsigned int infoindex)
1767 struct module_attribute *attr;
1768 int i;
1770 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1771 if (attr->setup)
1772 attr->setup(mod,
1773 get_modinfo(sechdrs,
1774 infoindex,
1775 attr->attr.name));
1779 #ifdef CONFIG_KALLSYMS
1781 /* lookup symbol in given range of kernel_symbols */
1782 static const struct kernel_symbol *lookup_symbol(const char *name,
1783 const struct kernel_symbol *start,
1784 const struct kernel_symbol *stop)
1786 const struct kernel_symbol *ks = start;
1787 for (; ks < stop; ks++)
1788 if (strcmp(ks->name, name) == 0)
1789 return ks;
1790 return NULL;
1793 static int is_exported(const char *name, unsigned long value,
1794 const struct module *mod)
1796 const struct kernel_symbol *ks;
1797 if (!mod)
1798 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
1799 else
1800 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
1801 return ks != NULL && ks->value == value;
1804 /* As per nm */
1805 static char elf_type(const Elf_Sym *sym,
1806 Elf_Shdr *sechdrs,
1807 const char *secstrings,
1808 struct module *mod)
1810 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1811 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1812 return 'v';
1813 else
1814 return 'w';
1816 if (sym->st_shndx == SHN_UNDEF)
1817 return 'U';
1818 if (sym->st_shndx == SHN_ABS)
1819 return 'a';
1820 if (sym->st_shndx >= SHN_LORESERVE)
1821 return '?';
1822 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1823 return 't';
1824 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1825 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1826 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1827 return 'r';
1828 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1829 return 'g';
1830 else
1831 return 'd';
1833 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1834 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1835 return 's';
1836 else
1837 return 'b';
1839 if (strstarts(secstrings + sechdrs[sym->st_shndx].sh_name, ".debug"))
1840 return 'n';
1841 return '?';
1844 static void add_kallsyms(struct module *mod,
1845 Elf_Shdr *sechdrs,
1846 unsigned int symindex,
1847 unsigned int strindex,
1848 const char *secstrings)
1850 unsigned int i;
1852 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1853 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1854 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1856 /* Set types up while we still have access to sections. */
1857 for (i = 0; i < mod->num_symtab; i++)
1858 mod->symtab[i].st_info
1859 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1861 #else
1862 static inline void add_kallsyms(struct module *mod,
1863 Elf_Shdr *sechdrs,
1864 unsigned int symindex,
1865 unsigned int strindex,
1866 const char *secstrings)
1869 #endif /* CONFIG_KALLSYMS */
1871 static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
1873 #ifdef CONFIG_DYNAMIC_DEBUG
1874 if (ddebug_add_module(debug, num, debug->modname))
1875 printk(KERN_ERR "dynamic debug error adding module: %s\n",
1876 debug->modname);
1877 #endif
1880 static void *module_alloc_update_bounds(unsigned long size)
1882 void *ret = module_alloc(size);
1884 if (ret) {
1885 /* Update module bounds. */
1886 if ((unsigned long)ret < module_addr_min)
1887 module_addr_min = (unsigned long)ret;
1888 if ((unsigned long)ret + size > module_addr_max)
1889 module_addr_max = (unsigned long)ret + size;
1891 return ret;
1894 #ifdef CONFIG_DEBUG_KMEMLEAK
1895 static void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
1896 Elf_Shdr *sechdrs, char *secstrings)
1898 unsigned int i;
1900 /* only scan the sections containing data */
1901 kmemleak_scan_area(mod->module_core, (unsigned long)mod -
1902 (unsigned long)mod->module_core,
1903 sizeof(struct module), GFP_KERNEL);
1905 for (i = 1; i < hdr->e_shnum; i++) {
1906 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1907 continue;
1908 if (strncmp(secstrings + sechdrs[i].sh_name, ".data", 5) != 0
1909 && strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) != 0)
1910 continue;
1912 kmemleak_scan_area(mod->module_core, sechdrs[i].sh_addr -
1913 (unsigned long)mod->module_core,
1914 sechdrs[i].sh_size, GFP_KERNEL);
1917 #else
1918 static inline void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
1919 Elf_Shdr *sechdrs, char *secstrings)
1922 #endif
1924 /* Allocate and load the module: note that size of section 0 is always
1925 zero, and we rely on this for optional sections. */
1926 static noinline struct module *load_module(void __user *umod,
1927 unsigned long len,
1928 const char __user *uargs)
1930 Elf_Ehdr *hdr;
1931 Elf_Shdr *sechdrs;
1932 char *secstrings, *args, *modmagic, *strtab = NULL;
1933 char *staging;
1934 unsigned int i;
1935 unsigned int symindex = 0;
1936 unsigned int strindex = 0;
1937 unsigned int modindex, versindex, infoindex, pcpuindex;
1938 struct module *mod;
1939 long err = 0;
1940 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1941 mm_segment_t old_fs;
1943 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1944 umod, len, uargs);
1945 if (len < sizeof(*hdr))
1946 return ERR_PTR(-ENOEXEC);
1948 /* Suck in entire file: we'll want most of it. */
1949 /* vmalloc barfs on "unusual" numbers. Check here */
1950 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1951 return ERR_PTR(-ENOMEM);
1953 if (copy_from_user(hdr, umod, len) != 0) {
1954 err = -EFAULT;
1955 goto free_hdr;
1958 /* Sanity checks against insmoding binaries or wrong arch,
1959 weird elf version */
1960 if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
1961 || hdr->e_type != ET_REL
1962 || !elf_check_arch(hdr)
1963 || hdr->e_shentsize != sizeof(*sechdrs)) {
1964 err = -ENOEXEC;
1965 goto free_hdr;
1968 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1969 goto truncated;
1971 /* Convenience variables */
1972 sechdrs = (void *)hdr + hdr->e_shoff;
1973 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1974 sechdrs[0].sh_addr = 0;
1976 for (i = 1; i < hdr->e_shnum; i++) {
1977 if (sechdrs[i].sh_type != SHT_NOBITS
1978 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1979 goto truncated;
1981 /* Mark all sections sh_addr with their address in the
1982 temporary image. */
1983 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1985 /* Internal symbols and strings. */
1986 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1987 symindex = i;
1988 strindex = sechdrs[i].sh_link;
1989 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1991 #ifndef CONFIG_MODULE_UNLOAD
1992 /* Don't load .exit sections */
1993 if (strstarts(secstrings+sechdrs[i].sh_name, ".exit"))
1994 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1995 #endif
1998 modindex = find_sec(hdr, sechdrs, secstrings,
1999 ".gnu.linkonce.this_module");
2000 if (!modindex) {
2001 printk(KERN_WARNING "No module found in object\n");
2002 err = -ENOEXEC;
2003 goto free_hdr;
2005 /* This is temporary: point mod into copy of data. */
2006 mod = (void *)sechdrs[modindex].sh_addr;
2008 if (symindex == 0) {
2009 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
2010 mod->name);
2011 err = -ENOEXEC;
2012 goto free_hdr;
2015 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
2016 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
2017 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
2019 /* Don't keep modinfo and version sections. */
2020 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
2021 sechdrs[versindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
2022 #ifdef CONFIG_KALLSYMS
2023 /* Keep symbol and string tables for decoding later. */
2024 sechdrs[symindex].sh_flags |= SHF_ALLOC;
2025 sechdrs[strindex].sh_flags |= SHF_ALLOC;
2026 #endif
2028 /* Check module struct version now, before we try to use module. */
2029 if (!check_modstruct_version(sechdrs, versindex, mod)) {
2030 err = -ENOEXEC;
2031 goto free_hdr;
2034 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
2035 /* This is allowed: modprobe --force will invalidate it. */
2036 if (!modmagic) {
2037 err = try_to_force_load(mod, "bad vermagic");
2038 if (err)
2039 goto free_hdr;
2040 } else if (!same_magic(modmagic, vermagic, versindex)) {
2041 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
2042 mod->name, modmagic, vermagic);
2043 err = -ENOEXEC;
2044 goto free_hdr;
2047 staging = get_modinfo(sechdrs, infoindex, "staging");
2048 if (staging) {
2049 add_taint_module(mod, TAINT_CRAP);
2050 printk(KERN_WARNING "%s: module is from the staging directory,"
2051 " the quality is unknown, you have been warned.\n",
2052 mod->name);
2055 /* Now copy in args */
2056 args = strndup_user(uargs, ~0UL >> 1);
2057 if (IS_ERR(args)) {
2058 err = PTR_ERR(args);
2059 goto free_hdr;
2062 if (find_module(mod->name)) {
2063 err = -EEXIST;
2064 goto free_mod;
2067 mod->state = MODULE_STATE_COMING;
2069 /* Allow arches to frob section contents and sizes. */
2070 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
2071 if (err < 0)
2072 goto free_mod;
2074 if (pcpuindex) {
2075 /* We have a special allocation for this section. */
2076 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
2077 sechdrs[pcpuindex].sh_addralign,
2078 mod->name);
2079 if (!percpu) {
2080 err = -ENOMEM;
2081 goto free_mod;
2083 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
2084 mod->percpu = percpu;
2087 /* Determine total sizes, and put offsets in sh_entsize. For now
2088 this is done generically; there doesn't appear to be any
2089 special cases for the architectures. */
2090 layout_sections(mod, hdr, sechdrs, secstrings);
2092 /* Do the allocs. */
2093 ptr = module_alloc_update_bounds(mod->core_size);
2095 * The pointer to this block is stored in the module structure
2096 * which is inside the block. Just mark it as not being a
2097 * leak.
2099 kmemleak_not_leak(ptr);
2100 if (!ptr) {
2101 err = -ENOMEM;
2102 goto free_percpu;
2104 memset(ptr, 0, mod->core_size);
2105 mod->module_core = ptr;
2107 ptr = module_alloc_update_bounds(mod->init_size);
2109 * The pointer to this block is stored in the module structure
2110 * which is inside the block. This block doesn't need to be
2111 * scanned as it contains data and code that will be freed
2112 * after the module is initialized.
2114 kmemleak_ignore(ptr);
2115 if (!ptr && mod->init_size) {
2116 err = -ENOMEM;
2117 goto free_core;
2119 memset(ptr, 0, mod->init_size);
2120 mod->module_init = ptr;
2122 /* Transfer each section which specifies SHF_ALLOC */
2123 DEBUGP("final section addresses:\n");
2124 for (i = 0; i < hdr->e_shnum; i++) {
2125 void *dest;
2127 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
2128 continue;
2130 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
2131 dest = mod->module_init
2132 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
2133 else
2134 dest = mod->module_core + sechdrs[i].sh_entsize;
2136 if (sechdrs[i].sh_type != SHT_NOBITS)
2137 memcpy(dest, (void *)sechdrs[i].sh_addr,
2138 sechdrs[i].sh_size);
2139 /* Update sh_addr to point to copy in image. */
2140 sechdrs[i].sh_addr = (unsigned long)dest;
2141 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
2143 /* Module has been moved. */
2144 mod = (void *)sechdrs[modindex].sh_addr;
2145 kmemleak_load_module(mod, hdr, sechdrs, secstrings);
2147 #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP)
2148 mod->refptr = percpu_modalloc(sizeof(local_t), __alignof__(local_t),
2149 mod->name);
2150 if (!mod->refptr) {
2151 err = -ENOMEM;
2152 goto free_init;
2154 #endif
2155 /* Now we've moved module, initialize linked lists, etc. */
2156 module_unload_init(mod);
2158 /* add kobject, so we can reference it. */
2159 err = mod_sysfs_init(mod);
2160 if (err)
2161 goto free_unload;
2163 /* Set up license info based on the info section */
2164 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
2167 * ndiswrapper is under GPL by itself, but loads proprietary modules.
2168 * Don't use add_taint_module(), as it would prevent ndiswrapper from
2169 * using GPL-only symbols it needs.
2171 if (strcmp(mod->name, "ndiswrapper") == 0)
2172 add_taint(TAINT_PROPRIETARY_MODULE);
2174 /* driverloader was caught wrongly pretending to be under GPL */
2175 if (strcmp(mod->name, "driverloader") == 0)
2176 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2178 /* Set up MODINFO_ATTR fields */
2179 setup_modinfo(mod, sechdrs, infoindex);
2181 /* Fix up syms, so that st_value is a pointer to location. */
2182 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
2183 mod);
2184 if (err < 0)
2185 goto cleanup;
2187 /* Now we've got everything in the final locations, we can
2188 * find optional sections. */
2189 mod->kp = section_objs(hdr, sechdrs, secstrings, "__param",
2190 sizeof(*mod->kp), &mod->num_kp);
2191 mod->syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab",
2192 sizeof(*mod->syms), &mod->num_syms);
2193 mod->crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab");
2194 mod->gpl_syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab_gpl",
2195 sizeof(*mod->gpl_syms),
2196 &mod->num_gpl_syms);
2197 mod->gpl_crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab_gpl");
2198 mod->gpl_future_syms = section_objs(hdr, sechdrs, secstrings,
2199 "__ksymtab_gpl_future",
2200 sizeof(*mod->gpl_future_syms),
2201 &mod->num_gpl_future_syms);
2202 mod->gpl_future_crcs = section_addr(hdr, sechdrs, secstrings,
2203 "__kcrctab_gpl_future");
2205 #ifdef CONFIG_UNUSED_SYMBOLS
2206 mod->unused_syms = section_objs(hdr, sechdrs, secstrings,
2207 "__ksymtab_unused",
2208 sizeof(*mod->unused_syms),
2209 &mod->num_unused_syms);
2210 mod->unused_crcs = section_addr(hdr, sechdrs, secstrings,
2211 "__kcrctab_unused");
2212 mod->unused_gpl_syms = section_objs(hdr, sechdrs, secstrings,
2213 "__ksymtab_unused_gpl",
2214 sizeof(*mod->unused_gpl_syms),
2215 &mod->num_unused_gpl_syms);
2216 mod->unused_gpl_crcs = section_addr(hdr, sechdrs, secstrings,
2217 "__kcrctab_unused_gpl");
2218 #endif
2220 #ifdef CONFIG_MARKERS
2221 mod->markers = section_objs(hdr, sechdrs, secstrings, "__markers",
2222 sizeof(*mod->markers), &mod->num_markers);
2223 #endif
2224 #ifdef CONFIG_TRACEPOINTS
2225 mod->tracepoints = section_objs(hdr, sechdrs, secstrings,
2226 "__tracepoints",
2227 sizeof(*mod->tracepoints),
2228 &mod->num_tracepoints);
2229 #endif
2230 #ifdef CONFIG_EVENT_TRACING
2231 mod->trace_events = section_objs(hdr, sechdrs, secstrings,
2232 "_ftrace_events",
2233 sizeof(*mod->trace_events),
2234 &mod->num_trace_events);
2235 #endif
2236 #ifdef CONFIG_FTRACE_MCOUNT_RECORD
2237 /* sechdrs[0].sh_size is always zero */
2238 mod->ftrace_callsites = section_objs(hdr, sechdrs, secstrings,
2239 "__mcount_loc",
2240 sizeof(*mod->ftrace_callsites),
2241 &mod->num_ftrace_callsites);
2242 #endif
2243 #ifdef CONFIG_MODVERSIONS
2244 if ((mod->num_syms && !mod->crcs)
2245 || (mod->num_gpl_syms && !mod->gpl_crcs)
2246 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2247 #ifdef CONFIG_UNUSED_SYMBOLS
2248 || (mod->num_unused_syms && !mod->unused_crcs)
2249 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2250 #endif
2252 err = try_to_force_load(mod,
2253 "no versions for exported symbols");
2254 if (err)
2255 goto cleanup;
2257 #endif
2259 /* Now do relocations. */
2260 for (i = 1; i < hdr->e_shnum; i++) {
2261 const char *strtab = (char *)sechdrs[strindex].sh_addr;
2262 unsigned int info = sechdrs[i].sh_info;
2264 /* Not a valid relocation section? */
2265 if (info >= hdr->e_shnum)
2266 continue;
2268 /* Don't bother with non-allocated sections */
2269 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
2270 continue;
2272 if (sechdrs[i].sh_type == SHT_REL)
2273 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
2274 else if (sechdrs[i].sh_type == SHT_RELA)
2275 err = apply_relocate_add(sechdrs, strtab, symindex, i,
2276 mod);
2277 if (err < 0)
2278 goto cleanup;
2281 /* Find duplicate symbols */
2282 err = verify_export_symbols(mod);
2283 if (err < 0)
2284 goto cleanup;
2286 /* Set up and sort exception table */
2287 mod->extable = section_objs(hdr, sechdrs, secstrings, "__ex_table",
2288 sizeof(*mod->extable), &mod->num_exentries);
2289 sort_extable(mod->extable, mod->extable + mod->num_exentries);
2291 /* Finally, copy percpu area over. */
2292 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
2293 sechdrs[pcpuindex].sh_size);
2295 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
2297 if (!mod->taints) {
2298 struct _ddebug *debug;
2299 unsigned int num_debug;
2301 debug = section_objs(hdr, sechdrs, secstrings, "__verbose",
2302 sizeof(*debug), &num_debug);
2303 if (debug)
2304 dynamic_debug_setup(debug, num_debug);
2307 err = module_finalize(hdr, sechdrs, mod);
2308 if (err < 0)
2309 goto cleanup;
2311 /* flush the icache in correct context */
2312 old_fs = get_fs();
2313 set_fs(KERNEL_DS);
2316 * Flush the instruction cache, since we've played with text.
2317 * Do it before processing of module parameters, so the module
2318 * can provide parameter accessor functions of its own.
2320 if (mod->module_init)
2321 flush_icache_range((unsigned long)mod->module_init,
2322 (unsigned long)mod->module_init
2323 + mod->init_size);
2324 flush_icache_range((unsigned long)mod->module_core,
2325 (unsigned long)mod->module_core + mod->core_size);
2327 set_fs(old_fs);
2329 mod->args = args;
2330 if (section_addr(hdr, sechdrs, secstrings, "__obsparm"))
2331 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2332 mod->name);
2334 /* Now sew it into the lists so we can get lockdep and oops
2335 * info during argument parsing. Noone should access us, since
2336 * strong_try_module_get() will fail.
2337 * lockdep/oops can run asynchronous, so use the RCU list insertion
2338 * function to insert in a way safe to concurrent readers.
2339 * The mutex protects against concurrent writers.
2341 list_add_rcu(&mod->list, &modules);
2343 err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL);
2344 if (err < 0)
2345 goto unlink;
2347 err = mod_sysfs_setup(mod, mod->kp, mod->num_kp);
2348 if (err < 0)
2349 goto unlink;
2350 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
2351 add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
2353 /* Get rid of temporary copy */
2354 vfree(hdr);
2356 /* Done! */
2357 return mod;
2359 unlink:
2360 /* Unlink carefully: kallsyms could be walking list. */
2361 list_del_rcu(&mod->list);
2362 synchronize_sched();
2363 module_arch_cleanup(mod);
2364 cleanup:
2365 kobject_del(&mod->mkobj.kobj);
2366 kobject_put(&mod->mkobj.kobj);
2367 free_unload:
2368 module_unload_free(mod);
2369 #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP)
2370 free_init:
2371 percpu_modfree(mod->refptr);
2372 #endif
2373 module_free(mod, mod->module_init);
2374 free_core:
2375 module_free(mod, mod->module_core);
2376 /* mod will be freed with core. Don't access it beyond this line! */
2377 free_percpu:
2378 if (percpu)
2379 percpu_modfree(percpu);
2380 free_mod:
2381 kfree(args);
2382 free_hdr:
2383 vfree(hdr);
2384 return ERR_PTR(err);
2386 truncated:
2387 printk(KERN_ERR "Module len %lu truncated\n", len);
2388 err = -ENOEXEC;
2389 goto free_hdr;
2392 /* This is where the real work happens */
2393 SYSCALL_DEFINE3(init_module, void __user *, umod,
2394 unsigned long, len, const char __user *, uargs)
2396 struct module *mod;
2397 int ret = 0;
2399 /* Must have permission */
2400 if (!capable(CAP_SYS_MODULE) || modules_disabled)
2401 return -EPERM;
2403 /* Only one module load at a time, please */
2404 if (mutex_lock_interruptible(&module_mutex) != 0)
2405 return -EINTR;
2407 /* Do all the hard work */
2408 mod = load_module(umod, len, uargs);
2409 if (IS_ERR(mod)) {
2410 mutex_unlock(&module_mutex);
2411 return PTR_ERR(mod);
2414 /* Drop lock so they can recurse */
2415 mutex_unlock(&module_mutex);
2417 blocking_notifier_call_chain(&module_notify_list,
2418 MODULE_STATE_COMING, mod);
2420 /* Start the module */
2421 if (mod->init != NULL)
2422 ret = do_one_initcall(mod->init);
2423 if (ret < 0) {
2424 /* Init routine failed: abort. Try to protect us from
2425 buggy refcounters. */
2426 mod->state = MODULE_STATE_GOING;
2427 synchronize_sched();
2428 module_put(mod);
2429 blocking_notifier_call_chain(&module_notify_list,
2430 MODULE_STATE_GOING, mod);
2431 mutex_lock(&module_mutex);
2432 free_module(mod);
2433 mutex_unlock(&module_mutex);
2434 wake_up(&module_wq);
2435 return ret;
2437 if (ret > 0) {
2438 printk(KERN_WARNING "%s: '%s'->init suspiciously returned %d, "
2439 "it should follow 0/-E convention\n"
2440 KERN_WARNING "%s: loading module anyway...\n",
2441 __func__, mod->name, ret,
2442 __func__);
2443 dump_stack();
2446 /* Now it's a first class citizen! Wake up anyone waiting for it. */
2447 mod->state = MODULE_STATE_LIVE;
2448 wake_up(&module_wq);
2449 blocking_notifier_call_chain(&module_notify_list,
2450 MODULE_STATE_LIVE, mod);
2452 /* We need to finish all async code before the module init sequence is done */
2453 async_synchronize_full();
2455 mutex_lock(&module_mutex);
2456 /* Drop initial reference. */
2457 module_put(mod);
2458 trim_init_extable(mod);
2459 module_free(mod, mod->module_init);
2460 mod->module_init = NULL;
2461 mod->init_size = 0;
2462 mod->init_text_size = 0;
2463 mutex_unlock(&module_mutex);
2465 return 0;
2468 static inline int within(unsigned long addr, void *start, unsigned long size)
2470 return ((void *)addr >= start && (void *)addr < start + size);
2473 #ifdef CONFIG_KALLSYMS
2475 * This ignores the intensely annoying "mapping symbols" found
2476 * in ARM ELF files: $a, $t and $d.
2478 static inline int is_arm_mapping_symbol(const char *str)
2480 return str[0] == '$' && strchr("atd", str[1])
2481 && (str[2] == '\0' || str[2] == '.');
2484 static const char *get_ksymbol(struct module *mod,
2485 unsigned long addr,
2486 unsigned long *size,
2487 unsigned long *offset)
2489 unsigned int i, best = 0;
2490 unsigned long nextval;
2492 /* At worse, next value is at end of module */
2493 if (within_module_init(addr, mod))
2494 nextval = (unsigned long)mod->module_init+mod->init_text_size;
2495 else
2496 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2498 /* Scan for closest preceeding symbol, and next symbol. (ELF
2499 starts real symbols at 1). */
2500 for (i = 1; i < mod->num_symtab; i++) {
2501 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2502 continue;
2504 /* We ignore unnamed symbols: they're uninformative
2505 * and inserted at a whim. */
2506 if (mod->symtab[i].st_value <= addr
2507 && mod->symtab[i].st_value > mod->symtab[best].st_value
2508 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2509 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2510 best = i;
2511 if (mod->symtab[i].st_value > addr
2512 && mod->symtab[i].st_value < nextval
2513 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2514 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2515 nextval = mod->symtab[i].st_value;
2518 if (!best)
2519 return NULL;
2521 if (size)
2522 *size = nextval - mod->symtab[best].st_value;
2523 if (offset)
2524 *offset = addr - mod->symtab[best].st_value;
2525 return mod->strtab + mod->symtab[best].st_name;
2528 /* For kallsyms to ask for address resolution. NULL means not found. Careful
2529 * not to lock to avoid deadlock on oopses, simply disable preemption. */
2530 const char *module_address_lookup(unsigned long addr,
2531 unsigned long *size,
2532 unsigned long *offset,
2533 char **modname,
2534 char *namebuf)
2536 struct module *mod;
2537 const char *ret = NULL;
2539 preempt_disable();
2540 list_for_each_entry_rcu(mod, &modules, list) {
2541 if (within_module_init(addr, mod) ||
2542 within_module_core(addr, mod)) {
2543 if (modname)
2544 *modname = mod->name;
2545 ret = get_ksymbol(mod, addr, size, offset);
2546 break;
2549 /* Make a copy in here where it's safe */
2550 if (ret) {
2551 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2552 ret = namebuf;
2554 preempt_enable();
2555 return ret;
2558 int lookup_module_symbol_name(unsigned long addr, char *symname)
2560 struct module *mod;
2562 preempt_disable();
2563 list_for_each_entry_rcu(mod, &modules, list) {
2564 if (within_module_init(addr, mod) ||
2565 within_module_core(addr, mod)) {
2566 const char *sym;
2568 sym = get_ksymbol(mod, addr, NULL, NULL);
2569 if (!sym)
2570 goto out;
2571 strlcpy(symname, sym, KSYM_NAME_LEN);
2572 preempt_enable();
2573 return 0;
2576 out:
2577 preempt_enable();
2578 return -ERANGE;
2581 int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2582 unsigned long *offset, char *modname, char *name)
2584 struct module *mod;
2586 preempt_disable();
2587 list_for_each_entry_rcu(mod, &modules, list) {
2588 if (within_module_init(addr, mod) ||
2589 within_module_core(addr, mod)) {
2590 const char *sym;
2592 sym = get_ksymbol(mod, addr, size, offset);
2593 if (!sym)
2594 goto out;
2595 if (modname)
2596 strlcpy(modname, mod->name, MODULE_NAME_LEN);
2597 if (name)
2598 strlcpy(name, sym, KSYM_NAME_LEN);
2599 preempt_enable();
2600 return 0;
2603 out:
2604 preempt_enable();
2605 return -ERANGE;
2608 int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2609 char *name, char *module_name, int *exported)
2611 struct module *mod;
2613 preempt_disable();
2614 list_for_each_entry_rcu(mod, &modules, list) {
2615 if (symnum < mod->num_symtab) {
2616 *value = mod->symtab[symnum].st_value;
2617 *type = mod->symtab[symnum].st_info;
2618 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
2619 KSYM_NAME_LEN);
2620 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
2621 *exported = is_exported(name, *value, mod);
2622 preempt_enable();
2623 return 0;
2625 symnum -= mod->num_symtab;
2627 preempt_enable();
2628 return -ERANGE;
2631 static unsigned long mod_find_symname(struct module *mod, const char *name)
2633 unsigned int i;
2635 for (i = 0; i < mod->num_symtab; i++)
2636 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2637 mod->symtab[i].st_info != 'U')
2638 return mod->symtab[i].st_value;
2639 return 0;
2642 /* Look for this name: can be of form module:name. */
2643 unsigned long module_kallsyms_lookup_name(const char *name)
2645 struct module *mod;
2646 char *colon;
2647 unsigned long ret = 0;
2649 /* Don't lock: we're in enough trouble already. */
2650 preempt_disable();
2651 if ((colon = strchr(name, ':')) != NULL) {
2652 *colon = '\0';
2653 if ((mod = find_module(name)) != NULL)
2654 ret = mod_find_symname(mod, colon+1);
2655 *colon = ':';
2656 } else {
2657 list_for_each_entry_rcu(mod, &modules, list)
2658 if ((ret = mod_find_symname(mod, name)) != 0)
2659 break;
2661 preempt_enable();
2662 return ret;
2665 int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
2666 struct module *, unsigned long),
2667 void *data)
2669 struct module *mod;
2670 unsigned int i;
2671 int ret;
2673 list_for_each_entry(mod, &modules, list) {
2674 for (i = 0; i < mod->num_symtab; i++) {
2675 ret = fn(data, mod->strtab + mod->symtab[i].st_name,
2676 mod, mod->symtab[i].st_value);
2677 if (ret != 0)
2678 return ret;
2681 return 0;
2683 #endif /* CONFIG_KALLSYMS */
2685 static char *module_flags(struct module *mod, char *buf)
2687 int bx = 0;
2689 if (mod->taints ||
2690 mod->state == MODULE_STATE_GOING ||
2691 mod->state == MODULE_STATE_COMING) {
2692 buf[bx++] = '(';
2693 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
2694 buf[bx++] = 'P';
2695 if (mod->taints & (1 << TAINT_FORCED_MODULE))
2696 buf[bx++] = 'F';
2697 if (mod->taints & (1 << TAINT_CRAP))
2698 buf[bx++] = 'C';
2700 * TAINT_FORCED_RMMOD: could be added.
2701 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2702 * apply to modules.
2705 /* Show a - for module-is-being-unloaded */
2706 if (mod->state == MODULE_STATE_GOING)
2707 buf[bx++] = '-';
2708 /* Show a + for module-is-being-loaded */
2709 if (mod->state == MODULE_STATE_COMING)
2710 buf[bx++] = '+';
2711 buf[bx++] = ')';
2713 buf[bx] = '\0';
2715 return buf;
2718 #ifdef CONFIG_PROC_FS
2719 /* Called by the /proc file system to return a list of modules. */
2720 static void *m_start(struct seq_file *m, loff_t *pos)
2722 mutex_lock(&module_mutex);
2723 return seq_list_start(&modules, *pos);
2726 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2728 return seq_list_next(p, &modules, pos);
2731 static void m_stop(struct seq_file *m, void *p)
2733 mutex_unlock(&module_mutex);
2736 static int m_show(struct seq_file *m, void *p)
2738 struct module *mod = list_entry(p, struct module, list);
2739 char buf[8];
2741 seq_printf(m, "%s %u",
2742 mod->name, mod->init_size + mod->core_size);
2743 print_unload_info(m, mod);
2745 /* Informative for users. */
2746 seq_printf(m, " %s",
2747 mod->state == MODULE_STATE_GOING ? "Unloading":
2748 mod->state == MODULE_STATE_COMING ? "Loading":
2749 "Live");
2750 /* Used by oprofile and other similar tools. */
2751 seq_printf(m, " 0x%p", mod->module_core);
2753 /* Taints info */
2754 if (mod->taints)
2755 seq_printf(m, " %s", module_flags(mod, buf));
2757 seq_printf(m, "\n");
2758 return 0;
2761 /* Format: modulename size refcount deps address
2763 Where refcount is a number or -, and deps is a comma-separated list
2764 of depends or -.
2766 static const struct seq_operations modules_op = {
2767 .start = m_start,
2768 .next = m_next,
2769 .stop = m_stop,
2770 .show = m_show
2773 static int modules_open(struct inode *inode, struct file *file)
2775 return seq_open(file, &modules_op);
2778 static const struct file_operations proc_modules_operations = {
2779 .open = modules_open,
2780 .read = seq_read,
2781 .llseek = seq_lseek,
2782 .release = seq_release,
2785 static int __init proc_modules_init(void)
2787 proc_create("modules", 0, NULL, &proc_modules_operations);
2788 return 0;
2790 module_init(proc_modules_init);
2791 #endif
2793 /* Given an address, look for it in the module exception tables. */
2794 const struct exception_table_entry *search_module_extables(unsigned long addr)
2796 const struct exception_table_entry *e = NULL;
2797 struct module *mod;
2799 preempt_disable();
2800 list_for_each_entry_rcu(mod, &modules, list) {
2801 if (mod->num_exentries == 0)
2802 continue;
2804 e = search_extable(mod->extable,
2805 mod->extable + mod->num_exentries - 1,
2806 addr);
2807 if (e)
2808 break;
2810 preempt_enable();
2812 /* Now, if we found one, we are running inside it now, hence
2813 we cannot unload the module, hence no refcnt needed. */
2814 return e;
2818 * is_module_address - is this address inside a module?
2819 * @addr: the address to check.
2821 * See is_module_text_address() if you simply want to see if the address
2822 * is code (not data).
2824 bool is_module_address(unsigned long addr)
2826 bool ret;
2828 preempt_disable();
2829 ret = __module_address(addr) != NULL;
2830 preempt_enable();
2832 return ret;
2836 * __module_address - get the module which contains an address.
2837 * @addr: the address.
2839 * Must be called with preempt disabled or module mutex held so that
2840 * module doesn't get freed during this.
2842 struct module *__module_address(unsigned long addr)
2844 struct module *mod;
2846 if (addr < module_addr_min || addr > module_addr_max)
2847 return NULL;
2849 list_for_each_entry_rcu(mod, &modules, list)
2850 if (within_module_core(addr, mod)
2851 || within_module_init(addr, mod))
2852 return mod;
2853 return NULL;
2855 EXPORT_SYMBOL_GPL(__module_address);
2858 * is_module_text_address - is this address inside module code?
2859 * @addr: the address to check.
2861 * See is_module_address() if you simply want to see if the address is
2862 * anywhere in a module. See kernel_text_address() for testing if an
2863 * address corresponds to kernel or module code.
2865 bool is_module_text_address(unsigned long addr)
2867 bool ret;
2869 preempt_disable();
2870 ret = __module_text_address(addr) != NULL;
2871 preempt_enable();
2873 return ret;
2877 * __module_text_address - get the module whose code contains an address.
2878 * @addr: the address.
2880 * Must be called with preempt disabled or module mutex held so that
2881 * module doesn't get freed during this.
2883 struct module *__module_text_address(unsigned long addr)
2885 struct module *mod = __module_address(addr);
2886 if (mod) {
2887 /* Make sure it's within the text section. */
2888 if (!within(addr, mod->module_init, mod->init_text_size)
2889 && !within(addr, mod->module_core, mod->core_text_size))
2890 mod = NULL;
2892 return mod;
2894 EXPORT_SYMBOL_GPL(__module_text_address);
2896 /* Don't grab lock, we're oopsing. */
2897 void print_modules(void)
2899 struct module *mod;
2900 char buf[8];
2902 printk("Modules linked in:");
2903 /* Most callers should already have preempt disabled, but make sure */
2904 preempt_disable();
2905 list_for_each_entry_rcu(mod, &modules, list)
2906 printk(" %s%s", mod->name, module_flags(mod, buf));
2907 preempt_enable();
2908 if (last_unloaded_module[0])
2909 printk(" [last unloaded: %s]", last_unloaded_module);
2910 printk("\n");
2913 #ifdef CONFIG_MODVERSIONS
2914 /* Generate the signature for all relevant module structures here.
2915 * If these change, we don't want to try to parse the module. */
2916 void module_layout(struct module *mod,
2917 struct modversion_info *ver,
2918 struct kernel_param *kp,
2919 struct kernel_symbol *ks,
2920 struct marker *marker,
2921 struct tracepoint *tp)
2924 EXPORT_SYMBOL(module_layout);
2925 #endif
2927 #ifdef CONFIG_MARKERS
2928 void module_update_markers(void)
2930 struct module *mod;
2932 mutex_lock(&module_mutex);
2933 list_for_each_entry(mod, &modules, list)
2934 if (!mod->taints)
2935 marker_update_probe_range(mod->markers,
2936 mod->markers + mod->num_markers);
2937 mutex_unlock(&module_mutex);
2939 #endif
2941 #ifdef CONFIG_TRACEPOINTS
2942 void module_update_tracepoints(void)
2944 struct module *mod;
2946 mutex_lock(&module_mutex);
2947 list_for_each_entry(mod, &modules, list)
2948 if (!mod->taints)
2949 tracepoint_update_probe_range(mod->tracepoints,
2950 mod->tracepoints + mod->num_tracepoints);
2951 mutex_unlock(&module_mutex);
2955 * Returns 0 if current not found.
2956 * Returns 1 if current found.
2958 int module_get_iter_tracepoints(struct tracepoint_iter *iter)
2960 struct module *iter_mod;
2961 int found = 0;
2963 mutex_lock(&module_mutex);
2964 list_for_each_entry(iter_mod, &modules, list) {
2965 if (!iter_mod->taints) {
2967 * Sorted module list
2969 if (iter_mod < iter->module)
2970 continue;
2971 else if (iter_mod > iter->module)
2972 iter->tracepoint = NULL;
2973 found = tracepoint_get_iter_range(&iter->tracepoint,
2974 iter_mod->tracepoints,
2975 iter_mod->tracepoints
2976 + iter_mod->num_tracepoints);
2977 if (found) {
2978 iter->module = iter_mod;
2979 break;
2983 mutex_unlock(&module_mutex);
2984 return found;
2986 #endif