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