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