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