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