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 unsigned long __start___kcrctab
[];
130 extern const unsigned long __start___kcrctab_gpl
[];
132 #ifndef CONFIG_MODVERSIONS
133 #define symversion(base, idx) NULL
135 #define symversion(base, idx) ((base) ? ((base) + (idx)) : NULL)
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
,
147 /* Core kernel first. */
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
;
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
) {
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
;
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
);
185 /* Find a symbol in this elf symbol table */
186 static unsigned long find_local_symbol(Elf_Shdr
*sechdrs
,
187 unsigned int symindex
,
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
;
203 /* Search for module by name: must hold module_mutex. */
204 static struct module
*find_module(const char *name
)
208 list_for_each_entry(mod
, &modules
, list
) {
209 if (strcmp(mod
->name
, name
) == 0)
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,
230 memcpy(new, pcpu_size
, sizeof(new[0])*pcpu_num_allocated
);
231 pcpu_num_allocated
*= 2;
236 /* Insert a new subblock */
237 memmove(&pcpu_size
[i
+1], &pcpu_size
[i
],
238 sizeof(pcpu_size
[0]) * (pcpu_num_used
- i
));
241 pcpu_size
[i
+1] -= size
;
246 static inline unsigned int block_size(int 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
,
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
)
278 /* Transfer extra to previous block. */
279 if (pcpu_size
[i
-1] < 0)
280 pcpu_size
[i
-1] -= extra
;
282 pcpu_size
[i
-1] += extra
;
283 pcpu_size
[i
] -= extra
;
286 /* Split block if warranted */
287 if (pcpu_size
[i
] - size
> sizeof(unsigned long))
288 if (!split_block(i
, size
))
292 pcpu_size
[i
] = -pcpu_size
[i
];
296 printk(KERN_WARNING
"Could not allocate %lu bytes percpu data\n",
301 static void percpu_modfree(void *freeme
)
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
++) {
309 pcpu_size
[i
] = -pcpu_size
[i
];
316 /* Merge with previous? */
317 if (pcpu_size
[i
-1] >= 0) {
318 pcpu_size
[i
-1] += pcpu_size
[i
];
320 memmove(&pcpu_size
[i
], &pcpu_size
[i
+1],
321 (pcpu_num_used
- i
) * sizeof(pcpu_size
[0]));
324 /* Merge with next? */
325 if (i
+1 < pcpu_num_used
&& pcpu_size
[i
+1] >= 0) {
326 pcpu_size
[i
] += pcpu_size
[i
+1];
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
,
335 const char *secstrings
)
337 return find_sec(hdr
, sechdrs
, secstrings
, ".data.percpu");
340 static int percpu_modinit(void)
343 pcpu_num_allocated
= 2;
344 pcpu_size
= kmalloc(sizeof(pcpu_size
[0]) * pcpu_num_allocated
,
346 /* Static in-kernel percpu data (used). */
347 pcpu_size
[0] = -ALIGN(__per_cpu_end
-__per_cpu_start
, SMP_CACHE_BYTES
);
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");
357 __initcall(percpu_modinit
);
358 #else /* ... !CONFIG_SMP */
359 static inline void *percpu_modalloc(unsigned long size
, unsigned long align
,
364 static inline void percpu_modfree(void *pcpuptr
)
368 static inline unsigned int find_pcpusec(Elf_Ehdr
*hdr
,
370 const char *secstrings
)
374 static inline void percpu_modcopy(void *pcpudst
, const void *src
,
377 /* pcpusec should be 0, and size of that section should be 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) \
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
[] = {
420 /* Init the unload section of the module. */
421 static void module_unload_init(struct module
*mod
)
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 */
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
);
452 DEBUGP("%s does not use %s!\n", a
->name
, b
->name
);
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
))
465 DEBUGP("Allocating new usage for %s.\n", a
->name
);
466 use
= kmalloc(sizeof(*use
), GFP_ATOMIC
);
468 printk("%s: out of memory loading\n", a
->name
);
473 use
->module_which_uses
= a
;
474 list_add(&use
->list
, &b
->modules_which_use_me
);
478 /* Clear the unload stuff of the module. */
479 static void module_unload_free(struct module
*mod
)
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
);
490 list_del(&use
->list
);
492 /* There can be at most one match. */
499 #ifdef CONFIG_MODULE_FORCE_UNLOAD
500 static inline int try_force_unload(unsigned int flags
)
502 int ret
= (flags
& O_TRUNC
);
504 add_taint(TAINT_FORCED_RMMOD
);
508 static inline int try_force_unload(unsigned int flags
)
512 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
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
)))
532 /* Mark it as dying. */
533 sref
->mod
->state
= MODULE_STATE_GOING
;
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
);
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 */
562 DEBUGP("Looking at refcount...\n");
563 set_current_state(TASK_UNINTERRUPTIBLE
);
564 if (module_refcount(mod
) == 0)
568 current
->state
= TASK_RUNNING
;
573 sys_delete_module(const char __user
*name_user
, unsigned int flags
)
576 char name
[MODULE_NAME_LEN
];
579 if (!capable(CAP_SYS_MODULE
))
582 if (strncpy_from_user(name
, name_user
, MODULE_NAME_LEN
-1) < 0)
584 name
[MODULE_NAME_LEN
-1] = '\0';
586 if (down_interruptible(&module_mutex
) != 0)
589 mod
= find_module(name
);
595 if (!list_empty(&mod
->modules_which_use_me
)) {
596 /* Other modules depend on us: get rid of them first. */
601 /* Doing init or already dying? */
602 if (mod
->state
!= MODULE_STATE_LIVE
) {
603 /* FIXME: if (force), slam module count and wake up
605 DEBUGP("%s already dying\n", mod
->name
);
610 /* If it has an init func, it must have an exit func to unload */
611 if ((mod
->init
!= NULL
&& mod
->exit
== NULL
)
613 forced
= try_force_unload(flags
);
615 /* This module can't be removed */
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
);
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
) {
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
);
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
)
674 void __symbol_put(const char *symbol
)
676 struct module
*owner
;
678 const unsigned long *crc
;
680 spin_lock_irqsave(&modlist_lock
, flags
);
681 if (!__find_symbol(symbol
, &owner
, &crc
, 1))
684 spin_unlock_irqrestore(&modlist_lock
, flags
);
686 EXPORT_SYMBOL(__symbol_put
);
688 void symbol_put_addr(void *addr
)
692 spin_lock_irqsave(&modlist_lock
, flags
);
693 if (!kernel_text_address((unsigned long)addr
))
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
},
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
);
742 static int set_obsolete(const char *val
, struct kernel_param
*kp
)
744 unsigned int min
, max
;
745 unsigned int size
, maxsize
;
749 struct obsolete_modparm
*obsparm
= kp
->arg
;
752 printk(KERN_ERR
"Parameter %s needs an argument\n", kp
->name
);
756 /* type is: [min[-max]]{b,h,i,l,s} */
758 min
= simple_strtol(p
, &endp
, 10);
759 if (endp
== obsparm
->type
)
761 else if (*endp
== '-') {
763 max
= simple_strtol(p
, &endp
, 10);
768 return param_array(kp
->name
, val
, min
, max
, obsparm
->addr
,
769 1, param_set_byte
, &dummy
);
771 return param_array(kp
->name
, val
, min
, max
, obsparm
->addr
,
772 sizeof(short), param_set_short
, &dummy
);
774 return param_array(kp
->name
, val
, min
, max
, obsparm
->addr
,
775 sizeof(int), param_set_int
, &dummy
);
777 return param_array(kp
->name
, val
, min
, max
, obsparm
->addr
,
778 sizeof(long), param_set_long
, &dummy
);
780 return param_array(kp
->name
, val
, min
, max
, obsparm
->addr
,
781 sizeof(char *), param_set_charp
, &dummy
);
784 /* Undocumented: 1-5c50 means 1-5 strings of up to 49 chars,
785 and the decl is "char xxx[5][50];" */
787 maxsize
= simple_strtol(p
, &endp
, 10);
788 /* We check lengths here (yes, this is a hack). */
790 while (p
[size
= strcspn(p
, ",")]) {
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
);
804 "Parameter %s doesn't fit in %u chars.\n", kp
->name
, maxsize
);
808 static int obsolete_params(const char *name
,
810 struct obsolete_modparm obsparm
[],
813 unsigned int symindex
,
816 struct kernel_param
*kp
;
820 kp
= kmalloc(sizeof(kp
[0]) * num
, GFP_KERNEL
);
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
;
832 kp
[i
].set
= set_obsolete
;
835 = (void *)find_local_symbol(sechdrs
, symindex
, strtab
,
837 if (!obsparm
[i
].addr
) {
838 printk("%s: falsely claims to have parameter %s\n",
839 name
, obsparm
[i
].name
);
843 kp
[i
].arg
= &obsparm
[i
];
846 ret
= parse_args(name
, args
, kp
, num
, NULL
);
852 static int obsolete_params(const char *name
,
854 struct obsolete_modparm obsparm
[],
857 unsigned int symindex
,
861 printk(KERN_WARNING
"%s: Ignoring obsolete parameters\n",
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
,
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. */
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)
891 if (versions
[i
].crc
== *crc
)
893 printk("%s: disagrees about version of symbol %s\n",
895 DEBUGP("Found checksum %lX vs module %lX\n",
896 *crc
, versions
[i
].crc
);
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",
903 add_taint(TAINT_FORCED_MODULE
);
908 static inline int check_modstruct_version(Elf_Shdr
*sechdrs
,
909 unsigned int versindex
,
912 const unsigned long *crc
;
913 struct module
*owner
;
915 if (!__find_symbol("struct_module", &owner
, &crc
, 1))
917 return check_version(sechdrs
, versindex
, "struct_module", mod
,
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;
929 static inline int check_version(Elf_Shdr
*sechdrs
,
930 unsigned int versindex
,
933 const unsigned long *crc
)
938 static inline int check_modstruct_version(Elf_Shdr
*sechdrs
,
939 unsigned int versindex
,
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
,
958 struct module
*owner
;
960 const unsigned long *crc
;
962 ret
= __find_symbol(name
, &owner
, &crc
, mod
->license_gplok
);
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
))
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
)
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
)))
1005 /* Setup section attributes. */
1006 sect_attrs
->grp
.name
= "sections";
1007 sect_attrs
->grp
.attrs
= (void *)sect_attrs
+ size
[0];
1009 sattr
= §_attrs
->attrs
[0];
1010 gattr
= §_attrs
->grp
.attrs
[0];
1011 for (i
= 0; i
< nsect
; i
++) {
1012 if (! (sechdrs
[i
].sh_flags
& SHF_ALLOC
))
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
;
1026 if (sysfs_create_group(&mod
->mkobj
.kobj
, §_attrs
->grp
))
1029 mod
->sect_attrs
= 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
;
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
);
1070 static inline int module_add_refcnt_attr(struct module
*mod
)
1074 static void module_remove_refcnt_attr(struct module
*mod
)
1079 #ifdef CONFIG_MODULE_UNLOAD
1080 static int module_add_modinfo_attrs(struct module
*mod
)
1082 struct module_attribute
*attr
;
1086 for (i
= 0; (attr
= modinfo_attrs
[i
]) && !error
; i
++) {
1088 (attr
->test
&& attr
->test(mod
)))
1089 error
= sysfs_create_file(&mod
->mkobj
.kobj
,&attr
->attr
);
1094 static void module_remove_modinfo_attrs(struct module
*mod
)
1096 struct module_attribute
*attr
;
1099 for (i
= 0; (attr
= modinfo_attrs
[i
]); i
++) {
1100 sysfs_remove_file(&mod
->mkobj
.kobj
,&attr
->attr
);
1106 static int mod_sysfs_setup(struct module
*mod
,
1107 struct kernel_param
*kparam
,
1108 unsigned int num_params
)
1112 memset(&mod
->mkobj
.kobj
, 0, sizeof(mod
->mkobj
.kobj
));
1113 err
= kobject_set_name(&mod
->mkobj
.kobj
, "%s", mod
->name
);
1116 kobj_set_kset_s(&mod
->mkobj
, module_subsys
);
1117 mod
->mkobj
.mod
= mod
;
1118 err
= kobject_register(&mod
->mkobj
.kobj
);
1122 err
= module_add_refcnt_attr(mod
);
1126 err
= module_param_sysfs_setup(mod
, kparam
, num_params
);
1130 #ifdef CONFIG_MODULE_UNLOAD
1131 err
= module_add_modinfo_attrs(mod
);
1139 kobject_unregister(&mod
->mkobj
.kobj
);
1144 static void mod_kobject_remove(struct module
*mod
)
1146 #ifdef CONFIG_MODULE_UNLOAD
1147 module_remove_modinfo_attrs(mod
);
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
);
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
);
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
))
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
;
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
;
1233 printk(KERN_ERR
"%s: exports duplicate symbol %s (owned by %s)\n",
1234 mod
->name
, name
, module_name(owner
));
1239 /* Change all symbols so that sh_value encodes the pointer directly. */
1240 static int simplify_symbols(Elf_Shdr
*sechdrs
,
1241 unsigned int symindex
,
1243 unsigned int versindex
,
1244 unsigned int pcpuindex
,
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
);
1252 for (i
= 1; i
< n
; i
++) {
1253 switch (sym
[i
].st_shndx
) {
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",
1264 /* Don't need to do anything */
1265 DEBUGP("Absolute symbol: 0x%08lx\n",
1266 (long)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)
1278 if (ELF_ST_BIND(sym
[i
].st_info
) == STB_WEAK
)
1281 printk(KERN_WARNING
"%s: Unknown symbol %s\n",
1282 mod
->name
, strtab
+ sym
[i
].st_name
);
1287 /* Divert to percpu allocation if a percpu var. */
1288 if (sym
[i
].st_shndx
== pcpuindex
)
1289 secbase
= (unsigned long)mod
->percpu
;
1291 secbase
= sechdrs
[sym
[i
].st_shndx
].sh_addr
;
1292 sym
[i
].st_value
+= secbase
;
1300 /* Update size with this section: return offset. */
1301 static long get_offset(unsigned long *size
, Elf_Shdr
*sechdr
)
1305 ret
= ALIGN(*size
, sechdr
->sh_addralign
?: 1);
1306 *size
= ret
+ sechdr
->sh_size
;
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
1314 static void layout_sections(struct module
*mod
,
1315 const Elf_Ehdr
*hdr
,
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 }
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
,
1344 s
->sh_entsize
= get_offset(&mod
->core_size
, s
);
1345 DEBUGP("\t%s\n", secstrings
+ s
->sh_name
);
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
,
1362 s
->sh_entsize
= (get_offset(&mod
->init_size
, s
)
1363 | INIT_OFFSET_MASK
);
1364 DEBUGP("\t%s\n", secstrings
+ s
->sh_name
);
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
)
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 */
1399 if ((*secsize
)-- <= 1)
1403 /* Skip any zero padding. */
1404 while (!string
[0]) {
1406 if ((*secsize
)-- <= 1)
1412 static char *get_modinfo(Elf_Shdr
*sechdrs
,
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;
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
;
1434 for (i
= 0; (attr
= modinfo_attrs
[i
]); i
++) {
1437 get_modinfo(sechdrs
,
1444 #ifdef CONFIG_KALLSYMS
1445 int is_exported(const char *name
, const struct module
*mod
)
1450 for (i
= 0; __start___ksymtab
+i
< __stop___ksymtab
; i
++)
1451 if (strcmp(__start___ksymtab
[i
].name
, name
) == 0)
1455 for (i
= 0; i
< mod
->num_syms
; i
++)
1456 if (strcmp(mod
->syms
[i
].name
, name
) == 0)
1462 static char elf_type(const Elf_Sym
*sym
,
1464 const char *secstrings
,
1467 if (ELF_ST_BIND(sym
->st_info
) == STB_WEAK
) {
1468 if (ELF_ST_TYPE(sym
->st_info
) == STT_OBJECT
)
1473 if (sym
->st_shndx
== SHN_UNDEF
)
1475 if (sym
->st_shndx
== SHN_ABS
)
1477 if (sym
->st_shndx
>= SHN_LORESERVE
)
1479 if (sechdrs
[sym
->st_shndx
].sh_flags
& SHF_EXECINSTR
)
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
))
1485 else if (sechdrs
[sym
->st_shndx
].sh_flags
& ARCH_SHF_SMALL
)
1490 if (sechdrs
[sym
->st_shndx
].sh_type
== SHT_NOBITS
) {
1491 if (sechdrs
[sym
->st_shndx
].sh_flags
& ARCH_SHF_SMALL
)
1496 if (strncmp(secstrings
+ sechdrs
[sym
->st_shndx
].sh_name
,
1497 ".debug", strlen(".debug")) == 0)
1502 static void add_kallsyms(struct module
*mod
,
1504 unsigned int symindex
,
1505 unsigned int strindex
,
1506 const char *secstrings
)
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
);
1520 static inline void add_kallsyms(struct module
*mod
,
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
,
1533 const char __user
*uargs
)
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
;
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",
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) {
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
)) {
1572 if (len
< hdr
->e_shoff
+ hdr
->e_shnum
* sizeof(Elf_Shdr
))
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
)
1585 /* Mark all sections sh_addr with their address in the
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
) {
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
;
1602 modindex
= find_sec(hdr
, sechdrs
, secstrings
,
1603 ".gnu.linkonce.this_module");
1605 printk(KERN_WARNING
"No module found in object\n");
1609 mod
= (void *)sechdrs
[modindex
].sh_addr
;
1611 if (symindex
== 0) {
1612 printk(KERN_WARNING
"%s: module has no symbols (stripped?)\n",
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
;
1638 /* Check module struct version now, before we try to use module. */
1639 if (!check_modstruct_version(sechdrs
, versindex
, mod
)) {
1644 modmagic
= get_modinfo(sechdrs
, infoindex
, "vermagic");
1645 /* This is allowed: modprobe --force will invalidate it. */
1647 add_taint(TAINT_FORCED_MODULE
);
1648 printk(KERN_WARNING
"%s: no version magic, tainting kernel.\n",
1650 } else if (!same_magic(modmagic
, vermagic
)) {
1651 printk(KERN_ERR
"%s: version magic '%s' should be '%s'\n",
1652 mod
->name
, modmagic
, vermagic
);
1657 /* Now copy in args */
1658 arglen
= strlen_user(uargs
);
1663 args
= kmalloc(arglen
, GFP_KERNEL
);
1668 if (copy_from_user(args
, uargs
, arglen
) != 0) {
1673 if (find_module(mod
->name
)) {
1678 mod
->state
= MODULE_STATE_COMING
;
1680 /* Allow arches to frob section contents and sizes. */
1681 err
= module_frob_arch_sections(hdr
, sechdrs
, secstrings
, mod
);
1686 /* We have a special allocation for this section. */
1687 percpu
= percpu_modalloc(sechdrs
[pcpuindex
].sh_size
,
1688 sechdrs
[pcpuindex
].sh_addralign
,
1694 sechdrs
[pcpuindex
].sh_flags
&= ~(unsigned long)SHF_ALLOC
;
1695 mod
->percpu
= percpu
;
1698 /* Determine total sizes, and put offsets in sh_entsize. For now
1699 this is done generically; there doesn't appear to be any
1700 special cases for the architectures. */
1701 layout_sections(mod
, hdr
, sechdrs
, secstrings
);
1703 /* Do the allocs. */
1704 ptr
= module_alloc(mod
->core_size
);
1709 memset(ptr
, 0, mod
->core_size
);
1710 mod
->module_core
= ptr
;
1712 ptr
= module_alloc(mod
->init_size
);
1713 if (!ptr
&& mod
->init_size
) {
1717 memset(ptr
, 0, mod
->init_size
);
1718 mod
->module_init
= ptr
;
1720 /* Transfer each section which specifies SHF_ALLOC */
1721 DEBUGP("final section addresses:\n");
1722 for (i
= 0; i
< hdr
->e_shnum
; i
++) {
1725 if (!(sechdrs
[i
].sh_flags
& SHF_ALLOC
))
1728 if (sechdrs
[i
].sh_entsize
& INIT_OFFSET_MASK
)
1729 dest
= mod
->module_init
1730 + (sechdrs
[i
].sh_entsize
& ~INIT_OFFSET_MASK
);
1732 dest
= mod
->module_core
+ sechdrs
[i
].sh_entsize
;
1734 if (sechdrs
[i
].sh_type
!= SHT_NOBITS
)
1735 memcpy(dest
, (void *)sechdrs
[i
].sh_addr
,
1736 sechdrs
[i
].sh_size
);
1737 /* Update sh_addr to point to copy in image. */
1738 sechdrs
[i
].sh_addr
= (unsigned long)dest
;
1739 DEBUGP("\t0x%lx %s\n", sechdrs
[i
].sh_addr
, secstrings
+ sechdrs
[i
].sh_name
);
1741 /* Module has been moved. */
1742 mod
= (void *)sechdrs
[modindex
].sh_addr
;
1744 /* Now we've moved module, initialize linked lists, etc. */
1745 module_unload_init(mod
);
1747 /* Set up license info based on the info section */
1748 set_license(mod
, get_modinfo(sechdrs
, infoindex
, "license"));
1750 if (strcmp(mod
->name
, "ndiswrapper") == 0)
1751 add_taint(TAINT_PROPRIETARY_MODULE
);
1752 if (strcmp(mod
->name
, "driverloader") == 0)
1753 add_taint(TAINT_PROPRIETARY_MODULE
);
1755 #ifdef CONFIG_MODULE_UNLOAD
1756 /* Set up MODINFO_ATTR fields */
1757 setup_modinfo(mod
, sechdrs
, infoindex
);
1760 /* Fix up syms, so that st_value is a pointer to location. */
1761 err
= simplify_symbols(sechdrs
, symindex
, strtab
, versindex
, pcpuindex
,
1766 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1767 mod
->num_syms
= sechdrs
[exportindex
].sh_size
/ sizeof(*mod
->syms
);
1768 mod
->syms
= (void *)sechdrs
[exportindex
].sh_addr
;
1770 mod
->crcs
= (void *)sechdrs
[crcindex
].sh_addr
;
1771 mod
->num_gpl_syms
= sechdrs
[gplindex
].sh_size
/ sizeof(*mod
->gpl_syms
);
1772 mod
->gpl_syms
= (void *)sechdrs
[gplindex
].sh_addr
;
1774 mod
->gpl_crcs
= (void *)sechdrs
[gplcrcindex
].sh_addr
;
1776 #ifdef CONFIG_MODVERSIONS
1777 if ((mod
->num_syms
&& !crcindex
) ||
1778 (mod
->num_gpl_syms
&& !gplcrcindex
)) {
1779 printk(KERN_WARNING
"%s: No versions for exported symbols."
1780 " Tainting kernel.\n", mod
->name
);
1781 add_taint(TAINT_FORCED_MODULE
);
1785 /* Now do relocations. */
1786 for (i
= 1; i
< hdr
->e_shnum
; i
++) {
1787 const char *strtab
= (char *)sechdrs
[strindex
].sh_addr
;
1788 unsigned int info
= sechdrs
[i
].sh_info
;
1790 /* Not a valid relocation section? */
1791 if (info
>= hdr
->e_shnum
)
1794 /* Don't bother with non-allocated sections */
1795 if (!(sechdrs
[info
].sh_flags
& SHF_ALLOC
))
1798 if (sechdrs
[i
].sh_type
== SHT_REL
)
1799 err
= apply_relocate(sechdrs
, strtab
, symindex
, i
,mod
);
1800 else if (sechdrs
[i
].sh_type
== SHT_RELA
)
1801 err
= apply_relocate_add(sechdrs
, strtab
, symindex
, i
,
1807 /* Find duplicate symbols */
1808 err
= verify_export_symbols(mod
);
1813 /* Set up and sort exception table */
1814 mod
->num_exentries
= sechdrs
[exindex
].sh_size
/ sizeof(*mod
->extable
);
1815 mod
->extable
= extable
= (void *)sechdrs
[exindex
].sh_addr
;
1816 sort_extable(extable
, extable
+ mod
->num_exentries
);
1818 /* Finally, copy percpu area over. */
1819 percpu_modcopy(mod
->percpu
, (void *)sechdrs
[pcpuindex
].sh_addr
,
1820 sechdrs
[pcpuindex
].sh_size
);
1822 add_kallsyms(mod
, sechdrs
, symindex
, strindex
, secstrings
);
1824 err
= module_finalize(hdr
, sechdrs
, mod
);
1828 /* flush the icache in correct context */
1833 * Flush the instruction cache, since we've played with text.
1834 * Do it before processing of module parameters, so the module
1835 * can provide parameter accessor functions of its own.
1837 if (mod
->module_init
)
1838 flush_icache_range((unsigned long)mod
->module_init
,
1839 (unsigned long)mod
->module_init
1841 flush_icache_range((unsigned long)mod
->module_core
,
1842 (unsigned long)mod
->module_core
+ mod
->core_size
);
1848 err
= obsolete_params(mod
->name
, mod
->args
,
1849 (struct obsolete_modparm
*)
1850 sechdrs
[obsparmindex
].sh_addr
,
1851 sechdrs
[obsparmindex
].sh_size
1852 / sizeof(struct obsolete_modparm
),
1854 (char *)sechdrs
[strindex
].sh_addr
);
1856 printk(KERN_WARNING
"%s: Ignoring new-style "
1857 "parameters in presence of obsolete ones\n",
1860 /* Size of section 0 is 0, so this works well if no params */
1861 err
= parse_args(mod
->name
, mod
->args
,
1862 (struct kernel_param
*)
1863 sechdrs
[setupindex
].sh_addr
,
1864 sechdrs
[setupindex
].sh_size
1865 / sizeof(struct kernel_param
),
1871 err
= mod_sysfs_setup(mod
,
1872 (struct kernel_param
*)
1873 sechdrs
[setupindex
].sh_addr
,
1874 sechdrs
[setupindex
].sh_size
1875 / sizeof(struct kernel_param
));
1878 add_sect_attrs(mod
, hdr
->e_shnum
, secstrings
, sechdrs
);
1880 /* Get rid of temporary copy */
1887 module_arch_cleanup(mod
);
1889 module_unload_free(mod
);
1890 module_free(mod
, mod
->module_init
);
1892 module_free(mod
, mod
->module_core
);
1895 percpu_modfree(percpu
);
1900 return ERR_PTR(err
);
1903 printk(KERN_ERR
"Module len %lu truncated\n", len
);
1909 * link the module with the whole machine is stopped with interrupts off
1910 * - this defends against kallsyms not taking locks
1912 static int __link_module(void *_mod
)
1914 struct module
*mod
= _mod
;
1915 list_add(&mod
->list
, &modules
);
1919 /* This is where the real work happens */
1921 sys_init_module(void __user
*umod
,
1923 const char __user
*uargs
)
1928 /* Must have permission */
1929 if (!capable(CAP_SYS_MODULE
))
1932 /* Only one module load at a time, please */
1933 if (down_interruptible(&module_mutex
) != 0)
1936 /* Do all the hard work */
1937 mod
= load_module(umod
, len
, uargs
);
1940 return PTR_ERR(mod
);
1943 /* Now sew it into the lists. They won't access us, since
1944 strong_try_module_get() will fail. */
1945 stop_machine_run(__link_module
, mod
, NR_CPUS
);
1947 /* Drop lock so they can recurse */
1950 down(¬ify_mutex
);
1951 notifier_call_chain(&module_notify_list
, MODULE_STATE_COMING
, mod
);
1954 /* Start the module */
1955 if (mod
->init
!= NULL
)
1958 /* Init routine failed: abort. Try to protect us from
1959 buggy refcounters. */
1960 mod
->state
= MODULE_STATE_GOING
;
1961 synchronize_sched();
1963 printk(KERN_ERR
"%s: module is now stuck!\n",
1967 down(&module_mutex
);
1974 /* Now it's a first class citizen! */
1975 down(&module_mutex
);
1976 mod
->state
= MODULE_STATE_LIVE
;
1977 /* Drop initial reference. */
1979 module_free(mod
, mod
->module_init
);
1980 mod
->module_init
= NULL
;
1982 mod
->init_text_size
= 0;
1988 static inline int within(unsigned long addr
, void *start
, unsigned long size
)
1990 return ((void *)addr
>= start
&& (void *)addr
< start
+ size
);
1993 #ifdef CONFIG_KALLSYMS
1995 * This ignores the intensely annoying "mapping symbols" found
1996 * in ARM ELF files: $a, $t and $d.
1998 static inline int is_arm_mapping_symbol(const char *str
)
2000 return str
[0] == '$' && strchr("atd", str
[1])
2001 && (str
[2] == '\0' || str
[2] == '.');
2004 static const char *get_ksymbol(struct module
*mod
,
2006 unsigned long *size
,
2007 unsigned long *offset
)
2009 unsigned int i
, best
= 0;
2010 unsigned long nextval
;
2012 /* At worse, next value is at end of module */
2013 if (within(addr
, mod
->module_init
, mod
->init_size
))
2014 nextval
= (unsigned long)mod
->module_init
+mod
->init_text_size
;
2016 nextval
= (unsigned long)mod
->module_core
+mod
->core_text_size
;
2018 /* Scan for closest preceeding symbol, and next symbol. (ELF
2019 starts real symbols at 1). */
2020 for (i
= 1; i
< mod
->num_symtab
; i
++) {
2021 if (mod
->symtab
[i
].st_shndx
== SHN_UNDEF
)
2024 /* We ignore unnamed symbols: they're uninformative
2025 * and inserted at a whim. */
2026 if (mod
->symtab
[i
].st_value
<= addr
2027 && mod
->symtab
[i
].st_value
> mod
->symtab
[best
].st_value
2028 && *(mod
->strtab
+ mod
->symtab
[i
].st_name
) != '\0'
2029 && !is_arm_mapping_symbol(mod
->strtab
+ mod
->symtab
[i
].st_name
))
2031 if (mod
->symtab
[i
].st_value
> addr
2032 && mod
->symtab
[i
].st_value
< nextval
2033 && *(mod
->strtab
+ mod
->symtab
[i
].st_name
) != '\0'
2034 && !is_arm_mapping_symbol(mod
->strtab
+ mod
->symtab
[i
].st_name
))
2035 nextval
= mod
->symtab
[i
].st_value
;
2041 *size
= nextval
- mod
->symtab
[best
].st_value
;
2042 *offset
= addr
- mod
->symtab
[best
].st_value
;
2043 return mod
->strtab
+ mod
->symtab
[best
].st_name
;
2046 /* For kallsyms to ask for address resolution. NULL means not found.
2047 We don't lock, as this is used for oops resolution and races are a
2049 const char *module_address_lookup(unsigned long addr
,
2050 unsigned long *size
,
2051 unsigned long *offset
,
2056 list_for_each_entry(mod
, &modules
, list
) {
2057 if (within(addr
, mod
->module_init
, mod
->init_size
)
2058 || within(addr
, mod
->module_core
, mod
->core_size
)) {
2059 *modname
= mod
->name
;
2060 return get_ksymbol(mod
, addr
, size
, offset
);
2066 struct module
*module_get_kallsym(unsigned int symnum
,
2067 unsigned long *value
,
2073 down(&module_mutex
);
2074 list_for_each_entry(mod
, &modules
, list
) {
2075 if (symnum
< mod
->num_symtab
) {
2076 *value
= mod
->symtab
[symnum
].st_value
;
2077 *type
= mod
->symtab
[symnum
].st_info
;
2079 mod
->strtab
+ mod
->symtab
[symnum
].st_name
,
2084 symnum
-= mod
->num_symtab
;
2090 static unsigned long mod_find_symname(struct module
*mod
, const char *name
)
2094 for (i
= 0; i
< mod
->num_symtab
; i
++)
2095 if (strcmp(name
, mod
->strtab
+mod
->symtab
[i
].st_name
) == 0)
2096 return mod
->symtab
[i
].st_value
;
2100 /* Look for this name: can be of form module:name. */
2101 unsigned long module_kallsyms_lookup_name(const char *name
)
2105 unsigned long ret
= 0;
2107 /* Don't lock: we're in enough trouble already. */
2108 if ((colon
= strchr(name
, ':')) != NULL
) {
2110 if ((mod
= find_module(name
)) != NULL
)
2111 ret
= mod_find_symname(mod
, colon
+1);
2114 list_for_each_entry(mod
, &modules
, list
)
2115 if ((ret
= mod_find_symname(mod
, name
)) != 0)
2120 #endif /* CONFIG_KALLSYMS */
2122 /* Called by the /proc file system to return a list of modules. */
2123 static void *m_start(struct seq_file
*m
, loff_t
*pos
)
2125 struct list_head
*i
;
2128 down(&module_mutex
);
2129 list_for_each(i
, &modules
) {
2138 static void *m_next(struct seq_file
*m
, void *p
, loff_t
*pos
)
2140 struct list_head
*i
= p
;
2142 if (i
->next
== &modules
)
2147 static void m_stop(struct seq_file
*m
, void *p
)
2152 static int m_show(struct seq_file
*m
, void *p
)
2154 struct module
*mod
= list_entry(p
, struct module
, list
);
2155 seq_printf(m
, "%s %lu",
2156 mod
->name
, mod
->init_size
+ mod
->core_size
);
2157 print_unload_info(m
, mod
);
2159 /* Informative for users. */
2160 seq_printf(m
, " %s",
2161 mod
->state
== MODULE_STATE_GOING
? "Unloading":
2162 mod
->state
== MODULE_STATE_COMING
? "Loading":
2164 /* Used by oprofile and other similar tools. */
2165 seq_printf(m
, " 0x%p", mod
->module_core
);
2167 seq_printf(m
, "\n");
2171 /* Format: modulename size refcount deps address
2173 Where refcount is a number or -, and deps is a comma-separated list
2176 struct seq_operations modules_op
= {
2183 /* Given an address, look for it in the module exception tables. */
2184 const struct exception_table_entry
*search_module_extables(unsigned long addr
)
2186 unsigned long flags
;
2187 const struct exception_table_entry
*e
= NULL
;
2190 spin_lock_irqsave(&modlist_lock
, flags
);
2191 list_for_each_entry(mod
, &modules
, list
) {
2192 if (mod
->num_exentries
== 0)
2195 e
= search_extable(mod
->extable
,
2196 mod
->extable
+ mod
->num_exentries
- 1,
2201 spin_unlock_irqrestore(&modlist_lock
, flags
);
2203 /* Now, if we found one, we are running inside it now, hence
2204 we cannot unload the module, hence no refcnt needed. */
2208 /* Is this a valid kernel address? We don't grab the lock: we are oopsing. */
2209 struct module
*__module_text_address(unsigned long addr
)
2213 list_for_each_entry(mod
, &modules
, list
)
2214 if (within(addr
, mod
->module_init
, mod
->init_text_size
)
2215 || within(addr
, mod
->module_core
, mod
->core_text_size
))
2220 struct module
*module_text_address(unsigned long addr
)
2223 unsigned long flags
;
2225 spin_lock_irqsave(&modlist_lock
, flags
);
2226 mod
= __module_text_address(addr
);
2227 spin_unlock_irqrestore(&modlist_lock
, flags
);
2232 /* Don't grab lock, we're oopsing. */
2233 void print_modules(void)
2237 printk("Modules linked in:");
2238 list_for_each_entry(mod
, &modules
, list
)
2239 printk(" %s", mod
->name
);
2243 void module_add_driver(struct module
*mod
, struct device_driver
*drv
)
2248 /* Don't check return code; this call is idempotent */
2249 sysfs_create_link(&drv
->kobj
, &mod
->mkobj
.kobj
, "module");
2251 EXPORT_SYMBOL(module_add_driver
);
2253 void module_remove_driver(struct device_driver
*drv
)
2257 sysfs_remove_link(&drv
->kobj
, "module");
2259 EXPORT_SYMBOL(module_remove_driver
);
2261 #ifdef CONFIG_MODVERSIONS
2262 /* Generate the signature for struct module here, too, for modversions. */
2263 void struct_module(struct module
*mod
) { return; }
2264 EXPORT_SYMBOL(struct_module
);