1 /* Rewritten by Rusty Russell, on the backs of many others...
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/config.h>
20 #include <linux/module.h>
21 #include <linux/moduleloader.h>
22 #include <linux/init.h>
23 #include <linux/kernel.h>
24 #include <linux/slab.h>
25 #include <linux/vmalloc.h>
26 #include <linux/elf.h>
27 #include <linux/seq_file.h>
28 #include <linux/syscalls.h>
29 #include <linux/fcntl.h>
30 #include <linux/rcupdate.h>
31 #include <linux/capability.h>
32 #include <linux/cpu.h>
33 #include <linux/moduleparam.h>
34 #include <linux/errno.h>
35 #include <linux/err.h>
36 #include <linux/vermagic.h>
37 #include <linux/notifier.h>
38 #include <linux/stop_machine.h>
39 #include <linux/device.h>
40 #include <linux/string.h>
41 #include <linux/sched.h>
42 #include <asm/uaccess.h>
43 #include <asm/semaphore.h>
44 #include <asm/cacheflush.h>
49 #define DEBUGP(fmt , a...)
52 #ifndef ARCH_SHF_SMALL
53 #define ARCH_SHF_SMALL 0
56 /* If this is set, the section belongs in the init part of the module */
57 #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
59 /* Protects module list */
60 static DEFINE_SPINLOCK(modlist_lock);
62 /* List of modules, protected by module_mutex AND modlist_lock */
63 static DECLARE_MUTEX(module_mutex);
64 static LIST_HEAD(modules);
66 static DECLARE_MUTEX(notify_mutex);
67 static struct notifier_block * module_notify_list;
69 int register_module_notifier(struct notifier_block * nb)
73 err = notifier_chain_register(&module_notify_list, nb);
77 EXPORT_SYMBOL(register_module_notifier);
79 int unregister_module_notifier(struct notifier_block * nb)
83 err = notifier_chain_unregister(&module_notify_list, nb);
87 EXPORT_SYMBOL(unregister_module_notifier);
89 /* We require a truly strong try_module_get() */
90 static inline int strong_try_module_get(struct module *mod)
92 if (mod && mod->state == MODULE_STATE_COMING)
94 return try_module_get(mod);
97 /* A thread that wants to hold a reference to a module only while it
98 * is running can call ths to safely exit.
99 * nfsd and lockd use this.
101 void __module_put_and_exit(struct module *mod, long 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,
111 const char *secstrings,
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)
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 unsigned long __start___kcrctab[];
132 extern const unsigned long __start___kcrctab_gpl[];
133 extern const unsigned long __start___kcrctab_gpl_future[];
135 #ifndef CONFIG_MODVERSIONS
136 #define symversion(base, idx) NULL
138 #define symversion(base, idx) ((base) ? ((base) + (idx)) : NULL)
141 /* lookup symbol in given range of kernel_symbols */
142 static const struct kernel_symbol *lookup_symbol(const char *name,
143 const struct kernel_symbol *start,
144 const struct kernel_symbol *stop)
146 const struct kernel_symbol *ks = start;
147 for (; ks < stop; ks++)
148 if (strcmp(ks->name, name) == 0)
153 /* Find a symbol, return value, crc and module which owns it */
154 static unsigned long __find_symbol(const char *name,
155 struct module **owner,
156 const unsigned long **crc,
160 const struct kernel_symbol *ks;
162 /* Core kernel first. */
164 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
166 *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
170 ks = lookup_symbol(name, __start___ksymtab_gpl,
171 __stop___ksymtab_gpl);
173 *crc = symversion(__start___kcrctab_gpl,
174 (ks - __start___ksymtab_gpl));
178 ks = lookup_symbol(name, __start___ksymtab_gpl_future,
179 __stop___ksymtab_gpl_future);
182 printk(KERN_WARNING "Symbol %s is being used "
183 "by a non-GPL module, which will not "
184 "be allowed in the future\n", name);
185 printk(KERN_WARNING "Please see the file "
186 "Documentation/feature-removal-schedule.txt "
187 "in the kernel source tree for more "
190 *crc = symversion(__start___kcrctab_gpl_future,
191 (ks - __start___ksymtab_gpl_future));
195 /* Now try modules. */
196 list_for_each_entry(mod, &modules, list) {
198 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
200 *crc = symversion(mod->crcs, (ks - mod->syms));
205 ks = lookup_symbol(name, mod->gpl_syms,
206 mod->gpl_syms + mod->num_gpl_syms);
208 *crc = symversion(mod->gpl_crcs,
209 (ks - mod->gpl_syms));
213 ks = lookup_symbol(name, mod->gpl_future_syms,
214 (mod->gpl_future_syms +
215 mod->num_gpl_future_syms));
218 printk(KERN_WARNING "Symbol %s is being used "
219 "by a non-GPL module, which will not "
220 "be allowed in the future\n", name);
221 printk(KERN_WARNING "Please see the file "
222 "Documentation/feature-removal-schedule.txt "
223 "in the kernel source tree for more "
226 *crc = symversion(mod->gpl_future_crcs,
227 (ks - mod->gpl_future_syms));
231 DEBUGP("Failed to find symbol %s\n", name);
235 /* Find a symbol in this elf symbol table */
236 static unsigned long find_local_symbol(Elf_Shdr *sechdrs,
237 unsigned int symindex,
242 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
244 /* Search (defined) internal symbols first. */
245 for (i = 1; i < sechdrs[symindex].sh_size/sizeof(*sym); i++) {
246 if (sym[i].st_shndx != SHN_UNDEF
247 && strcmp(name, strtab + sym[i].st_name) == 0)
248 return sym[i].st_value;
253 /* Search for module by name: must hold module_mutex. */
254 static struct module *find_module(const char *name)
258 list_for_each_entry(mod, &modules, list) {
259 if (strcmp(mod->name, name) == 0)
266 /* Number of blocks used and allocated. */
267 static unsigned int pcpu_num_used, pcpu_num_allocated;
268 /* Size of each block. -ve means used. */
269 static int *pcpu_size;
271 static int split_block(unsigned int i, unsigned short size)
273 /* Reallocation required? */
274 if (pcpu_num_used + 1 > pcpu_num_allocated) {
275 int *new = kmalloc(sizeof(new[0]) * pcpu_num_allocated*2,
280 memcpy(new, pcpu_size, sizeof(new[0])*pcpu_num_allocated);
281 pcpu_num_allocated *= 2;
286 /* Insert a new subblock */
287 memmove(&pcpu_size[i+1], &pcpu_size[i],
288 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
291 pcpu_size[i+1] -= size;
296 static inline unsigned int block_size(int val)
303 /* Created by linker magic */
304 extern char __per_cpu_start[], __per_cpu_end[];
306 static void *percpu_modalloc(unsigned long size, unsigned long align,
313 if (align > SMP_CACHE_BYTES) {
314 printk(KERN_WARNING "%s: per-cpu alignment %li > %i\n",
315 name, align, SMP_CACHE_BYTES);
316 align = SMP_CACHE_BYTES;
319 ptr = __per_cpu_start;
320 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
321 /* Extra for alignment requirement. */
322 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
323 BUG_ON(i == 0 && extra != 0);
325 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
328 /* Transfer extra to previous block. */
329 if (pcpu_size[i-1] < 0)
330 pcpu_size[i-1] -= extra;
332 pcpu_size[i-1] += extra;
333 pcpu_size[i] -= extra;
336 /* Split block if warranted */
337 if (pcpu_size[i] - size > sizeof(unsigned long))
338 if (!split_block(i, size))
342 pcpu_size[i] = -pcpu_size[i];
346 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
351 static void percpu_modfree(void *freeme)
354 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
356 /* First entry is core kernel percpu data. */
357 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
359 pcpu_size[i] = -pcpu_size[i];
366 /* Merge with previous? */
367 if (pcpu_size[i-1] >= 0) {
368 pcpu_size[i-1] += pcpu_size[i];
370 memmove(&pcpu_size[i], &pcpu_size[i+1],
371 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
374 /* Merge with next? */
375 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
376 pcpu_size[i] += pcpu_size[i+1];
378 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
379 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
383 static unsigned int find_pcpusec(Elf_Ehdr *hdr,
385 const char *secstrings)
387 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
390 static int percpu_modinit(void)
393 pcpu_num_allocated = 2;
394 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
396 /* Static in-kernel percpu data (used). */
397 pcpu_size[0] = -ALIGN(__per_cpu_end-__per_cpu_start, SMP_CACHE_BYTES);
399 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
400 if (pcpu_size[1] < 0) {
401 printk(KERN_ERR "No per-cpu room for modules.\n");
407 __initcall(percpu_modinit);
408 #else /* ... !CONFIG_SMP */
409 static inline void *percpu_modalloc(unsigned long size, unsigned long align,
414 static inline void percpu_modfree(void *pcpuptr)
418 static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
420 const char *secstrings)
424 static inline void percpu_modcopy(void *pcpudst, const void *src,
427 /* pcpusec should be 0, and size of that section should be 0. */
430 #endif /* CONFIG_SMP */
432 #ifdef CONFIG_MODULE_UNLOAD
433 #define MODINFO_ATTR(field) \
434 static void setup_modinfo_##field(struct module *mod, const char *s) \
436 mod->field = kstrdup(s, GFP_KERNEL); \
438 static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
439 struct module *mod, char *buffer) \
441 return sprintf(buffer, "%s\n", mod->field); \
443 static int modinfo_##field##_exists(struct module *mod) \
445 return mod->field != NULL; \
447 static void free_modinfo_##field(struct module *mod) \
452 static struct module_attribute modinfo_##field = { \
453 .attr = { .name = __stringify(field), .mode = 0444, \
454 .owner = THIS_MODULE }, \
455 .show = show_modinfo_##field, \
456 .setup = setup_modinfo_##field, \
457 .test = modinfo_##field##_exists, \
458 .free = free_modinfo_##field, \
461 MODINFO_ATTR(version);
462 MODINFO_ATTR(srcversion);
464 static struct module_attribute *modinfo_attrs[] = {
470 /* Init the unload section of the module. */
471 static void module_unload_init(struct module *mod)
475 INIT_LIST_HEAD(&mod->modules_which_use_me);
476 for (i = 0; i < NR_CPUS; i++)
477 local_set(&mod->ref[i].count, 0);
478 /* Hold reference count during initialization. */
479 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
480 /* Backwards compatibility macros put refcount during init. */
481 mod->waiter = current;
484 /* modules using other modules */
487 struct list_head list;
488 struct module *module_which_uses;
491 /* Does a already use b? */
492 static int already_uses(struct module *a, struct module *b)
494 struct module_use *use;
496 list_for_each_entry(use, &b->modules_which_use_me, list) {
497 if (use->module_which_uses == a) {
498 DEBUGP("%s uses %s!\n", a->name, b->name);
502 DEBUGP("%s does not use %s!\n", a->name, b->name);
506 /* Module a uses b */
507 static int use_module(struct module *a, struct module *b)
509 struct module_use *use;
510 if (b == NULL || already_uses(a, b)) return 1;
512 if (!strong_try_module_get(b))
515 DEBUGP("Allocating new usage for %s.\n", a->name);
516 use = kmalloc(sizeof(*use), GFP_ATOMIC);
518 printk("%s: out of memory loading\n", a->name);
523 use->module_which_uses = a;
524 list_add(&use->list, &b->modules_which_use_me);
528 /* Clear the unload stuff of the module. */
529 static void module_unload_free(struct module *mod)
533 list_for_each_entry(i, &modules, list) {
534 struct module_use *use;
536 list_for_each_entry(use, &i->modules_which_use_me, list) {
537 if (use->module_which_uses == mod) {
538 DEBUGP("%s unusing %s\n", mod->name, i->name);
540 list_del(&use->list);
542 /* There can be at most one match. */
549 #ifdef CONFIG_MODULE_FORCE_UNLOAD
550 static inline int try_force_unload(unsigned int flags)
552 int ret = (flags & O_TRUNC);
554 add_taint(TAINT_FORCED_RMMOD);
558 static inline int try_force_unload(unsigned int flags)
562 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
571 /* Whole machine is stopped with interrupts off when this runs. */
572 static int __try_stop_module(void *_sref)
574 struct stopref *sref = _sref;
576 /* If it's not unused, quit unless we are told to block. */
577 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
578 if (!(*sref->forced = try_force_unload(sref->flags)))
582 /* Mark it as dying. */
583 sref->mod->state = MODULE_STATE_GOING;
587 static int try_stop_module(struct module *mod, int flags, int *forced)
589 struct stopref sref = { mod, flags, forced };
591 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
594 unsigned int module_refcount(struct module *mod)
596 unsigned int i, total = 0;
598 for (i = 0; i < NR_CPUS; i++)
599 total += local_read(&mod->ref[i].count);
602 EXPORT_SYMBOL(module_refcount);
604 /* This exists whether we can unload or not */
605 static void free_module(struct module *mod);
607 static void wait_for_zero_refcount(struct module *mod)
609 /* Since we might sleep for some time, drop the semaphore first */
612 DEBUGP("Looking at refcount...\n");
613 set_current_state(TASK_UNINTERRUPTIBLE);
614 if (module_refcount(mod) == 0)
618 current->state = TASK_RUNNING;
623 sys_delete_module(const char __user *name_user, unsigned int flags)
626 char name[MODULE_NAME_LEN];
629 if (!capable(CAP_SYS_MODULE))
632 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
634 name[MODULE_NAME_LEN-1] = '\0';
636 if (down_interruptible(&module_mutex) != 0)
639 mod = find_module(name);
645 if (!list_empty(&mod->modules_which_use_me)) {
646 /* Other modules depend on us: get rid of them first. */
651 /* Doing init or already dying? */
652 if (mod->state != MODULE_STATE_LIVE) {
653 /* FIXME: if (force), slam module count and wake up
655 DEBUGP("%s already dying\n", mod->name);
660 /* If it has an init func, it must have an exit func to unload */
661 if ((mod->init != NULL && mod->exit == NULL)
663 forced = try_force_unload(flags);
665 /* This module can't be removed */
671 /* Set this up before setting mod->state */
672 mod->waiter = current;
674 /* Stop the machine so refcounts can't move and disable module. */
675 ret = try_stop_module(mod, flags, &forced);
679 /* Never wait if forced. */
680 if (!forced && module_refcount(mod) != 0)
681 wait_for_zero_refcount(mod);
683 /* Final destruction now noone is using it. */
684 if (mod->exit != NULL) {
696 static void print_unload_info(struct seq_file *m, struct module *mod)
698 struct module_use *use;
699 int printed_something = 0;
701 seq_printf(m, " %u ", module_refcount(mod));
703 /* Always include a trailing , so userspace can differentiate
704 between this and the old multi-field proc format. */
705 list_for_each_entry(use, &mod->modules_which_use_me, list) {
706 printed_something = 1;
707 seq_printf(m, "%s,", use->module_which_uses->name);
711 printed_something = 1;
712 seq_printf(m, "[unsafe],");
715 if (mod->init != NULL && mod->exit == NULL) {
716 printed_something = 1;
717 seq_printf(m, "[permanent],");
720 if (!printed_something)
724 void __symbol_put(const char *symbol)
726 struct module *owner;
728 const unsigned long *crc;
730 spin_lock_irqsave(&modlist_lock, flags);
731 if (!__find_symbol(symbol, &owner, &crc, 1))
734 spin_unlock_irqrestore(&modlist_lock, flags);
736 EXPORT_SYMBOL(__symbol_put);
738 void symbol_put_addr(void *addr)
742 spin_lock_irqsave(&modlist_lock, flags);
743 if (!kernel_text_address((unsigned long)addr))
746 module_put(module_text_address((unsigned long)addr));
747 spin_unlock_irqrestore(&modlist_lock, flags);
749 EXPORT_SYMBOL_GPL(symbol_put_addr);
751 static ssize_t show_refcnt(struct module_attribute *mattr,
752 struct module *mod, char *buffer)
754 /* sysfs holds a reference */
755 return sprintf(buffer, "%u\n", module_refcount(mod)-1);
758 static struct module_attribute refcnt = {
759 .attr = { .name = "refcnt", .mode = 0444, .owner = THIS_MODULE },
763 #else /* !CONFIG_MODULE_UNLOAD */
764 static void print_unload_info(struct seq_file *m, struct module *mod)
766 /* We don't know the usage count, or what modules are using. */
767 seq_printf(m, " - -");
770 static inline void module_unload_free(struct module *mod)
774 static inline int use_module(struct module *a, struct module *b)
776 return strong_try_module_get(b);
779 static inline void module_unload_init(struct module *mod)
782 #endif /* CONFIG_MODULE_UNLOAD */
784 #ifdef CONFIG_OBSOLETE_MODPARM
785 /* Bounds checking done below */
786 static int obsparm_copy_string(const char *val, struct kernel_param *kp)
788 strcpy(kp->arg, val);
792 static int set_obsolete(const char *val, struct kernel_param *kp)
794 unsigned int min, max;
795 unsigned int size, maxsize;
799 struct obsolete_modparm *obsparm = kp->arg;
802 printk(KERN_ERR "Parameter %s needs an argument\n", kp->name);
806 /* type is: [min[-max]]{b,h,i,l,s} */
808 min = simple_strtol(p, &endp, 10);
809 if (endp == obsparm->type)
811 else if (*endp == '-') {
813 max = simple_strtol(p, &endp, 10);
818 return param_array(kp->name, val, min, max, obsparm->addr,
819 1, param_set_byte, &dummy);
821 return param_array(kp->name, val, min, max, obsparm->addr,
822 sizeof(short), param_set_short, &dummy);
824 return param_array(kp->name, val, min, max, obsparm->addr,
825 sizeof(int), param_set_int, &dummy);
827 return param_array(kp->name, val, min, max, obsparm->addr,
828 sizeof(long), param_set_long, &dummy);
830 return param_array(kp->name, val, min, max, obsparm->addr,
831 sizeof(char *), param_set_charp, &dummy);
834 /* Undocumented: 1-5c50 means 1-5 strings of up to 49 chars,
835 and the decl is "char xxx[5][50];" */
837 maxsize = simple_strtol(p, &endp, 10);
838 /* We check lengths here (yes, this is a hack). */
840 while (p[size = strcspn(p, ",")]) {
847 return param_array(kp->name, val, min, max, obsparm->addr,
848 maxsize, obsparm_copy_string, &dummy);
850 printk(KERN_ERR "Unknown obsolete parameter type %s\n", obsparm->type);
854 "Parameter %s doesn't fit in %u chars.\n", kp->name, maxsize);
858 static int obsolete_params(const char *name,
860 struct obsolete_modparm obsparm[],
863 unsigned int symindex,
866 struct kernel_param *kp;
870 kp = kmalloc(sizeof(kp[0]) * num, GFP_KERNEL);
874 for (i = 0; i < num; i++) {
875 char sym_name[128 + sizeof(MODULE_SYMBOL_PREFIX)];
877 snprintf(sym_name, sizeof(sym_name), "%s%s",
878 MODULE_SYMBOL_PREFIX, obsparm[i].name);
880 kp[i].name = obsparm[i].name;
882 kp[i].set = set_obsolete;
885 = (void *)find_local_symbol(sechdrs, symindex, strtab,
887 if (!obsparm[i].addr) {
888 printk("%s: falsely claims to have parameter %s\n",
889 name, obsparm[i].name);
893 kp[i].arg = &obsparm[i];
896 ret = parse_args(name, args, kp, num, NULL);
902 static int obsolete_params(const char *name,
904 struct obsolete_modparm obsparm[],
907 unsigned int symindex,
911 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
915 #endif /* CONFIG_OBSOLETE_MODPARM */
917 static const char vermagic[] = VERMAGIC_STRING;
919 #ifdef CONFIG_MODVERSIONS
920 static int check_version(Elf_Shdr *sechdrs,
921 unsigned int versindex,
924 const unsigned long *crc)
926 unsigned int i, num_versions;
927 struct modversion_info *versions;
929 /* Exporting module didn't supply crcs? OK, we're already tainted. */
933 versions = (void *) sechdrs[versindex].sh_addr;
934 num_versions = sechdrs[versindex].sh_size
935 / sizeof(struct modversion_info);
937 for (i = 0; i < num_versions; i++) {
938 if (strcmp(versions[i].name, symname) != 0)
941 if (versions[i].crc == *crc)
943 printk("%s: disagrees about version of symbol %s\n",
945 DEBUGP("Found checksum %lX vs module %lX\n",
946 *crc, versions[i].crc);
949 /* Not in module's version table. OK, but that taints the kernel. */
950 if (!(tainted & TAINT_FORCED_MODULE)) {
951 printk("%s: no version for \"%s\" found: kernel tainted.\n",
953 add_taint(TAINT_FORCED_MODULE);
958 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
959 unsigned int versindex,
962 const unsigned long *crc;
963 struct module *owner;
965 if (!__find_symbol("struct_module", &owner, &crc, 1))
967 return check_version(sechdrs, versindex, "struct_module", mod,
971 /* First part is kernel version, which we ignore. */
972 static inline int same_magic(const char *amagic, const char *bmagic)
974 amagic += strcspn(amagic, " ");
975 bmagic += strcspn(bmagic, " ");
976 return strcmp(amagic, bmagic) == 0;
979 static inline int check_version(Elf_Shdr *sechdrs,
980 unsigned int versindex,
983 const unsigned long *crc)
988 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
989 unsigned int versindex,
995 static inline int same_magic(const char *amagic, const char *bmagic)
997 return strcmp(amagic, bmagic) == 0;
999 #endif /* CONFIG_MODVERSIONS */
1001 /* Resolve a symbol for this module. I.e. if we find one, record usage.
1002 Must be holding module_mutex. */
1003 static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
1004 unsigned int versindex,
1008 struct module *owner;
1010 const unsigned long *crc;
1012 ret = __find_symbol(name, &owner, &crc, mod->license_gplok);
1014 /* use_module can fail due to OOM, or module unloading */
1015 if (!check_version(sechdrs, versindex, name, mod, crc) ||
1016 !use_module(mod, owner))
1024 * /sys/module/foo/sections stuff
1027 #ifdef CONFIG_KALLSYMS
1028 static ssize_t module_sect_show(struct module_attribute *mattr,
1029 struct module *mod, char *buf)
1031 struct module_sect_attr *sattr =
1032 container_of(mattr, struct module_sect_attr, mattr);
1033 return sprintf(buf, "0x%lx\n", sattr->address);
1036 static void add_sect_attrs(struct module *mod, unsigned int nsect,
1037 char *secstrings, Elf_Shdr *sechdrs)
1039 unsigned int nloaded = 0, i, size[2];
1040 struct module_sect_attrs *sect_attrs;
1041 struct module_sect_attr *sattr;
1042 struct attribute **gattr;
1044 /* Count loaded sections and allocate structures */
1045 for (i = 0; i < nsect; i++)
1046 if (sechdrs[i].sh_flags & SHF_ALLOC)
1048 size[0] = ALIGN(sizeof(*sect_attrs)
1049 + nloaded * sizeof(sect_attrs->attrs[0]),
1050 sizeof(sect_attrs->grp.attrs[0]));
1051 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
1052 if (! (sect_attrs = kmalloc(size[0] + size[1], GFP_KERNEL)))
1055 /* Setup section attributes. */
1056 sect_attrs->grp.name = "sections";
1057 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1059 sattr = §_attrs->attrs[0];
1060 gattr = §_attrs->grp.attrs[0];
1061 for (i = 0; i < nsect; i++) {
1062 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1064 sattr->address = sechdrs[i].sh_addr;
1065 strlcpy(sattr->name, secstrings + sechdrs[i].sh_name,
1066 MODULE_SECT_NAME_LEN);
1067 sattr->mattr.show = module_sect_show;
1068 sattr->mattr.store = NULL;
1069 sattr->mattr.attr.name = sattr->name;
1070 sattr->mattr.attr.owner = mod;
1071 sattr->mattr.attr.mode = S_IRUGO;
1072 *(gattr++) = &(sattr++)->mattr.attr;
1076 if (sysfs_create_group(&mod->mkobj.kobj, §_attrs->grp))
1079 mod->sect_attrs = sect_attrs;
1085 static void remove_sect_attrs(struct module *mod)
1087 if (mod->sect_attrs) {
1088 sysfs_remove_group(&mod->mkobj.kobj,
1089 &mod->sect_attrs->grp);
1090 /* We are positive that no one is using any sect attrs
1091 * at this point. Deallocate immediately. */
1092 kfree(mod->sect_attrs);
1093 mod->sect_attrs = NULL;
1099 static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1100 char *sectstrings, Elf_Shdr *sechdrs)
1104 static inline void remove_sect_attrs(struct module *mod)
1107 #endif /* CONFIG_KALLSYMS */
1110 #ifdef CONFIG_MODULE_UNLOAD
1111 static inline int module_add_refcnt_attr(struct module *mod)
1113 return sysfs_create_file(&mod->mkobj.kobj, &refcnt.attr);
1115 static void module_remove_refcnt_attr(struct module *mod)
1117 return sysfs_remove_file(&mod->mkobj.kobj, &refcnt.attr);
1120 static inline int module_add_refcnt_attr(struct module *mod)
1124 static void module_remove_refcnt_attr(struct module *mod)
1129 #ifdef CONFIG_MODULE_UNLOAD
1130 static int module_add_modinfo_attrs(struct module *mod)
1132 struct module_attribute *attr;
1136 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1138 (attr->test && attr->test(mod)))
1139 error = sysfs_create_file(&mod->mkobj.kobj,&attr->attr);
1144 static void module_remove_modinfo_attrs(struct module *mod)
1146 struct module_attribute *attr;
1149 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1150 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
1156 static int mod_sysfs_setup(struct module *mod,
1157 struct kernel_param *kparam,
1158 unsigned int num_params)
1162 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1163 err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
1166 kobj_set_kset_s(&mod->mkobj, module_subsys);
1167 mod->mkobj.mod = mod;
1168 err = kobject_register(&mod->mkobj.kobj);
1172 err = module_add_refcnt_attr(mod);
1176 err = module_param_sysfs_setup(mod, kparam, num_params);
1180 #ifdef CONFIG_MODULE_UNLOAD
1181 err = module_add_modinfo_attrs(mod);
1189 kobject_unregister(&mod->mkobj.kobj);
1194 static void mod_kobject_remove(struct module *mod)
1196 #ifdef CONFIG_MODULE_UNLOAD
1197 module_remove_modinfo_attrs(mod);
1199 module_remove_refcnt_attr(mod);
1200 module_param_sysfs_remove(mod);
1202 kobject_unregister(&mod->mkobj.kobj);
1206 * unlink the module with the whole machine is stopped with interrupts off
1207 * - this defends against kallsyms not taking locks
1209 static int __unlink_module(void *_mod)
1211 struct module *mod = _mod;
1212 list_del(&mod->list);
1216 /* Free a module, remove from lists, etc (must hold module mutex). */
1217 static void free_module(struct module *mod)
1219 /* Delete from various lists */
1220 stop_machine_run(__unlink_module, mod, NR_CPUS);
1221 remove_sect_attrs(mod);
1222 mod_kobject_remove(mod);
1224 /* Arch-specific cleanup. */
1225 module_arch_cleanup(mod);
1227 /* Module unload stuff */
1228 module_unload_free(mod);
1230 /* This may be NULL, but that's OK */
1231 module_free(mod, mod->module_init);
1234 percpu_modfree(mod->percpu);
1236 /* Finally, free the core (containing the module structure) */
1237 module_free(mod, mod->module_core);
1240 void *__symbol_get(const char *symbol)
1242 struct module *owner;
1243 unsigned long value, flags;
1244 const unsigned long *crc;
1246 spin_lock_irqsave(&modlist_lock, flags);
1247 value = __find_symbol(symbol, &owner, &crc, 1);
1248 if (value && !strong_try_module_get(owner))
1250 spin_unlock_irqrestore(&modlist_lock, flags);
1252 return (void *)value;
1254 EXPORT_SYMBOL_GPL(__symbol_get);
1257 * Ensure that an exported symbol [global namespace] does not already exist
1258 * in the Kernel or in some other modules exported symbol table.
1260 static int verify_export_symbols(struct module *mod)
1262 const char *name = NULL;
1263 unsigned long i, ret = 0;
1264 struct module *owner;
1265 const unsigned long *crc;
1267 for (i = 0; i < mod->num_syms; i++)
1268 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
1269 name = mod->syms[i].name;
1274 for (i = 0; i < mod->num_gpl_syms; i++)
1275 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
1276 name = mod->gpl_syms[i].name;
1283 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1284 mod->name, name, module_name(owner));
1289 /* Change all symbols so that sh_value encodes the pointer directly. */
1290 static int simplify_symbols(Elf_Shdr *sechdrs,
1291 unsigned int symindex,
1293 unsigned int versindex,
1294 unsigned int pcpuindex,
1297 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1298 unsigned long secbase;
1299 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1302 for (i = 1; i < n; i++) {
1303 switch (sym[i].st_shndx) {
1305 /* We compiled with -fno-common. These are not
1306 supposed to happen. */
1307 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1308 printk("%s: please compile with -fno-common\n",
1314 /* Don't need to do anything */
1315 DEBUGP("Absolute symbol: 0x%08lx\n",
1316 (long)sym[i].st_value);
1321 = resolve_symbol(sechdrs, versindex,
1322 strtab + sym[i].st_name, mod);
1324 /* Ok if resolved. */
1325 if (sym[i].st_value != 0)
1328 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1331 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1332 mod->name, strtab + sym[i].st_name);
1337 /* Divert to percpu allocation if a percpu var. */
1338 if (sym[i].st_shndx == pcpuindex)
1339 secbase = (unsigned long)mod->percpu;
1341 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1342 sym[i].st_value += secbase;
1350 /* Update size with this section: return offset. */
1351 static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1355 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1356 *size = ret + sechdr->sh_size;
1360 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1361 might -- code, read-only data, read-write data, small data. Tally
1362 sizes, and place the offsets into sh_entsize fields: high bit means it
1364 static void layout_sections(struct module *mod,
1365 const Elf_Ehdr *hdr,
1367 const char *secstrings)
1369 static unsigned long const masks[][2] = {
1370 /* NOTE: all executable code must be the first section
1371 * in this array; otherwise modify the text_size
1372 * finder in the two loops below */
1373 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1374 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1375 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1376 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1380 for (i = 0; i < hdr->e_shnum; i++)
1381 sechdrs[i].sh_entsize = ~0UL;
1383 DEBUGP("Core section allocation order:\n");
1384 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1385 for (i = 0; i < hdr->e_shnum; ++i) {
1386 Elf_Shdr *s = &sechdrs[i];
1388 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1389 || (s->sh_flags & masks[m][1])
1390 || s->sh_entsize != ~0UL
1391 || strncmp(secstrings + s->sh_name,
1394 s->sh_entsize = get_offset(&mod->core_size, s);
1395 DEBUGP("\t%s\n", secstrings + s->sh_name);
1398 mod->core_text_size = mod->core_size;
1401 DEBUGP("Init section allocation order:\n");
1402 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1403 for (i = 0; i < hdr->e_shnum; ++i) {
1404 Elf_Shdr *s = &sechdrs[i];
1406 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1407 || (s->sh_flags & masks[m][1])
1408 || s->sh_entsize != ~0UL
1409 || strncmp(secstrings + s->sh_name,
1412 s->sh_entsize = (get_offset(&mod->init_size, s)
1413 | INIT_OFFSET_MASK);
1414 DEBUGP("\t%s\n", secstrings + s->sh_name);
1417 mod->init_text_size = mod->init_size;
1421 static inline int license_is_gpl_compatible(const char *license)
1423 return (strcmp(license, "GPL") == 0
1424 || strcmp(license, "GPL v2") == 0
1425 || strcmp(license, "GPL and additional rights") == 0
1426 || strcmp(license, "Dual BSD/GPL") == 0
1427 || strcmp(license, "Dual MPL/GPL") == 0);
1430 static void set_license(struct module *mod, const char *license)
1433 license = "unspecified";
1435 mod->license_gplok = license_is_gpl_compatible(license);
1436 if (!mod->license_gplok && !(tainted & TAINT_PROPRIETARY_MODULE)) {
1437 printk(KERN_WARNING "%s: module license '%s' taints kernel.\n",
1438 mod->name, license);
1439 add_taint(TAINT_PROPRIETARY_MODULE);
1443 /* Parse tag=value strings from .modinfo section */
1444 static char *next_string(char *string, unsigned long *secsize)
1446 /* Skip non-zero chars */
1449 if ((*secsize)-- <= 1)
1453 /* Skip any zero padding. */
1454 while (!string[0]) {
1456 if ((*secsize)-- <= 1)
1462 static char *get_modinfo(Elf_Shdr *sechdrs,
1467 unsigned int taglen = strlen(tag);
1468 unsigned long size = sechdrs[info].sh_size;
1470 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1471 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1472 return p + taglen + 1;
1477 #ifdef CONFIG_MODULE_UNLOAD
1478 static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1479 unsigned int infoindex)
1481 struct module_attribute *attr;
1484 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1487 get_modinfo(sechdrs,
1494 #ifdef CONFIG_KALLSYMS
1495 int is_exported(const char *name, const struct module *mod)
1497 if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1500 if (lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
1507 static char elf_type(const Elf_Sym *sym,
1509 const char *secstrings,
1512 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1513 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1518 if (sym->st_shndx == SHN_UNDEF)
1520 if (sym->st_shndx == SHN_ABS)
1522 if (sym->st_shndx >= SHN_LORESERVE)
1524 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1526 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1527 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1528 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1530 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1535 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1536 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1541 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1542 ".debug", strlen(".debug")) == 0)
1547 static void add_kallsyms(struct module *mod,
1549 unsigned int symindex,
1550 unsigned int strindex,
1551 const char *secstrings)
1555 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1556 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1557 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1559 /* Set types up while we still have access to sections. */
1560 for (i = 0; i < mod->num_symtab; i++)
1561 mod->symtab[i].st_info
1562 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1565 static inline void add_kallsyms(struct module *mod,
1567 unsigned int symindex,
1568 unsigned int strindex,
1569 const char *secstrings)
1572 #endif /* CONFIG_KALLSYMS */
1574 /* Allocate and load the module: note that size of section 0 is always
1575 zero, and we rely on this for optional sections. */
1576 static struct module *load_module(void __user *umod,
1578 const char __user *uargs)
1582 char *secstrings, *args, *modmagic, *strtab = NULL;
1583 unsigned int i, symindex = 0, strindex = 0, setupindex, exindex,
1584 exportindex, modindex, obsparmindex, infoindex, gplindex,
1585 crcindex, gplcrcindex, versindex, pcpuindex, gplfutureindex,
1590 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1591 struct exception_table_entry *extable;
1592 mm_segment_t old_fs;
1594 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1596 if (len < sizeof(*hdr))
1597 return ERR_PTR(-ENOEXEC);
1599 /* Suck in entire file: we'll want most of it. */
1600 /* vmalloc barfs on "unusual" numbers. Check here */
1601 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1602 return ERR_PTR(-ENOMEM);
1603 if (copy_from_user(hdr, umod, len) != 0) {
1608 /* Sanity checks against insmoding binaries or wrong arch,
1609 weird elf version */
1610 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1611 || hdr->e_type != ET_REL
1612 || !elf_check_arch(hdr)
1613 || hdr->e_shentsize != sizeof(*sechdrs)) {
1618 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1621 /* Convenience variables */
1622 sechdrs = (void *)hdr + hdr->e_shoff;
1623 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1624 sechdrs[0].sh_addr = 0;
1626 for (i = 1; i < hdr->e_shnum; i++) {
1627 if (sechdrs[i].sh_type != SHT_NOBITS
1628 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1631 /* Mark all sections sh_addr with their address in the
1633 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1635 /* Internal symbols and strings. */
1636 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1638 strindex = sechdrs[i].sh_link;
1639 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1641 #ifndef CONFIG_MODULE_UNLOAD
1642 /* Don't load .exit sections */
1643 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1644 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1648 modindex = find_sec(hdr, sechdrs, secstrings,
1649 ".gnu.linkonce.this_module");
1651 printk(KERN_WARNING "No module found in object\n");
1655 mod = (void *)sechdrs[modindex].sh_addr;
1657 if (symindex == 0) {
1658 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1664 /* Optional sections */
1665 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1666 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
1667 gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
1668 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1669 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
1670 gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
1671 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1672 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1673 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1674 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1675 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1676 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
1678 /* Don't keep modinfo section */
1679 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1680 #ifdef CONFIG_KALLSYMS
1681 /* Keep symbol and string tables for decoding later. */
1682 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1683 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1686 /* Check module struct version now, before we try to use module. */
1687 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1692 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1693 /* This is allowed: modprobe --force will invalidate it. */
1695 add_taint(TAINT_FORCED_MODULE);
1696 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1698 } else if (!same_magic(modmagic, vermagic)) {
1699 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1700 mod->name, modmagic, vermagic);
1705 /* Now copy in args */
1706 arglen = strlen_user(uargs);
1711 args = kmalloc(arglen, GFP_KERNEL);
1716 if (copy_from_user(args, uargs, arglen) != 0) {
1721 /* Userspace could have altered the string after the strlen_user() */
1722 args[arglen - 1] = '\0';
1724 if (find_module(mod->name)) {
1729 mod->state = MODULE_STATE_COMING;
1731 /* Allow arches to frob section contents and sizes. */
1732 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1737 /* We have a special allocation for this section. */
1738 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
1739 sechdrs[pcpuindex].sh_addralign,
1745 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1746 mod->percpu = percpu;
1749 /* Determine total sizes, and put offsets in sh_entsize. For now
1750 this is done generically; there doesn't appear to be any
1751 special cases for the architectures. */
1752 layout_sections(mod, hdr, sechdrs, secstrings);
1754 /* Do the allocs. */
1755 ptr = module_alloc(mod->core_size);
1760 memset(ptr, 0, mod->core_size);
1761 mod->module_core = ptr;
1763 ptr = module_alloc(mod->init_size);
1764 if (!ptr && mod->init_size) {
1768 memset(ptr, 0, mod->init_size);
1769 mod->module_init = ptr;
1771 /* Transfer each section which specifies SHF_ALLOC */
1772 DEBUGP("final section addresses:\n");
1773 for (i = 0; i < hdr->e_shnum; i++) {
1776 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1779 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1780 dest = mod->module_init
1781 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1783 dest = mod->module_core + sechdrs[i].sh_entsize;
1785 if (sechdrs[i].sh_type != SHT_NOBITS)
1786 memcpy(dest, (void *)sechdrs[i].sh_addr,
1787 sechdrs[i].sh_size);
1788 /* Update sh_addr to point to copy in image. */
1789 sechdrs[i].sh_addr = (unsigned long)dest;
1790 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1792 /* Module has been moved. */
1793 mod = (void *)sechdrs[modindex].sh_addr;
1795 /* Now we've moved module, initialize linked lists, etc. */
1796 module_unload_init(mod);
1798 /* Set up license info based on the info section */
1799 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1801 if (strcmp(mod->name, "ndiswrapper") == 0)
1802 add_taint(TAINT_PROPRIETARY_MODULE);
1803 if (strcmp(mod->name, "driverloader") == 0)
1804 add_taint(TAINT_PROPRIETARY_MODULE);
1806 #ifdef CONFIG_MODULE_UNLOAD
1807 /* Set up MODINFO_ATTR fields */
1808 setup_modinfo(mod, sechdrs, infoindex);
1811 /* Fix up syms, so that st_value is a pointer to location. */
1812 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1817 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1818 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1819 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1821 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1822 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1823 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1825 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
1826 mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
1827 sizeof(*mod->gpl_future_syms);
1828 mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
1829 if (gplfuturecrcindex)
1830 mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
1832 #ifdef CONFIG_MODVERSIONS
1833 if ((mod->num_syms && !crcindex) ||
1834 (mod->num_gpl_syms && !gplcrcindex) ||
1835 (mod->num_gpl_future_syms && !gplfuturecrcindex)) {
1836 printk(KERN_WARNING "%s: No versions for exported symbols."
1837 " Tainting kernel.\n", mod->name);
1838 add_taint(TAINT_FORCED_MODULE);
1842 /* Now do relocations. */
1843 for (i = 1; i < hdr->e_shnum; i++) {
1844 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1845 unsigned int info = sechdrs[i].sh_info;
1847 /* Not a valid relocation section? */
1848 if (info >= hdr->e_shnum)
1851 /* Don't bother with non-allocated sections */
1852 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1855 if (sechdrs[i].sh_type == SHT_REL)
1856 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1857 else if (sechdrs[i].sh_type == SHT_RELA)
1858 err = apply_relocate_add(sechdrs, strtab, symindex, i,
1864 /* Find duplicate symbols */
1865 err = verify_export_symbols(mod);
1870 /* Set up and sort exception table */
1871 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
1872 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
1873 sort_extable(extable, extable + mod->num_exentries);
1875 /* Finally, copy percpu area over. */
1876 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
1877 sechdrs[pcpuindex].sh_size);
1879 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
1881 err = module_finalize(hdr, sechdrs, mod);
1885 /* flush the icache in correct context */
1890 * Flush the instruction cache, since we've played with text.
1891 * Do it before processing of module parameters, so the module
1892 * can provide parameter accessor functions of its own.
1894 if (mod->module_init)
1895 flush_icache_range((unsigned long)mod->module_init,
1896 (unsigned long)mod->module_init
1898 flush_icache_range((unsigned long)mod->module_core,
1899 (unsigned long)mod->module_core + mod->core_size);
1905 err = obsolete_params(mod->name, mod->args,
1906 (struct obsolete_modparm *)
1907 sechdrs[obsparmindex].sh_addr,
1908 sechdrs[obsparmindex].sh_size
1909 / sizeof(struct obsolete_modparm),
1911 (char *)sechdrs[strindex].sh_addr);
1913 printk(KERN_WARNING "%s: Ignoring new-style "
1914 "parameters in presence of obsolete ones\n",
1917 /* Size of section 0 is 0, so this works well if no params */
1918 err = parse_args(mod->name, mod->args,
1919 (struct kernel_param *)
1920 sechdrs[setupindex].sh_addr,
1921 sechdrs[setupindex].sh_size
1922 / sizeof(struct kernel_param),
1928 err = mod_sysfs_setup(mod,
1929 (struct kernel_param *)
1930 sechdrs[setupindex].sh_addr,
1931 sechdrs[setupindex].sh_size
1932 / sizeof(struct kernel_param));
1935 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
1937 /* Get rid of temporary copy */
1944 module_arch_cleanup(mod);
1946 module_unload_free(mod);
1947 module_free(mod, mod->module_init);
1949 module_free(mod, mod->module_core);
1952 percpu_modfree(percpu);
1957 return ERR_PTR(err);
1960 printk(KERN_ERR "Module len %lu truncated\n", len);
1966 * link the module with the whole machine is stopped with interrupts off
1967 * - this defends against kallsyms not taking locks
1969 static int __link_module(void *_mod)
1971 struct module *mod = _mod;
1972 list_add(&mod->list, &modules);
1976 /* This is where the real work happens */
1978 sys_init_module(void __user *umod,
1980 const char __user *uargs)
1985 /* Must have permission */
1986 if (!capable(CAP_SYS_MODULE))
1989 /* Only one module load at a time, please */
1990 if (down_interruptible(&module_mutex) != 0)
1993 /* Do all the hard work */
1994 mod = load_module(umod, len, uargs);
1997 return PTR_ERR(mod);
2000 /* Now sew it into the lists. They won't access us, since
2001 strong_try_module_get() will fail. */
2002 stop_machine_run(__link_module, mod, NR_CPUS);
2004 /* Drop lock so they can recurse */
2007 down(¬ify_mutex);
2008 notifier_call_chain(&module_notify_list, MODULE_STATE_COMING, mod);
2011 /* Start the module */
2012 if (mod->init != NULL)
2015 /* Init routine failed: abort. Try to protect us from
2016 buggy refcounters. */
2017 mod->state = MODULE_STATE_GOING;
2018 synchronize_sched();
2020 printk(KERN_ERR "%s: module is now stuck!\n",
2024 down(&module_mutex);
2031 /* Now it's a first class citizen! */
2032 down(&module_mutex);
2033 mod->state = MODULE_STATE_LIVE;
2034 /* Drop initial reference. */
2036 module_free(mod, mod->module_init);
2037 mod->module_init = NULL;
2039 mod->init_text_size = 0;
2045 static inline int within(unsigned long addr, void *start, unsigned long size)
2047 return ((void *)addr >= start && (void *)addr < start + size);
2050 #ifdef CONFIG_KALLSYMS
2052 * This ignores the intensely annoying "mapping symbols" found
2053 * in ARM ELF files: $a, $t and $d.
2055 static inline int is_arm_mapping_symbol(const char *str)
2057 return str[0] == '$' && strchr("atd", str[1])
2058 && (str[2] == '\0' || str[2] == '.');
2061 static const char *get_ksymbol(struct module *mod,
2063 unsigned long *size,
2064 unsigned long *offset)
2066 unsigned int i, best = 0;
2067 unsigned long nextval;
2069 /* At worse, next value is at end of module */
2070 if (within(addr, mod->module_init, mod->init_size))
2071 nextval = (unsigned long)mod->module_init+mod->init_text_size;
2073 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2075 /* Scan for closest preceeding symbol, and next symbol. (ELF
2076 starts real symbols at 1). */
2077 for (i = 1; i < mod->num_symtab; i++) {
2078 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2081 /* We ignore unnamed symbols: they're uninformative
2082 * and inserted at a whim. */
2083 if (mod->symtab[i].st_value <= addr
2084 && mod->symtab[i].st_value > mod->symtab[best].st_value
2085 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2086 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2088 if (mod->symtab[i].st_value > addr
2089 && mod->symtab[i].st_value < nextval
2090 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2091 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2092 nextval = mod->symtab[i].st_value;
2098 *size = nextval - mod->symtab[best].st_value;
2099 *offset = addr - mod->symtab[best].st_value;
2100 return mod->strtab + mod->symtab[best].st_name;
2103 /* For kallsyms to ask for address resolution. NULL means not found.
2104 We don't lock, as this is used for oops resolution and races are a
2106 const char *module_address_lookup(unsigned long addr,
2107 unsigned long *size,
2108 unsigned long *offset,
2113 list_for_each_entry(mod, &modules, list) {
2114 if (within(addr, mod->module_init, mod->init_size)
2115 || within(addr, mod->module_core, mod->core_size)) {
2116 *modname = mod->name;
2117 return get_ksymbol(mod, addr, size, offset);
2123 struct module *module_get_kallsym(unsigned int symnum,
2124 unsigned long *value,
2130 down(&module_mutex);
2131 list_for_each_entry(mod, &modules, list) {
2132 if (symnum < mod->num_symtab) {
2133 *value = mod->symtab[symnum].st_value;
2134 *type = mod->symtab[symnum].st_info;
2136 mod->strtab + mod->symtab[symnum].st_name,
2141 symnum -= mod->num_symtab;
2147 static unsigned long mod_find_symname(struct module *mod, const char *name)
2151 for (i = 0; i < mod->num_symtab; i++)
2152 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2153 mod->symtab[i].st_info != 'U')
2154 return mod->symtab[i].st_value;
2158 /* Look for this name: can be of form module:name. */
2159 unsigned long module_kallsyms_lookup_name(const char *name)
2163 unsigned long ret = 0;
2165 /* Don't lock: we're in enough trouble already. */
2166 if ((colon = strchr(name, ':')) != NULL) {
2168 if ((mod = find_module(name)) != NULL)
2169 ret = mod_find_symname(mod, colon+1);
2172 list_for_each_entry(mod, &modules, list)
2173 if ((ret = mod_find_symname(mod, name)) != 0)
2178 #endif /* CONFIG_KALLSYMS */
2180 /* Called by the /proc file system to return a list of modules. */
2181 static void *m_start(struct seq_file *m, loff_t *pos)
2183 struct list_head *i;
2186 down(&module_mutex);
2187 list_for_each(i, &modules) {
2196 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2198 struct list_head *i = p;
2200 if (i->next == &modules)
2205 static void m_stop(struct seq_file *m, void *p)
2210 static int m_show(struct seq_file *m, void *p)
2212 struct module *mod = list_entry(p, struct module, list);
2213 seq_printf(m, "%s %lu",
2214 mod->name, mod->init_size + mod->core_size);
2215 print_unload_info(m, mod);
2217 /* Informative for users. */
2218 seq_printf(m, " %s",
2219 mod->state == MODULE_STATE_GOING ? "Unloading":
2220 mod->state == MODULE_STATE_COMING ? "Loading":
2222 /* Used by oprofile and other similar tools. */
2223 seq_printf(m, " 0x%p", mod->module_core);
2225 seq_printf(m, "\n");
2229 /* Format: modulename size refcount deps address
2231 Where refcount is a number or -, and deps is a comma-separated list
2234 struct seq_operations modules_op = {
2241 /* Given an address, look for it in the module exception tables. */
2242 const struct exception_table_entry *search_module_extables(unsigned long addr)
2244 unsigned long flags;
2245 const struct exception_table_entry *e = NULL;
2248 spin_lock_irqsave(&modlist_lock, flags);
2249 list_for_each_entry(mod, &modules, list) {
2250 if (mod->num_exentries == 0)
2253 e = search_extable(mod->extable,
2254 mod->extable + mod->num_exentries - 1,
2259 spin_unlock_irqrestore(&modlist_lock, flags);
2261 /* Now, if we found one, we are running inside it now, hence
2262 we cannot unload the module, hence no refcnt needed. */
2266 /* Is this a valid kernel address? We don't grab the lock: we are oopsing. */
2267 struct module *__module_text_address(unsigned long addr)
2271 list_for_each_entry(mod, &modules, list)
2272 if (within(addr, mod->module_init, mod->init_text_size)
2273 || within(addr, mod->module_core, mod->core_text_size))
2278 struct module *module_text_address(unsigned long addr)
2281 unsigned long flags;
2283 spin_lock_irqsave(&modlist_lock, flags);
2284 mod = __module_text_address(addr);
2285 spin_unlock_irqrestore(&modlist_lock, flags);
2290 /* Don't grab lock, we're oopsing. */
2291 void print_modules(void)
2295 printk("Modules linked in:");
2296 list_for_each_entry(mod, &modules, list)
2297 printk(" %s", mod->name);
2301 void module_add_driver(struct module *mod, struct device_driver *drv)
2306 /* Don't check return code; this call is idempotent */
2307 sysfs_create_link(&drv->kobj, &mod->mkobj.kobj, "module");
2309 EXPORT_SYMBOL(module_add_driver);
2311 void module_remove_driver(struct device_driver *drv)
2315 sysfs_remove_link(&drv->kobj, "module");
2317 EXPORT_SYMBOL(module_remove_driver);
2319 #ifdef CONFIG_MODVERSIONS
2320 /* Generate the signature for struct module here, too, for modversions. */
2321 void struct_module(struct module *mod) { return; }
2322 EXPORT_SYMBOL(struct_module);