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