Kobject: remove kobject_init() as no one uses it anymore
[linux-2.6/mini2440.git] / kernel / module.c
blob89cd4c7361d8ba3b77bc4d3013574baf8c81c50e
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/init.h>
22 #include <linux/kallsyms.h>
23 #include <linux/sysfs.h>
24 #include <linux/kernel.h>
25 #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>
32 #include <linux/capability.h>
33 #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>
39 #include <linux/sched.h>
40 #include <linux/stop_machine.h>
41 #include <linux/device.h>
42 #include <linux/string.h>
43 #include <linux/mutex.h>
44 #include <linux/unwind.h>
45 #include <asm/uaccess.h>
46 #include <asm/semaphore.h>
47 #include <asm/cacheflush.h>
48 #include <linux/license.h>
50 #if 0
51 #define DEBUGP printk
52 #else
53 #define DEBUGP(fmt , a...)
54 #endif
56 #ifndef ARCH_SHF_SMALL
57 #define ARCH_SHF_SMALL 0
58 #endif
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))
63 /* List of modules, protected by module_mutex or preempt_disable
64 * (add/delete uses stop_machine). */
65 static DEFINE_MUTEX(module_mutex);
66 static LIST_HEAD(modules);
68 static BLOCKING_NOTIFIER_HEAD(module_notify_list);
70 int register_module_notifier(struct notifier_block * nb)
72 return blocking_notifier_chain_register(&module_notify_list, nb);
74 EXPORT_SYMBOL(register_module_notifier);
76 int unregister_module_notifier(struct notifier_block * nb)
78 return blocking_notifier_chain_unregister(&module_notify_list, nb);
80 EXPORT_SYMBOL(unregister_module_notifier);
82 /* We require a truly strong try_module_get(): 0 means failure due to
83 ongoing or failed initialization etc. */
84 static inline int strong_try_module_get(struct module *mod)
86 if (mod && mod->state == MODULE_STATE_COMING)
87 return 0;
88 return try_module_get(mod);
91 static inline void add_taint_module(struct module *mod, unsigned flag)
93 add_taint(flag);
94 mod->taints |= flag;
98 * A thread that wants to hold a reference to a module only while it
99 * is running can call this to safely exit. nfsd and lockd use this.
101 void __module_put_and_exit(struct module *mod, long code)
103 module_put(mod);
104 do_exit(code);
106 EXPORT_SYMBOL(__module_put_and_exit);
108 /* Find a module section: 0 means not found. */
109 static unsigned int find_sec(Elf_Ehdr *hdr,
110 Elf_Shdr *sechdrs,
111 const char *secstrings,
112 const char *name)
114 unsigned int i;
116 for (i = 1; i < hdr->e_shnum; i++)
117 /* Alloc bit cleared means "ignore it." */
118 if ((sechdrs[i].sh_flags & SHF_ALLOC)
119 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
120 return i;
121 return 0;
124 /* Provided by the linker */
125 extern const struct kernel_symbol __start___ksymtab[];
126 extern const struct kernel_symbol __stop___ksymtab[];
127 extern const struct kernel_symbol __start___ksymtab_gpl[];
128 extern const struct kernel_symbol __stop___ksymtab_gpl[];
129 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
130 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
131 extern const struct kernel_symbol __start___ksymtab_unused[];
132 extern const struct kernel_symbol __stop___ksymtab_unused[];
133 extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
134 extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
135 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
136 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
137 extern const unsigned long __start___kcrctab[];
138 extern const unsigned long __start___kcrctab_gpl[];
139 extern const unsigned long __start___kcrctab_gpl_future[];
140 extern const unsigned long __start___kcrctab_unused[];
141 extern const unsigned long __start___kcrctab_unused_gpl[];
143 #ifndef CONFIG_MODVERSIONS
144 #define symversion(base, idx) NULL
145 #else
146 #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
147 #endif
149 /* lookup symbol in given range of kernel_symbols */
150 static const struct kernel_symbol *lookup_symbol(const char *name,
151 const struct kernel_symbol *start,
152 const struct kernel_symbol *stop)
154 const struct kernel_symbol *ks = start;
155 for (; ks < stop; ks++)
156 if (strcmp(ks->name, name) == 0)
157 return ks;
158 return NULL;
161 static void printk_unused_warning(const char *name)
163 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
164 "however this module is using it.\n", name);
165 printk(KERN_WARNING "This symbol will go away in the future.\n");
166 printk(KERN_WARNING "Please evalute if this is the right api to use, "
167 "and if it really is, submit a report the linux kernel "
168 "mailinglist together with submitting your code for "
169 "inclusion.\n");
172 /* Find a symbol, return value, crc and module which owns it */
173 static unsigned long __find_symbol(const char *name,
174 struct module **owner,
175 const unsigned long **crc,
176 int gplok)
178 struct module *mod;
179 const struct kernel_symbol *ks;
181 /* Core kernel first. */
182 *owner = NULL;
183 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
184 if (ks) {
185 *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
186 return ks->value;
188 if (gplok) {
189 ks = lookup_symbol(name, __start___ksymtab_gpl,
190 __stop___ksymtab_gpl);
191 if (ks) {
192 *crc = symversion(__start___kcrctab_gpl,
193 (ks - __start___ksymtab_gpl));
194 return ks->value;
197 ks = lookup_symbol(name, __start___ksymtab_gpl_future,
198 __stop___ksymtab_gpl_future);
199 if (ks) {
200 if (!gplok) {
201 printk(KERN_WARNING "Symbol %s is being used "
202 "by a non-GPL module, which will not "
203 "be allowed in the future\n", name);
204 printk(KERN_WARNING "Please see the file "
205 "Documentation/feature-removal-schedule.txt "
206 "in the kernel source tree for more "
207 "details.\n");
209 *crc = symversion(__start___kcrctab_gpl_future,
210 (ks - __start___ksymtab_gpl_future));
211 return ks->value;
214 ks = lookup_symbol(name, __start___ksymtab_unused,
215 __stop___ksymtab_unused);
216 if (ks) {
217 printk_unused_warning(name);
218 *crc = symversion(__start___kcrctab_unused,
219 (ks - __start___ksymtab_unused));
220 return ks->value;
223 if (gplok)
224 ks = lookup_symbol(name, __start___ksymtab_unused_gpl,
225 __stop___ksymtab_unused_gpl);
226 if (ks) {
227 printk_unused_warning(name);
228 *crc = symversion(__start___kcrctab_unused_gpl,
229 (ks - __start___ksymtab_unused_gpl));
230 return ks->value;
233 /* Now try modules. */
234 list_for_each_entry(mod, &modules, list) {
235 *owner = mod;
236 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
237 if (ks) {
238 *crc = symversion(mod->crcs, (ks - mod->syms));
239 return ks->value;
242 if (gplok) {
243 ks = lookup_symbol(name, mod->gpl_syms,
244 mod->gpl_syms + mod->num_gpl_syms);
245 if (ks) {
246 *crc = symversion(mod->gpl_crcs,
247 (ks - mod->gpl_syms));
248 return ks->value;
251 ks = lookup_symbol(name, mod->unused_syms, mod->unused_syms + mod->num_unused_syms);
252 if (ks) {
253 printk_unused_warning(name);
254 *crc = symversion(mod->unused_crcs, (ks - mod->unused_syms));
255 return ks->value;
258 if (gplok) {
259 ks = lookup_symbol(name, mod->unused_gpl_syms,
260 mod->unused_gpl_syms + mod->num_unused_gpl_syms);
261 if (ks) {
262 printk_unused_warning(name);
263 *crc = symversion(mod->unused_gpl_crcs,
264 (ks - mod->unused_gpl_syms));
265 return ks->value;
268 ks = lookup_symbol(name, mod->gpl_future_syms,
269 (mod->gpl_future_syms +
270 mod->num_gpl_future_syms));
271 if (ks) {
272 if (!gplok) {
273 printk(KERN_WARNING "Symbol %s is being used "
274 "by a non-GPL module, which will not "
275 "be allowed in the future\n", name);
276 printk(KERN_WARNING "Please see the file "
277 "Documentation/feature-removal-schedule.txt "
278 "in the kernel source tree for more "
279 "details.\n");
281 *crc = symversion(mod->gpl_future_crcs,
282 (ks - mod->gpl_future_syms));
283 return ks->value;
286 DEBUGP("Failed to find symbol %s\n", name);
287 return 0;
290 /* Search for module by name: must hold module_mutex. */
291 static struct module *find_module(const char *name)
293 struct module *mod;
295 list_for_each_entry(mod, &modules, list) {
296 if (strcmp(mod->name, name) == 0)
297 return mod;
299 return NULL;
302 #ifdef CONFIG_SMP
303 /* Number of blocks used and allocated. */
304 static unsigned int pcpu_num_used, pcpu_num_allocated;
305 /* Size of each block. -ve means used. */
306 static int *pcpu_size;
308 static int split_block(unsigned int i, unsigned short size)
310 /* Reallocation required? */
311 if (pcpu_num_used + 1 > pcpu_num_allocated) {
312 int *new;
314 new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
315 GFP_KERNEL);
316 if (!new)
317 return 0;
319 pcpu_num_allocated *= 2;
320 pcpu_size = new;
323 /* Insert a new subblock */
324 memmove(&pcpu_size[i+1], &pcpu_size[i],
325 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
326 pcpu_num_used++;
328 pcpu_size[i+1] -= size;
329 pcpu_size[i] = size;
330 return 1;
333 static inline unsigned int block_size(int val)
335 if (val < 0)
336 return -val;
337 return val;
340 /* Created by linker magic */
341 extern char __per_cpu_start[], __per_cpu_end[];
343 static void *percpu_modalloc(unsigned long size, unsigned long align,
344 const char *name)
346 unsigned long extra;
347 unsigned int i;
348 void *ptr;
350 if (align > PAGE_SIZE) {
351 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
352 name, align, PAGE_SIZE);
353 align = PAGE_SIZE;
356 ptr = __per_cpu_start;
357 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
358 /* Extra for alignment requirement. */
359 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
360 BUG_ON(i == 0 && extra != 0);
362 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
363 continue;
365 /* Transfer extra to previous block. */
366 if (pcpu_size[i-1] < 0)
367 pcpu_size[i-1] -= extra;
368 else
369 pcpu_size[i-1] += extra;
370 pcpu_size[i] -= extra;
371 ptr += extra;
373 /* Split block if warranted */
374 if (pcpu_size[i] - size > sizeof(unsigned long))
375 if (!split_block(i, size))
376 return NULL;
378 /* Mark allocated */
379 pcpu_size[i] = -pcpu_size[i];
380 return ptr;
383 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
384 size);
385 return NULL;
388 static void percpu_modfree(void *freeme)
390 unsigned int i;
391 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
393 /* First entry is core kernel percpu data. */
394 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
395 if (ptr == freeme) {
396 pcpu_size[i] = -pcpu_size[i];
397 goto free;
400 BUG();
402 free:
403 /* Merge with previous? */
404 if (pcpu_size[i-1] >= 0) {
405 pcpu_size[i-1] += pcpu_size[i];
406 pcpu_num_used--;
407 memmove(&pcpu_size[i], &pcpu_size[i+1],
408 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
409 i--;
411 /* Merge with next? */
412 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
413 pcpu_size[i] += pcpu_size[i+1];
414 pcpu_num_used--;
415 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
416 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
420 static unsigned int find_pcpusec(Elf_Ehdr *hdr,
421 Elf_Shdr *sechdrs,
422 const char *secstrings)
424 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
427 static int percpu_modinit(void)
429 pcpu_num_used = 2;
430 pcpu_num_allocated = 2;
431 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
432 GFP_KERNEL);
433 /* Static in-kernel percpu data (used). */
434 pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
435 /* Free room. */
436 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
437 if (pcpu_size[1] < 0) {
438 printk(KERN_ERR "No per-cpu room for modules.\n");
439 pcpu_num_used = 1;
442 return 0;
444 __initcall(percpu_modinit);
445 #else /* ... !CONFIG_SMP */
446 static inline void *percpu_modalloc(unsigned long size, unsigned long align,
447 const char *name)
449 return NULL;
451 static inline void percpu_modfree(void *pcpuptr)
453 BUG();
455 static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
456 Elf_Shdr *sechdrs,
457 const char *secstrings)
459 return 0;
461 static inline void percpu_modcopy(void *pcpudst, const void *src,
462 unsigned long size)
464 /* pcpusec should be 0, and size of that section should be 0. */
465 BUG_ON(size != 0);
467 #endif /* CONFIG_SMP */
469 #define MODINFO_ATTR(field) \
470 static void setup_modinfo_##field(struct module *mod, const char *s) \
472 mod->field = kstrdup(s, GFP_KERNEL); \
474 static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
475 struct module *mod, char *buffer) \
477 return sprintf(buffer, "%s\n", mod->field); \
479 static int modinfo_##field##_exists(struct module *mod) \
481 return mod->field != NULL; \
483 static void free_modinfo_##field(struct module *mod) \
485 kfree(mod->field); \
486 mod->field = NULL; \
488 static struct module_attribute modinfo_##field = { \
489 .attr = { .name = __stringify(field), .mode = 0444 }, \
490 .show = show_modinfo_##field, \
491 .setup = setup_modinfo_##field, \
492 .test = modinfo_##field##_exists, \
493 .free = free_modinfo_##field, \
496 MODINFO_ATTR(version);
497 MODINFO_ATTR(srcversion);
499 #ifdef CONFIG_MODULE_UNLOAD
500 /* Init the unload section of the module. */
501 static void module_unload_init(struct module *mod)
503 unsigned int i;
505 INIT_LIST_HEAD(&mod->modules_which_use_me);
506 for (i = 0; i < NR_CPUS; i++)
507 local_set(&mod->ref[i].count, 0);
508 /* Hold reference count during initialization. */
509 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
510 /* Backwards compatibility macros put refcount during init. */
511 mod->waiter = current;
514 /* modules using other modules */
515 struct module_use
517 struct list_head list;
518 struct module *module_which_uses;
521 /* Does a already use b? */
522 static int already_uses(struct module *a, struct module *b)
524 struct module_use *use;
526 list_for_each_entry(use, &b->modules_which_use_me, list) {
527 if (use->module_which_uses == a) {
528 DEBUGP("%s uses %s!\n", a->name, b->name);
529 return 1;
532 DEBUGP("%s does not use %s!\n", a->name, b->name);
533 return 0;
536 /* Module a uses b */
537 static int use_module(struct module *a, struct module *b)
539 struct module_use *use;
540 int no_warn;
542 if (b == NULL || already_uses(a, b)) return 1;
544 if (!strong_try_module_get(b))
545 return 0;
547 DEBUGP("Allocating new usage for %s.\n", a->name);
548 use = kmalloc(sizeof(*use), GFP_ATOMIC);
549 if (!use) {
550 printk("%s: out of memory loading\n", a->name);
551 module_put(b);
552 return 0;
555 use->module_which_uses = a;
556 list_add(&use->list, &b->modules_which_use_me);
557 no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
558 return 1;
561 /* Clear the unload stuff of the module. */
562 static void module_unload_free(struct module *mod)
564 struct module *i;
566 list_for_each_entry(i, &modules, list) {
567 struct module_use *use;
569 list_for_each_entry(use, &i->modules_which_use_me, list) {
570 if (use->module_which_uses == mod) {
571 DEBUGP("%s unusing %s\n", mod->name, i->name);
572 module_put(i);
573 list_del(&use->list);
574 kfree(use);
575 sysfs_remove_link(i->holders_dir, mod->name);
576 /* There can be at most one match. */
577 break;
583 #ifdef CONFIG_MODULE_FORCE_UNLOAD
584 static inline int try_force_unload(unsigned int flags)
586 int ret = (flags & O_TRUNC);
587 if (ret)
588 add_taint(TAINT_FORCED_RMMOD);
589 return ret;
591 #else
592 static inline int try_force_unload(unsigned int flags)
594 return 0;
596 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
598 struct stopref
600 struct module *mod;
601 int flags;
602 int *forced;
605 /* Whole machine is stopped with interrupts off when this runs. */
606 static int __try_stop_module(void *_sref)
608 struct stopref *sref = _sref;
610 /* If it's not unused, quit unless we are told to block. */
611 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
612 if (!(*sref->forced = try_force_unload(sref->flags)))
613 return -EWOULDBLOCK;
616 /* Mark it as dying. */
617 sref->mod->state = MODULE_STATE_GOING;
618 return 0;
621 static int try_stop_module(struct module *mod, int flags, int *forced)
623 struct stopref sref = { mod, flags, forced };
625 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
628 unsigned int module_refcount(struct module *mod)
630 unsigned int i, total = 0;
632 for (i = 0; i < NR_CPUS; i++)
633 total += local_read(&mod->ref[i].count);
634 return total;
636 EXPORT_SYMBOL(module_refcount);
638 /* This exists whether we can unload or not */
639 static void free_module(struct module *mod);
641 static void wait_for_zero_refcount(struct module *mod)
643 /* Since we might sleep for some time, drop the semaphore first */
644 mutex_unlock(&module_mutex);
645 for (;;) {
646 DEBUGP("Looking at refcount...\n");
647 set_current_state(TASK_UNINTERRUPTIBLE);
648 if (module_refcount(mod) == 0)
649 break;
650 schedule();
652 current->state = TASK_RUNNING;
653 mutex_lock(&module_mutex);
656 asmlinkage long
657 sys_delete_module(const char __user *name_user, unsigned int flags)
659 struct module *mod;
660 char name[MODULE_NAME_LEN];
661 int ret, forced = 0;
663 if (!capable(CAP_SYS_MODULE))
664 return -EPERM;
666 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
667 return -EFAULT;
668 name[MODULE_NAME_LEN-1] = '\0';
670 if (mutex_lock_interruptible(&module_mutex) != 0)
671 return -EINTR;
673 mod = find_module(name);
674 if (!mod) {
675 ret = -ENOENT;
676 goto out;
679 if (!list_empty(&mod->modules_which_use_me)) {
680 /* Other modules depend on us: get rid of them first. */
681 ret = -EWOULDBLOCK;
682 goto out;
685 /* Doing init or already dying? */
686 if (mod->state != MODULE_STATE_LIVE) {
687 /* FIXME: if (force), slam module count and wake up
688 waiter --RR */
689 DEBUGP("%s already dying\n", mod->name);
690 ret = -EBUSY;
691 goto out;
694 /* If it has an init func, it must have an exit func to unload */
695 if (mod->init && !mod->exit) {
696 forced = try_force_unload(flags);
697 if (!forced) {
698 /* This module can't be removed */
699 ret = -EBUSY;
700 goto out;
704 /* Set this up before setting mod->state */
705 mod->waiter = current;
707 /* Stop the machine so refcounts can't move and disable module. */
708 ret = try_stop_module(mod, flags, &forced);
709 if (ret != 0)
710 goto out;
712 /* Never wait if forced. */
713 if (!forced && module_refcount(mod) != 0)
714 wait_for_zero_refcount(mod);
716 /* Final destruction now noone is using it. */
717 if (mod->exit != NULL) {
718 mutex_unlock(&module_mutex);
719 mod->exit();
720 mutex_lock(&module_mutex);
722 free_module(mod);
724 out:
725 mutex_unlock(&module_mutex);
726 return ret;
729 static void print_unload_info(struct seq_file *m, struct module *mod)
731 struct module_use *use;
732 int printed_something = 0;
734 seq_printf(m, " %u ", module_refcount(mod));
736 /* Always include a trailing , so userspace can differentiate
737 between this and the old multi-field proc format. */
738 list_for_each_entry(use, &mod->modules_which_use_me, list) {
739 printed_something = 1;
740 seq_printf(m, "%s,", use->module_which_uses->name);
743 if (mod->init != NULL && mod->exit == NULL) {
744 printed_something = 1;
745 seq_printf(m, "[permanent],");
748 if (!printed_something)
749 seq_printf(m, "-");
752 void __symbol_put(const char *symbol)
754 struct module *owner;
755 const unsigned long *crc;
757 preempt_disable();
758 if (!__find_symbol(symbol, &owner, &crc, 1))
759 BUG();
760 module_put(owner);
761 preempt_enable();
763 EXPORT_SYMBOL(__symbol_put);
765 void symbol_put_addr(void *addr)
767 struct module *modaddr;
769 if (core_kernel_text((unsigned long)addr))
770 return;
772 if (!(modaddr = module_text_address((unsigned long)addr)))
773 BUG();
774 module_put(modaddr);
776 EXPORT_SYMBOL_GPL(symbol_put_addr);
778 static ssize_t show_refcnt(struct module_attribute *mattr,
779 struct module *mod, char *buffer)
781 return sprintf(buffer, "%u\n", module_refcount(mod));
784 static struct module_attribute refcnt = {
785 .attr = { .name = "refcnt", .mode = 0444 },
786 .show = show_refcnt,
789 void module_put(struct module *module)
791 if (module) {
792 unsigned int cpu = get_cpu();
793 local_dec(&module->ref[cpu].count);
794 /* Maybe they're waiting for us to drop reference? */
795 if (unlikely(!module_is_live(module)))
796 wake_up_process(module->waiter);
797 put_cpu();
800 EXPORT_SYMBOL(module_put);
802 #else /* !CONFIG_MODULE_UNLOAD */
803 static void print_unload_info(struct seq_file *m, struct module *mod)
805 /* We don't know the usage count, or what modules are using. */
806 seq_printf(m, " - -");
809 static inline void module_unload_free(struct module *mod)
813 static inline int use_module(struct module *a, struct module *b)
815 return strong_try_module_get(b);
818 static inline void module_unload_init(struct module *mod)
821 #endif /* CONFIG_MODULE_UNLOAD */
823 static ssize_t show_initstate(struct module_attribute *mattr,
824 struct module *mod, char *buffer)
826 const char *state = "unknown";
828 switch (mod->state) {
829 case MODULE_STATE_LIVE:
830 state = "live";
831 break;
832 case MODULE_STATE_COMING:
833 state = "coming";
834 break;
835 case MODULE_STATE_GOING:
836 state = "going";
837 break;
839 return sprintf(buffer, "%s\n", state);
842 static struct module_attribute initstate = {
843 .attr = { .name = "initstate", .mode = 0444 },
844 .show = show_initstate,
847 static struct module_attribute *modinfo_attrs[] = {
848 &modinfo_version,
849 &modinfo_srcversion,
850 &initstate,
851 #ifdef CONFIG_MODULE_UNLOAD
852 &refcnt,
853 #endif
854 NULL,
857 static const char vermagic[] = VERMAGIC_STRING;
859 #ifdef CONFIG_MODVERSIONS
860 static int check_version(Elf_Shdr *sechdrs,
861 unsigned int versindex,
862 const char *symname,
863 struct module *mod,
864 const unsigned long *crc)
866 unsigned int i, num_versions;
867 struct modversion_info *versions;
869 /* Exporting module didn't supply crcs? OK, we're already tainted. */
870 if (!crc)
871 return 1;
873 versions = (void *) sechdrs[versindex].sh_addr;
874 num_versions = sechdrs[versindex].sh_size
875 / sizeof(struct modversion_info);
877 for (i = 0; i < num_versions; i++) {
878 if (strcmp(versions[i].name, symname) != 0)
879 continue;
881 if (versions[i].crc == *crc)
882 return 1;
883 printk("%s: disagrees about version of symbol %s\n",
884 mod->name, symname);
885 DEBUGP("Found checksum %lX vs module %lX\n",
886 *crc, versions[i].crc);
887 return 0;
889 /* Not in module's version table. OK, but that taints the kernel. */
890 if (!(tainted & TAINT_FORCED_MODULE))
891 printk("%s: no version for \"%s\" found: kernel tainted.\n",
892 mod->name, symname);
893 add_taint_module(mod, TAINT_FORCED_MODULE);
894 return 1;
897 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
898 unsigned int versindex,
899 struct module *mod)
901 const unsigned long *crc;
902 struct module *owner;
904 if (!__find_symbol("struct_module", &owner, &crc, 1))
905 BUG();
906 return check_version(sechdrs, versindex, "struct_module", mod,
907 crc);
910 /* First part is kernel version, which we ignore. */
911 static inline int same_magic(const char *amagic, const char *bmagic)
913 amagic += strcspn(amagic, " ");
914 bmagic += strcspn(bmagic, " ");
915 return strcmp(amagic, bmagic) == 0;
917 #else
918 static inline int check_version(Elf_Shdr *sechdrs,
919 unsigned int versindex,
920 const char *symname,
921 struct module *mod,
922 const unsigned long *crc)
924 return 1;
927 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
928 unsigned int versindex,
929 struct module *mod)
931 return 1;
934 static inline int same_magic(const char *amagic, const char *bmagic)
936 return strcmp(amagic, bmagic) == 0;
938 #endif /* CONFIG_MODVERSIONS */
940 /* Resolve a symbol for this module. I.e. if we find one, record usage.
941 Must be holding module_mutex. */
942 static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
943 unsigned int versindex,
944 const char *name,
945 struct module *mod)
947 struct module *owner;
948 unsigned long ret;
949 const unsigned long *crc;
951 ret = __find_symbol(name, &owner, &crc,
952 !(mod->taints & TAINT_PROPRIETARY_MODULE));
953 if (ret) {
954 /* use_module can fail due to OOM,
955 or module initialization or unloading */
956 if (!check_version(sechdrs, versindex, name, mod, crc) ||
957 !use_module(mod, owner))
958 ret = 0;
960 return ret;
965 * /sys/module/foo/sections stuff
966 * J. Corbet <corbet@lwn.net>
968 #ifdef CONFIG_KALLSYMS
969 static ssize_t module_sect_show(struct module_attribute *mattr,
970 struct module *mod, char *buf)
972 struct module_sect_attr *sattr =
973 container_of(mattr, struct module_sect_attr, mattr);
974 return sprintf(buf, "0x%lx\n", sattr->address);
977 static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
979 int section;
981 for (section = 0; section < sect_attrs->nsections; section++)
982 kfree(sect_attrs->attrs[section].name);
983 kfree(sect_attrs);
986 static void add_sect_attrs(struct module *mod, unsigned int nsect,
987 char *secstrings, Elf_Shdr *sechdrs)
989 unsigned int nloaded = 0, i, size[2];
990 struct module_sect_attrs *sect_attrs;
991 struct module_sect_attr *sattr;
992 struct attribute **gattr;
994 /* Count loaded sections and allocate structures */
995 for (i = 0; i < nsect; i++)
996 if (sechdrs[i].sh_flags & SHF_ALLOC)
997 nloaded++;
998 size[0] = ALIGN(sizeof(*sect_attrs)
999 + nloaded * sizeof(sect_attrs->attrs[0]),
1000 sizeof(sect_attrs->grp.attrs[0]));
1001 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
1002 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1003 if (sect_attrs == NULL)
1004 return;
1006 /* Setup section attributes. */
1007 sect_attrs->grp.name = "sections";
1008 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1010 sect_attrs->nsections = 0;
1011 sattr = &sect_attrs->attrs[0];
1012 gattr = &sect_attrs->grp.attrs[0];
1013 for (i = 0; i < nsect; i++) {
1014 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1015 continue;
1016 sattr->address = sechdrs[i].sh_addr;
1017 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1018 GFP_KERNEL);
1019 if (sattr->name == NULL)
1020 goto out;
1021 sect_attrs->nsections++;
1022 sattr->mattr.show = module_sect_show;
1023 sattr->mattr.store = NULL;
1024 sattr->mattr.attr.name = sattr->name;
1025 sattr->mattr.attr.mode = S_IRUGO;
1026 *(gattr++) = &(sattr++)->mattr.attr;
1028 *gattr = NULL;
1030 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1031 goto out;
1033 mod->sect_attrs = sect_attrs;
1034 return;
1035 out:
1036 free_sect_attrs(sect_attrs);
1039 static void remove_sect_attrs(struct module *mod)
1041 if (mod->sect_attrs) {
1042 sysfs_remove_group(&mod->mkobj.kobj,
1043 &mod->sect_attrs->grp);
1044 /* We are positive that no one is using any sect attrs
1045 * at this point. Deallocate immediately. */
1046 free_sect_attrs(mod->sect_attrs);
1047 mod->sect_attrs = NULL;
1052 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1055 struct module_notes_attrs {
1056 struct kobject *dir;
1057 unsigned int notes;
1058 struct bin_attribute attrs[0];
1061 static ssize_t module_notes_read(struct kobject *kobj,
1062 struct bin_attribute *bin_attr,
1063 char *buf, loff_t pos, size_t count)
1066 * The caller checked the pos and count against our size.
1068 memcpy(buf, bin_attr->private + pos, count);
1069 return count;
1072 static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1073 unsigned int i)
1075 if (notes_attrs->dir) {
1076 while (i-- > 0)
1077 sysfs_remove_bin_file(notes_attrs->dir,
1078 &notes_attrs->attrs[i]);
1079 kobject_del(notes_attrs->dir);
1081 kfree(notes_attrs);
1084 static void add_notes_attrs(struct module *mod, unsigned int nsect,
1085 char *secstrings, Elf_Shdr *sechdrs)
1087 unsigned int notes, loaded, i;
1088 struct module_notes_attrs *notes_attrs;
1089 struct bin_attribute *nattr;
1091 /* Count notes sections and allocate structures. */
1092 notes = 0;
1093 for (i = 0; i < nsect; i++)
1094 if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
1095 (sechdrs[i].sh_type == SHT_NOTE))
1096 ++notes;
1098 if (notes == 0)
1099 return;
1101 notes_attrs = kzalloc(sizeof(*notes_attrs)
1102 + notes * sizeof(notes_attrs->attrs[0]),
1103 GFP_KERNEL);
1104 if (notes_attrs == NULL)
1105 return;
1107 notes_attrs->notes = notes;
1108 nattr = &notes_attrs->attrs[0];
1109 for (loaded = i = 0; i < nsect; ++i) {
1110 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1111 continue;
1112 if (sechdrs[i].sh_type == SHT_NOTE) {
1113 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1114 nattr->attr.mode = S_IRUGO;
1115 nattr->size = sechdrs[i].sh_size;
1116 nattr->private = (void *) sechdrs[i].sh_addr;
1117 nattr->read = module_notes_read;
1118 ++nattr;
1120 ++loaded;
1123 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
1124 if (!notes_attrs->dir)
1125 goto out;
1127 for (i = 0; i < notes; ++i)
1128 if (sysfs_create_bin_file(notes_attrs->dir,
1129 &notes_attrs->attrs[i]))
1130 goto out;
1132 mod->notes_attrs = notes_attrs;
1133 return;
1135 out:
1136 free_notes_attrs(notes_attrs, i);
1139 static void remove_notes_attrs(struct module *mod)
1141 if (mod->notes_attrs)
1142 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1145 #else
1147 static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1148 char *sectstrings, Elf_Shdr *sechdrs)
1152 static inline void remove_sect_attrs(struct module *mod)
1156 static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1157 char *sectstrings, Elf_Shdr *sechdrs)
1161 static inline void remove_notes_attrs(struct module *mod)
1164 #endif /* CONFIG_KALLSYMS */
1166 #ifdef CONFIG_SYSFS
1167 int module_add_modinfo_attrs(struct module *mod)
1169 struct module_attribute *attr;
1170 struct module_attribute *temp_attr;
1171 int error = 0;
1172 int i;
1174 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1175 (ARRAY_SIZE(modinfo_attrs) + 1)),
1176 GFP_KERNEL);
1177 if (!mod->modinfo_attrs)
1178 return -ENOMEM;
1180 temp_attr = mod->modinfo_attrs;
1181 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1182 if (!attr->test ||
1183 (attr->test && attr->test(mod))) {
1184 memcpy(temp_attr, attr, sizeof(*temp_attr));
1185 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1186 ++temp_attr;
1189 return error;
1192 void module_remove_modinfo_attrs(struct module *mod)
1194 struct module_attribute *attr;
1195 int i;
1197 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1198 /* pick a field to test for end of list */
1199 if (!attr->attr.name)
1200 break;
1201 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
1202 if (attr->free)
1203 attr->free(mod);
1205 kfree(mod->modinfo_attrs);
1207 #endif
1209 #ifdef CONFIG_SYSFS
1210 int mod_sysfs_init(struct module *mod)
1212 int err;
1214 if (!module_sysfs_initialized) {
1215 printk(KERN_ERR "%s: module sysfs not initialized\n",
1216 mod->name);
1217 err = -EINVAL;
1218 goto out;
1220 mod->mkobj.mod = mod;
1222 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1223 mod->mkobj.kobj.kset = module_kset;
1224 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1225 "%s", mod->name);
1226 if (err)
1227 kobject_put(&mod->mkobj.kobj);
1229 /* delay uevent until full sysfs population */
1230 out:
1231 return err;
1234 int mod_sysfs_setup(struct module *mod,
1235 struct kernel_param *kparam,
1236 unsigned int num_params)
1238 int err;
1240 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
1241 if (!mod->holders_dir) {
1242 err = -ENOMEM;
1243 goto out_unreg;
1246 err = module_param_sysfs_setup(mod, kparam, num_params);
1247 if (err)
1248 goto out_unreg_holders;
1250 err = module_add_modinfo_attrs(mod);
1251 if (err)
1252 goto out_unreg_param;
1254 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
1255 return 0;
1257 out_unreg_param:
1258 module_param_sysfs_remove(mod);
1259 out_unreg_holders:
1260 kobject_unregister(mod->holders_dir);
1261 out_unreg:
1262 kobject_del(&mod->mkobj.kobj);
1263 kobject_put(&mod->mkobj.kobj);
1264 return err;
1266 #endif
1268 static void mod_kobject_remove(struct module *mod)
1270 module_remove_modinfo_attrs(mod);
1271 module_param_sysfs_remove(mod);
1272 kobject_unregister(mod->mkobj.drivers_dir);
1273 kobject_unregister(mod->holders_dir);
1274 kobject_unregister(&mod->mkobj.kobj);
1278 * unlink the module with the whole machine is stopped with interrupts off
1279 * - this defends against kallsyms not taking locks
1281 static int __unlink_module(void *_mod)
1283 struct module *mod = _mod;
1284 list_del(&mod->list);
1285 return 0;
1288 /* Free a module, remove from lists, etc (must hold module_mutex). */
1289 static void free_module(struct module *mod)
1291 /* Delete from various lists */
1292 stop_machine_run(__unlink_module, mod, NR_CPUS);
1293 remove_notes_attrs(mod);
1294 remove_sect_attrs(mod);
1295 mod_kobject_remove(mod);
1297 unwind_remove_table(mod->unwind_info, 0);
1299 /* Arch-specific cleanup. */
1300 module_arch_cleanup(mod);
1302 /* Module unload stuff */
1303 module_unload_free(mod);
1305 /* This may be NULL, but that's OK */
1306 module_free(mod, mod->module_init);
1307 kfree(mod->args);
1308 if (mod->percpu)
1309 percpu_modfree(mod->percpu);
1311 /* Free lock-classes: */
1312 lockdep_free_key_range(mod->module_core, mod->core_size);
1314 /* Finally, free the core (containing the module structure) */
1315 module_free(mod, mod->module_core);
1318 void *__symbol_get(const char *symbol)
1320 struct module *owner;
1321 unsigned long value;
1322 const unsigned long *crc;
1324 preempt_disable();
1325 value = __find_symbol(symbol, &owner, &crc, 1);
1326 if (value && !strong_try_module_get(owner))
1327 value = 0;
1328 preempt_enable();
1330 return (void *)value;
1332 EXPORT_SYMBOL_GPL(__symbol_get);
1335 * Ensure that an exported symbol [global namespace] does not already exist
1336 * in the kernel or in some other module's exported symbol table.
1338 static int verify_export_symbols(struct module *mod)
1340 const char *name = NULL;
1341 unsigned long i, ret = 0;
1342 struct module *owner;
1343 const unsigned long *crc;
1345 for (i = 0; i < mod->num_syms; i++)
1346 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
1347 name = mod->syms[i].name;
1348 ret = -ENOEXEC;
1349 goto dup;
1352 for (i = 0; i < mod->num_gpl_syms; i++)
1353 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
1354 name = mod->gpl_syms[i].name;
1355 ret = -ENOEXEC;
1356 goto dup;
1359 dup:
1360 if (ret)
1361 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1362 mod->name, name, module_name(owner));
1364 return ret;
1367 /* Change all symbols so that st_value encodes the pointer directly. */
1368 static int simplify_symbols(Elf_Shdr *sechdrs,
1369 unsigned int symindex,
1370 const char *strtab,
1371 unsigned int versindex,
1372 unsigned int pcpuindex,
1373 struct module *mod)
1375 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1376 unsigned long secbase;
1377 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1378 int ret = 0;
1380 for (i = 1; i < n; i++) {
1381 switch (sym[i].st_shndx) {
1382 case SHN_COMMON:
1383 /* We compiled with -fno-common. These are not
1384 supposed to happen. */
1385 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1386 printk("%s: please compile with -fno-common\n",
1387 mod->name);
1388 ret = -ENOEXEC;
1389 break;
1391 case SHN_ABS:
1392 /* Don't need to do anything */
1393 DEBUGP("Absolute symbol: 0x%08lx\n",
1394 (long)sym[i].st_value);
1395 break;
1397 case SHN_UNDEF:
1398 sym[i].st_value
1399 = resolve_symbol(sechdrs, versindex,
1400 strtab + sym[i].st_name, mod);
1402 /* Ok if resolved. */
1403 if (sym[i].st_value != 0)
1404 break;
1405 /* Ok if weak. */
1406 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1407 break;
1409 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1410 mod->name, strtab + sym[i].st_name);
1411 ret = -ENOENT;
1412 break;
1414 default:
1415 /* Divert to percpu allocation if a percpu var. */
1416 if (sym[i].st_shndx == pcpuindex)
1417 secbase = (unsigned long)mod->percpu;
1418 else
1419 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1420 sym[i].st_value += secbase;
1421 break;
1425 return ret;
1428 /* Update size with this section: return offset. */
1429 static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1431 long ret;
1433 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1434 *size = ret + sechdr->sh_size;
1435 return ret;
1438 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1439 might -- code, read-only data, read-write data, small data. Tally
1440 sizes, and place the offsets into sh_entsize fields: high bit means it
1441 belongs in init. */
1442 static void layout_sections(struct module *mod,
1443 const Elf_Ehdr *hdr,
1444 Elf_Shdr *sechdrs,
1445 const char *secstrings)
1447 static unsigned long const masks[][2] = {
1448 /* NOTE: all executable code must be the first section
1449 * in this array; otherwise modify the text_size
1450 * finder in the two loops below */
1451 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1452 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1453 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1454 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1456 unsigned int m, i;
1458 for (i = 0; i < hdr->e_shnum; i++)
1459 sechdrs[i].sh_entsize = ~0UL;
1461 DEBUGP("Core section allocation order:\n");
1462 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1463 for (i = 0; i < hdr->e_shnum; ++i) {
1464 Elf_Shdr *s = &sechdrs[i];
1466 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1467 || (s->sh_flags & masks[m][1])
1468 || s->sh_entsize != ~0UL
1469 || strncmp(secstrings + s->sh_name,
1470 ".init", 5) == 0)
1471 continue;
1472 s->sh_entsize = get_offset(&mod->core_size, s);
1473 DEBUGP("\t%s\n", secstrings + s->sh_name);
1475 if (m == 0)
1476 mod->core_text_size = mod->core_size;
1479 DEBUGP("Init section allocation order:\n");
1480 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1481 for (i = 0; i < hdr->e_shnum; ++i) {
1482 Elf_Shdr *s = &sechdrs[i];
1484 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1485 || (s->sh_flags & masks[m][1])
1486 || s->sh_entsize != ~0UL
1487 || strncmp(secstrings + s->sh_name,
1488 ".init", 5) != 0)
1489 continue;
1490 s->sh_entsize = (get_offset(&mod->init_size, s)
1491 | INIT_OFFSET_MASK);
1492 DEBUGP("\t%s\n", secstrings + s->sh_name);
1494 if (m == 0)
1495 mod->init_text_size = mod->init_size;
1499 static void set_license(struct module *mod, const char *license)
1501 if (!license)
1502 license = "unspecified";
1504 if (!license_is_gpl_compatible(license)) {
1505 if (!(tainted & TAINT_PROPRIETARY_MODULE))
1506 printk(KERN_WARNING "%s: module license '%s' taints "
1507 "kernel.\n", mod->name, license);
1508 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
1512 /* Parse tag=value strings from .modinfo section */
1513 static char *next_string(char *string, unsigned long *secsize)
1515 /* Skip non-zero chars */
1516 while (string[0]) {
1517 string++;
1518 if ((*secsize)-- <= 1)
1519 return NULL;
1522 /* Skip any zero padding. */
1523 while (!string[0]) {
1524 string++;
1525 if ((*secsize)-- <= 1)
1526 return NULL;
1528 return string;
1531 static char *get_modinfo(Elf_Shdr *sechdrs,
1532 unsigned int info,
1533 const char *tag)
1535 char *p;
1536 unsigned int taglen = strlen(tag);
1537 unsigned long size = sechdrs[info].sh_size;
1539 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1540 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1541 return p + taglen + 1;
1543 return NULL;
1546 static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1547 unsigned int infoindex)
1549 struct module_attribute *attr;
1550 int i;
1552 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1553 if (attr->setup)
1554 attr->setup(mod,
1555 get_modinfo(sechdrs,
1556 infoindex,
1557 attr->attr.name));
1561 #ifdef CONFIG_KALLSYMS
1562 static int is_exported(const char *name, const struct module *mod)
1564 if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1565 return 1;
1566 else
1567 if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
1568 return 1;
1569 else
1570 return 0;
1573 /* As per nm */
1574 static char elf_type(const Elf_Sym *sym,
1575 Elf_Shdr *sechdrs,
1576 const char *secstrings,
1577 struct module *mod)
1579 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1580 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1581 return 'v';
1582 else
1583 return 'w';
1585 if (sym->st_shndx == SHN_UNDEF)
1586 return 'U';
1587 if (sym->st_shndx == SHN_ABS)
1588 return 'a';
1589 if (sym->st_shndx >= SHN_LORESERVE)
1590 return '?';
1591 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1592 return 't';
1593 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1594 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1595 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1596 return 'r';
1597 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1598 return 'g';
1599 else
1600 return 'd';
1602 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1603 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1604 return 's';
1605 else
1606 return 'b';
1608 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1609 ".debug", strlen(".debug")) == 0)
1610 return 'n';
1611 return '?';
1614 static void add_kallsyms(struct module *mod,
1615 Elf_Shdr *sechdrs,
1616 unsigned int symindex,
1617 unsigned int strindex,
1618 const char *secstrings)
1620 unsigned int i;
1622 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1623 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1624 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1626 /* Set types up while we still have access to sections. */
1627 for (i = 0; i < mod->num_symtab; i++)
1628 mod->symtab[i].st_info
1629 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1631 #else
1632 static inline void add_kallsyms(struct module *mod,
1633 Elf_Shdr *sechdrs,
1634 unsigned int symindex,
1635 unsigned int strindex,
1636 const char *secstrings)
1639 #endif /* CONFIG_KALLSYMS */
1641 /* Allocate and load the module: note that size of section 0 is always
1642 zero, and we rely on this for optional sections. */
1643 static struct module *load_module(void __user *umod,
1644 unsigned long len,
1645 const char __user *uargs)
1647 Elf_Ehdr *hdr;
1648 Elf_Shdr *sechdrs;
1649 char *secstrings, *args, *modmagic, *strtab = NULL;
1650 unsigned int i;
1651 unsigned int symindex = 0;
1652 unsigned int strindex = 0;
1653 unsigned int setupindex;
1654 unsigned int exindex;
1655 unsigned int exportindex;
1656 unsigned int modindex;
1657 unsigned int obsparmindex;
1658 unsigned int infoindex;
1659 unsigned int gplindex;
1660 unsigned int crcindex;
1661 unsigned int gplcrcindex;
1662 unsigned int versindex;
1663 unsigned int pcpuindex;
1664 unsigned int gplfutureindex;
1665 unsigned int gplfuturecrcindex;
1666 unsigned int unwindex = 0;
1667 unsigned int unusedindex;
1668 unsigned int unusedcrcindex;
1669 unsigned int unusedgplindex;
1670 unsigned int unusedgplcrcindex;
1671 unsigned int markersindex;
1672 unsigned int markersstringsindex;
1673 struct module *mod;
1674 long err = 0;
1675 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1676 struct exception_table_entry *extable;
1677 mm_segment_t old_fs;
1679 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1680 umod, len, uargs);
1681 if (len < sizeof(*hdr))
1682 return ERR_PTR(-ENOEXEC);
1684 /* Suck in entire file: we'll want most of it. */
1685 /* vmalloc barfs on "unusual" numbers. Check here */
1686 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1687 return ERR_PTR(-ENOMEM);
1688 if (copy_from_user(hdr, umod, len) != 0) {
1689 err = -EFAULT;
1690 goto free_hdr;
1693 /* Sanity checks against insmoding binaries or wrong arch,
1694 weird elf version */
1695 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1696 || hdr->e_type != ET_REL
1697 || !elf_check_arch(hdr)
1698 || hdr->e_shentsize != sizeof(*sechdrs)) {
1699 err = -ENOEXEC;
1700 goto free_hdr;
1703 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1704 goto truncated;
1706 /* Convenience variables */
1707 sechdrs = (void *)hdr + hdr->e_shoff;
1708 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1709 sechdrs[0].sh_addr = 0;
1711 for (i = 1; i < hdr->e_shnum; i++) {
1712 if (sechdrs[i].sh_type != SHT_NOBITS
1713 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1714 goto truncated;
1716 /* Mark all sections sh_addr with their address in the
1717 temporary image. */
1718 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1720 /* Internal symbols and strings. */
1721 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1722 symindex = i;
1723 strindex = sechdrs[i].sh_link;
1724 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1726 #ifndef CONFIG_MODULE_UNLOAD
1727 /* Don't load .exit sections */
1728 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1729 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1730 #endif
1733 modindex = find_sec(hdr, sechdrs, secstrings,
1734 ".gnu.linkonce.this_module");
1735 if (!modindex) {
1736 printk(KERN_WARNING "No module found in object\n");
1737 err = -ENOEXEC;
1738 goto free_hdr;
1740 mod = (void *)sechdrs[modindex].sh_addr;
1742 if (symindex == 0) {
1743 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1744 mod->name);
1745 err = -ENOEXEC;
1746 goto free_hdr;
1749 /* Optional sections */
1750 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1751 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
1752 gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
1753 unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
1754 unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
1755 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1756 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
1757 gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
1758 unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
1759 unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
1760 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1761 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1762 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1763 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1764 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1765 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
1766 #ifdef ARCH_UNWIND_SECTION_NAME
1767 unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
1768 #endif
1770 /* Don't keep modinfo section */
1771 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1772 #ifdef CONFIG_KALLSYMS
1773 /* Keep symbol and string tables for decoding later. */
1774 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1775 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1776 #endif
1777 if (unwindex)
1778 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
1780 /* Check module struct version now, before we try to use module. */
1781 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1782 err = -ENOEXEC;
1783 goto free_hdr;
1786 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1787 /* This is allowed: modprobe --force will invalidate it. */
1788 if (!modmagic) {
1789 add_taint_module(mod, TAINT_FORCED_MODULE);
1790 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1791 mod->name);
1792 } else if (!same_magic(modmagic, vermagic)) {
1793 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1794 mod->name, modmagic, vermagic);
1795 err = -ENOEXEC;
1796 goto free_hdr;
1799 /* Now copy in args */
1800 args = strndup_user(uargs, ~0UL >> 1);
1801 if (IS_ERR(args)) {
1802 err = PTR_ERR(args);
1803 goto free_hdr;
1806 if (find_module(mod->name)) {
1807 err = -EEXIST;
1808 goto free_mod;
1811 mod->state = MODULE_STATE_COMING;
1813 /* Allow arches to frob section contents and sizes. */
1814 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1815 if (err < 0)
1816 goto free_mod;
1818 if (pcpuindex) {
1819 /* We have a special allocation for this section. */
1820 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
1821 sechdrs[pcpuindex].sh_addralign,
1822 mod->name);
1823 if (!percpu) {
1824 err = -ENOMEM;
1825 goto free_mod;
1827 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1828 mod->percpu = percpu;
1831 /* Determine total sizes, and put offsets in sh_entsize. For now
1832 this is done generically; there doesn't appear to be any
1833 special cases for the architectures. */
1834 layout_sections(mod, hdr, sechdrs, secstrings);
1836 /* Do the allocs. */
1837 ptr = module_alloc(mod->core_size);
1838 if (!ptr) {
1839 err = -ENOMEM;
1840 goto free_percpu;
1842 memset(ptr, 0, mod->core_size);
1843 mod->module_core = ptr;
1845 ptr = module_alloc(mod->init_size);
1846 if (!ptr && mod->init_size) {
1847 err = -ENOMEM;
1848 goto free_core;
1850 memset(ptr, 0, mod->init_size);
1851 mod->module_init = ptr;
1853 /* Transfer each section which specifies SHF_ALLOC */
1854 DEBUGP("final section addresses:\n");
1855 for (i = 0; i < hdr->e_shnum; i++) {
1856 void *dest;
1858 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1859 continue;
1861 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1862 dest = mod->module_init
1863 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1864 else
1865 dest = mod->module_core + sechdrs[i].sh_entsize;
1867 if (sechdrs[i].sh_type != SHT_NOBITS)
1868 memcpy(dest, (void *)sechdrs[i].sh_addr,
1869 sechdrs[i].sh_size);
1870 /* Update sh_addr to point to copy in image. */
1871 sechdrs[i].sh_addr = (unsigned long)dest;
1872 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1874 /* Module has been moved. */
1875 mod = (void *)sechdrs[modindex].sh_addr;
1877 /* Now we've moved module, initialize linked lists, etc. */
1878 module_unload_init(mod);
1880 /* add kobject, so we can reference it. */
1881 err = mod_sysfs_init(mod);
1882 if (err)
1883 goto free_unload;
1885 /* Set up license info based on the info section */
1886 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1888 if (strcmp(mod->name, "ndiswrapper") == 0)
1889 add_taint(TAINT_PROPRIETARY_MODULE);
1890 if (strcmp(mod->name, "driverloader") == 0)
1891 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
1893 /* Set up MODINFO_ATTR fields */
1894 setup_modinfo(mod, sechdrs, infoindex);
1896 /* Fix up syms, so that st_value is a pointer to location. */
1897 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1898 mod);
1899 if (err < 0)
1900 goto cleanup;
1902 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1903 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1904 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1905 if (crcindex)
1906 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1907 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1908 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1909 if (gplcrcindex)
1910 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
1911 mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
1912 sizeof(*mod->gpl_future_syms);
1913 mod->num_unused_syms = sechdrs[unusedindex].sh_size /
1914 sizeof(*mod->unused_syms);
1915 mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
1916 sizeof(*mod->unused_gpl_syms);
1917 mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
1918 if (gplfuturecrcindex)
1919 mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
1921 mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
1922 if (unusedcrcindex)
1923 mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
1924 mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
1925 if (unusedgplcrcindex)
1926 mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
1928 #ifdef CONFIG_MODVERSIONS
1929 if ((mod->num_syms && !crcindex) ||
1930 (mod->num_gpl_syms && !gplcrcindex) ||
1931 (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
1932 (mod->num_unused_syms && !unusedcrcindex) ||
1933 (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
1934 printk(KERN_WARNING "%s: No versions for exported symbols."
1935 " Tainting kernel.\n", mod->name);
1936 add_taint_module(mod, TAINT_FORCED_MODULE);
1938 #endif
1939 markersindex = find_sec(hdr, sechdrs, secstrings, "__markers");
1940 markersstringsindex = find_sec(hdr, sechdrs, secstrings,
1941 "__markers_strings");
1943 /* Now do relocations. */
1944 for (i = 1; i < hdr->e_shnum; i++) {
1945 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1946 unsigned int info = sechdrs[i].sh_info;
1948 /* Not a valid relocation section? */
1949 if (info >= hdr->e_shnum)
1950 continue;
1952 /* Don't bother with non-allocated sections */
1953 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1954 continue;
1956 if (sechdrs[i].sh_type == SHT_REL)
1957 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1958 else if (sechdrs[i].sh_type == SHT_RELA)
1959 err = apply_relocate_add(sechdrs, strtab, symindex, i,
1960 mod);
1961 if (err < 0)
1962 goto cleanup;
1964 #ifdef CONFIG_MARKERS
1965 mod->markers = (void *)sechdrs[markersindex].sh_addr;
1966 mod->num_markers =
1967 sechdrs[markersindex].sh_size / sizeof(*mod->markers);
1968 #endif
1970 /* Find duplicate symbols */
1971 err = verify_export_symbols(mod);
1973 if (err < 0)
1974 goto cleanup;
1976 /* Set up and sort exception table */
1977 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
1978 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
1979 sort_extable(extable, extable + mod->num_exentries);
1981 /* Finally, copy percpu area over. */
1982 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
1983 sechdrs[pcpuindex].sh_size);
1985 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
1987 #ifdef CONFIG_MARKERS
1988 if (!mod->taints)
1989 marker_update_probe_range(mod->markers,
1990 mod->markers + mod->num_markers, NULL, NULL);
1991 #endif
1992 err = module_finalize(hdr, sechdrs, mod);
1993 if (err < 0)
1994 goto cleanup;
1996 /* flush the icache in correct context */
1997 old_fs = get_fs();
1998 set_fs(KERNEL_DS);
2001 * Flush the instruction cache, since we've played with text.
2002 * Do it before processing of module parameters, so the module
2003 * can provide parameter accessor functions of its own.
2005 if (mod->module_init)
2006 flush_icache_range((unsigned long)mod->module_init,
2007 (unsigned long)mod->module_init
2008 + mod->init_size);
2009 flush_icache_range((unsigned long)mod->module_core,
2010 (unsigned long)mod->module_core + mod->core_size);
2012 set_fs(old_fs);
2014 mod->args = args;
2015 if (obsparmindex)
2016 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2017 mod->name);
2019 /* Size of section 0 is 0, so this works well if no params */
2020 err = parse_args(mod->name, mod->args,
2021 (struct kernel_param *)
2022 sechdrs[setupindex].sh_addr,
2023 sechdrs[setupindex].sh_size
2024 / sizeof(struct kernel_param),
2025 NULL);
2026 if (err < 0)
2027 goto arch_cleanup;
2029 err = mod_sysfs_setup(mod,
2030 (struct kernel_param *)
2031 sechdrs[setupindex].sh_addr,
2032 sechdrs[setupindex].sh_size
2033 / sizeof(struct kernel_param));
2034 if (err < 0)
2035 goto arch_cleanup;
2036 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
2037 add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
2039 /* Size of section 0 is 0, so this works well if no unwind info. */
2040 mod->unwind_info = unwind_add_table(mod,
2041 (void *)sechdrs[unwindex].sh_addr,
2042 sechdrs[unwindex].sh_size);
2044 /* Get rid of temporary copy */
2045 vfree(hdr);
2047 /* Done! */
2048 return mod;
2050 arch_cleanup:
2051 module_arch_cleanup(mod);
2052 cleanup:
2053 kobject_del(&mod->mkobj.kobj);
2054 kobject_put(&mod->mkobj.kobj);
2055 free_unload:
2056 module_unload_free(mod);
2057 module_free(mod, mod->module_init);
2058 free_core:
2059 module_free(mod, mod->module_core);
2060 free_percpu:
2061 if (percpu)
2062 percpu_modfree(percpu);
2063 free_mod:
2064 kfree(args);
2065 free_hdr:
2066 vfree(hdr);
2067 return ERR_PTR(err);
2069 truncated:
2070 printk(KERN_ERR "Module len %lu truncated\n", len);
2071 err = -ENOEXEC;
2072 goto free_hdr;
2076 * link the module with the whole machine is stopped with interrupts off
2077 * - this defends against kallsyms not taking locks
2079 static int __link_module(void *_mod)
2081 struct module *mod = _mod;
2082 list_add(&mod->list, &modules);
2083 return 0;
2086 /* This is where the real work happens */
2087 asmlinkage long
2088 sys_init_module(void __user *umod,
2089 unsigned long len,
2090 const char __user *uargs)
2092 struct module *mod;
2093 int ret = 0;
2095 /* Must have permission */
2096 if (!capable(CAP_SYS_MODULE))
2097 return -EPERM;
2099 /* Only one module load at a time, please */
2100 if (mutex_lock_interruptible(&module_mutex) != 0)
2101 return -EINTR;
2103 /* Do all the hard work */
2104 mod = load_module(umod, len, uargs);
2105 if (IS_ERR(mod)) {
2106 mutex_unlock(&module_mutex);
2107 return PTR_ERR(mod);
2110 /* Now sew it into the lists. They won't access us, since
2111 strong_try_module_get() will fail. */
2112 stop_machine_run(__link_module, mod, NR_CPUS);
2114 /* Drop lock so they can recurse */
2115 mutex_unlock(&module_mutex);
2117 blocking_notifier_call_chain(&module_notify_list,
2118 MODULE_STATE_COMING, mod);
2120 /* Start the module */
2121 if (mod->init != NULL)
2122 ret = mod->init();
2123 if (ret < 0) {
2124 /* Init routine failed: abort. Try to protect us from
2125 buggy refcounters. */
2126 mod->state = MODULE_STATE_GOING;
2127 synchronize_sched();
2128 module_put(mod);
2129 mutex_lock(&module_mutex);
2130 free_module(mod);
2131 mutex_unlock(&module_mutex);
2132 return ret;
2135 /* Now it's a first class citizen! */
2136 mutex_lock(&module_mutex);
2137 mod->state = MODULE_STATE_LIVE;
2138 /* Drop initial reference. */
2139 module_put(mod);
2140 unwind_remove_table(mod->unwind_info, 1);
2141 module_free(mod, mod->module_init);
2142 mod->module_init = NULL;
2143 mod->init_size = 0;
2144 mod->init_text_size = 0;
2145 mutex_unlock(&module_mutex);
2147 return 0;
2150 static inline int within(unsigned long addr, void *start, unsigned long size)
2152 return ((void *)addr >= start && (void *)addr < start + size);
2155 #ifdef CONFIG_KALLSYMS
2157 * This ignores the intensely annoying "mapping symbols" found
2158 * in ARM ELF files: $a, $t and $d.
2160 static inline int is_arm_mapping_symbol(const char *str)
2162 return str[0] == '$' && strchr("atd", str[1])
2163 && (str[2] == '\0' || str[2] == '.');
2166 static const char *get_ksymbol(struct module *mod,
2167 unsigned long addr,
2168 unsigned long *size,
2169 unsigned long *offset)
2171 unsigned int i, best = 0;
2172 unsigned long nextval;
2174 /* At worse, next value is at end of module */
2175 if (within(addr, mod->module_init, mod->init_size))
2176 nextval = (unsigned long)mod->module_init+mod->init_text_size;
2177 else
2178 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2180 /* Scan for closest preceeding symbol, and next symbol. (ELF
2181 starts real symbols at 1). */
2182 for (i = 1; i < mod->num_symtab; i++) {
2183 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2184 continue;
2186 /* We ignore unnamed symbols: they're uninformative
2187 * and inserted at a whim. */
2188 if (mod->symtab[i].st_value <= addr
2189 && mod->symtab[i].st_value > mod->symtab[best].st_value
2190 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2191 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2192 best = i;
2193 if (mod->symtab[i].st_value > addr
2194 && mod->symtab[i].st_value < nextval
2195 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2196 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2197 nextval = mod->symtab[i].st_value;
2200 if (!best)
2201 return NULL;
2203 if (size)
2204 *size = nextval - mod->symtab[best].st_value;
2205 if (offset)
2206 *offset = addr - mod->symtab[best].st_value;
2207 return mod->strtab + mod->symtab[best].st_name;
2210 /* For kallsyms to ask for address resolution. NULL means not found.
2211 We don't lock, as this is used for oops resolution and races are a
2212 lesser concern. */
2213 /* FIXME: Risky: returns a pointer into a module w/o lock */
2214 const char *module_address_lookup(unsigned long addr,
2215 unsigned long *size,
2216 unsigned long *offset,
2217 char **modname)
2219 struct module *mod;
2220 const char *ret = NULL;
2222 preempt_disable();
2223 list_for_each_entry(mod, &modules, list) {
2224 if (within(addr, mod->module_init, mod->init_size)
2225 || within(addr, mod->module_core, mod->core_size)) {
2226 if (modname)
2227 *modname = mod->name;
2228 ret = get_ksymbol(mod, addr, size, offset);
2229 break;
2232 preempt_enable();
2233 return ret;
2236 int lookup_module_symbol_name(unsigned long addr, char *symname)
2238 struct module *mod;
2240 preempt_disable();
2241 list_for_each_entry(mod, &modules, list) {
2242 if (within(addr, mod->module_init, mod->init_size) ||
2243 within(addr, mod->module_core, mod->core_size)) {
2244 const char *sym;
2246 sym = get_ksymbol(mod, addr, NULL, NULL);
2247 if (!sym)
2248 goto out;
2249 strlcpy(symname, sym, KSYM_NAME_LEN);
2250 preempt_enable();
2251 return 0;
2254 out:
2255 preempt_enable();
2256 return -ERANGE;
2259 int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2260 unsigned long *offset, char *modname, char *name)
2262 struct module *mod;
2264 preempt_disable();
2265 list_for_each_entry(mod, &modules, list) {
2266 if (within(addr, mod->module_init, mod->init_size) ||
2267 within(addr, mod->module_core, mod->core_size)) {
2268 const char *sym;
2270 sym = get_ksymbol(mod, addr, size, offset);
2271 if (!sym)
2272 goto out;
2273 if (modname)
2274 strlcpy(modname, mod->name, MODULE_NAME_LEN);
2275 if (name)
2276 strlcpy(name, sym, KSYM_NAME_LEN);
2277 preempt_enable();
2278 return 0;
2281 out:
2282 preempt_enable();
2283 return -ERANGE;
2286 int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2287 char *name, char *module_name, int *exported)
2289 struct module *mod;
2291 preempt_disable();
2292 list_for_each_entry(mod, &modules, list) {
2293 if (symnum < mod->num_symtab) {
2294 *value = mod->symtab[symnum].st_value;
2295 *type = mod->symtab[symnum].st_info;
2296 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
2297 KSYM_NAME_LEN);
2298 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
2299 *exported = is_exported(name, mod);
2300 preempt_enable();
2301 return 0;
2303 symnum -= mod->num_symtab;
2305 preempt_enable();
2306 return -ERANGE;
2309 static unsigned long mod_find_symname(struct module *mod, const char *name)
2311 unsigned int i;
2313 for (i = 0; i < mod->num_symtab; i++)
2314 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2315 mod->symtab[i].st_info != 'U')
2316 return mod->symtab[i].st_value;
2317 return 0;
2320 /* Look for this name: can be of form module:name. */
2321 unsigned long module_kallsyms_lookup_name(const char *name)
2323 struct module *mod;
2324 char *colon;
2325 unsigned long ret = 0;
2327 /* Don't lock: we're in enough trouble already. */
2328 preempt_disable();
2329 if ((colon = strchr(name, ':')) != NULL) {
2330 *colon = '\0';
2331 if ((mod = find_module(name)) != NULL)
2332 ret = mod_find_symname(mod, colon+1);
2333 *colon = ':';
2334 } else {
2335 list_for_each_entry(mod, &modules, list)
2336 if ((ret = mod_find_symname(mod, name)) != 0)
2337 break;
2339 preempt_enable();
2340 return ret;
2342 #endif /* CONFIG_KALLSYMS */
2344 /* Called by the /proc file system to return a list of modules. */
2345 static void *m_start(struct seq_file *m, loff_t *pos)
2347 mutex_lock(&module_mutex);
2348 return seq_list_start(&modules, *pos);
2351 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2353 return seq_list_next(p, &modules, pos);
2356 static void m_stop(struct seq_file *m, void *p)
2358 mutex_unlock(&module_mutex);
2361 static char *taint_flags(unsigned int taints, char *buf)
2363 int bx = 0;
2365 if (taints) {
2366 buf[bx++] = '(';
2367 if (taints & TAINT_PROPRIETARY_MODULE)
2368 buf[bx++] = 'P';
2369 if (taints & TAINT_FORCED_MODULE)
2370 buf[bx++] = 'F';
2372 * TAINT_FORCED_RMMOD: could be added.
2373 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2374 * apply to modules.
2376 buf[bx++] = ')';
2378 buf[bx] = '\0';
2380 return buf;
2383 static int m_show(struct seq_file *m, void *p)
2385 struct module *mod = list_entry(p, struct module, list);
2386 char buf[8];
2388 seq_printf(m, "%s %lu",
2389 mod->name, mod->init_size + mod->core_size);
2390 print_unload_info(m, mod);
2392 /* Informative for users. */
2393 seq_printf(m, " %s",
2394 mod->state == MODULE_STATE_GOING ? "Unloading":
2395 mod->state == MODULE_STATE_COMING ? "Loading":
2396 "Live");
2397 /* Used by oprofile and other similar tools. */
2398 seq_printf(m, " 0x%p", mod->module_core);
2400 /* Taints info */
2401 if (mod->taints)
2402 seq_printf(m, " %s", taint_flags(mod->taints, buf));
2404 seq_printf(m, "\n");
2405 return 0;
2408 /* Format: modulename size refcount deps address
2410 Where refcount is a number or -, and deps is a comma-separated list
2411 of depends or -.
2413 const struct seq_operations modules_op = {
2414 .start = m_start,
2415 .next = m_next,
2416 .stop = m_stop,
2417 .show = m_show
2420 /* Given an address, look for it in the module exception tables. */
2421 const struct exception_table_entry *search_module_extables(unsigned long addr)
2423 const struct exception_table_entry *e = NULL;
2424 struct module *mod;
2426 preempt_disable();
2427 list_for_each_entry(mod, &modules, list) {
2428 if (mod->num_exentries == 0)
2429 continue;
2431 e = search_extable(mod->extable,
2432 mod->extable + mod->num_exentries - 1,
2433 addr);
2434 if (e)
2435 break;
2437 preempt_enable();
2439 /* Now, if we found one, we are running inside it now, hence
2440 we cannot unload the module, hence no refcnt needed. */
2441 return e;
2445 * Is this a valid module address?
2447 int is_module_address(unsigned long addr)
2449 struct module *mod;
2451 preempt_disable();
2453 list_for_each_entry(mod, &modules, list) {
2454 if (within(addr, mod->module_core, mod->core_size)) {
2455 preempt_enable();
2456 return 1;
2460 preempt_enable();
2462 return 0;
2466 /* Is this a valid kernel address? */
2467 struct module *__module_text_address(unsigned long addr)
2469 struct module *mod;
2471 list_for_each_entry(mod, &modules, list)
2472 if (within(addr, mod->module_init, mod->init_text_size)
2473 || within(addr, mod->module_core, mod->core_text_size))
2474 return mod;
2475 return NULL;
2478 struct module *module_text_address(unsigned long addr)
2480 struct module *mod;
2482 preempt_disable();
2483 mod = __module_text_address(addr);
2484 preempt_enable();
2486 return mod;
2489 /* Don't grab lock, we're oopsing. */
2490 void print_modules(void)
2492 struct module *mod;
2493 char buf[8];
2495 printk("Modules linked in:");
2496 list_for_each_entry(mod, &modules, list)
2497 printk(" %s%s", mod->name, taint_flags(mod->taints, buf));
2498 printk("\n");
2501 #ifdef CONFIG_MODVERSIONS
2502 /* Generate the signature for struct module here, too, for modversions. */
2503 void struct_module(struct module *mod) { return; }
2504 EXPORT_SYMBOL(struct_module);
2505 #endif
2507 #ifdef CONFIG_MARKERS
2508 void module_update_markers(struct module *probe_module, int *refcount)
2510 struct module *mod;
2512 mutex_lock(&module_mutex);
2513 list_for_each_entry(mod, &modules, list)
2514 if (!mod->taints)
2515 marker_update_probe_range(mod->markers,
2516 mod->markers + mod->num_markers,
2517 probe_module, refcount);
2518 mutex_unlock(&module_mutex);
2520 #endif