- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh.
[linux-flexiantxendom0-3.2.10.git] / kernel / module.c
1 /*
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/module.h>
20 #include <linux/moduleloader.h>
21 #include <linux/ftrace_event.h>
22 #include <linux/init.h>
23 #include <linux/kallsyms.h>
24 #include <linux/fs.h>
25 #include <linux/sysfs.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/vmalloc.h>
29 #include <linux/elf.h>
30 #include <linux/proc_fs.h>
31 #include <linux/seq_file.h>
32 #include <linux/syscalls.h>
33 #include <linux/fcntl.h>
34 #include <linux/rcupdate.h>
35 #include <linux/capability.h>
36 #include <linux/cpu.h>
37 #include <linux/moduleparam.h>
38 #include <linux/errno.h>
39 #include <linux/err.h>
40 #include <linux/vermagic.h>
41 #include <linux/notifier.h>
42 #include <linux/sched.h>
43 #include <linux/stop_machine.h>
44 #include <linux/device.h>
45 #include <linux/string.h>
46 #include <linux/mutex.h>
47 #include <linux/unwind.h>
48 #include <linux/rculist.h>
49 #include <asm/uaccess.h>
50 #include <asm/cacheflush.h>
51 #include <asm/mmu_context.h>
52 #include <linux/license.h>
53 #include <asm/sections.h>
54 #include <linux/tracepoint.h>
55 #include <linux/ftrace.h>
56 #include <linux/async.h>
57 #include <linux/percpu.h>
58 #include <linux/kmemleak.h>
59
60 #define CREATE_TRACE_POINTS
61 #include <trace/events/module.h>
62
63 EXPORT_TRACEPOINT_SYMBOL(module_get);
64
65 #if 0
66 #define DEBUGP printk
67 #else
68 #define DEBUGP(fmt , a...)
69 #endif
70
71 #ifndef ARCH_SHF_SMALL
72 #define ARCH_SHF_SMALL 0
73 #endif
74
75 /* If this is set, the section belongs in the init part of the module */
76 #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
77
78 #ifdef CONFIG_ENTERPRISE_SUPPORT
79 /* Allow unsupported modules switch. */
80 #ifdef UNSUPPORTED_MODULES
81 int unsupported = UNSUPPORTED_MODULES;
82 #else
83 int unsupported = 2;  /* don't warn when loading unsupported modules. */
84 #endif
85
86 static int __init unsupported_setup(char *str)
87 {
88         get_option(&str, &unsupported);
89         return 1;
90 }
91 __setup("unsupported=", unsupported_setup);
92 #endif
93
94 /* List of modules, protected by module_mutex or preempt_disable
95  * (delete uses stop_machine/add uses RCU list operations). */
96 DEFINE_MUTEX(module_mutex);
97 EXPORT_SYMBOL_GPL(module_mutex);
98 static LIST_HEAD(modules);
99
100 /* Block module loading/unloading? */
101 int modules_disabled = 0;
102
103 /* Waiting for a module to finish initializing? */
104 static DECLARE_WAIT_QUEUE_HEAD(module_wq);
105
106 static BLOCKING_NOTIFIER_HEAD(module_notify_list);
107
108 /* Bounds of module allocation, for speeding __module_address */
109 static unsigned long module_addr_min = -1UL, module_addr_max = 0;
110
111 int register_module_notifier(struct notifier_block * nb)
112 {
113         return blocking_notifier_chain_register(&module_notify_list, nb);
114 }
115 EXPORT_SYMBOL(register_module_notifier);
116
117 int unregister_module_notifier(struct notifier_block * nb)
118 {
119         return blocking_notifier_chain_unregister(&module_notify_list, nb);
120 }
121 EXPORT_SYMBOL(unregister_module_notifier);
122
123 /* We require a truly strong try_module_get(): 0 means failure due to
124    ongoing or failed initialization etc. */
125 static inline int strong_try_module_get(struct module *mod)
126 {
127         if (mod && mod->state == MODULE_STATE_COMING)
128                 return -EBUSY;
129         if (try_module_get(mod))
130                 return 0;
131         else
132                 return -ENOENT;
133 }
134
135 static inline void add_taint_module(struct module *mod, unsigned flag)
136 {
137         add_taint(flag);
138         mod->taints |= (1U << flag);
139 }
140
141 /*
142  * A thread that wants to hold a reference to a module only while it
143  * is running can call this to safely exit.  nfsd and lockd use this.
144  */
145 void __module_put_and_exit(struct module *mod, long code)
146 {
147         module_put(mod);
148         do_exit(code);
149 }
150 EXPORT_SYMBOL(__module_put_and_exit);
151
152 /* Find a module section: 0 means not found. */
153 static unsigned int find_sec(Elf_Ehdr *hdr,
154                              Elf_Shdr *sechdrs,
155                              const char *secstrings,
156                              const char *name)
157 {
158         unsigned int i;
159
160         for (i = 1; i < hdr->e_shnum; i++)
161                 /* Alloc bit cleared means "ignore it." */
162                 if ((sechdrs[i].sh_flags & SHF_ALLOC)
163                     && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
164                         return i;
165         return 0;
166 }
167
168 /* Find a module section, or NULL. */
169 static void *section_addr(Elf_Ehdr *hdr, Elf_Shdr *shdrs,
170                           const char *secstrings, const char *name)
171 {
172         /* Section 0 has sh_addr 0. */
173         return (void *)shdrs[find_sec(hdr, shdrs, secstrings, name)].sh_addr;
174 }
175
176 /* Find a module section, or NULL.  Fill in number of "objects" in section. */
177 static void *section_objs(Elf_Ehdr *hdr,
178                           Elf_Shdr *sechdrs,
179                           const char *secstrings,
180                           const char *name,
181                           size_t object_size,
182                           unsigned int *num)
183 {
184         unsigned int sec = find_sec(hdr, sechdrs, secstrings, name);
185
186         /* Section 0 has sh_addr 0 and sh_size 0. */
187         *num = sechdrs[sec].sh_size / object_size;
188         return (void *)sechdrs[sec].sh_addr;
189 }
190
191 /* Provided by the linker */
192 extern const struct kernel_symbol __start___ksymtab[];
193 extern const struct kernel_symbol __stop___ksymtab[];
194 extern const struct kernel_symbol __start___ksymtab_gpl[];
195 extern const struct kernel_symbol __stop___ksymtab_gpl[];
196 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
197 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
198 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
199 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
200 extern const unsigned long __start___kcrctab[];
201 extern const unsigned long __start___kcrctab_gpl[];
202 extern const unsigned long __start___kcrctab_gpl_future[];
203 #ifdef CONFIG_UNUSED_SYMBOLS
204 extern const struct kernel_symbol __start___ksymtab_unused[];
205 extern const struct kernel_symbol __stop___ksymtab_unused[];
206 extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
207 extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
208 extern const unsigned long __start___kcrctab_unused[];
209 extern const unsigned long __start___kcrctab_unused_gpl[];
210 #endif
211
212 #ifndef CONFIG_MODVERSIONS
213 #define symversion(base, idx) NULL
214 #else
215 #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
216 #endif
217
218 static bool each_symbol_in_section(const struct symsearch *arr,
219                                    unsigned int arrsize,
220                                    struct module *owner,
221                                    bool (*fn)(const struct symsearch *syms,
222                                               struct module *owner,
223                                               unsigned int symnum, void *data),
224                                    void *data)
225 {
226         unsigned int i, j;
227
228         for (j = 0; j < arrsize; j++) {
229                 for (i = 0; i < arr[j].stop - arr[j].start; i++)
230                         if (fn(&arr[j], owner, i, data))
231                                 return true;
232         }
233
234         return false;
235 }
236
237 /* Returns true as soon as fn returns true, otherwise false. */
238 bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
239                             unsigned int symnum, void *data), void *data)
240 {
241         struct module *mod;
242         const struct symsearch arr[] = {
243                 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
244                   NOT_GPL_ONLY, false },
245                 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
246                   __start___kcrctab_gpl,
247                   GPL_ONLY, false },
248                 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
249                   __start___kcrctab_gpl_future,
250                   WILL_BE_GPL_ONLY, false },
251 #ifdef CONFIG_UNUSED_SYMBOLS
252                 { __start___ksymtab_unused, __stop___ksymtab_unused,
253                   __start___kcrctab_unused,
254                   NOT_GPL_ONLY, true },
255                 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
256                   __start___kcrctab_unused_gpl,
257                   GPL_ONLY, true },
258 #endif
259         };
260
261         if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
262                 return true;
263
264         list_for_each_entry_rcu(mod, &modules, list) {
265                 struct symsearch arr[] = {
266                         { mod->syms, mod->syms + mod->num_syms, mod->crcs,
267                           NOT_GPL_ONLY, false },
268                         { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
269                           mod->gpl_crcs,
270                           GPL_ONLY, false },
271                         { mod->gpl_future_syms,
272                           mod->gpl_future_syms + mod->num_gpl_future_syms,
273                           mod->gpl_future_crcs,
274                           WILL_BE_GPL_ONLY, false },
275 #ifdef CONFIG_UNUSED_SYMBOLS
276                         { mod->unused_syms,
277                           mod->unused_syms + mod->num_unused_syms,
278                           mod->unused_crcs,
279                           NOT_GPL_ONLY, true },
280                         { mod->unused_gpl_syms,
281                           mod->unused_gpl_syms + mod->num_unused_gpl_syms,
282                           mod->unused_gpl_crcs,
283                           GPL_ONLY, true },
284 #endif
285                 };
286
287                 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
288                         return true;
289         }
290         return false;
291 }
292 EXPORT_SYMBOL_GPL(each_symbol);
293
294 struct find_symbol_arg {
295         /* Input */
296         const char *name;
297         bool gplok;
298         bool warn;
299
300         /* Output */
301         struct module *owner;
302         const unsigned long *crc;
303         const struct kernel_symbol *sym;
304 };
305
306 static bool find_symbol_in_section(const struct symsearch *syms,
307                                    struct module *owner,
308                                    unsigned int symnum, void *data)
309 {
310         struct find_symbol_arg *fsa = data;
311
312         if (strcmp(syms->start[symnum].name, fsa->name) != 0)
313                 return false;
314
315         if (!fsa->gplok) {
316                 if (syms->licence == GPL_ONLY)
317                         return false;
318                 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
319                         printk(KERN_WARNING "Symbol %s is being used "
320                                "by a non-GPL module, which will not "
321                                "be allowed in the future\n", fsa->name);
322                         printk(KERN_WARNING "Please see the file "
323                                "Documentation/feature-removal-schedule.txt "
324                                "in the kernel source tree for more details.\n");
325                 }
326         }
327
328 #ifdef CONFIG_UNUSED_SYMBOLS
329         if (syms->unused && fsa->warn) {
330                 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
331                        "however this module is using it.\n", fsa->name);
332                 printk(KERN_WARNING
333                        "This symbol will go away in the future.\n");
334                 printk(KERN_WARNING
335                        "Please evalute if this is the right api to use and if "
336                        "it really is, submit a report the linux kernel "
337                        "mailinglist together with submitting your code for "
338                        "inclusion.\n");
339         }
340 #endif
341
342         fsa->owner = owner;
343         fsa->crc = symversion(syms->crcs, symnum);
344         fsa->sym = &syms->start[symnum];
345         return true;
346 }
347
348 /* Find a symbol and return it, along with, (optional) crc and
349  * (optional) module which owns it */
350 const struct kernel_symbol *find_symbol(const char *name,
351                                         struct module **owner,
352                                         const unsigned long **crc,
353                                         bool gplok,
354                                         bool warn)
355 {
356         struct find_symbol_arg fsa;
357
358         fsa.name = name;
359         fsa.gplok = gplok;
360         fsa.warn = warn;
361
362         if (each_symbol(find_symbol_in_section, &fsa)) {
363                 if (owner)
364                         *owner = fsa.owner;
365                 if (crc)
366                         *crc = fsa.crc;
367                 return fsa.sym;
368         }
369
370         DEBUGP("Failed to find symbol %s\n", name);
371         return NULL;
372 }
373 EXPORT_SYMBOL_GPL(find_symbol);
374
375 /* Search for module by name: must hold module_mutex. */
376 struct module *find_module(const char *name)
377 {
378         struct module *mod;
379
380         list_for_each_entry(mod, &modules, list) {
381                 if (strcmp(mod->name, name) == 0)
382                         return mod;
383         }
384         return NULL;
385 }
386 EXPORT_SYMBOL_GPL(find_module);
387
388 #ifdef CONFIG_SMP
389
390 static void *percpu_modalloc(unsigned long size, unsigned long align,
391                              const char *name)
392 {
393         void *ptr;
394
395         if (align > PAGE_SIZE) {
396                 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
397                        name, align, PAGE_SIZE);
398                 align = PAGE_SIZE;
399         }
400
401         ptr = __alloc_reserved_percpu(size, align);
402         if (!ptr)
403                 printk(KERN_WARNING
404                        "Could not allocate %lu bytes percpu data\n", size);
405         return ptr;
406 }
407
408 static void percpu_modfree(void *freeme)
409 {
410         free_percpu(freeme);
411 }
412
413 static unsigned int find_pcpusec(Elf_Ehdr *hdr,
414                                  Elf_Shdr *sechdrs,
415                                  const char *secstrings)
416 {
417         return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
418 }
419
420 static void percpu_modcopy(void *pcpudest, const void *from, unsigned long size)
421 {
422         int cpu;
423
424         for_each_possible_cpu(cpu)
425                 memcpy(pcpudest + per_cpu_offset(cpu), from, size);
426 }
427
428 #else /* ... !CONFIG_SMP */
429
430 static inline void *percpu_modalloc(unsigned long size, unsigned long align,
431                                     const char *name)
432 {
433         return NULL;
434 }
435 static inline void percpu_modfree(void *pcpuptr)
436 {
437         BUG();
438 }
439 static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
440                                         Elf_Shdr *sechdrs,
441                                         const char *secstrings)
442 {
443         return 0;
444 }
445 static inline void percpu_modcopy(void *pcpudst, const void *src,
446                                   unsigned long size)
447 {
448         /* pcpusec should be 0, and size of that section should be 0. */
449         BUG_ON(size != 0);
450 }
451
452 #endif /* CONFIG_SMP */
453
454 #define MODINFO_ATTR(field)     \
455 static void setup_modinfo_##field(struct module *mod, const char *s)  \
456 {                                                                     \
457         mod->field = kstrdup(s, GFP_KERNEL);                          \
458 }                                                                     \
459 static ssize_t show_modinfo_##field(struct module_attribute *mattr,   \
460                         struct module *mod, char *buffer)             \
461 {                                                                     \
462         return sprintf(buffer, "%s\n", mod->field);                   \
463 }                                                                     \
464 static int modinfo_##field##_exists(struct module *mod)               \
465 {                                                                     \
466         return mod->field != NULL;                                    \
467 }                                                                     \
468 static void free_modinfo_##field(struct module *mod)                  \
469 {                                                                     \
470         kfree(mod->field);                                            \
471         mod->field = NULL;                                            \
472 }                                                                     \
473 static struct module_attribute modinfo_##field = {                    \
474         .attr = { .name = __stringify(field), .mode = 0444 },         \
475         .show = show_modinfo_##field,                                 \
476         .setup = setup_modinfo_##field,                               \
477         .test = modinfo_##field##_exists,                             \
478         .free = free_modinfo_##field,                                 \
479 };
480
481 MODINFO_ATTR(version);
482 MODINFO_ATTR(srcversion);
483
484 static char last_unloaded_module[MODULE_NAME_LEN+1];
485
486 #ifdef CONFIG_MODULE_UNLOAD
487 /* Init the unload section of the module. */
488 static void module_unload_init(struct module *mod)
489 {
490         int cpu;
491
492         INIT_LIST_HEAD(&mod->modules_which_use_me);
493         for_each_possible_cpu(cpu)
494                 local_set(__module_ref_addr(mod, cpu), 0);
495         /* Hold reference count during initialization. */
496         local_set(__module_ref_addr(mod, raw_smp_processor_id()), 1);
497         /* Backwards compatibility macros put refcount during init. */
498         mod->waiter = current;
499 }
500
501 /* modules using other modules */
502 struct module_use
503 {
504         struct list_head list;
505         struct module *module_which_uses;
506 };
507
508 /* Does a already use b? */
509 static int already_uses(struct module *a, struct module *b)
510 {
511         struct module_use *use;
512
513         list_for_each_entry(use, &b->modules_which_use_me, list) {
514                 if (use->module_which_uses == a) {
515                         DEBUGP("%s uses %s!\n", a->name, b->name);
516                         return 1;
517                 }
518         }
519         DEBUGP("%s does not use %s!\n", a->name, b->name);
520         return 0;
521 }
522
523 /* Module a uses b */
524 int use_module(struct module *a, struct module *b)
525 {
526         struct module_use *use;
527         int no_warn, err;
528
529         if (b == NULL || already_uses(a, b)) return 1;
530
531         /* If we're interrupted or time out, we fail. */
532         if (wait_event_interruptible_timeout(
533                     module_wq, (err = strong_try_module_get(b)) != -EBUSY,
534                     30 * HZ) <= 0) {
535                 printk("%s: gave up waiting for init of module %s.\n",
536                        a->name, b->name);
537                 return 0;
538         }
539
540         /* If strong_try_module_get() returned a different error, we fail. */
541         if (err)
542                 return 0;
543
544         DEBUGP("Allocating new usage for %s.\n", a->name);
545         use = kmalloc(sizeof(*use), GFP_ATOMIC);
546         if (!use) {
547                 printk("%s: out of memory loading\n", a->name);
548                 module_put(b);
549                 return 0;
550         }
551
552         use->module_which_uses = a;
553         list_add(&use->list, &b->modules_which_use_me);
554         no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
555         return 1;
556 }
557 EXPORT_SYMBOL_GPL(use_module);
558
559 /* Clear the unload stuff of the module. */
560 static void module_unload_free(struct module *mod)
561 {
562         struct module *i;
563
564         list_for_each_entry(i, &modules, list) {
565                 struct module_use *use;
566
567                 list_for_each_entry(use, &i->modules_which_use_me, list) {
568                         if (use->module_which_uses == mod) {
569                                 DEBUGP("%s unusing %s\n", mod->name, i->name);
570                                 module_put(i);
571                                 list_del(&use->list);
572                                 kfree(use);
573                                 sysfs_remove_link(i->holders_dir, mod->name);
574                                 /* There can be at most one match. */
575                                 break;
576                         }
577                 }
578         }
579 }
580
581 #ifdef CONFIG_MODULE_FORCE_UNLOAD
582 static inline int try_force_unload(unsigned int flags)
583 {
584         int ret = (flags & O_TRUNC);
585         if (ret)
586                 add_taint(TAINT_FORCED_RMMOD);
587         return ret;
588 }
589 #else
590 static inline int try_force_unload(unsigned int flags)
591 {
592         return 0;
593 }
594 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
595
596 struct stopref
597 {
598         struct module *mod;
599         int flags;
600         int *forced;
601 };
602
603 /* Whole machine is stopped with interrupts off when this runs. */
604 static int __try_stop_module(void *_sref)
605 {
606         struct stopref *sref = _sref;
607
608         /* If it's not unused, quit unless we're forcing. */
609         if (module_refcount(sref->mod) != 0) {
610                 if (!(*sref->forced = try_force_unload(sref->flags)))
611                         return -EWOULDBLOCK;
612         }
613
614         /* Mark it as dying. */
615         sref->mod->state = MODULE_STATE_GOING;
616         return 0;
617 }
618
619 static int try_stop_module(struct module *mod, int flags, int *forced)
620 {
621         if (flags & O_NONBLOCK) {
622                 struct stopref sref = { mod, flags, forced };
623
624                 return stop_machine(__try_stop_module, &sref, NULL);
625         } else {
626                 /* We don't need to stop the machine for this. */
627                 mod->state = MODULE_STATE_GOING;
628                 synchronize_sched();
629                 return 0;
630         }
631 }
632
633 unsigned int module_refcount(struct module *mod)
634 {
635         unsigned int total = 0;
636         int cpu;
637
638         for_each_possible_cpu(cpu)
639                 total += local_read(__module_ref_addr(mod, cpu));
640         return total;
641 }
642 EXPORT_SYMBOL(module_refcount);
643
644 /* This exists whether we can unload or not */
645 static void free_module(struct module *mod);
646
647 static void wait_for_zero_refcount(struct module *mod)
648 {
649         /* Since we might sleep for some time, release the mutex first */
650         mutex_unlock(&module_mutex);
651         for (;;) {
652                 DEBUGP("Looking at refcount...\n");
653                 set_current_state(TASK_UNINTERRUPTIBLE);
654                 if (module_refcount(mod) == 0)
655                         break;
656                 schedule();
657         }
658         current->state = TASK_RUNNING;
659         mutex_lock(&module_mutex);
660 }
661
662 SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
663                 unsigned int, flags)
664 {
665         struct module *mod;
666         char name[MODULE_NAME_LEN];
667         int ret, forced = 0;
668
669         if (!capable(CAP_SYS_MODULE) || modules_disabled)
670                 return -EPERM;
671
672         if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
673                 return -EFAULT;
674         name[MODULE_NAME_LEN-1] = '\0';
675
676         /* Create stop_machine threads since free_module relies on
677          * a non-failing stop_machine call. */
678         ret = stop_machine_create();
679         if (ret)
680                 return ret;
681
682         if (mutex_lock_interruptible(&module_mutex) != 0) {
683                 ret = -EINTR;
684                 goto out_stop;
685         }
686
687         mod = find_module(name);
688         if (!mod) {
689                 ret = -ENOENT;
690                 goto out;
691         }
692
693         if (!list_empty(&mod->modules_which_use_me)) {
694                 /* Other modules depend on us: get rid of them first. */
695                 ret = -EWOULDBLOCK;
696                 goto out;
697         }
698
699         /* Doing init or already dying? */
700         if (mod->state != MODULE_STATE_LIVE) {
701                 /* FIXME: if (force), slam module count and wake up
702                    waiter --RR */
703                 DEBUGP("%s already dying\n", mod->name);
704                 ret = -EBUSY;
705                 goto out;
706         }
707
708         /* If it has an init func, it must have an exit func to unload */
709         if (mod->init && !mod->exit) {
710                 forced = try_force_unload(flags);
711                 if (!forced) {
712                         /* This module can't be removed */
713                         ret = -EBUSY;
714                         goto out;
715                 }
716         }
717
718         /* Set this up before setting mod->state */
719         mod->waiter = current;
720
721         /* Stop the machine so refcounts can't move and disable module. */
722         ret = try_stop_module(mod, flags, &forced);
723         if (ret != 0)
724                 goto out;
725
726         /* Never wait if forced. */
727         if (!forced && module_refcount(mod) != 0)
728                 wait_for_zero_refcount(mod);
729
730         mutex_unlock(&module_mutex);
731         /* Final destruction now noone is using it. */
732         if (mod->exit != NULL)
733                 mod->exit();
734         blocking_notifier_call_chain(&module_notify_list,
735                                      MODULE_STATE_GOING, mod);
736         async_synchronize_full();
737         mutex_lock(&module_mutex);
738         /* Store the name of the last unloaded module for diagnostic purposes */
739         strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
740         ddebug_remove_module(mod->name);
741         free_module(mod);
742
743  out:
744         mutex_unlock(&module_mutex);
745 out_stop:
746         stop_machine_destroy();
747         return ret;
748 }
749
750 static inline void print_unload_info(struct seq_file *m, struct module *mod)
751 {
752         struct module_use *use;
753         int printed_something = 0;
754
755         seq_printf(m, " %u ", module_refcount(mod));
756
757         /* Always include a trailing , so userspace can differentiate
758            between this and the old multi-field proc format. */
759         list_for_each_entry(use, &mod->modules_which_use_me, list) {
760                 printed_something = 1;
761                 seq_printf(m, "%s,", use->module_which_uses->name);
762         }
763
764         if (mod->init != NULL && mod->exit == NULL) {
765                 printed_something = 1;
766                 seq_printf(m, "[permanent],");
767         }
768
769         if (!printed_something)
770                 seq_printf(m, "-");
771 }
772
773 void __symbol_put(const char *symbol)
774 {
775         struct module *owner;
776
777         preempt_disable();
778         if (!find_symbol(symbol, &owner, NULL, true, false))
779                 BUG();
780         module_put(owner);
781         preempt_enable();
782 }
783 EXPORT_SYMBOL(__symbol_put);
784
785 /* Note this assumes addr is a function, which it currently always is. */
786 void symbol_put_addr(void *addr)
787 {
788         struct module *modaddr;
789         unsigned long a = (unsigned long)dereference_function_descriptor(addr);
790
791         if (core_kernel_text(a))
792                 return;
793
794         /* module_text_address is safe here: we're supposed to have reference
795          * to module from symbol_get, so it can't go away. */
796         modaddr = __module_text_address(a);
797         BUG_ON(!modaddr);
798         module_put(modaddr);
799 }
800 EXPORT_SYMBOL_GPL(symbol_put_addr);
801
802 static ssize_t show_refcnt(struct module_attribute *mattr,
803                            struct module *mod, char *buffer)
804 {
805         return sprintf(buffer, "%u\n", module_refcount(mod));
806 }
807
808 static struct module_attribute refcnt = {
809         .attr = { .name = "refcnt", .mode = 0444 },
810         .show = show_refcnt,
811 };
812
813 void module_put(struct module *module)
814 {
815         if (module) {
816                 unsigned int cpu = get_cpu();
817                 local_dec(__module_ref_addr(module, cpu));
818                 trace_module_put(module, _RET_IP_,
819                                  local_read(__module_ref_addr(module, cpu)));
820                 /* Maybe they're waiting for us to drop reference? */
821                 if (unlikely(!module_is_live(module)))
822                         wake_up_process(module->waiter);
823                 put_cpu();
824         }
825 }
826 EXPORT_SYMBOL(module_put);
827
828 #else /* !CONFIG_MODULE_UNLOAD */
829 static inline void print_unload_info(struct seq_file *m, struct module *mod)
830 {
831         /* We don't know the usage count, or what modules are using. */
832         seq_printf(m, " - -");
833 }
834
835 static inline void module_unload_free(struct module *mod)
836 {
837 }
838
839 int use_module(struct module *a, struct module *b)
840 {
841         return strong_try_module_get(b) == 0;
842 }
843 EXPORT_SYMBOL_GPL(use_module);
844
845 static inline void module_unload_init(struct module *mod)
846 {
847 }
848 #endif /* CONFIG_MODULE_UNLOAD */
849
850 static ssize_t show_initstate(struct module_attribute *mattr,
851                            struct module *mod, char *buffer)
852 {
853         const char *state = "unknown";
854
855         switch (mod->state) {
856         case MODULE_STATE_LIVE:
857                 state = "live";
858                 break;
859         case MODULE_STATE_COMING:
860                 state = "coming";
861                 break;
862         case MODULE_STATE_GOING:
863                 state = "going";
864                 break;
865         }
866         return sprintf(buffer, "%s\n", state);
867 }
868
869 static struct module_attribute initstate = {
870         .attr = { .name = "initstate", .mode = 0444 },
871         .show = show_initstate,
872 };
873
874 #ifdef CONFIG_ENTERPRISE_SUPPORT
875 static void setup_modinfo_supported(struct module *mod, const char *s)
876 {
877         if (!s) {
878                 mod->taints |= (1 << TAINT_NO_SUPPORT);
879                 return;
880         }
881
882         if (strcmp(s, "external") == 0)
883                 mod->taints |= (1 << TAINT_EXTERNAL_SUPPORT);
884         else if (strcmp(s, "yes"))
885                 mod->taints |= (1 << TAINT_NO_SUPPORT);
886 }
887
888 static ssize_t show_modinfo_supported(struct module_attribute *mattr,
889                         struct module *mod, char *buffer)
890 {
891         return sprintf(buffer, "%s\n", supported_printable(mod->taints));
892 }
893
894 static struct module_attribute modinfo_supported = {
895         .attr = { .name = "supported", .mode = 0444 },
896         .show = show_modinfo_supported,
897         .setup = setup_modinfo_supported,
898 };
899 #endif
900
901 static struct module_attribute *modinfo_attrs[] = {
902         &modinfo_version,
903         &modinfo_srcversion,
904         &initstate,
905 #ifdef CONFIG_ENTERPRISE_SUPPORT
906         &modinfo_supported,
907 #endif
908 #ifdef CONFIG_MODULE_UNLOAD
909         &refcnt,
910 #endif
911         NULL,
912 };
913
914 static const char vermagic[] = VERMAGIC_STRING;
915
916 static int try_to_force_load(struct module *mod, const char *reason)
917 {
918 #ifdef CONFIG_MODULE_FORCE_LOAD
919         if (!test_taint(TAINT_FORCED_MODULE))
920                 printk(KERN_WARNING "%s: %s: kernel tainted.\n",
921                        mod->name, reason);
922         add_taint_module(mod, TAINT_FORCED_MODULE);
923         return 0;
924 #else
925         return -ENOEXEC;
926 #endif
927 }
928
929 #ifdef CONFIG_MODVERSIONS
930 /* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
931 static unsigned long maybe_relocated(unsigned long crc,
932                                      const struct module *crc_owner)
933 {
934 #ifdef ARCH_RELOCATES_KCRCTAB
935         if (crc_owner == NULL)
936                 return crc - (unsigned long)reloc_start;
937 #endif
938         return crc;
939 }
940
941 static int check_version(Elf_Shdr *sechdrs,
942                          unsigned int versindex,
943                          const char *symname,
944                          struct module *mod, 
945                          const unsigned long *crc,
946                          const struct module *crc_owner)
947 {
948         unsigned int i, num_versions;
949         struct modversion_info *versions;
950
951         /* Exporting module didn't supply crcs?  OK, we're already tainted. */
952         if (!crc)
953                 return 1;
954
955         /* No versions at all?  modprobe --force does this. */
956         if (versindex == 0)
957                 return try_to_force_load(mod, symname) == 0;
958
959         versions = (void *) sechdrs[versindex].sh_addr;
960         num_versions = sechdrs[versindex].sh_size
961                 / sizeof(struct modversion_info);
962
963         for (i = 0; i < num_versions; i++) {
964                 if (strcmp(versions[i].name, symname) != 0)
965                         continue;
966
967                 if (versions[i].crc == maybe_relocated(*crc, crc_owner))
968                         return 1;
969                 DEBUGP("Found checksum %lX vs module %lX\n",
970                        maybe_relocated(*crc, crc_owner), versions[i].crc);
971                 goto bad_version;
972         }
973
974         printk(KERN_WARNING "%s: no symbol version for %s\n",
975                mod->name, symname);
976         return 0;
977
978 bad_version:
979         printk("%s: disagrees about version of symbol %s\n",
980                mod->name, symname);
981         return 0;
982 }
983
984 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
985                                           unsigned int versindex,
986                                           struct module *mod)
987 {
988         const unsigned long *crc;
989
990         if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL,
991                          &crc, true, false))
992                 BUG();
993         return check_version(sechdrs, versindex, "module_layout", mod, crc,
994                              NULL);
995 }
996
997 /* First part is kernel version, which we ignore if module has crcs. */
998 static inline int same_magic(const char *amagic, const char *bmagic,
999                              bool has_crcs)
1000 {
1001         if (has_crcs) {
1002                 amagic += strcspn(amagic, " ");
1003                 bmagic += strcspn(bmagic, " ");
1004         }
1005         return strcmp(amagic, bmagic) == 0;
1006 }
1007 #else
1008 static inline int check_version(Elf_Shdr *sechdrs,
1009                                 unsigned int versindex,
1010                                 const char *symname,
1011                                 struct module *mod, 
1012                                 const unsigned long *crc,
1013                                 const struct module *crc_owner)
1014 {
1015         return 1;
1016 }
1017
1018 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1019                                           unsigned int versindex,
1020                                           struct module *mod)
1021 {
1022         return 1;
1023 }
1024
1025 static inline int same_magic(const char *amagic, const char *bmagic,
1026                              bool has_crcs)
1027 {
1028         return strcmp(amagic, bmagic) == 0;
1029 }
1030 #endif /* CONFIG_MODVERSIONS */
1031
1032 /* Resolve a symbol for this module.  I.e. if we find one, record usage.
1033    Must be holding module_mutex. */
1034 static const struct kernel_symbol *resolve_symbol(Elf_Shdr *sechdrs,
1035                                                   unsigned int versindex,
1036                                                   const char *name,
1037                                                   struct module *mod)
1038 {
1039         struct module *owner;
1040         const struct kernel_symbol *sym;
1041         const unsigned long *crc;
1042
1043         sym = find_symbol(name, &owner, &crc,
1044                           !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
1045         /* use_module can fail due to OOM,
1046            or module initialization or unloading */
1047         if (sym) {
1048                 if (!check_version(sechdrs, versindex, name, mod, crc, owner)
1049                     || !use_module(mod, owner))
1050                         sym = NULL;
1051         }
1052         return sym;
1053 }
1054
1055 /*
1056  * /sys/module/foo/sections stuff
1057  * J. Corbet <corbet@lwn.net>
1058  */
1059 #if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
1060
1061 static inline bool sect_empty(const Elf_Shdr *sect)
1062 {
1063         return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1064 }
1065
1066 struct module_sect_attr
1067 {
1068         struct module_attribute mattr;
1069         char *name;
1070         unsigned long address;
1071 };
1072
1073 struct module_sect_attrs
1074 {
1075         struct attribute_group grp;
1076         unsigned int nsections;
1077         struct module_sect_attr attrs[0];
1078 };
1079
1080 static ssize_t module_sect_show(struct module_attribute *mattr,
1081                                 struct module *mod, char *buf)
1082 {
1083         struct module_sect_attr *sattr =
1084                 container_of(mattr, struct module_sect_attr, mattr);
1085         return sprintf(buf, "0x%lx\n", sattr->address);
1086 }
1087
1088 static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1089 {
1090         unsigned int section;
1091
1092         for (section = 0; section < sect_attrs->nsections; section++)
1093                 kfree(sect_attrs->attrs[section].name);
1094         kfree(sect_attrs);
1095 }
1096
1097 static void add_sect_attrs(struct module *mod, unsigned int nsect,
1098                 char *secstrings, Elf_Shdr *sechdrs)
1099 {
1100         unsigned int nloaded = 0, i, size[2];
1101         struct module_sect_attrs *sect_attrs;
1102         struct module_sect_attr *sattr;
1103         struct attribute **gattr;
1104
1105         /* Count loaded sections and allocate structures */
1106         for (i = 0; i < nsect; i++)
1107                 if (!sect_empty(&sechdrs[i]))
1108                         nloaded++;
1109         size[0] = ALIGN(sizeof(*sect_attrs)
1110                         + nloaded * sizeof(sect_attrs->attrs[0]),
1111                         sizeof(sect_attrs->grp.attrs[0]));
1112         size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
1113         sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1114         if (sect_attrs == NULL)
1115                 return;
1116
1117         /* Setup section attributes. */
1118         sect_attrs->grp.name = "sections";
1119         sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1120
1121         sect_attrs->nsections = 0;
1122         sattr = &sect_attrs->attrs[0];
1123         gattr = &sect_attrs->grp.attrs[0];
1124         for (i = 0; i < nsect; i++) {
1125                 if (sect_empty(&sechdrs[i]))
1126                         continue;
1127                 sattr->address = sechdrs[i].sh_addr;
1128                 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1129                                         GFP_KERNEL);
1130                 if (sattr->name == NULL)
1131                         goto out;
1132                 sect_attrs->nsections++;
1133                 sattr->mattr.show = module_sect_show;
1134                 sattr->mattr.store = NULL;
1135                 sattr->mattr.attr.name = sattr->name;
1136                 sattr->mattr.attr.mode = S_IRUGO;
1137                 *(gattr++) = &(sattr++)->mattr.attr;
1138         }
1139         *gattr = NULL;
1140
1141         if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1142                 goto out;
1143
1144         mod->sect_attrs = sect_attrs;
1145         return;
1146   out:
1147         free_sect_attrs(sect_attrs);
1148 }
1149
1150 static void remove_sect_attrs(struct module *mod)
1151 {
1152         if (mod->sect_attrs) {
1153                 sysfs_remove_group(&mod->mkobj.kobj,
1154                                    &mod->sect_attrs->grp);
1155                 /* We are positive that no one is using any sect attrs
1156                  * at this point.  Deallocate immediately. */
1157                 free_sect_attrs(mod->sect_attrs);
1158                 mod->sect_attrs = NULL;
1159         }
1160 }
1161
1162 /*
1163  * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1164  */
1165
1166 struct module_notes_attrs {
1167         struct kobject *dir;
1168         unsigned int notes;
1169         struct bin_attribute attrs[0];
1170 };
1171
1172 static ssize_t module_notes_read(struct kobject *kobj,
1173                                  struct bin_attribute *bin_attr,
1174                                  char *buf, loff_t pos, size_t count)
1175 {
1176         /*
1177          * The caller checked the pos and count against our size.
1178          */
1179         memcpy(buf, bin_attr->private + pos, count);
1180         return count;
1181 }
1182
1183 static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1184                              unsigned int i)
1185 {
1186         if (notes_attrs->dir) {
1187                 while (i-- > 0)
1188                         sysfs_remove_bin_file(notes_attrs->dir,
1189                                               &notes_attrs->attrs[i]);
1190                 kobject_put(notes_attrs->dir);
1191         }
1192         kfree(notes_attrs);
1193 }
1194
1195 static void add_notes_attrs(struct module *mod, unsigned int nsect,
1196                             char *secstrings, Elf_Shdr *sechdrs)
1197 {
1198         unsigned int notes, loaded, i;
1199         struct module_notes_attrs *notes_attrs;
1200         struct bin_attribute *nattr;
1201
1202         /* failed to create section attributes, so can't create notes */
1203         if (!mod->sect_attrs)
1204                 return;
1205
1206         /* Count notes sections and allocate structures.  */
1207         notes = 0;
1208         for (i = 0; i < nsect; i++)
1209                 if (!sect_empty(&sechdrs[i]) &&
1210                     (sechdrs[i].sh_type == SHT_NOTE))
1211                         ++notes;
1212
1213         if (notes == 0)
1214                 return;
1215
1216         notes_attrs = kzalloc(sizeof(*notes_attrs)
1217                               + notes * sizeof(notes_attrs->attrs[0]),
1218                               GFP_KERNEL);
1219         if (notes_attrs == NULL)
1220                 return;
1221
1222         notes_attrs->notes = notes;
1223         nattr = &notes_attrs->attrs[0];
1224         for (loaded = i = 0; i < nsect; ++i) {
1225                 if (sect_empty(&sechdrs[i]))
1226                         continue;
1227                 if (sechdrs[i].sh_type == SHT_NOTE) {
1228                         nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1229                         nattr->attr.mode = S_IRUGO;
1230                         nattr->size = sechdrs[i].sh_size;
1231                         nattr->private = (void *) sechdrs[i].sh_addr;
1232                         nattr->read = module_notes_read;
1233                         ++nattr;
1234                 }
1235                 ++loaded;
1236         }
1237
1238         notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
1239         if (!notes_attrs->dir)
1240                 goto out;
1241
1242         for (i = 0; i < notes; ++i)
1243                 if (sysfs_create_bin_file(notes_attrs->dir,
1244                                           &notes_attrs->attrs[i]))
1245                         goto out;
1246
1247         mod->notes_attrs = notes_attrs;
1248         return;
1249
1250   out:
1251         free_notes_attrs(notes_attrs, i);
1252 }
1253
1254 static void remove_notes_attrs(struct module *mod)
1255 {
1256         if (mod->notes_attrs)
1257                 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1258 }
1259
1260 #else
1261
1262 static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1263                 char *sectstrings, Elf_Shdr *sechdrs)
1264 {
1265 }
1266
1267 static inline void remove_sect_attrs(struct module *mod)
1268 {
1269 }
1270
1271 static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1272                                    char *sectstrings, Elf_Shdr *sechdrs)
1273 {
1274 }
1275
1276 static inline void remove_notes_attrs(struct module *mod)
1277 {
1278 }
1279 #endif
1280
1281 #ifdef CONFIG_SYSFS
1282 int module_add_modinfo_attrs(struct module *mod)
1283 {
1284         struct module_attribute *attr;
1285         struct module_attribute *temp_attr;
1286         int error = 0;
1287         int i;
1288
1289         mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1290                                         (ARRAY_SIZE(modinfo_attrs) + 1)),
1291                                         GFP_KERNEL);
1292         if (!mod->modinfo_attrs)
1293                 return -ENOMEM;
1294
1295         temp_attr = mod->modinfo_attrs;
1296         for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1297                 if (!attr->test ||
1298                     (attr->test && attr->test(mod))) {
1299                         memcpy(temp_attr, attr, sizeof(*temp_attr));
1300                         error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1301                         ++temp_attr;
1302                 }
1303         }
1304         return error;
1305 }
1306
1307 void module_remove_modinfo_attrs(struct module *mod)
1308 {
1309         struct module_attribute *attr;
1310         int i;
1311
1312         for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1313                 /* pick a field to test for end of list */
1314                 if (!attr->attr.name)
1315                         break;
1316                 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
1317                 if (attr->free)
1318                         attr->free(mod);
1319         }
1320         kfree(mod->modinfo_attrs);
1321 }
1322
1323 int mod_sysfs_init(struct module *mod)
1324 {
1325         int err;
1326         struct kobject *kobj;
1327
1328         if (!module_sysfs_initialized) {
1329                 printk(KERN_ERR "%s: module sysfs not initialized\n",
1330                        mod->name);
1331                 err = -EINVAL;
1332                 goto out;
1333         }
1334
1335         kobj = kset_find_obj(module_kset, mod->name);
1336         if (kobj) {
1337                 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1338                 kobject_put(kobj);
1339                 err = -EINVAL;
1340                 goto out;
1341         }
1342
1343         mod->mkobj.mod = mod;
1344
1345         memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1346         mod->mkobj.kobj.kset = module_kset;
1347         err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1348                                    "%s", mod->name);
1349         if (err)
1350                 kobject_put(&mod->mkobj.kobj);
1351
1352         /* delay uevent until full sysfs population */
1353 out:
1354         return err;
1355 }
1356
1357 int mod_sysfs_setup(struct module *mod,
1358                            struct kernel_param *kparam,
1359                            unsigned int num_params)
1360 {
1361         int err;
1362
1363         mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
1364         if (!mod->holders_dir) {
1365                 err = -ENOMEM;
1366                 goto out_unreg;
1367         }
1368
1369         err = module_param_sysfs_setup(mod, kparam, num_params);
1370         if (err)
1371                 goto out_unreg_holders;
1372
1373         err = module_add_modinfo_attrs(mod);
1374         if (err)
1375                 goto out_unreg_param;
1376
1377         kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
1378         return 0;
1379
1380 out_unreg_param:
1381         module_param_sysfs_remove(mod);
1382 out_unreg_holders:
1383         kobject_put(mod->holders_dir);
1384 out_unreg:
1385         kobject_put(&mod->mkobj.kobj);
1386         return err;
1387 }
1388
1389 static void mod_sysfs_fini(struct module *mod)
1390 {
1391         kobject_put(&mod->mkobj.kobj);
1392 }
1393
1394 #else /* CONFIG_SYSFS */
1395
1396 static void mod_sysfs_fini(struct module *mod)
1397 {
1398 }
1399
1400 #endif /* CONFIG_SYSFS */
1401
1402 static void mod_kobject_remove(struct module *mod)
1403 {
1404         module_remove_modinfo_attrs(mod);
1405         module_param_sysfs_remove(mod);
1406         kobject_put(mod->mkobj.drivers_dir);
1407         kobject_put(mod->holders_dir);
1408         mod_sysfs_fini(mod);
1409 }
1410
1411 /*
1412  * unlink the module with the whole machine is stopped with interrupts off
1413  * - this defends against kallsyms not taking locks
1414  */
1415 static int __unlink_module(void *_mod)
1416 {
1417         struct module *mod = _mod;
1418         list_del(&mod->list);
1419         return 0;
1420 }
1421
1422 /* Free a module, remove from lists, etc (must hold module_mutex). */
1423 static void free_module(struct module *mod)
1424 {
1425         trace_module_free(mod);
1426
1427         /* Delete from various lists */
1428         stop_machine(__unlink_module, mod, NULL);
1429         remove_notes_attrs(mod);
1430         remove_sect_attrs(mod);
1431         mod_kobject_remove(mod);
1432
1433         unwind_remove_table(mod->unwind_info, 0);
1434
1435         /* Arch-specific cleanup. */
1436         module_arch_cleanup(mod);
1437
1438         /* Module unload stuff */
1439         module_unload_free(mod);
1440
1441         /* Free any allocated parameters. */
1442         destroy_params(mod->kp, mod->num_kp);
1443
1444         /* This may be NULL, but that's OK */
1445         module_free(mod, mod->module_init);
1446         kfree(mod->args);
1447         if (mod->percpu)
1448                 percpu_modfree(mod->percpu);
1449 #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP)
1450         if (mod->refptr)
1451                 percpu_modfree(mod->refptr);
1452 #endif
1453         /* Free lock-classes: */
1454         lockdep_free_key_range(mod->module_core, mod->core_size);
1455
1456         /* Finally, free the core (containing the module structure) */
1457         module_free(mod, mod->module_core);
1458
1459 #ifdef CONFIG_MPU
1460         update_protections(current->mm);
1461 #endif
1462 }
1463
1464 void *__symbol_get(const char *symbol)
1465 {
1466         struct module *owner;
1467         const struct kernel_symbol *sym;
1468
1469         preempt_disable();
1470         sym = find_symbol(symbol, &owner, NULL, true, true);
1471         if (sym && strong_try_module_get(owner))
1472                 sym = NULL;
1473         preempt_enable();
1474
1475         return sym ? (void *)sym->value : NULL;
1476 }
1477 EXPORT_SYMBOL_GPL(__symbol_get);
1478
1479 /*
1480  * Ensure that an exported symbol [global namespace] does not already exist
1481  * in the kernel or in some other module's exported symbol table.
1482  */
1483 static int verify_export_symbols(struct module *mod)
1484 {
1485         unsigned int i;
1486         struct module *owner;
1487         const struct kernel_symbol *s;
1488         struct {
1489                 const struct kernel_symbol *sym;
1490                 unsigned int num;
1491         } arr[] = {
1492                 { mod->syms, mod->num_syms },
1493                 { mod->gpl_syms, mod->num_gpl_syms },
1494                 { mod->gpl_future_syms, mod->num_gpl_future_syms },
1495 #ifdef CONFIG_UNUSED_SYMBOLS
1496                 { mod->unused_syms, mod->num_unused_syms },
1497                 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
1498 #endif
1499         };
1500
1501         for (i = 0; i < ARRAY_SIZE(arr); i++) {
1502                 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
1503                         if (find_symbol(s->name, &owner, NULL, true, false)) {
1504                                 printk(KERN_ERR
1505                                        "%s: exports duplicate symbol %s"
1506                                        " (owned by %s)\n",
1507                                        mod->name, s->name, module_name(owner));
1508                                 return -ENOEXEC;
1509                         }
1510                 }
1511         }
1512         return 0;
1513 }
1514
1515 /* Change all symbols so that st_value encodes the pointer directly. */
1516 static int simplify_symbols(Elf_Shdr *sechdrs,
1517                             unsigned int symindex,
1518                             const char *strtab,
1519                             unsigned int versindex,
1520                             unsigned int pcpuindex,
1521                             struct module *mod)
1522 {
1523         Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1524         unsigned long secbase;
1525         unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1526         int ret = 0;
1527         const struct kernel_symbol *ksym;
1528
1529         for (i = 1; i < n; i++) {
1530                 switch (sym[i].st_shndx) {
1531                 case SHN_COMMON:
1532                         /* We compiled with -fno-common.  These are not
1533                            supposed to happen.  */
1534                         DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1535                         printk("%s: please compile with -fno-common\n",
1536                                mod->name);
1537                         ret = -ENOEXEC;
1538                         break;
1539
1540                 case SHN_ABS:
1541                         /* Don't need to do anything */
1542                         DEBUGP("Absolute symbol: 0x%08lx\n",
1543                                (long)sym[i].st_value);
1544                         break;
1545
1546                 case SHN_UNDEF:
1547                         ksym = resolve_symbol(sechdrs, versindex,
1548                                               strtab + sym[i].st_name, mod);
1549                         /* Ok if resolved.  */
1550                         if (ksym) {
1551                                 sym[i].st_value = ksym->value;
1552                                 break;
1553                         }
1554
1555                         /* Ok if weak.  */
1556                         if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1557                                 break;
1558
1559                         printk(KERN_WARNING "%s: Unknown symbol %s\n",
1560                                mod->name, strtab + sym[i].st_name);
1561                         ret = -ENOENT;
1562                         break;
1563
1564                 default:
1565                         /* Divert to percpu allocation if a percpu var. */
1566                         if (sym[i].st_shndx == pcpuindex)
1567                                 secbase = (unsigned long)mod->percpu;
1568                         else
1569                                 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1570                         sym[i].st_value += secbase;
1571                         break;
1572                 }
1573         }
1574
1575         return ret;
1576 }
1577
1578 /* Additional bytes needed by arch in front of individual sections */
1579 unsigned int __weak arch_mod_section_prepend(struct module *mod,
1580                                              unsigned int section)
1581 {
1582         /* default implementation just returns zero */
1583         return 0;
1584 }
1585
1586 /* Update size with this section: return offset. */
1587 static long get_offset(struct module *mod, unsigned int *size,
1588                        Elf_Shdr *sechdr, unsigned int section)
1589 {
1590         long ret;
1591
1592         *size += arch_mod_section_prepend(mod, section);
1593         ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1594         *size = ret + sechdr->sh_size;
1595         return ret;
1596 }
1597
1598 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1599    might -- code, read-only data, read-write data, small data.  Tally
1600    sizes, and place the offsets into sh_entsize fields: high bit means it
1601    belongs in init. */
1602 static void layout_sections(struct module *mod,
1603                             const Elf_Ehdr *hdr,
1604                             Elf_Shdr *sechdrs,
1605                             const char *secstrings)
1606 {
1607         static unsigned long const masks[][2] = {
1608                 /* NOTE: all executable code must be the first section
1609                  * in this array; otherwise modify the text_size
1610                  * finder in the two loops below */
1611                 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1612                 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1613                 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1614                 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1615         };
1616         unsigned int m, i;
1617
1618         for (i = 0; i < hdr->e_shnum; i++)
1619                 sechdrs[i].sh_entsize = ~0UL;
1620
1621         DEBUGP("Core section allocation order:\n");
1622         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1623                 for (i = 0; i < hdr->e_shnum; ++i) {
1624                         Elf_Shdr *s = &sechdrs[i];
1625
1626                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
1627                             || (s->sh_flags & masks[m][1])
1628                             || s->sh_entsize != ~0UL
1629                             || strstarts(secstrings + s->sh_name, ".init"))
1630                                 continue;
1631                         s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
1632                         DEBUGP("\t%s\n", secstrings + s->sh_name);
1633                 }
1634                 if (m == 0)
1635                         mod->core_text_size = mod->core_size;
1636         }
1637
1638         DEBUGP("Init section allocation order:\n");
1639         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1640                 for (i = 0; i < hdr->e_shnum; ++i) {
1641                         Elf_Shdr *s = &sechdrs[i];
1642
1643                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
1644                             || (s->sh_flags & masks[m][1])
1645                             || s->sh_entsize != ~0UL
1646                             || !strstarts(secstrings + s->sh_name, ".init"))
1647                                 continue;
1648                         s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
1649                                          | INIT_OFFSET_MASK);
1650                         DEBUGP("\t%s\n", secstrings + s->sh_name);
1651                 }
1652                 if (m == 0)
1653                         mod->init_text_size = mod->init_size;
1654         }
1655 }
1656
1657 static void set_license(struct module *mod, const char *license)
1658 {
1659         if (!license)
1660                 license = "unspecified";
1661
1662         if (!license_is_gpl_compatible(license)) {
1663                 if (!test_taint(TAINT_PROPRIETARY_MODULE))
1664                         printk(KERN_WARNING "%s: module license '%s' taints "
1665                                 "kernel.\n", mod->name, license);
1666                 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
1667         }
1668 }
1669
1670 /* Parse tag=value strings from .modinfo section */
1671 static char *next_string(char *string, unsigned long *secsize)
1672 {
1673         /* Skip non-zero chars */
1674         while (string[0]) {
1675                 string++;
1676                 if ((*secsize)-- <= 1)
1677                         return NULL;
1678         }
1679
1680         /* Skip any zero padding. */
1681         while (!string[0]) {
1682                 string++;
1683                 if ((*secsize)-- <= 1)
1684                         return NULL;
1685         }
1686         return string;
1687 }
1688
1689 static char *get_modinfo(Elf_Shdr *sechdrs,
1690                          unsigned int info,
1691                          const char *tag)
1692 {
1693         char *p;
1694         unsigned int taglen = strlen(tag);
1695         unsigned long size = sechdrs[info].sh_size;
1696
1697         for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1698                 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1699                         return p + taglen + 1;
1700         }
1701         return NULL;
1702 }
1703
1704 static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1705                           unsigned int infoindex)
1706 {
1707         struct module_attribute *attr;
1708         int i;
1709
1710         for (i = 0; (attr = modinfo_attrs[i]); i++) {
1711                 if (attr->setup)
1712                         attr->setup(mod,
1713                                     get_modinfo(sechdrs,
1714                                                 infoindex,
1715                                                 attr->attr.name));
1716         }
1717 }
1718
1719 static void free_modinfo(struct module *mod)
1720 {
1721         struct module_attribute *attr;
1722         int i;
1723
1724         for (i = 0; (attr = modinfo_attrs[i]); i++) {
1725                 if (attr->free)
1726                         attr->free(mod);
1727         }
1728 }
1729
1730 #ifdef CONFIG_KALLSYMS
1731
1732 /* lookup symbol in given range of kernel_symbols */
1733 static const struct kernel_symbol *lookup_symbol(const char *name,
1734         const struct kernel_symbol *start,
1735         const struct kernel_symbol *stop)
1736 {
1737         const struct kernel_symbol *ks = start;
1738         for (; ks < stop; ks++)
1739                 if (strcmp(ks->name, name) == 0)
1740                         return ks;
1741         return NULL;
1742 }
1743
1744 static int is_exported(const char *name, unsigned long value,
1745                        const struct module *mod)
1746 {
1747         const struct kernel_symbol *ks;
1748         if (!mod)
1749                 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
1750         else
1751                 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
1752         return ks != NULL && ks->value == value;
1753 }
1754
1755 /* As per nm */
1756 static char elf_type(const Elf_Sym *sym,
1757                      Elf_Shdr *sechdrs,
1758                      const char *secstrings,
1759                      struct module *mod)
1760 {
1761         if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1762                 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1763                         return 'v';
1764                 else
1765                         return 'w';
1766         }
1767         if (sym->st_shndx == SHN_UNDEF)
1768                 return 'U';
1769         if (sym->st_shndx == SHN_ABS)
1770                 return 'a';
1771         if (sym->st_shndx >= SHN_LORESERVE)
1772                 return '?';
1773         if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1774                 return 't';
1775         if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1776             && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1777                 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1778                         return 'r';
1779                 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1780                         return 'g';
1781                 else
1782                         return 'd';
1783         }
1784         if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1785                 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1786                         return 's';
1787                 else
1788                         return 'b';
1789         }
1790         if (strstarts(secstrings + sechdrs[sym->st_shndx].sh_name, ".debug"))
1791                 return 'n';
1792         return '?';
1793 }
1794
1795 static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
1796                            unsigned int shnum)
1797 {
1798         const Elf_Shdr *sec;
1799
1800         if (src->st_shndx == SHN_UNDEF
1801             || src->st_shndx >= shnum
1802             || !src->st_name)
1803                 return false;
1804
1805         sec = sechdrs + src->st_shndx;
1806         if (!(sec->sh_flags & SHF_ALLOC)
1807 #ifndef CONFIG_KALLSYMS_ALL
1808             || !(sec->sh_flags & SHF_EXECINSTR)
1809 #endif
1810             || (sec->sh_entsize & INIT_OFFSET_MASK))
1811                 return false;
1812
1813         return true;
1814 }
1815
1816 static unsigned long layout_symtab(struct module *mod,
1817                                    Elf_Shdr *sechdrs,
1818                                    unsigned int symindex,
1819                                    unsigned int strindex,
1820                                    const Elf_Ehdr *hdr,
1821                                    const char *secstrings,
1822                                    unsigned long *pstroffs,
1823                                    unsigned long *strmap)
1824 {
1825         unsigned long symoffs;
1826         Elf_Shdr *symsect = sechdrs + symindex;
1827         Elf_Shdr *strsect = sechdrs + strindex;
1828         const Elf_Sym *src;
1829         const char *strtab;
1830         unsigned int i, nsrc, ndst;
1831
1832         /* Put symbol section at end of init part of module. */
1833         symsect->sh_flags |= SHF_ALLOC;
1834         symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
1835                                          symindex) | INIT_OFFSET_MASK;
1836         DEBUGP("\t%s\n", secstrings + symsect->sh_name);
1837
1838         src = (void *)hdr + symsect->sh_offset;
1839         nsrc = symsect->sh_size / sizeof(*src);
1840         strtab = (void *)hdr + strsect->sh_offset;
1841         for (ndst = i = 1; i < nsrc; ++i, ++src)
1842                 if (is_core_symbol(src, sechdrs, hdr->e_shnum)) {
1843                         unsigned int j = src->st_name;
1844
1845                         while(!__test_and_set_bit(j, strmap) && strtab[j])
1846                                 ++j;
1847                         ++ndst;
1848                 }
1849
1850         /* Append room for core symbols at end of core part. */
1851         symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
1852         mod->core_size = symoffs + ndst * sizeof(Elf_Sym);
1853
1854         /* Put string table section at end of init part of module. */
1855         strsect->sh_flags |= SHF_ALLOC;
1856         strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
1857                                          strindex) | INIT_OFFSET_MASK;
1858         DEBUGP("\t%s\n", secstrings + strsect->sh_name);
1859
1860         /* Append room for core symbols' strings at end of core part. */
1861         *pstroffs = mod->core_size;
1862         __set_bit(0, strmap);
1863         mod->core_size += bitmap_weight(strmap, strsect->sh_size);
1864
1865         return symoffs;
1866 }
1867
1868 static void add_kallsyms(struct module *mod,
1869                          Elf_Shdr *sechdrs,
1870                          unsigned int shnum,
1871                          unsigned int symindex,
1872                          unsigned int strindex,
1873                          unsigned long symoffs,
1874                          unsigned long stroffs,
1875                          const char *secstrings,
1876                          unsigned long *strmap)
1877 {
1878         unsigned int i, ndst;
1879         const Elf_Sym *src;
1880         Elf_Sym *dst;
1881         char *s;
1882
1883         mod->symtab = (void *)sechdrs[symindex].sh_addr;
1884         mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1885         mod->strtab = (void *)sechdrs[strindex].sh_addr;
1886
1887         /* Set types up while we still have access to sections. */
1888         for (i = 0; i < mod->num_symtab; i++)
1889                 mod->symtab[i].st_info
1890                         = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1891
1892         mod->core_symtab = dst = mod->module_core + symoffs;
1893         src = mod->symtab;
1894         *dst = *src;
1895         for (ndst = i = 1; i < mod->num_symtab; ++i, ++src) {
1896                 if (!is_core_symbol(src, sechdrs, shnum))
1897                         continue;
1898                 dst[ndst] = *src;
1899                 dst[ndst].st_name = bitmap_weight(strmap, dst[ndst].st_name);
1900                 ++ndst;
1901         }
1902         mod->core_num_syms = ndst;
1903
1904         mod->core_strtab = s = mod->module_core + stroffs;
1905         for (*s = 0, i = 1; i < sechdrs[strindex].sh_size; ++i)
1906                 if (test_bit(i, strmap))
1907                         *++s = mod->strtab[i];
1908 }
1909 #else
1910 static inline unsigned long layout_symtab(struct module *mod,
1911                                           Elf_Shdr *sechdrs,
1912                                           unsigned int symindex,
1913                                           unsigned int strindex,
1914                                           const Elf_Ehdr *hdr,
1915                                           const char *secstrings,
1916                                           unsigned long *pstroffs,
1917                                           unsigned long *strmap)
1918 {
1919         return 0;
1920 }
1921
1922 static inline void add_kallsyms(struct module *mod,
1923                                 Elf_Shdr *sechdrs,
1924                                 unsigned int shnum,
1925                                 unsigned int symindex,
1926                                 unsigned int strindex,
1927                                 unsigned long symoffs,
1928                                 unsigned long stroffs,
1929                                 const char *secstrings,
1930                                 const unsigned long *strmap)
1931 {
1932 }
1933 #endif /* CONFIG_KALLSYMS */
1934
1935 static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
1936 {
1937 #ifdef CONFIG_DYNAMIC_DEBUG
1938         if (ddebug_add_module(debug, num, debug->modname))
1939                 printk(KERN_ERR "dynamic debug error adding module: %s\n",
1940                                         debug->modname);
1941 #endif
1942 }
1943
1944 static void *module_alloc_update_bounds(unsigned long size)
1945 {
1946         void *ret = module_alloc(size);
1947
1948         if (ret) {
1949                 /* Update module bounds. */
1950                 if ((unsigned long)ret < module_addr_min)
1951                         module_addr_min = (unsigned long)ret;
1952                 if ((unsigned long)ret + size > module_addr_max)
1953                         module_addr_max = (unsigned long)ret + size;
1954         }
1955         return ret;
1956 }
1957
1958 #ifdef CONFIG_DEBUG_KMEMLEAK
1959 static void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
1960                                  Elf_Shdr *sechdrs, char *secstrings)
1961 {
1962         unsigned int i;
1963
1964         /* only scan the sections containing data */
1965         kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
1966
1967         for (i = 1; i < hdr->e_shnum; i++) {
1968                 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1969                         continue;
1970                 if (strncmp(secstrings + sechdrs[i].sh_name, ".data", 5) != 0
1971                     && strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) != 0)
1972                         continue;
1973
1974                 kmemleak_scan_area((void *)sechdrs[i].sh_addr,
1975                                    sechdrs[i].sh_size, GFP_KERNEL);
1976         }
1977 }
1978 #else
1979 static inline void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
1980                                         Elf_Shdr *sechdrs, char *secstrings)
1981 {
1982 }
1983 #endif
1984
1985 /* Allocate and load the module: note that size of section 0 is always
1986    zero, and we rely on this for optional sections. */
1987 static noinline struct module *load_module(void __user *umod,
1988                                   unsigned long len,
1989                                   const char __user *uargs)
1990 {
1991         Elf_Ehdr *hdr;
1992         Elf_Shdr *sechdrs;
1993         char *secstrings, *args, *modmagic, *strtab = NULL;
1994         char *staging;
1995         unsigned int i;
1996         unsigned int symindex = 0;
1997         unsigned int strindex = 0;
1998         unsigned int modindex, versindex, infoindex, pcpuindex;
1999         unsigned int unwindex = 0;
2000         struct module *mod;
2001         long err = 0;
2002         void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
2003         unsigned long symoffs, stroffs, *strmap;
2004
2005         mm_segment_t old_fs;
2006
2007         DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
2008                umod, len, uargs);
2009         if (len < sizeof(*hdr))
2010                 return ERR_PTR(-ENOEXEC);
2011
2012         /* Suck in entire file: we'll want most of it. */
2013         /* vmalloc barfs on "unusual" numbers.  Check here */
2014         if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
2015                 return ERR_PTR(-ENOMEM);
2016
2017         if (copy_from_user(hdr, umod, len) != 0) {
2018                 err = -EFAULT;
2019                 goto free_hdr;
2020         }
2021
2022         /* Sanity checks against insmoding binaries or wrong arch,
2023            weird elf version */
2024         if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
2025             || hdr->e_type != ET_REL
2026             || !elf_check_arch(hdr)
2027             || hdr->e_shentsize != sizeof(*sechdrs)) {
2028                 err = -ENOEXEC;
2029                 goto free_hdr;
2030         }
2031
2032         if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
2033                 goto truncated;
2034
2035         /* Convenience variables */
2036         sechdrs = (void *)hdr + hdr->e_shoff;
2037         secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
2038         sechdrs[0].sh_addr = 0;
2039
2040         for (i = 1; i < hdr->e_shnum; i++) {
2041                 if (sechdrs[i].sh_type != SHT_NOBITS
2042                     && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
2043                         goto truncated;
2044
2045                 /* Mark all sections sh_addr with their address in the
2046                    temporary image. */
2047                 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
2048
2049                 /* Internal symbols and strings. */
2050                 if (sechdrs[i].sh_type == SHT_SYMTAB) {
2051                         symindex = i;
2052                         strindex = sechdrs[i].sh_link;
2053                         strtab = (char *)hdr + sechdrs[strindex].sh_offset;
2054                 }
2055 #ifndef CONFIG_MODULE_UNLOAD
2056                 /* Don't load .exit sections */
2057                 if (strstarts(secstrings+sechdrs[i].sh_name, ".exit"))
2058                         sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
2059 #endif
2060         }
2061
2062         modindex = find_sec(hdr, sechdrs, secstrings,
2063                             ".gnu.linkonce.this_module");
2064         if (!modindex) {
2065                 printk(KERN_WARNING "No module found in object\n");
2066                 err = -ENOEXEC;
2067                 goto free_hdr;
2068         }
2069         /* This is temporary: point mod into copy of data. */
2070         mod = (void *)sechdrs[modindex].sh_addr;
2071
2072         if (symindex == 0) {
2073                 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
2074                        mod->name);
2075                 err = -ENOEXEC;
2076                 goto free_hdr;
2077         }
2078
2079         versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
2080         infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
2081         pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
2082 #ifdef ARCH_UNWIND_SECTION_NAME
2083         unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
2084 #endif
2085
2086         /* Don't keep modinfo and version sections. */
2087         sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
2088         sechdrs[versindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
2089         if (unwindex)
2090                 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
2091
2092         /* Check module struct version now, before we try to use module. */
2093         if (!check_modstruct_version(sechdrs, versindex, mod)) {
2094                 err = -ENOEXEC;
2095                 goto free_hdr;
2096         }
2097
2098         modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
2099         /* This is allowed: modprobe --force will invalidate it. */
2100         if (!modmagic) {
2101                 err = try_to_force_load(mod, "bad vermagic");
2102                 if (err)
2103                         goto free_hdr;
2104         } else if (!same_magic(modmagic, vermagic, versindex)) {
2105                 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
2106                        mod->name, modmagic, vermagic);
2107                 err = -ENOEXEC;
2108                 goto free_hdr;
2109         }
2110
2111         staging = get_modinfo(sechdrs, infoindex, "staging");
2112         if (staging) {
2113                 add_taint_module(mod, TAINT_CRAP);
2114                 printk(KERN_WARNING "%s: module is from the staging directory,"
2115                        " the quality is unknown, you have been warned.\n",
2116                        mod->name);
2117         }
2118
2119         /* Now copy in args */
2120         args = strndup_user(uargs, ~0UL >> 1);
2121         if (IS_ERR(args)) {
2122                 err = PTR_ERR(args);
2123                 goto free_hdr;
2124         }
2125
2126         strmap = kzalloc(BITS_TO_LONGS(sechdrs[strindex].sh_size)
2127                          * sizeof(long), GFP_KERNEL);
2128         if (!strmap) {
2129                 err = -ENOMEM;
2130                 goto free_mod;
2131         }
2132
2133         if (find_module(mod->name)) {
2134                 err = -EEXIST;
2135                 goto free_mod;
2136         }
2137
2138         mod->state = MODULE_STATE_COMING;
2139
2140         /* Allow arches to frob section contents and sizes.  */
2141         err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
2142         if (err < 0)
2143                 goto free_mod;
2144
2145         if (pcpuindex) {
2146                 /* We have a special allocation for this section. */
2147                 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
2148                                          sechdrs[pcpuindex].sh_addralign,
2149                                          mod->name);
2150                 if (!percpu) {
2151                         err = -ENOMEM;
2152                         goto free_mod;
2153                 }
2154                 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
2155                 mod->percpu = percpu;
2156         }
2157
2158         /* Determine total sizes, and put offsets in sh_entsize.  For now
2159            this is done generically; there doesn't appear to be any
2160            special cases for the architectures. */
2161         layout_sections(mod, hdr, sechdrs, secstrings);
2162         symoffs = layout_symtab(mod, sechdrs, symindex, strindex, hdr,
2163                                 secstrings, &stroffs, strmap);
2164
2165         /* Do the allocs. */
2166         ptr = module_alloc_update_bounds(mod->core_size);
2167         /*
2168          * The pointer to this block is stored in the module structure
2169          * which is inside the block. Just mark it as not being a
2170          * leak.
2171          */
2172         kmemleak_not_leak(ptr);
2173         if (!ptr) {
2174                 err = -ENOMEM;
2175                 goto free_percpu;
2176         }
2177         memset(ptr, 0, mod->core_size);
2178         mod->module_core = ptr;
2179
2180         ptr = module_alloc_update_bounds(mod->init_size);
2181         /*
2182          * The pointer to this block is stored in the module structure
2183          * which is inside the block. This block doesn't need to be
2184          * scanned as it contains data and code that will be freed
2185          * after the module is initialized.
2186          */
2187         kmemleak_ignore(ptr);
2188         if (!ptr && mod->init_size) {
2189                 err = -ENOMEM;
2190                 goto free_core;
2191         }
2192         memset(ptr, 0, mod->init_size);
2193         mod->module_init = ptr;
2194
2195         /* Transfer each section which specifies SHF_ALLOC */
2196         DEBUGP("final section addresses:\n");
2197         for (i = 0; i < hdr->e_shnum; i++) {
2198                 void *dest;
2199
2200                 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
2201                         continue;
2202
2203                 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
2204                         dest = mod->module_init
2205                                 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
2206                 else
2207                         dest = mod->module_core + sechdrs[i].sh_entsize;
2208
2209                 if (sechdrs[i].sh_type != SHT_NOBITS)
2210                         memcpy(dest, (void *)sechdrs[i].sh_addr,
2211                                sechdrs[i].sh_size);
2212                 /* Update sh_addr to point to copy in image. */
2213                 sechdrs[i].sh_addr = (unsigned long)dest;
2214                 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
2215         }
2216         /* Module has been moved. */
2217         mod = (void *)sechdrs[modindex].sh_addr;
2218         kmemleak_load_module(mod, hdr, sechdrs, secstrings);
2219
2220 #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP)
2221         mod->refptr = percpu_modalloc(sizeof(local_t), __alignof__(local_t),
2222                                       mod->name);
2223         if (!mod->refptr) {
2224                 err = -ENOMEM;
2225                 goto free_init;
2226         }
2227 #endif
2228         /* Now we've moved module, initialize linked lists, etc. */
2229         module_unload_init(mod);
2230
2231         /* add kobject, so we can reference it. */
2232         err = mod_sysfs_init(mod);
2233         if (err)
2234                 goto free_unload;
2235
2236         /* Set up license info based on the info section */
2237         set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
2238
2239         /*
2240          * ndiswrapper is under GPL by itself, but loads proprietary modules.
2241          * Don't use add_taint_module(), as it would prevent ndiswrapper from
2242          * using GPL-only symbols it needs.
2243          */
2244         if (strcmp(mod->name, "ndiswrapper") == 0)
2245                 add_taint(TAINT_PROPRIETARY_MODULE);
2246
2247         /* driverloader was caught wrongly pretending to be under GPL */
2248         if (strcmp(mod->name, "driverloader") == 0)
2249                 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2250
2251         /* Set up MODINFO_ATTR fields */
2252         setup_modinfo(mod, sechdrs, infoindex);
2253
2254         /* Fix up syms, so that st_value is a pointer to location. */
2255         err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
2256                                mod);
2257         if (err < 0)
2258                 goto cleanup;
2259
2260         /* Now we've got everything in the final locations, we can
2261          * find optional sections. */
2262         mod->kp = section_objs(hdr, sechdrs, secstrings, "__param",
2263                                sizeof(*mod->kp), &mod->num_kp);
2264         mod->syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab",
2265                                  sizeof(*mod->syms), &mod->num_syms);
2266         mod->crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab");
2267         mod->gpl_syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab_gpl",
2268                                      sizeof(*mod->gpl_syms),
2269                                      &mod->num_gpl_syms);
2270         mod->gpl_crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab_gpl");
2271         mod->gpl_future_syms = section_objs(hdr, sechdrs, secstrings,
2272                                             "__ksymtab_gpl_future",
2273                                             sizeof(*mod->gpl_future_syms),
2274                                             &mod->num_gpl_future_syms);
2275         mod->gpl_future_crcs = section_addr(hdr, sechdrs, secstrings,
2276                                             "__kcrctab_gpl_future");
2277
2278 #ifdef CONFIG_UNUSED_SYMBOLS
2279         mod->unused_syms = section_objs(hdr, sechdrs, secstrings,
2280                                         "__ksymtab_unused",
2281                                         sizeof(*mod->unused_syms),
2282                                         &mod->num_unused_syms);
2283         mod->unused_crcs = section_addr(hdr, sechdrs, secstrings,
2284                                         "__kcrctab_unused");
2285         mod->unused_gpl_syms = section_objs(hdr, sechdrs, secstrings,
2286                                             "__ksymtab_unused_gpl",
2287                                             sizeof(*mod->unused_gpl_syms),
2288                                             &mod->num_unused_gpl_syms);
2289         mod->unused_gpl_crcs = section_addr(hdr, sechdrs, secstrings,
2290                                             "__kcrctab_unused_gpl");
2291 #endif
2292 #ifdef CONFIG_CONSTRUCTORS
2293         mod->ctors = section_objs(hdr, sechdrs, secstrings, ".ctors",
2294                                   sizeof(*mod->ctors), &mod->num_ctors);
2295 #endif
2296
2297 #ifdef CONFIG_TRACEPOINTS
2298         mod->tracepoints = section_objs(hdr, sechdrs, secstrings,
2299                                         "__tracepoints",
2300                                         sizeof(*mod->tracepoints),
2301                                         &mod->num_tracepoints);
2302 #endif
2303 #ifdef CONFIG_EVENT_TRACING
2304         mod->trace_events = section_objs(hdr, sechdrs, secstrings,
2305                                          "_ftrace_events",
2306                                          sizeof(*mod->trace_events),
2307                                          &mod->num_trace_events);
2308         /*
2309          * This section contains pointers to allocated objects in the trace
2310          * code and not scanning it leads to false positives.
2311          */
2312         kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) *
2313                            mod->num_trace_events, GFP_KERNEL);
2314 #endif
2315 #ifdef CONFIG_FTRACE_MCOUNT_RECORD
2316         /* sechdrs[0].sh_size is always zero */
2317         mod->ftrace_callsites = section_objs(hdr, sechdrs, secstrings,
2318                                              "__mcount_loc",
2319                                              sizeof(*mod->ftrace_callsites),
2320                                              &mod->num_ftrace_callsites);
2321 #endif
2322 #ifdef CONFIG_MODVERSIONS
2323         if ((mod->num_syms && !mod->crcs)
2324             || (mod->num_gpl_syms && !mod->gpl_crcs)
2325             || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2326 #ifdef CONFIG_UNUSED_SYMBOLS
2327             || (mod->num_unused_syms && !mod->unused_crcs)
2328             || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2329 #endif
2330                 ) {
2331                 err = try_to_force_load(mod,
2332                                         "no versions for exported symbols");
2333                 if (err)
2334                         goto cleanup;
2335         }
2336 #endif
2337
2338         /* Now do relocations. */
2339         for (i = 1; i < hdr->e_shnum; i++) {
2340                 const char *strtab = (char *)sechdrs[strindex].sh_addr;
2341                 unsigned int info = sechdrs[i].sh_info;
2342
2343                 /* Not a valid relocation section? */
2344                 if (info >= hdr->e_shnum)
2345                         continue;
2346
2347                 /* Don't bother with non-allocated sections */
2348                 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
2349                         continue;
2350
2351                 if (sechdrs[i].sh_type == SHT_REL)
2352                         err = apply_relocate(sechdrs, strtab, symindex, i,mod);
2353                 else if (sechdrs[i].sh_type == SHT_RELA)
2354                         err = apply_relocate_add(sechdrs, strtab, symindex, i,
2355                                                  mod);
2356                 if (err < 0)
2357                         goto cleanup;
2358         }
2359
2360         /* Find duplicate symbols */
2361         err = verify_export_symbols(mod);
2362         if (err < 0)
2363                 goto cleanup;
2364
2365         /* Set up and sort exception table */
2366         mod->extable = section_objs(hdr, sechdrs, secstrings, "__ex_table",
2367                                     sizeof(*mod->extable), &mod->num_exentries);
2368         sort_extable(mod->extable, mod->extable + mod->num_exentries);
2369
2370         /* Finally, copy percpu area over. */
2371         percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
2372                        sechdrs[pcpuindex].sh_size);
2373
2374         add_kallsyms(mod, sechdrs, hdr->e_shnum, symindex, strindex,
2375                      symoffs, stroffs, secstrings, strmap);
2376         kfree(strmap);
2377         strmap = NULL;
2378
2379         if (!mod->taints) {
2380                 struct _ddebug *debug;
2381                 unsigned int num_debug;
2382
2383                 debug = section_objs(hdr, sechdrs, secstrings, "__verbose",
2384                                      sizeof(*debug), &num_debug);
2385                 if (debug)
2386                         dynamic_debug_setup(debug, num_debug);
2387         }
2388
2389         err = module_finalize(hdr, sechdrs, mod);
2390         if (err < 0)
2391                 goto cleanup;
2392
2393         /* flush the icache in correct context */
2394         old_fs = get_fs();
2395         set_fs(KERNEL_DS);
2396
2397         /*
2398          * Flush the instruction cache, since we've played with text.
2399          * Do it before processing of module parameters, so the module
2400          * can provide parameter accessor functions of its own.
2401          */
2402         if (mod->module_init)
2403                 flush_icache_range((unsigned long)mod->module_init,
2404                                    (unsigned long)mod->module_init
2405                                    + mod->init_size);
2406         flush_icache_range((unsigned long)mod->module_core,
2407                            (unsigned long)mod->module_core + mod->core_size);
2408
2409         set_fs(old_fs);
2410
2411         mod->args = args;
2412         if (section_addr(hdr, sechdrs, secstrings, "__obsparm"))
2413                 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2414                        mod->name);
2415
2416         /* Now sew it into the lists so we can get lockdep and oops
2417          * info during argument parsing.  Noone should access us, since
2418          * strong_try_module_get() will fail.
2419          * lockdep/oops can run asynchronous, so use the RCU list insertion
2420          * function to insert in a way safe to concurrent readers.
2421          * The mutex protects against concurrent writers.
2422          */
2423         list_add_rcu(&mod->list, &modules);
2424
2425         err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL);
2426         if (err < 0)
2427                 goto unlink;
2428
2429         err = mod_sysfs_setup(mod, mod->kp, mod->num_kp);
2430         if (err < 0)
2431                 goto unlink;
2432         add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
2433         add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
2434
2435 #ifdef CONFIG_ENTERPRISE_SUPPORT
2436         /* We don't use add_taint() here because it also disables lockdep. */
2437         if (mod->taints & (1 << TAINT_EXTERNAL_SUPPORT))
2438                 add_nonfatal_taint(TAINT_EXTERNAL_SUPPORT);
2439         else if (mod->taints == (1 << TAINT_NO_SUPPORT)) {
2440                 if (unsupported == 0) {
2441                         printk(KERN_WARNING "%s: module not supported by "
2442                                "Novell, refusing to load. To override, echo "
2443                                "1 > /proc/sys/kernel/unsupported\n", mod->name);
2444                         err = -ENOEXEC;
2445                         goto free_hdr;
2446                 }
2447                 add_nonfatal_taint(TAINT_NO_SUPPORT);
2448                 if (unsupported == 1) {
2449                         printk(KERN_WARNING "%s: module is not supported by "
2450                                "Novell. Novell Technical Services may decline "
2451                                "your support request if it involves a kernel "
2452                                "fault.\n", mod->name);
2453                 }
2454         }
2455 #endif
2456
2457         /* Size of section 0 is 0, so this works well if no unwind info. */
2458         mod->unwind_info = unwind_add_table(mod,
2459                                             (void *)sechdrs[unwindex].sh_addr,
2460                                             sechdrs[unwindex].sh_size);
2461
2462         /* Get rid of temporary copy */
2463         vfree(hdr);
2464
2465         trace_module_load(mod);
2466
2467         /* Done! */
2468         return mod;
2469
2470  unlink:
2471         /* Unlink carefully: kallsyms could be walking list. */
2472         list_del_rcu(&mod->list);
2473         synchronize_sched();
2474         module_arch_cleanup(mod);
2475  cleanup:
2476         free_modinfo(mod);
2477         kobject_del(&mod->mkobj.kobj);
2478         kobject_put(&mod->mkobj.kobj);
2479  free_unload:
2480         module_unload_free(mod);
2481 #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP)
2482         percpu_modfree(mod->refptr);
2483  free_init:
2484 #endif
2485         module_free(mod, mod->module_init);
2486  free_core:
2487         module_free(mod, mod->module_core);
2488         /* mod will be freed with core. Don't access it beyond this line! */
2489  free_percpu:
2490         if (percpu)
2491                 percpu_modfree(percpu);
2492  free_mod:
2493         kfree(args);
2494         kfree(strmap);
2495  free_hdr:
2496         vfree(hdr);
2497         return ERR_PTR(err);
2498
2499  truncated:
2500         printk(KERN_ERR "Module len %lu truncated\n", len);
2501         err = -ENOEXEC;
2502         goto free_hdr;
2503 }
2504
2505 /* Call module constructors. */
2506 static void do_mod_ctors(struct module *mod)
2507 {
2508 #ifdef CONFIG_CONSTRUCTORS
2509         unsigned long i;
2510
2511         for (i = 0; i < mod->num_ctors; i++)
2512                 mod->ctors[i]();
2513 #endif
2514 }
2515
2516 /* This is where the real work happens */
2517 SYSCALL_DEFINE3(init_module, void __user *, umod,
2518                 unsigned long, len, const char __user *, uargs)
2519 {
2520         struct module *mod;
2521         int ret = 0;
2522
2523         /* Must have permission */
2524         if (!capable(CAP_SYS_MODULE) || modules_disabled)
2525                 return -EPERM;
2526
2527         /* Only one module load at a time, please */
2528         if (mutex_lock_interruptible(&module_mutex) != 0)
2529                 return -EINTR;
2530
2531         /* Do all the hard work */
2532         mod = load_module(umod, len, uargs);
2533         if (IS_ERR(mod)) {
2534                 mutex_unlock(&module_mutex);
2535                 return PTR_ERR(mod);
2536         }
2537
2538         /* Drop lock so they can recurse */
2539         mutex_unlock(&module_mutex);
2540
2541         blocking_notifier_call_chain(&module_notify_list,
2542                         MODULE_STATE_COMING, mod);
2543
2544         do_mod_ctors(mod);
2545         /* Start the module */
2546         if (mod->init != NULL)
2547                 ret = do_one_initcall(mod->init);
2548         if (ret < 0) {
2549                 /* Init routine failed: abort.  Try to protect us from
2550                    buggy refcounters. */
2551                 mod->state = MODULE_STATE_GOING;
2552                 synchronize_sched();
2553                 module_put(mod);
2554                 blocking_notifier_call_chain(&module_notify_list,
2555                                              MODULE_STATE_GOING, mod);
2556                 mutex_lock(&module_mutex);
2557                 free_module(mod);
2558                 mutex_unlock(&module_mutex);
2559                 wake_up(&module_wq);
2560                 return ret;
2561         }
2562         if (ret > 0) {
2563                 printk(KERN_WARNING
2564 "%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n"
2565 "%s: loading module anyway...\n",
2566                        __func__, mod->name, ret,
2567                        __func__);
2568                 dump_stack();
2569         }
2570
2571         /* Now it's a first class citizen!  Wake up anyone waiting for it. */
2572         mod->state = MODULE_STATE_LIVE;
2573         wake_up(&module_wq);
2574         blocking_notifier_call_chain(&module_notify_list,
2575                                      MODULE_STATE_LIVE, mod);
2576
2577         /* We need to finish all async code before the module init sequence is done */
2578         async_synchronize_full();
2579
2580         mutex_lock(&module_mutex);
2581         /* Drop initial reference. */
2582         module_put(mod);
2583         trim_init_extable(mod);
2584         unwind_remove_table(mod->unwind_info, 1);
2585 #ifdef CONFIG_KALLSYMS
2586         mod->num_symtab = mod->core_num_syms;
2587         mod->symtab = mod->core_symtab;
2588         mod->strtab = mod->core_strtab;
2589 #endif
2590         module_free(mod, mod->module_init);
2591         mod->module_init = NULL;
2592         mod->init_size = 0;
2593         mod->init_text_size = 0;
2594         mutex_unlock(&module_mutex);
2595
2596         return 0;
2597 }
2598
2599 static inline int within(unsigned long addr, void *start, unsigned long size)
2600 {
2601         return ((void *)addr >= start && (void *)addr < start + size);
2602 }
2603
2604 #ifdef CONFIG_KALLSYMS
2605 /*
2606  * This ignores the intensely annoying "mapping symbols" found
2607  * in ARM ELF files: $a, $t and $d.
2608  */
2609 static inline int is_arm_mapping_symbol(const char *str)
2610 {
2611         return str[0] == '$' && strchr("atd", str[1])
2612                && (str[2] == '\0' || str[2] == '.');
2613 }
2614
2615 static const char *get_ksymbol(struct module *mod,
2616                                unsigned long addr,
2617                                unsigned long *size,
2618                                unsigned long *offset)
2619 {
2620         unsigned int i, best = 0;
2621         unsigned long nextval;
2622
2623         /* At worse, next value is at end of module */
2624         if (within_module_init(addr, mod))
2625                 nextval = (unsigned long)mod->module_init+mod->init_text_size;
2626         else
2627                 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2628
2629         /* Scan for closest preceeding symbol, and next symbol. (ELF
2630            starts real symbols at 1). */
2631         for (i = 1; i < mod->num_symtab; i++) {
2632                 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2633                         continue;
2634
2635                 /* We ignore unnamed symbols: they're uninformative
2636                  * and inserted at a whim. */
2637                 if (mod->symtab[i].st_value <= addr
2638                     && mod->symtab[i].st_value > mod->symtab[best].st_value
2639                     && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2640                     && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2641                         best = i;
2642                 if (mod->symtab[i].st_value > addr
2643                     && mod->symtab[i].st_value < nextval
2644                     && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2645                     && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2646                         nextval = mod->symtab[i].st_value;
2647         }
2648
2649         if (!best)
2650                 return NULL;
2651
2652         if (size)
2653                 *size = nextval - mod->symtab[best].st_value;
2654         if (offset)
2655                 *offset = addr - mod->symtab[best].st_value;
2656         return mod->strtab + mod->symtab[best].st_name;
2657 }
2658
2659 /* For kallsyms to ask for address resolution.  NULL means not found.  Careful
2660  * not to lock to avoid deadlock on oopses, simply disable preemption. */
2661 const char *module_address_lookup(unsigned long addr,
2662                             unsigned long *size,
2663                             unsigned long *offset,
2664                             char **modname,
2665                             char *namebuf)
2666 {
2667         struct module *mod;
2668         const char *ret = NULL;
2669
2670         preempt_disable();
2671         list_for_each_entry_rcu(mod, &modules, list) {
2672                 if (within_module_init(addr, mod) ||
2673                     within_module_core(addr, mod)) {
2674                         if (modname)
2675                                 *modname = mod->name;
2676                         ret = get_ksymbol(mod, addr, size, offset);
2677                         break;
2678                 }
2679         }
2680         /* Make a copy in here where it's safe */
2681         if (ret) {
2682                 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2683                 ret = namebuf;
2684         }
2685         preempt_enable();
2686         return ret;
2687 }
2688
2689 int lookup_module_symbol_name(unsigned long addr, char *symname)
2690 {
2691         struct module *mod;
2692
2693         preempt_disable();
2694         list_for_each_entry_rcu(mod, &modules, list) {
2695                 if (within_module_init(addr, mod) ||
2696                     within_module_core(addr, mod)) {
2697                         const char *sym;
2698
2699                         sym = get_ksymbol(mod, addr, NULL, NULL);
2700                         if (!sym)
2701                                 goto out;
2702                         strlcpy(symname, sym, KSYM_NAME_LEN);
2703                         preempt_enable();
2704                         return 0;
2705                 }
2706         }
2707 out:
2708         preempt_enable();
2709         return -ERANGE;
2710 }
2711
2712 int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2713                         unsigned long *offset, char *modname, char *name)
2714 {
2715         struct module *mod;
2716
2717         preempt_disable();
2718         list_for_each_entry_rcu(mod, &modules, list) {
2719                 if (within_module_init(addr, mod) ||
2720                     within_module_core(addr, mod)) {
2721                         const char *sym;
2722
2723                         sym = get_ksymbol(mod, addr, size, offset);
2724                         if (!sym)
2725                                 goto out;
2726                         if (modname)
2727                                 strlcpy(modname, mod->name, MODULE_NAME_LEN);
2728                         if (name)
2729                                 strlcpy(name, sym, KSYM_NAME_LEN);
2730                         preempt_enable();
2731                         return 0;
2732                 }
2733         }
2734 out:
2735         preempt_enable();
2736         return -ERANGE;
2737 }
2738
2739 #ifdef CONFIG_KDB
2740 #include <linux/kdb.h>
2741 struct list_head *kdb_modules = &modules;  /* kdb needs the list of modules */
2742 #endif /* CONFIG_KDB */
2743
2744 int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2745                         char *name, char *module_name, int *exported)
2746 {
2747         struct module *mod;
2748 #ifdef CONFIG_KDB
2749         int get_lock = !KDB_IS_RUNNING();
2750 #else
2751 #define get_lock 1
2752 #endif
2753
2754         if (get_lock)
2755                 preempt_disable();
2756         list_for_each_entry_rcu(mod, &modules, list) {
2757                 if (symnum < mod->num_symtab) {
2758                         *value = mod->symtab[symnum].st_value;
2759                         *type = mod->symtab[symnum].st_info;
2760                         strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
2761                                 KSYM_NAME_LEN);
2762                         strlcpy(module_name, mod->name, MODULE_NAME_LEN);
2763                         *exported = is_exported(name, *value, mod);
2764                         if (get_lock)
2765                                 preempt_enable();
2766                         return 0;
2767                 }
2768                 symnum -= mod->num_symtab;
2769         }
2770         if (get_lock)
2771                 preempt_enable();
2772         return -ERANGE;
2773 }
2774
2775 static unsigned long mod_find_symname(struct module *mod, const char *name)
2776 {
2777         unsigned int i;
2778
2779         for (i = 0; i < mod->num_symtab; i++)
2780                 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2781                     mod->symtab[i].st_info != 'U')
2782                         return mod->symtab[i].st_value;
2783         return 0;
2784 }
2785
2786 /* Look for this name: can be of form module:name. */
2787 unsigned long module_kallsyms_lookup_name(const char *name)
2788 {
2789         struct module *mod;
2790         char *colon;
2791         unsigned long ret = 0;
2792
2793         /* Don't lock: we're in enough trouble already. */
2794         preempt_disable();
2795         if ((colon = strchr(name, ':')) != NULL) {
2796                 *colon = '\0';
2797                 if ((mod = find_module(name)) != NULL)
2798                         ret = mod_find_symname(mod, colon+1);
2799                 *colon = ':';
2800         } else {
2801                 list_for_each_entry_rcu(mod, &modules, list)
2802                         if ((ret = mod_find_symname(mod, name)) != 0)
2803                                 break;
2804         }
2805         preempt_enable();
2806         return ret;
2807 }
2808
2809 int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
2810                                              struct module *, unsigned long),
2811                                    void *data)
2812 {
2813         struct module *mod;
2814         unsigned int i;
2815         int ret;
2816
2817         list_for_each_entry(mod, &modules, list) {
2818                 for (i = 0; i < mod->num_symtab; i++) {
2819                         ret = fn(data, mod->strtab + mod->symtab[i].st_name,
2820                                  mod, mod->symtab[i].st_value);
2821                         if (ret != 0)
2822                                 return ret;
2823                 }
2824         }
2825         return 0;
2826 }
2827 #endif /* CONFIG_KALLSYMS */
2828
2829 static char *module_flags(struct module *mod, char *buf)
2830 {
2831         int bx = 0;
2832
2833         if (mod->taints ||
2834             mod->state == MODULE_STATE_GOING ||
2835             mod->state == MODULE_STATE_COMING) {
2836                 buf[bx++] = '(';
2837                 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
2838                         buf[bx++] = 'P';
2839                 if (mod->taints & (1 << TAINT_FORCED_MODULE))
2840                         buf[bx++] = 'F';
2841                 if (mod->taints & (1 << TAINT_CRAP))
2842                         buf[bx++] = 'C';
2843 #ifdef CONFIG_ENTERPRISE_SUPPORT
2844                 if (mod->taints & (1 << TAINT_NO_SUPPORT))
2845                         buf[bx++] = 'N';
2846                 if (mod->taints & (1 << TAINT_EXTERNAL_SUPPORT))
2847                         buf[bx++] = 'X';
2848 #endif
2849                 /*
2850                  * TAINT_FORCED_RMMOD: could be added.
2851                  * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2852                  * apply to modules.
2853                  */
2854
2855                 /* Show a - for module-is-being-unloaded */
2856                 if (mod->state == MODULE_STATE_GOING)
2857                         buf[bx++] = '-';
2858                 /* Show a + for module-is-being-loaded */
2859                 if (mod->state == MODULE_STATE_COMING)
2860                         buf[bx++] = '+';
2861                 buf[bx++] = ')';
2862         }
2863         buf[bx] = '\0';
2864
2865         return buf;
2866 }
2867
2868 #ifdef CONFIG_PROC_FS
2869 /* Called by the /proc file system to return a list of modules. */
2870 static void *m_start(struct seq_file *m, loff_t *pos)
2871 {
2872         mutex_lock(&module_mutex);
2873         return seq_list_start(&modules, *pos);
2874 }
2875
2876 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2877 {
2878         return seq_list_next(p, &modules, pos);
2879 }
2880
2881 static void m_stop(struct seq_file *m, void *p)
2882 {
2883         mutex_unlock(&module_mutex);
2884 }
2885
2886 static int m_show(struct seq_file *m, void *p)
2887 {
2888         struct module *mod = list_entry(p, struct module, list);
2889         char buf[8];
2890
2891         seq_printf(m, "%s %u",
2892                    mod->name, mod->init_size + mod->core_size);
2893         print_unload_info(m, mod);
2894
2895         /* Informative for users. */
2896         seq_printf(m, " %s",
2897                    mod->state == MODULE_STATE_GOING ? "Unloading":
2898                    mod->state == MODULE_STATE_COMING ? "Loading":
2899                    "Live");
2900         /* Used by oprofile and other similar tools. */
2901         seq_printf(m, " 0x%p", mod->module_core);
2902
2903         /* Taints info */
2904         if (mod->taints)
2905                 seq_printf(m, " %s", module_flags(mod, buf));
2906
2907         seq_printf(m, "\n");
2908         return 0;
2909 }
2910
2911 /* Format: modulename size refcount deps address
2912
2913    Where refcount is a number or -, and deps is a comma-separated list
2914    of depends or -.
2915 */
2916 static const struct seq_operations modules_op = {
2917         .start  = m_start,
2918         .next   = m_next,
2919         .stop   = m_stop,
2920         .show   = m_show
2921 };
2922
2923 static int modules_open(struct inode *inode, struct file *file)
2924 {
2925         return seq_open(file, &modules_op);
2926 }
2927
2928 static const struct file_operations proc_modules_operations = {
2929         .open           = modules_open,
2930         .read           = seq_read,
2931         .llseek         = seq_lseek,
2932         .release        = seq_release,
2933 };
2934
2935 static int __init proc_modules_init(void)
2936 {
2937         proc_create("modules", 0, NULL, &proc_modules_operations);
2938         return 0;
2939 }
2940 module_init(proc_modules_init);
2941 #endif
2942
2943 /* Given an address, look for it in the module exception tables. */
2944 const struct exception_table_entry *search_module_extables(unsigned long addr)
2945 {
2946         const struct exception_table_entry *e = NULL;
2947         struct module *mod;
2948
2949         preempt_disable();
2950         list_for_each_entry_rcu(mod, &modules, list) {
2951                 if (mod->num_exentries == 0)
2952                         continue;
2953
2954                 e = search_extable(mod->extable,
2955                                    mod->extable + mod->num_exentries - 1,
2956                                    addr);
2957                 if (e)
2958                         break;
2959         }
2960         preempt_enable();
2961
2962         /* Now, if we found one, we are running inside it now, hence
2963            we cannot unload the module, hence no refcnt needed. */
2964         return e;
2965 }
2966
2967 /*
2968  * is_module_address - is this address inside a module?
2969  * @addr: the address to check.
2970  *
2971  * See is_module_text_address() if you simply want to see if the address
2972  * is code (not data).
2973  */
2974 bool is_module_address(unsigned long addr)
2975 {
2976         bool ret;
2977
2978         preempt_disable();
2979         ret = __module_address(addr) != NULL;
2980         preempt_enable();
2981
2982         return ret;
2983 }
2984
2985 /*
2986  * __module_address - get the module which contains an address.
2987  * @addr: the address.
2988  *
2989  * Must be called with preempt disabled or module mutex held so that
2990  * module doesn't get freed during this.
2991  */
2992 struct module *__module_address(unsigned long addr)
2993 {
2994         struct module *mod;
2995
2996         if (addr < module_addr_min || addr > module_addr_max)
2997                 return NULL;
2998
2999         list_for_each_entry_rcu(mod, &modules, list)
3000                 if (within_module_core(addr, mod)
3001                     || within_module_init(addr, mod))
3002                         return mod;
3003         return NULL;
3004 }
3005 EXPORT_SYMBOL_GPL(__module_address);
3006
3007 /*
3008  * is_module_text_address - is this address inside module code?
3009  * @addr: the address to check.
3010  *
3011  * See is_module_address() if you simply want to see if the address is
3012  * anywhere in a module.  See kernel_text_address() for testing if an
3013  * address corresponds to kernel or module code.
3014  */
3015 bool is_module_text_address(unsigned long addr)
3016 {
3017         bool ret;
3018
3019         preempt_disable();
3020         ret = __module_text_address(addr) != NULL;
3021         preempt_enable();
3022
3023         return ret;
3024 }
3025
3026 /*
3027  * __module_text_address - get the module whose code contains an address.
3028  * @addr: the address.
3029  *
3030  * Must be called with preempt disabled or module mutex held so that
3031  * module doesn't get freed during this.
3032  */
3033 struct module *__module_text_address(unsigned long addr)
3034 {
3035         struct module *mod = __module_address(addr);
3036         if (mod) {
3037                 /* Make sure it's within the text section. */
3038                 if (!within(addr, mod->module_init, mod->init_text_size)
3039                     && !within(addr, mod->module_core, mod->core_text_size))
3040                         mod = NULL;
3041         }
3042         return mod;
3043 }
3044 EXPORT_SYMBOL_GPL(__module_text_address);
3045
3046 /* Don't grab lock, we're oopsing. */
3047 void print_modules(void)
3048 {
3049         struct module *mod;
3050         char buf[8];
3051
3052         printk(KERN_DEFAULT "Modules linked in:");
3053         /* Most callers should already have preempt disabled, but make sure */
3054         preempt_disable();
3055         list_for_each_entry_rcu(mod, &modules, list)
3056                 printk(" %s%s", mod->name, module_flags(mod, buf));
3057         preempt_enable();
3058         if (last_unloaded_module[0])
3059                 printk(" [last unloaded: %s]", last_unloaded_module);
3060         printk("\n");
3061 #ifdef CONFIG_ENTERPRISE_SUPPORT
3062         printk("Supported: %s\n", supported_printable(get_taint()));
3063 #endif
3064 }
3065
3066 #ifdef CONFIG_MODVERSIONS
3067 /* Generate the signature for all relevant module structures here.
3068  * If these change, we don't want to try to parse the module. */
3069 void module_layout(struct module *mod,
3070                    struct modversion_info *ver,
3071                    struct kernel_param *kp,
3072                    struct kernel_symbol *ks,
3073                    struct tracepoint *tp)
3074 {
3075 }
3076 EXPORT_SYMBOL(module_layout);
3077 #endif
3078
3079 #ifdef CONFIG_TRACEPOINTS
3080 void module_update_tracepoints(void)
3081 {
3082         struct module *mod;
3083
3084         mutex_lock(&module_mutex);
3085         list_for_each_entry(mod, &modules, list)
3086                 if (!mod->taints)
3087                         tracepoint_update_probe_range(mod->tracepoints,
3088                                 mod->tracepoints + mod->num_tracepoints);
3089         mutex_unlock(&module_mutex);
3090 }
3091
3092 /*
3093  * Returns 0 if current not found.
3094  * Returns 1 if current found.
3095  */
3096 int module_get_iter_tracepoints(struct tracepoint_iter *iter)
3097 {
3098         struct module *iter_mod;
3099         int found = 0;
3100
3101         mutex_lock(&module_mutex);
3102         list_for_each_entry(iter_mod, &modules, list) {
3103                 if (!iter_mod->taints) {
3104                         /*
3105                          * Sorted module list
3106                          */
3107                         if (iter_mod < iter->module)
3108                                 continue;
3109                         else if (iter_mod > iter->module)
3110                                 iter->tracepoint = NULL;
3111                         found = tracepoint_get_iter_range(&iter->tracepoint,
3112                                 iter_mod->tracepoints,
3113                                 iter_mod->tracepoints
3114                                         + iter_mod->num_tracepoints);
3115                         if (found) {
3116                                 iter->module = iter_mod;
3117                                 break;
3118                         }
3119                 }
3120         }
3121         mutex_unlock(&module_mutex);
3122         return found;
3123 }
3124 #endif