Driver core: fix class glue dir cleanup logic
[linux-2.6-block.git] / kernel / module.c
CommitLineData
f71d20e9 1/*
1da177e4
LT
2 Copyright (C) 2002 Richard Henderson
3 Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM.
4
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.
9
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.
14
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
18*/
1da177e4
LT
19#include <linux/module.h>
20#include <linux/moduleloader.h>
21#include <linux/init.h>
ae84e324 22#include <linux/kallsyms.h>
6d760133 23#include <linux/sysfs.h>
9f158333 24#include <linux/kernel.h>
1da177e4
LT
25#include <linux/slab.h>
26#include <linux/vmalloc.h>
27#include <linux/elf.h>
28#include <linux/seq_file.h>
29#include <linux/syscalls.h>
30#include <linux/fcntl.h>
31#include <linux/rcupdate.h>
c59ede7b 32#include <linux/capability.h>
1da177e4
LT
33#include <linux/cpu.h>
34#include <linux/moduleparam.h>
35#include <linux/errno.h>
36#include <linux/err.h>
37#include <linux/vermagic.h>
38#include <linux/notifier.h>
f6a57033 39#include <linux/sched.h>
1da177e4
LT
40#include <linux/stop_machine.h>
41#include <linux/device.h>
c988d2b2 42#include <linux/string.h>
97d1f15b 43#include <linux/mutex.h>
4552d5dc 44#include <linux/unwind.h>
1da177e4
LT
45#include <asm/uaccess.h>
46#include <asm/semaphore.h>
47#include <asm/cacheflush.h>
b817f6fe 48#include <linux/license.h>
1da177e4
LT
49
50#if 0
51#define DEBUGP printk
52#else
53#define DEBUGP(fmt , a...)
54#endif
55
56#ifndef ARCH_SHF_SMALL
57#define ARCH_SHF_SMALL 0
58#endif
59
60/* If this is set, the section belongs in the init part of the module */
61#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
62
24da1cbf
RR
63/* List of modules, protected by module_mutex or preempt_disable
64 * (add/delete uses stop_machine). */
6389a385 65static DEFINE_MUTEX(module_mutex);
1da177e4
LT
66static LIST_HEAD(modules);
67
e041c683 68static BLOCKING_NOTIFIER_HEAD(module_notify_list);
1da177e4
LT
69
70int register_module_notifier(struct notifier_block * nb)
71{
e041c683 72 return blocking_notifier_chain_register(&module_notify_list, nb);
1da177e4
LT
73}
74EXPORT_SYMBOL(register_module_notifier);
75
76int unregister_module_notifier(struct notifier_block * nb)
77{
e041c683 78 return blocking_notifier_chain_unregister(&module_notify_list, nb);
1da177e4
LT
79}
80EXPORT_SYMBOL(unregister_module_notifier);
81
9a4b9708
ML
82/* We require a truly strong try_module_get(): 0 means failure due to
83 ongoing or failed initialization etc. */
1da177e4
LT
84static inline int strong_try_module_get(struct module *mod)
85{
86 if (mod && mod->state == MODULE_STATE_COMING)
87 return 0;
88 return try_module_get(mod);
89}
90
fa3ba2e8
FM
91static inline void add_taint_module(struct module *mod, unsigned flag)
92{
93 add_taint(flag);
94 mod->taints |= flag;
95}
96
02a3e59a
RD
97/*
98 * A thread that wants to hold a reference to a module only while it
99 * is running can call this to safely exit. nfsd and lockd use this.
1da177e4
LT
100 */
101void __module_put_and_exit(struct module *mod, long code)
102{
103 module_put(mod);
104 do_exit(code);
105}
106EXPORT_SYMBOL(__module_put_and_exit);
22a8bdeb 107
1da177e4
LT
108/* Find a module section: 0 means not found. */
109static unsigned int find_sec(Elf_Ehdr *hdr,
110 Elf_Shdr *sechdrs,
111 const char *secstrings,
112 const char *name)
113{
114 unsigned int i;
115
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;
122}
123
124/* Provided by the linker */
125extern const struct kernel_symbol __start___ksymtab[];
126extern const struct kernel_symbol __stop___ksymtab[];
127extern const struct kernel_symbol __start___ksymtab_gpl[];
128extern const struct kernel_symbol __stop___ksymtab_gpl[];
9f28bb7e
GKH
129extern const struct kernel_symbol __start___ksymtab_gpl_future[];
130extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
f71d20e9
AV
131extern const struct kernel_symbol __start___ksymtab_unused[];
132extern const struct kernel_symbol __stop___ksymtab_unused[];
133extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
134extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
135extern const struct kernel_symbol __start___ksymtab_gpl_future[];
136extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
1da177e4
LT
137extern const unsigned long __start___kcrctab[];
138extern const unsigned long __start___kcrctab_gpl[];
9f28bb7e 139extern const unsigned long __start___kcrctab_gpl_future[];
f71d20e9
AV
140extern const unsigned long __start___kcrctab_unused[];
141extern const unsigned long __start___kcrctab_unused_gpl[];
1da177e4
LT
142
143#ifndef CONFIG_MODVERSIONS
144#define symversion(base, idx) NULL
145#else
f83ca9fe 146#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
1da177e4
LT
147#endif
148
3fd6805f
SR
149/* lookup symbol in given range of kernel_symbols */
150static const struct kernel_symbol *lookup_symbol(const char *name,
151 const struct kernel_symbol *start,
152 const struct kernel_symbol *stop)
153{
154 const struct kernel_symbol *ks = start;
155 for (; ks < stop; ks++)
156 if (strcmp(ks->name, name) == 0)
157 return ks;
158 return NULL;
159}
160
f71d20e9
AV
161static void printk_unused_warning(const char *name)
162{
163 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
164 "however this module is using it.\n", name);
165 printk(KERN_WARNING "This symbol will go away in the future.\n");
166 printk(KERN_WARNING "Please evalute if this is the right api to use, "
167 "and if it really is, submit a report the linux kernel "
168 "mailinglist together with submitting your code for "
169 "inclusion.\n");
170}
171
1da177e4
LT
172/* Find a symbol, return value, crc and module which owns it */
173static unsigned long __find_symbol(const char *name,
174 struct module **owner,
175 const unsigned long **crc,
176 int gplok)
177{
178 struct module *mod;
3fd6805f 179 const struct kernel_symbol *ks;
1da177e4 180
22a8bdeb 181 /* Core kernel first. */
1da177e4 182 *owner = NULL;
3fd6805f
SR
183 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
184 if (ks) {
185 *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
186 return ks->value;
1da177e4
LT
187 }
188 if (gplok) {
3fd6805f
SR
189 ks = lookup_symbol(name, __start___ksymtab_gpl,
190 __stop___ksymtab_gpl);
191 if (ks) {
192 *crc = symversion(__start___kcrctab_gpl,
193 (ks - __start___ksymtab_gpl));
194 return ks->value;
195 }
1da177e4 196 }
9f28bb7e
GKH
197 ks = lookup_symbol(name, __start___ksymtab_gpl_future,
198 __stop___ksymtab_gpl_future);
199 if (ks) {
200 if (!gplok) {
201 printk(KERN_WARNING "Symbol %s is being used "
202 "by a non-GPL module, which will not "
203 "be allowed in the future\n", name);
204 printk(KERN_WARNING "Please see the file "
205 "Documentation/feature-removal-schedule.txt "
206 "in the kernel source tree for more "
207 "details.\n");
208 }
209 *crc = symversion(__start___kcrctab_gpl_future,
210 (ks - __start___ksymtab_gpl_future));
211 return ks->value;
212 }
1da177e4 213
f71d20e9
AV
214 ks = lookup_symbol(name, __start___ksymtab_unused,
215 __stop___ksymtab_unused);
216 if (ks) {
217 printk_unused_warning(name);
218 *crc = symversion(__start___kcrctab_unused,
219 (ks - __start___ksymtab_unused));
220 return ks->value;
221 }
222
223 if (gplok)
224 ks = lookup_symbol(name, __start___ksymtab_unused_gpl,
225 __stop___ksymtab_unused_gpl);
226 if (ks) {
227 printk_unused_warning(name);
228 *crc = symversion(__start___kcrctab_unused_gpl,
229 (ks - __start___ksymtab_unused_gpl));
230 return ks->value;
231 }
232
22a8bdeb 233 /* Now try modules. */
1da177e4
LT
234 list_for_each_entry(mod, &modules, list) {
235 *owner = mod;
3fd6805f
SR
236 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
237 if (ks) {
238 *crc = symversion(mod->crcs, (ks - mod->syms));
239 return ks->value;
240 }
1da177e4
LT
241
242 if (gplok) {
3fd6805f
SR
243 ks = lookup_symbol(name, mod->gpl_syms,
244 mod->gpl_syms + mod->num_gpl_syms);
245 if (ks) {
246 *crc = symversion(mod->gpl_crcs,
247 (ks - mod->gpl_syms));
248 return ks->value;
1da177e4
LT
249 }
250 }
f71d20e9
AV
251 ks = lookup_symbol(name, mod->unused_syms, mod->unused_syms + mod->num_unused_syms);
252 if (ks) {
253 printk_unused_warning(name);
254 *crc = symversion(mod->unused_crcs, (ks - mod->unused_syms));
255 return ks->value;
256 }
257
258 if (gplok) {
259 ks = lookup_symbol(name, mod->unused_gpl_syms,
260 mod->unused_gpl_syms + mod->num_unused_gpl_syms);
261 if (ks) {
262 printk_unused_warning(name);
263 *crc = symversion(mod->unused_gpl_crcs,
264 (ks - mod->unused_gpl_syms));
265 return ks->value;
266 }
267 }
9f28bb7e
GKH
268 ks = lookup_symbol(name, mod->gpl_future_syms,
269 (mod->gpl_future_syms +
270 mod->num_gpl_future_syms));
271 if (ks) {
272 if (!gplok) {
273 printk(KERN_WARNING "Symbol %s is being used "
274 "by a non-GPL module, which will not "
275 "be allowed in the future\n", name);
276 printk(KERN_WARNING "Please see the file "
277 "Documentation/feature-removal-schedule.txt "
278 "in the kernel source tree for more "
279 "details.\n");
280 }
281 *crc = symversion(mod->gpl_future_crcs,
282 (ks - mod->gpl_future_syms));
283 return ks->value;
284 }
1da177e4
LT
285 }
286 DEBUGP("Failed to find symbol %s\n", name);
22a8bdeb 287 return 0;
1da177e4
LT
288}
289
1da177e4
LT
290/* Search for module by name: must hold module_mutex. */
291static struct module *find_module(const char *name)
292{
293 struct module *mod;
294
295 list_for_each_entry(mod, &modules, list) {
296 if (strcmp(mod->name, name) == 0)
297 return mod;
298 }
299 return NULL;
300}
301
302#ifdef CONFIG_SMP
303/* Number of blocks used and allocated. */
304static unsigned int pcpu_num_used, pcpu_num_allocated;
305/* Size of each block. -ve means used. */
306static int *pcpu_size;
307
308static int split_block(unsigned int i, unsigned short size)
309{
310 /* Reallocation required? */
311 if (pcpu_num_used + 1 > pcpu_num_allocated) {
6d4f9c55
PE
312 int *new;
313
314 new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
315 GFP_KERNEL);
1da177e4
LT
316 if (!new)
317 return 0;
318
1da177e4 319 pcpu_num_allocated *= 2;
1da177e4
LT
320 pcpu_size = new;
321 }
322
323 /* Insert a new subblock */
324 memmove(&pcpu_size[i+1], &pcpu_size[i],
325 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
326 pcpu_num_used++;
327
328 pcpu_size[i+1] -= size;
329 pcpu_size[i] = size;
330 return 1;
331}
332
333static inline unsigned int block_size(int val)
334{
335 if (val < 0)
336 return -val;
337 return val;
338}
339
340/* Created by linker magic */
341extern char __per_cpu_start[], __per_cpu_end[];
342
842bbaaa
RR
343static void *percpu_modalloc(unsigned long size, unsigned long align,
344 const char *name)
1da177e4
LT
345{
346 unsigned long extra;
347 unsigned int i;
348 void *ptr;
349
b6e3590f
JF
350 if (align > PAGE_SIZE) {
351 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
352 name, align, PAGE_SIZE);
353 align = PAGE_SIZE;
842bbaaa 354 }
1da177e4
LT
355
356 ptr = __per_cpu_start;
357 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
358 /* Extra for alignment requirement. */
359 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
360 BUG_ON(i == 0 && extra != 0);
361
362 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
363 continue;
364
365 /* Transfer extra to previous block. */
366 if (pcpu_size[i-1] < 0)
367 pcpu_size[i-1] -= extra;
368 else
369 pcpu_size[i-1] += extra;
370 pcpu_size[i] -= extra;
371 ptr += extra;
372
373 /* Split block if warranted */
374 if (pcpu_size[i] - size > sizeof(unsigned long))
375 if (!split_block(i, size))
376 return NULL;
377
378 /* Mark allocated */
379 pcpu_size[i] = -pcpu_size[i];
380 return ptr;
381 }
382
383 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
384 size);
385 return NULL;
386}
387
388static void percpu_modfree(void *freeme)
389{
390 unsigned int i;
391 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
392
393 /* First entry is core kernel percpu data. */
394 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
395 if (ptr == freeme) {
396 pcpu_size[i] = -pcpu_size[i];
397 goto free;
398 }
399 }
400 BUG();
401
402 free:
403 /* Merge with previous? */
404 if (pcpu_size[i-1] >= 0) {
405 pcpu_size[i-1] += pcpu_size[i];
406 pcpu_num_used--;
407 memmove(&pcpu_size[i], &pcpu_size[i+1],
408 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
409 i--;
410 }
411 /* Merge with next? */
412 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
413 pcpu_size[i] += pcpu_size[i+1];
414 pcpu_num_used--;
415 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
416 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
417 }
418}
419
420static unsigned int find_pcpusec(Elf_Ehdr *hdr,
421 Elf_Shdr *sechdrs,
422 const char *secstrings)
423{
424 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
425}
426
427static int percpu_modinit(void)
428{
429 pcpu_num_used = 2;
430 pcpu_num_allocated = 2;
431 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
432 GFP_KERNEL);
433 /* Static in-kernel percpu data (used). */
b00742d3 434 pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
1da177e4
LT
435 /* Free room. */
436 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
437 if (pcpu_size[1] < 0) {
438 printk(KERN_ERR "No per-cpu room for modules.\n");
439 pcpu_num_used = 1;
440 }
441
442 return 0;
22a8bdeb 443}
1da177e4
LT
444__initcall(percpu_modinit);
445#else /* ... !CONFIG_SMP */
842bbaaa
RR
446static inline void *percpu_modalloc(unsigned long size, unsigned long align,
447 const char *name)
1da177e4
LT
448{
449 return NULL;
450}
451static inline void percpu_modfree(void *pcpuptr)
452{
453 BUG();
454}
455static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
456 Elf_Shdr *sechdrs,
457 const char *secstrings)
458{
459 return 0;
460}
461static inline void percpu_modcopy(void *pcpudst, const void *src,
462 unsigned long size)
463{
464 /* pcpusec should be 0, and size of that section should be 0. */
465 BUG_ON(size != 0);
466}
467#endif /* CONFIG_SMP */
468
c988d2b2
MD
469#define MODINFO_ATTR(field) \
470static void setup_modinfo_##field(struct module *mod, const char *s) \
471{ \
472 mod->field = kstrdup(s, GFP_KERNEL); \
473} \
474static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
475 struct module *mod, char *buffer) \
476{ \
477 return sprintf(buffer, "%s\n", mod->field); \
478} \
479static int modinfo_##field##_exists(struct module *mod) \
480{ \
481 return mod->field != NULL; \
482} \
483static void free_modinfo_##field(struct module *mod) \
484{ \
22a8bdeb
DW
485 kfree(mod->field); \
486 mod->field = NULL; \
c988d2b2
MD
487} \
488static struct module_attribute modinfo_##field = { \
7b595756 489 .attr = { .name = __stringify(field), .mode = 0444 }, \
c988d2b2
MD
490 .show = show_modinfo_##field, \
491 .setup = setup_modinfo_##field, \
492 .test = modinfo_##field##_exists, \
493 .free = free_modinfo_##field, \
494};
495
496MODINFO_ATTR(version);
497MODINFO_ATTR(srcversion);
498
03e88ae1 499#ifdef CONFIG_MODULE_UNLOAD
1da177e4
LT
500/* Init the unload section of the module. */
501static void module_unload_init(struct module *mod)
502{
503 unsigned int i;
504
505 INIT_LIST_HEAD(&mod->modules_which_use_me);
506 for (i = 0; i < NR_CPUS; i++)
507 local_set(&mod->ref[i].count, 0);
508 /* Hold reference count during initialization. */
39c715b7 509 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
1da177e4
LT
510 /* Backwards compatibility macros put refcount during init. */
511 mod->waiter = current;
512}
513
514/* modules using other modules */
515struct module_use
516{
517 struct list_head list;
518 struct module *module_which_uses;
519};
520
521/* Does a already use b? */
522static int already_uses(struct module *a, struct module *b)
523{
524 struct module_use *use;
525
526 list_for_each_entry(use, &b->modules_which_use_me, list) {
527 if (use->module_which_uses == a) {
528 DEBUGP("%s uses %s!\n", a->name, b->name);
529 return 1;
530 }
531 }
532 DEBUGP("%s does not use %s!\n", a->name, b->name);
533 return 0;
534}
535
536/* Module a uses b */
537static int use_module(struct module *a, struct module *b)
538{
539 struct module_use *use;
270a6c4c
KS
540 int no_warn;
541
1da177e4
LT
542 if (b == NULL || already_uses(a, b)) return 1;
543
544 if (!strong_try_module_get(b))
545 return 0;
546
547 DEBUGP("Allocating new usage for %s.\n", a->name);
548 use = kmalloc(sizeof(*use), GFP_ATOMIC);
549 if (!use) {
550 printk("%s: out of memory loading\n", a->name);
551 module_put(b);
552 return 0;
553 }
554
555 use->module_which_uses = a;
556 list_add(&use->list, &b->modules_which_use_me);
270a6c4c 557 no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
1da177e4
LT
558 return 1;
559}
560
561/* Clear the unload stuff of the module. */
562static void module_unload_free(struct module *mod)
563{
564 struct module *i;
565
566 list_for_each_entry(i, &modules, list) {
567 struct module_use *use;
568
569 list_for_each_entry(use, &i->modules_which_use_me, list) {
570 if (use->module_which_uses == mod) {
571 DEBUGP("%s unusing %s\n", mod->name, i->name);
572 module_put(i);
573 list_del(&use->list);
574 kfree(use);
270a6c4c 575 sysfs_remove_link(i->holders_dir, mod->name);
1da177e4
LT
576 /* There can be at most one match. */
577 break;
578 }
579 }
580 }
581}
582
583#ifdef CONFIG_MODULE_FORCE_UNLOAD
fb169793 584static inline int try_force_unload(unsigned int flags)
1da177e4
LT
585{
586 int ret = (flags & O_TRUNC);
587 if (ret)
fb169793 588 add_taint(TAINT_FORCED_RMMOD);
1da177e4
LT
589 return ret;
590}
591#else
fb169793 592static inline int try_force_unload(unsigned int flags)
1da177e4
LT
593{
594 return 0;
595}
596#endif /* CONFIG_MODULE_FORCE_UNLOAD */
597
598struct stopref
599{
600 struct module *mod;
601 int flags;
602 int *forced;
603};
604
605/* Whole machine is stopped with interrupts off when this runs. */
606static int __try_stop_module(void *_sref)
607{
608 struct stopref *sref = _sref;
609
610 /* If it's not unused, quit unless we are told to block. */
611 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
fb169793 612 if (!(*sref->forced = try_force_unload(sref->flags)))
1da177e4
LT
613 return -EWOULDBLOCK;
614 }
615
616 /* Mark it as dying. */
617 sref->mod->state = MODULE_STATE_GOING;
618 return 0;
619}
620
621static int try_stop_module(struct module *mod, int flags, int *forced)
622{
623 struct stopref sref = { mod, flags, forced };
624
625 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
626}
627
628unsigned int module_refcount(struct module *mod)
629{
630 unsigned int i, total = 0;
631
632 for (i = 0; i < NR_CPUS; i++)
633 total += local_read(&mod->ref[i].count);
634 return total;
635}
636EXPORT_SYMBOL(module_refcount);
637
638/* This exists whether we can unload or not */
639static void free_module(struct module *mod);
640
641static void wait_for_zero_refcount(struct module *mod)
642{
643 /* Since we might sleep for some time, drop the semaphore first */
6389a385 644 mutex_unlock(&module_mutex);
1da177e4
LT
645 for (;;) {
646 DEBUGP("Looking at refcount...\n");
647 set_current_state(TASK_UNINTERRUPTIBLE);
648 if (module_refcount(mod) == 0)
649 break;
650 schedule();
651 }
652 current->state = TASK_RUNNING;
6389a385 653 mutex_lock(&module_mutex);
1da177e4
LT
654}
655
dfff0a06
GKH
656asmlinkage long
657sys_delete_module(const char __user *name_user, unsigned int flags)
1da177e4
LT
658{
659 struct module *mod;
dfff0a06 660 char name[MODULE_NAME_LEN];
1da177e4
LT
661 int ret, forced = 0;
662
dfff0a06
GKH
663 if (!capable(CAP_SYS_MODULE))
664 return -EPERM;
665
666 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
667 return -EFAULT;
668 name[MODULE_NAME_LEN-1] = '\0';
669
6389a385 670 if (mutex_lock_interruptible(&module_mutex) != 0)
1da177e4
LT
671 return -EINTR;
672
673 mod = find_module(name);
674 if (!mod) {
675 ret = -ENOENT;
676 goto out;
677 }
678
679 if (!list_empty(&mod->modules_which_use_me)) {
680 /* Other modules depend on us: get rid of them first. */
681 ret = -EWOULDBLOCK;
682 goto out;
683 }
684
685 /* Doing init or already dying? */
686 if (mod->state != MODULE_STATE_LIVE) {
687 /* FIXME: if (force), slam module count and wake up
688 waiter --RR */
689 DEBUGP("%s already dying\n", mod->name);
690 ret = -EBUSY;
691 goto out;
692 }
693
694 /* If it has an init func, it must have an exit func to unload */
af49d924 695 if (mod->init && !mod->exit) {
fb169793 696 forced = try_force_unload(flags);
1da177e4
LT
697 if (!forced) {
698 /* This module can't be removed */
699 ret = -EBUSY;
700 goto out;
701 }
702 }
703
704 /* Set this up before setting mod->state */
705 mod->waiter = current;
706
707 /* Stop the machine so refcounts can't move and disable module. */
708 ret = try_stop_module(mod, flags, &forced);
709 if (ret != 0)
710 goto out;
711
712 /* Never wait if forced. */
713 if (!forced && module_refcount(mod) != 0)
714 wait_for_zero_refcount(mod);
715
716 /* Final destruction now noone is using it. */
717 if (mod->exit != NULL) {
6389a385 718 mutex_unlock(&module_mutex);
1da177e4 719 mod->exit();
6389a385 720 mutex_lock(&module_mutex);
1da177e4
LT
721 }
722 free_module(mod);
723
724 out:
6389a385 725 mutex_unlock(&module_mutex);
1da177e4
LT
726 return ret;
727}
728
729static void print_unload_info(struct seq_file *m, struct module *mod)
730{
731 struct module_use *use;
732 int printed_something = 0;
733
734 seq_printf(m, " %u ", module_refcount(mod));
735
736 /* Always include a trailing , so userspace can differentiate
737 between this and the old multi-field proc format. */
738 list_for_each_entry(use, &mod->modules_which_use_me, list) {
739 printed_something = 1;
740 seq_printf(m, "%s,", use->module_which_uses->name);
741 }
742
1da177e4
LT
743 if (mod->init != NULL && mod->exit == NULL) {
744 printed_something = 1;
745 seq_printf(m, "[permanent],");
746 }
747
748 if (!printed_something)
749 seq_printf(m, "-");
750}
751
752void __symbol_put(const char *symbol)
753{
754 struct module *owner;
1da177e4
LT
755 const unsigned long *crc;
756
24da1cbf 757 preempt_disable();
1da177e4
LT
758 if (!__find_symbol(symbol, &owner, &crc, 1))
759 BUG();
760 module_put(owner);
24da1cbf 761 preempt_enable();
1da177e4
LT
762}
763EXPORT_SYMBOL(__symbol_put);
764
765void symbol_put_addr(void *addr)
766{
5e376613 767 struct module *modaddr;
1da177e4 768
5e376613
TP
769 if (core_kernel_text((unsigned long)addr))
770 return;
1da177e4 771
5e376613
TP
772 if (!(modaddr = module_text_address((unsigned long)addr)))
773 BUG();
774 module_put(modaddr);
1da177e4
LT
775}
776EXPORT_SYMBOL_GPL(symbol_put_addr);
777
778static ssize_t show_refcnt(struct module_attribute *mattr,
779 struct module *mod, char *buffer)
780{
256e2fdf 781 return sprintf(buffer, "%u\n", module_refcount(mod));
1da177e4
LT
782}
783
784static struct module_attribute refcnt = {
7b595756 785 .attr = { .name = "refcnt", .mode = 0444 },
1da177e4
LT
786 .show = show_refcnt,
787};
788
f6a57033
AV
789void module_put(struct module *module)
790{
791 if (module) {
792 unsigned int cpu = get_cpu();
793 local_dec(&module->ref[cpu].count);
794 /* Maybe they're waiting for us to drop reference? */
795 if (unlikely(!module_is_live(module)))
796 wake_up_process(module->waiter);
797 put_cpu();
798 }
799}
800EXPORT_SYMBOL(module_put);
801
1da177e4
LT
802#else /* !CONFIG_MODULE_UNLOAD */
803static void print_unload_info(struct seq_file *m, struct module *mod)
804{
805 /* We don't know the usage count, or what modules are using. */
806 seq_printf(m, " - -");
807}
808
809static inline void module_unload_free(struct module *mod)
810{
811}
812
813static inline int use_module(struct module *a, struct module *b)
814{
815 return strong_try_module_get(b);
816}
817
818static inline void module_unload_init(struct module *mod)
819{
820}
821#endif /* CONFIG_MODULE_UNLOAD */
822
1f71740a
KS
823static ssize_t show_initstate(struct module_attribute *mattr,
824 struct module *mod, char *buffer)
825{
826 const char *state = "unknown";
827
828 switch (mod->state) {
829 case MODULE_STATE_LIVE:
830 state = "live";
831 break;
832 case MODULE_STATE_COMING:
833 state = "coming";
834 break;
835 case MODULE_STATE_GOING:
836 state = "going";
837 break;
838 }
839 return sprintf(buffer, "%s\n", state);
840}
841
842static struct module_attribute initstate = {
7b595756 843 .attr = { .name = "initstate", .mode = 0444 },
1f71740a
KS
844 .show = show_initstate,
845};
846
03e88ae1
GKH
847static struct module_attribute *modinfo_attrs[] = {
848 &modinfo_version,
849 &modinfo_srcversion,
1f71740a 850 &initstate,
03e88ae1
GKH
851#ifdef CONFIG_MODULE_UNLOAD
852 &refcnt,
853#endif
854 NULL,
855};
856
1da177e4
LT
857static const char vermagic[] = VERMAGIC_STRING;
858
859#ifdef CONFIG_MODVERSIONS
860static int check_version(Elf_Shdr *sechdrs,
861 unsigned int versindex,
862 const char *symname,
863 struct module *mod,
864 const unsigned long *crc)
865{
866 unsigned int i, num_versions;
867 struct modversion_info *versions;
868
869 /* Exporting module didn't supply crcs? OK, we're already tainted. */
870 if (!crc)
871 return 1;
872
873 versions = (void *) sechdrs[versindex].sh_addr;
874 num_versions = sechdrs[versindex].sh_size
875 / sizeof(struct modversion_info);
876
877 for (i = 0; i < num_versions; i++) {
878 if (strcmp(versions[i].name, symname) != 0)
879 continue;
880
881 if (versions[i].crc == *crc)
882 return 1;
883 printk("%s: disagrees about version of symbol %s\n",
884 mod->name, symname);
885 DEBUGP("Found checksum %lX vs module %lX\n",
886 *crc, versions[i].crc);
887 return 0;
888 }
889 /* Not in module's version table. OK, but that taints the kernel. */
fa3ba2e8 890 if (!(tainted & TAINT_FORCED_MODULE))
1da177e4
LT
891 printk("%s: no version for \"%s\" found: kernel tainted.\n",
892 mod->name, symname);
fa3ba2e8 893 add_taint_module(mod, TAINT_FORCED_MODULE);
1da177e4
LT
894 return 1;
895}
896
897static inline int check_modstruct_version(Elf_Shdr *sechdrs,
898 unsigned int versindex,
899 struct module *mod)
900{
901 const unsigned long *crc;
902 struct module *owner;
903
904 if (!__find_symbol("struct_module", &owner, &crc, 1))
905 BUG();
906 return check_version(sechdrs, versindex, "struct_module", mod,
907 crc);
908}
909
910/* First part is kernel version, which we ignore. */
911static inline int same_magic(const char *amagic, const char *bmagic)
912{
913 amagic += strcspn(amagic, " ");
914 bmagic += strcspn(bmagic, " ");
915 return strcmp(amagic, bmagic) == 0;
916}
917#else
918static inline int check_version(Elf_Shdr *sechdrs,
919 unsigned int versindex,
920 const char *symname,
921 struct module *mod,
922 const unsigned long *crc)
923{
924 return 1;
925}
926
927static inline int check_modstruct_version(Elf_Shdr *sechdrs,
928 unsigned int versindex,
929 struct module *mod)
930{
931 return 1;
932}
933
934static inline int same_magic(const char *amagic, const char *bmagic)
935{
936 return strcmp(amagic, bmagic) == 0;
937}
938#endif /* CONFIG_MODVERSIONS */
939
940/* Resolve a symbol for this module. I.e. if we find one, record usage.
941 Must be holding module_mutex. */
942static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
943 unsigned int versindex,
944 const char *name,
945 struct module *mod)
946{
947 struct module *owner;
948 unsigned long ret;
949 const unsigned long *crc;
950
fa3ba2e8
FM
951 ret = __find_symbol(name, &owner, &crc,
952 !(mod->taints & TAINT_PROPRIETARY_MODULE));
1da177e4 953 if (ret) {
9a4b9708
ML
954 /* use_module can fail due to OOM,
955 or module initialization or unloading */
1da177e4
LT
956 if (!check_version(sechdrs, versindex, name, mod, crc) ||
957 !use_module(mod, owner))
958 ret = 0;
959 }
1da177e4
LT
960 return ret;
961}
962
963
964/*
965 * /sys/module/foo/sections stuff
966 * J. Corbet <corbet@lwn.net>
967 */
968#ifdef CONFIG_KALLSYMS
969static ssize_t module_sect_show(struct module_attribute *mattr,
970 struct module *mod, char *buf)
971{
972 struct module_sect_attr *sattr =
973 container_of(mattr, struct module_sect_attr, mattr);
974 return sprintf(buf, "0x%lx\n", sattr->address);
975}
976
04b1db9f
IN
977static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
978{
979 int section;
980
981 for (section = 0; section < sect_attrs->nsections; section++)
982 kfree(sect_attrs->attrs[section].name);
983 kfree(sect_attrs);
984}
985
1da177e4
LT
986static void add_sect_attrs(struct module *mod, unsigned int nsect,
987 char *secstrings, Elf_Shdr *sechdrs)
988{
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;
22a8bdeb 993
1da177e4
LT
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]);
04b1db9f
IN
1002 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1003 if (sect_attrs == NULL)
1da177e4
LT
1004 return;
1005
1006 /* Setup section attributes. */
1007 sect_attrs->grp.name = "sections";
1008 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1009
04b1db9f 1010 sect_attrs->nsections = 0;
1da177e4
LT
1011 sattr = &sect_attrs->attrs[0];
1012 gattr = &sect_attrs->grp.attrs[0];
1013 for (i = 0; i < nsect; i++) {
1014 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1015 continue;
1016 sattr->address = sechdrs[i].sh_addr;
04b1db9f
IN
1017 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1018 GFP_KERNEL);
1019 if (sattr->name == NULL)
1020 goto out;
1021 sect_attrs->nsections++;
1da177e4
LT
1022 sattr->mattr.show = module_sect_show;
1023 sattr->mattr.store = NULL;
1024 sattr->mattr.attr.name = sattr->name;
1da177e4
LT
1025 sattr->mattr.attr.mode = S_IRUGO;
1026 *(gattr++) = &(sattr++)->mattr.attr;
1027 }
1028 *gattr = NULL;
1029
1030 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1031 goto out;
1032
1033 mod->sect_attrs = sect_attrs;
1034 return;
1035 out:
04b1db9f 1036 free_sect_attrs(sect_attrs);
1da177e4
LT
1037}
1038
1039static void remove_sect_attrs(struct module *mod)
1040{
1041 if (mod->sect_attrs) {
1042 sysfs_remove_group(&mod->mkobj.kobj,
1043 &mod->sect_attrs->grp);
1044 /* We are positive that no one is using any sect attrs
1045 * at this point. Deallocate immediately. */
04b1db9f 1046 free_sect_attrs(mod->sect_attrs);
1da177e4
LT
1047 mod->sect_attrs = NULL;
1048 }
1049}
1050
6d760133
RM
1051/*
1052 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1053 */
1054
1055struct module_notes_attrs {
1056 struct kobject *dir;
1057 unsigned int notes;
1058 struct bin_attribute attrs[0];
1059};
1060
1061static ssize_t module_notes_read(struct kobject *kobj,
1062 struct bin_attribute *bin_attr,
1063 char *buf, loff_t pos, size_t count)
1064{
1065 /*
1066 * The caller checked the pos and count against our size.
1067 */
1068 memcpy(buf, bin_attr->private + pos, count);
1069 return count;
1070}
1071
1072static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1073 unsigned int i)
1074{
1075 if (notes_attrs->dir) {
1076 while (i-- > 0)
1077 sysfs_remove_bin_file(notes_attrs->dir,
1078 &notes_attrs->attrs[i]);
1079 kobject_del(notes_attrs->dir);
1080 }
1081 kfree(notes_attrs);
1082}
1083
1084static void add_notes_attrs(struct module *mod, unsigned int nsect,
1085 char *secstrings, Elf_Shdr *sechdrs)
1086{
1087 unsigned int notes, loaded, i;
1088 struct module_notes_attrs *notes_attrs;
1089 struct bin_attribute *nattr;
1090
1091 /* Count notes sections and allocate structures. */
1092 notes = 0;
1093 for (i = 0; i < nsect; i++)
1094 if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
1095 (sechdrs[i].sh_type == SHT_NOTE))
1096 ++notes;
1097
1098 if (notes == 0)
1099 return;
1100
1101 notes_attrs = kzalloc(sizeof(*notes_attrs)
1102 + notes * sizeof(notes_attrs->attrs[0]),
1103 GFP_KERNEL);
1104 if (notes_attrs == NULL)
1105 return;
1106
1107 notes_attrs->notes = notes;
1108 nattr = &notes_attrs->attrs[0];
1109 for (loaded = i = 0; i < nsect; ++i) {
1110 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1111 continue;
1112 if (sechdrs[i].sh_type == SHT_NOTE) {
1113 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1114 nattr->attr.mode = S_IRUGO;
1115 nattr->size = sechdrs[i].sh_size;
1116 nattr->private = (void *) sechdrs[i].sh_addr;
1117 nattr->read = module_notes_read;
1118 ++nattr;
1119 }
1120 ++loaded;
1121 }
1122
4ff6abff 1123 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
6d760133
RM
1124 if (!notes_attrs->dir)
1125 goto out;
1126
1127 for (i = 0; i < notes; ++i)
1128 if (sysfs_create_bin_file(notes_attrs->dir,
1129 &notes_attrs->attrs[i]))
1130 goto out;
1131
1132 mod->notes_attrs = notes_attrs;
1133 return;
1134
1135 out:
1136 free_notes_attrs(notes_attrs, i);
1137}
1138
1139static void remove_notes_attrs(struct module *mod)
1140{
1141 if (mod->notes_attrs)
1142 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1143}
1144
1da177e4 1145#else
04b1db9f 1146
1da177e4
LT
1147static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1148 char *sectstrings, Elf_Shdr *sechdrs)
1149{
1150}
1151
1152static inline void remove_sect_attrs(struct module *mod)
1153{
1154}
6d760133
RM
1155
1156static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1157 char *sectstrings, Elf_Shdr *sechdrs)
1158{
1159}
1160
1161static inline void remove_notes_attrs(struct module *mod)
1162{
1163}
1da177e4
LT
1164#endif /* CONFIG_KALLSYMS */
1165
ef665c1a
RD
1166#ifdef CONFIG_SYSFS
1167int module_add_modinfo_attrs(struct module *mod)
c988d2b2
MD
1168{
1169 struct module_attribute *attr;
03e88ae1 1170 struct module_attribute *temp_attr;
c988d2b2
MD
1171 int error = 0;
1172 int i;
1173
03e88ae1
GKH
1174 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1175 (ARRAY_SIZE(modinfo_attrs) + 1)),
1176 GFP_KERNEL);
1177 if (!mod->modinfo_attrs)
1178 return -ENOMEM;
1179
1180 temp_attr = mod->modinfo_attrs;
c988d2b2
MD
1181 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1182 if (!attr->test ||
03e88ae1
GKH
1183 (attr->test && attr->test(mod))) {
1184 memcpy(temp_attr, attr, sizeof(*temp_attr));
03e88ae1
GKH
1185 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1186 ++temp_attr;
1187 }
c988d2b2
MD
1188 }
1189 return error;
1190}
1191
ef665c1a 1192void module_remove_modinfo_attrs(struct module *mod)
c988d2b2
MD
1193{
1194 struct module_attribute *attr;
1195 int i;
1196
03e88ae1
GKH
1197 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1198 /* pick a field to test for end of list */
1199 if (!attr->attr.name)
1200 break;
c988d2b2 1201 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
03e88ae1
GKH
1202 if (attr->free)
1203 attr->free(mod);
c988d2b2 1204 }
03e88ae1 1205 kfree(mod->modinfo_attrs);
c988d2b2 1206}
ef665c1a 1207#endif
1da177e4 1208
ef665c1a
RD
1209#ifdef CONFIG_SYSFS
1210int mod_sysfs_init(struct module *mod)
1da177e4
LT
1211{
1212 int err;
1213
823bccfc
GKH
1214 if (!module_sysfs_initialized) {
1215 printk(KERN_ERR "%s: module sysfs not initialized\n",
1cc5f714
ES
1216 mod->name);
1217 err = -EINVAL;
1218 goto out;
1219 }
1da177e4
LT
1220 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1221 err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
1222 if (err)
1223 goto out;
7405c1e1
GKH
1224 mod->mkobj.kobj.kset = module_kset;
1225 mod->mkobj.kobj.ktype = &module_ktype;
1da177e4 1226 mod->mkobj.mod = mod;
e17e0f51 1227
e17e0f51 1228 kobject_init(&mod->mkobj.kobj);
270a6c4c
KS
1229
1230out:
1231 return err;
1232}
1233
ef665c1a 1234int mod_sysfs_setup(struct module *mod,
270a6c4c
KS
1235 struct kernel_param *kparam,
1236 unsigned int num_params)
1237{
1238 int err;
1239
1240 /* delay uevent until full sysfs population */
e17e0f51 1241 err = kobject_add(&mod->mkobj.kobj);
1da177e4
LT
1242 if (err)
1243 goto out;
1244
4ff6abff 1245 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
240936e1
AM
1246 if (!mod->holders_dir) {
1247 err = -ENOMEM;
270a6c4c 1248 goto out_unreg;
240936e1 1249 }
270a6c4c 1250
1da177e4
LT
1251 err = module_param_sysfs_setup(mod, kparam, num_params);
1252 if (err)
270a6c4c 1253 goto out_unreg_holders;
1da177e4 1254
c988d2b2
MD
1255 err = module_add_modinfo_attrs(mod);
1256 if (err)
e17e0f51 1257 goto out_unreg_param;
c988d2b2 1258
e17e0f51 1259 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
1da177e4
LT
1260 return 0;
1261
e17e0f51
KS
1262out_unreg_param:
1263 module_param_sysfs_remove(mod);
270a6c4c
KS
1264out_unreg_holders:
1265 kobject_unregister(mod->holders_dir);
1266out_unreg:
e17e0f51
KS
1267 kobject_del(&mod->mkobj.kobj);
1268 kobject_put(&mod->mkobj.kobj);
1da177e4
LT
1269out:
1270 return err;
1271}
ef665c1a 1272#endif
1da177e4
LT
1273
1274static void mod_kobject_remove(struct module *mod)
1275{
c988d2b2 1276 module_remove_modinfo_attrs(mod);
1da177e4 1277 module_param_sysfs_remove(mod);
b92be9f1
MK
1278 kobject_unregister(mod->mkobj.drivers_dir);
1279 kobject_unregister(mod->holders_dir);
1da177e4
LT
1280 kobject_unregister(&mod->mkobj.kobj);
1281}
1282
1283/*
1284 * unlink the module with the whole machine is stopped with interrupts off
1285 * - this defends against kallsyms not taking locks
1286 */
1287static int __unlink_module(void *_mod)
1288{
1289 struct module *mod = _mod;
1290 list_del(&mod->list);
1291 return 0;
1292}
1293
02a3e59a 1294/* Free a module, remove from lists, etc (must hold module_mutex). */
1da177e4
LT
1295static void free_module(struct module *mod)
1296{
1297 /* Delete from various lists */
1298 stop_machine_run(__unlink_module, mod, NR_CPUS);
6d760133 1299 remove_notes_attrs(mod);
1da177e4
LT
1300 remove_sect_attrs(mod);
1301 mod_kobject_remove(mod);
1302
4552d5dc
JB
1303 unwind_remove_table(mod->unwind_info, 0);
1304
1da177e4
LT
1305 /* Arch-specific cleanup. */
1306 module_arch_cleanup(mod);
1307
1308 /* Module unload stuff */
1309 module_unload_free(mod);
1310
1311 /* This may be NULL, but that's OK */
1312 module_free(mod, mod->module_init);
1313 kfree(mod->args);
1314 if (mod->percpu)
1315 percpu_modfree(mod->percpu);
1316
fbb9ce95
IM
1317 /* Free lock-classes: */
1318 lockdep_free_key_range(mod->module_core, mod->core_size);
1319
1da177e4
LT
1320 /* Finally, free the core (containing the module structure) */
1321 module_free(mod, mod->module_core);
1322}
1323
1324void *__symbol_get(const char *symbol)
1325{
1326 struct module *owner;
24da1cbf 1327 unsigned long value;
1da177e4
LT
1328 const unsigned long *crc;
1329
24da1cbf 1330 preempt_disable();
1da177e4
LT
1331 value = __find_symbol(symbol, &owner, &crc, 1);
1332 if (value && !strong_try_module_get(owner))
1333 value = 0;
24da1cbf 1334 preempt_enable();
1da177e4
LT
1335
1336 return (void *)value;
1337}
1338EXPORT_SYMBOL_GPL(__symbol_get);
1339
eea8b54d
AN
1340/*
1341 * Ensure that an exported symbol [global namespace] does not already exist
02a3e59a 1342 * in the kernel or in some other module's exported symbol table.
eea8b54d
AN
1343 */
1344static int verify_export_symbols(struct module *mod)
1345{
1346 const char *name = NULL;
1347 unsigned long i, ret = 0;
1348 struct module *owner;
1349 const unsigned long *crc;
1350
1351 for (i = 0; i < mod->num_syms; i++)
22a8bdeb 1352 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
eea8b54d
AN
1353 name = mod->syms[i].name;
1354 ret = -ENOEXEC;
1355 goto dup;
1356 }
1357
1358 for (i = 0; i < mod->num_gpl_syms; i++)
22a8bdeb 1359 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
eea8b54d
AN
1360 name = mod->gpl_syms[i].name;
1361 ret = -ENOEXEC;
1362 goto dup;
1363 }
1364
1365dup:
1366 if (ret)
1367 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1368 mod->name, name, module_name(owner));
1369
1370 return ret;
1371}
1372
9a4b9708 1373/* Change all symbols so that st_value encodes the pointer directly. */
1da177e4
LT
1374static int simplify_symbols(Elf_Shdr *sechdrs,
1375 unsigned int symindex,
1376 const char *strtab,
1377 unsigned int versindex,
1378 unsigned int pcpuindex,
1379 struct module *mod)
1380{
1381 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1382 unsigned long secbase;
1383 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1384 int ret = 0;
1385
1386 for (i = 1; i < n; i++) {
1387 switch (sym[i].st_shndx) {
1388 case SHN_COMMON:
1389 /* We compiled with -fno-common. These are not
1390 supposed to happen. */
1391 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1392 printk("%s: please compile with -fno-common\n",
1393 mod->name);
1394 ret = -ENOEXEC;
1395 break;
1396
1397 case SHN_ABS:
1398 /* Don't need to do anything */
1399 DEBUGP("Absolute symbol: 0x%08lx\n",
1400 (long)sym[i].st_value);
1401 break;
1402
1403 case SHN_UNDEF:
1404 sym[i].st_value
1405 = resolve_symbol(sechdrs, versindex,
1406 strtab + sym[i].st_name, mod);
1407
1408 /* Ok if resolved. */
1409 if (sym[i].st_value != 0)
1410 break;
1411 /* Ok if weak. */
1412 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1413 break;
1414
1415 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1416 mod->name, strtab + sym[i].st_name);
1417 ret = -ENOENT;
1418 break;
1419
1420 default:
1421 /* Divert to percpu allocation if a percpu var. */
1422 if (sym[i].st_shndx == pcpuindex)
1423 secbase = (unsigned long)mod->percpu;
1424 else
1425 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1426 sym[i].st_value += secbase;
1427 break;
1428 }
1429 }
1430
1431 return ret;
1432}
1433
1434/* Update size with this section: return offset. */
1435static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1436{
1437 long ret;
1438
1439 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1440 *size = ret + sechdr->sh_size;
1441 return ret;
1442}
1443
1444/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1445 might -- code, read-only data, read-write data, small data. Tally
1446 sizes, and place the offsets into sh_entsize fields: high bit means it
1447 belongs in init. */
1448static void layout_sections(struct module *mod,
1449 const Elf_Ehdr *hdr,
1450 Elf_Shdr *sechdrs,
1451 const char *secstrings)
1452{
1453 static unsigned long const masks[][2] = {
1454 /* NOTE: all executable code must be the first section
1455 * in this array; otherwise modify the text_size
1456 * finder in the two loops below */
1457 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1458 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1459 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1460 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1461 };
1462 unsigned int m, i;
1463
1464 for (i = 0; i < hdr->e_shnum; i++)
1465 sechdrs[i].sh_entsize = ~0UL;
1466
1467 DEBUGP("Core section allocation order:\n");
1468 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1469 for (i = 0; i < hdr->e_shnum; ++i) {
1470 Elf_Shdr *s = &sechdrs[i];
1471
1472 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1473 || (s->sh_flags & masks[m][1])
1474 || s->sh_entsize != ~0UL
1475 || strncmp(secstrings + s->sh_name,
1476 ".init", 5) == 0)
1477 continue;
1478 s->sh_entsize = get_offset(&mod->core_size, s);
1479 DEBUGP("\t%s\n", secstrings + s->sh_name);
1480 }
1481 if (m == 0)
1482 mod->core_text_size = mod->core_size;
1483 }
1484
1485 DEBUGP("Init section allocation order:\n");
1486 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1487 for (i = 0; i < hdr->e_shnum; ++i) {
1488 Elf_Shdr *s = &sechdrs[i];
1489
1490 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1491 || (s->sh_flags & masks[m][1])
1492 || s->sh_entsize != ~0UL
1493 || strncmp(secstrings + s->sh_name,
1494 ".init", 5) != 0)
1495 continue;
1496 s->sh_entsize = (get_offset(&mod->init_size, s)
1497 | INIT_OFFSET_MASK);
1498 DEBUGP("\t%s\n", secstrings + s->sh_name);
1499 }
1500 if (m == 0)
1501 mod->init_text_size = mod->init_size;
1502 }
1503}
1504
1da177e4
LT
1505static void set_license(struct module *mod, const char *license)
1506{
1507 if (!license)
1508 license = "unspecified";
1509
fa3ba2e8
FM
1510 if (!license_is_gpl_compatible(license)) {
1511 if (!(tainted & TAINT_PROPRIETARY_MODULE))
1d4d2627 1512 printk(KERN_WARNING "%s: module license '%s' taints "
fa3ba2e8
FM
1513 "kernel.\n", mod->name, license);
1514 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
1da177e4
LT
1515 }
1516}
1517
1518/* Parse tag=value strings from .modinfo section */
1519static char *next_string(char *string, unsigned long *secsize)
1520{
1521 /* Skip non-zero chars */
1522 while (string[0]) {
1523 string++;
1524 if ((*secsize)-- <= 1)
1525 return NULL;
1526 }
1527
1528 /* Skip any zero padding. */
1529 while (!string[0]) {
1530 string++;
1531 if ((*secsize)-- <= 1)
1532 return NULL;
1533 }
1534 return string;
1535}
1536
1537static char *get_modinfo(Elf_Shdr *sechdrs,
1538 unsigned int info,
1539 const char *tag)
1540{
1541 char *p;
1542 unsigned int taglen = strlen(tag);
1543 unsigned long size = sechdrs[info].sh_size;
1544
1545 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1546 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1547 return p + taglen + 1;
1548 }
1549 return NULL;
1550}
1551
c988d2b2
MD
1552static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1553 unsigned int infoindex)
1554{
1555 struct module_attribute *attr;
1556 int i;
1557
1558 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1559 if (attr->setup)
1560 attr->setup(mod,
1561 get_modinfo(sechdrs,
1562 infoindex,
1563 attr->attr.name));
1564 }
1565}
c988d2b2 1566
1da177e4 1567#ifdef CONFIG_KALLSYMS
ea07890a 1568static int is_exported(const char *name, const struct module *mod)
1da177e4 1569{
3fd6805f
SR
1570 if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1571 return 1;
1572 else
f867d2a2 1573 if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
1da177e4 1574 return 1;
3fd6805f
SR
1575 else
1576 return 0;
1da177e4
LT
1577}
1578
1579/* As per nm */
1580static char elf_type(const Elf_Sym *sym,
1581 Elf_Shdr *sechdrs,
1582 const char *secstrings,
1583 struct module *mod)
1584{
1585 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1586 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1587 return 'v';
1588 else
1589 return 'w';
1590 }
1591 if (sym->st_shndx == SHN_UNDEF)
1592 return 'U';
1593 if (sym->st_shndx == SHN_ABS)
1594 return 'a';
1595 if (sym->st_shndx >= SHN_LORESERVE)
1596 return '?';
1597 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1598 return 't';
1599 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1600 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1601 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1602 return 'r';
1603 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1604 return 'g';
1605 else
1606 return 'd';
1607 }
1608 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1609 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1610 return 's';
1611 else
1612 return 'b';
1613 }
1614 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1615 ".debug", strlen(".debug")) == 0)
1616 return 'n';
1617 return '?';
1618}
1619
1620static void add_kallsyms(struct module *mod,
1621 Elf_Shdr *sechdrs,
1622 unsigned int symindex,
1623 unsigned int strindex,
1624 const char *secstrings)
1625{
1626 unsigned int i;
1627
1628 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1629 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1630 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1631
1632 /* Set types up while we still have access to sections. */
1633 for (i = 0; i < mod->num_symtab; i++)
1634 mod->symtab[i].st_info
1635 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1636}
1637#else
1638static inline void add_kallsyms(struct module *mod,
1639 Elf_Shdr *sechdrs,
1640 unsigned int symindex,
1641 unsigned int strindex,
1642 const char *secstrings)
1643{
1644}
1645#endif /* CONFIG_KALLSYMS */
1646
1647/* Allocate and load the module: note that size of section 0 is always
1648 zero, and we rely on this for optional sections. */
1649static struct module *load_module(void __user *umod,
1650 unsigned long len,
1651 const char __user *uargs)
1652{
1653 Elf_Ehdr *hdr;
1654 Elf_Shdr *sechdrs;
1655 char *secstrings, *args, *modmagic, *strtab = NULL;
84860f99
AM
1656 unsigned int i;
1657 unsigned int symindex = 0;
1658 unsigned int strindex = 0;
1659 unsigned int setupindex;
1660 unsigned int exindex;
1661 unsigned int exportindex;
1662 unsigned int modindex;
1663 unsigned int obsparmindex;
1664 unsigned int infoindex;
1665 unsigned int gplindex;
1666 unsigned int crcindex;
1667 unsigned int gplcrcindex;
1668 unsigned int versindex;
1669 unsigned int pcpuindex;
1670 unsigned int gplfutureindex;
1671 unsigned int gplfuturecrcindex;
1672 unsigned int unwindex = 0;
1673 unsigned int unusedindex;
1674 unsigned int unusedcrcindex;
1675 unsigned int unusedgplindex;
1676 unsigned int unusedgplcrcindex;
8256e47c
MD
1677 unsigned int markersindex;
1678 unsigned int markersstringsindex;
1da177e4
LT
1679 struct module *mod;
1680 long err = 0;
1681 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1682 struct exception_table_entry *extable;
378bac82 1683 mm_segment_t old_fs;
1da177e4
LT
1684
1685 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1686 umod, len, uargs);
1687 if (len < sizeof(*hdr))
1688 return ERR_PTR(-ENOEXEC);
1689
1690 /* Suck in entire file: we'll want most of it. */
1691 /* vmalloc barfs on "unusual" numbers. Check here */
1692 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1693 return ERR_PTR(-ENOMEM);
1694 if (copy_from_user(hdr, umod, len) != 0) {
1695 err = -EFAULT;
1696 goto free_hdr;
1697 }
1698
1699 /* Sanity checks against insmoding binaries or wrong arch,
1700 weird elf version */
1701 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1702 || hdr->e_type != ET_REL
1703 || !elf_check_arch(hdr)
1704 || hdr->e_shentsize != sizeof(*sechdrs)) {
1705 err = -ENOEXEC;
1706 goto free_hdr;
1707 }
1708
1709 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1710 goto truncated;
1711
1712 /* Convenience variables */
1713 sechdrs = (void *)hdr + hdr->e_shoff;
1714 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1715 sechdrs[0].sh_addr = 0;
1716
1717 for (i = 1; i < hdr->e_shnum; i++) {
1718 if (sechdrs[i].sh_type != SHT_NOBITS
1719 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1720 goto truncated;
1721
1722 /* Mark all sections sh_addr with their address in the
1723 temporary image. */
1724 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1725
1726 /* Internal symbols and strings. */
1727 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1728 symindex = i;
1729 strindex = sechdrs[i].sh_link;
1730 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1731 }
1732#ifndef CONFIG_MODULE_UNLOAD
1733 /* Don't load .exit sections */
1734 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1735 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1736#endif
1737 }
1738
1739 modindex = find_sec(hdr, sechdrs, secstrings,
1740 ".gnu.linkonce.this_module");
1741 if (!modindex) {
1742 printk(KERN_WARNING "No module found in object\n");
1743 err = -ENOEXEC;
1744 goto free_hdr;
1745 }
1746 mod = (void *)sechdrs[modindex].sh_addr;
1747
1748 if (symindex == 0) {
1749 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1750 mod->name);
1751 err = -ENOEXEC;
1752 goto free_hdr;
1753 }
1754
1755 /* Optional sections */
1756 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1757 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
9f28bb7e 1758 gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
f71d20e9
AV
1759 unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
1760 unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
1da177e4
LT
1761 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1762 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
9f28bb7e 1763 gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
f71d20e9
AV
1764 unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
1765 unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
1da177e4
LT
1766 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1767 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1768 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1769 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1770 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1771 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
4552d5dc
JB
1772#ifdef ARCH_UNWIND_SECTION_NAME
1773 unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
1774#endif
1da177e4
LT
1775
1776 /* Don't keep modinfo section */
1777 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1778#ifdef CONFIG_KALLSYMS
1779 /* Keep symbol and string tables for decoding later. */
1780 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1781 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1782#endif
4552d5dc
JB
1783 if (unwindex)
1784 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
1da177e4
LT
1785
1786 /* Check module struct version now, before we try to use module. */
1787 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1788 err = -ENOEXEC;
1789 goto free_hdr;
1790 }
1791
1792 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1793 /* This is allowed: modprobe --force will invalidate it. */
1794 if (!modmagic) {
fa3ba2e8 1795 add_taint_module(mod, TAINT_FORCED_MODULE);
1da177e4
LT
1796 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1797 mod->name);
1798 } else if (!same_magic(modmagic, vermagic)) {
1799 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1800 mod->name, modmagic, vermagic);
1801 err = -ENOEXEC;
1802 goto free_hdr;
1803 }
1804
1805 /* Now copy in args */
24277dda
DA
1806 args = strndup_user(uargs, ~0UL >> 1);
1807 if (IS_ERR(args)) {
1808 err = PTR_ERR(args);
1da177e4
LT
1809 goto free_hdr;
1810 }
8e08b756 1811
1da177e4
LT
1812 if (find_module(mod->name)) {
1813 err = -EEXIST;
1814 goto free_mod;
1815 }
1816
1817 mod->state = MODULE_STATE_COMING;
1818
1819 /* Allow arches to frob section contents and sizes. */
1820 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1821 if (err < 0)
1822 goto free_mod;
1823
1824 if (pcpuindex) {
1825 /* We have a special allocation for this section. */
1826 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
842bbaaa
RR
1827 sechdrs[pcpuindex].sh_addralign,
1828 mod->name);
1da177e4
LT
1829 if (!percpu) {
1830 err = -ENOMEM;
1831 goto free_mod;
1832 }
1833 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1834 mod->percpu = percpu;
1835 }
1836
1837 /* Determine total sizes, and put offsets in sh_entsize. For now
1838 this is done generically; there doesn't appear to be any
1839 special cases for the architectures. */
1840 layout_sections(mod, hdr, sechdrs, secstrings);
1841
1842 /* Do the allocs. */
1843 ptr = module_alloc(mod->core_size);
1844 if (!ptr) {
1845 err = -ENOMEM;
1846 goto free_percpu;
1847 }
1848 memset(ptr, 0, mod->core_size);
1849 mod->module_core = ptr;
1850
1851 ptr = module_alloc(mod->init_size);
1852 if (!ptr && mod->init_size) {
1853 err = -ENOMEM;
1854 goto free_core;
1855 }
1856 memset(ptr, 0, mod->init_size);
1857 mod->module_init = ptr;
1858
1859 /* Transfer each section which specifies SHF_ALLOC */
1860 DEBUGP("final section addresses:\n");
1861 for (i = 0; i < hdr->e_shnum; i++) {
1862 void *dest;
1863
1864 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1865 continue;
1866
1867 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1868 dest = mod->module_init
1869 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1870 else
1871 dest = mod->module_core + sechdrs[i].sh_entsize;
1872
1873 if (sechdrs[i].sh_type != SHT_NOBITS)
1874 memcpy(dest, (void *)sechdrs[i].sh_addr,
1875 sechdrs[i].sh_size);
1876 /* Update sh_addr to point to copy in image. */
1877 sechdrs[i].sh_addr = (unsigned long)dest;
1878 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1879 }
1880 /* Module has been moved. */
1881 mod = (void *)sechdrs[modindex].sh_addr;
1882
1883 /* Now we've moved module, initialize linked lists, etc. */
1884 module_unload_init(mod);
1885
270a6c4c 1886 /* Initialize kobject, so we can reference it. */
d58ae678
AM
1887 err = mod_sysfs_init(mod);
1888 if (err)
270a6c4c
KS
1889 goto cleanup;
1890
1da177e4
LT
1891 /* Set up license info based on the info section */
1892 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1893
fa3ba2e8 1894 if (strcmp(mod->name, "ndiswrapper") == 0)
0e2d57fc 1895 add_taint(TAINT_PROPRIETARY_MODULE);
fa3ba2e8
FM
1896 if (strcmp(mod->name, "driverloader") == 0)
1897 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
9841d61d 1898
c988d2b2
MD
1899 /* Set up MODINFO_ATTR fields */
1900 setup_modinfo(mod, sechdrs, infoindex);
c988d2b2 1901
1da177e4
LT
1902 /* Fix up syms, so that st_value is a pointer to location. */
1903 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1904 mod);
1905 if (err < 0)
1906 goto cleanup;
1907
1908 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1909 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1910 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1911 if (crcindex)
1912 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1913 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1914 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1915 if (gplcrcindex)
1916 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
9f28bb7e
GKH
1917 mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
1918 sizeof(*mod->gpl_future_syms);
f71d20e9
AV
1919 mod->num_unused_syms = sechdrs[unusedindex].sh_size /
1920 sizeof(*mod->unused_syms);
1921 mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
1922 sizeof(*mod->unused_gpl_syms);
9f28bb7e
GKH
1923 mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
1924 if (gplfuturecrcindex)
1925 mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
1da177e4 1926
f71d20e9
AV
1927 mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
1928 if (unusedcrcindex)
1929 mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
1930 mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
1931 if (unusedgplcrcindex)
1932 mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
1933
1da177e4 1934#ifdef CONFIG_MODVERSIONS
22a8bdeb 1935 if ((mod->num_syms && !crcindex) ||
9f28bb7e 1936 (mod->num_gpl_syms && !gplcrcindex) ||
f71d20e9
AV
1937 (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
1938 (mod->num_unused_syms && !unusedcrcindex) ||
1939 (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
1da177e4
LT
1940 printk(KERN_WARNING "%s: No versions for exported symbols."
1941 " Tainting kernel.\n", mod->name);
fa3ba2e8 1942 add_taint_module(mod, TAINT_FORCED_MODULE);
1da177e4
LT
1943 }
1944#endif
8256e47c
MD
1945 markersindex = find_sec(hdr, sechdrs, secstrings, "__markers");
1946 markersstringsindex = find_sec(hdr, sechdrs, secstrings,
1947 "__markers_strings");
1da177e4
LT
1948
1949 /* Now do relocations. */
1950 for (i = 1; i < hdr->e_shnum; i++) {
1951 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1952 unsigned int info = sechdrs[i].sh_info;
1953
1954 /* Not a valid relocation section? */
1955 if (info >= hdr->e_shnum)
1956 continue;
1957
1958 /* Don't bother with non-allocated sections */
1959 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1960 continue;
1961
1962 if (sechdrs[i].sh_type == SHT_REL)
1963 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1964 else if (sechdrs[i].sh_type == SHT_RELA)
1965 err = apply_relocate_add(sechdrs, strtab, symindex, i,
1966 mod);
1967 if (err < 0)
1968 goto cleanup;
1969 }
8256e47c
MD
1970#ifdef CONFIG_MARKERS
1971 mod->markers = (void *)sechdrs[markersindex].sh_addr;
1972 mod->num_markers =
1973 sechdrs[markersindex].sh_size / sizeof(*mod->markers);
1974#endif
1da177e4 1975
eea8b54d
AN
1976 /* Find duplicate symbols */
1977 err = verify_export_symbols(mod);
1978
1979 if (err < 0)
1980 goto cleanup;
1981
1da177e4
LT
1982 /* Set up and sort exception table */
1983 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
1984 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
1985 sort_extable(extable, extable + mod->num_exentries);
1986
1987 /* Finally, copy percpu area over. */
1988 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
1989 sechdrs[pcpuindex].sh_size);
1990
1991 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
1992
8256e47c
MD
1993#ifdef CONFIG_MARKERS
1994 if (!mod->taints)
1995 marker_update_probe_range(mod->markers,
1996 mod->markers + mod->num_markers, NULL, NULL);
1997#endif
1da177e4
LT
1998 err = module_finalize(hdr, sechdrs, mod);
1999 if (err < 0)
2000 goto cleanup;
2001
378bac82
TK
2002 /* flush the icache in correct context */
2003 old_fs = get_fs();
2004 set_fs(KERNEL_DS);
2005
2006 /*
2007 * Flush the instruction cache, since we've played with text.
2008 * Do it before processing of module parameters, so the module
2009 * can provide parameter accessor functions of its own.
2010 */
2011 if (mod->module_init)
2012 flush_icache_range((unsigned long)mod->module_init,
2013 (unsigned long)mod->module_init
2014 + mod->init_size);
2015 flush_icache_range((unsigned long)mod->module_core,
2016 (unsigned long)mod->module_core + mod->core_size);
2017
2018 set_fs(old_fs);
2019
1da177e4 2020 mod->args = args;
8d3b33f6
RR
2021 if (obsparmindex)
2022 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2023 mod->name);
2024
2025 /* Size of section 0 is 0, so this works well if no params */
2026 err = parse_args(mod->name, mod->args,
2027 (struct kernel_param *)
2028 sechdrs[setupindex].sh_addr,
2029 sechdrs[setupindex].sh_size
2030 / sizeof(struct kernel_param),
2031 NULL);
1da177e4
LT
2032 if (err < 0)
2033 goto arch_cleanup;
2034
22a8bdeb 2035 err = mod_sysfs_setup(mod,
1da177e4
LT
2036 (struct kernel_param *)
2037 sechdrs[setupindex].sh_addr,
2038 sechdrs[setupindex].sh_size
2039 / sizeof(struct kernel_param));
2040 if (err < 0)
2041 goto arch_cleanup;
2042 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
6d760133 2043 add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
1da177e4 2044
4552d5dc
JB
2045 /* Size of section 0 is 0, so this works well if no unwind info. */
2046 mod->unwind_info = unwind_add_table(mod,
22a8bdeb
DW
2047 (void *)sechdrs[unwindex].sh_addr,
2048 sechdrs[unwindex].sh_size);
4552d5dc 2049
1da177e4
LT
2050 /* Get rid of temporary copy */
2051 vfree(hdr);
2052
2053 /* Done! */
2054 return mod;
2055
2056 arch_cleanup:
2057 module_arch_cleanup(mod);
2058 cleanup:
2059 module_unload_free(mod);
2060 module_free(mod, mod->module_init);
2061 free_core:
2062 module_free(mod, mod->module_core);
2063 free_percpu:
2064 if (percpu)
2065 percpu_modfree(percpu);
2066 free_mod:
2067 kfree(args);
2068 free_hdr:
2069 vfree(hdr);
6fe2e70b 2070 return ERR_PTR(err);
1da177e4
LT
2071
2072 truncated:
2073 printk(KERN_ERR "Module len %lu truncated\n", len);
2074 err = -ENOEXEC;
2075 goto free_hdr;
2076}
2077
2078/*
2079 * link the module with the whole machine is stopped with interrupts off
2080 * - this defends against kallsyms not taking locks
2081 */
2082static int __link_module(void *_mod)
2083{
2084 struct module *mod = _mod;
2085 list_add(&mod->list, &modules);
2086 return 0;
2087}
2088
2089/* This is where the real work happens */
2090asmlinkage long
2091sys_init_module(void __user *umod,
2092 unsigned long len,
2093 const char __user *uargs)
2094{
2095 struct module *mod;
2096 int ret = 0;
2097
2098 /* Must have permission */
2099 if (!capable(CAP_SYS_MODULE))
2100 return -EPERM;
2101
2102 /* Only one module load at a time, please */
6389a385 2103 if (mutex_lock_interruptible(&module_mutex) != 0)
1da177e4
LT
2104 return -EINTR;
2105
2106 /* Do all the hard work */
2107 mod = load_module(umod, len, uargs);
2108 if (IS_ERR(mod)) {
6389a385 2109 mutex_unlock(&module_mutex);
1da177e4
LT
2110 return PTR_ERR(mod);
2111 }
2112
1da177e4
LT
2113 /* Now sew it into the lists. They won't access us, since
2114 strong_try_module_get() will fail. */
2115 stop_machine_run(__link_module, mod, NR_CPUS);
2116
2117 /* Drop lock so they can recurse */
6389a385 2118 mutex_unlock(&module_mutex);
1da177e4 2119
e041c683
AS
2120 blocking_notifier_call_chain(&module_notify_list,
2121 MODULE_STATE_COMING, mod);
1da177e4
LT
2122
2123 /* Start the module */
2124 if (mod->init != NULL)
2125 ret = mod->init();
2126 if (ret < 0) {
2127 /* Init routine failed: abort. Try to protect us from
2128 buggy refcounters. */
2129 mod->state = MODULE_STATE_GOING;
fbd568a3 2130 synchronize_sched();
af49d924
RR
2131 module_put(mod);
2132 mutex_lock(&module_mutex);
2133 free_module(mod);
2134 mutex_unlock(&module_mutex);
1da177e4
LT
2135 return ret;
2136 }
2137
2138 /* Now it's a first class citizen! */
6389a385 2139 mutex_lock(&module_mutex);
1da177e4
LT
2140 mod->state = MODULE_STATE_LIVE;
2141 /* Drop initial reference. */
2142 module_put(mod);
4552d5dc 2143 unwind_remove_table(mod->unwind_info, 1);
1da177e4
LT
2144 module_free(mod, mod->module_init);
2145 mod->module_init = NULL;
2146 mod->init_size = 0;
2147 mod->init_text_size = 0;
6389a385 2148 mutex_unlock(&module_mutex);
1da177e4
LT
2149
2150 return 0;
2151}
2152
2153static inline int within(unsigned long addr, void *start, unsigned long size)
2154{
2155 return ((void *)addr >= start && (void *)addr < start + size);
2156}
2157
2158#ifdef CONFIG_KALLSYMS
2159/*
2160 * This ignores the intensely annoying "mapping symbols" found
2161 * in ARM ELF files: $a, $t and $d.
2162 */
2163static inline int is_arm_mapping_symbol(const char *str)
2164{
22a8bdeb 2165 return str[0] == '$' && strchr("atd", str[1])
1da177e4
LT
2166 && (str[2] == '\0' || str[2] == '.');
2167}
2168
2169static const char *get_ksymbol(struct module *mod,
2170 unsigned long addr,
2171 unsigned long *size,
2172 unsigned long *offset)
2173{
2174 unsigned int i, best = 0;
2175 unsigned long nextval;
2176
2177 /* At worse, next value is at end of module */
2178 if (within(addr, mod->module_init, mod->init_size))
2179 nextval = (unsigned long)mod->module_init+mod->init_text_size;
22a8bdeb 2180 else
1da177e4
LT
2181 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2182
2183 /* Scan for closest preceeding symbol, and next symbol. (ELF
22a8bdeb 2184 starts real symbols at 1). */
1da177e4
LT
2185 for (i = 1; i < mod->num_symtab; i++) {
2186 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2187 continue;
2188
2189 /* We ignore unnamed symbols: they're uninformative
2190 * and inserted at a whim. */
2191 if (mod->symtab[i].st_value <= addr
2192 && mod->symtab[i].st_value > mod->symtab[best].st_value
2193 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2194 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2195 best = i;
2196 if (mod->symtab[i].st_value > addr
2197 && mod->symtab[i].st_value < nextval
2198 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2199 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2200 nextval = mod->symtab[i].st_value;
2201 }
2202
2203 if (!best)
2204 return NULL;
2205
ffb45122
AD
2206 if (size)
2207 *size = nextval - mod->symtab[best].st_value;
2208 if (offset)
2209 *offset = addr - mod->symtab[best].st_value;
1da177e4
LT
2210 return mod->strtab + mod->symtab[best].st_name;
2211}
2212
2213/* For kallsyms to ask for address resolution. NULL means not found.
2214 We don't lock, as this is used for oops resolution and races are a
2215 lesser concern. */
cb2a5205 2216/* FIXME: Risky: returns a pointer into a module w/o lock */
1da177e4
LT
2217const char *module_address_lookup(unsigned long addr,
2218 unsigned long *size,
2219 unsigned long *offset,
2220 char **modname)
2221{
2222 struct module *mod;
cb2a5205 2223 const char *ret = NULL;
1da177e4 2224
cb2a5205 2225 preempt_disable();
1da177e4
LT
2226 list_for_each_entry(mod, &modules, list) {
2227 if (within(addr, mod->module_init, mod->init_size)
2228 || within(addr, mod->module_core, mod->core_size)) {
ffc50891
FBH
2229 if (modname)
2230 *modname = mod->name;
cb2a5205
RR
2231 ret = get_ksymbol(mod, addr, size, offset);
2232 break;
1da177e4
LT
2233 }
2234 }
cb2a5205
RR
2235 preempt_enable();
2236 return ret;
1da177e4
LT
2237}
2238
9d65cb4a
AD
2239int lookup_module_symbol_name(unsigned long addr, char *symname)
2240{
2241 struct module *mod;
2242
cb2a5205 2243 preempt_disable();
9d65cb4a
AD
2244 list_for_each_entry(mod, &modules, list) {
2245 if (within(addr, mod->module_init, mod->init_size) ||
2246 within(addr, mod->module_core, mod->core_size)) {
2247 const char *sym;
2248
2249 sym = get_ksymbol(mod, addr, NULL, NULL);
2250 if (!sym)
2251 goto out;
9281acea 2252 strlcpy(symname, sym, KSYM_NAME_LEN);
cb2a5205 2253 preempt_enable();
9d65cb4a
AD
2254 return 0;
2255 }
2256 }
2257out:
cb2a5205 2258 preempt_enable();
9d65cb4a
AD
2259 return -ERANGE;
2260}
2261
a5c43dae
AD
2262int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2263 unsigned long *offset, char *modname, char *name)
2264{
2265 struct module *mod;
2266
cb2a5205 2267 preempt_disable();
a5c43dae
AD
2268 list_for_each_entry(mod, &modules, list) {
2269 if (within(addr, mod->module_init, mod->init_size) ||
2270 within(addr, mod->module_core, mod->core_size)) {
2271 const char *sym;
2272
2273 sym = get_ksymbol(mod, addr, size, offset);
2274 if (!sym)
2275 goto out;
2276 if (modname)
9281acea 2277 strlcpy(modname, mod->name, MODULE_NAME_LEN);
a5c43dae 2278 if (name)
9281acea 2279 strlcpy(name, sym, KSYM_NAME_LEN);
cb2a5205 2280 preempt_enable();
a5c43dae
AD
2281 return 0;
2282 }
2283 }
2284out:
cb2a5205 2285 preempt_enable();
a5c43dae
AD
2286 return -ERANGE;
2287}
2288
ea07890a
AD
2289int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2290 char *name, char *module_name, int *exported)
1da177e4
LT
2291{
2292 struct module *mod;
2293
cb2a5205 2294 preempt_disable();
1da177e4
LT
2295 list_for_each_entry(mod, &modules, list) {
2296 if (symnum < mod->num_symtab) {
2297 *value = mod->symtab[symnum].st_value;
2298 *type = mod->symtab[symnum].st_info;
098c5eea 2299 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
9281acea
TH
2300 KSYM_NAME_LEN);
2301 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
ea07890a 2302 *exported = is_exported(name, mod);
cb2a5205 2303 preempt_enable();
ea07890a 2304 return 0;
1da177e4
LT
2305 }
2306 symnum -= mod->num_symtab;
2307 }
cb2a5205 2308 preempt_enable();
ea07890a 2309 return -ERANGE;
1da177e4
LT
2310}
2311
2312static unsigned long mod_find_symname(struct module *mod, const char *name)
2313{
2314 unsigned int i;
2315
2316 for (i = 0; i < mod->num_symtab; i++)
54e8ce46
KO
2317 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2318 mod->symtab[i].st_info != 'U')
1da177e4
LT
2319 return mod->symtab[i].st_value;
2320 return 0;
2321}
2322
2323/* Look for this name: can be of form module:name. */
2324unsigned long module_kallsyms_lookup_name(const char *name)
2325{
2326 struct module *mod;
2327 char *colon;
2328 unsigned long ret = 0;
2329
2330 /* Don't lock: we're in enough trouble already. */
cb2a5205 2331 preempt_disable();
1da177e4
LT
2332 if ((colon = strchr(name, ':')) != NULL) {
2333 *colon = '\0';
2334 if ((mod = find_module(name)) != NULL)
2335 ret = mod_find_symname(mod, colon+1);
2336 *colon = ':';
2337 } else {
2338 list_for_each_entry(mod, &modules, list)
2339 if ((ret = mod_find_symname(mod, name)) != 0)
2340 break;
2341 }
cb2a5205 2342 preempt_enable();
1da177e4
LT
2343 return ret;
2344}
2345#endif /* CONFIG_KALLSYMS */
2346
2347/* Called by the /proc file system to return a list of modules. */
2348static void *m_start(struct seq_file *m, loff_t *pos)
2349{
6389a385 2350 mutex_lock(&module_mutex);
708f4b52 2351 return seq_list_start(&modules, *pos);
1da177e4
LT
2352}
2353
2354static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2355{
708f4b52 2356 return seq_list_next(p, &modules, pos);
1da177e4
LT
2357}
2358
2359static void m_stop(struct seq_file *m, void *p)
2360{
6389a385 2361 mutex_unlock(&module_mutex);
1da177e4
LT
2362}
2363
fa3ba2e8
FM
2364static char *taint_flags(unsigned int taints, char *buf)
2365{
2366 int bx = 0;
2367
2368 if (taints) {
2369 buf[bx++] = '(';
2370 if (taints & TAINT_PROPRIETARY_MODULE)
2371 buf[bx++] = 'P';
2372 if (taints & TAINT_FORCED_MODULE)
2373 buf[bx++] = 'F';
2374 /*
2375 * TAINT_FORCED_RMMOD: could be added.
2376 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2377 * apply to modules.
2378 */
2379 buf[bx++] = ')';
2380 }
2381 buf[bx] = '\0';
2382
2383 return buf;
2384}
2385
1da177e4
LT
2386static int m_show(struct seq_file *m, void *p)
2387{
2388 struct module *mod = list_entry(p, struct module, list);
fa3ba2e8
FM
2389 char buf[8];
2390
1da177e4
LT
2391 seq_printf(m, "%s %lu",
2392 mod->name, mod->init_size + mod->core_size);
2393 print_unload_info(m, mod);
2394
2395 /* Informative for users. */
2396 seq_printf(m, " %s",
2397 mod->state == MODULE_STATE_GOING ? "Unloading":
2398 mod->state == MODULE_STATE_COMING ? "Loading":
2399 "Live");
2400 /* Used by oprofile and other similar tools. */
2401 seq_printf(m, " 0x%p", mod->module_core);
2402
fa3ba2e8
FM
2403 /* Taints info */
2404 if (mod->taints)
2405 seq_printf(m, " %s", taint_flags(mod->taints, buf));
2406
1da177e4
LT
2407 seq_printf(m, "\n");
2408 return 0;
2409}
2410
2411/* Format: modulename size refcount deps address
2412
2413 Where refcount is a number or -, and deps is a comma-separated list
2414 of depends or -.
2415*/
15ad7cdc 2416const struct seq_operations modules_op = {
1da177e4
LT
2417 .start = m_start,
2418 .next = m_next,
2419 .stop = m_stop,
2420 .show = m_show
2421};
2422
2423/* Given an address, look for it in the module exception tables. */
2424const struct exception_table_entry *search_module_extables(unsigned long addr)
2425{
1da177e4
LT
2426 const struct exception_table_entry *e = NULL;
2427 struct module *mod;
2428
24da1cbf 2429 preempt_disable();
1da177e4
LT
2430 list_for_each_entry(mod, &modules, list) {
2431 if (mod->num_exentries == 0)
2432 continue;
22a8bdeb 2433
1da177e4
LT
2434 e = search_extable(mod->extable,
2435 mod->extable + mod->num_exentries - 1,
2436 addr);
2437 if (e)
2438 break;
2439 }
24da1cbf 2440 preempt_enable();
1da177e4
LT
2441
2442 /* Now, if we found one, we are running inside it now, hence
22a8bdeb 2443 we cannot unload the module, hence no refcnt needed. */
1da177e4
LT
2444 return e;
2445}
2446
4d435f9d
IM
2447/*
2448 * Is this a valid module address?
2449 */
2450int is_module_address(unsigned long addr)
2451{
4d435f9d
IM
2452 struct module *mod;
2453
24da1cbf 2454 preempt_disable();
4d435f9d
IM
2455
2456 list_for_each_entry(mod, &modules, list) {
2457 if (within(addr, mod->module_core, mod->core_size)) {
24da1cbf 2458 preempt_enable();
4d435f9d
IM
2459 return 1;
2460 }
2461 }
2462
24da1cbf 2463 preempt_enable();
4d435f9d
IM
2464
2465 return 0;
2466}
2467
2468
24da1cbf 2469/* Is this a valid kernel address? */
1da177e4
LT
2470struct module *__module_text_address(unsigned long addr)
2471{
2472 struct module *mod;
2473
2474 list_for_each_entry(mod, &modules, list)
2475 if (within(addr, mod->module_init, mod->init_text_size)
2476 || within(addr, mod->module_core, mod->core_text_size))
2477 return mod;
2478 return NULL;
2479}
2480
2481struct module *module_text_address(unsigned long addr)
2482{
2483 struct module *mod;
1da177e4 2484
24da1cbf 2485 preempt_disable();
1da177e4 2486 mod = __module_text_address(addr);
24da1cbf 2487 preempt_enable();
1da177e4
LT
2488
2489 return mod;
2490}
2491
2492/* Don't grab lock, we're oopsing. */
2493void print_modules(void)
2494{
2495 struct module *mod;
2bc2d61a 2496 char buf[8];
1da177e4
LT
2497
2498 printk("Modules linked in:");
2499 list_for_each_entry(mod, &modules, list)
2bc2d61a 2500 printk(" %s%s", mod->name, taint_flags(mod->taints, buf));
1da177e4
LT
2501 printk("\n");
2502}
2503
1da177e4
LT
2504#ifdef CONFIG_MODVERSIONS
2505/* Generate the signature for struct module here, too, for modversions. */
2506void struct_module(struct module *mod) { return; }
2507EXPORT_SYMBOL(struct_module);
2508#endif
8256e47c
MD
2509
2510#ifdef CONFIG_MARKERS
2511void module_update_markers(struct module *probe_module, int *refcount)
2512{
2513 struct module *mod;
2514
2515 mutex_lock(&module_mutex);
2516 list_for_each_entry(mod, &modules, list)
2517 if (!mod->taints)
2518 marker_update_probe_range(mod->markers,
2519 mod->markers + mod->num_markers,
2520 probe_module, refcount);
2521 mutex_unlock(&module_mutex);
2522}
2523#endif