blob: fb6f091f594093c6f68c5684ca145866c38457b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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.
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*/
19#include <linux/config.h>
20#include <linux/module.h>
21#include <linux/moduleloader.h>
22#include <linux/init.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070023#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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/cpu.h>
32#include <linux/moduleparam.h>
33#include <linux/errno.h>
34#include <linux/err.h>
35#include <linux/vermagic.h>
36#include <linux/notifier.h>
37#include <linux/stop_machine.h>
38#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070039#include <linux/string.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080040#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/uaccess.h>
42#include <asm/semaphore.h>
43#include <asm/cacheflush.h>
44
45#if 0
46#define DEBUGP printk
47#else
48#define DEBUGP(fmt , a...)
49#endif
50
51#ifndef ARCH_SHF_SMALL
52#define ARCH_SHF_SMALL 0
53#endif
54
55/* If this is set, the section belongs in the init part of the module */
56#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
57
58/* Protects module list */
59static DEFINE_SPINLOCK(modlist_lock);
60
61/* List of modules, protected by module_mutex AND modlist_lock */
62static DECLARE_MUTEX(module_mutex);
63static LIST_HEAD(modules);
64
65static DECLARE_MUTEX(notify_mutex);
66static struct notifier_block * module_notify_list;
67
68int register_module_notifier(struct notifier_block * nb)
69{
70 int err;
71 down(&notify_mutex);
72 err = notifier_chain_register(&module_notify_list, nb);
73 up(&notify_mutex);
74 return err;
75}
76EXPORT_SYMBOL(register_module_notifier);
77
78int unregister_module_notifier(struct notifier_block * nb)
79{
80 int err;
81 down(&notify_mutex);
82 err = notifier_chain_unregister(&module_notify_list, nb);
83 up(&notify_mutex);
84 return err;
85}
86EXPORT_SYMBOL(unregister_module_notifier);
87
88/* We require a truly strong try_module_get() */
89static inline int strong_try_module_get(struct module *mod)
90{
91 if (mod && mod->state == MODULE_STATE_COMING)
92 return 0;
93 return try_module_get(mod);
94}
95
96/* A thread that wants to hold a reference to a module only while it
97 * is running can call ths to safely exit.
98 * nfsd and lockd use this.
99 */
100void __module_put_and_exit(struct module *mod, long code)
101{
102 module_put(mod);
103 do_exit(code);
104}
105EXPORT_SYMBOL(__module_put_and_exit);
106
107/* Find a module section: 0 means not found. */
108static unsigned int find_sec(Elf_Ehdr *hdr,
109 Elf_Shdr *sechdrs,
110 const char *secstrings,
111 const char *name)
112{
113 unsigned int i;
114
115 for (i = 1; i < hdr->e_shnum; i++)
116 /* Alloc bit cleared means "ignore it." */
117 if ((sechdrs[i].sh_flags & SHF_ALLOC)
118 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
119 return i;
120 return 0;
121}
122
123/* Provided by the linker */
124extern const struct kernel_symbol __start___ksymtab[];
125extern const struct kernel_symbol __stop___ksymtab[];
126extern const struct kernel_symbol __start___ksymtab_gpl[];
127extern const struct kernel_symbol __stop___ksymtab_gpl[];
128extern const unsigned long __start___kcrctab[];
129extern const unsigned long __start___kcrctab_gpl[];
130
131#ifndef CONFIG_MODVERSIONS
132#define symversion(base, idx) NULL
133#else
134#define symversion(base, idx) ((base) ? ((base) + (idx)) : NULL)
135#endif
136
137/* Find a symbol, return value, crc and module which owns it */
138static unsigned long __find_symbol(const char *name,
139 struct module **owner,
140 const unsigned long **crc,
141 int gplok)
142{
143 struct module *mod;
144 unsigned int i;
145
146 /* Core kernel first. */
147 *owner = NULL;
148 for (i = 0; __start___ksymtab+i < __stop___ksymtab; i++) {
149 if (strcmp(__start___ksymtab[i].name, name) == 0) {
150 *crc = symversion(__start___kcrctab, i);
151 return __start___ksymtab[i].value;
152 }
153 }
154 if (gplok) {
155 for (i = 0; __start___ksymtab_gpl+i<__stop___ksymtab_gpl; i++)
156 if (strcmp(__start___ksymtab_gpl[i].name, name) == 0) {
157 *crc = symversion(__start___kcrctab_gpl, i);
158 return __start___ksymtab_gpl[i].value;
159 }
160 }
161
162 /* Now try modules. */
163 list_for_each_entry(mod, &modules, list) {
164 *owner = mod;
165 for (i = 0; i < mod->num_syms; i++)
166 if (strcmp(mod->syms[i].name, name) == 0) {
167 *crc = symversion(mod->crcs, i);
168 return mod->syms[i].value;
169 }
170
171 if (gplok) {
172 for (i = 0; i < mod->num_gpl_syms; i++) {
173 if (strcmp(mod->gpl_syms[i].name, name) == 0) {
174 *crc = symversion(mod->gpl_crcs, i);
175 return mod->gpl_syms[i].value;
176 }
177 }
178 }
179 }
180 DEBUGP("Failed to find symbol %s\n", name);
181 return 0;
182}
183
184/* Find a symbol in this elf symbol table */
185static unsigned long find_local_symbol(Elf_Shdr *sechdrs,
186 unsigned int symindex,
187 const char *strtab,
188 const char *name)
189{
190 unsigned int i;
191 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
192
193 /* Search (defined) internal symbols first. */
194 for (i = 1; i < sechdrs[symindex].sh_size/sizeof(*sym); i++) {
195 if (sym[i].st_shndx != SHN_UNDEF
196 && strcmp(name, strtab + sym[i].st_name) == 0)
197 return sym[i].st_value;
198 }
199 return 0;
200}
201
202/* Search for module by name: must hold module_mutex. */
203static struct module *find_module(const char *name)
204{
205 struct module *mod;
206
207 list_for_each_entry(mod, &modules, list) {
208 if (strcmp(mod->name, name) == 0)
209 return mod;
210 }
211 return NULL;
212}
213
214#ifdef CONFIG_SMP
215/* Number of blocks used and allocated. */
216static unsigned int pcpu_num_used, pcpu_num_allocated;
217/* Size of each block. -ve means used. */
218static int *pcpu_size;
219
220static int split_block(unsigned int i, unsigned short size)
221{
222 /* Reallocation required? */
223 if (pcpu_num_used + 1 > pcpu_num_allocated) {
224 int *new = kmalloc(sizeof(new[0]) * pcpu_num_allocated*2,
225 GFP_KERNEL);
226 if (!new)
227 return 0;
228
229 memcpy(new, pcpu_size, sizeof(new[0])*pcpu_num_allocated);
230 pcpu_num_allocated *= 2;
231 kfree(pcpu_size);
232 pcpu_size = new;
233 }
234
235 /* Insert a new subblock */
236 memmove(&pcpu_size[i+1], &pcpu_size[i],
237 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
238 pcpu_num_used++;
239
240 pcpu_size[i+1] -= size;
241 pcpu_size[i] = size;
242 return 1;
243}
244
245static inline unsigned int block_size(int val)
246{
247 if (val < 0)
248 return -val;
249 return val;
250}
251
252/* Created by linker magic */
253extern char __per_cpu_start[], __per_cpu_end[];
254
Rusty Russell842bbaa2005-08-01 21:11:47 -0700255static void *percpu_modalloc(unsigned long size, unsigned long align,
256 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 unsigned long extra;
259 unsigned int i;
260 void *ptr;
261
Rusty Russell842bbaa2005-08-01 21:11:47 -0700262 if (align > SMP_CACHE_BYTES) {
263 printk(KERN_WARNING "%s: per-cpu alignment %li > %i\n",
264 name, align, SMP_CACHE_BYTES);
265 align = SMP_CACHE_BYTES;
266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 ptr = __per_cpu_start;
269 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
270 /* Extra for alignment requirement. */
271 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
272 BUG_ON(i == 0 && extra != 0);
273
274 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
275 continue;
276
277 /* Transfer extra to previous block. */
278 if (pcpu_size[i-1] < 0)
279 pcpu_size[i-1] -= extra;
280 else
281 pcpu_size[i-1] += extra;
282 pcpu_size[i] -= extra;
283 ptr += extra;
284
285 /* Split block if warranted */
286 if (pcpu_size[i] - size > sizeof(unsigned long))
287 if (!split_block(i, size))
288 return NULL;
289
290 /* Mark allocated */
291 pcpu_size[i] = -pcpu_size[i];
292 return ptr;
293 }
294
295 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
296 size);
297 return NULL;
298}
299
300static void percpu_modfree(void *freeme)
301{
302 unsigned int i;
303 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
304
305 /* First entry is core kernel percpu data. */
306 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
307 if (ptr == freeme) {
308 pcpu_size[i] = -pcpu_size[i];
309 goto free;
310 }
311 }
312 BUG();
313
314 free:
315 /* Merge with previous? */
316 if (pcpu_size[i-1] >= 0) {
317 pcpu_size[i-1] += pcpu_size[i];
318 pcpu_num_used--;
319 memmove(&pcpu_size[i], &pcpu_size[i+1],
320 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
321 i--;
322 }
323 /* Merge with next? */
324 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
325 pcpu_size[i] += pcpu_size[i+1];
326 pcpu_num_used--;
327 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
328 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
329 }
330}
331
332static unsigned int find_pcpusec(Elf_Ehdr *hdr,
333 Elf_Shdr *sechdrs,
334 const char *secstrings)
335{
336 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
337}
338
339static int percpu_modinit(void)
340{
341 pcpu_num_used = 2;
342 pcpu_num_allocated = 2;
343 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
344 GFP_KERNEL);
345 /* Static in-kernel percpu data (used). */
346 pcpu_size[0] = -ALIGN(__per_cpu_end-__per_cpu_start, SMP_CACHE_BYTES);
347 /* Free room. */
348 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
349 if (pcpu_size[1] < 0) {
350 printk(KERN_ERR "No per-cpu room for modules.\n");
351 pcpu_num_used = 1;
352 }
353
354 return 0;
355}
356__initcall(percpu_modinit);
357#else /* ... !CONFIG_SMP */
Rusty Russell842bbaa2005-08-01 21:11:47 -0700358static inline void *percpu_modalloc(unsigned long size, unsigned long align,
359 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 return NULL;
362}
363static inline void percpu_modfree(void *pcpuptr)
364{
365 BUG();
366}
367static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
368 Elf_Shdr *sechdrs,
369 const char *secstrings)
370{
371 return 0;
372}
373static inline void percpu_modcopy(void *pcpudst, const void *src,
374 unsigned long size)
375{
376 /* pcpusec should be 0, and size of that section should be 0. */
377 BUG_ON(size != 0);
378}
379#endif /* CONFIG_SMP */
380
381#ifdef CONFIG_MODULE_UNLOAD
Matt Domschc988d2b2005-06-23 22:05:15 -0700382#define MODINFO_ATTR(field) \
383static void setup_modinfo_##field(struct module *mod, const char *s) \
384{ \
385 mod->field = kstrdup(s, GFP_KERNEL); \
386} \
387static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
388 struct module *mod, char *buffer) \
389{ \
390 return sprintf(buffer, "%s\n", mod->field); \
391} \
392static int modinfo_##field##_exists(struct module *mod) \
393{ \
394 return mod->field != NULL; \
395} \
396static void free_modinfo_##field(struct module *mod) \
397{ \
398 kfree(mod->field); \
399 mod->field = NULL; \
400} \
401static struct module_attribute modinfo_##field = { \
402 .attr = { .name = __stringify(field), .mode = 0444, \
403 .owner = THIS_MODULE }, \
404 .show = show_modinfo_##field, \
405 .setup = setup_modinfo_##field, \
406 .test = modinfo_##field##_exists, \
407 .free = free_modinfo_##field, \
408};
409
410MODINFO_ATTR(version);
411MODINFO_ATTR(srcversion);
412
413static struct module_attribute *modinfo_attrs[] = {
414 &modinfo_version,
415 &modinfo_srcversion,
416 NULL,
417};
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/* Init the unload section of the module. */
420static void module_unload_init(struct module *mod)
421{
422 unsigned int i;
423
424 INIT_LIST_HEAD(&mod->modules_which_use_me);
425 for (i = 0; i < NR_CPUS; i++)
426 local_set(&mod->ref[i].count, 0);
427 /* Hold reference count during initialization. */
Ingo Molnar39c715b2005-06-21 17:14:34 -0700428 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* Backwards compatibility macros put refcount during init. */
430 mod->waiter = current;
431}
432
433/* modules using other modules */
434struct module_use
435{
436 struct list_head list;
437 struct module *module_which_uses;
438};
439
440/* Does a already use b? */
441static int already_uses(struct module *a, struct module *b)
442{
443 struct module_use *use;
444
445 list_for_each_entry(use, &b->modules_which_use_me, list) {
446 if (use->module_which_uses == a) {
447 DEBUGP("%s uses %s!\n", a->name, b->name);
448 return 1;
449 }
450 }
451 DEBUGP("%s does not use %s!\n", a->name, b->name);
452 return 0;
453}
454
455/* Module a uses b */
456static int use_module(struct module *a, struct module *b)
457{
458 struct module_use *use;
459 if (b == NULL || already_uses(a, b)) return 1;
460
461 if (!strong_try_module_get(b))
462 return 0;
463
464 DEBUGP("Allocating new usage for %s.\n", a->name);
465 use = kmalloc(sizeof(*use), GFP_ATOMIC);
466 if (!use) {
467 printk("%s: out of memory loading\n", a->name);
468 module_put(b);
469 return 0;
470 }
471
472 use->module_which_uses = a;
473 list_add(&use->list, &b->modules_which_use_me);
474 return 1;
475}
476
477/* Clear the unload stuff of the module. */
478static void module_unload_free(struct module *mod)
479{
480 struct module *i;
481
482 list_for_each_entry(i, &modules, list) {
483 struct module_use *use;
484
485 list_for_each_entry(use, &i->modules_which_use_me, list) {
486 if (use->module_which_uses == mod) {
487 DEBUGP("%s unusing %s\n", mod->name, i->name);
488 module_put(i);
489 list_del(&use->list);
490 kfree(use);
491 /* There can be at most one match. */
492 break;
493 }
494 }
495 }
496}
497
498#ifdef CONFIG_MODULE_FORCE_UNLOAD
499static inline int try_force(unsigned int flags)
500{
501 int ret = (flags & O_TRUNC);
502 if (ret)
Randy Dunlap9f158332005-09-13 01:25:16 -0700503 add_taint(TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return ret;
505}
506#else
507static inline int try_force(unsigned int flags)
508{
509 return 0;
510}
511#endif /* CONFIG_MODULE_FORCE_UNLOAD */
512
513struct stopref
514{
515 struct module *mod;
516 int flags;
517 int *forced;
518};
519
520/* Whole machine is stopped with interrupts off when this runs. */
521static int __try_stop_module(void *_sref)
522{
523 struct stopref *sref = _sref;
524
525 /* If it's not unused, quit unless we are told to block. */
526 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
527 if (!(*sref->forced = try_force(sref->flags)))
528 return -EWOULDBLOCK;
529 }
530
531 /* Mark it as dying. */
532 sref->mod->state = MODULE_STATE_GOING;
533 return 0;
534}
535
536static int try_stop_module(struct module *mod, int flags, int *forced)
537{
538 struct stopref sref = { mod, flags, forced };
539
540 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
541}
542
543unsigned int module_refcount(struct module *mod)
544{
545 unsigned int i, total = 0;
546
547 for (i = 0; i < NR_CPUS; i++)
548 total += local_read(&mod->ref[i].count);
549 return total;
550}
551EXPORT_SYMBOL(module_refcount);
552
553/* This exists whether we can unload or not */
554static void free_module(struct module *mod);
555
556static void wait_for_zero_refcount(struct module *mod)
557{
558 /* Since we might sleep for some time, drop the semaphore first */
559 up(&module_mutex);
560 for (;;) {
561 DEBUGP("Looking at refcount...\n");
562 set_current_state(TASK_UNINTERRUPTIBLE);
563 if (module_refcount(mod) == 0)
564 break;
565 schedule();
566 }
567 current->state = TASK_RUNNING;
568 down(&module_mutex);
569}
570
571asmlinkage long
572sys_delete_module(const char __user *name_user, unsigned int flags)
573{
574 struct module *mod;
575 char name[MODULE_NAME_LEN];
576 int ret, forced = 0;
577
578 if (!capable(CAP_SYS_MODULE))
579 return -EPERM;
580
581 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
582 return -EFAULT;
583 name[MODULE_NAME_LEN-1] = '\0';
584
585 if (down_interruptible(&module_mutex) != 0)
586 return -EINTR;
587
588 mod = find_module(name);
589 if (!mod) {
590 ret = -ENOENT;
591 goto out;
592 }
593
594 if (!list_empty(&mod->modules_which_use_me)) {
595 /* Other modules depend on us: get rid of them first. */
596 ret = -EWOULDBLOCK;
597 goto out;
598 }
599
600 /* Doing init or already dying? */
601 if (mod->state != MODULE_STATE_LIVE) {
602 /* FIXME: if (force), slam module count and wake up
603 waiter --RR */
604 DEBUGP("%s already dying\n", mod->name);
605 ret = -EBUSY;
606 goto out;
607 }
608
609 /* If it has an init func, it must have an exit func to unload */
610 if ((mod->init != NULL && mod->exit == NULL)
611 || mod->unsafe) {
612 forced = try_force(flags);
613 if (!forced) {
614 /* This module can't be removed */
615 ret = -EBUSY;
616 goto out;
617 }
618 }
619
620 /* Set this up before setting mod->state */
621 mod->waiter = current;
622
623 /* Stop the machine so refcounts can't move and disable module. */
624 ret = try_stop_module(mod, flags, &forced);
625 if (ret != 0)
626 goto out;
627
628 /* Never wait if forced. */
629 if (!forced && module_refcount(mod) != 0)
630 wait_for_zero_refcount(mod);
631
632 /* Final destruction now noone is using it. */
633 if (mod->exit != NULL) {
634 up(&module_mutex);
635 mod->exit();
636 down(&module_mutex);
637 }
638 free_module(mod);
639
640 out:
641 up(&module_mutex);
642 return ret;
643}
644
645static void print_unload_info(struct seq_file *m, struct module *mod)
646{
647 struct module_use *use;
648 int printed_something = 0;
649
650 seq_printf(m, " %u ", module_refcount(mod));
651
652 /* Always include a trailing , so userspace can differentiate
653 between this and the old multi-field proc format. */
654 list_for_each_entry(use, &mod->modules_which_use_me, list) {
655 printed_something = 1;
656 seq_printf(m, "%s,", use->module_which_uses->name);
657 }
658
659 if (mod->unsafe) {
660 printed_something = 1;
661 seq_printf(m, "[unsafe],");
662 }
663
664 if (mod->init != NULL && mod->exit == NULL) {
665 printed_something = 1;
666 seq_printf(m, "[permanent],");
667 }
668
669 if (!printed_something)
670 seq_printf(m, "-");
671}
672
673void __symbol_put(const char *symbol)
674{
675 struct module *owner;
676 unsigned long flags;
677 const unsigned long *crc;
678
679 spin_lock_irqsave(&modlist_lock, flags);
680 if (!__find_symbol(symbol, &owner, &crc, 1))
681 BUG();
682 module_put(owner);
683 spin_unlock_irqrestore(&modlist_lock, flags);
684}
685EXPORT_SYMBOL(__symbol_put);
686
687void symbol_put_addr(void *addr)
688{
689 unsigned long flags;
690
691 spin_lock_irqsave(&modlist_lock, flags);
692 if (!kernel_text_address((unsigned long)addr))
693 BUG();
694
695 module_put(module_text_address((unsigned long)addr));
696 spin_unlock_irqrestore(&modlist_lock, flags);
697}
698EXPORT_SYMBOL_GPL(symbol_put_addr);
699
700static ssize_t show_refcnt(struct module_attribute *mattr,
701 struct module *mod, char *buffer)
702{
703 /* sysfs holds a reference */
704 return sprintf(buffer, "%u\n", module_refcount(mod)-1);
705}
706
707static struct module_attribute refcnt = {
708 .attr = { .name = "refcnt", .mode = 0444, .owner = THIS_MODULE },
709 .show = show_refcnt,
710};
711
712#else /* !CONFIG_MODULE_UNLOAD */
713static void print_unload_info(struct seq_file *m, struct module *mod)
714{
715 /* We don't know the usage count, or what modules are using. */
716 seq_printf(m, " - -");
717}
718
719static inline void module_unload_free(struct module *mod)
720{
721}
722
723static inline int use_module(struct module *a, struct module *b)
724{
725 return strong_try_module_get(b);
726}
727
728static inline void module_unload_init(struct module *mod)
729{
730}
731#endif /* CONFIG_MODULE_UNLOAD */
732
733#ifdef CONFIG_OBSOLETE_MODPARM
734/* Bounds checking done below */
735static int obsparm_copy_string(const char *val, struct kernel_param *kp)
736{
737 strcpy(kp->arg, val);
738 return 0;
739}
740
Adrian Bunk52c1da32005-06-23 22:05:33 -0700741static int set_obsolete(const char *val, struct kernel_param *kp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 unsigned int min, max;
744 unsigned int size, maxsize;
745 int dummy;
746 char *endp;
747 const char *p;
748 struct obsolete_modparm *obsparm = kp->arg;
749
750 if (!val) {
751 printk(KERN_ERR "Parameter %s needs an argument\n", kp->name);
752 return -EINVAL;
753 }
754
755 /* type is: [min[-max]]{b,h,i,l,s} */
756 p = obsparm->type;
757 min = simple_strtol(p, &endp, 10);
758 if (endp == obsparm->type)
759 min = max = 1;
760 else if (*endp == '-') {
761 p = endp+1;
762 max = simple_strtol(p, &endp, 10);
763 } else
764 max = min;
765 switch (*endp) {
766 case 'b':
767 return param_array(kp->name, val, min, max, obsparm->addr,
768 1, param_set_byte, &dummy);
769 case 'h':
770 return param_array(kp->name, val, min, max, obsparm->addr,
771 sizeof(short), param_set_short, &dummy);
772 case 'i':
773 return param_array(kp->name, val, min, max, obsparm->addr,
774 sizeof(int), param_set_int, &dummy);
775 case 'l':
776 return param_array(kp->name, val, min, max, obsparm->addr,
777 sizeof(long), param_set_long, &dummy);
778 case 's':
779 return param_array(kp->name, val, min, max, obsparm->addr,
780 sizeof(char *), param_set_charp, &dummy);
781
782 case 'c':
783 /* Undocumented: 1-5c50 means 1-5 strings of up to 49 chars,
784 and the decl is "char xxx[5][50];" */
785 p = endp+1;
786 maxsize = simple_strtol(p, &endp, 10);
787 /* We check lengths here (yes, this is a hack). */
788 p = val;
789 while (p[size = strcspn(p, ",")]) {
790 if (size >= maxsize)
791 goto oversize;
792 p += size+1;
793 }
794 if (size >= maxsize)
795 goto oversize;
796 return param_array(kp->name, val, min, max, obsparm->addr,
797 maxsize, obsparm_copy_string, &dummy);
798 }
799 printk(KERN_ERR "Unknown obsolete parameter type %s\n", obsparm->type);
800 return -EINVAL;
801 oversize:
802 printk(KERN_ERR
803 "Parameter %s doesn't fit in %u chars.\n", kp->name, maxsize);
804 return -EINVAL;
805}
806
807static int obsolete_params(const char *name,
808 char *args,
809 struct obsolete_modparm obsparm[],
810 unsigned int num,
811 Elf_Shdr *sechdrs,
812 unsigned int symindex,
813 const char *strtab)
814{
815 struct kernel_param *kp;
816 unsigned int i;
817 int ret;
818
819 kp = kmalloc(sizeof(kp[0]) * num, GFP_KERNEL);
820 if (!kp)
821 return -ENOMEM;
822
823 for (i = 0; i < num; i++) {
824 char sym_name[128 + sizeof(MODULE_SYMBOL_PREFIX)];
825
826 snprintf(sym_name, sizeof(sym_name), "%s%s",
827 MODULE_SYMBOL_PREFIX, obsparm[i].name);
828
829 kp[i].name = obsparm[i].name;
830 kp[i].perm = 000;
831 kp[i].set = set_obsolete;
832 kp[i].get = NULL;
833 obsparm[i].addr
834 = (void *)find_local_symbol(sechdrs, symindex, strtab,
835 sym_name);
836 if (!obsparm[i].addr) {
837 printk("%s: falsely claims to have parameter %s\n",
838 name, obsparm[i].name);
839 ret = -EINVAL;
840 goto out;
841 }
842 kp[i].arg = &obsparm[i];
843 }
844
845 ret = parse_args(name, args, kp, num, NULL);
846 out:
847 kfree(kp);
848 return ret;
849}
850#else
851static int obsolete_params(const char *name,
852 char *args,
853 struct obsolete_modparm obsparm[],
854 unsigned int num,
855 Elf_Shdr *sechdrs,
856 unsigned int symindex,
857 const char *strtab)
858{
859 if (num != 0)
860 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
861 name);
862 return 0;
863}
864#endif /* CONFIG_OBSOLETE_MODPARM */
865
866static const char vermagic[] = VERMAGIC_STRING;
867
868#ifdef CONFIG_MODVERSIONS
869static int check_version(Elf_Shdr *sechdrs,
870 unsigned int versindex,
871 const char *symname,
872 struct module *mod,
873 const unsigned long *crc)
874{
875 unsigned int i, num_versions;
876 struct modversion_info *versions;
877
878 /* Exporting module didn't supply crcs? OK, we're already tainted. */
879 if (!crc)
880 return 1;
881
882 versions = (void *) sechdrs[versindex].sh_addr;
883 num_versions = sechdrs[versindex].sh_size
884 / sizeof(struct modversion_info);
885
886 for (i = 0; i < num_versions; i++) {
887 if (strcmp(versions[i].name, symname) != 0)
888 continue;
889
890 if (versions[i].crc == *crc)
891 return 1;
892 printk("%s: disagrees about version of symbol %s\n",
893 mod->name, symname);
894 DEBUGP("Found checksum %lX vs module %lX\n",
895 *crc, versions[i].crc);
896 return 0;
897 }
898 /* Not in module's version table. OK, but that taints the kernel. */
899 if (!(tainted & TAINT_FORCED_MODULE)) {
900 printk("%s: no version for \"%s\" found: kernel tainted.\n",
901 mod->name, symname);
Randy Dunlap9f158332005-09-13 01:25:16 -0700902 add_taint(TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904 return 1;
905}
906
907static inline int check_modstruct_version(Elf_Shdr *sechdrs,
908 unsigned int versindex,
909 struct module *mod)
910{
911 const unsigned long *crc;
912 struct module *owner;
913
914 if (!__find_symbol("struct_module", &owner, &crc, 1))
915 BUG();
916 return check_version(sechdrs, versindex, "struct_module", mod,
917 crc);
918}
919
920/* First part is kernel version, which we ignore. */
921static inline int same_magic(const char *amagic, const char *bmagic)
922{
923 amagic += strcspn(amagic, " ");
924 bmagic += strcspn(bmagic, " ");
925 return strcmp(amagic, bmagic) == 0;
926}
927#else
928static inline int check_version(Elf_Shdr *sechdrs,
929 unsigned int versindex,
930 const char *symname,
931 struct module *mod,
932 const unsigned long *crc)
933{
934 return 1;
935}
936
937static inline int check_modstruct_version(Elf_Shdr *sechdrs,
938 unsigned int versindex,
939 struct module *mod)
940{
941 return 1;
942}
943
944static inline int same_magic(const char *amagic, const char *bmagic)
945{
946 return strcmp(amagic, bmagic) == 0;
947}
948#endif /* CONFIG_MODVERSIONS */
949
950/* Resolve a symbol for this module. I.e. if we find one, record usage.
951 Must be holding module_mutex. */
952static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
953 unsigned int versindex,
954 const char *name,
955 struct module *mod)
956{
957 struct module *owner;
958 unsigned long ret;
959 const unsigned long *crc;
960
961 spin_lock_irq(&modlist_lock);
962 ret = __find_symbol(name, &owner, &crc, mod->license_gplok);
963 if (ret) {
964 /* use_module can fail due to OOM, or module unloading */
965 if (!check_version(sechdrs, versindex, name, mod, crc) ||
966 !use_module(mod, owner))
967 ret = 0;
968 }
969 spin_unlock_irq(&modlist_lock);
970 return ret;
971}
972
973
974/*
975 * /sys/module/foo/sections stuff
976 * J. Corbet <corbet@lwn.net>
977 */
978#ifdef CONFIG_KALLSYMS
979static ssize_t module_sect_show(struct module_attribute *mattr,
980 struct module *mod, char *buf)
981{
982 struct module_sect_attr *sattr =
983 container_of(mattr, struct module_sect_attr, mattr);
984 return sprintf(buf, "0x%lx\n", sattr->address);
985}
986
987static void add_sect_attrs(struct module *mod, unsigned int nsect,
988 char *secstrings, Elf_Shdr *sechdrs)
989{
990 unsigned int nloaded = 0, i, size[2];
991 struct module_sect_attrs *sect_attrs;
992 struct module_sect_attr *sattr;
993 struct attribute **gattr;
994
995 /* Count loaded sections and allocate structures */
996 for (i = 0; i < nsect; i++)
997 if (sechdrs[i].sh_flags & SHF_ALLOC)
998 nloaded++;
999 size[0] = ALIGN(sizeof(*sect_attrs)
1000 + nloaded * sizeof(sect_attrs->attrs[0]),
1001 sizeof(sect_attrs->grp.attrs[0]));
1002 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
1003 if (! (sect_attrs = kmalloc(size[0] + size[1], GFP_KERNEL)))
1004 return;
1005
1006 /* Setup section attributes. */
1007 sect_attrs->grp.name = "sections";
1008 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1009
1010 sattr = &sect_attrs->attrs[0];
1011 gattr = &sect_attrs->grp.attrs[0];
1012 for (i = 0; i < nsect; i++) {
1013 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1014 continue;
1015 sattr->address = sechdrs[i].sh_addr;
1016 strlcpy(sattr->name, secstrings + sechdrs[i].sh_name,
1017 MODULE_SECT_NAME_LEN);
1018 sattr->mattr.show = module_sect_show;
1019 sattr->mattr.store = NULL;
1020 sattr->mattr.attr.name = sattr->name;
1021 sattr->mattr.attr.owner = mod;
1022 sattr->mattr.attr.mode = S_IRUGO;
1023 *(gattr++) = &(sattr++)->mattr.attr;
1024 }
1025 *gattr = NULL;
1026
1027 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1028 goto out;
1029
1030 mod->sect_attrs = sect_attrs;
1031 return;
1032 out:
1033 kfree(sect_attrs);
1034}
1035
1036static void remove_sect_attrs(struct module *mod)
1037{
1038 if (mod->sect_attrs) {
1039 sysfs_remove_group(&mod->mkobj.kobj,
1040 &mod->sect_attrs->grp);
1041 /* We are positive that no one is using any sect attrs
1042 * at this point. Deallocate immediately. */
1043 kfree(mod->sect_attrs);
1044 mod->sect_attrs = NULL;
1045 }
1046}
1047
1048
1049#else
1050static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1051 char *sectstrings, Elf_Shdr *sechdrs)
1052{
1053}
1054
1055static inline void remove_sect_attrs(struct module *mod)
1056{
1057}
1058#endif /* CONFIG_KALLSYMS */
1059
1060
1061#ifdef CONFIG_MODULE_UNLOAD
1062static inline int module_add_refcnt_attr(struct module *mod)
1063{
1064 return sysfs_create_file(&mod->mkobj.kobj, &refcnt.attr);
1065}
1066static void module_remove_refcnt_attr(struct module *mod)
1067{
1068 return sysfs_remove_file(&mod->mkobj.kobj, &refcnt.attr);
1069}
1070#else
1071static inline int module_add_refcnt_attr(struct module *mod)
1072{
1073 return 0;
1074}
1075static void module_remove_refcnt_attr(struct module *mod)
1076{
1077}
1078#endif
1079
Matt Domschc988d2b2005-06-23 22:05:15 -07001080#ifdef CONFIG_MODULE_UNLOAD
1081static int module_add_modinfo_attrs(struct module *mod)
1082{
1083 struct module_attribute *attr;
1084 int error = 0;
1085 int i;
1086
1087 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1088 if (!attr->test ||
1089 (attr->test && attr->test(mod)))
1090 error = sysfs_create_file(&mod->mkobj.kobj,&attr->attr);
1091 }
1092 return error;
1093}
1094
1095static void module_remove_modinfo_attrs(struct module *mod)
1096{
1097 struct module_attribute *attr;
1098 int i;
1099
1100 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1101 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
1102 attr->free(mod);
1103 }
1104}
1105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107static int mod_sysfs_setup(struct module *mod,
1108 struct kernel_param *kparam,
1109 unsigned int num_params)
1110{
1111 int err;
1112
1113 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1114 err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
1115 if (err)
1116 goto out;
1117 kobj_set_kset_s(&mod->mkobj, module_subsys);
1118 mod->mkobj.mod = mod;
1119 err = kobject_register(&mod->mkobj.kobj);
1120 if (err)
1121 goto out;
1122
1123 err = module_add_refcnt_attr(mod);
1124 if (err)
1125 goto out_unreg;
1126
1127 err = module_param_sysfs_setup(mod, kparam, num_params);
1128 if (err)
1129 goto out_unreg;
1130
Matt Domschc988d2b2005-06-23 22:05:15 -07001131#ifdef CONFIG_MODULE_UNLOAD
1132 err = module_add_modinfo_attrs(mod);
1133 if (err)
1134 goto out_unreg;
1135#endif
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return 0;
1138
1139out_unreg:
1140 kobject_unregister(&mod->mkobj.kobj);
1141out:
1142 return err;
1143}
1144
1145static void mod_kobject_remove(struct module *mod)
1146{
Matt Domschc988d2b2005-06-23 22:05:15 -07001147#ifdef CONFIG_MODULE_UNLOAD
1148 module_remove_modinfo_attrs(mod);
1149#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 module_remove_refcnt_attr(mod);
1151 module_param_sysfs_remove(mod);
1152
1153 kobject_unregister(&mod->mkobj.kobj);
1154}
1155
1156/*
1157 * unlink the module with the whole machine is stopped with interrupts off
1158 * - this defends against kallsyms not taking locks
1159 */
1160static int __unlink_module(void *_mod)
1161{
1162 struct module *mod = _mod;
1163 list_del(&mod->list);
1164 return 0;
1165}
1166
1167/* Free a module, remove from lists, etc (must hold module mutex). */
1168static void free_module(struct module *mod)
1169{
1170 /* Delete from various lists */
1171 stop_machine_run(__unlink_module, mod, NR_CPUS);
1172 remove_sect_attrs(mod);
1173 mod_kobject_remove(mod);
1174
1175 /* Arch-specific cleanup. */
1176 module_arch_cleanup(mod);
1177
1178 /* Module unload stuff */
1179 module_unload_free(mod);
1180
1181 /* This may be NULL, but that's OK */
1182 module_free(mod, mod->module_init);
1183 kfree(mod->args);
1184 if (mod->percpu)
1185 percpu_modfree(mod->percpu);
1186
1187 /* Finally, free the core (containing the module structure) */
1188 module_free(mod, mod->module_core);
1189}
1190
1191void *__symbol_get(const char *symbol)
1192{
1193 struct module *owner;
1194 unsigned long value, flags;
1195 const unsigned long *crc;
1196
1197 spin_lock_irqsave(&modlist_lock, flags);
1198 value = __find_symbol(symbol, &owner, &crc, 1);
1199 if (value && !strong_try_module_get(owner))
1200 value = 0;
1201 spin_unlock_irqrestore(&modlist_lock, flags);
1202
1203 return (void *)value;
1204}
1205EXPORT_SYMBOL_GPL(__symbol_get);
1206
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001207/*
1208 * Ensure that an exported symbol [global namespace] does not already exist
1209 * in the Kernel or in some other modules exported symbol table.
1210 */
1211static int verify_export_symbols(struct module *mod)
1212{
1213 const char *name = NULL;
1214 unsigned long i, ret = 0;
1215 struct module *owner;
1216 const unsigned long *crc;
1217
1218 for (i = 0; i < mod->num_syms; i++)
1219 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
1220 name = mod->syms[i].name;
1221 ret = -ENOEXEC;
1222 goto dup;
1223 }
1224
1225 for (i = 0; i < mod->num_gpl_syms; i++)
1226 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
1227 name = mod->gpl_syms[i].name;
1228 ret = -ENOEXEC;
1229 goto dup;
1230 }
1231
1232dup:
1233 if (ret)
1234 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1235 mod->name, name, module_name(owner));
1236
1237 return ret;
1238}
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240/* Change all symbols so that sh_value encodes the pointer directly. */
1241static int simplify_symbols(Elf_Shdr *sechdrs,
1242 unsigned int symindex,
1243 const char *strtab,
1244 unsigned int versindex,
1245 unsigned int pcpuindex,
1246 struct module *mod)
1247{
1248 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1249 unsigned long secbase;
1250 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1251 int ret = 0;
1252
1253 for (i = 1; i < n; i++) {
1254 switch (sym[i].st_shndx) {
1255 case SHN_COMMON:
1256 /* We compiled with -fno-common. These are not
1257 supposed to happen. */
1258 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1259 printk("%s: please compile with -fno-common\n",
1260 mod->name);
1261 ret = -ENOEXEC;
1262 break;
1263
1264 case SHN_ABS:
1265 /* Don't need to do anything */
1266 DEBUGP("Absolute symbol: 0x%08lx\n",
1267 (long)sym[i].st_value);
1268 break;
1269
1270 case SHN_UNDEF:
1271 sym[i].st_value
1272 = resolve_symbol(sechdrs, versindex,
1273 strtab + sym[i].st_name, mod);
1274
1275 /* Ok if resolved. */
1276 if (sym[i].st_value != 0)
1277 break;
1278 /* Ok if weak. */
1279 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1280 break;
1281
1282 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1283 mod->name, strtab + sym[i].st_name);
1284 ret = -ENOENT;
1285 break;
1286
1287 default:
1288 /* Divert to percpu allocation if a percpu var. */
1289 if (sym[i].st_shndx == pcpuindex)
1290 secbase = (unsigned long)mod->percpu;
1291 else
1292 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1293 sym[i].st_value += secbase;
1294 break;
1295 }
1296 }
1297
1298 return ret;
1299}
1300
1301/* Update size with this section: return offset. */
1302static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1303{
1304 long ret;
1305
1306 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1307 *size = ret + sechdr->sh_size;
1308 return ret;
1309}
1310
1311/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1312 might -- code, read-only data, read-write data, small data. Tally
1313 sizes, and place the offsets into sh_entsize fields: high bit means it
1314 belongs in init. */
1315static void layout_sections(struct module *mod,
1316 const Elf_Ehdr *hdr,
1317 Elf_Shdr *sechdrs,
1318 const char *secstrings)
1319{
1320 static unsigned long const masks[][2] = {
1321 /* NOTE: all executable code must be the first section
1322 * in this array; otherwise modify the text_size
1323 * finder in the two loops below */
1324 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1325 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1326 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1327 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1328 };
1329 unsigned int m, i;
1330
1331 for (i = 0; i < hdr->e_shnum; i++)
1332 sechdrs[i].sh_entsize = ~0UL;
1333
1334 DEBUGP("Core section allocation order:\n");
1335 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1336 for (i = 0; i < hdr->e_shnum; ++i) {
1337 Elf_Shdr *s = &sechdrs[i];
1338
1339 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1340 || (s->sh_flags & masks[m][1])
1341 || s->sh_entsize != ~0UL
1342 || strncmp(secstrings + s->sh_name,
1343 ".init", 5) == 0)
1344 continue;
1345 s->sh_entsize = get_offset(&mod->core_size, s);
1346 DEBUGP("\t%s\n", secstrings + s->sh_name);
1347 }
1348 if (m == 0)
1349 mod->core_text_size = mod->core_size;
1350 }
1351
1352 DEBUGP("Init section allocation order:\n");
1353 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1354 for (i = 0; i < hdr->e_shnum; ++i) {
1355 Elf_Shdr *s = &sechdrs[i];
1356
1357 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1358 || (s->sh_flags & masks[m][1])
1359 || s->sh_entsize != ~0UL
1360 || strncmp(secstrings + s->sh_name,
1361 ".init", 5) != 0)
1362 continue;
1363 s->sh_entsize = (get_offset(&mod->init_size, s)
1364 | INIT_OFFSET_MASK);
1365 DEBUGP("\t%s\n", secstrings + s->sh_name);
1366 }
1367 if (m == 0)
1368 mod->init_text_size = mod->init_size;
1369 }
1370}
1371
1372static inline int license_is_gpl_compatible(const char *license)
1373{
1374 return (strcmp(license, "GPL") == 0
1375 || strcmp(license, "GPL v2") == 0
1376 || strcmp(license, "GPL and additional rights") == 0
1377 || strcmp(license, "Dual BSD/GPL") == 0
1378 || strcmp(license, "Dual MPL/GPL") == 0);
1379}
1380
1381static void set_license(struct module *mod, const char *license)
1382{
1383 if (!license)
1384 license = "unspecified";
1385
1386 mod->license_gplok = license_is_gpl_compatible(license);
1387 if (!mod->license_gplok && !(tainted & TAINT_PROPRIETARY_MODULE)) {
1388 printk(KERN_WARNING "%s: module license '%s' taints kernel.\n",
1389 mod->name, license);
Randy Dunlap9f158332005-09-13 01:25:16 -07001390 add_taint(TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392}
1393
1394/* Parse tag=value strings from .modinfo section */
1395static char *next_string(char *string, unsigned long *secsize)
1396{
1397 /* Skip non-zero chars */
1398 while (string[0]) {
1399 string++;
1400 if ((*secsize)-- <= 1)
1401 return NULL;
1402 }
1403
1404 /* Skip any zero padding. */
1405 while (!string[0]) {
1406 string++;
1407 if ((*secsize)-- <= 1)
1408 return NULL;
1409 }
1410 return string;
1411}
1412
1413static char *get_modinfo(Elf_Shdr *sechdrs,
1414 unsigned int info,
1415 const char *tag)
1416{
1417 char *p;
1418 unsigned int taglen = strlen(tag);
1419 unsigned long size = sechdrs[info].sh_size;
1420
1421 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1422 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1423 return p + taglen + 1;
1424 }
1425 return NULL;
1426}
1427
Matt Domschc988d2b2005-06-23 22:05:15 -07001428#ifdef CONFIG_MODULE_UNLOAD
1429static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1430 unsigned int infoindex)
1431{
1432 struct module_attribute *attr;
1433 int i;
1434
1435 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1436 if (attr->setup)
1437 attr->setup(mod,
1438 get_modinfo(sechdrs,
1439 infoindex,
1440 attr->attr.name));
1441 }
1442}
1443#endif
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445#ifdef CONFIG_KALLSYMS
1446int is_exported(const char *name, const struct module *mod)
1447{
1448 unsigned int i;
1449
1450 if (!mod) {
1451 for (i = 0; __start___ksymtab+i < __stop___ksymtab; i++)
1452 if (strcmp(__start___ksymtab[i].name, name) == 0)
1453 return 1;
1454 return 0;
1455 }
1456 for (i = 0; i < mod->num_syms; i++)
1457 if (strcmp(mod->syms[i].name, name) == 0)
1458 return 1;
1459 return 0;
1460}
1461
1462/* As per nm */
1463static char elf_type(const Elf_Sym *sym,
1464 Elf_Shdr *sechdrs,
1465 const char *secstrings,
1466 struct module *mod)
1467{
1468 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1469 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1470 return 'v';
1471 else
1472 return 'w';
1473 }
1474 if (sym->st_shndx == SHN_UNDEF)
1475 return 'U';
1476 if (sym->st_shndx == SHN_ABS)
1477 return 'a';
1478 if (sym->st_shndx >= SHN_LORESERVE)
1479 return '?';
1480 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1481 return 't';
1482 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1483 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1484 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1485 return 'r';
1486 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1487 return 'g';
1488 else
1489 return 'd';
1490 }
1491 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1492 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1493 return 's';
1494 else
1495 return 'b';
1496 }
1497 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1498 ".debug", strlen(".debug")) == 0)
1499 return 'n';
1500 return '?';
1501}
1502
1503static void add_kallsyms(struct module *mod,
1504 Elf_Shdr *sechdrs,
1505 unsigned int symindex,
1506 unsigned int strindex,
1507 const char *secstrings)
1508{
1509 unsigned int i;
1510
1511 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1512 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1513 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1514
1515 /* Set types up while we still have access to sections. */
1516 for (i = 0; i < mod->num_symtab; i++)
1517 mod->symtab[i].st_info
1518 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1519}
1520#else
1521static inline void add_kallsyms(struct module *mod,
1522 Elf_Shdr *sechdrs,
1523 unsigned int symindex,
1524 unsigned int strindex,
1525 const char *secstrings)
1526{
1527}
1528#endif /* CONFIG_KALLSYMS */
1529
1530/* Allocate and load the module: note that size of section 0 is always
1531 zero, and we rely on this for optional sections. */
1532static struct module *load_module(void __user *umod,
1533 unsigned long len,
1534 const char __user *uargs)
1535{
1536 Elf_Ehdr *hdr;
1537 Elf_Shdr *sechdrs;
1538 char *secstrings, *args, *modmagic, *strtab = NULL;
1539 unsigned int i, symindex = 0, strindex = 0, setupindex, exindex,
1540 exportindex, modindex, obsparmindex, infoindex, gplindex,
1541 crcindex, gplcrcindex, versindex, pcpuindex;
1542 long arglen;
1543 struct module *mod;
1544 long err = 0;
1545 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1546 struct exception_table_entry *extable;
Thomas Koeller378bac82005-09-06 15:17:11 -07001547 mm_segment_t old_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1550 umod, len, uargs);
1551 if (len < sizeof(*hdr))
1552 return ERR_PTR(-ENOEXEC);
1553
1554 /* Suck in entire file: we'll want most of it. */
1555 /* vmalloc barfs on "unusual" numbers. Check here */
1556 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1557 return ERR_PTR(-ENOMEM);
1558 if (copy_from_user(hdr, umod, len) != 0) {
1559 err = -EFAULT;
1560 goto free_hdr;
1561 }
1562
1563 /* Sanity checks against insmoding binaries or wrong arch,
1564 weird elf version */
1565 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1566 || hdr->e_type != ET_REL
1567 || !elf_check_arch(hdr)
1568 || hdr->e_shentsize != sizeof(*sechdrs)) {
1569 err = -ENOEXEC;
1570 goto free_hdr;
1571 }
1572
1573 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1574 goto truncated;
1575
1576 /* Convenience variables */
1577 sechdrs = (void *)hdr + hdr->e_shoff;
1578 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1579 sechdrs[0].sh_addr = 0;
1580
1581 for (i = 1; i < hdr->e_shnum; i++) {
1582 if (sechdrs[i].sh_type != SHT_NOBITS
1583 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1584 goto truncated;
1585
1586 /* Mark all sections sh_addr with their address in the
1587 temporary image. */
1588 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1589
1590 /* Internal symbols and strings. */
1591 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1592 symindex = i;
1593 strindex = sechdrs[i].sh_link;
1594 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1595 }
1596#ifndef CONFIG_MODULE_UNLOAD
1597 /* Don't load .exit sections */
1598 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1599 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1600#endif
1601 }
1602
1603 modindex = find_sec(hdr, sechdrs, secstrings,
1604 ".gnu.linkonce.this_module");
1605 if (!modindex) {
1606 printk(KERN_WARNING "No module found in object\n");
1607 err = -ENOEXEC;
1608 goto free_hdr;
1609 }
1610 mod = (void *)sechdrs[modindex].sh_addr;
1611
1612 if (symindex == 0) {
1613 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1614 mod->name);
1615 err = -ENOEXEC;
1616 goto free_hdr;
1617 }
1618
1619 /* Optional sections */
1620 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1621 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
1622 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1623 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
1624 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1625 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1626 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1627 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1628 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1629 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
1630
1631 /* Don't keep modinfo section */
1632 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1633#ifdef CONFIG_KALLSYMS
1634 /* Keep symbol and string tables for decoding later. */
1635 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1636 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1637#endif
1638
1639 /* Check module struct version now, before we try to use module. */
1640 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1641 err = -ENOEXEC;
1642 goto free_hdr;
1643 }
1644
1645 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1646 /* This is allowed: modprobe --force will invalidate it. */
1647 if (!modmagic) {
Randy Dunlap9f158332005-09-13 01:25:16 -07001648 add_taint(TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1650 mod->name);
1651 } else if (!same_magic(modmagic, vermagic)) {
1652 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1653 mod->name, modmagic, vermagic);
1654 err = -ENOEXEC;
1655 goto free_hdr;
1656 }
1657
1658 /* Now copy in args */
1659 arglen = strlen_user(uargs);
1660 if (!arglen) {
1661 err = -EFAULT;
1662 goto free_hdr;
1663 }
1664 args = kmalloc(arglen, GFP_KERNEL);
1665 if (!args) {
1666 err = -ENOMEM;
1667 goto free_hdr;
1668 }
1669 if (copy_from_user(args, uargs, arglen) != 0) {
1670 err = -EFAULT;
1671 goto free_mod;
1672 }
1673
1674 if (find_module(mod->name)) {
1675 err = -EEXIST;
1676 goto free_mod;
1677 }
1678
1679 mod->state = MODULE_STATE_COMING;
1680
1681 /* Allow arches to frob section contents and sizes. */
1682 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1683 if (err < 0)
1684 goto free_mod;
1685
1686 if (pcpuindex) {
1687 /* We have a special allocation for this section. */
1688 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
Rusty Russell842bbaa2005-08-01 21:11:47 -07001689 sechdrs[pcpuindex].sh_addralign,
1690 mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (!percpu) {
1692 err = -ENOMEM;
1693 goto free_mod;
1694 }
1695 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1696 mod->percpu = percpu;
1697 }
1698
1699 /* Determine total sizes, and put offsets in sh_entsize. For now
1700 this is done generically; there doesn't appear to be any
1701 special cases for the architectures. */
1702 layout_sections(mod, hdr, sechdrs, secstrings);
1703
1704 /* Do the allocs. */
1705 ptr = module_alloc(mod->core_size);
1706 if (!ptr) {
1707 err = -ENOMEM;
1708 goto free_percpu;
1709 }
1710 memset(ptr, 0, mod->core_size);
1711 mod->module_core = ptr;
1712
1713 ptr = module_alloc(mod->init_size);
1714 if (!ptr && mod->init_size) {
1715 err = -ENOMEM;
1716 goto free_core;
1717 }
1718 memset(ptr, 0, mod->init_size);
1719 mod->module_init = ptr;
1720
1721 /* Transfer each section which specifies SHF_ALLOC */
1722 DEBUGP("final section addresses:\n");
1723 for (i = 0; i < hdr->e_shnum; i++) {
1724 void *dest;
1725
1726 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1727 continue;
1728
1729 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1730 dest = mod->module_init
1731 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1732 else
1733 dest = mod->module_core + sechdrs[i].sh_entsize;
1734
1735 if (sechdrs[i].sh_type != SHT_NOBITS)
1736 memcpy(dest, (void *)sechdrs[i].sh_addr,
1737 sechdrs[i].sh_size);
1738 /* Update sh_addr to point to copy in image. */
1739 sechdrs[i].sh_addr = (unsigned long)dest;
1740 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1741 }
1742 /* Module has been moved. */
1743 mod = (void *)sechdrs[modindex].sh_addr;
1744
1745 /* Now we've moved module, initialize linked lists, etc. */
1746 module_unload_init(mod);
1747
1748 /* Set up license info based on the info section */
1749 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1750
Dave Jones9841d61d2006-01-08 01:03:41 -08001751 if (strcmp(mod->name, "ndiswrapper") == 0)
1752 add_taint(TAINT_PROPRIETARY_MODULE);
1753 if (strcmp(mod->name, "driverloader") == 0)
1754 add_taint(TAINT_PROPRIETARY_MODULE);
1755
Matt Domschc988d2b2005-06-23 22:05:15 -07001756#ifdef CONFIG_MODULE_UNLOAD
1757 /* Set up MODINFO_ATTR fields */
1758 setup_modinfo(mod, sechdrs, infoindex);
1759#endif
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 /* Fix up syms, so that st_value is a pointer to location. */
1762 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1763 mod);
1764 if (err < 0)
1765 goto cleanup;
1766
1767 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1768 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1769 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1770 if (crcindex)
1771 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1772 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1773 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1774 if (gplcrcindex)
1775 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
1776
1777#ifdef CONFIG_MODVERSIONS
1778 if ((mod->num_syms && !crcindex) ||
1779 (mod->num_gpl_syms && !gplcrcindex)) {
1780 printk(KERN_WARNING "%s: No versions for exported symbols."
1781 " Tainting kernel.\n", mod->name);
Randy Dunlap9f158332005-09-13 01:25:16 -07001782 add_taint(TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784#endif
1785
1786 /* Now do relocations. */
1787 for (i = 1; i < hdr->e_shnum; i++) {
1788 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1789 unsigned int info = sechdrs[i].sh_info;
1790
1791 /* Not a valid relocation section? */
1792 if (info >= hdr->e_shnum)
1793 continue;
1794
1795 /* Don't bother with non-allocated sections */
1796 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1797 continue;
1798
1799 if (sechdrs[i].sh_type == SHT_REL)
1800 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1801 else if (sechdrs[i].sh_type == SHT_RELA)
1802 err = apply_relocate_add(sechdrs, strtab, symindex, i,
1803 mod);
1804 if (err < 0)
1805 goto cleanup;
1806 }
1807
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001808 /* Find duplicate symbols */
1809 err = verify_export_symbols(mod);
1810
1811 if (err < 0)
1812 goto cleanup;
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 /* Set up and sort exception table */
1815 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
1816 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
1817 sort_extable(extable, extable + mod->num_exentries);
1818
1819 /* Finally, copy percpu area over. */
1820 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
1821 sechdrs[pcpuindex].sh_size);
1822
1823 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
1824
1825 err = module_finalize(hdr, sechdrs, mod);
1826 if (err < 0)
1827 goto cleanup;
1828
Thomas Koeller378bac82005-09-06 15:17:11 -07001829 /* flush the icache in correct context */
1830 old_fs = get_fs();
1831 set_fs(KERNEL_DS);
1832
1833 /*
1834 * Flush the instruction cache, since we've played with text.
1835 * Do it before processing of module parameters, so the module
1836 * can provide parameter accessor functions of its own.
1837 */
1838 if (mod->module_init)
1839 flush_icache_range((unsigned long)mod->module_init,
1840 (unsigned long)mod->module_init
1841 + mod->init_size);
1842 flush_icache_range((unsigned long)mod->module_core,
1843 (unsigned long)mod->module_core + mod->core_size);
1844
1845 set_fs(old_fs);
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 mod->args = args;
1848 if (obsparmindex) {
1849 err = obsolete_params(mod->name, mod->args,
1850 (struct obsolete_modparm *)
1851 sechdrs[obsparmindex].sh_addr,
1852 sechdrs[obsparmindex].sh_size
1853 / sizeof(struct obsolete_modparm),
1854 sechdrs, symindex,
1855 (char *)sechdrs[strindex].sh_addr);
1856 if (setupindex)
1857 printk(KERN_WARNING "%s: Ignoring new-style "
1858 "parameters in presence of obsolete ones\n",
1859 mod->name);
1860 } else {
1861 /* Size of section 0 is 0, so this works well if no params */
1862 err = parse_args(mod->name, mod->args,
1863 (struct kernel_param *)
1864 sechdrs[setupindex].sh_addr,
1865 sechdrs[setupindex].sh_size
1866 / sizeof(struct kernel_param),
1867 NULL);
1868 }
1869 if (err < 0)
1870 goto arch_cleanup;
1871
1872 err = mod_sysfs_setup(mod,
1873 (struct kernel_param *)
1874 sechdrs[setupindex].sh_addr,
1875 sechdrs[setupindex].sh_size
1876 / sizeof(struct kernel_param));
1877 if (err < 0)
1878 goto arch_cleanup;
1879 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
1880
1881 /* Get rid of temporary copy */
1882 vfree(hdr);
1883
1884 /* Done! */
1885 return mod;
1886
1887 arch_cleanup:
1888 module_arch_cleanup(mod);
1889 cleanup:
1890 module_unload_free(mod);
1891 module_free(mod, mod->module_init);
1892 free_core:
1893 module_free(mod, mod->module_core);
1894 free_percpu:
1895 if (percpu)
1896 percpu_modfree(percpu);
1897 free_mod:
1898 kfree(args);
1899 free_hdr:
1900 vfree(hdr);
Jayachandran C6fe2e702006-01-06 00:19:54 -08001901 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 truncated:
1904 printk(KERN_ERR "Module len %lu truncated\n", len);
1905 err = -ENOEXEC;
1906 goto free_hdr;
1907}
1908
1909/*
1910 * link the module with the whole machine is stopped with interrupts off
1911 * - this defends against kallsyms not taking locks
1912 */
1913static int __link_module(void *_mod)
1914{
1915 struct module *mod = _mod;
1916 list_add(&mod->list, &modules);
1917 return 0;
1918}
1919
1920/* This is where the real work happens */
1921asmlinkage long
1922sys_init_module(void __user *umod,
1923 unsigned long len,
1924 const char __user *uargs)
1925{
1926 struct module *mod;
1927 int ret = 0;
1928
1929 /* Must have permission */
1930 if (!capable(CAP_SYS_MODULE))
1931 return -EPERM;
1932
1933 /* Only one module load at a time, please */
1934 if (down_interruptible(&module_mutex) != 0)
1935 return -EINTR;
1936
1937 /* Do all the hard work */
1938 mod = load_module(umod, len, uargs);
1939 if (IS_ERR(mod)) {
1940 up(&module_mutex);
1941 return PTR_ERR(mod);
1942 }
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 /* Now sew it into the lists. They won't access us, since
1945 strong_try_module_get() will fail. */
1946 stop_machine_run(__link_module, mod, NR_CPUS);
1947
1948 /* Drop lock so they can recurse */
1949 up(&module_mutex);
1950
1951 down(&notify_mutex);
1952 notifier_call_chain(&module_notify_list, MODULE_STATE_COMING, mod);
1953 up(&notify_mutex);
1954
1955 /* Start the module */
1956 if (mod->init != NULL)
1957 ret = mod->init();
1958 if (ret < 0) {
1959 /* Init routine failed: abort. Try to protect us from
1960 buggy refcounters. */
1961 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001962 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (mod->unsafe)
1964 printk(KERN_ERR "%s: module is now stuck!\n",
1965 mod->name);
1966 else {
1967 module_put(mod);
1968 down(&module_mutex);
1969 free_module(mod);
1970 up(&module_mutex);
1971 }
1972 return ret;
1973 }
1974
1975 /* Now it's a first class citizen! */
1976 down(&module_mutex);
1977 mod->state = MODULE_STATE_LIVE;
1978 /* Drop initial reference. */
1979 module_put(mod);
1980 module_free(mod, mod->module_init);
1981 mod->module_init = NULL;
1982 mod->init_size = 0;
1983 mod->init_text_size = 0;
1984 up(&module_mutex);
1985
1986 return 0;
1987}
1988
1989static inline int within(unsigned long addr, void *start, unsigned long size)
1990{
1991 return ((void *)addr >= start && (void *)addr < start + size);
1992}
1993
1994#ifdef CONFIG_KALLSYMS
1995/*
1996 * This ignores the intensely annoying "mapping symbols" found
1997 * in ARM ELF files: $a, $t and $d.
1998 */
1999static inline int is_arm_mapping_symbol(const char *str)
2000{
2001 return str[0] == '$' && strchr("atd", str[1])
2002 && (str[2] == '\0' || str[2] == '.');
2003}
2004
2005static const char *get_ksymbol(struct module *mod,
2006 unsigned long addr,
2007 unsigned long *size,
2008 unsigned long *offset)
2009{
2010 unsigned int i, best = 0;
2011 unsigned long nextval;
2012
2013 /* At worse, next value is at end of module */
2014 if (within(addr, mod->module_init, mod->init_size))
2015 nextval = (unsigned long)mod->module_init+mod->init_text_size;
2016 else
2017 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2018
2019 /* Scan for closest preceeding symbol, and next symbol. (ELF
2020 starts real symbols at 1). */
2021 for (i = 1; i < mod->num_symtab; i++) {
2022 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2023 continue;
2024
2025 /* We ignore unnamed symbols: they're uninformative
2026 * and inserted at a whim. */
2027 if (mod->symtab[i].st_value <= addr
2028 && mod->symtab[i].st_value > mod->symtab[best].st_value
2029 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2030 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2031 best = i;
2032 if (mod->symtab[i].st_value > addr
2033 && mod->symtab[i].st_value < nextval
2034 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2035 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2036 nextval = mod->symtab[i].st_value;
2037 }
2038
2039 if (!best)
2040 return NULL;
2041
2042 *size = nextval - mod->symtab[best].st_value;
2043 *offset = addr - mod->symtab[best].st_value;
2044 return mod->strtab + mod->symtab[best].st_name;
2045}
2046
2047/* For kallsyms to ask for address resolution. NULL means not found.
2048 We don't lock, as this is used for oops resolution and races are a
2049 lesser concern. */
2050const char *module_address_lookup(unsigned long addr,
2051 unsigned long *size,
2052 unsigned long *offset,
2053 char **modname)
2054{
2055 struct module *mod;
2056
2057 list_for_each_entry(mod, &modules, list) {
2058 if (within(addr, mod->module_init, mod->init_size)
2059 || within(addr, mod->module_core, mod->core_size)) {
2060 *modname = mod->name;
2061 return get_ksymbol(mod, addr, size, offset);
2062 }
2063 }
2064 return NULL;
2065}
2066
2067struct module *module_get_kallsym(unsigned int symnum,
2068 unsigned long *value,
2069 char *type,
2070 char namebuf[128])
2071{
2072 struct module *mod;
2073
2074 down(&module_mutex);
2075 list_for_each_entry(mod, &modules, list) {
2076 if (symnum < mod->num_symtab) {
2077 *value = mod->symtab[symnum].st_value;
2078 *type = mod->symtab[symnum].st_info;
2079 strncpy(namebuf,
2080 mod->strtab + mod->symtab[symnum].st_name,
2081 127);
2082 up(&module_mutex);
2083 return mod;
2084 }
2085 symnum -= mod->num_symtab;
2086 }
2087 up(&module_mutex);
2088 return NULL;
2089}
2090
2091static unsigned long mod_find_symname(struct module *mod, const char *name)
2092{
2093 unsigned int i;
2094
2095 for (i = 0; i < mod->num_symtab; i++)
2096 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0)
2097 return mod->symtab[i].st_value;
2098 return 0;
2099}
2100
2101/* Look for this name: can be of form module:name. */
2102unsigned long module_kallsyms_lookup_name(const char *name)
2103{
2104 struct module *mod;
2105 char *colon;
2106 unsigned long ret = 0;
2107
2108 /* Don't lock: we're in enough trouble already. */
2109 if ((colon = strchr(name, ':')) != NULL) {
2110 *colon = '\0';
2111 if ((mod = find_module(name)) != NULL)
2112 ret = mod_find_symname(mod, colon+1);
2113 *colon = ':';
2114 } else {
2115 list_for_each_entry(mod, &modules, list)
2116 if ((ret = mod_find_symname(mod, name)) != 0)
2117 break;
2118 }
2119 return ret;
2120}
2121#endif /* CONFIG_KALLSYMS */
2122
2123/* Called by the /proc file system to return a list of modules. */
2124static void *m_start(struct seq_file *m, loff_t *pos)
2125{
2126 struct list_head *i;
2127 loff_t n = 0;
2128
2129 down(&module_mutex);
2130 list_for_each(i, &modules) {
2131 if (n++ == *pos)
2132 break;
2133 }
2134 if (i == &modules)
2135 return NULL;
2136 return i;
2137}
2138
2139static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2140{
2141 struct list_head *i = p;
2142 (*pos)++;
2143 if (i->next == &modules)
2144 return NULL;
2145 return i->next;
2146}
2147
2148static void m_stop(struct seq_file *m, void *p)
2149{
2150 up(&module_mutex);
2151}
2152
2153static int m_show(struct seq_file *m, void *p)
2154{
2155 struct module *mod = list_entry(p, struct module, list);
2156 seq_printf(m, "%s %lu",
2157 mod->name, mod->init_size + mod->core_size);
2158 print_unload_info(m, mod);
2159
2160 /* Informative for users. */
2161 seq_printf(m, " %s",
2162 mod->state == MODULE_STATE_GOING ? "Unloading":
2163 mod->state == MODULE_STATE_COMING ? "Loading":
2164 "Live");
2165 /* Used by oprofile and other similar tools. */
2166 seq_printf(m, " 0x%p", mod->module_core);
2167
2168 seq_printf(m, "\n");
2169 return 0;
2170}
2171
2172/* Format: modulename size refcount deps address
2173
2174 Where refcount is a number or -, and deps is a comma-separated list
2175 of depends or -.
2176*/
2177struct seq_operations modules_op = {
2178 .start = m_start,
2179 .next = m_next,
2180 .stop = m_stop,
2181 .show = m_show
2182};
2183
2184/* Given an address, look for it in the module exception tables. */
2185const struct exception_table_entry *search_module_extables(unsigned long addr)
2186{
2187 unsigned long flags;
2188 const struct exception_table_entry *e = NULL;
2189 struct module *mod;
2190
2191 spin_lock_irqsave(&modlist_lock, flags);
2192 list_for_each_entry(mod, &modules, list) {
2193 if (mod->num_exentries == 0)
2194 continue;
2195
2196 e = search_extable(mod->extable,
2197 mod->extable + mod->num_exentries - 1,
2198 addr);
2199 if (e)
2200 break;
2201 }
2202 spin_unlock_irqrestore(&modlist_lock, flags);
2203
2204 /* Now, if we found one, we are running inside it now, hence
2205 we cannot unload the module, hence no refcnt needed. */
2206 return e;
2207}
2208
2209/* Is this a valid kernel address? We don't grab the lock: we are oopsing. */
2210struct module *__module_text_address(unsigned long addr)
2211{
2212 struct module *mod;
2213
2214 list_for_each_entry(mod, &modules, list)
2215 if (within(addr, mod->module_init, mod->init_text_size)
2216 || within(addr, mod->module_core, mod->core_text_size))
2217 return mod;
2218 return NULL;
2219}
2220
2221struct module *module_text_address(unsigned long addr)
2222{
2223 struct module *mod;
2224 unsigned long flags;
2225
2226 spin_lock_irqsave(&modlist_lock, flags);
2227 mod = __module_text_address(addr);
2228 spin_unlock_irqrestore(&modlist_lock, flags);
2229
2230 return mod;
2231}
2232
2233/* Don't grab lock, we're oopsing. */
2234void print_modules(void)
2235{
2236 struct module *mod;
2237
2238 printk("Modules linked in:");
2239 list_for_each_entry(mod, &modules, list)
2240 printk(" %s", mod->name);
2241 printk("\n");
2242}
2243
2244void module_add_driver(struct module *mod, struct device_driver *drv)
2245{
2246 if (!mod || !drv)
2247 return;
2248
2249 /* Don't check return code; this call is idempotent */
2250 sysfs_create_link(&drv->kobj, &mod->mkobj.kobj, "module");
2251}
2252EXPORT_SYMBOL(module_add_driver);
2253
2254void module_remove_driver(struct device_driver *drv)
2255{
2256 if (!drv)
2257 return;
2258 sysfs_remove_link(&drv->kobj, "module");
2259}
2260EXPORT_SYMBOL(module_remove_driver);
2261
2262#ifdef CONFIG_MODVERSIONS
2263/* Generate the signature for struct module here, too, for modversions. */
2264void struct_module(struct module *mod) { return; }
2265EXPORT_SYMBOL(struct_module);
2266#endif