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