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