[CPUFREQ] Fix the p4-clockmod N60 errata workaround.
[linux-2.6/mini2440.git] / kernel / module.c
blob5aad477ddc79c94567c02e9ee704f1eb71fa1b66
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>
46 #if 0
47 #define DEBUGP printk
48 #else
49 #define DEBUGP(fmt , a...)
50 #endif
52 #ifndef ARCH_SHF_SMALL
53 #define ARCH_SHF_SMALL 0
54 #endif
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)
71 int err;
72 down(&notify_mutex);
73 err = notifier_chain_register(&module_notify_list, nb);
74 up(&notify_mutex);
75 return err;
77 EXPORT_SYMBOL(register_module_notifier);
79 int unregister_module_notifier(struct notifier_block * nb)
81 int err;
82 down(&notify_mutex);
83 err = notifier_chain_unregister(&module_notify_list, nb);
84 up(&notify_mutex);
85 return err;
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)
93 return 0;
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)
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 unsigned long __start___kcrctab[];
130 extern const unsigned long __start___kcrctab_gpl[];
132 #ifndef CONFIG_MODVERSIONS
133 #define symversion(base, idx) NULL
134 #else
135 #define symversion(base, idx) ((base) ? ((base) + (idx)) : NULL)
136 #endif
138 /* Find a symbol, return value, crc and module which owns it */
139 static unsigned long __find_symbol(const char *name,
140 struct module **owner,
141 const unsigned long **crc,
142 int gplok)
144 struct module *mod;
145 unsigned int i;
147 /* Core kernel first. */
148 *owner = NULL;
149 for (i = 0; __start___ksymtab+i < __stop___ksymtab; i++) {
150 if (strcmp(__start___ksymtab[i].name, name) == 0) {
151 *crc = symversion(__start___kcrctab, i);
152 return __start___ksymtab[i].value;
155 if (gplok) {
156 for (i = 0; __start___ksymtab_gpl+i<__stop___ksymtab_gpl; i++)
157 if (strcmp(__start___ksymtab_gpl[i].name, name) == 0) {
158 *crc = symversion(__start___kcrctab_gpl, i);
159 return __start___ksymtab_gpl[i].value;
163 /* Now try modules. */
164 list_for_each_entry(mod, &modules, list) {
165 *owner = mod;
166 for (i = 0; i < mod->num_syms; i++)
167 if (strcmp(mod->syms[i].name, name) == 0) {
168 *crc = symversion(mod->crcs, i);
169 return mod->syms[i].value;
172 if (gplok) {
173 for (i = 0; i < mod->num_gpl_syms; i++) {
174 if (strcmp(mod->gpl_syms[i].name, name) == 0) {
175 *crc = symversion(mod->gpl_crcs, i);
176 return mod->gpl_syms[i].value;
181 DEBUGP("Failed to find symbol %s\n", name);
182 return 0;
185 /* Find a symbol in this elf symbol table */
186 static unsigned long find_local_symbol(Elf_Shdr *sechdrs,
187 unsigned int symindex,
188 const char *strtab,
189 const char *name)
191 unsigned int i;
192 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
194 /* Search (defined) internal symbols first. */
195 for (i = 1; i < sechdrs[symindex].sh_size/sizeof(*sym); i++) {
196 if (sym[i].st_shndx != SHN_UNDEF
197 && strcmp(name, strtab + sym[i].st_name) == 0)
198 return sym[i].st_value;
200 return 0;
203 /* Search for module by name: must hold module_mutex. */
204 static struct module *find_module(const char *name)
206 struct module *mod;
208 list_for_each_entry(mod, &modules, list) {
209 if (strcmp(mod->name, name) == 0)
210 return mod;
212 return NULL;
215 #ifdef CONFIG_SMP
216 /* Number of blocks used and allocated. */
217 static unsigned int pcpu_num_used, pcpu_num_allocated;
218 /* Size of each block. -ve means used. */
219 static int *pcpu_size;
221 static int split_block(unsigned int i, unsigned short size)
223 /* Reallocation required? */
224 if (pcpu_num_used + 1 > pcpu_num_allocated) {
225 int *new = kmalloc(sizeof(new[0]) * pcpu_num_allocated*2,
226 GFP_KERNEL);
227 if (!new)
228 return 0;
230 memcpy(new, pcpu_size, sizeof(new[0])*pcpu_num_allocated);
231 pcpu_num_allocated *= 2;
232 kfree(pcpu_size);
233 pcpu_size = new;
236 /* Insert a new subblock */
237 memmove(&pcpu_size[i+1], &pcpu_size[i],
238 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
239 pcpu_num_used++;
241 pcpu_size[i+1] -= size;
242 pcpu_size[i] = size;
243 return 1;
246 static inline unsigned int block_size(int val)
248 if (val < 0)
249 return -val;
250 return val;
253 /* Created by linker magic */
254 extern char __per_cpu_start[], __per_cpu_end[];
256 static void *percpu_modalloc(unsigned long size, unsigned long align,
257 const char *name)
259 unsigned long extra;
260 unsigned int i;
261 void *ptr;
263 if (align > SMP_CACHE_BYTES) {
264 printk(KERN_WARNING "%s: per-cpu alignment %li > %i\n",
265 name, align, SMP_CACHE_BYTES);
266 align = SMP_CACHE_BYTES;
269 ptr = __per_cpu_start;
270 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
271 /* Extra for alignment requirement. */
272 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
273 BUG_ON(i == 0 && extra != 0);
275 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
276 continue;
278 /* Transfer extra to previous block. */
279 if (pcpu_size[i-1] < 0)
280 pcpu_size[i-1] -= extra;
281 else
282 pcpu_size[i-1] += extra;
283 pcpu_size[i] -= extra;
284 ptr += extra;
286 /* Split block if warranted */
287 if (pcpu_size[i] - size > sizeof(unsigned long))
288 if (!split_block(i, size))
289 return NULL;
291 /* Mark allocated */
292 pcpu_size[i] = -pcpu_size[i];
293 return ptr;
296 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
297 size);
298 return NULL;
301 static void percpu_modfree(void *freeme)
303 unsigned int i;
304 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
306 /* First entry is core kernel percpu data. */
307 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
308 if (ptr == freeme) {
309 pcpu_size[i] = -pcpu_size[i];
310 goto free;
313 BUG();
315 free:
316 /* Merge with previous? */
317 if (pcpu_size[i-1] >= 0) {
318 pcpu_size[i-1] += pcpu_size[i];
319 pcpu_num_used--;
320 memmove(&pcpu_size[i], &pcpu_size[i+1],
321 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
322 i--;
324 /* Merge with next? */
325 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
326 pcpu_size[i] += pcpu_size[i+1];
327 pcpu_num_used--;
328 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
329 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
333 static unsigned int find_pcpusec(Elf_Ehdr *hdr,
334 Elf_Shdr *sechdrs,
335 const char *secstrings)
337 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
340 static int percpu_modinit(void)
342 pcpu_num_used = 2;
343 pcpu_num_allocated = 2;
344 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
345 GFP_KERNEL);
346 /* Static in-kernel percpu data (used). */
347 pcpu_size[0] = -ALIGN(__per_cpu_end-__per_cpu_start, SMP_CACHE_BYTES);
348 /* Free room. */
349 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
350 if (pcpu_size[1] < 0) {
351 printk(KERN_ERR "No per-cpu room for modules.\n");
352 pcpu_num_used = 1;
355 return 0;
357 __initcall(percpu_modinit);
358 #else /* ... !CONFIG_SMP */
359 static inline void *percpu_modalloc(unsigned long size, unsigned long align,
360 const char *name)
362 return NULL;
364 static inline void percpu_modfree(void *pcpuptr)
366 BUG();
368 static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
369 Elf_Shdr *sechdrs,
370 const char *secstrings)
372 return 0;
374 static inline void percpu_modcopy(void *pcpudst, const void *src,
375 unsigned long size)
377 /* pcpusec should be 0, and size of that section should be 0. */
378 BUG_ON(size != 0);
380 #endif /* CONFIG_SMP */
382 #ifdef CONFIG_MODULE_UNLOAD
383 #define MODINFO_ATTR(field) \
384 static void setup_modinfo_##field(struct module *mod, const char *s) \
386 mod->field = kstrdup(s, GFP_KERNEL); \
388 static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
389 struct module *mod, char *buffer) \
391 return sprintf(buffer, "%s\n", mod->field); \
393 static int modinfo_##field##_exists(struct module *mod) \
395 return mod->field != NULL; \
397 static void free_modinfo_##field(struct module *mod) \
399 kfree(mod->field); \
400 mod->field = NULL; \
402 static struct module_attribute modinfo_##field = { \
403 .attr = { .name = __stringify(field), .mode = 0444, \
404 .owner = THIS_MODULE }, \
405 .show = show_modinfo_##field, \
406 .setup = setup_modinfo_##field, \
407 .test = modinfo_##field##_exists, \
408 .free = free_modinfo_##field, \
411 MODINFO_ATTR(version);
412 MODINFO_ATTR(srcversion);
414 static struct module_attribute *modinfo_attrs[] = {
415 &modinfo_version,
416 &modinfo_srcversion,
417 NULL,
420 /* Init the unload section of the module. */
421 static void module_unload_init(struct module *mod)
423 unsigned int i;
425 INIT_LIST_HEAD(&mod->modules_which_use_me);
426 for (i = 0; i < NR_CPUS; i++)
427 local_set(&mod->ref[i].count, 0);
428 /* Hold reference count during initialization. */
429 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
430 /* Backwards compatibility macros put refcount during init. */
431 mod->waiter = current;
434 /* modules using other modules */
435 struct module_use
437 struct list_head list;
438 struct module *module_which_uses;
441 /* Does a already use b? */
442 static int already_uses(struct module *a, struct module *b)
444 struct module_use *use;
446 list_for_each_entry(use, &b->modules_which_use_me, list) {
447 if (use->module_which_uses == a) {
448 DEBUGP("%s uses %s!\n", a->name, b->name);
449 return 1;
452 DEBUGP("%s does not use %s!\n", a->name, b->name);
453 return 0;
456 /* Module a uses b */
457 static int use_module(struct module *a, struct module *b)
459 struct module_use *use;
460 if (b == NULL || already_uses(a, b)) return 1;
462 if (!strong_try_module_get(b))
463 return 0;
465 DEBUGP("Allocating new usage for %s.\n", a->name);
466 use = kmalloc(sizeof(*use), GFP_ATOMIC);
467 if (!use) {
468 printk("%s: out of memory loading\n", a->name);
469 module_put(b);
470 return 0;
473 use->module_which_uses = a;
474 list_add(&use->list, &b->modules_which_use_me);
475 return 1;
478 /* Clear the unload stuff of the module. */
479 static void module_unload_free(struct module *mod)
481 struct module *i;
483 list_for_each_entry(i, &modules, list) {
484 struct module_use *use;
486 list_for_each_entry(use, &i->modules_which_use_me, list) {
487 if (use->module_which_uses == mod) {
488 DEBUGP("%s unusing %s\n", mod->name, i->name);
489 module_put(i);
490 list_del(&use->list);
491 kfree(use);
492 /* There can be at most one match. */
493 break;
499 #ifdef CONFIG_MODULE_FORCE_UNLOAD
500 static inline int try_force_unload(unsigned int flags)
502 int ret = (flags & O_TRUNC);
503 if (ret)
504 add_taint(TAINT_FORCED_RMMOD);
505 return ret;
507 #else
508 static inline int try_force_unload(unsigned int flags)
510 return 0;
512 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
514 struct stopref
516 struct module *mod;
517 int flags;
518 int *forced;
521 /* Whole machine is stopped with interrupts off when this runs. */
522 static int __try_stop_module(void *_sref)
524 struct stopref *sref = _sref;
526 /* If it's not unused, quit unless we are told to block. */
527 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
528 if (!(*sref->forced = try_force_unload(sref->flags)))
529 return -EWOULDBLOCK;
532 /* Mark it as dying. */
533 sref->mod->state = MODULE_STATE_GOING;
534 return 0;
537 static int try_stop_module(struct module *mod, int flags, int *forced)
539 struct stopref sref = { mod, flags, forced };
541 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
544 unsigned int module_refcount(struct module *mod)
546 unsigned int i, total = 0;
548 for (i = 0; i < NR_CPUS; i++)
549 total += local_read(&mod->ref[i].count);
550 return total;
552 EXPORT_SYMBOL(module_refcount);
554 /* This exists whether we can unload or not */
555 static void free_module(struct module *mod);
557 static void wait_for_zero_refcount(struct module *mod)
559 /* Since we might sleep for some time, drop the semaphore first */
560 up(&module_mutex);
561 for (;;) {
562 DEBUGP("Looking at refcount...\n");
563 set_current_state(TASK_UNINTERRUPTIBLE);
564 if (module_refcount(mod) == 0)
565 break;
566 schedule();
568 current->state = TASK_RUNNING;
569 down(&module_mutex);
572 asmlinkage long
573 sys_delete_module(const char __user *name_user, unsigned int flags)
575 struct module *mod;
576 char name[MODULE_NAME_LEN];
577 int ret, forced = 0;
579 if (!capable(CAP_SYS_MODULE))
580 return -EPERM;
582 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
583 return -EFAULT;
584 name[MODULE_NAME_LEN-1] = '\0';
586 if (down_interruptible(&module_mutex) != 0)
587 return -EINTR;
589 mod = find_module(name);
590 if (!mod) {
591 ret = -ENOENT;
592 goto out;
595 if (!list_empty(&mod->modules_which_use_me)) {
596 /* Other modules depend on us: get rid of them first. */
597 ret = -EWOULDBLOCK;
598 goto out;
601 /* Doing init or already dying? */
602 if (mod->state != MODULE_STATE_LIVE) {
603 /* FIXME: if (force), slam module count and wake up
604 waiter --RR */
605 DEBUGP("%s already dying\n", mod->name);
606 ret = -EBUSY;
607 goto out;
610 /* If it has an init func, it must have an exit func to unload */
611 if ((mod->init != NULL && mod->exit == NULL)
612 || mod->unsafe) {
613 forced = try_force_unload(flags);
614 if (!forced) {
615 /* This module can't be removed */
616 ret = -EBUSY;
617 goto out;
621 /* Set this up before setting mod->state */
622 mod->waiter = current;
624 /* Stop the machine so refcounts can't move and disable module. */
625 ret = try_stop_module(mod, flags, &forced);
626 if (ret != 0)
627 goto out;
629 /* Never wait if forced. */
630 if (!forced && module_refcount(mod) != 0)
631 wait_for_zero_refcount(mod);
633 /* Final destruction now noone is using it. */
634 if (mod->exit != NULL) {
635 up(&module_mutex);
636 mod->exit();
637 down(&module_mutex);
639 free_module(mod);
641 out:
642 up(&module_mutex);
643 return ret;
646 static void print_unload_info(struct seq_file *m, struct module *mod)
648 struct module_use *use;
649 int printed_something = 0;
651 seq_printf(m, " %u ", module_refcount(mod));
653 /* Always include a trailing , so userspace can differentiate
654 between this and the old multi-field proc format. */
655 list_for_each_entry(use, &mod->modules_which_use_me, list) {
656 printed_something = 1;
657 seq_printf(m, "%s,", use->module_which_uses->name);
660 if (mod->unsafe) {
661 printed_something = 1;
662 seq_printf(m, "[unsafe],");
665 if (mod->init != NULL && mod->exit == NULL) {
666 printed_something = 1;
667 seq_printf(m, "[permanent],");
670 if (!printed_something)
671 seq_printf(m, "-");
674 void __symbol_put(const char *symbol)
676 struct module *owner;
677 unsigned long flags;
678 const unsigned long *crc;
680 spin_lock_irqsave(&modlist_lock, flags);
681 if (!__find_symbol(symbol, &owner, &crc, 1))
682 BUG();
683 module_put(owner);
684 spin_unlock_irqrestore(&modlist_lock, flags);
686 EXPORT_SYMBOL(__symbol_put);
688 void symbol_put_addr(void *addr)
690 unsigned long flags;
692 spin_lock_irqsave(&modlist_lock, flags);
693 if (!kernel_text_address((unsigned long)addr))
694 BUG();
696 module_put(module_text_address((unsigned long)addr));
697 spin_unlock_irqrestore(&modlist_lock, flags);
699 EXPORT_SYMBOL_GPL(symbol_put_addr);
701 static ssize_t show_refcnt(struct module_attribute *mattr,
702 struct module *mod, char *buffer)
704 /* sysfs holds a reference */
705 return sprintf(buffer, "%u\n", module_refcount(mod)-1);
708 static struct module_attribute refcnt = {
709 .attr = { .name = "refcnt", .mode = 0444, .owner = THIS_MODULE },
710 .show = show_refcnt,
713 #else /* !CONFIG_MODULE_UNLOAD */
714 static void print_unload_info(struct seq_file *m, struct module *mod)
716 /* We don't know the usage count, or what modules are using. */
717 seq_printf(m, " - -");
720 static inline void module_unload_free(struct module *mod)
724 static inline int use_module(struct module *a, struct module *b)
726 return strong_try_module_get(b);
729 static inline void module_unload_init(struct module *mod)
732 #endif /* CONFIG_MODULE_UNLOAD */
734 #ifdef CONFIG_OBSOLETE_MODPARM
735 /* Bounds checking done below */
736 static int obsparm_copy_string(const char *val, struct kernel_param *kp)
738 strcpy(kp->arg, val);
739 return 0;
742 static int set_obsolete(const char *val, struct kernel_param *kp)
744 unsigned int min, max;
745 unsigned int size, maxsize;
746 int dummy;
747 char *endp;
748 const char *p;
749 struct obsolete_modparm *obsparm = kp->arg;
751 if (!val) {
752 printk(KERN_ERR "Parameter %s needs an argument\n", kp->name);
753 return -EINVAL;
756 /* type is: [min[-max]]{b,h,i,l,s} */
757 p = obsparm->type;
758 min = simple_strtol(p, &endp, 10);
759 if (endp == obsparm->type)
760 min = max = 1;
761 else if (*endp == '-') {
762 p = endp+1;
763 max = simple_strtol(p, &endp, 10);
764 } else
765 max = min;
766 switch (*endp) {
767 case 'b':
768 return param_array(kp->name, val, min, max, obsparm->addr,
769 1, param_set_byte, &dummy);
770 case 'h':
771 return param_array(kp->name, val, min, max, obsparm->addr,
772 sizeof(short), param_set_short, &dummy);
773 case 'i':
774 return param_array(kp->name, val, min, max, obsparm->addr,
775 sizeof(int), param_set_int, &dummy);
776 case 'l':
777 return param_array(kp->name, val, min, max, obsparm->addr,
778 sizeof(long), param_set_long, &dummy);
779 case 's':
780 return param_array(kp->name, val, min, max, obsparm->addr,
781 sizeof(char *), param_set_charp, &dummy);
783 case 'c':
784 /* Undocumented: 1-5c50 means 1-5 strings of up to 49 chars,
785 and the decl is "char xxx[5][50];" */
786 p = endp+1;
787 maxsize = simple_strtol(p, &endp, 10);
788 /* We check lengths here (yes, this is a hack). */
789 p = val;
790 while (p[size = strcspn(p, ",")]) {
791 if (size >= maxsize)
792 goto oversize;
793 p += size+1;
795 if (size >= maxsize)
796 goto oversize;
797 return param_array(kp->name, val, min, max, obsparm->addr,
798 maxsize, obsparm_copy_string, &dummy);
800 printk(KERN_ERR "Unknown obsolete parameter type %s\n", obsparm->type);
801 return -EINVAL;
802 oversize:
803 printk(KERN_ERR
804 "Parameter %s doesn't fit in %u chars.\n", kp->name, maxsize);
805 return -EINVAL;
808 static int obsolete_params(const char *name,
809 char *args,
810 struct obsolete_modparm obsparm[],
811 unsigned int num,
812 Elf_Shdr *sechdrs,
813 unsigned int symindex,
814 const char *strtab)
816 struct kernel_param *kp;
817 unsigned int i;
818 int ret;
820 kp = kmalloc(sizeof(kp[0]) * num, GFP_KERNEL);
821 if (!kp)
822 return -ENOMEM;
824 for (i = 0; i < num; i++) {
825 char sym_name[128 + sizeof(MODULE_SYMBOL_PREFIX)];
827 snprintf(sym_name, sizeof(sym_name), "%s%s",
828 MODULE_SYMBOL_PREFIX, obsparm[i].name);
830 kp[i].name = obsparm[i].name;
831 kp[i].perm = 000;
832 kp[i].set = set_obsolete;
833 kp[i].get = NULL;
834 obsparm[i].addr
835 = (void *)find_local_symbol(sechdrs, symindex, strtab,
836 sym_name);
837 if (!obsparm[i].addr) {
838 printk("%s: falsely claims to have parameter %s\n",
839 name, obsparm[i].name);
840 ret = -EINVAL;
841 goto out;
843 kp[i].arg = &obsparm[i];
846 ret = parse_args(name, args, kp, num, NULL);
847 out:
848 kfree(kp);
849 return ret;
851 #else
852 static int obsolete_params(const char *name,
853 char *args,
854 struct obsolete_modparm obsparm[],
855 unsigned int num,
856 Elf_Shdr *sechdrs,
857 unsigned int symindex,
858 const char *strtab)
860 if (num != 0)
861 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
862 name);
863 return 0;
865 #endif /* CONFIG_OBSOLETE_MODPARM */
867 static const char vermagic[] = VERMAGIC_STRING;
869 #ifdef CONFIG_MODVERSIONS
870 static int check_version(Elf_Shdr *sechdrs,
871 unsigned int versindex,
872 const char *symname,
873 struct module *mod,
874 const unsigned long *crc)
876 unsigned int i, num_versions;
877 struct modversion_info *versions;
879 /* Exporting module didn't supply crcs? OK, we're already tainted. */
880 if (!crc)
881 return 1;
883 versions = (void *) sechdrs[versindex].sh_addr;
884 num_versions = sechdrs[versindex].sh_size
885 / sizeof(struct modversion_info);
887 for (i = 0; i < num_versions; i++) {
888 if (strcmp(versions[i].name, symname) != 0)
889 continue;
891 if (versions[i].crc == *crc)
892 return 1;
893 printk("%s: disagrees about version of symbol %s\n",
894 mod->name, symname);
895 DEBUGP("Found checksum %lX vs module %lX\n",
896 *crc, versions[i].crc);
897 return 0;
899 /* Not in module's version table. OK, but that taints the kernel. */
900 if (!(tainted & TAINT_FORCED_MODULE)) {
901 printk("%s: no version for \"%s\" found: kernel tainted.\n",
902 mod->name, symname);
903 add_taint(TAINT_FORCED_MODULE);
905 return 1;
908 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
909 unsigned int versindex,
910 struct module *mod)
912 const unsigned long *crc;
913 struct module *owner;
915 if (!__find_symbol("struct_module", &owner, &crc, 1))
916 BUG();
917 return check_version(sechdrs, versindex, "struct_module", mod,
918 crc);
921 /* First part is kernel version, which we ignore. */
922 static inline int same_magic(const char *amagic, const char *bmagic)
924 amagic += strcspn(amagic, " ");
925 bmagic += strcspn(bmagic, " ");
926 return strcmp(amagic, bmagic) == 0;
928 #else
929 static inline int check_version(Elf_Shdr *sechdrs,
930 unsigned int versindex,
931 const char *symname,
932 struct module *mod,
933 const unsigned long *crc)
935 return 1;
938 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
939 unsigned int versindex,
940 struct module *mod)
942 return 1;
945 static inline int same_magic(const char *amagic, const char *bmagic)
947 return strcmp(amagic, bmagic) == 0;
949 #endif /* CONFIG_MODVERSIONS */
951 /* Resolve a symbol for this module. I.e. if we find one, record usage.
952 Must be holding module_mutex. */
953 static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
954 unsigned int versindex,
955 const char *name,
956 struct module *mod)
958 struct module *owner;
959 unsigned long ret;
960 const unsigned long *crc;
962 ret = __find_symbol(name, &owner, &crc, mod->license_gplok);
963 if (ret) {
964 /* use_module can fail due to OOM, or module unloading */
965 if (!check_version(sechdrs, versindex, name, mod, crc) ||
966 !use_module(mod, owner))
967 ret = 0;
969 return ret;
974 * /sys/module/foo/sections stuff
975 * J. Corbet <corbet@lwn.net>
977 #ifdef CONFIG_KALLSYMS
978 static ssize_t module_sect_show(struct module_attribute *mattr,
979 struct module *mod, char *buf)
981 struct module_sect_attr *sattr =
982 container_of(mattr, struct module_sect_attr, mattr);
983 return sprintf(buf, "0x%lx\n", sattr->address);
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 if (! (sect_attrs = kmalloc(size[0] + size[1], GFP_KERNEL)))
1003 return;
1005 /* Setup section attributes. */
1006 sect_attrs->grp.name = "sections";
1007 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1009 sattr = &sect_attrs->attrs[0];
1010 gattr = &sect_attrs->grp.attrs[0];
1011 for (i = 0; i < nsect; i++) {
1012 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1013 continue;
1014 sattr->address = sechdrs[i].sh_addr;
1015 strlcpy(sattr->name, secstrings + sechdrs[i].sh_name,
1016 MODULE_SECT_NAME_LEN);
1017 sattr->mattr.show = module_sect_show;
1018 sattr->mattr.store = NULL;
1019 sattr->mattr.attr.name = sattr->name;
1020 sattr->mattr.attr.owner = mod;
1021 sattr->mattr.attr.mode = S_IRUGO;
1022 *(gattr++) = &(sattr++)->mattr.attr;
1024 *gattr = NULL;
1026 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1027 goto out;
1029 mod->sect_attrs = sect_attrs;
1030 return;
1031 out:
1032 kfree(sect_attrs);
1035 static void remove_sect_attrs(struct module *mod)
1037 if (mod->sect_attrs) {
1038 sysfs_remove_group(&mod->mkobj.kobj,
1039 &mod->sect_attrs->grp);
1040 /* We are positive that no one is using any sect attrs
1041 * at this point. Deallocate immediately. */
1042 kfree(mod->sect_attrs);
1043 mod->sect_attrs = NULL;
1048 #else
1049 static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1050 char *sectstrings, Elf_Shdr *sechdrs)
1054 static inline void remove_sect_attrs(struct module *mod)
1057 #endif /* CONFIG_KALLSYMS */
1060 #ifdef CONFIG_MODULE_UNLOAD
1061 static inline int module_add_refcnt_attr(struct module *mod)
1063 return sysfs_create_file(&mod->mkobj.kobj, &refcnt.attr);
1065 static void module_remove_refcnt_attr(struct module *mod)
1067 return sysfs_remove_file(&mod->mkobj.kobj, &refcnt.attr);
1069 #else
1070 static inline int module_add_refcnt_attr(struct module *mod)
1072 return 0;
1074 static void module_remove_refcnt_attr(struct module *mod)
1077 #endif
1079 #ifdef CONFIG_MODULE_UNLOAD
1080 static int module_add_modinfo_attrs(struct module *mod)
1082 struct module_attribute *attr;
1083 int error = 0;
1084 int i;
1086 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1087 if (!attr->test ||
1088 (attr->test && attr->test(mod)))
1089 error = sysfs_create_file(&mod->mkobj.kobj,&attr->attr);
1091 return error;
1094 static void module_remove_modinfo_attrs(struct module *mod)
1096 struct module_attribute *attr;
1097 int i;
1099 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1100 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
1101 attr->free(mod);
1104 #endif
1106 static int mod_sysfs_setup(struct module *mod,
1107 struct kernel_param *kparam,
1108 unsigned int num_params)
1110 int err;
1112 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1113 err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
1114 if (err)
1115 goto out;
1116 kobj_set_kset_s(&mod->mkobj, module_subsys);
1117 mod->mkobj.mod = mod;
1118 err = kobject_register(&mod->mkobj.kobj);
1119 if (err)
1120 goto out;
1122 err = module_add_refcnt_attr(mod);
1123 if (err)
1124 goto out_unreg;
1126 err = module_param_sysfs_setup(mod, kparam, num_params);
1127 if (err)
1128 goto out_unreg;
1130 #ifdef CONFIG_MODULE_UNLOAD
1131 err = module_add_modinfo_attrs(mod);
1132 if (err)
1133 goto out_unreg;
1134 #endif
1136 return 0;
1138 out_unreg:
1139 kobject_unregister(&mod->mkobj.kobj);
1140 out:
1141 return err;
1144 static void mod_kobject_remove(struct module *mod)
1146 #ifdef CONFIG_MODULE_UNLOAD
1147 module_remove_modinfo_attrs(mod);
1148 #endif
1149 module_remove_refcnt_attr(mod);
1150 module_param_sysfs_remove(mod);
1152 kobject_unregister(&mod->mkobj.kobj);
1156 * unlink the module with the whole machine is stopped with interrupts off
1157 * - this defends against kallsyms not taking locks
1159 static int __unlink_module(void *_mod)
1161 struct module *mod = _mod;
1162 list_del(&mod->list);
1163 return 0;
1166 /* Free a module, remove from lists, etc (must hold module mutex). */
1167 static void free_module(struct module *mod)
1169 /* Delete from various lists */
1170 stop_machine_run(__unlink_module, mod, NR_CPUS);
1171 remove_sect_attrs(mod);
1172 mod_kobject_remove(mod);
1174 /* Arch-specific cleanup. */
1175 module_arch_cleanup(mod);
1177 /* Module unload stuff */
1178 module_unload_free(mod);
1180 /* This may be NULL, but that's OK */
1181 module_free(mod, mod->module_init);
1182 kfree(mod->args);
1183 if (mod->percpu)
1184 percpu_modfree(mod->percpu);
1186 /* Finally, free the core (containing the module structure) */
1187 module_free(mod, mod->module_core);
1190 void *__symbol_get(const char *symbol)
1192 struct module *owner;
1193 unsigned long value, flags;
1194 const unsigned long *crc;
1196 spin_lock_irqsave(&modlist_lock, flags);
1197 value = __find_symbol(symbol, &owner, &crc, 1);
1198 if (value && !strong_try_module_get(owner))
1199 value = 0;
1200 spin_unlock_irqrestore(&modlist_lock, flags);
1202 return (void *)value;
1204 EXPORT_SYMBOL_GPL(__symbol_get);
1207 * Ensure that an exported symbol [global namespace] does not already exist
1208 * in the Kernel or in some other modules exported symbol table.
1210 static int verify_export_symbols(struct module *mod)
1212 const char *name = NULL;
1213 unsigned long i, ret = 0;
1214 struct module *owner;
1215 const unsigned long *crc;
1217 for (i = 0; i < mod->num_syms; i++)
1218 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
1219 name = mod->syms[i].name;
1220 ret = -ENOEXEC;
1221 goto dup;
1224 for (i = 0; i < mod->num_gpl_syms; i++)
1225 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
1226 name = mod->gpl_syms[i].name;
1227 ret = -ENOEXEC;
1228 goto dup;
1231 dup:
1232 if (ret)
1233 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1234 mod->name, name, module_name(owner));
1236 return ret;
1239 /* Change all symbols so that sh_value encodes the pointer directly. */
1240 static int simplify_symbols(Elf_Shdr *sechdrs,
1241 unsigned int symindex,
1242 const char *strtab,
1243 unsigned int versindex,
1244 unsigned int pcpuindex,
1245 struct module *mod)
1247 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1248 unsigned long secbase;
1249 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1250 int ret = 0;
1252 for (i = 1; i < n; i++) {
1253 switch (sym[i].st_shndx) {
1254 case SHN_COMMON:
1255 /* We compiled with -fno-common. These are not
1256 supposed to happen. */
1257 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1258 printk("%s: please compile with -fno-common\n",
1259 mod->name);
1260 ret = -ENOEXEC;
1261 break;
1263 case SHN_ABS:
1264 /* Don't need to do anything */
1265 DEBUGP("Absolute symbol: 0x%08lx\n",
1266 (long)sym[i].st_value);
1267 break;
1269 case SHN_UNDEF:
1270 sym[i].st_value
1271 = resolve_symbol(sechdrs, versindex,
1272 strtab + sym[i].st_name, mod);
1274 /* Ok if resolved. */
1275 if (sym[i].st_value != 0)
1276 break;
1277 /* Ok if weak. */
1278 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1279 break;
1281 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1282 mod->name, strtab + sym[i].st_name);
1283 ret = -ENOENT;
1284 break;
1286 default:
1287 /* Divert to percpu allocation if a percpu var. */
1288 if (sym[i].st_shndx == pcpuindex)
1289 secbase = (unsigned long)mod->percpu;
1290 else
1291 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1292 sym[i].st_value += secbase;
1293 break;
1297 return ret;
1300 /* Update size with this section: return offset. */
1301 static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1303 long ret;
1305 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1306 *size = ret + sechdr->sh_size;
1307 return ret;
1310 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1311 might -- code, read-only data, read-write data, small data. Tally
1312 sizes, and place the offsets into sh_entsize fields: high bit means it
1313 belongs in init. */
1314 static void layout_sections(struct module *mod,
1315 const Elf_Ehdr *hdr,
1316 Elf_Shdr *sechdrs,
1317 const char *secstrings)
1319 static unsigned long const masks[][2] = {
1320 /* NOTE: all executable code must be the first section
1321 * in this array; otherwise modify the text_size
1322 * finder in the two loops below */
1323 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1324 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1325 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1326 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1328 unsigned int m, i;
1330 for (i = 0; i < hdr->e_shnum; i++)
1331 sechdrs[i].sh_entsize = ~0UL;
1333 DEBUGP("Core section allocation order:\n");
1334 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1335 for (i = 0; i < hdr->e_shnum; ++i) {
1336 Elf_Shdr *s = &sechdrs[i];
1338 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1339 || (s->sh_flags & masks[m][1])
1340 || s->sh_entsize != ~0UL
1341 || strncmp(secstrings + s->sh_name,
1342 ".init", 5) == 0)
1343 continue;
1344 s->sh_entsize = get_offset(&mod->core_size, s);
1345 DEBUGP("\t%s\n", secstrings + s->sh_name);
1347 if (m == 0)
1348 mod->core_text_size = mod->core_size;
1351 DEBUGP("Init section allocation order:\n");
1352 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1353 for (i = 0; i < hdr->e_shnum; ++i) {
1354 Elf_Shdr *s = &sechdrs[i];
1356 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1357 || (s->sh_flags & masks[m][1])
1358 || s->sh_entsize != ~0UL
1359 || strncmp(secstrings + s->sh_name,
1360 ".init", 5) != 0)
1361 continue;
1362 s->sh_entsize = (get_offset(&mod->init_size, s)
1363 | INIT_OFFSET_MASK);
1364 DEBUGP("\t%s\n", secstrings + s->sh_name);
1366 if (m == 0)
1367 mod->init_text_size = mod->init_size;
1371 static inline int license_is_gpl_compatible(const char *license)
1373 return (strcmp(license, "GPL") == 0
1374 || strcmp(license, "GPL v2") == 0
1375 || strcmp(license, "GPL and additional rights") == 0
1376 || strcmp(license, "Dual BSD/GPL") == 0
1377 || strcmp(license, "Dual MPL/GPL") == 0);
1380 static void set_license(struct module *mod, const char *license)
1382 if (!license)
1383 license = "unspecified";
1385 mod->license_gplok = license_is_gpl_compatible(license);
1386 if (!mod->license_gplok && !(tainted & TAINT_PROPRIETARY_MODULE)) {
1387 printk(KERN_WARNING "%s: module license '%s' taints kernel.\n",
1388 mod->name, license);
1389 add_taint(TAINT_PROPRIETARY_MODULE);
1393 /* Parse tag=value strings from .modinfo section */
1394 static char *next_string(char *string, unsigned long *secsize)
1396 /* Skip non-zero chars */
1397 while (string[0]) {
1398 string++;
1399 if ((*secsize)-- <= 1)
1400 return NULL;
1403 /* Skip any zero padding. */
1404 while (!string[0]) {
1405 string++;
1406 if ((*secsize)-- <= 1)
1407 return NULL;
1409 return string;
1412 static char *get_modinfo(Elf_Shdr *sechdrs,
1413 unsigned int info,
1414 const char *tag)
1416 char *p;
1417 unsigned int taglen = strlen(tag);
1418 unsigned long size = sechdrs[info].sh_size;
1420 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1421 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1422 return p + taglen + 1;
1424 return NULL;
1427 #ifdef CONFIG_MODULE_UNLOAD
1428 static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1429 unsigned int infoindex)
1431 struct module_attribute *attr;
1432 int i;
1434 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1435 if (attr->setup)
1436 attr->setup(mod,
1437 get_modinfo(sechdrs,
1438 infoindex,
1439 attr->attr.name));
1442 #endif
1444 #ifdef CONFIG_KALLSYMS
1445 int is_exported(const char *name, const struct module *mod)
1447 unsigned int i;
1449 if (!mod) {
1450 for (i = 0; __start___ksymtab+i < __stop___ksymtab; i++)
1451 if (strcmp(__start___ksymtab[i].name, name) == 0)
1452 return 1;
1453 return 0;
1455 for (i = 0; i < mod->num_syms; i++)
1456 if (strcmp(mod->syms[i].name, name) == 0)
1457 return 1;
1458 return 0;
1461 /* As per nm */
1462 static char elf_type(const Elf_Sym *sym,
1463 Elf_Shdr *sechdrs,
1464 const char *secstrings,
1465 struct module *mod)
1467 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1468 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1469 return 'v';
1470 else
1471 return 'w';
1473 if (sym->st_shndx == SHN_UNDEF)
1474 return 'U';
1475 if (sym->st_shndx == SHN_ABS)
1476 return 'a';
1477 if (sym->st_shndx >= SHN_LORESERVE)
1478 return '?';
1479 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1480 return 't';
1481 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1482 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1483 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1484 return 'r';
1485 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1486 return 'g';
1487 else
1488 return 'd';
1490 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1491 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1492 return 's';
1493 else
1494 return 'b';
1496 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1497 ".debug", strlen(".debug")) == 0)
1498 return 'n';
1499 return '?';
1502 static void add_kallsyms(struct module *mod,
1503 Elf_Shdr *sechdrs,
1504 unsigned int symindex,
1505 unsigned int strindex,
1506 const char *secstrings)
1508 unsigned int i;
1510 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1511 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1512 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1514 /* Set types up while we still have access to sections. */
1515 for (i = 0; i < mod->num_symtab; i++)
1516 mod->symtab[i].st_info
1517 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1519 #else
1520 static inline void add_kallsyms(struct module *mod,
1521 Elf_Shdr *sechdrs,
1522 unsigned int symindex,
1523 unsigned int strindex,
1524 const char *secstrings)
1527 #endif /* CONFIG_KALLSYMS */
1529 /* Allocate and load the module: note that size of section 0 is always
1530 zero, and we rely on this for optional sections. */
1531 static struct module *load_module(void __user *umod,
1532 unsigned long len,
1533 const char __user *uargs)
1535 Elf_Ehdr *hdr;
1536 Elf_Shdr *sechdrs;
1537 char *secstrings, *args, *modmagic, *strtab = NULL;
1538 unsigned int i, symindex = 0, strindex = 0, setupindex, exindex,
1539 exportindex, modindex, obsparmindex, infoindex, gplindex,
1540 crcindex, gplcrcindex, versindex, pcpuindex;
1541 long arglen;
1542 struct module *mod;
1543 long err = 0;
1544 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1545 struct exception_table_entry *extable;
1546 mm_segment_t old_fs;
1548 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1549 umod, len, uargs);
1550 if (len < sizeof(*hdr))
1551 return ERR_PTR(-ENOEXEC);
1553 /* Suck in entire file: we'll want most of it. */
1554 /* vmalloc barfs on "unusual" numbers. Check here */
1555 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1556 return ERR_PTR(-ENOMEM);
1557 if (copy_from_user(hdr, umod, len) != 0) {
1558 err = -EFAULT;
1559 goto free_hdr;
1562 /* Sanity checks against insmoding binaries or wrong arch,
1563 weird elf version */
1564 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1565 || hdr->e_type != ET_REL
1566 || !elf_check_arch(hdr)
1567 || hdr->e_shentsize != sizeof(*sechdrs)) {
1568 err = -ENOEXEC;
1569 goto free_hdr;
1572 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1573 goto truncated;
1575 /* Convenience variables */
1576 sechdrs = (void *)hdr + hdr->e_shoff;
1577 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1578 sechdrs[0].sh_addr = 0;
1580 for (i = 1; i < hdr->e_shnum; i++) {
1581 if (sechdrs[i].sh_type != SHT_NOBITS
1582 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1583 goto truncated;
1585 /* Mark all sections sh_addr with their address in the
1586 temporary image. */
1587 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1589 /* Internal symbols and strings. */
1590 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1591 symindex = i;
1592 strindex = sechdrs[i].sh_link;
1593 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1595 #ifndef CONFIG_MODULE_UNLOAD
1596 /* Don't load .exit sections */
1597 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1598 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1599 #endif
1602 modindex = find_sec(hdr, sechdrs, secstrings,
1603 ".gnu.linkonce.this_module");
1604 if (!modindex) {
1605 printk(KERN_WARNING "No module found in object\n");
1606 err = -ENOEXEC;
1607 goto free_hdr;
1609 mod = (void *)sechdrs[modindex].sh_addr;
1611 if (symindex == 0) {
1612 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1613 mod->name);
1614 err = -ENOEXEC;
1615 goto free_hdr;
1618 /* Optional sections */
1619 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1620 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
1621 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1622 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
1623 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1624 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1625 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1626 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1627 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1628 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
1630 /* Don't keep modinfo section */
1631 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1632 #ifdef CONFIG_KALLSYMS
1633 /* Keep symbol and string tables for decoding later. */
1634 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1635 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1636 #endif
1638 /* Check module struct version now, before we try to use module. */
1639 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1640 err = -ENOEXEC;
1641 goto free_hdr;
1644 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1645 /* This is allowed: modprobe --force will invalidate it. */
1646 if (!modmagic) {
1647 add_taint(TAINT_FORCED_MODULE);
1648 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1649 mod->name);
1650 } else if (!same_magic(modmagic, vermagic)) {
1651 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1652 mod->name, modmagic, vermagic);
1653 err = -ENOEXEC;
1654 goto free_hdr;
1657 /* Now copy in args */
1658 arglen = strlen_user(uargs);
1659 if (!arglen) {
1660 err = -EFAULT;
1661 goto free_hdr;
1663 args = kmalloc(arglen, GFP_KERNEL);
1664 if (!args) {
1665 err = -ENOMEM;
1666 goto free_hdr;
1668 if (copy_from_user(args, uargs, arglen) != 0) {
1669 err = -EFAULT;
1670 goto free_mod;
1673 /* Userspace could have altered the string after the strlen_user() */
1674 args[arglen - 1] = '\0';
1676 if (find_module(mod->name)) {
1677 err = -EEXIST;
1678 goto free_mod;
1681 mod->state = MODULE_STATE_COMING;
1683 /* Allow arches to frob section contents and sizes. */
1684 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1685 if (err < 0)
1686 goto free_mod;
1688 if (pcpuindex) {
1689 /* We have a special allocation for this section. */
1690 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
1691 sechdrs[pcpuindex].sh_addralign,
1692 mod->name);
1693 if (!percpu) {
1694 err = -ENOMEM;
1695 goto free_mod;
1697 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1698 mod->percpu = percpu;
1701 /* Determine total sizes, and put offsets in sh_entsize. For now
1702 this is done generically; there doesn't appear to be any
1703 special cases for the architectures. */
1704 layout_sections(mod, hdr, sechdrs, secstrings);
1706 /* Do the allocs. */
1707 ptr = module_alloc(mod->core_size);
1708 if (!ptr) {
1709 err = -ENOMEM;
1710 goto free_percpu;
1712 memset(ptr, 0, mod->core_size);
1713 mod->module_core = ptr;
1715 ptr = module_alloc(mod->init_size);
1716 if (!ptr && mod->init_size) {
1717 err = -ENOMEM;
1718 goto free_core;
1720 memset(ptr, 0, mod->init_size);
1721 mod->module_init = ptr;
1723 /* Transfer each section which specifies SHF_ALLOC */
1724 DEBUGP("final section addresses:\n");
1725 for (i = 0; i < hdr->e_shnum; i++) {
1726 void *dest;
1728 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1729 continue;
1731 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1732 dest = mod->module_init
1733 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1734 else
1735 dest = mod->module_core + sechdrs[i].sh_entsize;
1737 if (sechdrs[i].sh_type != SHT_NOBITS)
1738 memcpy(dest, (void *)sechdrs[i].sh_addr,
1739 sechdrs[i].sh_size);
1740 /* Update sh_addr to point to copy in image. */
1741 sechdrs[i].sh_addr = (unsigned long)dest;
1742 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1744 /* Module has been moved. */
1745 mod = (void *)sechdrs[modindex].sh_addr;
1747 /* Now we've moved module, initialize linked lists, etc. */
1748 module_unload_init(mod);
1750 /* Set up license info based on the info section */
1751 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1753 if (strcmp(mod->name, "ndiswrapper") == 0)
1754 add_taint(TAINT_PROPRIETARY_MODULE);
1755 if (strcmp(mod->name, "driverloader") == 0)
1756 add_taint(TAINT_PROPRIETARY_MODULE);
1758 #ifdef CONFIG_MODULE_UNLOAD
1759 /* Set up MODINFO_ATTR fields */
1760 setup_modinfo(mod, sechdrs, infoindex);
1761 #endif
1763 /* Fix up syms, so that st_value is a pointer to location. */
1764 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1765 mod);
1766 if (err < 0)
1767 goto cleanup;
1769 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1770 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1771 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1772 if (crcindex)
1773 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1774 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1775 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1776 if (gplcrcindex)
1777 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
1779 #ifdef CONFIG_MODVERSIONS
1780 if ((mod->num_syms && !crcindex) ||
1781 (mod->num_gpl_syms && !gplcrcindex)) {
1782 printk(KERN_WARNING "%s: No versions for exported symbols."
1783 " Tainting kernel.\n", mod->name);
1784 add_taint(TAINT_FORCED_MODULE);
1786 #endif
1788 /* Now do relocations. */
1789 for (i = 1; i < hdr->e_shnum; i++) {
1790 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1791 unsigned int info = sechdrs[i].sh_info;
1793 /* Not a valid relocation section? */
1794 if (info >= hdr->e_shnum)
1795 continue;
1797 /* Don't bother with non-allocated sections */
1798 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1799 continue;
1801 if (sechdrs[i].sh_type == SHT_REL)
1802 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1803 else if (sechdrs[i].sh_type == SHT_RELA)
1804 err = apply_relocate_add(sechdrs, strtab, symindex, i,
1805 mod);
1806 if (err < 0)
1807 goto cleanup;
1810 /* Find duplicate symbols */
1811 err = verify_export_symbols(mod);
1813 if (err < 0)
1814 goto cleanup;
1816 /* Set up and sort exception table */
1817 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
1818 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
1819 sort_extable(extable, extable + mod->num_exentries);
1821 /* Finally, copy percpu area over. */
1822 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
1823 sechdrs[pcpuindex].sh_size);
1825 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
1827 err = module_finalize(hdr, sechdrs, mod);
1828 if (err < 0)
1829 goto cleanup;
1831 /* flush the icache in correct context */
1832 old_fs = get_fs();
1833 set_fs(KERNEL_DS);
1836 * Flush the instruction cache, since we've played with text.
1837 * Do it before processing of module parameters, so the module
1838 * can provide parameter accessor functions of its own.
1840 if (mod->module_init)
1841 flush_icache_range((unsigned long)mod->module_init,
1842 (unsigned long)mod->module_init
1843 + mod->init_size);
1844 flush_icache_range((unsigned long)mod->module_core,
1845 (unsigned long)mod->module_core + mod->core_size);
1847 set_fs(old_fs);
1849 mod->args = args;
1850 if (obsparmindex) {
1851 err = obsolete_params(mod->name, mod->args,
1852 (struct obsolete_modparm *)
1853 sechdrs[obsparmindex].sh_addr,
1854 sechdrs[obsparmindex].sh_size
1855 / sizeof(struct obsolete_modparm),
1856 sechdrs, symindex,
1857 (char *)sechdrs[strindex].sh_addr);
1858 if (setupindex)
1859 printk(KERN_WARNING "%s: Ignoring new-style "
1860 "parameters in presence of obsolete ones\n",
1861 mod->name);
1862 } else {
1863 /* Size of section 0 is 0, so this works well if no params */
1864 err = parse_args(mod->name, mod->args,
1865 (struct kernel_param *)
1866 sechdrs[setupindex].sh_addr,
1867 sechdrs[setupindex].sh_size
1868 / sizeof(struct kernel_param),
1869 NULL);
1871 if (err < 0)
1872 goto arch_cleanup;
1874 err = mod_sysfs_setup(mod,
1875 (struct kernel_param *)
1876 sechdrs[setupindex].sh_addr,
1877 sechdrs[setupindex].sh_size
1878 / sizeof(struct kernel_param));
1879 if (err < 0)
1880 goto arch_cleanup;
1881 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
1883 /* Get rid of temporary copy */
1884 vfree(hdr);
1886 /* Done! */
1887 return mod;
1889 arch_cleanup:
1890 module_arch_cleanup(mod);
1891 cleanup:
1892 module_unload_free(mod);
1893 module_free(mod, mod->module_init);
1894 free_core:
1895 module_free(mod, mod->module_core);
1896 free_percpu:
1897 if (percpu)
1898 percpu_modfree(percpu);
1899 free_mod:
1900 kfree(args);
1901 free_hdr:
1902 vfree(hdr);
1903 return ERR_PTR(err);
1905 truncated:
1906 printk(KERN_ERR "Module len %lu truncated\n", len);
1907 err = -ENOEXEC;
1908 goto free_hdr;
1912 * link the module with the whole machine is stopped with interrupts off
1913 * - this defends against kallsyms not taking locks
1915 static int __link_module(void *_mod)
1917 struct module *mod = _mod;
1918 list_add(&mod->list, &modules);
1919 return 0;
1922 /* This is where the real work happens */
1923 asmlinkage long
1924 sys_init_module(void __user *umod,
1925 unsigned long len,
1926 const char __user *uargs)
1928 struct module *mod;
1929 int ret = 0;
1931 /* Must have permission */
1932 if (!capable(CAP_SYS_MODULE))
1933 return -EPERM;
1935 /* Only one module load at a time, please */
1936 if (down_interruptible(&module_mutex) != 0)
1937 return -EINTR;
1939 /* Do all the hard work */
1940 mod = load_module(umod, len, uargs);
1941 if (IS_ERR(mod)) {
1942 up(&module_mutex);
1943 return PTR_ERR(mod);
1946 /* Now sew it into the lists. They won't access us, since
1947 strong_try_module_get() will fail. */
1948 stop_machine_run(__link_module, mod, NR_CPUS);
1950 /* Drop lock so they can recurse */
1951 up(&module_mutex);
1953 down(&notify_mutex);
1954 notifier_call_chain(&module_notify_list, MODULE_STATE_COMING, mod);
1955 up(&notify_mutex);
1957 /* Start the module */
1958 if (mod->init != NULL)
1959 ret = mod->init();
1960 if (ret < 0) {
1961 /* Init routine failed: abort. Try to protect us from
1962 buggy refcounters. */
1963 mod->state = MODULE_STATE_GOING;
1964 synchronize_sched();
1965 if (mod->unsafe)
1966 printk(KERN_ERR "%s: module is now stuck!\n",
1967 mod->name);
1968 else {
1969 module_put(mod);
1970 down(&module_mutex);
1971 free_module(mod);
1972 up(&module_mutex);
1974 return ret;
1977 /* Now it's a first class citizen! */
1978 down(&module_mutex);
1979 mod->state = MODULE_STATE_LIVE;
1980 /* Drop initial reference. */
1981 module_put(mod);
1982 module_free(mod, mod->module_init);
1983 mod->module_init = NULL;
1984 mod->init_size = 0;
1985 mod->init_text_size = 0;
1986 up(&module_mutex);
1988 return 0;
1991 static inline int within(unsigned long addr, void *start, unsigned long size)
1993 return ((void *)addr >= start && (void *)addr < start + size);
1996 #ifdef CONFIG_KALLSYMS
1998 * This ignores the intensely annoying "mapping symbols" found
1999 * in ARM ELF files: $a, $t and $d.
2001 static inline int is_arm_mapping_symbol(const char *str)
2003 return str[0] == '$' && strchr("atd", str[1])
2004 && (str[2] == '\0' || str[2] == '.');
2007 static const char *get_ksymbol(struct module *mod,
2008 unsigned long addr,
2009 unsigned long *size,
2010 unsigned long *offset)
2012 unsigned int i, best = 0;
2013 unsigned long nextval;
2015 /* At worse, next value is at end of module */
2016 if (within(addr, mod->module_init, mod->init_size))
2017 nextval = (unsigned long)mod->module_init+mod->init_text_size;
2018 else
2019 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2021 /* Scan for closest preceeding symbol, and next symbol. (ELF
2022 starts real symbols at 1). */
2023 for (i = 1; i < mod->num_symtab; i++) {
2024 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2025 continue;
2027 /* We ignore unnamed symbols: they're uninformative
2028 * and inserted at a whim. */
2029 if (mod->symtab[i].st_value <= addr
2030 && mod->symtab[i].st_value > mod->symtab[best].st_value
2031 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2032 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2033 best = i;
2034 if (mod->symtab[i].st_value > addr
2035 && mod->symtab[i].st_value < nextval
2036 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2037 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2038 nextval = mod->symtab[i].st_value;
2041 if (!best)
2042 return NULL;
2044 *size = nextval - mod->symtab[best].st_value;
2045 *offset = addr - mod->symtab[best].st_value;
2046 return mod->strtab + mod->symtab[best].st_name;
2049 /* For kallsyms to ask for address resolution. NULL means not found.
2050 We don't lock, as this is used for oops resolution and races are a
2051 lesser concern. */
2052 const char *module_address_lookup(unsigned long addr,
2053 unsigned long *size,
2054 unsigned long *offset,
2055 char **modname)
2057 struct module *mod;
2059 list_for_each_entry(mod, &modules, list) {
2060 if (within(addr, mod->module_init, mod->init_size)
2061 || within(addr, mod->module_core, mod->core_size)) {
2062 *modname = mod->name;
2063 return get_ksymbol(mod, addr, size, offset);
2066 return NULL;
2069 struct module *module_get_kallsym(unsigned int symnum,
2070 unsigned long *value,
2071 char *type,
2072 char namebuf[128])
2074 struct module *mod;
2076 down(&module_mutex);
2077 list_for_each_entry(mod, &modules, list) {
2078 if (symnum < mod->num_symtab) {
2079 *value = mod->symtab[symnum].st_value;
2080 *type = mod->symtab[symnum].st_info;
2081 strncpy(namebuf,
2082 mod->strtab + mod->symtab[symnum].st_name,
2083 127);
2084 up(&module_mutex);
2085 return mod;
2087 symnum -= mod->num_symtab;
2089 up(&module_mutex);
2090 return NULL;
2093 static unsigned long mod_find_symname(struct module *mod, const char *name)
2095 unsigned int i;
2097 for (i = 0; i < mod->num_symtab; i++)
2098 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2099 mod->symtab[i].st_info != 'U')
2100 return mod->symtab[i].st_value;
2101 return 0;
2104 /* Look for this name: can be of form module:name. */
2105 unsigned long module_kallsyms_lookup_name(const char *name)
2107 struct module *mod;
2108 char *colon;
2109 unsigned long ret = 0;
2111 /* Don't lock: we're in enough trouble already. */
2112 if ((colon = strchr(name, ':')) != NULL) {
2113 *colon = '\0';
2114 if ((mod = find_module(name)) != NULL)
2115 ret = mod_find_symname(mod, colon+1);
2116 *colon = ':';
2117 } else {
2118 list_for_each_entry(mod, &modules, list)
2119 if ((ret = mod_find_symname(mod, name)) != 0)
2120 break;
2122 return ret;
2124 #endif /* CONFIG_KALLSYMS */
2126 /* Called by the /proc file system to return a list of modules. */
2127 static void *m_start(struct seq_file *m, loff_t *pos)
2129 struct list_head *i;
2130 loff_t n = 0;
2132 down(&module_mutex);
2133 list_for_each(i, &modules) {
2134 if (n++ == *pos)
2135 break;
2137 if (i == &modules)
2138 return NULL;
2139 return i;
2142 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2144 struct list_head *i = p;
2145 (*pos)++;
2146 if (i->next == &modules)
2147 return NULL;
2148 return i->next;
2151 static void m_stop(struct seq_file *m, void *p)
2153 up(&module_mutex);
2156 static int m_show(struct seq_file *m, void *p)
2158 struct module *mod = list_entry(p, struct module, list);
2159 seq_printf(m, "%s %lu",
2160 mod->name, mod->init_size + mod->core_size);
2161 print_unload_info(m, mod);
2163 /* Informative for users. */
2164 seq_printf(m, " %s",
2165 mod->state == MODULE_STATE_GOING ? "Unloading":
2166 mod->state == MODULE_STATE_COMING ? "Loading":
2167 "Live");
2168 /* Used by oprofile and other similar tools. */
2169 seq_printf(m, " 0x%p", mod->module_core);
2171 seq_printf(m, "\n");
2172 return 0;
2175 /* Format: modulename size refcount deps address
2177 Where refcount is a number or -, and deps is a comma-separated list
2178 of depends or -.
2180 struct seq_operations modules_op = {
2181 .start = m_start,
2182 .next = m_next,
2183 .stop = m_stop,
2184 .show = m_show
2187 /* Given an address, look for it in the module exception tables. */
2188 const struct exception_table_entry *search_module_extables(unsigned long addr)
2190 unsigned long flags;
2191 const struct exception_table_entry *e = NULL;
2192 struct module *mod;
2194 spin_lock_irqsave(&modlist_lock, flags);
2195 list_for_each_entry(mod, &modules, list) {
2196 if (mod->num_exentries == 0)
2197 continue;
2199 e = search_extable(mod->extable,
2200 mod->extable + mod->num_exentries - 1,
2201 addr);
2202 if (e)
2203 break;
2205 spin_unlock_irqrestore(&modlist_lock, flags);
2207 /* Now, if we found one, we are running inside it now, hence
2208 we cannot unload the module, hence no refcnt needed. */
2209 return e;
2212 /* Is this a valid kernel address? We don't grab the lock: we are oopsing. */
2213 struct module *__module_text_address(unsigned long addr)
2215 struct module *mod;
2217 list_for_each_entry(mod, &modules, list)
2218 if (within(addr, mod->module_init, mod->init_text_size)
2219 || within(addr, mod->module_core, mod->core_text_size))
2220 return mod;
2221 return NULL;
2224 struct module *module_text_address(unsigned long addr)
2226 struct module *mod;
2227 unsigned long flags;
2229 spin_lock_irqsave(&modlist_lock, flags);
2230 mod = __module_text_address(addr);
2231 spin_unlock_irqrestore(&modlist_lock, flags);
2233 return mod;
2236 /* Don't grab lock, we're oopsing. */
2237 void print_modules(void)
2239 struct module *mod;
2241 printk("Modules linked in:");
2242 list_for_each_entry(mod, &modules, list)
2243 printk(" %s", mod->name);
2244 printk("\n");
2247 void module_add_driver(struct module *mod, struct device_driver *drv)
2249 if (!mod || !drv)
2250 return;
2252 /* Don't check return code; this call is idempotent */
2253 sysfs_create_link(&drv->kobj, &mod->mkobj.kobj, "module");
2255 EXPORT_SYMBOL(module_add_driver);
2257 void module_remove_driver(struct device_driver *drv)
2259 if (!drv)
2260 return;
2261 sysfs_remove_link(&drv->kobj, "module");
2263 EXPORT_SYMBOL(module_remove_driver);
2265 #ifdef CONFIG_MODVERSIONS
2266 /* Generate the signature for struct module here, too, for modversions. */
2267 void struct_module(struct module *mod) { return; }
2268 EXPORT_SYMBOL(struct_module);
2269 #endif