Merge tag 'arm64-mmiowb' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
[linux-2.6-microblaze.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/extable.h>
21 #include <linux/moduleloader.h>
22 #include <linux/trace_events.h>
23 #include <linux/init.h>
24 #include <linux/kallsyms.h>
25 #include <linux/file.h>
26 #include <linux/fs.h>
27 #include <linux/sysfs.h>
28 #include <linux/kernel.h>
29 #include <linux/slab.h>
30 #include <linux/vmalloc.h>
31 #include <linux/elf.h>
32 #include <linux/proc_fs.h>
33 #include <linux/security.h>
34 #include <linux/seq_file.h>
35 #include <linux/syscalls.h>
36 #include <linux/fcntl.h>
37 #include <linux/rcupdate.h>
38 #include <linux/capability.h>
39 #include <linux/cpu.h>
40 #include <linux/moduleparam.h>
41 #include <linux/errno.h>
42 #include <linux/err.h>
43 #include <linux/vermagic.h>
44 #include <linux/notifier.h>
45 #include <linux/sched.h>
46 #include <linux/device.h>
47 #include <linux/string.h>
48 #include <linux/mutex.h>
49 #include <linux/rculist.h>
50 #include <linux/uaccess.h>
51 #include <asm/cacheflush.h>
52 #include <linux/set_memory.h>
53 #include <asm/mmu_context.h>
54 #include <linux/license.h>
55 #include <asm/sections.h>
56 #include <linux/tracepoint.h>
57 #include <linux/ftrace.h>
58 #include <linux/livepatch.h>
59 #include <linux/async.h>
60 #include <linux/percpu.h>
61 #include <linux/kmemleak.h>
62 #include <linux/jump_label.h>
63 #include <linux/pfn.h>
64 #include <linux/bsearch.h>
65 #include <linux/dynamic_debug.h>
66 #include <linux/audit.h>
67 #include <uapi/linux/module.h>
68 #include "module-internal.h"
69
70 #define CREATE_TRACE_POINTS
71 #include <trace/events/module.h>
72
73 #ifndef ARCH_SHF_SMALL
74 #define ARCH_SHF_SMALL 0
75 #endif
76
77 /*
78  * Modules' sections will be aligned on page boundaries
79  * to ensure complete separation of code and data, but
80  * only when CONFIG_STRICT_MODULE_RWX=y
81  */
82 #ifdef CONFIG_STRICT_MODULE_RWX
83 # define debug_align(X) ALIGN(X, PAGE_SIZE)
84 #else
85 # define debug_align(X) (X)
86 #endif
87
88 /* If this is set, the section belongs in the init part of the module */
89 #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
90
91 /*
92  * Mutex protects:
93  * 1) List of modules (also safely readable with preempt_disable),
94  * 2) module_use links,
95  * 3) module_addr_min/module_addr_max.
96  * (delete and add uses RCU list operations). */
97 DEFINE_MUTEX(module_mutex);
98 EXPORT_SYMBOL_GPL(module_mutex);
99 static LIST_HEAD(modules);
100
101 /* Work queue for freeing init sections in success case */
102 static struct work_struct init_free_wq;
103 static struct llist_head init_free_list;
104
105 #ifdef CONFIG_MODULES_TREE_LOOKUP
106
107 /*
108  * Use a latched RB-tree for __module_address(); this allows us to use
109  * RCU-sched lookups of the address from any context.
110  *
111  * This is conditional on PERF_EVENTS || TRACING because those can really hit
112  * __module_address() hard by doing a lot of stack unwinding; potentially from
113  * NMI context.
114  */
115
116 static __always_inline unsigned long __mod_tree_val(struct latch_tree_node *n)
117 {
118         struct module_layout *layout = container_of(n, struct module_layout, mtn.node);
119
120         return (unsigned long)layout->base;
121 }
122
123 static __always_inline unsigned long __mod_tree_size(struct latch_tree_node *n)
124 {
125         struct module_layout *layout = container_of(n, struct module_layout, mtn.node);
126
127         return (unsigned long)layout->size;
128 }
129
130 static __always_inline bool
131 mod_tree_less(struct latch_tree_node *a, struct latch_tree_node *b)
132 {
133         return __mod_tree_val(a) < __mod_tree_val(b);
134 }
135
136 static __always_inline int
137 mod_tree_comp(void *key, struct latch_tree_node *n)
138 {
139         unsigned long val = (unsigned long)key;
140         unsigned long start, end;
141
142         start = __mod_tree_val(n);
143         if (val < start)
144                 return -1;
145
146         end = start + __mod_tree_size(n);
147         if (val >= end)
148                 return 1;
149
150         return 0;
151 }
152
153 static const struct latch_tree_ops mod_tree_ops = {
154         .less = mod_tree_less,
155         .comp = mod_tree_comp,
156 };
157
158 static struct mod_tree_root {
159         struct latch_tree_root root;
160         unsigned long addr_min;
161         unsigned long addr_max;
162 } mod_tree __cacheline_aligned = {
163         .addr_min = -1UL,
164 };
165
166 #define module_addr_min mod_tree.addr_min
167 #define module_addr_max mod_tree.addr_max
168
169 static noinline void __mod_tree_insert(struct mod_tree_node *node)
170 {
171         latch_tree_insert(&node->node, &mod_tree.root, &mod_tree_ops);
172 }
173
174 static void __mod_tree_remove(struct mod_tree_node *node)
175 {
176         latch_tree_erase(&node->node, &mod_tree.root, &mod_tree_ops);
177 }
178
179 /*
180  * These modifications: insert, remove_init and remove; are serialized by the
181  * module_mutex.
182  */
183 static void mod_tree_insert(struct module *mod)
184 {
185         mod->core_layout.mtn.mod = mod;
186         mod->init_layout.mtn.mod = mod;
187
188         __mod_tree_insert(&mod->core_layout.mtn);
189         if (mod->init_layout.size)
190                 __mod_tree_insert(&mod->init_layout.mtn);
191 }
192
193 static void mod_tree_remove_init(struct module *mod)
194 {
195         if (mod->init_layout.size)
196                 __mod_tree_remove(&mod->init_layout.mtn);
197 }
198
199 static void mod_tree_remove(struct module *mod)
200 {
201         __mod_tree_remove(&mod->core_layout.mtn);
202         mod_tree_remove_init(mod);
203 }
204
205 static struct module *mod_find(unsigned long addr)
206 {
207         struct latch_tree_node *ltn;
208
209         ltn = latch_tree_find((void *)addr, &mod_tree.root, &mod_tree_ops);
210         if (!ltn)
211                 return NULL;
212
213         return container_of(ltn, struct mod_tree_node, node)->mod;
214 }
215
216 #else /* MODULES_TREE_LOOKUP */
217
218 static unsigned long module_addr_min = -1UL, module_addr_max = 0;
219
220 static void mod_tree_insert(struct module *mod) { }
221 static void mod_tree_remove_init(struct module *mod) { }
222 static void mod_tree_remove(struct module *mod) { }
223
224 static struct module *mod_find(unsigned long addr)
225 {
226         struct module *mod;
227
228         list_for_each_entry_rcu(mod, &modules, list) {
229                 if (within_module(addr, mod))
230                         return mod;
231         }
232
233         return NULL;
234 }
235
236 #endif /* MODULES_TREE_LOOKUP */
237
238 /*
239  * Bounds of module text, for speeding up __module_address.
240  * Protected by module_mutex.
241  */
242 static void __mod_update_bounds(void *base, unsigned int size)
243 {
244         unsigned long min = (unsigned long)base;
245         unsigned long max = min + size;
246
247         if (min < module_addr_min)
248                 module_addr_min = min;
249         if (max > module_addr_max)
250                 module_addr_max = max;
251 }
252
253 static void mod_update_bounds(struct module *mod)
254 {
255         __mod_update_bounds(mod->core_layout.base, mod->core_layout.size);
256         if (mod->init_layout.size)
257                 __mod_update_bounds(mod->init_layout.base, mod->init_layout.size);
258 }
259
260 #ifdef CONFIG_KGDB_KDB
261 struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
262 #endif /* CONFIG_KGDB_KDB */
263
264 static void module_assert_mutex(void)
265 {
266         lockdep_assert_held(&module_mutex);
267 }
268
269 static void module_assert_mutex_or_preempt(void)
270 {
271 #ifdef CONFIG_LOCKDEP
272         if (unlikely(!debug_locks))
273                 return;
274
275         WARN_ON_ONCE(!rcu_read_lock_sched_held() &&
276                 !lockdep_is_held(&module_mutex));
277 #endif
278 }
279
280 static bool sig_enforce = IS_ENABLED(CONFIG_MODULE_SIG_FORCE);
281 module_param(sig_enforce, bool_enable_only, 0644);
282
283 /*
284  * Export sig_enforce kernel cmdline parameter to allow other subsystems rely
285  * on that instead of directly to CONFIG_MODULE_SIG_FORCE config.
286  */
287 bool is_module_sig_enforced(void)
288 {
289         return sig_enforce;
290 }
291 EXPORT_SYMBOL(is_module_sig_enforced);
292
293 /* Block module loading/unloading? */
294 int modules_disabled = 0;
295 core_param(nomodule, modules_disabled, bint, 0);
296
297 /* Waiting for a module to finish initializing? */
298 static DECLARE_WAIT_QUEUE_HEAD(module_wq);
299
300 static BLOCKING_NOTIFIER_HEAD(module_notify_list);
301
302 int register_module_notifier(struct notifier_block *nb)
303 {
304         return blocking_notifier_chain_register(&module_notify_list, nb);
305 }
306 EXPORT_SYMBOL(register_module_notifier);
307
308 int unregister_module_notifier(struct notifier_block *nb)
309 {
310         return blocking_notifier_chain_unregister(&module_notify_list, nb);
311 }
312 EXPORT_SYMBOL(unregister_module_notifier);
313
314 /*
315  * We require a truly strong try_module_get(): 0 means success.
316  * Otherwise an error is returned due to ongoing or failed
317  * initialization etc.
318  */
319 static inline int strong_try_module_get(struct module *mod)
320 {
321         BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED);
322         if (mod && mod->state == MODULE_STATE_COMING)
323                 return -EBUSY;
324         if (try_module_get(mod))
325                 return 0;
326         else
327                 return -ENOENT;
328 }
329
330 static inline void add_taint_module(struct module *mod, unsigned flag,
331                                     enum lockdep_ok lockdep_ok)
332 {
333         add_taint(flag, lockdep_ok);
334         set_bit(flag, &mod->taints);
335 }
336
337 /*
338  * A thread that wants to hold a reference to a module only while it
339  * is running can call this to safely exit.  nfsd and lockd use this.
340  */
341 void __noreturn __module_put_and_exit(struct module *mod, long code)
342 {
343         module_put(mod);
344         do_exit(code);
345 }
346 EXPORT_SYMBOL(__module_put_and_exit);
347
348 /* Find a module section: 0 means not found. */
349 static unsigned int find_sec(const struct load_info *info, const char *name)
350 {
351         unsigned int i;
352
353         for (i = 1; i < info->hdr->e_shnum; i++) {
354                 Elf_Shdr *shdr = &info->sechdrs[i];
355                 /* Alloc bit cleared means "ignore it." */
356                 if ((shdr->sh_flags & SHF_ALLOC)
357                     && strcmp(info->secstrings + shdr->sh_name, name) == 0)
358                         return i;
359         }
360         return 0;
361 }
362
363 /* Find a module section, or NULL. */
364 static void *section_addr(const struct load_info *info, const char *name)
365 {
366         /* Section 0 has sh_addr 0. */
367         return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
368 }
369
370 /* Find a module section, or NULL.  Fill in number of "objects" in section. */
371 static void *section_objs(const struct load_info *info,
372                           const char *name,
373                           size_t object_size,
374                           unsigned int *num)
375 {
376         unsigned int sec = find_sec(info, name);
377
378         /* Section 0 has sh_addr 0 and sh_size 0. */
379         *num = info->sechdrs[sec].sh_size / object_size;
380         return (void *)info->sechdrs[sec].sh_addr;
381 }
382
383 /* Provided by the linker */
384 extern const struct kernel_symbol __start___ksymtab[];
385 extern const struct kernel_symbol __stop___ksymtab[];
386 extern const struct kernel_symbol __start___ksymtab_gpl[];
387 extern const struct kernel_symbol __stop___ksymtab_gpl[];
388 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
389 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
390 extern const s32 __start___kcrctab[];
391 extern const s32 __start___kcrctab_gpl[];
392 extern const s32 __start___kcrctab_gpl_future[];
393 #ifdef CONFIG_UNUSED_SYMBOLS
394 extern const struct kernel_symbol __start___ksymtab_unused[];
395 extern const struct kernel_symbol __stop___ksymtab_unused[];
396 extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
397 extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
398 extern const s32 __start___kcrctab_unused[];
399 extern const s32 __start___kcrctab_unused_gpl[];
400 #endif
401
402 #ifndef CONFIG_MODVERSIONS
403 #define symversion(base, idx) NULL
404 #else
405 #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
406 #endif
407
408 static bool each_symbol_in_section(const struct symsearch *arr,
409                                    unsigned int arrsize,
410                                    struct module *owner,
411                                    bool (*fn)(const struct symsearch *syms,
412                                               struct module *owner,
413                                               void *data),
414                                    void *data)
415 {
416         unsigned int j;
417
418         for (j = 0; j < arrsize; j++) {
419                 if (fn(&arr[j], owner, data))
420                         return true;
421         }
422
423         return false;
424 }
425
426 /* Returns true as soon as fn returns true, otherwise false. */
427 bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
428                                     struct module *owner,
429                                     void *data),
430                          void *data)
431 {
432         struct module *mod;
433         static const struct symsearch arr[] = {
434                 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
435                   NOT_GPL_ONLY, false },
436                 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
437                   __start___kcrctab_gpl,
438                   GPL_ONLY, false },
439                 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
440                   __start___kcrctab_gpl_future,
441                   WILL_BE_GPL_ONLY, false },
442 #ifdef CONFIG_UNUSED_SYMBOLS
443                 { __start___ksymtab_unused, __stop___ksymtab_unused,
444                   __start___kcrctab_unused,
445                   NOT_GPL_ONLY, true },
446                 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
447                   __start___kcrctab_unused_gpl,
448                   GPL_ONLY, true },
449 #endif
450         };
451
452         module_assert_mutex_or_preempt();
453
454         if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
455                 return true;
456
457         list_for_each_entry_rcu(mod, &modules, list) {
458                 struct symsearch arr[] = {
459                         { mod->syms, mod->syms + mod->num_syms, mod->crcs,
460                           NOT_GPL_ONLY, false },
461                         { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
462                           mod->gpl_crcs,
463                           GPL_ONLY, false },
464                         { mod->gpl_future_syms,
465                           mod->gpl_future_syms + mod->num_gpl_future_syms,
466                           mod->gpl_future_crcs,
467                           WILL_BE_GPL_ONLY, false },
468 #ifdef CONFIG_UNUSED_SYMBOLS
469                         { mod->unused_syms,
470                           mod->unused_syms + mod->num_unused_syms,
471                           mod->unused_crcs,
472                           NOT_GPL_ONLY, true },
473                         { mod->unused_gpl_syms,
474                           mod->unused_gpl_syms + mod->num_unused_gpl_syms,
475                           mod->unused_gpl_crcs,
476                           GPL_ONLY, true },
477 #endif
478                 };
479
480                 if (mod->state == MODULE_STATE_UNFORMED)
481                         continue;
482
483                 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
484                         return true;
485         }
486         return false;
487 }
488 EXPORT_SYMBOL_GPL(each_symbol_section);
489
490 struct find_symbol_arg {
491         /* Input */
492         const char *name;
493         bool gplok;
494         bool warn;
495
496         /* Output */
497         struct module *owner;
498         const s32 *crc;
499         const struct kernel_symbol *sym;
500 };
501
502 static bool check_exported_symbol(const struct symsearch *syms,
503                                   struct module *owner,
504                                   unsigned int symnum, void *data)
505 {
506         struct find_symbol_arg *fsa = data;
507
508         if (!fsa->gplok) {
509                 if (syms->licence == GPL_ONLY)
510                         return false;
511                 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
512                         pr_warn("Symbol %s is being used by a non-GPL module, "
513                                 "which will not be allowed in the future\n",
514                                 fsa->name);
515                 }
516         }
517
518 #ifdef CONFIG_UNUSED_SYMBOLS
519         if (syms->unused && fsa->warn) {
520                 pr_warn("Symbol %s is marked as UNUSED, however this module is "
521                         "using it.\n", fsa->name);
522                 pr_warn("This symbol will go away in the future.\n");
523                 pr_warn("Please evaluate if this is the right api to use and "
524                         "if it really is, submit a report to the linux kernel "
525                         "mailing list together with submitting your code for "
526                         "inclusion.\n");
527         }
528 #endif
529
530         fsa->owner = owner;
531         fsa->crc = symversion(syms->crcs, symnum);
532         fsa->sym = &syms->start[symnum];
533         return true;
534 }
535
536 static unsigned long kernel_symbol_value(const struct kernel_symbol *sym)
537 {
538 #ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
539         return (unsigned long)offset_to_ptr(&sym->value_offset);
540 #else
541         return sym->value;
542 #endif
543 }
544
545 static const char *kernel_symbol_name(const struct kernel_symbol *sym)
546 {
547 #ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
548         return offset_to_ptr(&sym->name_offset);
549 #else
550         return sym->name;
551 #endif
552 }
553
554 static int cmp_name(const void *va, const void *vb)
555 {
556         const char *a;
557         const struct kernel_symbol *b;
558         a = va; b = vb;
559         return strcmp(a, kernel_symbol_name(b));
560 }
561
562 static bool find_exported_symbol_in_section(const struct symsearch *syms,
563                                             struct module *owner,
564                                             void *data)
565 {
566         struct find_symbol_arg *fsa = data;
567         struct kernel_symbol *sym;
568
569         sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
570                         sizeof(struct kernel_symbol), cmp_name);
571
572         if (sym != NULL && check_exported_symbol(syms, owner,
573                                                  sym - syms->start, data))
574                 return true;
575
576         return false;
577 }
578
579 /* Find an exported symbol and return it, along with, (optional) crc and
580  * (optional) module which owns it.  Needs preempt disabled or module_mutex. */
581 const struct kernel_symbol *find_symbol(const char *name,
582                                         struct module **owner,
583                                         const s32 **crc,
584                                         bool gplok,
585                                         bool warn)
586 {
587         struct find_symbol_arg fsa;
588
589         fsa.name = name;
590         fsa.gplok = gplok;
591         fsa.warn = warn;
592
593         if (each_symbol_section(find_exported_symbol_in_section, &fsa)) {
594                 if (owner)
595                         *owner = fsa.owner;
596                 if (crc)
597                         *crc = fsa.crc;
598                 return fsa.sym;
599         }
600
601         pr_debug("Failed to find symbol %s\n", name);
602         return NULL;
603 }
604 EXPORT_SYMBOL_GPL(find_symbol);
605
606 /*
607  * Search for module by name: must hold module_mutex (or preempt disabled
608  * for read-only access).
609  */
610 static struct module *find_module_all(const char *name, size_t len,
611                                       bool even_unformed)
612 {
613         struct module *mod;
614
615         module_assert_mutex_or_preempt();
616
617         list_for_each_entry_rcu(mod, &modules, list) {
618                 if (!even_unformed && mod->state == MODULE_STATE_UNFORMED)
619                         continue;
620                 if (strlen(mod->name) == len && !memcmp(mod->name, name, len))
621                         return mod;
622         }
623         return NULL;
624 }
625
626 struct module *find_module(const char *name)
627 {
628         module_assert_mutex();
629         return find_module_all(name, strlen(name), false);
630 }
631 EXPORT_SYMBOL_GPL(find_module);
632
633 #ifdef CONFIG_SMP
634
635 static inline void __percpu *mod_percpu(struct module *mod)
636 {
637         return mod->percpu;
638 }
639
640 static int percpu_modalloc(struct module *mod, struct load_info *info)
641 {
642         Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu];
643         unsigned long align = pcpusec->sh_addralign;
644
645         if (!pcpusec->sh_size)
646                 return 0;
647
648         if (align > PAGE_SIZE) {
649                 pr_warn("%s: per-cpu alignment %li > %li\n",
650                         mod->name, align, PAGE_SIZE);
651                 align = PAGE_SIZE;
652         }
653
654         mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align);
655         if (!mod->percpu) {
656                 pr_warn("%s: Could not allocate %lu bytes percpu data\n",
657                         mod->name, (unsigned long)pcpusec->sh_size);
658                 return -ENOMEM;
659         }
660         mod->percpu_size = pcpusec->sh_size;
661         return 0;
662 }
663
664 static void percpu_modfree(struct module *mod)
665 {
666         free_percpu(mod->percpu);
667 }
668
669 static unsigned int find_pcpusec(struct load_info *info)
670 {
671         return find_sec(info, ".data..percpu");
672 }
673
674 static void percpu_modcopy(struct module *mod,
675                            const void *from, unsigned long size)
676 {
677         int cpu;
678
679         for_each_possible_cpu(cpu)
680                 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
681 }
682
683 bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
684 {
685         struct module *mod;
686         unsigned int cpu;
687
688         preempt_disable();
689
690         list_for_each_entry_rcu(mod, &modules, list) {
691                 if (mod->state == MODULE_STATE_UNFORMED)
692                         continue;
693                 if (!mod->percpu_size)
694                         continue;
695                 for_each_possible_cpu(cpu) {
696                         void *start = per_cpu_ptr(mod->percpu, cpu);
697                         void *va = (void *)addr;
698
699                         if (va >= start && va < start + mod->percpu_size) {
700                                 if (can_addr) {
701                                         *can_addr = (unsigned long) (va - start);
702                                         *can_addr += (unsigned long)
703                                                 per_cpu_ptr(mod->percpu,
704                                                             get_boot_cpu_id());
705                                 }
706                                 preempt_enable();
707                                 return true;
708                         }
709                 }
710         }
711
712         preempt_enable();
713         return false;
714 }
715
716 /**
717  * is_module_percpu_address - test whether address is from module static percpu
718  * @addr: address to test
719  *
720  * Test whether @addr belongs to module static percpu area.
721  *
722  * RETURNS:
723  * %true if @addr is from module static percpu area
724  */
725 bool is_module_percpu_address(unsigned long addr)
726 {
727         return __is_module_percpu_address(addr, NULL);
728 }
729
730 #else /* ... !CONFIG_SMP */
731
732 static inline void __percpu *mod_percpu(struct module *mod)
733 {
734         return NULL;
735 }
736 static int percpu_modalloc(struct module *mod, struct load_info *info)
737 {
738         /* UP modules shouldn't have this section: ENOMEM isn't quite right */
739         if (info->sechdrs[info->index.pcpu].sh_size != 0)
740                 return -ENOMEM;
741         return 0;
742 }
743 static inline void percpu_modfree(struct module *mod)
744 {
745 }
746 static unsigned int find_pcpusec(struct load_info *info)
747 {
748         return 0;
749 }
750 static inline void percpu_modcopy(struct module *mod,
751                                   const void *from, unsigned long size)
752 {
753         /* pcpusec should be 0, and size of that section should be 0. */
754         BUG_ON(size != 0);
755 }
756 bool is_module_percpu_address(unsigned long addr)
757 {
758         return false;
759 }
760
761 bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
762 {
763         return false;
764 }
765
766 #endif /* CONFIG_SMP */
767
768 #define MODINFO_ATTR(field)     \
769 static void setup_modinfo_##field(struct module *mod, const char *s)  \
770 {                                                                     \
771         mod->field = kstrdup(s, GFP_KERNEL);                          \
772 }                                                                     \
773 static ssize_t show_modinfo_##field(struct module_attribute *mattr,   \
774                         struct module_kobject *mk, char *buffer)      \
775 {                                                                     \
776         return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field);  \
777 }                                                                     \
778 static int modinfo_##field##_exists(struct module *mod)               \
779 {                                                                     \
780         return mod->field != NULL;                                    \
781 }                                                                     \
782 static void free_modinfo_##field(struct module *mod)                  \
783 {                                                                     \
784         kfree(mod->field);                                            \
785         mod->field = NULL;                                            \
786 }                                                                     \
787 static struct module_attribute modinfo_##field = {                    \
788         .attr = { .name = __stringify(field), .mode = 0444 },         \
789         .show = show_modinfo_##field,                                 \
790         .setup = setup_modinfo_##field,                               \
791         .test = modinfo_##field##_exists,                             \
792         .free = free_modinfo_##field,                                 \
793 };
794
795 MODINFO_ATTR(version);
796 MODINFO_ATTR(srcversion);
797
798 static char last_unloaded_module[MODULE_NAME_LEN+1];
799
800 #ifdef CONFIG_MODULE_UNLOAD
801
802 EXPORT_TRACEPOINT_SYMBOL(module_get);
803
804 /* MODULE_REF_BASE is the base reference count by kmodule loader. */
805 #define MODULE_REF_BASE 1
806
807 /* Init the unload section of the module. */
808 static int module_unload_init(struct module *mod)
809 {
810         /*
811          * Initialize reference counter to MODULE_REF_BASE.
812          * refcnt == 0 means module is going.
813          */
814         atomic_set(&mod->refcnt, MODULE_REF_BASE);
815
816         INIT_LIST_HEAD(&mod->source_list);
817         INIT_LIST_HEAD(&mod->target_list);
818
819         /* Hold reference count during initialization. */
820         atomic_inc(&mod->refcnt);
821
822         return 0;
823 }
824
825 /* Does a already use b? */
826 static int already_uses(struct module *a, struct module *b)
827 {
828         struct module_use *use;
829
830         list_for_each_entry(use, &b->source_list, source_list) {
831                 if (use->source == a) {
832                         pr_debug("%s uses %s!\n", a->name, b->name);
833                         return 1;
834                 }
835         }
836         pr_debug("%s does not use %s!\n", a->name, b->name);
837         return 0;
838 }
839
840 /*
841  * Module a uses b
842  *  - we add 'a' as a "source", 'b' as a "target" of module use
843  *  - the module_use is added to the list of 'b' sources (so
844  *    'b' can walk the list to see who sourced them), and of 'a'
845  *    targets (so 'a' can see what modules it targets).
846  */
847 static int add_module_usage(struct module *a, struct module *b)
848 {
849         struct module_use *use;
850
851         pr_debug("Allocating new usage for %s.\n", a->name);
852         use = kmalloc(sizeof(*use), GFP_ATOMIC);
853         if (!use)
854                 return -ENOMEM;
855
856         use->source = a;
857         use->target = b;
858         list_add(&use->source_list, &b->source_list);
859         list_add(&use->target_list, &a->target_list);
860         return 0;
861 }
862
863 /* Module a uses b: caller needs module_mutex() */
864 int ref_module(struct module *a, struct module *b)
865 {
866         int err;
867
868         if (b == NULL || already_uses(a, b))
869                 return 0;
870
871         /* If module isn't available, we fail. */
872         err = strong_try_module_get(b);
873         if (err)
874                 return err;
875
876         err = add_module_usage(a, b);
877         if (err) {
878                 module_put(b);
879                 return err;
880         }
881         return 0;
882 }
883 EXPORT_SYMBOL_GPL(ref_module);
884
885 /* Clear the unload stuff of the module. */
886 static void module_unload_free(struct module *mod)
887 {
888         struct module_use *use, *tmp;
889
890         mutex_lock(&module_mutex);
891         list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
892                 struct module *i = use->target;
893                 pr_debug("%s unusing %s\n", mod->name, i->name);
894                 module_put(i);
895                 list_del(&use->source_list);
896                 list_del(&use->target_list);
897                 kfree(use);
898         }
899         mutex_unlock(&module_mutex);
900 }
901
902 #ifdef CONFIG_MODULE_FORCE_UNLOAD
903 static inline int try_force_unload(unsigned int flags)
904 {
905         int ret = (flags & O_TRUNC);
906         if (ret)
907                 add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE);
908         return ret;
909 }
910 #else
911 static inline int try_force_unload(unsigned int flags)
912 {
913         return 0;
914 }
915 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
916
917 /* Try to release refcount of module, 0 means success. */
918 static int try_release_module_ref(struct module *mod)
919 {
920         int ret;
921
922         /* Try to decrement refcnt which we set at loading */
923         ret = atomic_sub_return(MODULE_REF_BASE, &mod->refcnt);
924         BUG_ON(ret < 0);
925         if (ret)
926                 /* Someone can put this right now, recover with checking */
927                 ret = atomic_add_unless(&mod->refcnt, MODULE_REF_BASE, 0);
928
929         return ret;
930 }
931
932 static int try_stop_module(struct module *mod, int flags, int *forced)
933 {
934         /* If it's not unused, quit unless we're forcing. */
935         if (try_release_module_ref(mod) != 0) {
936                 *forced = try_force_unload(flags);
937                 if (!(*forced))
938                         return -EWOULDBLOCK;
939         }
940
941         /* Mark it as dying. */
942         mod->state = MODULE_STATE_GOING;
943
944         return 0;
945 }
946
947 /**
948  * module_refcount - return the refcount or -1 if unloading
949  *
950  * @mod:        the module we're checking
951  *
952  * Returns:
953  *      -1 if the module is in the process of unloading
954  *      otherwise the number of references in the kernel to the module
955  */
956 int module_refcount(struct module *mod)
957 {
958         return atomic_read(&mod->refcnt) - MODULE_REF_BASE;
959 }
960 EXPORT_SYMBOL(module_refcount);
961
962 /* This exists whether we can unload or not */
963 static void free_module(struct module *mod);
964
965 SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
966                 unsigned int, flags)
967 {
968         struct module *mod;
969         char name[MODULE_NAME_LEN];
970         int ret, forced = 0;
971
972         if (!capable(CAP_SYS_MODULE) || modules_disabled)
973                 return -EPERM;
974
975         if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
976                 return -EFAULT;
977         name[MODULE_NAME_LEN-1] = '\0';
978
979         audit_log_kern_module(name);
980
981         if (mutex_lock_interruptible(&module_mutex) != 0)
982                 return -EINTR;
983
984         mod = find_module(name);
985         if (!mod) {
986                 ret = -ENOENT;
987                 goto out;
988         }
989
990         if (!list_empty(&mod->source_list)) {
991                 /* Other modules depend on us: get rid of them first. */
992                 ret = -EWOULDBLOCK;
993                 goto out;
994         }
995
996         /* Doing init or already dying? */
997         if (mod->state != MODULE_STATE_LIVE) {
998                 /* FIXME: if (force), slam module count damn the torpedoes */
999                 pr_debug("%s already dying\n", mod->name);
1000                 ret = -EBUSY;
1001                 goto out;
1002         }
1003
1004         /* If it has an init func, it must have an exit func to unload */
1005         if (mod->init && !mod->exit) {
1006                 forced = try_force_unload(flags);
1007                 if (!forced) {
1008                         /* This module can't be removed */
1009                         ret = -EBUSY;
1010                         goto out;
1011                 }
1012         }
1013
1014         /* Stop the machine so refcounts can't move and disable module. */
1015         ret = try_stop_module(mod, flags, &forced);
1016         if (ret != 0)
1017                 goto out;
1018
1019         mutex_unlock(&module_mutex);
1020         /* Final destruction now no one is using it. */
1021         if (mod->exit != NULL)
1022                 mod->exit();
1023         blocking_notifier_call_chain(&module_notify_list,
1024                                      MODULE_STATE_GOING, mod);
1025         klp_module_going(mod);
1026         ftrace_release_mod(mod);
1027
1028         async_synchronize_full();
1029
1030         /* Store the name of the last unloaded module for diagnostic purposes */
1031         strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
1032
1033         free_module(mod);
1034         return 0;
1035 out:
1036         mutex_unlock(&module_mutex);
1037         return ret;
1038 }
1039
1040 static inline void print_unload_info(struct seq_file *m, struct module *mod)
1041 {
1042         struct module_use *use;
1043         int printed_something = 0;
1044
1045         seq_printf(m, " %i ", module_refcount(mod));
1046
1047         /*
1048          * Always include a trailing , so userspace can differentiate
1049          * between this and the old multi-field proc format.
1050          */
1051         list_for_each_entry(use, &mod->source_list, source_list) {
1052                 printed_something = 1;
1053                 seq_printf(m, "%s,", use->source->name);
1054         }
1055
1056         if (mod->init != NULL && mod->exit == NULL) {
1057                 printed_something = 1;
1058                 seq_puts(m, "[permanent],");
1059         }
1060
1061         if (!printed_something)
1062                 seq_puts(m, "-");
1063 }
1064
1065 void __symbol_put(const char *symbol)
1066 {
1067         struct module *owner;
1068
1069         preempt_disable();
1070         if (!find_symbol(symbol, &owner, NULL, true, false))
1071                 BUG();
1072         module_put(owner);
1073         preempt_enable();
1074 }
1075 EXPORT_SYMBOL(__symbol_put);
1076
1077 /* Note this assumes addr is a function, which it currently always is. */
1078 void symbol_put_addr(void *addr)
1079 {
1080         struct module *modaddr;
1081         unsigned long a = (unsigned long)dereference_function_descriptor(addr);
1082
1083         if (core_kernel_text(a))
1084                 return;
1085
1086         /*
1087          * Even though we hold a reference on the module; we still need to
1088          * disable preemption in order to safely traverse the data structure.
1089          */
1090         preempt_disable();
1091         modaddr = __module_text_address(a);
1092         BUG_ON(!modaddr);
1093         module_put(modaddr);
1094         preempt_enable();
1095 }
1096 EXPORT_SYMBOL_GPL(symbol_put_addr);
1097
1098 static ssize_t show_refcnt(struct module_attribute *mattr,
1099                            struct module_kobject *mk, char *buffer)
1100 {
1101         return sprintf(buffer, "%i\n", module_refcount(mk->mod));
1102 }
1103
1104 static struct module_attribute modinfo_refcnt =
1105         __ATTR(refcnt, 0444, show_refcnt, NULL);
1106
1107 void __module_get(struct module *module)
1108 {
1109         if (module) {
1110                 preempt_disable();
1111                 atomic_inc(&module->refcnt);
1112                 trace_module_get(module, _RET_IP_);
1113                 preempt_enable();
1114         }
1115 }
1116 EXPORT_SYMBOL(__module_get);
1117
1118 bool try_module_get(struct module *module)
1119 {
1120         bool ret = true;
1121
1122         if (module) {
1123                 preempt_disable();
1124                 /* Note: here, we can fail to get a reference */
1125                 if (likely(module_is_live(module) &&
1126                            atomic_inc_not_zero(&module->refcnt) != 0))
1127                         trace_module_get(module, _RET_IP_);
1128                 else
1129                         ret = false;
1130
1131                 preempt_enable();
1132         }
1133         return ret;
1134 }
1135 EXPORT_SYMBOL(try_module_get);
1136
1137 void module_put(struct module *module)
1138 {
1139         int ret;
1140
1141         if (module) {
1142                 preempt_disable();
1143                 ret = atomic_dec_if_positive(&module->refcnt);
1144                 WARN_ON(ret < 0);       /* Failed to put refcount */
1145                 trace_module_put(module, _RET_IP_);
1146                 preempt_enable();
1147         }
1148 }
1149 EXPORT_SYMBOL(module_put);
1150
1151 #else /* !CONFIG_MODULE_UNLOAD */
1152 static inline void print_unload_info(struct seq_file *m, struct module *mod)
1153 {
1154         /* We don't know the usage count, or what modules are using. */
1155         seq_puts(m, " - -");
1156 }
1157
1158 static inline void module_unload_free(struct module *mod)
1159 {
1160 }
1161
1162 int ref_module(struct module *a, struct module *b)
1163 {
1164         return strong_try_module_get(b);
1165 }
1166 EXPORT_SYMBOL_GPL(ref_module);
1167
1168 static inline int module_unload_init(struct module *mod)
1169 {
1170         return 0;
1171 }
1172 #endif /* CONFIG_MODULE_UNLOAD */
1173
1174 static size_t module_flags_taint(struct module *mod, char *buf)
1175 {
1176         size_t l = 0;
1177         int i;
1178
1179         for (i = 0; i < TAINT_FLAGS_COUNT; i++) {
1180                 if (taint_flags[i].module && test_bit(i, &mod->taints))
1181                         buf[l++] = taint_flags[i].c_true;
1182         }
1183
1184         return l;
1185 }
1186
1187 static ssize_t show_initstate(struct module_attribute *mattr,
1188                               struct module_kobject *mk, char *buffer)
1189 {
1190         const char *state = "unknown";
1191
1192         switch (mk->mod->state) {
1193         case MODULE_STATE_LIVE:
1194                 state = "live";
1195                 break;
1196         case MODULE_STATE_COMING:
1197                 state = "coming";
1198                 break;
1199         case MODULE_STATE_GOING:
1200                 state = "going";
1201                 break;
1202         default:
1203                 BUG();
1204         }
1205         return sprintf(buffer, "%s\n", state);
1206 }
1207
1208 static struct module_attribute modinfo_initstate =
1209         __ATTR(initstate, 0444, show_initstate, NULL);
1210
1211 static ssize_t store_uevent(struct module_attribute *mattr,
1212                             struct module_kobject *mk,
1213                             const char *buffer, size_t count)
1214 {
1215         int rc;
1216
1217         rc = kobject_synth_uevent(&mk->kobj, buffer, count);
1218         return rc ? rc : count;
1219 }
1220
1221 struct module_attribute module_uevent =
1222         __ATTR(uevent, 0200, NULL, store_uevent);
1223
1224 static ssize_t show_coresize(struct module_attribute *mattr,
1225                              struct module_kobject *mk, char *buffer)
1226 {
1227         return sprintf(buffer, "%u\n", mk->mod->core_layout.size);
1228 }
1229
1230 static struct module_attribute modinfo_coresize =
1231         __ATTR(coresize, 0444, show_coresize, NULL);
1232
1233 static ssize_t show_initsize(struct module_attribute *mattr,
1234                              struct module_kobject *mk, char *buffer)
1235 {
1236         return sprintf(buffer, "%u\n", mk->mod->init_layout.size);
1237 }
1238
1239 static struct module_attribute modinfo_initsize =
1240         __ATTR(initsize, 0444, show_initsize, NULL);
1241
1242 static ssize_t show_taint(struct module_attribute *mattr,
1243                           struct module_kobject *mk, char *buffer)
1244 {
1245         size_t l;
1246
1247         l = module_flags_taint(mk->mod, buffer);
1248         buffer[l++] = '\n';
1249         return l;
1250 }
1251
1252 static struct module_attribute modinfo_taint =
1253         __ATTR(taint, 0444, show_taint, NULL);
1254
1255 static struct module_attribute *modinfo_attrs[] = {
1256         &module_uevent,
1257         &modinfo_version,
1258         &modinfo_srcversion,
1259         &modinfo_initstate,
1260         &modinfo_coresize,
1261         &modinfo_initsize,
1262         &modinfo_taint,
1263 #ifdef CONFIG_MODULE_UNLOAD
1264         &modinfo_refcnt,
1265 #endif
1266         NULL,
1267 };
1268
1269 static const char vermagic[] = VERMAGIC_STRING;
1270
1271 static int try_to_force_load(struct module *mod, const char *reason)
1272 {
1273 #ifdef CONFIG_MODULE_FORCE_LOAD
1274         if (!test_taint(TAINT_FORCED_MODULE))
1275                 pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
1276         add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
1277         return 0;
1278 #else
1279         return -ENOEXEC;
1280 #endif
1281 }
1282
1283 #ifdef CONFIG_MODVERSIONS
1284
1285 static u32 resolve_rel_crc(const s32 *crc)
1286 {
1287         return *(u32 *)((void *)crc + *crc);
1288 }
1289
1290 static int check_version(const struct load_info *info,
1291                          const char *symname,
1292                          struct module *mod,
1293                          const s32 *crc)
1294 {
1295         Elf_Shdr *sechdrs = info->sechdrs;
1296         unsigned int versindex = info->index.vers;
1297         unsigned int i, num_versions;
1298         struct modversion_info *versions;
1299
1300         /* Exporting module didn't supply crcs?  OK, we're already tainted. */
1301         if (!crc)
1302                 return 1;
1303
1304         /* No versions at all?  modprobe --force does this. */
1305         if (versindex == 0)
1306                 return try_to_force_load(mod, symname) == 0;
1307
1308         versions = (void *) sechdrs[versindex].sh_addr;
1309         num_versions = sechdrs[versindex].sh_size
1310                 / sizeof(struct modversion_info);
1311
1312         for (i = 0; i < num_versions; i++) {
1313                 u32 crcval;
1314
1315                 if (strcmp(versions[i].name, symname) != 0)
1316                         continue;
1317
1318                 if (IS_ENABLED(CONFIG_MODULE_REL_CRCS))
1319                         crcval = resolve_rel_crc(crc);
1320                 else
1321                         crcval = *crc;
1322                 if (versions[i].crc == crcval)
1323                         return 1;
1324                 pr_debug("Found checksum %X vs module %lX\n",
1325                          crcval, versions[i].crc);
1326                 goto bad_version;
1327         }
1328
1329         /* Broken toolchain. Warn once, then let it go.. */
1330         pr_warn_once("%s: no symbol version for %s\n", info->name, symname);
1331         return 1;
1332
1333 bad_version:
1334         pr_warn("%s: disagrees about version of symbol %s\n",
1335                info->name, symname);
1336         return 0;
1337 }
1338
1339 static inline int check_modstruct_version(const struct load_info *info,
1340                                           struct module *mod)
1341 {
1342         const s32 *crc;
1343
1344         /*
1345          * Since this should be found in kernel (which can't be removed), no
1346          * locking is necessary -- use preempt_disable() to placate lockdep.
1347          */
1348         preempt_disable();
1349         if (!find_symbol("module_layout", NULL, &crc, true, false)) {
1350                 preempt_enable();
1351                 BUG();
1352         }
1353         preempt_enable();
1354         return check_version(info, "module_layout", mod, crc);
1355 }
1356
1357 /* First part is kernel version, which we ignore if module has crcs. */
1358 static inline int same_magic(const char *amagic, const char *bmagic,
1359                              bool has_crcs)
1360 {
1361         if (has_crcs) {
1362                 amagic += strcspn(amagic, " ");
1363                 bmagic += strcspn(bmagic, " ");
1364         }
1365         return strcmp(amagic, bmagic) == 0;
1366 }
1367 #else
1368 static inline int check_version(const struct load_info *info,
1369                                 const char *symname,
1370                                 struct module *mod,
1371                                 const s32 *crc)
1372 {
1373         return 1;
1374 }
1375
1376 static inline int check_modstruct_version(const struct load_info *info,
1377                                           struct module *mod)
1378 {
1379         return 1;
1380 }
1381
1382 static inline int same_magic(const char *amagic, const char *bmagic,
1383                              bool has_crcs)
1384 {
1385         return strcmp(amagic, bmagic) == 0;
1386 }
1387 #endif /* CONFIG_MODVERSIONS */
1388
1389 /* Resolve a symbol for this module.  I.e. if we find one, record usage. */
1390 static const struct kernel_symbol *resolve_symbol(struct module *mod,
1391                                                   const struct load_info *info,
1392                                                   const char *name,
1393                                                   char ownername[])
1394 {
1395         struct module *owner;
1396         const struct kernel_symbol *sym;
1397         const s32 *crc;
1398         int err;
1399
1400         /*
1401          * The module_mutex should not be a heavily contended lock;
1402          * if we get the occasional sleep here, we'll go an extra iteration
1403          * in the wait_event_interruptible(), which is harmless.
1404          */
1405         sched_annotate_sleep();
1406         mutex_lock(&module_mutex);
1407         sym = find_symbol(name, &owner, &crc,
1408                           !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
1409         if (!sym)
1410                 goto unlock;
1411
1412         if (!check_version(info, name, mod, crc)) {
1413                 sym = ERR_PTR(-EINVAL);
1414                 goto getname;
1415         }
1416
1417         err = ref_module(mod, owner);
1418         if (err) {
1419                 sym = ERR_PTR(err);
1420                 goto getname;
1421         }
1422
1423 getname:
1424         /* We must make copy under the lock if we failed to get ref. */
1425         strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1426 unlock:
1427         mutex_unlock(&module_mutex);
1428         return sym;
1429 }
1430
1431 static const struct kernel_symbol *
1432 resolve_symbol_wait(struct module *mod,
1433                     const struct load_info *info,
1434                     const char *name)
1435 {
1436         const struct kernel_symbol *ksym;
1437         char owner[MODULE_NAME_LEN];
1438
1439         if (wait_event_interruptible_timeout(module_wq,
1440                         !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1441                         || PTR_ERR(ksym) != -EBUSY,
1442                                              30 * HZ) <= 0) {
1443                 pr_warn("%s: gave up waiting for init of module %s.\n",
1444                         mod->name, owner);
1445         }
1446         return ksym;
1447 }
1448
1449 /*
1450  * /sys/module/foo/sections stuff
1451  * J. Corbet <corbet@lwn.net>
1452  */
1453 #ifdef CONFIG_SYSFS
1454
1455 #ifdef CONFIG_KALLSYMS
1456 static inline bool sect_empty(const Elf_Shdr *sect)
1457 {
1458         return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1459 }
1460
1461 struct module_sect_attr {
1462         struct module_attribute mattr;
1463         char *name;
1464         unsigned long address;
1465 };
1466
1467 struct module_sect_attrs {
1468         struct attribute_group grp;
1469         unsigned int nsections;
1470         struct module_sect_attr attrs[0];
1471 };
1472
1473 static ssize_t module_sect_show(struct module_attribute *mattr,
1474                                 struct module_kobject *mk, char *buf)
1475 {
1476         struct module_sect_attr *sattr =
1477                 container_of(mattr, struct module_sect_attr, mattr);
1478         return sprintf(buf, "0x%px\n", kptr_restrict < 2 ?
1479                        (void *)sattr->address : NULL);
1480 }
1481
1482 static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1483 {
1484         unsigned int section;
1485
1486         for (section = 0; section < sect_attrs->nsections; section++)
1487                 kfree(sect_attrs->attrs[section].name);
1488         kfree(sect_attrs);
1489 }
1490
1491 static void add_sect_attrs(struct module *mod, const struct load_info *info)
1492 {
1493         unsigned int nloaded = 0, i, size[2];
1494         struct module_sect_attrs *sect_attrs;
1495         struct module_sect_attr *sattr;
1496         struct attribute **gattr;
1497
1498         /* Count loaded sections and allocate structures */
1499         for (i = 0; i < info->hdr->e_shnum; i++)
1500                 if (!sect_empty(&info->sechdrs[i]))
1501                         nloaded++;
1502         size[0] = ALIGN(sizeof(*sect_attrs)
1503                         + nloaded * sizeof(sect_attrs->attrs[0]),
1504                         sizeof(sect_attrs->grp.attrs[0]));
1505         size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
1506         sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1507         if (sect_attrs == NULL)
1508                 return;
1509
1510         /* Setup section attributes. */
1511         sect_attrs->grp.name = "sections";
1512         sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1513
1514         sect_attrs->nsections = 0;
1515         sattr = &sect_attrs->attrs[0];
1516         gattr = &sect_attrs->grp.attrs[0];
1517         for (i = 0; i < info->hdr->e_shnum; i++) {
1518                 Elf_Shdr *sec = &info->sechdrs[i];
1519                 if (sect_empty(sec))
1520                         continue;
1521                 sattr->address = sec->sh_addr;
1522                 sattr->name = kstrdup(info->secstrings + sec->sh_name,
1523                                         GFP_KERNEL);
1524                 if (sattr->name == NULL)
1525                         goto out;
1526                 sect_attrs->nsections++;
1527                 sysfs_attr_init(&sattr->mattr.attr);
1528                 sattr->mattr.show = module_sect_show;
1529                 sattr->mattr.store = NULL;
1530                 sattr->mattr.attr.name = sattr->name;
1531                 sattr->mattr.attr.mode = S_IRUSR;
1532                 *(gattr++) = &(sattr++)->mattr.attr;
1533         }
1534         *gattr = NULL;
1535
1536         if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1537                 goto out;
1538
1539         mod->sect_attrs = sect_attrs;
1540         return;
1541   out:
1542         free_sect_attrs(sect_attrs);
1543 }
1544
1545 static void remove_sect_attrs(struct module *mod)
1546 {
1547         if (mod->sect_attrs) {
1548                 sysfs_remove_group(&mod->mkobj.kobj,
1549                                    &mod->sect_attrs->grp);
1550                 /* We are positive that no one is using any sect attrs
1551                  * at this point.  Deallocate immediately. */
1552                 free_sect_attrs(mod->sect_attrs);
1553                 mod->sect_attrs = NULL;
1554         }
1555 }
1556
1557 /*
1558  * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1559  */
1560
1561 struct module_notes_attrs {
1562         struct kobject *dir;
1563         unsigned int notes;
1564         struct bin_attribute attrs[0];
1565 };
1566
1567 static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
1568                                  struct bin_attribute *bin_attr,
1569                                  char *buf, loff_t pos, size_t count)
1570 {
1571         /*
1572          * The caller checked the pos and count against our size.
1573          */
1574         memcpy(buf, bin_attr->private + pos, count);
1575         return count;
1576 }
1577
1578 static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1579                              unsigned int i)
1580 {
1581         if (notes_attrs->dir) {
1582                 while (i-- > 0)
1583                         sysfs_remove_bin_file(notes_attrs->dir,
1584                                               &notes_attrs->attrs[i]);
1585                 kobject_put(notes_attrs->dir);
1586         }
1587         kfree(notes_attrs);
1588 }
1589
1590 static void add_notes_attrs(struct module *mod, const struct load_info *info)
1591 {
1592         unsigned int notes, loaded, i;
1593         struct module_notes_attrs *notes_attrs;
1594         struct bin_attribute *nattr;
1595
1596         /* failed to create section attributes, so can't create notes */
1597         if (!mod->sect_attrs)
1598                 return;
1599
1600         /* Count notes sections and allocate structures.  */
1601         notes = 0;
1602         for (i = 0; i < info->hdr->e_shnum; i++)
1603                 if (!sect_empty(&info->sechdrs[i]) &&
1604                     (info->sechdrs[i].sh_type == SHT_NOTE))
1605                         ++notes;
1606
1607         if (notes == 0)
1608                 return;
1609
1610         notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes),
1611                               GFP_KERNEL);
1612         if (notes_attrs == NULL)
1613                 return;
1614
1615         notes_attrs->notes = notes;
1616         nattr = &notes_attrs->attrs[0];
1617         for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1618                 if (sect_empty(&info->sechdrs[i]))
1619                         continue;
1620                 if (info->sechdrs[i].sh_type == SHT_NOTE) {
1621                         sysfs_bin_attr_init(nattr);
1622                         nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1623                         nattr->attr.mode = S_IRUGO;
1624                         nattr->size = info->sechdrs[i].sh_size;
1625                         nattr->private = (void *) info->sechdrs[i].sh_addr;
1626                         nattr->read = module_notes_read;
1627                         ++nattr;
1628                 }
1629                 ++loaded;
1630         }
1631
1632         notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
1633         if (!notes_attrs->dir)
1634                 goto out;
1635
1636         for (i = 0; i < notes; ++i)
1637                 if (sysfs_create_bin_file(notes_attrs->dir,
1638                                           &notes_attrs->attrs[i]))
1639                         goto out;
1640
1641         mod->notes_attrs = notes_attrs;
1642         return;
1643
1644   out:
1645         free_notes_attrs(notes_attrs, i);
1646 }
1647
1648 static void remove_notes_attrs(struct module *mod)
1649 {
1650         if (mod->notes_attrs)
1651                 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1652 }
1653
1654 #else
1655
1656 static inline void add_sect_attrs(struct module *mod,
1657                                   const struct load_info *info)
1658 {
1659 }
1660
1661 static inline void remove_sect_attrs(struct module *mod)
1662 {
1663 }
1664
1665 static inline void add_notes_attrs(struct module *mod,
1666                                    const struct load_info *info)
1667 {
1668 }
1669
1670 static inline void remove_notes_attrs(struct module *mod)
1671 {
1672 }
1673 #endif /* CONFIG_KALLSYMS */
1674
1675 static void del_usage_links(struct module *mod)
1676 {
1677 #ifdef CONFIG_MODULE_UNLOAD
1678         struct module_use *use;
1679
1680         mutex_lock(&module_mutex);
1681         list_for_each_entry(use, &mod->target_list, target_list)
1682                 sysfs_remove_link(use->target->holders_dir, mod->name);
1683         mutex_unlock(&module_mutex);
1684 #endif
1685 }
1686
1687 static int add_usage_links(struct module *mod)
1688 {
1689         int ret = 0;
1690 #ifdef CONFIG_MODULE_UNLOAD
1691         struct module_use *use;
1692
1693         mutex_lock(&module_mutex);
1694         list_for_each_entry(use, &mod->target_list, target_list) {
1695                 ret = sysfs_create_link(use->target->holders_dir,
1696                                         &mod->mkobj.kobj, mod->name);
1697                 if (ret)
1698                         break;
1699         }
1700         mutex_unlock(&module_mutex);
1701         if (ret)
1702                 del_usage_links(mod);
1703 #endif
1704         return ret;
1705 }
1706
1707 static int module_add_modinfo_attrs(struct module *mod)
1708 {
1709         struct module_attribute *attr;
1710         struct module_attribute *temp_attr;
1711         int error = 0;
1712         int i;
1713
1714         mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1715                                         (ARRAY_SIZE(modinfo_attrs) + 1)),
1716                                         GFP_KERNEL);
1717         if (!mod->modinfo_attrs)
1718                 return -ENOMEM;
1719
1720         temp_attr = mod->modinfo_attrs;
1721         for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1722                 if (!attr->test || attr->test(mod)) {
1723                         memcpy(temp_attr, attr, sizeof(*temp_attr));
1724                         sysfs_attr_init(&temp_attr->attr);
1725                         error = sysfs_create_file(&mod->mkobj.kobj,
1726                                         &temp_attr->attr);
1727                         ++temp_attr;
1728                 }
1729         }
1730         return error;
1731 }
1732
1733 static void module_remove_modinfo_attrs(struct module *mod)
1734 {
1735         struct module_attribute *attr;
1736         int i;
1737
1738         for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1739                 /* pick a field to test for end of list */
1740                 if (!attr->attr.name)
1741                         break;
1742                 sysfs_remove_file(&mod->mkobj.kobj, &attr->attr);
1743                 if (attr->free)
1744                         attr->free(mod);
1745         }
1746         kfree(mod->modinfo_attrs);
1747 }
1748
1749 static void mod_kobject_put(struct module *mod)
1750 {
1751         DECLARE_COMPLETION_ONSTACK(c);
1752         mod->mkobj.kobj_completion = &c;
1753         kobject_put(&mod->mkobj.kobj);
1754         wait_for_completion(&c);
1755 }
1756
1757 static int mod_sysfs_init(struct module *mod)
1758 {
1759         int err;
1760         struct kobject *kobj;
1761
1762         if (!module_sysfs_initialized) {
1763                 pr_err("%s: module sysfs not initialized\n", mod->name);
1764                 err = -EINVAL;
1765                 goto out;
1766         }
1767
1768         kobj = kset_find_obj(module_kset, mod->name);
1769         if (kobj) {
1770                 pr_err("%s: module is already loaded\n", mod->name);
1771                 kobject_put(kobj);
1772                 err = -EINVAL;
1773                 goto out;
1774         }
1775
1776         mod->mkobj.mod = mod;
1777
1778         memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1779         mod->mkobj.kobj.kset = module_kset;
1780         err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1781                                    "%s", mod->name);
1782         if (err)
1783                 mod_kobject_put(mod);
1784
1785         /* delay uevent until full sysfs population */
1786 out:
1787         return err;
1788 }
1789
1790 static int mod_sysfs_setup(struct module *mod,
1791                            const struct load_info *info,
1792                            struct kernel_param *kparam,
1793                            unsigned int num_params)
1794 {
1795         int err;
1796
1797         err = mod_sysfs_init(mod);
1798         if (err)
1799                 goto out;
1800
1801         mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
1802         if (!mod->holders_dir) {
1803                 err = -ENOMEM;
1804                 goto out_unreg;
1805         }
1806
1807         err = module_param_sysfs_setup(mod, kparam, num_params);
1808         if (err)
1809                 goto out_unreg_holders;
1810
1811         err = module_add_modinfo_attrs(mod);
1812         if (err)
1813                 goto out_unreg_param;
1814
1815         err = add_usage_links(mod);
1816         if (err)
1817                 goto out_unreg_modinfo_attrs;
1818
1819         add_sect_attrs(mod, info);
1820         add_notes_attrs(mod, info);
1821
1822         kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
1823         return 0;
1824
1825 out_unreg_modinfo_attrs:
1826         module_remove_modinfo_attrs(mod);
1827 out_unreg_param:
1828         module_param_sysfs_remove(mod);
1829 out_unreg_holders:
1830         kobject_put(mod->holders_dir);
1831 out_unreg:
1832         mod_kobject_put(mod);
1833 out:
1834         return err;
1835 }
1836
1837 static void mod_sysfs_fini(struct module *mod)
1838 {
1839         remove_notes_attrs(mod);
1840         remove_sect_attrs(mod);
1841         mod_kobject_put(mod);
1842 }
1843
1844 static void init_param_lock(struct module *mod)
1845 {
1846         mutex_init(&mod->param_lock);
1847 }
1848 #else /* !CONFIG_SYSFS */
1849
1850 static int mod_sysfs_setup(struct module *mod,
1851                            const struct load_info *info,
1852                            struct kernel_param *kparam,
1853                            unsigned int num_params)
1854 {
1855         return 0;
1856 }
1857
1858 static void mod_sysfs_fini(struct module *mod)
1859 {
1860 }
1861
1862 static void module_remove_modinfo_attrs(struct module *mod)
1863 {
1864 }
1865
1866 static void del_usage_links(struct module *mod)
1867 {
1868 }
1869
1870 static void init_param_lock(struct module *mod)
1871 {
1872 }
1873 #endif /* CONFIG_SYSFS */
1874
1875 static void mod_sysfs_teardown(struct module *mod)
1876 {
1877         del_usage_links(mod);
1878         module_remove_modinfo_attrs(mod);
1879         module_param_sysfs_remove(mod);
1880         kobject_put(mod->mkobj.drivers_dir);
1881         kobject_put(mod->holders_dir);
1882         mod_sysfs_fini(mod);
1883 }
1884
1885 #ifdef CONFIG_STRICT_MODULE_RWX
1886 /*
1887  * LKM RO/NX protection: protect module's text/ro-data
1888  * from modification and any data from execution.
1889  *
1890  * General layout of module is:
1891  *          [text] [read-only-data] [ro-after-init] [writable data]
1892  * text_size -----^                ^               ^               ^
1893  * ro_size ------------------------|               |               |
1894  * ro_after_init_size -----------------------------|               |
1895  * size -----------------------------------------------------------|
1896  *
1897  * These values are always page-aligned (as is base)
1898  */
1899 static void frob_text(const struct module_layout *layout,
1900                       int (*set_memory)(unsigned long start, int num_pages))
1901 {
1902         BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1903         BUG_ON((unsigned long)layout->text_size & (PAGE_SIZE-1));
1904         set_memory((unsigned long)layout->base,
1905                    layout->text_size >> PAGE_SHIFT);
1906 }
1907
1908 static void frob_rodata(const struct module_layout *layout,
1909                         int (*set_memory)(unsigned long start, int num_pages))
1910 {
1911         BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1912         BUG_ON((unsigned long)layout->text_size & (PAGE_SIZE-1));
1913         BUG_ON((unsigned long)layout->ro_size & (PAGE_SIZE-1));
1914         set_memory((unsigned long)layout->base + layout->text_size,
1915                    (layout->ro_size - layout->text_size) >> PAGE_SHIFT);
1916 }
1917
1918 static void frob_ro_after_init(const struct module_layout *layout,
1919                                 int (*set_memory)(unsigned long start, int num_pages))
1920 {
1921         BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1922         BUG_ON((unsigned long)layout->ro_size & (PAGE_SIZE-1));
1923         BUG_ON((unsigned long)layout->ro_after_init_size & (PAGE_SIZE-1));
1924         set_memory((unsigned long)layout->base + layout->ro_size,
1925                    (layout->ro_after_init_size - layout->ro_size) >> PAGE_SHIFT);
1926 }
1927
1928 static void frob_writable_data(const struct module_layout *layout,
1929                                int (*set_memory)(unsigned long start, int num_pages))
1930 {
1931         BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1932         BUG_ON((unsigned long)layout->ro_after_init_size & (PAGE_SIZE-1));
1933         BUG_ON((unsigned long)layout->size & (PAGE_SIZE-1));
1934         set_memory((unsigned long)layout->base + layout->ro_after_init_size,
1935                    (layout->size - layout->ro_after_init_size) >> PAGE_SHIFT);
1936 }
1937
1938 /* livepatching wants to disable read-only so it can frob module. */
1939 void module_disable_ro(const struct module *mod)
1940 {
1941         if (!rodata_enabled)
1942                 return;
1943
1944         frob_text(&mod->core_layout, set_memory_rw);
1945         frob_rodata(&mod->core_layout, set_memory_rw);
1946         frob_ro_after_init(&mod->core_layout, set_memory_rw);
1947         frob_text(&mod->init_layout, set_memory_rw);
1948         frob_rodata(&mod->init_layout, set_memory_rw);
1949 }
1950
1951 void module_enable_ro(const struct module *mod, bool after_init)
1952 {
1953         if (!rodata_enabled)
1954                 return;
1955
1956         set_vm_flush_reset_perms(mod->core_layout.base);
1957         set_vm_flush_reset_perms(mod->init_layout.base);
1958         frob_text(&mod->core_layout, set_memory_ro);
1959         frob_text(&mod->core_layout, set_memory_x);
1960
1961         frob_rodata(&mod->core_layout, set_memory_ro);
1962
1963         frob_text(&mod->init_layout, set_memory_ro);
1964         frob_text(&mod->init_layout, set_memory_x);
1965
1966         frob_rodata(&mod->init_layout, set_memory_ro);
1967
1968         if (after_init)
1969                 frob_ro_after_init(&mod->core_layout, set_memory_ro);
1970 }
1971
1972 static void module_enable_nx(const struct module *mod)
1973 {
1974         frob_rodata(&mod->core_layout, set_memory_nx);
1975         frob_ro_after_init(&mod->core_layout, set_memory_nx);
1976         frob_writable_data(&mod->core_layout, set_memory_nx);
1977         frob_rodata(&mod->init_layout, set_memory_nx);
1978         frob_writable_data(&mod->init_layout, set_memory_nx);
1979 }
1980
1981 /* Iterate through all modules and set each module's text as RW */
1982 void set_all_modules_text_rw(void)
1983 {
1984         struct module *mod;
1985
1986         if (!rodata_enabled)
1987                 return;
1988
1989         mutex_lock(&module_mutex);
1990         list_for_each_entry_rcu(mod, &modules, list) {
1991                 if (mod->state == MODULE_STATE_UNFORMED)
1992                         continue;
1993
1994                 frob_text(&mod->core_layout, set_memory_rw);
1995                 frob_text(&mod->init_layout, set_memory_rw);
1996         }
1997         mutex_unlock(&module_mutex);
1998 }
1999
2000 /* Iterate through all modules and set each module's text as RO */
2001 void set_all_modules_text_ro(void)
2002 {
2003         struct module *mod;
2004
2005         if (!rodata_enabled)
2006                 return;
2007
2008         mutex_lock(&module_mutex);
2009         list_for_each_entry_rcu(mod, &modules, list) {
2010                 /*
2011                  * Ignore going modules since it's possible that ro
2012                  * protection has already been disabled, otherwise we'll
2013                  * run into protection faults at module deallocation.
2014                  */
2015                 if (mod->state == MODULE_STATE_UNFORMED ||
2016                         mod->state == MODULE_STATE_GOING)
2017                         continue;
2018
2019                 frob_text(&mod->core_layout, set_memory_ro);
2020                 frob_text(&mod->init_layout, set_memory_ro);
2021         }
2022         mutex_unlock(&module_mutex);
2023 }
2024 #else
2025 static void module_enable_nx(const struct module *mod) { }
2026 #endif
2027
2028 #ifdef CONFIG_LIVEPATCH
2029 /*
2030  * Persist Elf information about a module. Copy the Elf header,
2031  * section header table, section string table, and symtab section
2032  * index from info to mod->klp_info.
2033  */
2034 static int copy_module_elf(struct module *mod, struct load_info *info)
2035 {
2036         unsigned int size, symndx;
2037         int ret;
2038
2039         size = sizeof(*mod->klp_info);
2040         mod->klp_info = kmalloc(size, GFP_KERNEL);
2041         if (mod->klp_info == NULL)
2042                 return -ENOMEM;
2043
2044         /* Elf header */
2045         size = sizeof(mod->klp_info->hdr);
2046         memcpy(&mod->klp_info->hdr, info->hdr, size);
2047
2048         /* Elf section header table */
2049         size = sizeof(*info->sechdrs) * info->hdr->e_shnum;
2050         mod->klp_info->sechdrs = kmemdup(info->sechdrs, size, GFP_KERNEL);
2051         if (mod->klp_info->sechdrs == NULL) {
2052                 ret = -ENOMEM;
2053                 goto free_info;
2054         }
2055
2056         /* Elf section name string table */
2057         size = info->sechdrs[info->hdr->e_shstrndx].sh_size;
2058         mod->klp_info->secstrings = kmemdup(info->secstrings, size, GFP_KERNEL);
2059         if (mod->klp_info->secstrings == NULL) {
2060                 ret = -ENOMEM;
2061                 goto free_sechdrs;
2062         }
2063
2064         /* Elf symbol section index */
2065         symndx = info->index.sym;
2066         mod->klp_info->symndx = symndx;
2067
2068         /*
2069          * For livepatch modules, core_kallsyms.symtab is a complete
2070          * copy of the original symbol table. Adjust sh_addr to point
2071          * to core_kallsyms.symtab since the copy of the symtab in module
2072          * init memory is freed at the end of do_init_module().
2073          */
2074         mod->klp_info->sechdrs[symndx].sh_addr = \
2075                 (unsigned long) mod->core_kallsyms.symtab;
2076
2077         return 0;
2078
2079 free_sechdrs:
2080         kfree(mod->klp_info->sechdrs);
2081 free_info:
2082         kfree(mod->klp_info);
2083         return ret;
2084 }
2085
2086 static void free_module_elf(struct module *mod)
2087 {
2088         kfree(mod->klp_info->sechdrs);
2089         kfree(mod->klp_info->secstrings);
2090         kfree(mod->klp_info);
2091 }
2092 #else /* !CONFIG_LIVEPATCH */
2093 static int copy_module_elf(struct module *mod, struct load_info *info)
2094 {
2095         return 0;
2096 }
2097
2098 static void free_module_elf(struct module *mod)
2099 {
2100 }
2101 #endif /* CONFIG_LIVEPATCH */
2102
2103 void __weak module_memfree(void *module_region)
2104 {
2105         /*
2106          * This memory may be RO, and freeing RO memory in an interrupt is not
2107          * supported by vmalloc.
2108          */
2109         WARN_ON(in_interrupt());
2110         vfree(module_region);
2111 }
2112
2113 void __weak module_arch_cleanup(struct module *mod)
2114 {
2115 }
2116
2117 void __weak module_arch_freeing_init(struct module *mod)
2118 {
2119 }
2120
2121 /* Free a module, remove from lists, etc. */
2122 static void free_module(struct module *mod)
2123 {
2124         trace_module_free(mod);
2125
2126         mod_sysfs_teardown(mod);
2127
2128         /* We leave it in list to prevent duplicate loads, but make sure
2129          * that noone uses it while it's being deconstructed. */
2130         mutex_lock(&module_mutex);
2131         mod->state = MODULE_STATE_UNFORMED;
2132         mutex_unlock(&module_mutex);
2133
2134         /* Remove dynamic debug info */
2135         ddebug_remove_module(mod->name);
2136
2137         /* Arch-specific cleanup. */
2138         module_arch_cleanup(mod);
2139
2140         /* Module unload stuff */
2141         module_unload_free(mod);
2142
2143         /* Free any allocated parameters. */
2144         destroy_params(mod->kp, mod->num_kp);
2145
2146         if (is_livepatch_module(mod))
2147                 free_module_elf(mod);
2148
2149         /* Now we can delete it from the lists */
2150         mutex_lock(&module_mutex);
2151         /* Unlink carefully: kallsyms could be walking list. */
2152         list_del_rcu(&mod->list);
2153         mod_tree_remove(mod);
2154         /* Remove this module from bug list, this uses list_del_rcu */
2155         module_bug_cleanup(mod);
2156         /* Wait for RCU-sched synchronizing before releasing mod->list and buglist. */
2157         synchronize_rcu();
2158         mutex_unlock(&module_mutex);
2159
2160         /* This may be empty, but that's OK */
2161         module_arch_freeing_init(mod);
2162         module_memfree(mod->init_layout.base);
2163         kfree(mod->args);
2164         percpu_modfree(mod);
2165
2166         /* Free lock-classes; relies on the preceding sync_rcu(). */
2167         lockdep_free_key_range(mod->core_layout.base, mod->core_layout.size);
2168
2169         /* Finally, free the core (containing the module structure) */
2170         module_memfree(mod->core_layout.base);
2171 }
2172
2173 void *__symbol_get(const char *symbol)
2174 {
2175         struct module *owner;
2176         const struct kernel_symbol *sym;
2177
2178         preempt_disable();
2179         sym = find_symbol(symbol, &owner, NULL, true, true);
2180         if (sym && strong_try_module_get(owner))
2181                 sym = NULL;
2182         preempt_enable();
2183
2184         return sym ? (void *)kernel_symbol_value(sym) : NULL;
2185 }
2186 EXPORT_SYMBOL_GPL(__symbol_get);
2187
2188 /*
2189  * Ensure that an exported symbol [global namespace] does not already exist
2190  * in the kernel or in some other module's exported symbol table.
2191  *
2192  * You must hold the module_mutex.
2193  */
2194 static int verify_exported_symbols(struct module *mod)
2195 {
2196         unsigned int i;
2197         struct module *owner;
2198         const struct kernel_symbol *s;
2199         struct {
2200                 const struct kernel_symbol *sym;
2201                 unsigned int num;
2202         } arr[] = {
2203                 { mod->syms, mod->num_syms },
2204                 { mod->gpl_syms, mod->num_gpl_syms },
2205                 { mod->gpl_future_syms, mod->num_gpl_future_syms },
2206 #ifdef CONFIG_UNUSED_SYMBOLS
2207                 { mod->unused_syms, mod->num_unused_syms },
2208                 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
2209 #endif
2210         };
2211
2212         for (i = 0; i < ARRAY_SIZE(arr); i++) {
2213                 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
2214                         if (find_symbol(kernel_symbol_name(s), &owner, NULL,
2215                                         true, false)) {
2216                                 pr_err("%s: exports duplicate symbol %s"
2217                                        " (owned by %s)\n",
2218                                        mod->name, kernel_symbol_name(s),
2219                                        module_name(owner));
2220                                 return -ENOEXEC;
2221                         }
2222                 }
2223         }
2224         return 0;
2225 }
2226
2227 /* Change all symbols so that st_value encodes the pointer directly. */
2228 static int simplify_symbols(struct module *mod, const struct load_info *info)
2229 {
2230         Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
2231         Elf_Sym *sym = (void *)symsec->sh_addr;
2232         unsigned long secbase;
2233         unsigned int i;
2234         int ret = 0;
2235         const struct kernel_symbol *ksym;
2236
2237         for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
2238                 const char *name = info->strtab + sym[i].st_name;
2239
2240                 switch (sym[i].st_shndx) {
2241                 case SHN_COMMON:
2242                         /* Ignore common symbols */
2243                         if (!strncmp(name, "__gnu_lto", 9))
2244                                 break;
2245
2246                         /* We compiled with -fno-common.  These are not
2247                            supposed to happen.  */
2248                         pr_debug("Common symbol: %s\n", name);
2249                         pr_warn("%s: please compile with -fno-common\n",
2250                                mod->name);
2251                         ret = -ENOEXEC;
2252                         break;
2253
2254                 case SHN_ABS:
2255                         /* Don't need to do anything */
2256                         pr_debug("Absolute symbol: 0x%08lx\n",
2257                                (long)sym[i].st_value);
2258                         break;
2259
2260                 case SHN_LIVEPATCH:
2261                         /* Livepatch symbols are resolved by livepatch */
2262                         break;
2263
2264                 case SHN_UNDEF:
2265                         ksym = resolve_symbol_wait(mod, info, name);
2266                         /* Ok if resolved.  */
2267                         if (ksym && !IS_ERR(ksym)) {
2268                                 sym[i].st_value = kernel_symbol_value(ksym);
2269                                 break;
2270                         }
2271
2272                         /* Ok if weak.  */
2273                         if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
2274                                 break;
2275
2276                         ret = PTR_ERR(ksym) ?: -ENOENT;
2277                         pr_warn("%s: Unknown symbol %s (err %d)\n",
2278                                 mod->name, name, ret);
2279                         break;
2280
2281                 default:
2282                         /* Divert to percpu allocation if a percpu var. */
2283                         if (sym[i].st_shndx == info->index.pcpu)
2284                                 secbase = (unsigned long)mod_percpu(mod);
2285                         else
2286                                 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
2287                         sym[i].st_value += secbase;
2288                         break;
2289                 }
2290         }
2291
2292         return ret;
2293 }
2294
2295 static int apply_relocations(struct module *mod, const struct load_info *info)
2296 {
2297         unsigned int i;
2298         int err = 0;
2299
2300         /* Now do relocations. */
2301         for (i = 1; i < info->hdr->e_shnum; i++) {
2302                 unsigned int infosec = info->sechdrs[i].sh_info;
2303
2304                 /* Not a valid relocation section? */
2305                 if (infosec >= info->hdr->e_shnum)
2306                         continue;
2307
2308                 /* Don't bother with non-allocated sections */
2309                 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
2310                         continue;
2311
2312                 /* Livepatch relocation sections are applied by livepatch */
2313                 if (info->sechdrs[i].sh_flags & SHF_RELA_LIVEPATCH)
2314                         continue;
2315
2316                 if (info->sechdrs[i].sh_type == SHT_REL)
2317                         err = apply_relocate(info->sechdrs, info->strtab,
2318                                              info->index.sym, i, mod);
2319                 else if (info->sechdrs[i].sh_type == SHT_RELA)
2320                         err = apply_relocate_add(info->sechdrs, info->strtab,
2321                                                  info->index.sym, i, mod);
2322                 if (err < 0)
2323                         break;
2324         }
2325         return err;
2326 }
2327
2328 /* Additional bytes needed by arch in front of individual sections */
2329 unsigned int __weak arch_mod_section_prepend(struct module *mod,
2330                                              unsigned int section)
2331 {
2332         /* default implementation just returns zero */
2333         return 0;
2334 }
2335
2336 /* Update size with this section: return offset. */
2337 static long get_offset(struct module *mod, unsigned int *size,
2338                        Elf_Shdr *sechdr, unsigned int section)
2339 {
2340         long ret;
2341
2342         *size += arch_mod_section_prepend(mod, section);
2343         ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2344         *size = ret + sechdr->sh_size;
2345         return ret;
2346 }
2347
2348 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2349    might -- code, read-only data, read-write data, small data.  Tally
2350    sizes, and place the offsets into sh_entsize fields: high bit means it
2351    belongs in init. */
2352 static void layout_sections(struct module *mod, struct load_info *info)
2353 {
2354         static unsigned long const masks[][2] = {
2355                 /* NOTE: all executable code must be the first section
2356                  * in this array; otherwise modify the text_size
2357                  * finder in the two loops below */
2358                 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2359                 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
2360                 { SHF_RO_AFTER_INIT | SHF_ALLOC, ARCH_SHF_SMALL },
2361                 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2362                 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2363         };
2364         unsigned int m, i;
2365
2366         for (i = 0; i < info->hdr->e_shnum; i++)
2367                 info->sechdrs[i].sh_entsize = ~0UL;
2368
2369         pr_debug("Core section allocation order:\n");
2370         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
2371                 for (i = 0; i < info->hdr->e_shnum; ++i) {
2372                         Elf_Shdr *s = &info->sechdrs[i];
2373                         const char *sname = info->secstrings + s->sh_name;
2374
2375                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
2376                             || (s->sh_flags & masks[m][1])
2377                             || s->sh_entsize != ~0UL
2378                             || strstarts(sname, ".init"))
2379                                 continue;
2380                         s->sh_entsize = get_offset(mod, &mod->core_layout.size, s, i);
2381                         pr_debug("\t%s\n", sname);
2382                 }
2383                 switch (m) {
2384                 case 0: /* executable */
2385                         mod->core_layout.size = debug_align(mod->core_layout.size);
2386                         mod->core_layout.text_size = mod->core_layout.size;
2387                         break;
2388                 case 1: /* RO: text and ro-data */
2389                         mod->core_layout.size = debug_align(mod->core_layout.size);
2390                         mod->core_layout.ro_size = mod->core_layout.size;
2391                         break;
2392                 case 2: /* RO after init */
2393                         mod->core_layout.size = debug_align(mod->core_layout.size);
2394                         mod->core_layout.ro_after_init_size = mod->core_layout.size;
2395                         break;
2396                 case 4: /* whole core */
2397                         mod->core_layout.size = debug_align(mod->core_layout.size);
2398                         break;
2399                 }
2400         }
2401
2402         pr_debug("Init section allocation order:\n");
2403         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
2404                 for (i = 0; i < info->hdr->e_shnum; ++i) {
2405                         Elf_Shdr *s = &info->sechdrs[i];
2406                         const char *sname = info->secstrings + s->sh_name;
2407
2408                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
2409                             || (s->sh_flags & masks[m][1])
2410                             || s->sh_entsize != ~0UL
2411                             || !strstarts(sname, ".init"))
2412                                 continue;
2413                         s->sh_entsize = (get_offset(mod, &mod->init_layout.size, s, i)
2414                                          | INIT_OFFSET_MASK);
2415                         pr_debug("\t%s\n", sname);
2416                 }
2417                 switch (m) {
2418                 case 0: /* executable */
2419                         mod->init_layout.size = debug_align(mod->init_layout.size);
2420                         mod->init_layout.text_size = mod->init_layout.size;
2421                         break;
2422                 case 1: /* RO: text and ro-data */
2423                         mod->init_layout.size = debug_align(mod->init_layout.size);
2424                         mod->init_layout.ro_size = mod->init_layout.size;
2425                         break;
2426                 case 2:
2427                         /*
2428                          * RO after init doesn't apply to init_layout (only
2429                          * core_layout), so it just takes the value of ro_size.
2430                          */
2431                         mod->init_layout.ro_after_init_size = mod->init_layout.ro_size;
2432                         break;
2433                 case 4: /* whole init */
2434                         mod->init_layout.size = debug_align(mod->init_layout.size);
2435                         break;
2436                 }
2437         }
2438 }
2439
2440 static void set_license(struct module *mod, const char *license)
2441 {
2442         if (!license)
2443                 license = "unspecified";
2444
2445         if (!license_is_gpl_compatible(license)) {
2446                 if (!test_taint(TAINT_PROPRIETARY_MODULE))
2447                         pr_warn("%s: module license '%s' taints kernel.\n",
2448                                 mod->name, license);
2449                 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2450                                  LOCKDEP_NOW_UNRELIABLE);
2451         }
2452 }
2453
2454 /* Parse tag=value strings from .modinfo section */
2455 static char *next_string(char *string, unsigned long *secsize)
2456 {
2457         /* Skip non-zero chars */
2458         while (string[0]) {
2459                 string++;
2460                 if ((*secsize)-- <= 1)
2461                         return NULL;
2462         }
2463
2464         /* Skip any zero padding. */
2465         while (!string[0]) {
2466                 string++;
2467                 if ((*secsize)-- <= 1)
2468                         return NULL;
2469         }
2470         return string;
2471 }
2472
2473 static char *get_modinfo(struct load_info *info, const char *tag)
2474 {
2475         char *p;
2476         unsigned int taglen = strlen(tag);
2477         Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2478         unsigned long size = infosec->sh_size;
2479
2480         /*
2481          * get_modinfo() calls made before rewrite_section_headers()
2482          * must use sh_offset, as sh_addr isn't set!
2483          */
2484         for (p = (char *)info->hdr + infosec->sh_offset; p; p = next_string(p, &size)) {
2485                 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2486                         return p + taglen + 1;
2487         }
2488         return NULL;
2489 }
2490
2491 static void setup_modinfo(struct module *mod, struct load_info *info)
2492 {
2493         struct module_attribute *attr;
2494         int i;
2495
2496         for (i = 0; (attr = modinfo_attrs[i]); i++) {
2497                 if (attr->setup)
2498                         attr->setup(mod, get_modinfo(info, attr->attr.name));
2499         }
2500 }
2501
2502 static void free_modinfo(struct module *mod)
2503 {
2504         struct module_attribute *attr;
2505         int i;
2506
2507         for (i = 0; (attr = modinfo_attrs[i]); i++) {
2508                 if (attr->free)
2509                         attr->free(mod);
2510         }
2511 }
2512
2513 #ifdef CONFIG_KALLSYMS
2514
2515 /* Lookup exported symbol in given range of kernel_symbols */
2516 static const struct kernel_symbol *lookup_exported_symbol(const char *name,
2517                                                           const struct kernel_symbol *start,
2518                                                           const struct kernel_symbol *stop)
2519 {
2520         return bsearch(name, start, stop - start,
2521                         sizeof(struct kernel_symbol), cmp_name);
2522 }
2523
2524 static int is_exported(const char *name, unsigned long value,
2525                        const struct module *mod)
2526 {
2527         const struct kernel_symbol *ks;
2528         if (!mod)
2529                 ks = lookup_exported_symbol(name, __start___ksymtab, __stop___ksymtab);
2530         else
2531                 ks = lookup_exported_symbol(name, mod->syms, mod->syms + mod->num_syms);
2532
2533         return ks != NULL && kernel_symbol_value(ks) == value;
2534 }
2535
2536 /* As per nm */
2537 static char elf_type(const Elf_Sym *sym, const struct load_info *info)
2538 {
2539         const Elf_Shdr *sechdrs = info->sechdrs;
2540
2541         if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2542                 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2543                         return 'v';
2544                 else
2545                         return 'w';
2546         }
2547         if (sym->st_shndx == SHN_UNDEF)
2548                 return 'U';
2549         if (sym->st_shndx == SHN_ABS || sym->st_shndx == info->index.pcpu)
2550                 return 'a';
2551         if (sym->st_shndx >= SHN_LORESERVE)
2552                 return '?';
2553         if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2554                 return 't';
2555         if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2556             && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2557                 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2558                         return 'r';
2559                 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2560                         return 'g';
2561                 else
2562                         return 'd';
2563         }
2564         if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2565                 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2566                         return 's';
2567                 else
2568                         return 'b';
2569         }
2570         if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2571                       ".debug")) {
2572                 return 'n';
2573         }
2574         return '?';
2575 }
2576
2577 static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
2578                         unsigned int shnum, unsigned int pcpundx)
2579 {
2580         const Elf_Shdr *sec;
2581
2582         if (src->st_shndx == SHN_UNDEF
2583             || src->st_shndx >= shnum
2584             || !src->st_name)
2585                 return false;
2586
2587 #ifdef CONFIG_KALLSYMS_ALL
2588         if (src->st_shndx == pcpundx)
2589                 return true;
2590 #endif
2591
2592         sec = sechdrs + src->st_shndx;
2593         if (!(sec->sh_flags & SHF_ALLOC)
2594 #ifndef CONFIG_KALLSYMS_ALL
2595             || !(sec->sh_flags & SHF_EXECINSTR)
2596 #endif
2597             || (sec->sh_entsize & INIT_OFFSET_MASK))
2598                 return false;
2599
2600         return true;
2601 }
2602
2603 /*
2604  * We only allocate and copy the strings needed by the parts of symtab
2605  * we keep.  This is simple, but has the effect of making multiple
2606  * copies of duplicates.  We could be more sophisticated, see
2607  * linux-kernel thread starting with
2608  * <73defb5e4bca04a6431392cc341112b1@localhost>.
2609  */
2610 static void layout_symtab(struct module *mod, struct load_info *info)
2611 {
2612         Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2613         Elf_Shdr *strsect = info->sechdrs + info->index.str;
2614         const Elf_Sym *src;
2615         unsigned int i, nsrc, ndst, strtab_size = 0;
2616
2617         /* Put symbol section at end of init part of module. */
2618         symsect->sh_flags |= SHF_ALLOC;
2619         symsect->sh_entsize = get_offset(mod, &mod->init_layout.size, symsect,
2620                                          info->index.sym) | INIT_OFFSET_MASK;
2621         pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
2622
2623         src = (void *)info->hdr + symsect->sh_offset;
2624         nsrc = symsect->sh_size / sizeof(*src);
2625
2626         /* Compute total space required for the core symbols' strtab. */
2627         for (ndst = i = 0; i < nsrc; i++) {
2628                 if (i == 0 || is_livepatch_module(mod) ||
2629                     is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum,
2630                                    info->index.pcpu)) {
2631                         strtab_size += strlen(&info->strtab[src[i].st_name])+1;
2632                         ndst++;
2633                 }
2634         }
2635
2636         /* Append room for core symbols at end of core part. */
2637         info->symoffs = ALIGN(mod->core_layout.size, symsect->sh_addralign ?: 1);
2638         info->stroffs = mod->core_layout.size = info->symoffs + ndst * sizeof(Elf_Sym);
2639         mod->core_layout.size += strtab_size;
2640         mod->core_layout.size = debug_align(mod->core_layout.size);
2641
2642         /* Put string table section at end of init part of module. */
2643         strsect->sh_flags |= SHF_ALLOC;
2644         strsect->sh_entsize = get_offset(mod, &mod->init_layout.size, strsect,
2645                                          info->index.str) | INIT_OFFSET_MASK;
2646         pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
2647
2648         /* We'll tack temporary mod_kallsyms on the end. */
2649         mod->init_layout.size = ALIGN(mod->init_layout.size,
2650                                       __alignof__(struct mod_kallsyms));
2651         info->mod_kallsyms_init_off = mod->init_layout.size;
2652         mod->init_layout.size += sizeof(struct mod_kallsyms);
2653         mod->init_layout.size = debug_align(mod->init_layout.size);
2654 }
2655
2656 /*
2657  * We use the full symtab and strtab which layout_symtab arranged to
2658  * be appended to the init section.  Later we switch to the cut-down
2659  * core-only ones.
2660  */
2661 static void add_kallsyms(struct module *mod, const struct load_info *info)
2662 {
2663         unsigned int i, ndst;
2664         const Elf_Sym *src;
2665         Elf_Sym *dst;
2666         char *s;
2667         Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
2668
2669         /* Set up to point into init section. */
2670         mod->kallsyms = mod->init_layout.base + info->mod_kallsyms_init_off;
2671
2672         mod->kallsyms->symtab = (void *)symsec->sh_addr;
2673         mod->kallsyms->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
2674         /* Make sure we get permanent strtab: don't use info->strtab. */
2675         mod->kallsyms->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
2676
2677         /* Set types up while we still have access to sections. */
2678         for (i = 0; i < mod->kallsyms->num_symtab; i++)
2679                 mod->kallsyms->symtab[i].st_size
2680                         = elf_type(&mod->kallsyms->symtab[i], info);
2681
2682         /* Now populate the cut down core kallsyms for after init. */
2683         mod->core_kallsyms.symtab = dst = mod->core_layout.base + info->symoffs;
2684         mod->core_kallsyms.strtab = s = mod->core_layout.base + info->stroffs;
2685         src = mod->kallsyms->symtab;
2686         for (ndst = i = 0; i < mod->kallsyms->num_symtab; i++) {
2687                 if (i == 0 || is_livepatch_module(mod) ||
2688                     is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum,
2689                                    info->index.pcpu)) {
2690                         dst[ndst] = src[i];
2691                         dst[ndst++].st_name = s - mod->core_kallsyms.strtab;
2692                         s += strlcpy(s, &mod->kallsyms->strtab[src[i].st_name],
2693                                      KSYM_NAME_LEN) + 1;
2694                 }
2695         }
2696         mod->core_kallsyms.num_symtab = ndst;
2697 }
2698 #else
2699 static inline void layout_symtab(struct module *mod, struct load_info *info)
2700 {
2701 }
2702
2703 static void add_kallsyms(struct module *mod, const struct load_info *info)
2704 {
2705 }
2706 #endif /* CONFIG_KALLSYMS */
2707
2708 static void dynamic_debug_setup(struct module *mod, struct _ddebug *debug, unsigned int num)
2709 {
2710         if (!debug)
2711                 return;
2712         ddebug_add_module(debug, num, mod->name);
2713 }
2714
2715 static void dynamic_debug_remove(struct module *mod, struct _ddebug *debug)
2716 {
2717         if (debug)
2718                 ddebug_remove_module(mod->name);
2719 }
2720
2721 void * __weak module_alloc(unsigned long size)
2722 {
2723         return vmalloc_exec(size);
2724 }
2725
2726 #ifdef CONFIG_DEBUG_KMEMLEAK
2727 static void kmemleak_load_module(const struct module *mod,
2728                                  const struct load_info *info)
2729 {
2730         unsigned int i;
2731
2732         /* only scan the sections containing data */
2733         kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
2734
2735         for (i = 1; i < info->hdr->e_shnum; i++) {
2736                 /* Scan all writable sections that's not executable */
2737                 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
2738                     !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
2739                     (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
2740                         continue;
2741
2742                 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2743                                    info->sechdrs[i].sh_size, GFP_KERNEL);
2744         }
2745 }
2746 #else
2747 static inline void kmemleak_load_module(const struct module *mod,
2748                                         const struct load_info *info)
2749 {
2750 }
2751 #endif
2752
2753 #ifdef CONFIG_MODULE_SIG
2754 static int module_sig_check(struct load_info *info, int flags)
2755 {
2756         int err = -ENOKEY;
2757         const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
2758         const void *mod = info->hdr;
2759
2760         /*
2761          * Require flags == 0, as a module with version information
2762          * removed is no longer the module that was signed
2763          */
2764         if (flags == 0 &&
2765             info->len > markerlen &&
2766             memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
2767                 /* We truncate the module to discard the signature */
2768                 info->len -= markerlen;
2769                 err = mod_verify_sig(mod, info);
2770         }
2771
2772         if (!err) {
2773                 info->sig_ok = true;
2774                 return 0;
2775         }
2776
2777         /* Not having a signature is only an error if we're strict. */
2778         if (err == -ENOKEY && !is_module_sig_enforced())
2779                 err = 0;
2780
2781         return err;
2782 }
2783 #else /* !CONFIG_MODULE_SIG */
2784 static int module_sig_check(struct load_info *info, int flags)
2785 {
2786         return 0;
2787 }
2788 #endif /* !CONFIG_MODULE_SIG */
2789
2790 /* Sanity checks against invalid binaries, wrong arch, weird elf version. */
2791 static int elf_header_check(struct load_info *info)
2792 {
2793         if (info->len < sizeof(*(info->hdr)))
2794                 return -ENOEXEC;
2795
2796         if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2797             || info->hdr->e_type != ET_REL
2798             || !elf_check_arch(info->hdr)
2799             || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2800                 return -ENOEXEC;
2801
2802         if (info->hdr->e_shoff >= info->len
2803             || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2804                 info->len - info->hdr->e_shoff))
2805                 return -ENOEXEC;
2806
2807         return 0;
2808 }
2809
2810 #define COPY_CHUNK_SIZE (16*PAGE_SIZE)
2811
2812 static int copy_chunked_from_user(void *dst, const void __user *usrc, unsigned long len)
2813 {
2814         do {
2815                 unsigned long n = min(len, COPY_CHUNK_SIZE);
2816
2817                 if (copy_from_user(dst, usrc, n) != 0)
2818                         return -EFAULT;
2819                 cond_resched();
2820                 dst += n;
2821                 usrc += n;
2822                 len -= n;
2823         } while (len);
2824         return 0;
2825 }
2826
2827 #ifdef CONFIG_LIVEPATCH
2828 static int check_modinfo_livepatch(struct module *mod, struct load_info *info)
2829 {
2830         if (get_modinfo(info, "livepatch")) {
2831                 mod->klp = true;
2832                 add_taint_module(mod, TAINT_LIVEPATCH, LOCKDEP_STILL_OK);
2833                 pr_notice_once("%s: tainting kernel with TAINT_LIVEPATCH\n",
2834                                mod->name);
2835         }
2836
2837         return 0;
2838 }
2839 #else /* !CONFIG_LIVEPATCH */
2840 static int check_modinfo_livepatch(struct module *mod, struct load_info *info)
2841 {
2842         if (get_modinfo(info, "livepatch")) {
2843                 pr_err("%s: module is marked as livepatch module, but livepatch support is disabled",
2844                        mod->name);
2845                 return -ENOEXEC;
2846         }
2847
2848         return 0;
2849 }
2850 #endif /* CONFIG_LIVEPATCH */
2851
2852 static void check_modinfo_retpoline(struct module *mod, struct load_info *info)
2853 {
2854         if (retpoline_module_ok(get_modinfo(info, "retpoline")))
2855                 return;
2856
2857         pr_warn("%s: loading module not compiled with retpoline compiler.\n",
2858                 mod->name);
2859 }
2860
2861 /* Sets info->hdr and info->len. */
2862 static int copy_module_from_user(const void __user *umod, unsigned long len,
2863                                   struct load_info *info)
2864 {
2865         int err;
2866
2867         info->len = len;
2868         if (info->len < sizeof(*(info->hdr)))
2869                 return -ENOEXEC;
2870
2871         err = security_kernel_load_data(LOADING_MODULE);
2872         if (err)
2873                 return err;
2874
2875         /* Suck in entire file: we'll want most of it. */
2876         info->hdr = __vmalloc(info->len,
2877                         GFP_KERNEL | __GFP_NOWARN, PAGE_KERNEL);
2878         if (!info->hdr)
2879                 return -ENOMEM;
2880
2881         if (copy_chunked_from_user(info->hdr, umod, info->len) != 0) {
2882                 vfree(info->hdr);
2883                 return -EFAULT;
2884         }
2885
2886         return 0;
2887 }
2888
2889 static void free_copy(struct load_info *info)
2890 {
2891         vfree(info->hdr);
2892 }
2893
2894 static int rewrite_section_headers(struct load_info *info, int flags)
2895 {
2896         unsigned int i;
2897
2898         /* This should always be true, but let's be sure. */
2899         info->sechdrs[0].sh_addr = 0;
2900
2901         for (i = 1; i < info->hdr->e_shnum; i++) {
2902                 Elf_Shdr *shdr = &info->sechdrs[i];
2903                 if (shdr->sh_type != SHT_NOBITS
2904                     && info->len < shdr->sh_offset + shdr->sh_size) {
2905                         pr_err("Module len %lu truncated\n", info->len);
2906                         return -ENOEXEC;
2907                 }
2908
2909                 /* Mark all sections sh_addr with their address in the
2910                    temporary image. */
2911                 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2912
2913 #ifndef CONFIG_MODULE_UNLOAD
2914                 /* Don't load .exit sections */
2915                 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2916                         shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2917 #endif
2918         }
2919
2920         /* Track but don't keep modinfo and version sections. */
2921         info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
2922         info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2923
2924         return 0;
2925 }
2926
2927 /*
2928  * Set up our basic convenience variables (pointers to section headers,
2929  * search for module section index etc), and do some basic section
2930  * verification.
2931  *
2932  * Set info->mod to the temporary copy of the module in info->hdr. The final one
2933  * will be allocated in move_module().
2934  */
2935 static int setup_load_info(struct load_info *info, int flags)
2936 {
2937         unsigned int i;
2938
2939         /* Set up the convenience variables */
2940         info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
2941         info->secstrings = (void *)info->hdr
2942                 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
2943
2944         /* Try to find a name early so we can log errors with a module name */
2945         info->index.info = find_sec(info, ".modinfo");
2946         if (!info->index.info)
2947                 info->name = "(missing .modinfo section)";
2948         else
2949                 info->name = get_modinfo(info, "name");
2950
2951         /* Find internal symbols and strings. */
2952         for (i = 1; i < info->hdr->e_shnum; i++) {
2953                 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2954                         info->index.sym = i;
2955                         info->index.str = info->sechdrs[i].sh_link;
2956                         info->strtab = (char *)info->hdr
2957                                 + info->sechdrs[info->index.str].sh_offset;
2958                         break;
2959                 }
2960         }
2961
2962         if (info->index.sym == 0) {
2963                 pr_warn("%s: module has no symbols (stripped?)\n", info->name);
2964                 return -ENOEXEC;
2965         }
2966
2967         info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
2968         if (!info->index.mod) {
2969                 pr_warn("%s: No module found in object\n",
2970                         info->name ?: "(missing .modinfo name field)");
2971                 return -ENOEXEC;
2972         }
2973         /* This is temporary: point mod into copy of data. */
2974         info->mod = (void *)info->hdr + info->sechdrs[info->index.mod].sh_offset;
2975
2976         /*
2977          * If we didn't load the .modinfo 'name' field earlier, fall back to
2978          * on-disk struct mod 'name' field.
2979          */
2980         if (!info->name)
2981                 info->name = info->mod->name;
2982
2983         if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
2984                 info->index.vers = 0; /* Pretend no __versions section! */
2985         else
2986                 info->index.vers = find_sec(info, "__versions");
2987
2988         info->index.pcpu = find_pcpusec(info);
2989
2990         return 0;
2991 }
2992
2993 static int check_modinfo(struct module *mod, struct load_info *info, int flags)
2994 {
2995         const char *modmagic = get_modinfo(info, "vermagic");
2996         int err;
2997
2998         if (flags & MODULE_INIT_IGNORE_VERMAGIC)
2999                 modmagic = NULL;
3000
3001         /* This is allowed: modprobe --force will invalidate it. */
3002         if (!modmagic) {
3003                 err = try_to_force_load(mod, "bad vermagic");
3004                 if (err)
3005                         return err;
3006         } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
3007                 pr_err("%s: version magic '%s' should be '%s'\n",
3008                        info->name, modmagic, vermagic);
3009                 return -ENOEXEC;
3010         }
3011
3012         if (!get_modinfo(info, "intree")) {
3013                 if (!test_taint(TAINT_OOT_MODULE))
3014                         pr_warn("%s: loading out-of-tree module taints kernel.\n",
3015                                 mod->name);
3016                 add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
3017         }
3018
3019         check_modinfo_retpoline(mod, info);
3020
3021         if (get_modinfo(info, "staging")) {
3022                 add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
3023                 pr_warn("%s: module is from the staging directory, the quality "
3024                         "is unknown, you have been warned.\n", mod->name);
3025         }
3026
3027         err = check_modinfo_livepatch(mod, info);
3028         if (err)
3029                 return err;
3030
3031         /* Set up license info based on the info section */
3032         set_license(mod, get_modinfo(info, "license"));
3033
3034         return 0;
3035 }
3036
3037 static int find_module_sections(struct module *mod, struct load_info *info)
3038 {
3039         mod->kp = section_objs(info, "__param",
3040                                sizeof(*mod->kp), &mod->num_kp);
3041         mod->syms = section_objs(info, "__ksymtab",
3042                                  sizeof(*mod->syms), &mod->num_syms);
3043         mod->crcs = section_addr(info, "__kcrctab");
3044         mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
3045                                      sizeof(*mod->gpl_syms),
3046                                      &mod->num_gpl_syms);
3047         mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
3048         mod->gpl_future_syms = section_objs(info,
3049                                             "__ksymtab_gpl_future",
3050                                             sizeof(*mod->gpl_future_syms),
3051                                             &mod->num_gpl_future_syms);
3052         mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
3053
3054 #ifdef CONFIG_UNUSED_SYMBOLS
3055         mod->unused_syms = section_objs(info, "__ksymtab_unused",
3056                                         sizeof(*mod->unused_syms),
3057                                         &mod->num_unused_syms);
3058         mod->unused_crcs = section_addr(info, "__kcrctab_unused");
3059         mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
3060                                             sizeof(*mod->unused_gpl_syms),
3061                                             &mod->num_unused_gpl_syms);
3062         mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
3063 #endif
3064 #ifdef CONFIG_CONSTRUCTORS
3065         mod->ctors = section_objs(info, ".ctors",
3066                                   sizeof(*mod->ctors), &mod->num_ctors);
3067         if (!mod->ctors)
3068                 mod->ctors = section_objs(info, ".init_array",
3069                                 sizeof(*mod->ctors), &mod->num_ctors);
3070         else if (find_sec(info, ".init_array")) {
3071                 /*
3072                  * This shouldn't happen with same compiler and binutils
3073                  * building all parts of the module.
3074                  */
3075                 pr_warn("%s: has both .ctors and .init_array.\n",
3076                        mod->name);
3077                 return -EINVAL;
3078         }
3079 #endif
3080
3081 #ifdef CONFIG_TRACEPOINTS
3082         mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
3083                                              sizeof(*mod->tracepoints_ptrs),
3084                                              &mod->num_tracepoints);
3085 #endif
3086 #ifdef CONFIG_BPF_EVENTS
3087         mod->bpf_raw_events = section_objs(info, "__bpf_raw_tp_map",
3088                                            sizeof(*mod->bpf_raw_events),
3089                                            &mod->num_bpf_raw_events);
3090 #endif
3091 #ifdef CONFIG_JUMP_LABEL
3092         mod->jump_entries = section_objs(info, "__jump_table",
3093                                         sizeof(*mod->jump_entries),
3094                                         &mod->num_jump_entries);
3095 #endif
3096 #ifdef CONFIG_EVENT_TRACING
3097         mod->trace_events = section_objs(info, "_ftrace_events",
3098                                          sizeof(*mod->trace_events),
3099                                          &mod->num_trace_events);
3100         mod->trace_evals = section_objs(info, "_ftrace_eval_map",
3101                                         sizeof(*mod->trace_evals),
3102                                         &mod->num_trace_evals);
3103 #endif
3104 #ifdef CONFIG_TRACING
3105         mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
3106                                          sizeof(*mod->trace_bprintk_fmt_start),
3107                                          &mod->num_trace_bprintk_fmt);
3108 #endif
3109 #ifdef CONFIG_FTRACE_MCOUNT_RECORD
3110         /* sechdrs[0].sh_size is always zero */
3111         mod->ftrace_callsites = section_objs(info, "__mcount_loc",
3112                                              sizeof(*mod->ftrace_callsites),
3113                                              &mod->num_ftrace_callsites);
3114 #endif
3115 #ifdef CONFIG_FUNCTION_ERROR_INJECTION
3116         mod->ei_funcs = section_objs(info, "_error_injection_whitelist",
3117                                             sizeof(*mod->ei_funcs),
3118                                             &mod->num_ei_funcs);
3119 #endif
3120         mod->extable = section_objs(info, "__ex_table",
3121                                     sizeof(*mod->extable), &mod->num_exentries);
3122
3123         if (section_addr(info, "__obsparm"))
3124                 pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
3125
3126         info->debug = section_objs(info, "__verbose",
3127                                    sizeof(*info->debug), &info->num_debug);
3128
3129         return 0;
3130 }
3131
3132 static int move_module(struct module *mod, struct load_info *info)
3133 {
3134         int i;
3135         void *ptr;
3136
3137         /* Do the allocs. */
3138         ptr = module_alloc(mod->core_layout.size);
3139         /*
3140          * The pointer to this block is stored in the module structure
3141          * which is inside the block. Just mark it as not being a
3142          * leak.
3143          */
3144         kmemleak_not_leak(ptr);
3145         if (!ptr)
3146                 return -ENOMEM;
3147
3148         memset(ptr, 0, mod->core_layout.size);
3149         mod->core_layout.base = ptr;
3150
3151         if (mod->init_layout.size) {
3152                 ptr = module_alloc(mod->init_layout.size);
3153                 /*
3154                  * The pointer to this block is stored in the module structure
3155                  * which is inside the block. This block doesn't need to be
3156                  * scanned as it contains data and code that will be freed
3157                  * after the module is initialized.
3158                  */
3159                 kmemleak_ignore(ptr);
3160                 if (!ptr) {
3161                         module_memfree(mod->core_layout.base);
3162                         return -ENOMEM;
3163                 }
3164                 memset(ptr, 0, mod->init_layout.size);
3165                 mod->init_layout.base = ptr;
3166         } else
3167                 mod->init_layout.base = NULL;
3168
3169         /* Transfer each section which specifies SHF_ALLOC */
3170         pr_debug("final section addresses:\n");
3171         for (i = 0; i < info->hdr->e_shnum; i++) {
3172                 void *dest;
3173                 Elf_Shdr *shdr = &info->sechdrs[i];
3174
3175                 if (!(shdr->sh_flags & SHF_ALLOC))
3176                         continue;
3177
3178                 if (shdr->sh_entsize & INIT_OFFSET_MASK)
3179                         dest = mod->init_layout.base
3180                                 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
3181                 else
3182                         dest = mod->core_layout.base + shdr->sh_entsize;
3183
3184                 if (shdr->sh_type != SHT_NOBITS)
3185                         memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
3186                 /* Update sh_addr to point to copy in image. */
3187                 shdr->sh_addr = (unsigned long)dest;
3188                 pr_debug("\t0x%lx %s\n",
3189                          (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
3190         }
3191
3192         return 0;
3193 }
3194
3195 static int check_module_license_and_versions(struct module *mod)
3196 {
3197         int prev_taint = test_taint(TAINT_PROPRIETARY_MODULE);
3198
3199         /*
3200          * ndiswrapper is under GPL by itself, but loads proprietary modules.
3201          * Don't use add_taint_module(), as it would prevent ndiswrapper from
3202          * using GPL-only symbols it needs.
3203          */
3204         if (strcmp(mod->name, "ndiswrapper") == 0)
3205                 add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
3206
3207         /* driverloader was caught wrongly pretending to be under GPL */
3208         if (strcmp(mod->name, "driverloader") == 0)
3209                 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
3210                                  LOCKDEP_NOW_UNRELIABLE);
3211
3212         /* lve claims to be GPL but upstream won't provide source */
3213         if (strcmp(mod->name, "lve") == 0)
3214                 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
3215                                  LOCKDEP_NOW_UNRELIABLE);
3216
3217         if (!prev_taint && test_taint(TAINT_PROPRIETARY_MODULE))
3218                 pr_warn("%s: module license taints kernel.\n", mod->name);
3219
3220 #ifdef CONFIG_MODVERSIONS
3221         if ((mod->num_syms && !mod->crcs)
3222             || (mod->num_gpl_syms && !mod->gpl_crcs)
3223             || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
3224 #ifdef CONFIG_UNUSED_SYMBOLS
3225             || (mod->num_unused_syms && !mod->unused_crcs)
3226             || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
3227 #endif
3228                 ) {
3229                 return try_to_force_load(mod,
3230                                          "no versions for exported symbols");
3231         }
3232 #endif
3233         return 0;
3234 }
3235
3236 static void flush_module_icache(const struct module *mod)
3237 {
3238         mm_segment_t old_fs;
3239
3240         /* flush the icache in correct context */
3241         old_fs = get_fs();
3242         set_fs(KERNEL_DS);
3243
3244         /*
3245          * Flush the instruction cache, since we've played with text.
3246          * Do it before processing of module parameters, so the module
3247          * can provide parameter accessor functions of its own.
3248          */
3249         if (mod->init_layout.base)
3250                 flush_icache_range((unsigned long)mod->init_layout.base,
3251                                    (unsigned long)mod->init_layout.base
3252                                    + mod->init_layout.size);
3253         flush_icache_range((unsigned long)mod->core_layout.base,
3254                            (unsigned long)mod->core_layout.base + mod->core_layout.size);
3255
3256         set_fs(old_fs);
3257 }
3258
3259 int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
3260                                      Elf_Shdr *sechdrs,
3261                                      char *secstrings,
3262                                      struct module *mod)
3263 {
3264         return 0;
3265 }
3266
3267 /* module_blacklist is a comma-separated list of module names */
3268 static char *module_blacklist;
3269 static bool blacklisted(const char *module_name)
3270 {
3271         const char *p;
3272         size_t len;
3273
3274         if (!module_blacklist)
3275                 return false;
3276
3277         for (p = module_blacklist; *p; p += len) {
3278                 len = strcspn(p, ",");
3279                 if (strlen(module_name) == len && !memcmp(module_name, p, len))
3280                         return true;
3281                 if (p[len] == ',')
3282                         len++;
3283         }
3284         return false;
3285 }
3286 core_param(module_blacklist, module_blacklist, charp, 0400);
3287
3288 static struct module *layout_and_allocate(struct load_info *info, int flags)
3289 {
3290         struct module *mod;
3291         unsigned int ndx;
3292         int err;
3293
3294         err = check_modinfo(info->mod, info, flags);
3295         if (err)
3296                 return ERR_PTR(err);
3297
3298         /* Allow arches to frob section contents and sizes.  */
3299         err = module_frob_arch_sections(info->hdr, info->sechdrs,
3300                                         info->secstrings, info->mod);
3301         if (err < 0)
3302                 return ERR_PTR(err);
3303
3304         /* We will do a special allocation for per-cpu sections later. */
3305         info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
3306
3307         /*
3308          * Mark ro_after_init section with SHF_RO_AFTER_INIT so that
3309          * layout_sections() can put it in the right place.
3310          * Note: ro_after_init sections also have SHF_{WRITE,ALLOC} set.
3311          */
3312         ndx = find_sec(info, ".data..ro_after_init");
3313         if (ndx)
3314                 info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
3315         /*
3316          * Mark the __jump_table section as ro_after_init as well: these data
3317          * structures are never modified, with the exception of entries that
3318          * refer to code in the __init section, which are annotated as such
3319          * at module load time.
3320          */
3321         ndx = find_sec(info, "__jump_table");
3322         if (ndx)
3323                 info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
3324
3325         /* Determine total sizes, and put offsets in sh_entsize.  For now
3326            this is done generically; there doesn't appear to be any
3327            special cases for the architectures. */
3328         layout_sections(info->mod, info);
3329         layout_symtab(info->mod, info);
3330
3331         /* Allocate and move to the final place */
3332         err = move_module(info->mod, info);
3333         if (err)
3334                 return ERR_PTR(err);
3335
3336         /* Module has been copied to its final place now: return it. */
3337         mod = (void *)info->sechdrs[info->index.mod].sh_addr;
3338         kmemleak_load_module(mod, info);
3339         return mod;
3340 }
3341
3342 /* mod is no longer valid after this! */
3343 static void module_deallocate(struct module *mod, struct load_info *info)
3344 {
3345         percpu_modfree(mod);
3346         module_arch_freeing_init(mod);
3347         module_memfree(mod->init_layout.base);
3348         module_memfree(mod->core_layout.base);
3349 }
3350
3351 int __weak module_finalize(const Elf_Ehdr *hdr,
3352                            const Elf_Shdr *sechdrs,
3353                            struct module *me)
3354 {
3355         return 0;
3356 }
3357
3358 static int post_relocation(struct module *mod, const struct load_info *info)
3359 {
3360         /* Sort exception table now relocations are done. */
3361         sort_extable(mod->extable, mod->extable + mod->num_exentries);
3362
3363         /* Copy relocated percpu area over. */
3364         percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
3365                        info->sechdrs[info->index.pcpu].sh_size);
3366
3367         /* Setup kallsyms-specific fields. */
3368         add_kallsyms(mod, info);
3369
3370         /* Arch-specific module finalizing. */
3371         return module_finalize(info->hdr, info->sechdrs, mod);
3372 }
3373
3374 /* Is this module of this name done loading?  No locks held. */
3375 static bool finished_loading(const char *name)
3376 {
3377         struct module *mod;
3378         bool ret;
3379
3380         /*
3381          * The module_mutex should not be a heavily contended lock;
3382          * if we get the occasional sleep here, we'll go an extra iteration
3383          * in the wait_event_interruptible(), which is harmless.
3384          */
3385         sched_annotate_sleep();
3386         mutex_lock(&module_mutex);
3387         mod = find_module_all(name, strlen(name), true);
3388         ret = !mod || mod->state == MODULE_STATE_LIVE
3389                 || mod->state == MODULE_STATE_GOING;
3390         mutex_unlock(&module_mutex);
3391
3392         return ret;
3393 }
3394
3395 /* Call module constructors. */
3396 static void do_mod_ctors(struct module *mod)
3397 {
3398 #ifdef CONFIG_CONSTRUCTORS
3399         unsigned long i;
3400
3401         for (i = 0; i < mod->num_ctors; i++)
3402                 mod->ctors[i]();
3403 #endif
3404 }
3405
3406 /* For freeing module_init on success, in case kallsyms traversing */
3407 struct mod_initfree {
3408         struct llist_node node;
3409         void *module_init;
3410 };
3411
3412 static void do_free_init(struct work_struct *w)
3413 {
3414         struct llist_node *pos, *n, *list;
3415         struct mod_initfree *initfree;
3416
3417         list = llist_del_all(&init_free_list);
3418
3419         synchronize_rcu();
3420
3421         llist_for_each_safe(pos, n, list) {
3422                 initfree = container_of(pos, struct mod_initfree, node);
3423                 module_memfree(initfree->module_init);
3424                 kfree(initfree);
3425         }
3426 }
3427
3428 static int __init modules_wq_init(void)
3429 {
3430         INIT_WORK(&init_free_wq, do_free_init);
3431         init_llist_head(&init_free_list);
3432         return 0;
3433 }
3434 module_init(modules_wq_init);
3435
3436 /*
3437  * This is where the real work happens.
3438  *
3439  * Keep it uninlined to provide a reliable breakpoint target, e.g. for the gdb
3440  * helper command 'lx-symbols'.
3441  */
3442 static noinline int do_init_module(struct module *mod)
3443 {
3444         int ret = 0;
3445         struct mod_initfree *freeinit;
3446
3447         freeinit = kmalloc(sizeof(*freeinit), GFP_KERNEL);
3448         if (!freeinit) {
3449                 ret = -ENOMEM;
3450                 goto fail;
3451         }
3452         freeinit->module_init = mod->init_layout.base;
3453
3454         /*
3455          * We want to find out whether @mod uses async during init.  Clear
3456          * PF_USED_ASYNC.  async_schedule*() will set it.
3457          */
3458         current->flags &= ~PF_USED_ASYNC;
3459
3460         do_mod_ctors(mod);
3461         /* Start the module */
3462         if (mod->init != NULL)
3463                 ret = do_one_initcall(mod->init);
3464         if (ret < 0) {
3465                 goto fail_free_freeinit;
3466         }
3467         if (ret > 0) {
3468                 pr_warn("%s: '%s'->init suspiciously returned %d, it should "
3469                         "follow 0/-E convention\n"
3470                         "%s: loading module anyway...\n",
3471                         __func__, mod->name, ret, __func__);
3472                 dump_stack();
3473         }
3474
3475         /* Now it's a first class citizen! */
3476         mod->state = MODULE_STATE_LIVE;
3477         blocking_notifier_call_chain(&module_notify_list,
3478                                      MODULE_STATE_LIVE, mod);
3479
3480         /*
3481          * We need to finish all async code before the module init sequence
3482          * is done.  This has potential to deadlock.  For example, a newly
3483          * detected block device can trigger request_module() of the
3484          * default iosched from async probing task.  Once userland helper
3485          * reaches here, async_synchronize_full() will wait on the async
3486          * task waiting on request_module() and deadlock.
3487          *
3488          * This deadlock is avoided by perfomring async_synchronize_full()
3489          * iff module init queued any async jobs.  This isn't a full
3490          * solution as it will deadlock the same if module loading from
3491          * async jobs nests more than once; however, due to the various
3492          * constraints, this hack seems to be the best option for now.
3493          * Please refer to the following thread for details.
3494          *
3495          * http://thread.gmane.org/gmane.linux.kernel/1420814
3496          */
3497         if (!mod->async_probe_requested && (current->flags & PF_USED_ASYNC))
3498                 async_synchronize_full();
3499
3500         ftrace_free_mem(mod, mod->init_layout.base, mod->init_layout.base +
3501                         mod->init_layout.size);
3502         mutex_lock(&module_mutex);
3503         /* Drop initial reference. */
3504         module_put(mod);
3505         trim_init_extable(mod);
3506 #ifdef CONFIG_KALLSYMS
3507         /* Switch to core kallsyms now init is done: kallsyms may be walking! */
3508         rcu_assign_pointer(mod->kallsyms, &mod->core_kallsyms);
3509 #endif
3510         module_enable_ro(mod, true);
3511         mod_tree_remove_init(mod);
3512         module_arch_freeing_init(mod);
3513         mod->init_layout.base = NULL;
3514         mod->init_layout.size = 0;
3515         mod->init_layout.ro_size = 0;
3516         mod->init_layout.ro_after_init_size = 0;
3517         mod->init_layout.text_size = 0;
3518         /*
3519          * We want to free module_init, but be aware that kallsyms may be
3520          * walking this with preempt disabled.  In all the failure paths, we
3521          * call synchronize_rcu(), but we don't want to slow down the success
3522          * path. module_memfree() cannot be called in an interrupt, so do the
3523          * work and call synchronize_rcu() in a work queue.
3524          *
3525          * Note that module_alloc() on most architectures creates W+X page
3526          * mappings which won't be cleaned up until do_free_init() runs.  Any
3527          * code such as mark_rodata_ro() which depends on those mappings to
3528          * be cleaned up needs to sync with the queued work - ie
3529          * rcu_barrier()
3530          */
3531         if (llist_add(&freeinit->node, &init_free_list))
3532                 schedule_work(&init_free_wq);
3533
3534         mutex_unlock(&module_mutex);
3535         wake_up_all(&module_wq);
3536
3537         return 0;
3538
3539 fail_free_freeinit:
3540         kfree(freeinit);
3541 fail:
3542         /* Try to protect us from buggy refcounters. */
3543         mod->state = MODULE_STATE_GOING;
3544         synchronize_rcu();
3545         module_put(mod);
3546         blocking_notifier_call_chain(&module_notify_list,
3547                                      MODULE_STATE_GOING, mod);
3548         klp_module_going(mod);
3549         ftrace_release_mod(mod);
3550         free_module(mod);
3551         wake_up_all(&module_wq);
3552         return ret;
3553 }
3554
3555 static int may_init_module(void)
3556 {
3557         if (!capable(CAP_SYS_MODULE) || modules_disabled)
3558                 return -EPERM;
3559
3560         return 0;
3561 }
3562
3563 /*
3564  * We try to place it in the list now to make sure it's unique before
3565  * we dedicate too many resources.  In particular, temporary percpu
3566  * memory exhaustion.
3567  */
3568 static int add_unformed_module(struct module *mod)
3569 {
3570         int err;
3571         struct module *old;
3572
3573         mod->state = MODULE_STATE_UNFORMED;
3574
3575 again:
3576         mutex_lock(&module_mutex);
3577         old = find_module_all(mod->name, strlen(mod->name), true);
3578         if (old != NULL) {
3579                 if (old->state == MODULE_STATE_COMING
3580                     || old->state == MODULE_STATE_UNFORMED) {
3581                         /* Wait in case it fails to load. */
3582                         mutex_unlock(&module_mutex);
3583                         err = wait_event_interruptible(module_wq,
3584                                                finished_loading(mod->name));
3585                         if (err)
3586                                 goto out_unlocked;
3587                         goto again;
3588                 }
3589                 err = -EEXIST;
3590                 goto out;
3591         }
3592         mod_update_bounds(mod);
3593         list_add_rcu(&mod->list, &modules);
3594         mod_tree_insert(mod);
3595         err = 0;
3596
3597 out:
3598         mutex_unlock(&module_mutex);
3599 out_unlocked:
3600         return err;
3601 }
3602
3603 static int complete_formation(struct module *mod, struct load_info *info)
3604 {
3605         int err;
3606
3607         mutex_lock(&module_mutex);
3608
3609         /* Find duplicate symbols (must be called under lock). */
3610         err = verify_exported_symbols(mod);
3611         if (err < 0)
3612                 goto out;
3613
3614         /* This relies on module_mutex for list integrity. */
3615         module_bug_finalize(info->hdr, info->sechdrs, mod);
3616
3617         module_enable_ro(mod, false);
3618         module_enable_nx(mod);
3619
3620         /* Mark state as coming so strong_try_module_get() ignores us,
3621          * but kallsyms etc. can see us. */
3622         mod->state = MODULE_STATE_COMING;
3623         mutex_unlock(&module_mutex);
3624
3625         return 0;
3626
3627 out:
3628         mutex_unlock(&module_mutex);
3629         return err;
3630 }
3631
3632 static int prepare_coming_module(struct module *mod)
3633 {
3634         int err;
3635
3636         ftrace_module_enable(mod);
3637         err = klp_module_coming(mod);
3638         if (err)
3639                 return err;
3640
3641         blocking_notifier_call_chain(&module_notify_list,
3642                                      MODULE_STATE_COMING, mod);
3643         return 0;
3644 }
3645
3646 static int unknown_module_param_cb(char *param, char *val, const char *modname,
3647                                    void *arg)
3648 {
3649         struct module *mod = arg;
3650         int ret;
3651
3652         if (strcmp(param, "async_probe") == 0) {
3653                 mod->async_probe_requested = true;
3654                 return 0;
3655         }
3656
3657         /* Check for magic 'dyndbg' arg */
3658         ret = ddebug_dyndbg_module_param_cb(param, val, modname);
3659         if (ret != 0)
3660                 pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
3661         return 0;
3662 }
3663
3664 /* Allocate and load the module: note that size of section 0 is always
3665    zero, and we rely on this for optional sections. */
3666 static int load_module(struct load_info *info, const char __user *uargs,
3667                        int flags)
3668 {
3669         struct module *mod;
3670         long err = 0;
3671         char *after_dashes;
3672
3673         err = elf_header_check(info);
3674         if (err)
3675                 goto free_copy;
3676
3677         err = setup_load_info(info, flags);
3678         if (err)
3679                 goto free_copy;
3680
3681         if (blacklisted(info->name)) {
3682                 err = -EPERM;
3683                 goto free_copy;
3684         }
3685
3686         err = module_sig_check(info, flags);
3687         if (err)
3688                 goto free_copy;
3689
3690         err = rewrite_section_headers(info, flags);
3691         if (err)
3692                 goto free_copy;
3693
3694         /* Check module struct version now, before we try to use module. */
3695         if (!check_modstruct_version(info, info->mod)) {
3696                 err = -ENOEXEC;
3697                 goto free_copy;
3698         }
3699
3700         /* Figure out module layout, and allocate all the memory. */
3701         mod = layout_and_allocate(info, flags);
3702         if (IS_ERR(mod)) {
3703                 err = PTR_ERR(mod);
3704                 goto free_copy;
3705         }
3706
3707         audit_log_kern_module(mod->name);
3708
3709         /* Reserve our place in the list. */
3710         err = add_unformed_module(mod);
3711         if (err)
3712                 goto free_module;
3713
3714 #ifdef CONFIG_MODULE_SIG
3715         mod->sig_ok = info->sig_ok;
3716         if (!mod->sig_ok) {
3717                 pr_notice_once("%s: module verification failed: signature "
3718                                "and/or required key missing - tainting "
3719                                "kernel\n", mod->name);
3720                 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
3721         }
3722 #endif
3723
3724         /* To avoid stressing percpu allocator, do this once we're unique. */
3725         err = percpu_modalloc(mod, info);
3726         if (err)
3727                 goto unlink_mod;
3728
3729         /* Now module is in final location, initialize linked lists, etc. */
3730         err = module_unload_init(mod);
3731         if (err)
3732                 goto unlink_mod;
3733
3734         init_param_lock(mod);
3735
3736         /* Now we've got everything in the final locations, we can
3737          * find optional sections. */
3738         err = find_module_sections(mod, info);
3739         if (err)
3740                 goto free_unload;
3741
3742         err = check_module_license_and_versions(mod);
3743         if (err)
3744                 goto free_unload;
3745
3746         /* Set up MODINFO_ATTR fields */
3747         setup_modinfo(mod, info);
3748
3749         /* Fix up syms, so that st_value is a pointer to location. */
3750         err = simplify_symbols(mod, info);
3751         if (err < 0)
3752                 goto free_modinfo;
3753
3754         err = apply_relocations(mod, info);
3755         if (err < 0)
3756                 goto free_modinfo;
3757
3758         err = post_relocation(mod, info);
3759         if (err < 0)
3760                 goto free_modinfo;
3761
3762         flush_module_icache(mod);
3763
3764         /* Now copy in args */
3765         mod->args = strndup_user(uargs, ~0UL >> 1);
3766         if (IS_ERR(mod->args)) {
3767                 err = PTR_ERR(mod->args);
3768                 goto free_arch_cleanup;
3769         }
3770
3771         dynamic_debug_setup(mod, info->debug, info->num_debug);
3772
3773         /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
3774         ftrace_module_init(mod);
3775
3776         /* Finally it's fully formed, ready to start executing. */
3777         err = complete_formation(mod, info);
3778         if (err)
3779                 goto ddebug_cleanup;
3780
3781         err = prepare_coming_module(mod);
3782         if (err)
3783                 goto bug_cleanup;
3784
3785         /* Module is ready to execute: parsing args may do that. */
3786         after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
3787                                   -32768, 32767, mod,
3788                                   unknown_module_param_cb);
3789         if (IS_ERR(after_dashes)) {
3790                 err = PTR_ERR(after_dashes);
3791                 goto coming_cleanup;
3792         } else if (after_dashes) {
3793                 pr_warn("%s: parameters '%s' after `--' ignored\n",
3794                        mod->name, after_dashes);
3795         }
3796
3797         /* Link in to sysfs. */
3798         err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
3799         if (err < 0)
3800                 goto coming_cleanup;
3801
3802         if (is_livepatch_module(mod)) {
3803                 err = copy_module_elf(mod, info);
3804                 if (err < 0)
3805                         goto sysfs_cleanup;
3806         }
3807
3808         /* Get rid of temporary copy. */
3809         free_copy(info);
3810
3811         /* Done! */
3812         trace_module_load(mod);
3813
3814         return do_init_module(mod);
3815
3816  sysfs_cleanup:
3817         mod_sysfs_teardown(mod);
3818  coming_cleanup:
3819         mod->state = MODULE_STATE_GOING;
3820         destroy_params(mod->kp, mod->num_kp);
3821         blocking_notifier_call_chain(&module_notify_list,
3822                                      MODULE_STATE_GOING, mod);
3823         klp_module_going(mod);
3824  bug_cleanup:
3825         /* module_bug_cleanup needs module_mutex protection */
3826         mutex_lock(&module_mutex);
3827         module_bug_cleanup(mod);
3828         mutex_unlock(&module_mutex);
3829
3830  ddebug_cleanup:
3831         ftrace_release_mod(mod);
3832         dynamic_debug_remove(mod, info->debug);
3833         synchronize_rcu();
3834         kfree(mod->args);
3835  free_arch_cleanup:
3836         module_arch_cleanup(mod);
3837  free_modinfo:
3838         free_modinfo(mod);
3839  free_unload:
3840         module_unload_free(mod);
3841  unlink_mod:
3842         mutex_lock(&module_mutex);
3843         /* Unlink carefully: kallsyms could be walking list. */
3844         list_del_rcu(&mod->list);
3845         mod_tree_remove(mod);
3846         wake_up_all(&module_wq);
3847         /* Wait for RCU-sched synchronizing before releasing mod->list. */
3848         synchronize_rcu();
3849         mutex_unlock(&module_mutex);
3850  free_module:
3851         /* Free lock-classes; relies on the preceding sync_rcu() */
3852         lockdep_free_key_range(mod->core_layout.base, mod->core_layout.size);
3853
3854         module_deallocate(mod, info);
3855  free_copy:
3856         free_copy(info);
3857         return err;
3858 }
3859
3860 SYSCALL_DEFINE3(init_module, void __user *, umod,
3861                 unsigned long, len, const char __user *, uargs)
3862 {
3863         int err;
3864         struct load_info info = { };
3865
3866         err = may_init_module();
3867         if (err)
3868                 return err;
3869
3870         pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3871                umod, len, uargs);
3872
3873         err = copy_module_from_user(umod, len, &info);
3874         if (err)
3875                 return err;
3876
3877         return load_module(&info, uargs, 0);
3878 }
3879
3880 SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
3881 {
3882         struct load_info info = { };
3883         loff_t size;
3884         void *hdr;
3885         int err;
3886
3887         err = may_init_module();
3888         if (err)
3889                 return err;
3890
3891         pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3892
3893         if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
3894                       |MODULE_INIT_IGNORE_VERMAGIC))
3895                 return -EINVAL;
3896
3897         err = kernel_read_file_from_fd(fd, &hdr, &size, INT_MAX,
3898                                        READING_MODULE);
3899         if (err)
3900                 return err;
3901         info.hdr = hdr;
3902         info.len = size;
3903
3904         return load_module(&info, uargs, flags);
3905 }
3906
3907 static inline int within(unsigned long addr, void *start, unsigned long size)
3908 {
3909         return ((void *)addr >= start && (void *)addr < start + size);
3910 }
3911
3912 #ifdef CONFIG_KALLSYMS
3913 /*
3914  * This ignores the intensely annoying "mapping symbols" found
3915  * in ARM ELF files: $a, $t and $d.
3916  */
3917 static inline int is_arm_mapping_symbol(const char *str)
3918 {
3919         if (str[0] == '.' && str[1] == 'L')
3920                 return true;
3921         return str[0] == '$' && strchr("axtd", str[1])
3922                && (str[2] == '\0' || str[2] == '.');
3923 }
3924
3925 static const char *kallsyms_symbol_name(struct mod_kallsyms *kallsyms, unsigned int symnum)
3926 {
3927         return kallsyms->strtab + kallsyms->symtab[symnum].st_name;
3928 }
3929
3930 /*
3931  * Given a module and address, find the corresponding symbol and return its name
3932  * while providing its size and offset if needed.
3933  */
3934 static const char *find_kallsyms_symbol(struct module *mod,
3935                                         unsigned long addr,
3936                                         unsigned long *size,
3937                                         unsigned long *offset)
3938 {
3939         unsigned int i, best = 0;
3940         unsigned long nextval, bestval;
3941         struct mod_kallsyms *kallsyms = rcu_dereference_sched(mod->kallsyms);
3942
3943         /* At worse, next value is at end of module */
3944         if (within_module_init(addr, mod))
3945                 nextval = (unsigned long)mod->init_layout.base+mod->init_layout.text_size;
3946         else
3947                 nextval = (unsigned long)mod->core_layout.base+mod->core_layout.text_size;
3948
3949         bestval = kallsyms_symbol_value(&kallsyms->symtab[best]);
3950
3951         /* Scan for closest preceding symbol, and next symbol. (ELF
3952            starts real symbols at 1). */
3953         for (i = 1; i < kallsyms->num_symtab; i++) {
3954                 const Elf_Sym *sym = &kallsyms->symtab[i];
3955                 unsigned long thisval = kallsyms_symbol_value(sym);
3956
3957                 if (sym->st_shndx == SHN_UNDEF)
3958                         continue;
3959
3960                 /* We ignore unnamed symbols: they're uninformative
3961                  * and inserted at a whim. */
3962                 if (*kallsyms_symbol_name(kallsyms, i) == '\0'
3963                     || is_arm_mapping_symbol(kallsyms_symbol_name(kallsyms, i)))
3964                         continue;
3965
3966                 if (thisval <= addr && thisval > bestval) {
3967                         best = i;
3968                         bestval = thisval;
3969                 }
3970                 if (thisval > addr && thisval < nextval)
3971                         nextval = thisval;
3972         }
3973
3974         if (!best)
3975                 return NULL;
3976
3977         if (size)
3978                 *size = nextval - bestval;
3979         if (offset)
3980                 *offset = addr - bestval;
3981
3982         return kallsyms_symbol_name(kallsyms, best);
3983 }
3984
3985 void * __weak dereference_module_function_descriptor(struct module *mod,
3986                                                      void *ptr)
3987 {
3988         return ptr;
3989 }
3990
3991 /* For kallsyms to ask for address resolution.  NULL means not found.  Careful
3992  * not to lock to avoid deadlock on oopses, simply disable preemption. */
3993 const char *module_address_lookup(unsigned long addr,
3994                             unsigned long *size,
3995                             unsigned long *offset,
3996                             char **modname,
3997                             char *namebuf)
3998 {
3999         const char *ret = NULL;
4000         struct module *mod;
4001
4002         preempt_disable();
4003         mod = __module_address(addr);
4004         if (mod) {
4005                 if (modname)
4006                         *modname = mod->name;
4007
4008                 ret = find_kallsyms_symbol(mod, addr, size, offset);
4009         }
4010         /* Make a copy in here where it's safe */
4011         if (ret) {
4012                 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
4013                 ret = namebuf;
4014         }
4015         preempt_enable();
4016
4017         return ret;
4018 }
4019
4020 int lookup_module_symbol_name(unsigned long addr, char *symname)
4021 {
4022         struct module *mod;
4023
4024         preempt_disable();
4025         list_for_each_entry_rcu(mod, &modules, list) {
4026                 if (mod->state == MODULE_STATE_UNFORMED)
4027                         continue;
4028                 if (within_module(addr, mod)) {
4029                         const char *sym;
4030
4031                         sym = find_kallsyms_symbol(mod, addr, NULL, NULL);
4032                         if (!sym)
4033                                 goto out;
4034
4035                         strlcpy(symname, sym, KSYM_NAME_LEN);
4036                         preempt_enable();
4037                         return 0;
4038                 }
4039         }
4040 out:
4041         preempt_enable();
4042         return -ERANGE;
4043 }
4044
4045 int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
4046                         unsigned long *offset, char *modname, char *name)
4047 {
4048         struct module *mod;
4049
4050         preempt_disable();
4051         list_for_each_entry_rcu(mod, &modules, list) {
4052                 if (mod->state == MODULE_STATE_UNFORMED)
4053                         continue;
4054                 if (within_module(addr, mod)) {
4055                         const char *sym;
4056
4057                         sym = find_kallsyms_symbol(mod, addr, size, offset);
4058                         if (!sym)
4059                                 goto out;
4060                         if (modname)
4061                                 strlcpy(modname, mod->name, MODULE_NAME_LEN);
4062                         if (name)
4063                                 strlcpy(name, sym, KSYM_NAME_LEN);
4064                         preempt_enable();
4065                         return 0;
4066                 }
4067         }
4068 out:
4069         preempt_enable();
4070         return -ERANGE;
4071 }
4072
4073 int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
4074                         char *name, char *module_name, int *exported)
4075 {
4076         struct module *mod;
4077
4078         preempt_disable();
4079         list_for_each_entry_rcu(mod, &modules, list) {
4080                 struct mod_kallsyms *kallsyms;
4081
4082                 if (mod->state == MODULE_STATE_UNFORMED)
4083                         continue;
4084                 kallsyms = rcu_dereference_sched(mod->kallsyms);
4085                 if (symnum < kallsyms->num_symtab) {
4086                         const Elf_Sym *sym = &kallsyms->symtab[symnum];
4087
4088                         *value = kallsyms_symbol_value(sym);
4089                         *type = sym->st_size;
4090                         strlcpy(name, kallsyms_symbol_name(kallsyms, symnum), KSYM_NAME_LEN);
4091                         strlcpy(module_name, mod->name, MODULE_NAME_LEN);
4092                         *exported = is_exported(name, *value, mod);
4093                         preempt_enable();
4094                         return 0;
4095                 }
4096                 symnum -= kallsyms->num_symtab;
4097         }
4098         preempt_enable();
4099         return -ERANGE;
4100 }
4101
4102 /* Given a module and name of symbol, find and return the symbol's value */
4103 static unsigned long find_kallsyms_symbol_value(struct module *mod, const char *name)
4104 {
4105         unsigned int i;
4106         struct mod_kallsyms *kallsyms = rcu_dereference_sched(mod->kallsyms);
4107
4108         for (i = 0; i < kallsyms->num_symtab; i++) {
4109                 const Elf_Sym *sym = &kallsyms->symtab[i];
4110
4111                 if (strcmp(name, kallsyms_symbol_name(kallsyms, i)) == 0 &&
4112                     sym->st_shndx != SHN_UNDEF)
4113                         return kallsyms_symbol_value(sym);
4114         }
4115         return 0;
4116 }
4117
4118 /* Look for this name: can be of form module:name. */
4119 unsigned long module_kallsyms_lookup_name(const char *name)
4120 {
4121         struct module *mod;
4122         char *colon;
4123         unsigned long ret = 0;
4124
4125         /* Don't lock: we're in enough trouble already. */
4126         preempt_disable();
4127         if ((colon = strnchr(name, MODULE_NAME_LEN, ':')) != NULL) {
4128                 if ((mod = find_module_all(name, colon - name, false)) != NULL)
4129                         ret = find_kallsyms_symbol_value(mod, colon+1);
4130         } else {
4131                 list_for_each_entry_rcu(mod, &modules, list) {
4132                         if (mod->state == MODULE_STATE_UNFORMED)
4133                                 continue;
4134                         if ((ret = find_kallsyms_symbol_value(mod, name)) != 0)
4135                                 break;
4136                 }
4137         }
4138         preempt_enable();
4139         return ret;
4140 }
4141
4142 int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
4143                                              struct module *, unsigned long),
4144                                    void *data)
4145 {
4146         struct module *mod;
4147         unsigned int i;
4148         int ret;
4149
4150         module_assert_mutex();
4151
4152         list_for_each_entry(mod, &modules, list) {
4153                 /* We hold module_mutex: no need for rcu_dereference_sched */
4154                 struct mod_kallsyms *kallsyms = mod->kallsyms;
4155
4156                 if (mod->state == MODULE_STATE_UNFORMED)
4157                         continue;
4158                 for (i = 0; i < kallsyms->num_symtab; i++) {
4159                         const Elf_Sym *sym = &kallsyms->symtab[i];
4160
4161                         if (sym->st_shndx == SHN_UNDEF)
4162                                 continue;
4163
4164                         ret = fn(data, kallsyms_symbol_name(kallsyms, i),
4165                                  mod, kallsyms_symbol_value(sym));
4166                         if (ret != 0)
4167                                 return ret;
4168                 }
4169         }
4170         return 0;
4171 }
4172 #endif /* CONFIG_KALLSYMS */
4173
4174 /* Maximum number of characters written by module_flags() */
4175 #define MODULE_FLAGS_BUF_SIZE (TAINT_FLAGS_COUNT + 4)
4176
4177 /* Keep in sync with MODULE_FLAGS_BUF_SIZE !!! */
4178 static char *module_flags(struct module *mod, char *buf)
4179 {
4180         int bx = 0;
4181
4182         BUG_ON(mod->state == MODULE_STATE_UNFORMED);
4183         if (mod->taints ||
4184             mod->state == MODULE_STATE_GOING ||
4185             mod->state == MODULE_STATE_COMING) {
4186                 buf[bx++] = '(';
4187                 bx += module_flags_taint(mod, buf + bx);
4188                 /* Show a - for module-is-being-unloaded */
4189                 if (mod->state == MODULE_STATE_GOING)
4190                         buf[bx++] = '-';
4191                 /* Show a + for module-is-being-loaded */
4192                 if (mod->state == MODULE_STATE_COMING)
4193                         buf[bx++] = '+';
4194                 buf[bx++] = ')';
4195         }
4196         buf[bx] = '\0';
4197
4198         return buf;
4199 }
4200
4201 #ifdef CONFIG_PROC_FS
4202 /* Called by the /proc file system to return a list of modules. */
4203 static void *m_start(struct seq_file *m, loff_t *pos)
4204 {
4205         mutex_lock(&module_mutex);
4206         return seq_list_start(&modules, *pos);
4207 }
4208
4209 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
4210 {
4211         return seq_list_next(p, &modules, pos);
4212 }
4213
4214 static void m_stop(struct seq_file *m, void *p)
4215 {
4216         mutex_unlock(&module_mutex);
4217 }
4218
4219 static int m_show(struct seq_file *m, void *p)
4220 {
4221         struct module *mod = list_entry(p, struct module, list);
4222         char buf[MODULE_FLAGS_BUF_SIZE];
4223         void *value;
4224
4225         /* We always ignore unformed modules. */
4226         if (mod->state == MODULE_STATE_UNFORMED)
4227                 return 0;
4228
4229         seq_printf(m, "%s %u",
4230                    mod->name, mod->init_layout.size + mod->core_layout.size);
4231         print_unload_info(m, mod);
4232
4233         /* Informative for users. */
4234         seq_printf(m, " %s",
4235                    mod->state == MODULE_STATE_GOING ? "Unloading" :
4236                    mod->state == MODULE_STATE_COMING ? "Loading" :
4237                    "Live");
4238         /* Used by oprofile and other similar tools. */
4239         value = m->private ? NULL : mod->core_layout.base;
4240         seq_printf(m, " 0x%px", value);
4241
4242         /* Taints info */
4243         if (mod->taints)
4244                 seq_printf(m, " %s", module_flags(mod, buf));
4245
4246         seq_puts(m, "\n");
4247         return 0;
4248 }
4249
4250 /* Format: modulename size refcount deps address
4251
4252    Where refcount is a number or -, and deps is a comma-separated list
4253    of depends or -.
4254 */
4255 static const struct seq_operations modules_op = {
4256         .start  = m_start,
4257         .next   = m_next,
4258         .stop   = m_stop,
4259         .show   = m_show
4260 };
4261
4262 /*
4263  * This also sets the "private" pointer to non-NULL if the
4264  * kernel pointers should be hidden (so you can just test
4265  * "m->private" to see if you should keep the values private).
4266  *
4267  * We use the same logic as for /proc/kallsyms.
4268  */
4269 static int modules_open(struct inode *inode, struct file *file)
4270 {
4271         int err = seq_open(file, &modules_op);
4272
4273         if (!err) {
4274                 struct seq_file *m = file->private_data;
4275                 m->private = kallsyms_show_value() ? NULL : (void *)8ul;
4276         }
4277
4278         return err;
4279 }
4280
4281 static const struct file_operations proc_modules_operations = {
4282         .open           = modules_open,
4283         .read           = seq_read,
4284         .llseek         = seq_lseek,
4285         .release        = seq_release,
4286 };
4287
4288 static int __init proc_modules_init(void)
4289 {
4290         proc_create("modules", 0, NULL, &proc_modules_operations);
4291         return 0;
4292 }
4293 module_init(proc_modules_init);
4294 #endif
4295
4296 /* Given an address, look for it in the module exception tables. */
4297 const struct exception_table_entry *search_module_extables(unsigned long addr)
4298 {
4299         const struct exception_table_entry *e = NULL;
4300         struct module *mod;
4301
4302         preempt_disable();
4303         mod = __module_address(addr);
4304         if (!mod)
4305                 goto out;
4306
4307         if (!mod->num_exentries)
4308                 goto out;
4309
4310         e = search_extable(mod->extable,
4311                            mod->num_exentries,
4312                            addr);
4313 out:
4314         preempt_enable();
4315
4316         /*
4317          * Now, if we found one, we are running inside it now, hence
4318          * we cannot unload the module, hence no refcnt needed.
4319          */
4320         return e;
4321 }
4322
4323 /*
4324  * is_module_address - is this address inside a module?
4325  * @addr: the address to check.
4326  *
4327  * See is_module_text_address() if you simply want to see if the address
4328  * is code (not data).
4329  */
4330 bool is_module_address(unsigned long addr)
4331 {
4332         bool ret;
4333
4334         preempt_disable();
4335         ret = __module_address(addr) != NULL;
4336         preempt_enable();
4337
4338         return ret;
4339 }
4340
4341 /*
4342  * __module_address - get the module which contains an address.
4343  * @addr: the address.
4344  *
4345  * Must be called with preempt disabled or module mutex held so that
4346  * module doesn't get freed during this.
4347  */
4348 struct module *__module_address(unsigned long addr)
4349 {
4350         struct module *mod;
4351
4352         if (addr < module_addr_min || addr > module_addr_max)
4353                 return NULL;
4354
4355         module_assert_mutex_or_preempt();
4356
4357         mod = mod_find(addr);
4358         if (mod) {
4359                 BUG_ON(!within_module(addr, mod));
4360                 if (mod->state == MODULE_STATE_UNFORMED)
4361                         mod = NULL;
4362         }
4363         return mod;
4364 }
4365 EXPORT_SYMBOL_GPL(__module_address);
4366
4367 /*
4368  * is_module_text_address - is this address inside module code?
4369  * @addr: the address to check.
4370  *
4371  * See is_module_address() if you simply want to see if the address is
4372  * anywhere in a module.  See kernel_text_address() for testing if an
4373  * address corresponds to kernel or module code.
4374  */
4375 bool is_module_text_address(unsigned long addr)
4376 {
4377         bool ret;
4378
4379         preempt_disable();
4380         ret = __module_text_address(addr) != NULL;
4381         preempt_enable();
4382
4383         return ret;
4384 }
4385
4386 /*
4387  * __module_text_address - get the module whose code contains an address.
4388  * @addr: the address.
4389  *
4390  * Must be called with preempt disabled or module mutex held so that
4391  * module doesn't get freed during this.
4392  */
4393 struct module *__module_text_address(unsigned long addr)
4394 {
4395         struct module *mod = __module_address(addr);
4396         if (mod) {
4397                 /* Make sure it's within the text section. */
4398                 if (!within(addr, mod->init_layout.base, mod->init_layout.text_size)
4399                     && !within(addr, mod->core_layout.base, mod->core_layout.text_size))
4400                         mod = NULL;
4401         }
4402         return mod;
4403 }
4404 EXPORT_SYMBOL_GPL(__module_text_address);
4405
4406 /* Don't grab lock, we're oopsing. */
4407 void print_modules(void)
4408 {
4409         struct module *mod;
4410         char buf[MODULE_FLAGS_BUF_SIZE];
4411
4412         printk(KERN_DEFAULT "Modules linked in:");
4413         /* Most callers should already have preempt disabled, but make sure */
4414         preempt_disable();
4415         list_for_each_entry_rcu(mod, &modules, list) {
4416                 if (mod->state == MODULE_STATE_UNFORMED)
4417                         continue;
4418                 pr_cont(" %s%s", mod->name, module_flags(mod, buf));
4419         }
4420         preempt_enable();
4421         if (last_unloaded_module[0])
4422                 pr_cont(" [last unloaded: %s]", last_unloaded_module);
4423         pr_cont("\n");
4424 }
4425
4426 #ifdef CONFIG_MODVERSIONS
4427 /* Generate the signature for all relevant module structures here.
4428  * If these change, we don't want to try to parse the module. */
4429 void module_layout(struct module *mod,
4430                    struct modversion_info *ver,
4431                    struct kernel_param *kp,
4432                    struct kernel_symbol *ks,
4433                    struct tracepoint * const *tp)
4434 {
4435 }
4436 EXPORT_SYMBOL(module_layout);
4437 #endif