Merge master.kernel.org:/pub/scm/linux/kernel/git/dtor/input
[pandora-kernel.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 <linux/unwind.h>
44 #include <asm/uaccess.h>
45 #include <asm/semaphore.h>
46 #include <asm/cacheflush.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         unwind_remove_table(mod->unwind_info, 0);
1056
1057         /* Arch-specific cleanup. */
1058         module_arch_cleanup(mod);
1059
1060         /* Module unload stuff */
1061         module_unload_free(mod);
1062
1063         /* This may be NULL, but that's OK */
1064         module_free(mod, mod->module_init);
1065         kfree(mod->args);
1066         if (mod->percpu)
1067                 percpu_modfree(mod->percpu);
1068
1069         /* Finally, free the core (containing the module structure) */
1070         module_free(mod, mod->module_core);
1071 }
1072
1073 void *__symbol_get(const char *symbol)
1074 {
1075         struct module *owner;
1076         unsigned long value, flags;
1077         const unsigned long *crc;
1078
1079         spin_lock_irqsave(&modlist_lock, flags);
1080         value = __find_symbol(symbol, &owner, &crc, 1);
1081         if (value && !strong_try_module_get(owner))
1082                 value = 0;
1083         spin_unlock_irqrestore(&modlist_lock, flags);
1084
1085         return (void *)value;
1086 }
1087 EXPORT_SYMBOL_GPL(__symbol_get);
1088
1089 /*
1090  * Ensure that an exported symbol [global namespace] does not already exist
1091  * in the Kernel or in some other modules exported symbol table.
1092  */
1093 static int verify_export_symbols(struct module *mod)
1094 {
1095         const char *name = NULL;
1096         unsigned long i, ret = 0;
1097         struct module *owner;
1098         const unsigned long *crc;
1099
1100         for (i = 0; i < mod->num_syms; i++)
1101                 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
1102                         name = mod->syms[i].name;
1103                         ret = -ENOEXEC;
1104                         goto dup;
1105                 }
1106
1107         for (i = 0; i < mod->num_gpl_syms; i++)
1108                 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
1109                         name = mod->gpl_syms[i].name;
1110                         ret = -ENOEXEC;
1111                         goto dup;
1112                 }
1113
1114 dup:
1115         if (ret)
1116                 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1117                         mod->name, name, module_name(owner));
1118
1119         return ret;
1120 }
1121
1122 /* Change all symbols so that sh_value encodes the pointer directly. */
1123 static int simplify_symbols(Elf_Shdr *sechdrs,
1124                             unsigned int symindex,
1125                             const char *strtab,
1126                             unsigned int versindex,
1127                             unsigned int pcpuindex,
1128                             struct module *mod)
1129 {
1130         Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1131         unsigned long secbase;
1132         unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1133         int ret = 0;
1134
1135         for (i = 1; i < n; i++) {
1136                 switch (sym[i].st_shndx) {
1137                 case SHN_COMMON:
1138                         /* We compiled with -fno-common.  These are not
1139                            supposed to happen.  */
1140                         DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1141                         printk("%s: please compile with -fno-common\n",
1142                                mod->name);
1143                         ret = -ENOEXEC;
1144                         break;
1145
1146                 case SHN_ABS:
1147                         /* Don't need to do anything */
1148                         DEBUGP("Absolute symbol: 0x%08lx\n",
1149                                (long)sym[i].st_value);
1150                         break;
1151
1152                 case SHN_UNDEF:
1153                         sym[i].st_value
1154                           = resolve_symbol(sechdrs, versindex,
1155                                            strtab + sym[i].st_name, mod);
1156
1157                         /* Ok if resolved.  */
1158                         if (sym[i].st_value != 0)
1159                                 break;
1160                         /* Ok if weak.  */
1161                         if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1162                                 break;
1163
1164                         printk(KERN_WARNING "%s: Unknown symbol %s\n",
1165                                mod->name, strtab + sym[i].st_name);
1166                         ret = -ENOENT;
1167                         break;
1168
1169                 default:
1170                         /* Divert to percpu allocation if a percpu var. */
1171                         if (sym[i].st_shndx == pcpuindex)
1172                                 secbase = (unsigned long)mod->percpu;
1173                         else
1174                                 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1175                         sym[i].st_value += secbase;
1176                         break;
1177                 }
1178         }
1179
1180         return ret;
1181 }
1182
1183 /* Update size with this section: return offset. */
1184 static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1185 {
1186         long ret;
1187
1188         ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1189         *size = ret + sechdr->sh_size;
1190         return ret;
1191 }
1192
1193 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1194    might -- code, read-only data, read-write data, small data.  Tally
1195    sizes, and place the offsets into sh_entsize fields: high bit means it
1196    belongs in init. */
1197 static void layout_sections(struct module *mod,
1198                             const Elf_Ehdr *hdr,
1199                             Elf_Shdr *sechdrs,
1200                             const char *secstrings)
1201 {
1202         static unsigned long const masks[][2] = {
1203                 /* NOTE: all executable code must be the first section
1204                  * in this array; otherwise modify the text_size
1205                  * finder in the two loops below */
1206                 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1207                 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1208                 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1209                 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1210         };
1211         unsigned int m, i;
1212
1213         for (i = 0; i < hdr->e_shnum; i++)
1214                 sechdrs[i].sh_entsize = ~0UL;
1215
1216         DEBUGP("Core section allocation order:\n");
1217         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1218                 for (i = 0; i < hdr->e_shnum; ++i) {
1219                         Elf_Shdr *s = &sechdrs[i];
1220
1221                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
1222                             || (s->sh_flags & masks[m][1])
1223                             || s->sh_entsize != ~0UL
1224                             || strncmp(secstrings + s->sh_name,
1225                                        ".init", 5) == 0)
1226                                 continue;
1227                         s->sh_entsize = get_offset(&mod->core_size, s);
1228                         DEBUGP("\t%s\n", secstrings + s->sh_name);
1229                 }
1230                 if (m == 0)
1231                         mod->core_text_size = mod->core_size;
1232         }
1233
1234         DEBUGP("Init section allocation order:\n");
1235         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1236                 for (i = 0; i < hdr->e_shnum; ++i) {
1237                         Elf_Shdr *s = &sechdrs[i];
1238
1239                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
1240                             || (s->sh_flags & masks[m][1])
1241                             || s->sh_entsize != ~0UL
1242                             || strncmp(secstrings + s->sh_name,
1243                                        ".init", 5) != 0)
1244                                 continue;
1245                         s->sh_entsize = (get_offset(&mod->init_size, s)
1246                                          | INIT_OFFSET_MASK);
1247                         DEBUGP("\t%s\n", secstrings + s->sh_name);
1248                 }
1249                 if (m == 0)
1250                         mod->init_text_size = mod->init_size;
1251         }
1252 }
1253
1254 static inline int license_is_gpl_compatible(const char *license)
1255 {
1256         return (strcmp(license, "GPL") == 0
1257                 || strcmp(license, "GPL v2") == 0
1258                 || strcmp(license, "GPL and additional rights") == 0
1259                 || strcmp(license, "Dual BSD/GPL") == 0
1260                 || strcmp(license, "Dual MIT/GPL") == 0
1261                 || strcmp(license, "Dual MPL/GPL") == 0);
1262 }
1263
1264 static void set_license(struct module *mod, const char *license)
1265 {
1266         if (!license)
1267                 license = "unspecified";
1268
1269         mod->license_gplok = license_is_gpl_compatible(license);
1270         if (!mod->license_gplok && !(tainted & TAINT_PROPRIETARY_MODULE)) {
1271                 printk(KERN_WARNING "%s: module license '%s' taints kernel.\n",
1272                        mod->name, license);
1273                 add_taint(TAINT_PROPRIETARY_MODULE);
1274         }
1275 }
1276
1277 /* Parse tag=value strings from .modinfo section */
1278 static char *next_string(char *string, unsigned long *secsize)
1279 {
1280         /* Skip non-zero chars */
1281         while (string[0]) {
1282                 string++;
1283                 if ((*secsize)-- <= 1)
1284                         return NULL;
1285         }
1286
1287         /* Skip any zero padding. */
1288         while (!string[0]) {
1289                 string++;
1290                 if ((*secsize)-- <= 1)
1291                         return NULL;
1292         }
1293         return string;
1294 }
1295
1296 static char *get_modinfo(Elf_Shdr *sechdrs,
1297                          unsigned int info,
1298                          const char *tag)
1299 {
1300         char *p;
1301         unsigned int taglen = strlen(tag);
1302         unsigned long size = sechdrs[info].sh_size;
1303
1304         for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1305                 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1306                         return p + taglen + 1;
1307         }
1308         return NULL;
1309 }
1310
1311 static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1312                           unsigned int infoindex)
1313 {
1314         struct module_attribute *attr;
1315         int i;
1316
1317         for (i = 0; (attr = modinfo_attrs[i]); i++) {
1318                 if (attr->setup)
1319                         attr->setup(mod,
1320                                     get_modinfo(sechdrs,
1321                                                 infoindex,
1322                                                 attr->attr.name));
1323         }
1324 }
1325
1326 #ifdef CONFIG_KALLSYMS
1327 int is_exported(const char *name, const struct module *mod)
1328 {
1329         if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1330                 return 1;
1331         else
1332                 if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
1333                         return 1;
1334                 else
1335                         return 0;
1336 }
1337
1338 /* As per nm */
1339 static char elf_type(const Elf_Sym *sym,
1340                      Elf_Shdr *sechdrs,
1341                      const char *secstrings,
1342                      struct module *mod)
1343 {
1344         if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1345                 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1346                         return 'v';
1347                 else
1348                         return 'w';
1349         }
1350         if (sym->st_shndx == SHN_UNDEF)
1351                 return 'U';
1352         if (sym->st_shndx == SHN_ABS)
1353                 return 'a';
1354         if (sym->st_shndx >= SHN_LORESERVE)
1355                 return '?';
1356         if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1357                 return 't';
1358         if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1359             && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1360                 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1361                         return 'r';
1362                 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1363                         return 'g';
1364                 else
1365                         return 'd';
1366         }
1367         if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1368                 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1369                         return 's';
1370                 else
1371                         return 'b';
1372         }
1373         if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1374                     ".debug", strlen(".debug")) == 0)
1375                 return 'n';
1376         return '?';
1377 }
1378
1379 static void add_kallsyms(struct module *mod,
1380                          Elf_Shdr *sechdrs,
1381                          unsigned int symindex,
1382                          unsigned int strindex,
1383                          const char *secstrings)
1384 {
1385         unsigned int i;
1386
1387         mod->symtab = (void *)sechdrs[symindex].sh_addr;
1388         mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1389         mod->strtab = (void *)sechdrs[strindex].sh_addr;
1390
1391         /* Set types up while we still have access to sections. */
1392         for (i = 0; i < mod->num_symtab; i++)
1393                 mod->symtab[i].st_info
1394                         = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1395 }
1396 #else
1397 static inline void add_kallsyms(struct module *mod,
1398                                 Elf_Shdr *sechdrs,
1399                                 unsigned int symindex,
1400                                 unsigned int strindex,
1401                                 const char *secstrings)
1402 {
1403 }
1404 #endif /* CONFIG_KALLSYMS */
1405
1406 /* Allocate and load the module: note that size of section 0 is always
1407    zero, and we rely on this for optional sections. */
1408 static struct module *load_module(void __user *umod,
1409                                   unsigned long len,
1410                                   const char __user *uargs)
1411 {
1412         Elf_Ehdr *hdr;
1413         Elf_Shdr *sechdrs;
1414         char *secstrings, *args, *modmagic, *strtab = NULL;
1415         unsigned int i, symindex = 0, strindex = 0, setupindex, exindex,
1416                 exportindex, modindex, obsparmindex, infoindex, gplindex,
1417                 crcindex, gplcrcindex, versindex, pcpuindex, gplfutureindex,
1418                 gplfuturecrcindex, unwindex = 0;
1419         struct module *mod;
1420         long err = 0;
1421         void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1422         struct exception_table_entry *extable;
1423         mm_segment_t old_fs;
1424
1425         DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1426                umod, len, uargs);
1427         if (len < sizeof(*hdr))
1428                 return ERR_PTR(-ENOEXEC);
1429
1430         /* Suck in entire file: we'll want most of it. */
1431         /* vmalloc barfs on "unusual" numbers.  Check here */
1432         if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1433                 return ERR_PTR(-ENOMEM);
1434         if (copy_from_user(hdr, umod, len) != 0) {
1435                 err = -EFAULT;
1436                 goto free_hdr;
1437         }
1438
1439         /* Sanity checks against insmoding binaries or wrong arch,
1440            weird elf version */
1441         if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1442             || hdr->e_type != ET_REL
1443             || !elf_check_arch(hdr)
1444             || hdr->e_shentsize != sizeof(*sechdrs)) {
1445                 err = -ENOEXEC;
1446                 goto free_hdr;
1447         }
1448
1449         if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1450                 goto truncated;
1451
1452         /* Convenience variables */
1453         sechdrs = (void *)hdr + hdr->e_shoff;
1454         secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1455         sechdrs[0].sh_addr = 0;
1456
1457         for (i = 1; i < hdr->e_shnum; i++) {
1458                 if (sechdrs[i].sh_type != SHT_NOBITS
1459                     && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1460                         goto truncated;
1461
1462                 /* Mark all sections sh_addr with their address in the
1463                    temporary image. */
1464                 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1465
1466                 /* Internal symbols and strings. */
1467                 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1468                         symindex = i;
1469                         strindex = sechdrs[i].sh_link;
1470                         strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1471                 }
1472 #ifndef CONFIG_MODULE_UNLOAD
1473                 /* Don't load .exit sections */
1474                 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1475                         sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1476 #endif
1477         }
1478
1479         modindex = find_sec(hdr, sechdrs, secstrings,
1480                             ".gnu.linkonce.this_module");
1481         if (!modindex) {
1482                 printk(KERN_WARNING "No module found in object\n");
1483                 err = -ENOEXEC;
1484                 goto free_hdr;
1485         }
1486         mod = (void *)sechdrs[modindex].sh_addr;
1487
1488         if (symindex == 0) {
1489                 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1490                        mod->name);
1491                 err = -ENOEXEC;
1492                 goto free_hdr;
1493         }
1494
1495         /* Optional sections */
1496         exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1497         gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
1498         gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
1499         crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1500         gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
1501         gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
1502         setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1503         exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1504         obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1505         versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1506         infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1507         pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
1508 #ifdef ARCH_UNWIND_SECTION_NAME
1509         unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
1510 #endif
1511
1512         /* Don't keep modinfo section */
1513         sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1514 #ifdef CONFIG_KALLSYMS
1515         /* Keep symbol and string tables for decoding later. */
1516         sechdrs[symindex].sh_flags |= SHF_ALLOC;
1517         sechdrs[strindex].sh_flags |= SHF_ALLOC;
1518 #endif
1519         if (unwindex)
1520                 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
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         /* Size of section 0 is 0, so this works well if no unwind info. */
1750         mod->unwind_info = unwind_add_table(mod,
1751                                             (void *)sechdrs[unwindex].sh_addr,
1752                                             sechdrs[unwindex].sh_size);
1753
1754         /* Get rid of temporary copy */
1755         vfree(hdr);
1756
1757         /* Done! */
1758         return mod;
1759
1760  arch_cleanup:
1761         module_arch_cleanup(mod);
1762  cleanup:
1763         module_unload_free(mod);
1764         module_free(mod, mod->module_init);
1765  free_core:
1766         module_free(mod, mod->module_core);
1767  free_percpu:
1768         if (percpu)
1769                 percpu_modfree(percpu);
1770  free_mod:
1771         kfree(args);
1772  free_hdr:
1773         vfree(hdr);
1774         return ERR_PTR(err);
1775
1776  truncated:
1777         printk(KERN_ERR "Module len %lu truncated\n", len);
1778         err = -ENOEXEC;
1779         goto free_hdr;
1780 }
1781
1782 /*
1783  * link the module with the whole machine is stopped with interrupts off
1784  * - this defends against kallsyms not taking locks
1785  */
1786 static int __link_module(void *_mod)
1787 {
1788         struct module *mod = _mod;
1789         list_add(&mod->list, &modules);
1790         return 0;
1791 }
1792
1793 /* This is where the real work happens */
1794 asmlinkage long
1795 sys_init_module(void __user *umod,
1796                 unsigned long len,
1797                 const char __user *uargs)
1798 {
1799         struct module *mod;
1800         int ret = 0;
1801
1802         /* Must have permission */
1803         if (!capable(CAP_SYS_MODULE))
1804                 return -EPERM;
1805
1806         /* Only one module load at a time, please */
1807         if (mutex_lock_interruptible(&module_mutex) != 0)
1808                 return -EINTR;
1809
1810         /* Do all the hard work */
1811         mod = load_module(umod, len, uargs);
1812         if (IS_ERR(mod)) {
1813                 mutex_unlock(&module_mutex);
1814                 return PTR_ERR(mod);
1815         }
1816
1817         /* Now sew it into the lists.  They won't access us, since
1818            strong_try_module_get() will fail. */
1819         stop_machine_run(__link_module, mod, NR_CPUS);
1820
1821         /* Drop lock so they can recurse */
1822         mutex_unlock(&module_mutex);
1823
1824         blocking_notifier_call_chain(&module_notify_list,
1825                         MODULE_STATE_COMING, mod);
1826
1827         /* Start the module */
1828         if (mod->init != NULL)
1829                 ret = mod->init();
1830         if (ret < 0) {
1831                 /* Init routine failed: abort.  Try to protect us from
1832                    buggy refcounters. */
1833                 mod->state = MODULE_STATE_GOING;
1834                 synchronize_sched();
1835                 if (mod->unsafe)
1836                         printk(KERN_ERR "%s: module is now stuck!\n",
1837                                mod->name);
1838                 else {
1839                         module_put(mod);
1840                         mutex_lock(&module_mutex);
1841                         free_module(mod);
1842                         mutex_unlock(&module_mutex);
1843                 }
1844                 return ret;
1845         }
1846
1847         /* Now it's a first class citizen! */
1848         mutex_lock(&module_mutex);
1849         mod->state = MODULE_STATE_LIVE;
1850         /* Drop initial reference. */
1851         module_put(mod);
1852         unwind_remove_table(mod->unwind_info, 1);
1853         module_free(mod, mod->module_init);
1854         mod->module_init = NULL;
1855         mod->init_size = 0;
1856         mod->init_text_size = 0;
1857         mutex_unlock(&module_mutex);
1858
1859         return 0;
1860 }
1861
1862 static inline int within(unsigned long addr, void *start, unsigned long size)
1863 {
1864         return ((void *)addr >= start && (void *)addr < start + size);
1865 }
1866
1867 #ifdef CONFIG_KALLSYMS
1868 /*
1869  * This ignores the intensely annoying "mapping symbols" found
1870  * in ARM ELF files: $a, $t and $d.
1871  */
1872 static inline int is_arm_mapping_symbol(const char *str)
1873 {
1874         return str[0] == '$' && strchr("atd", str[1]) 
1875                && (str[2] == '\0' || str[2] == '.');
1876 }
1877
1878 static const char *get_ksymbol(struct module *mod,
1879                                unsigned long addr,
1880                                unsigned long *size,
1881                                unsigned long *offset)
1882 {
1883         unsigned int i, best = 0;
1884         unsigned long nextval;
1885
1886         /* At worse, next value is at end of module */
1887         if (within(addr, mod->module_init, mod->init_size))
1888                 nextval = (unsigned long)mod->module_init+mod->init_text_size;
1889         else 
1890                 nextval = (unsigned long)mod->module_core+mod->core_text_size;
1891
1892         /* Scan for closest preceeding symbol, and next symbol. (ELF
1893            starts real symbols at 1). */
1894         for (i = 1; i < mod->num_symtab; i++) {
1895                 if (mod->symtab[i].st_shndx == SHN_UNDEF)
1896                         continue;
1897
1898                 /* We ignore unnamed symbols: they're uninformative
1899                  * and inserted at a whim. */
1900                 if (mod->symtab[i].st_value <= addr
1901                     && mod->symtab[i].st_value > mod->symtab[best].st_value
1902                     && *(mod->strtab + mod->symtab[i].st_name) != '\0'
1903                     && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
1904                         best = i;
1905                 if (mod->symtab[i].st_value > addr
1906                     && mod->symtab[i].st_value < nextval
1907                     && *(mod->strtab + mod->symtab[i].st_name) != '\0'
1908                     && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
1909                         nextval = mod->symtab[i].st_value;
1910         }
1911
1912         if (!best)
1913                 return NULL;
1914
1915         *size = nextval - mod->symtab[best].st_value;
1916         *offset = addr - mod->symtab[best].st_value;
1917         return mod->strtab + mod->symtab[best].st_name;
1918 }
1919
1920 /* For kallsyms to ask for address resolution.  NULL means not found.
1921    We don't lock, as this is used for oops resolution and races are a
1922    lesser concern. */
1923 const char *module_address_lookup(unsigned long addr,
1924                                   unsigned long *size,
1925                                   unsigned long *offset,
1926                                   char **modname)
1927 {
1928         struct module *mod;
1929
1930         list_for_each_entry(mod, &modules, list) {
1931                 if (within(addr, mod->module_init, mod->init_size)
1932                     || within(addr, mod->module_core, mod->core_size)) {
1933                         *modname = mod->name;
1934                         return get_ksymbol(mod, addr, size, offset);
1935                 }
1936         }
1937         return NULL;
1938 }
1939
1940 struct module *module_get_kallsym(unsigned int symnum,
1941                                   unsigned long *value,
1942                                   char *type,
1943                                   char namebuf[128])
1944 {
1945         struct module *mod;
1946
1947         mutex_lock(&module_mutex);
1948         list_for_each_entry(mod, &modules, list) {
1949                 if (symnum < mod->num_symtab) {
1950                         *value = mod->symtab[symnum].st_value;
1951                         *type = mod->symtab[symnum].st_info;
1952                         strncpy(namebuf,
1953                                 mod->strtab + mod->symtab[symnum].st_name,
1954                                 127);
1955                         mutex_unlock(&module_mutex);
1956                         return mod;
1957                 }
1958                 symnum -= mod->num_symtab;
1959         }
1960         mutex_unlock(&module_mutex);
1961         return NULL;
1962 }
1963
1964 static unsigned long mod_find_symname(struct module *mod, const char *name)
1965 {
1966         unsigned int i;
1967
1968         for (i = 0; i < mod->num_symtab; i++)
1969                 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
1970                     mod->symtab[i].st_info != 'U')
1971                         return mod->symtab[i].st_value;
1972         return 0;
1973 }
1974
1975 /* Look for this name: can be of form module:name. */
1976 unsigned long module_kallsyms_lookup_name(const char *name)
1977 {
1978         struct module *mod;
1979         char *colon;
1980         unsigned long ret = 0;
1981
1982         /* Don't lock: we're in enough trouble already. */
1983         if ((colon = strchr(name, ':')) != NULL) {
1984                 *colon = '\0';
1985                 if ((mod = find_module(name)) != NULL)
1986                         ret = mod_find_symname(mod, colon+1);
1987                 *colon = ':';
1988         } else {
1989                 list_for_each_entry(mod, &modules, list)
1990                         if ((ret = mod_find_symname(mod, name)) != 0)
1991                                 break;
1992         }
1993         return ret;
1994 }
1995 #endif /* CONFIG_KALLSYMS */
1996
1997 /* Called by the /proc file system to return a list of modules. */
1998 static void *m_start(struct seq_file *m, loff_t *pos)
1999 {
2000         struct list_head *i;
2001         loff_t n = 0;
2002
2003         mutex_lock(&module_mutex);
2004         list_for_each(i, &modules) {
2005                 if (n++ == *pos)
2006                         break;
2007         }
2008         if (i == &modules)
2009                 return NULL;
2010         return i;
2011 }
2012
2013 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2014 {
2015         struct list_head *i = p;
2016         (*pos)++;
2017         if (i->next == &modules)
2018                 return NULL;
2019         return i->next;
2020 }
2021
2022 static void m_stop(struct seq_file *m, void *p)
2023 {
2024         mutex_unlock(&module_mutex);
2025 }
2026
2027 static int m_show(struct seq_file *m, void *p)
2028 {
2029         struct module *mod = list_entry(p, struct module, list);
2030         seq_printf(m, "%s %lu",
2031                    mod->name, mod->init_size + mod->core_size);
2032         print_unload_info(m, mod);
2033
2034         /* Informative for users. */
2035         seq_printf(m, " %s",
2036                    mod->state == MODULE_STATE_GOING ? "Unloading":
2037                    mod->state == MODULE_STATE_COMING ? "Loading":
2038                    "Live");
2039         /* Used by oprofile and other similar tools. */
2040         seq_printf(m, " 0x%p", mod->module_core);
2041
2042         seq_printf(m, "\n");
2043         return 0;
2044 }
2045
2046 /* Format: modulename size refcount deps address
2047
2048    Where refcount is a number or -, and deps is a comma-separated list
2049    of depends or -.
2050 */
2051 struct seq_operations modules_op = {
2052         .start  = m_start,
2053         .next   = m_next,
2054         .stop   = m_stop,
2055         .show   = m_show
2056 };
2057
2058 /* Given an address, look for it in the module exception tables. */
2059 const struct exception_table_entry *search_module_extables(unsigned long addr)
2060 {
2061         unsigned long flags;
2062         const struct exception_table_entry *e = NULL;
2063         struct module *mod;
2064
2065         spin_lock_irqsave(&modlist_lock, flags);
2066         list_for_each_entry(mod, &modules, list) {
2067                 if (mod->num_exentries == 0)
2068                         continue;
2069                                 
2070                 e = search_extable(mod->extable,
2071                                    mod->extable + mod->num_exentries - 1,
2072                                    addr);
2073                 if (e)
2074                         break;
2075         }
2076         spin_unlock_irqrestore(&modlist_lock, flags);
2077
2078         /* Now, if we found one, we are running inside it now, hence
2079            we cannot unload the module, hence no refcnt needed. */
2080         return e;
2081 }
2082
2083 /* Is this a valid kernel address?  We don't grab the lock: we are oopsing. */
2084 struct module *__module_text_address(unsigned long addr)
2085 {
2086         struct module *mod;
2087
2088         list_for_each_entry(mod, &modules, list)
2089                 if (within(addr, mod->module_init, mod->init_text_size)
2090                     || within(addr, mod->module_core, mod->core_text_size))
2091                         return mod;
2092         return NULL;
2093 }
2094
2095 struct module *module_text_address(unsigned long addr)
2096 {
2097         struct module *mod;
2098         unsigned long flags;
2099
2100         spin_lock_irqsave(&modlist_lock, flags);
2101         mod = __module_text_address(addr);
2102         spin_unlock_irqrestore(&modlist_lock, flags);
2103
2104         return mod;
2105 }
2106
2107 /* Don't grab lock, we're oopsing. */
2108 void print_modules(void)
2109 {
2110         struct module *mod;
2111
2112         printk("Modules linked in:");
2113         list_for_each_entry(mod, &modules, list)
2114                 printk(" %s", mod->name);
2115         printk("\n");
2116 }
2117
2118 void module_add_driver(struct module *mod, struct device_driver *drv)
2119 {
2120         if (!mod || !drv)
2121                 return;
2122
2123         /* Don't check return code; this call is idempotent */
2124         sysfs_create_link(&drv->kobj, &mod->mkobj.kobj, "module");
2125 }
2126 EXPORT_SYMBOL(module_add_driver);
2127
2128 void module_remove_driver(struct device_driver *drv)
2129 {
2130         if (!drv)
2131                 return;
2132         sysfs_remove_link(&drv->kobj, "module");
2133 }
2134 EXPORT_SYMBOL(module_remove_driver);
2135
2136 #ifdef CONFIG_MODVERSIONS
2137 /* Generate the signature for struct module here, too, for modversions. */
2138 void struct_module(struct module *mod) { return; }
2139 EXPORT_SYMBOL(struct_module);
2140 #endif