async: Asynchronous function calls to speed up kernel boot
[safe/jmp/linux-2.6] / kernel / module.c
1 /*
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 */
19 #include <linux/module.h>
20 #include <linux/moduleloader.h>
21 #include <linux/init.h>
22 #include <linux/kallsyms.h>
23 #include <linux/fs.h>
24 #include <linux/sysfs.h>
25 #include <linux/kernel.h>
26 #include <linux/slab.h>
27 #include <linux/vmalloc.h>
28 #include <linux/elf.h>
29 #include <linux/proc_fs.h>
30 #include <linux/seq_file.h>
31 #include <linux/syscalls.h>
32 #include <linux/fcntl.h>
33 #include <linux/rcupdate.h>
34 #include <linux/capability.h>
35 #include <linux/cpu.h>
36 #include <linux/moduleparam.h>
37 #include <linux/errno.h>
38 #include <linux/err.h>
39 #include <linux/vermagic.h>
40 #include <linux/notifier.h>
41 #include <linux/sched.h>
42 #include <linux/stop_machine.h>
43 #include <linux/device.h>
44 #include <linux/string.h>
45 #include <linux/mutex.h>
46 #include <linux/rculist.h>
47 #include <asm/uaccess.h>
48 #include <asm/cacheflush.h>
49 #include <linux/license.h>
50 #include <asm/sections.h>
51 #include <linux/tracepoint.h>
52 #include <linux/ftrace.h>
53 #include <linux/async.h>
54
55 #if 0
56 #define DEBUGP printk
57 #else
58 #define DEBUGP(fmt , a...)
59 #endif
60
61 #ifndef ARCH_SHF_SMALL
62 #define ARCH_SHF_SMALL 0
63 #endif
64
65 /* If this is set, the section belongs in the init part of the module */
66 #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
67
68 /* List of modules, protected by module_mutex or preempt_disable
69  * (delete uses stop_machine/add uses RCU list operations). */
70 static DEFINE_MUTEX(module_mutex);
71 static LIST_HEAD(modules);
72
73 /* Waiting for a module to finish initializing? */
74 static DECLARE_WAIT_QUEUE_HEAD(module_wq);
75
76 static BLOCKING_NOTIFIER_HEAD(module_notify_list);
77
78 /* Bounds of module allocation, for speeding __module_text_address */
79 static unsigned long module_addr_min = -1UL, module_addr_max = 0;
80
81 int register_module_notifier(struct notifier_block * nb)
82 {
83         return blocking_notifier_chain_register(&module_notify_list, nb);
84 }
85 EXPORT_SYMBOL(register_module_notifier);
86
87 int unregister_module_notifier(struct notifier_block * nb)
88 {
89         return blocking_notifier_chain_unregister(&module_notify_list, nb);
90 }
91 EXPORT_SYMBOL(unregister_module_notifier);
92
93 /* We require a truly strong try_module_get(): 0 means failure due to
94    ongoing or failed initialization etc. */
95 static inline int strong_try_module_get(struct module *mod)
96 {
97         if (mod && mod->state == MODULE_STATE_COMING)
98                 return -EBUSY;
99         if (try_module_get(mod))
100                 return 0;
101         else
102                 return -ENOENT;
103 }
104
105 static inline void add_taint_module(struct module *mod, unsigned flag)
106 {
107         add_taint(flag);
108         mod->taints |= (1U << flag);
109 }
110
111 /*
112  * A thread that wants to hold a reference to a module only while it
113  * is running can call this to safely exit.  nfsd and lockd use this.
114  */
115 void __module_put_and_exit(struct module *mod, long code)
116 {
117         module_put(mod);
118         do_exit(code);
119 }
120 EXPORT_SYMBOL(__module_put_and_exit);
121
122 /* Find a module section: 0 means not found. */
123 static unsigned int find_sec(Elf_Ehdr *hdr,
124                              Elf_Shdr *sechdrs,
125                              const char *secstrings,
126                              const char *name)
127 {
128         unsigned int i;
129
130         for (i = 1; i < hdr->e_shnum; i++)
131                 /* Alloc bit cleared means "ignore it." */
132                 if ((sechdrs[i].sh_flags & SHF_ALLOC)
133                     && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
134                         return i;
135         return 0;
136 }
137
138 /* Find a module section, or NULL. */
139 static void *section_addr(Elf_Ehdr *hdr, Elf_Shdr *shdrs,
140                           const char *secstrings, const char *name)
141 {
142         /* Section 0 has sh_addr 0. */
143         return (void *)shdrs[find_sec(hdr, shdrs, secstrings, name)].sh_addr;
144 }
145
146 /* Find a module section, or NULL.  Fill in number of "objects" in section. */
147 static void *section_objs(Elf_Ehdr *hdr,
148                           Elf_Shdr *sechdrs,
149                           const char *secstrings,
150                           const char *name,
151                           size_t object_size,
152                           unsigned int *num)
153 {
154         unsigned int sec = find_sec(hdr, sechdrs, secstrings, name);
155
156         /* Section 0 has sh_addr 0 and sh_size 0. */
157         *num = sechdrs[sec].sh_size / object_size;
158         return (void *)sechdrs[sec].sh_addr;
159 }
160
161 /* Provided by the linker */
162 extern const struct kernel_symbol __start___ksymtab[];
163 extern const struct kernel_symbol __stop___ksymtab[];
164 extern const struct kernel_symbol __start___ksymtab_gpl[];
165 extern const struct kernel_symbol __stop___ksymtab_gpl[];
166 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
167 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
168 extern const struct kernel_symbol __start___ksymtab_gpl_future[];
169 extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
170 extern const unsigned long __start___kcrctab[];
171 extern const unsigned long __start___kcrctab_gpl[];
172 extern const unsigned long __start___kcrctab_gpl_future[];
173 #ifdef CONFIG_UNUSED_SYMBOLS
174 extern const struct kernel_symbol __start___ksymtab_unused[];
175 extern const struct kernel_symbol __stop___ksymtab_unused[];
176 extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
177 extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
178 extern const unsigned long __start___kcrctab_unused[];
179 extern const unsigned long __start___kcrctab_unused_gpl[];
180 #endif
181
182 #ifndef CONFIG_MODVERSIONS
183 #define symversion(base, idx) NULL
184 #else
185 #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
186 #endif
187
188 struct symsearch {
189         const struct kernel_symbol *start, *stop;
190         const unsigned long *crcs;
191         enum {
192                 NOT_GPL_ONLY,
193                 GPL_ONLY,
194                 WILL_BE_GPL_ONLY,
195         } licence;
196         bool unused;
197 };
198
199 static bool each_symbol_in_section(const struct symsearch *arr,
200                                    unsigned int arrsize,
201                                    struct module *owner,
202                                    bool (*fn)(const struct symsearch *syms,
203                                               struct module *owner,
204                                               unsigned int symnum, void *data),
205                                    void *data)
206 {
207         unsigned int i, j;
208
209         for (j = 0; j < arrsize; j++) {
210                 for (i = 0; i < arr[j].stop - arr[j].start; i++)
211                         if (fn(&arr[j], owner, i, data))
212                                 return true;
213         }
214
215         return false;
216 }
217
218 /* Returns true as soon as fn returns true, otherwise false. */
219 static bool each_symbol(bool (*fn)(const struct symsearch *arr,
220                                    struct module *owner,
221                                    unsigned int symnum, void *data),
222                         void *data)
223 {
224         struct module *mod;
225         const struct symsearch arr[] = {
226                 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
227                   NOT_GPL_ONLY, false },
228                 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
229                   __start___kcrctab_gpl,
230                   GPL_ONLY, false },
231                 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
232                   __start___kcrctab_gpl_future,
233                   WILL_BE_GPL_ONLY, false },
234 #ifdef CONFIG_UNUSED_SYMBOLS
235                 { __start___ksymtab_unused, __stop___ksymtab_unused,
236                   __start___kcrctab_unused,
237                   NOT_GPL_ONLY, true },
238                 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
239                   __start___kcrctab_unused_gpl,
240                   GPL_ONLY, true },
241 #endif
242         };
243
244         if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
245                 return true;
246
247         list_for_each_entry_rcu(mod, &modules, list) {
248                 struct symsearch arr[] = {
249                         { mod->syms, mod->syms + mod->num_syms, mod->crcs,
250                           NOT_GPL_ONLY, false },
251                         { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
252                           mod->gpl_crcs,
253                           GPL_ONLY, false },
254                         { mod->gpl_future_syms,
255                           mod->gpl_future_syms + mod->num_gpl_future_syms,
256                           mod->gpl_future_crcs,
257                           WILL_BE_GPL_ONLY, false },
258 #ifdef CONFIG_UNUSED_SYMBOLS
259                         { mod->unused_syms,
260                           mod->unused_syms + mod->num_unused_syms,
261                           mod->unused_crcs,
262                           NOT_GPL_ONLY, true },
263                         { mod->unused_gpl_syms,
264                           mod->unused_gpl_syms + mod->num_unused_gpl_syms,
265                           mod->unused_gpl_crcs,
266                           GPL_ONLY, true },
267 #endif
268                 };
269
270                 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
271                         return true;
272         }
273         return false;
274 }
275
276 struct find_symbol_arg {
277         /* Input */
278         const char *name;
279         bool gplok;
280         bool warn;
281
282         /* Output */
283         struct module *owner;
284         const unsigned long *crc;
285         unsigned long value;
286 };
287
288 static bool find_symbol_in_section(const struct symsearch *syms,
289                                    struct module *owner,
290                                    unsigned int symnum, void *data)
291 {
292         struct find_symbol_arg *fsa = data;
293
294         if (strcmp(syms->start[symnum].name, fsa->name) != 0)
295                 return false;
296
297         if (!fsa->gplok) {
298                 if (syms->licence == GPL_ONLY)
299                         return false;
300                 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
301                         printk(KERN_WARNING "Symbol %s is being used "
302                                "by a non-GPL module, which will not "
303                                "be allowed in the future\n", fsa->name);
304                         printk(KERN_WARNING "Please see the file "
305                                "Documentation/feature-removal-schedule.txt "
306                                "in the kernel source tree for more details.\n");
307                 }
308         }
309
310 #ifdef CONFIG_UNUSED_SYMBOLS
311         if (syms->unused && fsa->warn) {
312                 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
313                        "however this module is using it.\n", fsa->name);
314                 printk(KERN_WARNING
315                        "This symbol will go away in the future.\n");
316                 printk(KERN_WARNING
317                        "Please evalute if this is the right api to use and if "
318                        "it really is, submit a report the linux kernel "
319                        "mailinglist together with submitting your code for "
320                        "inclusion.\n");
321         }
322 #endif
323
324         fsa->owner = owner;
325         fsa->crc = symversion(syms->crcs, symnum);
326         fsa->value = syms->start[symnum].value;
327         return true;
328 }
329
330 /* Find a symbol, return value, (optional) crc and (optional) module
331  * which owns it */
332 static unsigned long find_symbol(const char *name,
333                                  struct module **owner,
334                                  const unsigned long **crc,
335                                  bool gplok,
336                                  bool warn)
337 {
338         struct find_symbol_arg fsa;
339
340         fsa.name = name;
341         fsa.gplok = gplok;
342         fsa.warn = warn;
343
344         if (each_symbol(find_symbol_in_section, &fsa)) {
345                 if (owner)
346                         *owner = fsa.owner;
347                 if (crc)
348                         *crc = fsa.crc;
349                 return fsa.value;
350         }
351
352         DEBUGP("Failed to find symbol %s\n", name);
353         return -ENOENT;
354 }
355
356 /* Search for module by name: must hold module_mutex. */
357 static struct module *find_module(const char *name)
358 {
359         struct module *mod;
360
361         list_for_each_entry(mod, &modules, list) {
362                 if (strcmp(mod->name, name) == 0)
363                         return mod;
364         }
365         return NULL;
366 }
367
368 #ifdef CONFIG_SMP
369 /* Number of blocks used and allocated. */
370 static unsigned int pcpu_num_used, pcpu_num_allocated;
371 /* Size of each block.  -ve means used. */
372 static int *pcpu_size;
373
374 static int split_block(unsigned int i, unsigned short size)
375 {
376         /* Reallocation required? */
377         if (pcpu_num_used + 1 > pcpu_num_allocated) {
378                 int *new;
379
380                 new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
381                                GFP_KERNEL);
382                 if (!new)
383                         return 0;
384
385                 pcpu_num_allocated *= 2;
386                 pcpu_size = new;
387         }
388
389         /* Insert a new subblock */
390         memmove(&pcpu_size[i+1], &pcpu_size[i],
391                 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
392         pcpu_num_used++;
393
394         pcpu_size[i+1] -= size;
395         pcpu_size[i] = size;
396         return 1;
397 }
398
399 static inline unsigned int block_size(int val)
400 {
401         if (val < 0)
402                 return -val;
403         return val;
404 }
405
406 static void *percpu_modalloc(unsigned long size, unsigned long align,
407                              const char *name)
408 {
409         unsigned long extra;
410         unsigned int i;
411         void *ptr;
412
413         if (align > PAGE_SIZE) {
414                 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
415                        name, align, PAGE_SIZE);
416                 align = PAGE_SIZE;
417         }
418
419         ptr = __per_cpu_start;
420         for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
421                 /* Extra for alignment requirement. */
422                 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
423                 BUG_ON(i == 0 && extra != 0);
424
425                 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
426                         continue;
427
428                 /* Transfer extra to previous block. */
429                 if (pcpu_size[i-1] < 0)
430                         pcpu_size[i-1] -= extra;
431                 else
432                         pcpu_size[i-1] += extra;
433                 pcpu_size[i] -= extra;
434                 ptr += extra;
435
436                 /* Split block if warranted */
437                 if (pcpu_size[i] - size > sizeof(unsigned long))
438                         if (!split_block(i, size))
439                                 return NULL;
440
441                 /* Mark allocated */
442                 pcpu_size[i] = -pcpu_size[i];
443                 return ptr;
444         }
445
446         printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
447                size);
448         return NULL;
449 }
450
451 static void percpu_modfree(void *freeme)
452 {
453         unsigned int i;
454         void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
455
456         /* First entry is core kernel percpu data. */
457         for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
458                 if (ptr == freeme) {
459                         pcpu_size[i] = -pcpu_size[i];
460                         goto free;
461                 }
462         }
463         BUG();
464
465  free:
466         /* Merge with previous? */
467         if (pcpu_size[i-1] >= 0) {
468                 pcpu_size[i-1] += pcpu_size[i];
469                 pcpu_num_used--;
470                 memmove(&pcpu_size[i], &pcpu_size[i+1],
471                         (pcpu_num_used - i) * sizeof(pcpu_size[0]));
472                 i--;
473         }
474         /* Merge with next? */
475         if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
476                 pcpu_size[i] += pcpu_size[i+1];
477                 pcpu_num_used--;
478                 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
479                         (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
480         }
481 }
482
483 static unsigned int find_pcpusec(Elf_Ehdr *hdr,
484                                  Elf_Shdr *sechdrs,
485                                  const char *secstrings)
486 {
487         return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
488 }
489
490 static void percpu_modcopy(void *pcpudest, const void *from, unsigned long size)
491 {
492         int cpu;
493
494         for_each_possible_cpu(cpu)
495                 memcpy(pcpudest + per_cpu_offset(cpu), from, size);
496 }
497
498 static int percpu_modinit(void)
499 {
500         pcpu_num_used = 2;
501         pcpu_num_allocated = 2;
502         pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
503                             GFP_KERNEL);
504         /* Static in-kernel percpu data (used). */
505         pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
506         /* Free room. */
507         pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
508         if (pcpu_size[1] < 0) {
509                 printk(KERN_ERR "No per-cpu room for modules.\n");
510                 pcpu_num_used = 1;
511         }
512
513         return 0;
514 }
515 __initcall(percpu_modinit);
516 #else /* ... !CONFIG_SMP */
517 static inline void *percpu_modalloc(unsigned long size, unsigned long align,
518                                     const char *name)
519 {
520         return NULL;
521 }
522 static inline void percpu_modfree(void *pcpuptr)
523 {
524         BUG();
525 }
526 static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
527                                         Elf_Shdr *sechdrs,
528                                         const char *secstrings)
529 {
530         return 0;
531 }
532 static inline void percpu_modcopy(void *pcpudst, const void *src,
533                                   unsigned long size)
534 {
535         /* pcpusec should be 0, and size of that section should be 0. */
536         BUG_ON(size != 0);
537 }
538 #endif /* CONFIG_SMP */
539
540 #define MODINFO_ATTR(field)     \
541 static void setup_modinfo_##field(struct module *mod, const char *s)  \
542 {                                                                     \
543         mod->field = kstrdup(s, GFP_KERNEL);                          \
544 }                                                                     \
545 static ssize_t show_modinfo_##field(struct module_attribute *mattr,   \
546                         struct module *mod, char *buffer)             \
547 {                                                                     \
548         return sprintf(buffer, "%s\n", mod->field);                   \
549 }                                                                     \
550 static int modinfo_##field##_exists(struct module *mod)               \
551 {                                                                     \
552         return mod->field != NULL;                                    \
553 }                                                                     \
554 static void free_modinfo_##field(struct module *mod)                  \
555 {                                                                     \
556         kfree(mod->field);                                            \
557         mod->field = NULL;                                            \
558 }                                                                     \
559 static struct module_attribute modinfo_##field = {                    \
560         .attr = { .name = __stringify(field), .mode = 0444 },         \
561         .show = show_modinfo_##field,                                 \
562         .setup = setup_modinfo_##field,                               \
563         .test = modinfo_##field##_exists,                             \
564         .free = free_modinfo_##field,                                 \
565 };
566
567 MODINFO_ATTR(version);
568 MODINFO_ATTR(srcversion);
569
570 static char last_unloaded_module[MODULE_NAME_LEN+1];
571
572 #ifdef CONFIG_MODULE_UNLOAD
573 /* Init the unload section of the module. */
574 static void module_unload_init(struct module *mod)
575 {
576         unsigned int i;
577
578         INIT_LIST_HEAD(&mod->modules_which_use_me);
579         for (i = 0; i < NR_CPUS; i++)
580                 local_set(&mod->ref[i].count, 0);
581         /* Hold reference count during initialization. */
582         local_set(&mod->ref[raw_smp_processor_id()].count, 1);
583         /* Backwards compatibility macros put refcount during init. */
584         mod->waiter = current;
585 }
586
587 /* modules using other modules */
588 struct module_use
589 {
590         struct list_head list;
591         struct module *module_which_uses;
592 };
593
594 /* Does a already use b? */
595 static int already_uses(struct module *a, struct module *b)
596 {
597         struct module_use *use;
598
599         list_for_each_entry(use, &b->modules_which_use_me, list) {
600                 if (use->module_which_uses == a) {
601                         DEBUGP("%s uses %s!\n", a->name, b->name);
602                         return 1;
603                 }
604         }
605         DEBUGP("%s does not use %s!\n", a->name, b->name);
606         return 0;
607 }
608
609 /* Module a uses b */
610 static int use_module(struct module *a, struct module *b)
611 {
612         struct module_use *use;
613         int no_warn, err;
614
615         if (b == NULL || already_uses(a, b)) return 1;
616
617         /* If we're interrupted or time out, we fail. */
618         if (wait_event_interruptible_timeout(
619                     module_wq, (err = strong_try_module_get(b)) != -EBUSY,
620                     30 * HZ) <= 0) {
621                 printk("%s: gave up waiting for init of module %s.\n",
622                        a->name, b->name);
623                 return 0;
624         }
625
626         /* If strong_try_module_get() returned a different error, we fail. */
627         if (err)
628                 return 0;
629
630         DEBUGP("Allocating new usage for %s.\n", a->name);
631         use = kmalloc(sizeof(*use), GFP_ATOMIC);
632         if (!use) {
633                 printk("%s: out of memory loading\n", a->name);
634                 module_put(b);
635                 return 0;
636         }
637
638         use->module_which_uses = a;
639         list_add(&use->list, &b->modules_which_use_me);
640         no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
641         return 1;
642 }
643
644 /* Clear the unload stuff of the module. */
645 static void module_unload_free(struct module *mod)
646 {
647         struct module *i;
648
649         list_for_each_entry(i, &modules, list) {
650                 struct module_use *use;
651
652                 list_for_each_entry(use, &i->modules_which_use_me, list) {
653                         if (use->module_which_uses == mod) {
654                                 DEBUGP("%s unusing %s\n", mod->name, i->name);
655                                 module_put(i);
656                                 list_del(&use->list);
657                                 kfree(use);
658                                 sysfs_remove_link(i->holders_dir, mod->name);
659                                 /* There can be at most one match. */
660                                 break;
661                         }
662                 }
663         }
664 }
665
666 #ifdef CONFIG_MODULE_FORCE_UNLOAD
667 static inline int try_force_unload(unsigned int flags)
668 {
669         int ret = (flags & O_TRUNC);
670         if (ret)
671                 add_taint(TAINT_FORCED_RMMOD);
672         return ret;
673 }
674 #else
675 static inline int try_force_unload(unsigned int flags)
676 {
677         return 0;
678 }
679 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
680
681 struct stopref
682 {
683         struct module *mod;
684         int flags;
685         int *forced;
686 };
687
688 /* Whole machine is stopped with interrupts off when this runs. */
689 static int __try_stop_module(void *_sref)
690 {
691         struct stopref *sref = _sref;
692
693         /* If it's not unused, quit unless we're forcing. */
694         if (module_refcount(sref->mod) != 0) {
695                 if (!(*sref->forced = try_force_unload(sref->flags)))
696                         return -EWOULDBLOCK;
697         }
698
699         /* Mark it as dying. */
700         sref->mod->state = MODULE_STATE_GOING;
701         return 0;
702 }
703
704 static int try_stop_module(struct module *mod, int flags, int *forced)
705 {
706         if (flags & O_NONBLOCK) {
707                 struct stopref sref = { mod, flags, forced };
708
709                 return stop_machine(__try_stop_module, &sref, NULL);
710         } else {
711                 /* We don't need to stop the machine for this. */
712                 mod->state = MODULE_STATE_GOING;
713                 synchronize_sched();
714                 return 0;
715         }
716 }
717
718 unsigned int module_refcount(struct module *mod)
719 {
720         unsigned int i, total = 0;
721
722         for (i = 0; i < NR_CPUS; i++)
723                 total += local_read(&mod->ref[i].count);
724         return total;
725 }
726 EXPORT_SYMBOL(module_refcount);
727
728 /* This exists whether we can unload or not */
729 static void free_module(struct module *mod);
730
731 static void wait_for_zero_refcount(struct module *mod)
732 {
733         /* Since we might sleep for some time, release the mutex first */
734         mutex_unlock(&module_mutex);
735         for (;;) {
736                 DEBUGP("Looking at refcount...\n");
737                 set_current_state(TASK_UNINTERRUPTIBLE);
738                 if (module_refcount(mod) == 0)
739                         break;
740                 schedule();
741         }
742         current->state = TASK_RUNNING;
743         mutex_lock(&module_mutex);
744 }
745
746 asmlinkage long
747 sys_delete_module(const char __user *name_user, unsigned int flags)
748 {
749         struct module *mod;
750         char name[MODULE_NAME_LEN];
751         int ret, forced = 0;
752
753         if (!capable(CAP_SYS_MODULE))
754                 return -EPERM;
755
756         if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
757                 return -EFAULT;
758         name[MODULE_NAME_LEN-1] = '\0';
759
760         /* Create stop_machine threads since free_module relies on
761          * a non-failing stop_machine call. */
762         ret = stop_machine_create();
763         if (ret)
764                 return ret;
765
766         if (mutex_lock_interruptible(&module_mutex) != 0) {
767                 ret = -EINTR;
768                 goto out_stop;
769         }
770
771         mod = find_module(name);
772         if (!mod) {
773                 ret = -ENOENT;
774                 goto out;
775         }
776
777         if (!list_empty(&mod->modules_which_use_me)) {
778                 /* Other modules depend on us: get rid of them first. */
779                 ret = -EWOULDBLOCK;
780                 goto out;
781         }
782
783         /* Doing init or already dying? */
784         if (mod->state != MODULE_STATE_LIVE) {
785                 /* FIXME: if (force), slam module count and wake up
786                    waiter --RR */
787                 DEBUGP("%s already dying\n", mod->name);
788                 ret = -EBUSY;
789                 goto out;
790         }
791
792         /* If it has an init func, it must have an exit func to unload */
793         if (mod->init && !mod->exit) {
794                 forced = try_force_unload(flags);
795                 if (!forced) {
796                         /* This module can't be removed */
797                         ret = -EBUSY;
798                         goto out;
799                 }
800         }
801
802         /* Set this up before setting mod->state */
803         mod->waiter = current;
804
805         /* Stop the machine so refcounts can't move and disable module. */
806         ret = try_stop_module(mod, flags, &forced);
807         if (ret != 0)
808                 goto out;
809
810         /* Never wait if forced. */
811         if (!forced && module_refcount(mod) != 0)
812                 wait_for_zero_refcount(mod);
813
814         mutex_unlock(&module_mutex);
815         /* Final destruction now noone is using it. */
816         if (mod->exit != NULL)
817                 mod->exit();
818         blocking_notifier_call_chain(&module_notify_list,
819                                      MODULE_STATE_GOING, mod);
820         async_synchronize_full();
821         mutex_lock(&module_mutex);
822         /* Store the name of the last unloaded module for diagnostic purposes */
823         strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
824         unregister_dynamic_debug_module(mod->name);
825         free_module(mod);
826
827  out:
828         mutex_unlock(&module_mutex);
829 out_stop:
830         stop_machine_destroy();
831         return ret;
832 }
833
834 static inline void print_unload_info(struct seq_file *m, struct module *mod)
835 {
836         struct module_use *use;
837         int printed_something = 0;
838
839         seq_printf(m, " %u ", module_refcount(mod));
840
841         /* Always include a trailing , so userspace can differentiate
842            between this and the old multi-field proc format. */
843         list_for_each_entry(use, &mod->modules_which_use_me, list) {
844                 printed_something = 1;
845                 seq_printf(m, "%s,", use->module_which_uses->name);
846         }
847
848         if (mod->init != NULL && mod->exit == NULL) {
849                 printed_something = 1;
850                 seq_printf(m, "[permanent],");
851         }
852
853         if (!printed_something)
854                 seq_printf(m, "-");
855 }
856
857 void __symbol_put(const char *symbol)
858 {
859         struct module *owner;
860
861         preempt_disable();
862         if (IS_ERR_VALUE(find_symbol(symbol, &owner, NULL, true, false)))
863                 BUG();
864         module_put(owner);
865         preempt_enable();
866 }
867 EXPORT_SYMBOL(__symbol_put);
868
869 void symbol_put_addr(void *addr)
870 {
871         struct module *modaddr;
872
873         if (core_kernel_text((unsigned long)addr))
874                 return;
875
876         if (!(modaddr = module_text_address((unsigned long)addr)))
877                 BUG();
878         module_put(modaddr);
879 }
880 EXPORT_SYMBOL_GPL(symbol_put_addr);
881
882 static ssize_t show_refcnt(struct module_attribute *mattr,
883                            struct module *mod, char *buffer)
884 {
885         return sprintf(buffer, "%u\n", module_refcount(mod));
886 }
887
888 static struct module_attribute refcnt = {
889         .attr = { .name = "refcnt", .mode = 0444 },
890         .show = show_refcnt,
891 };
892
893 void module_put(struct module *module)
894 {
895         if (module) {
896                 unsigned int cpu = get_cpu();
897                 local_dec(&module->ref[cpu].count);
898                 /* Maybe they're waiting for us to drop reference? */
899                 if (unlikely(!module_is_live(module)))
900                         wake_up_process(module->waiter);
901                 put_cpu();
902         }
903 }
904 EXPORT_SYMBOL(module_put);
905
906 #else /* !CONFIG_MODULE_UNLOAD */
907 static inline void print_unload_info(struct seq_file *m, struct module *mod)
908 {
909         /* We don't know the usage count, or what modules are using. */
910         seq_printf(m, " - -");
911 }
912
913 static inline void module_unload_free(struct module *mod)
914 {
915 }
916
917 static inline int use_module(struct module *a, struct module *b)
918 {
919         return strong_try_module_get(b) == 0;
920 }
921
922 static inline void module_unload_init(struct module *mod)
923 {
924 }
925 #endif /* CONFIG_MODULE_UNLOAD */
926
927 static ssize_t show_initstate(struct module_attribute *mattr,
928                            struct module *mod, char *buffer)
929 {
930         const char *state = "unknown";
931
932         switch (mod->state) {
933         case MODULE_STATE_LIVE:
934                 state = "live";
935                 break;
936         case MODULE_STATE_COMING:
937                 state = "coming";
938                 break;
939         case MODULE_STATE_GOING:
940                 state = "going";
941                 break;
942         }
943         return sprintf(buffer, "%s\n", state);
944 }
945
946 static struct module_attribute initstate = {
947         .attr = { .name = "initstate", .mode = 0444 },
948         .show = show_initstate,
949 };
950
951 static struct module_attribute *modinfo_attrs[] = {
952         &modinfo_version,
953         &modinfo_srcversion,
954         &initstate,
955 #ifdef CONFIG_MODULE_UNLOAD
956         &refcnt,
957 #endif
958         NULL,
959 };
960
961 static const char vermagic[] = VERMAGIC_STRING;
962
963 static int try_to_force_load(struct module *mod, const char *symname)
964 {
965 #ifdef CONFIG_MODULE_FORCE_LOAD
966         if (!test_taint(TAINT_FORCED_MODULE))
967                 printk("%s: no version for \"%s\" found: kernel tainted.\n",
968                        mod->name, symname);
969         add_taint_module(mod, TAINT_FORCED_MODULE);
970         return 0;
971 #else
972         return -ENOEXEC;
973 #endif
974 }
975
976 #ifdef CONFIG_MODVERSIONS
977 static int check_version(Elf_Shdr *sechdrs,
978                          unsigned int versindex,
979                          const char *symname,
980                          struct module *mod, 
981                          const unsigned long *crc)
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
990         /* No versions at all?  modprobe --force does this. */
991         if (versindex == 0)
992                 return try_to_force_load(mod, symname) == 0;
993
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
1002                 if (versions[i].crc == *crc)
1003                         return 1;
1004                 DEBUGP("Found checksum %lX vs module %lX\n",
1005                        *crc, versions[i].crc);
1006                 goto bad_version;
1007         }
1008
1009         printk(KERN_WARNING "%s: no symbol version for %s\n",
1010                mod->name, symname);
1011         return 0;
1012
1013 bad_version:
1014         printk("%s: disagrees about version of symbol %s\n",
1015                mod->name, symname);
1016         return 0;
1017 }
1018
1019 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1020                                           unsigned int versindex,
1021                                           struct module *mod)
1022 {
1023         const unsigned long *crc;
1024
1025         if (IS_ERR_VALUE(find_symbol("struct_module", NULL, &crc, true, false)))
1026                 BUG();
1027         return check_version(sechdrs, versindex, "struct_module", mod, crc);
1028 }
1029
1030 /* First part is kernel version, which we ignore if module has crcs. */
1031 static inline int same_magic(const char *amagic, const char *bmagic,
1032                              bool has_crcs)
1033 {
1034         if (has_crcs) {
1035                 amagic += strcspn(amagic, " ");
1036                 bmagic += strcspn(bmagic, " ");
1037         }
1038         return strcmp(amagic, bmagic) == 0;
1039 }
1040 #else
1041 static inline int check_version(Elf_Shdr *sechdrs,
1042                                 unsigned int versindex,
1043                                 const char *symname,
1044                                 struct module *mod, 
1045                                 const unsigned long *crc)
1046 {
1047         return 1;
1048 }
1049
1050 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
1051                                           unsigned int versindex,
1052                                           struct module *mod)
1053 {
1054         return 1;
1055 }
1056
1057 static inline int same_magic(const char *amagic, const char *bmagic,
1058                              bool has_crcs)
1059 {
1060         return strcmp(amagic, bmagic) == 0;
1061 }
1062 #endif /* CONFIG_MODVERSIONS */
1063
1064 /* Resolve a symbol for this module.  I.e. if we find one, record usage.
1065    Must be holding module_mutex. */
1066 static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
1067                                     unsigned int versindex,
1068                                     const char *name,
1069                                     struct module *mod)
1070 {
1071         struct module *owner;
1072         unsigned long ret;
1073         const unsigned long *crc;
1074
1075         ret = find_symbol(name, &owner, &crc,
1076                           !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
1077         if (!IS_ERR_VALUE(ret)) {
1078                 /* use_module can fail due to OOM,
1079                    or module initialization or unloading */
1080                 if (!check_version(sechdrs, versindex, name, mod, crc) ||
1081                     !use_module(mod, owner))
1082                         ret = -EINVAL;
1083         }
1084         return ret;
1085 }
1086
1087 /*
1088  * /sys/module/foo/sections stuff
1089  * J. Corbet <corbet@lwn.net>
1090  */
1091 #if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
1092 struct module_sect_attr
1093 {
1094         struct module_attribute mattr;
1095         char *name;
1096         unsigned long address;
1097 };
1098
1099 struct module_sect_attrs
1100 {
1101         struct attribute_group grp;
1102         unsigned int nsections;
1103         struct module_sect_attr attrs[0];
1104 };
1105
1106 static ssize_t module_sect_show(struct module_attribute *mattr,
1107                                 struct module *mod, char *buf)
1108 {
1109         struct module_sect_attr *sattr =
1110                 container_of(mattr, struct module_sect_attr, mattr);
1111         return sprintf(buf, "0x%lx\n", sattr->address);
1112 }
1113
1114 static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1115 {
1116         unsigned int section;
1117
1118         for (section = 0; section < sect_attrs->nsections; section++)
1119                 kfree(sect_attrs->attrs[section].name);
1120         kfree(sect_attrs);
1121 }
1122
1123 static void add_sect_attrs(struct module *mod, unsigned int nsect,
1124                 char *secstrings, Elf_Shdr *sechdrs)
1125 {
1126         unsigned int nloaded = 0, i, size[2];
1127         struct module_sect_attrs *sect_attrs;
1128         struct module_sect_attr *sattr;
1129         struct attribute **gattr;
1130
1131         /* Count loaded sections and allocate structures */
1132         for (i = 0; i < nsect; i++)
1133                 if (sechdrs[i].sh_flags & SHF_ALLOC)
1134                         nloaded++;
1135         size[0] = ALIGN(sizeof(*sect_attrs)
1136                         + nloaded * sizeof(sect_attrs->attrs[0]),
1137                         sizeof(sect_attrs->grp.attrs[0]));
1138         size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
1139         sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1140         if (sect_attrs == NULL)
1141                 return;
1142
1143         /* Setup section attributes. */
1144         sect_attrs->grp.name = "sections";
1145         sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1146
1147         sect_attrs->nsections = 0;
1148         sattr = &sect_attrs->attrs[0];
1149         gattr = &sect_attrs->grp.attrs[0];
1150         for (i = 0; i < nsect; i++) {
1151                 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1152                         continue;
1153                 sattr->address = sechdrs[i].sh_addr;
1154                 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1155                                         GFP_KERNEL);
1156                 if (sattr->name == NULL)
1157                         goto out;
1158                 sect_attrs->nsections++;
1159                 sattr->mattr.show = module_sect_show;
1160                 sattr->mattr.store = NULL;
1161                 sattr->mattr.attr.name = sattr->name;
1162                 sattr->mattr.attr.mode = S_IRUGO;
1163                 *(gattr++) = &(sattr++)->mattr.attr;
1164         }
1165         *gattr = NULL;
1166
1167         if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1168                 goto out;
1169
1170         mod->sect_attrs = sect_attrs;
1171         return;
1172   out:
1173         free_sect_attrs(sect_attrs);
1174 }
1175
1176 static void remove_sect_attrs(struct module *mod)
1177 {
1178         if (mod->sect_attrs) {
1179                 sysfs_remove_group(&mod->mkobj.kobj,
1180                                    &mod->sect_attrs->grp);
1181                 /* We are positive that no one is using any sect attrs
1182                  * at this point.  Deallocate immediately. */
1183                 free_sect_attrs(mod->sect_attrs);
1184                 mod->sect_attrs = NULL;
1185         }
1186 }
1187
1188 /*
1189  * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1190  */
1191
1192 struct module_notes_attrs {
1193         struct kobject *dir;
1194         unsigned int notes;
1195         struct bin_attribute attrs[0];
1196 };
1197
1198 static ssize_t module_notes_read(struct kobject *kobj,
1199                                  struct bin_attribute *bin_attr,
1200                                  char *buf, loff_t pos, size_t count)
1201 {
1202         /*
1203          * The caller checked the pos and count against our size.
1204          */
1205         memcpy(buf, bin_attr->private + pos, count);
1206         return count;
1207 }
1208
1209 static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1210                              unsigned int i)
1211 {
1212         if (notes_attrs->dir) {
1213                 while (i-- > 0)
1214                         sysfs_remove_bin_file(notes_attrs->dir,
1215                                               &notes_attrs->attrs[i]);
1216                 kobject_put(notes_attrs->dir);
1217         }
1218         kfree(notes_attrs);
1219 }
1220
1221 static void add_notes_attrs(struct module *mod, unsigned int nsect,
1222                             char *secstrings, Elf_Shdr *sechdrs)
1223 {
1224         unsigned int notes, loaded, i;
1225         struct module_notes_attrs *notes_attrs;
1226         struct bin_attribute *nattr;
1227
1228         /* Count notes sections and allocate structures.  */
1229         notes = 0;
1230         for (i = 0; i < nsect; i++)
1231                 if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
1232                     (sechdrs[i].sh_type == SHT_NOTE))
1233                         ++notes;
1234
1235         if (notes == 0)
1236                 return;
1237
1238         notes_attrs = kzalloc(sizeof(*notes_attrs)
1239                               + notes * sizeof(notes_attrs->attrs[0]),
1240                               GFP_KERNEL);
1241         if (notes_attrs == NULL)
1242                 return;
1243
1244         notes_attrs->notes = notes;
1245         nattr = &notes_attrs->attrs[0];
1246         for (loaded = i = 0; i < nsect; ++i) {
1247                 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1248                         continue;
1249                 if (sechdrs[i].sh_type == SHT_NOTE) {
1250                         nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1251                         nattr->attr.mode = S_IRUGO;
1252                         nattr->size = sechdrs[i].sh_size;
1253                         nattr->private = (void *) sechdrs[i].sh_addr;
1254                         nattr->read = module_notes_read;
1255                         ++nattr;
1256                 }
1257                 ++loaded;
1258         }
1259
1260         notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
1261         if (!notes_attrs->dir)
1262                 goto out;
1263
1264         for (i = 0; i < notes; ++i)
1265                 if (sysfs_create_bin_file(notes_attrs->dir,
1266                                           &notes_attrs->attrs[i]))
1267                         goto out;
1268
1269         mod->notes_attrs = notes_attrs;
1270         return;
1271
1272   out:
1273         free_notes_attrs(notes_attrs, i);
1274 }
1275
1276 static void remove_notes_attrs(struct module *mod)
1277 {
1278         if (mod->notes_attrs)
1279                 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1280 }
1281
1282 #else
1283
1284 static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1285                 char *sectstrings, Elf_Shdr *sechdrs)
1286 {
1287 }
1288
1289 static inline void remove_sect_attrs(struct module *mod)
1290 {
1291 }
1292
1293 static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1294                                    char *sectstrings, Elf_Shdr *sechdrs)
1295 {
1296 }
1297
1298 static inline void remove_notes_attrs(struct module *mod)
1299 {
1300 }
1301 #endif
1302
1303 #ifdef CONFIG_SYSFS
1304 int module_add_modinfo_attrs(struct module *mod)
1305 {
1306         struct module_attribute *attr;
1307         struct module_attribute *temp_attr;
1308         int error = 0;
1309         int i;
1310
1311         mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1312                                         (ARRAY_SIZE(modinfo_attrs) + 1)),
1313                                         GFP_KERNEL);
1314         if (!mod->modinfo_attrs)
1315                 return -ENOMEM;
1316
1317         temp_attr = mod->modinfo_attrs;
1318         for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1319                 if (!attr->test ||
1320                     (attr->test && attr->test(mod))) {
1321                         memcpy(temp_attr, attr, sizeof(*temp_attr));
1322                         error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1323                         ++temp_attr;
1324                 }
1325         }
1326         return error;
1327 }
1328
1329 void module_remove_modinfo_attrs(struct module *mod)
1330 {
1331         struct module_attribute *attr;
1332         int i;
1333
1334         for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1335                 /* pick a field to test for end of list */
1336                 if (!attr->attr.name)
1337                         break;
1338                 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
1339                 if (attr->free)
1340                         attr->free(mod);
1341         }
1342         kfree(mod->modinfo_attrs);
1343 }
1344
1345 int mod_sysfs_init(struct module *mod)
1346 {
1347         int err;
1348         struct kobject *kobj;
1349
1350         if (!module_sysfs_initialized) {
1351                 printk(KERN_ERR "%s: module sysfs not initialized\n",
1352                        mod->name);
1353                 err = -EINVAL;
1354                 goto out;
1355         }
1356
1357         kobj = kset_find_obj(module_kset, mod->name);
1358         if (kobj) {
1359                 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1360                 kobject_put(kobj);
1361                 err = -EINVAL;
1362                 goto out;
1363         }
1364
1365         mod->mkobj.mod = mod;
1366
1367         memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1368         mod->mkobj.kobj.kset = module_kset;
1369         err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1370                                    "%s", mod->name);
1371         if (err)
1372                 kobject_put(&mod->mkobj.kobj);
1373
1374         /* delay uevent until full sysfs population */
1375 out:
1376         return err;
1377 }
1378
1379 int mod_sysfs_setup(struct module *mod,
1380                            struct kernel_param *kparam,
1381                            unsigned int num_params)
1382 {
1383         int err;
1384
1385         mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
1386         if (!mod->holders_dir) {
1387                 err = -ENOMEM;
1388                 goto out_unreg;
1389         }
1390
1391         err = module_param_sysfs_setup(mod, kparam, num_params);
1392         if (err)
1393                 goto out_unreg_holders;
1394
1395         err = module_add_modinfo_attrs(mod);
1396         if (err)
1397                 goto out_unreg_param;
1398
1399         kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
1400         return 0;
1401
1402 out_unreg_param:
1403         module_param_sysfs_remove(mod);
1404 out_unreg_holders:
1405         kobject_put(mod->holders_dir);
1406 out_unreg:
1407         kobject_put(&mod->mkobj.kobj);
1408         return err;
1409 }
1410
1411 static void mod_sysfs_fini(struct module *mod)
1412 {
1413         kobject_put(&mod->mkobj.kobj);
1414 }
1415
1416 #else /* CONFIG_SYSFS */
1417
1418 static void mod_sysfs_fini(struct module *mod)
1419 {
1420 }
1421
1422 #endif /* CONFIG_SYSFS */
1423
1424 static void mod_kobject_remove(struct module *mod)
1425 {
1426         module_remove_modinfo_attrs(mod);
1427         module_param_sysfs_remove(mod);
1428         kobject_put(mod->mkobj.drivers_dir);
1429         kobject_put(mod->holders_dir);
1430         mod_sysfs_fini(mod);
1431 }
1432
1433 /*
1434  * unlink the module with the whole machine is stopped with interrupts off
1435  * - this defends against kallsyms not taking locks
1436  */
1437 static int __unlink_module(void *_mod)
1438 {
1439         struct module *mod = _mod;
1440         list_del(&mod->list);
1441         return 0;
1442 }
1443
1444 /* Free a module, remove from lists, etc (must hold module_mutex). */
1445 static void free_module(struct module *mod)
1446 {
1447         /* Delete from various lists */
1448         stop_machine(__unlink_module, mod, NULL);
1449         remove_notes_attrs(mod);
1450         remove_sect_attrs(mod);
1451         mod_kobject_remove(mod);
1452
1453         /* Arch-specific cleanup. */
1454         module_arch_cleanup(mod);
1455
1456         /* Module unload stuff */
1457         module_unload_free(mod);
1458
1459         /* release any pointers to mcount in this module */
1460         ftrace_release(mod->module_core, mod->core_size);
1461
1462         /* This may be NULL, but that's OK */
1463         module_free(mod, mod->module_init);
1464         kfree(mod->args);
1465         if (mod->percpu)
1466                 percpu_modfree(mod->percpu);
1467
1468         /* Free lock-classes: */
1469         lockdep_free_key_range(mod->module_core, mod->core_size);
1470
1471         /* Finally, free the core (containing the module structure) */
1472         module_free(mod, mod->module_core);
1473 }
1474
1475 void *__symbol_get(const char *symbol)
1476 {
1477         struct module *owner;
1478         unsigned long value;
1479
1480         preempt_disable();
1481         value = find_symbol(symbol, &owner, NULL, true, true);
1482         if (IS_ERR_VALUE(value))
1483                 value = 0;
1484         else if (strong_try_module_get(owner))
1485                 value = 0;
1486         preempt_enable();
1487
1488         return (void *)value;
1489 }
1490 EXPORT_SYMBOL_GPL(__symbol_get);
1491
1492 /*
1493  * Ensure that an exported symbol [global namespace] does not already exist
1494  * in the kernel or in some other module's exported symbol table.
1495  */
1496 static int verify_export_symbols(struct module *mod)
1497 {
1498         unsigned int i;
1499         struct module *owner;
1500         const struct kernel_symbol *s;
1501         struct {
1502                 const struct kernel_symbol *sym;
1503                 unsigned int num;
1504         } arr[] = {
1505                 { mod->syms, mod->num_syms },
1506                 { mod->gpl_syms, mod->num_gpl_syms },
1507                 { mod->gpl_future_syms, mod->num_gpl_future_syms },
1508 #ifdef CONFIG_UNUSED_SYMBOLS
1509                 { mod->unused_syms, mod->num_unused_syms },
1510                 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
1511 #endif
1512         };
1513
1514         for (i = 0; i < ARRAY_SIZE(arr); i++) {
1515                 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
1516                         if (!IS_ERR_VALUE(find_symbol(s->name, &owner,
1517                                                       NULL, true, false))) {
1518                                 printk(KERN_ERR
1519                                        "%s: exports duplicate symbol %s"
1520                                        " (owned by %s)\n",
1521                                        mod->name, s->name, module_name(owner));
1522                                 return -ENOEXEC;
1523                         }
1524                 }
1525         }
1526         return 0;
1527 }
1528
1529 /* Change all symbols so that st_value encodes the pointer directly. */
1530 static int simplify_symbols(Elf_Shdr *sechdrs,
1531                             unsigned int symindex,
1532                             const char *strtab,
1533                             unsigned int versindex,
1534                             unsigned int pcpuindex,
1535                             struct module *mod)
1536 {
1537         Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1538         unsigned long secbase;
1539         unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1540         int ret = 0;
1541
1542         for (i = 1; i < n; i++) {
1543                 switch (sym[i].st_shndx) {
1544                 case SHN_COMMON:
1545                         /* We compiled with -fno-common.  These are not
1546                            supposed to happen.  */
1547                         DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1548                         printk("%s: please compile with -fno-common\n",
1549                                mod->name);
1550                         ret = -ENOEXEC;
1551                         break;
1552
1553                 case SHN_ABS:
1554                         /* Don't need to do anything */
1555                         DEBUGP("Absolute symbol: 0x%08lx\n",
1556                                (long)sym[i].st_value);
1557                         break;
1558
1559                 case SHN_UNDEF:
1560                         sym[i].st_value
1561                           = resolve_symbol(sechdrs, versindex,
1562                                            strtab + sym[i].st_name, mod);
1563
1564                         /* Ok if resolved.  */
1565                         if (!IS_ERR_VALUE(sym[i].st_value))
1566                                 break;
1567                         /* Ok if weak.  */
1568                         if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1569                                 break;
1570
1571                         printk(KERN_WARNING "%s: Unknown symbol %s\n",
1572                                mod->name, strtab + sym[i].st_name);
1573                         ret = -ENOENT;
1574                         break;
1575
1576                 default:
1577                         /* Divert to percpu allocation if a percpu var. */
1578                         if (sym[i].st_shndx == pcpuindex)
1579                                 secbase = (unsigned long)mod->percpu;
1580                         else
1581                                 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1582                         sym[i].st_value += secbase;
1583                         break;
1584                 }
1585         }
1586
1587         return ret;
1588 }
1589
1590 /* Additional bytes needed by arch in front of individual sections */
1591 unsigned int __weak arch_mod_section_prepend(struct module *mod,
1592                                              unsigned int section)
1593 {
1594         /* default implementation just returns zero */
1595         return 0;
1596 }
1597
1598 /* Update size with this section: return offset. */
1599 static long get_offset(struct module *mod, unsigned int *size,
1600                        Elf_Shdr *sechdr, unsigned int section)
1601 {
1602         long ret;
1603
1604         *size += arch_mod_section_prepend(mod, section);
1605         ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1606         *size = ret + sechdr->sh_size;
1607         return ret;
1608 }
1609
1610 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1611    might -- code, read-only data, read-write data, small data.  Tally
1612    sizes, and place the offsets into sh_entsize fields: high bit means it
1613    belongs in init. */
1614 static void layout_sections(struct module *mod,
1615                             const Elf_Ehdr *hdr,
1616                             Elf_Shdr *sechdrs,
1617                             const char *secstrings)
1618 {
1619         static unsigned long const masks[][2] = {
1620                 /* NOTE: all executable code must be the first section
1621                  * in this array; otherwise modify the text_size
1622                  * finder in the two loops below */
1623                 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1624                 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1625                 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1626                 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1627         };
1628         unsigned int m, i;
1629
1630         for (i = 0; i < hdr->e_shnum; i++)
1631                 sechdrs[i].sh_entsize = ~0UL;
1632
1633         DEBUGP("Core section allocation order:\n");
1634         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1635                 for (i = 0; i < hdr->e_shnum; ++i) {
1636                         Elf_Shdr *s = &sechdrs[i];
1637
1638                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
1639                             || (s->sh_flags & masks[m][1])
1640                             || s->sh_entsize != ~0UL
1641                             || strncmp(secstrings + s->sh_name,
1642                                        ".init", 5) == 0)
1643                                 continue;
1644                         s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
1645                         DEBUGP("\t%s\n", secstrings + s->sh_name);
1646                 }
1647                 if (m == 0)
1648                         mod->core_text_size = mod->core_size;
1649         }
1650
1651         DEBUGP("Init section allocation order:\n");
1652         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1653                 for (i = 0; i < hdr->e_shnum; ++i) {
1654                         Elf_Shdr *s = &sechdrs[i];
1655
1656                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
1657                             || (s->sh_flags & masks[m][1])
1658                             || s->sh_entsize != ~0UL
1659                             || strncmp(secstrings + s->sh_name,
1660                                        ".init", 5) != 0)
1661                                 continue;
1662                         s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
1663                                          | INIT_OFFSET_MASK);
1664                         DEBUGP("\t%s\n", secstrings + s->sh_name);
1665                 }
1666                 if (m == 0)
1667                         mod->init_text_size = mod->init_size;
1668         }
1669 }
1670
1671 static void set_license(struct module *mod, const char *license)
1672 {
1673         if (!license)
1674                 license = "unspecified";
1675
1676         if (!license_is_gpl_compatible(license)) {
1677                 if (!test_taint(TAINT_PROPRIETARY_MODULE))
1678                         printk(KERN_WARNING "%s: module license '%s' taints "
1679                                 "kernel.\n", mod->name, license);
1680                 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
1681         }
1682 }
1683
1684 /* Parse tag=value strings from .modinfo section */
1685 static char *next_string(char *string, unsigned long *secsize)
1686 {
1687         /* Skip non-zero chars */
1688         while (string[0]) {
1689                 string++;
1690                 if ((*secsize)-- <= 1)
1691                         return NULL;
1692         }
1693
1694         /* Skip any zero padding. */
1695         while (!string[0]) {
1696                 string++;
1697                 if ((*secsize)-- <= 1)
1698                         return NULL;
1699         }
1700         return string;
1701 }
1702
1703 static char *get_modinfo(Elf_Shdr *sechdrs,
1704                          unsigned int info,
1705                          const char *tag)
1706 {
1707         char *p;
1708         unsigned int taglen = strlen(tag);
1709         unsigned long size = sechdrs[info].sh_size;
1710
1711         for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1712                 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1713                         return p + taglen + 1;
1714         }
1715         return NULL;
1716 }
1717
1718 static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1719                           unsigned int infoindex)
1720 {
1721         struct module_attribute *attr;
1722         int i;
1723
1724         for (i = 0; (attr = modinfo_attrs[i]); i++) {
1725                 if (attr->setup)
1726                         attr->setup(mod,
1727                                     get_modinfo(sechdrs,
1728                                                 infoindex,
1729                                                 attr->attr.name));
1730         }
1731 }
1732
1733 #ifdef CONFIG_KALLSYMS
1734
1735 /* lookup symbol in given range of kernel_symbols */
1736 static const struct kernel_symbol *lookup_symbol(const char *name,
1737         const struct kernel_symbol *start,
1738         const struct kernel_symbol *stop)
1739 {
1740         const struct kernel_symbol *ks = start;
1741         for (; ks < stop; ks++)
1742                 if (strcmp(ks->name, name) == 0)
1743                         return ks;
1744         return NULL;
1745 }
1746
1747 static int is_exported(const char *name, unsigned long value,
1748                        const struct module *mod)
1749 {
1750         const struct kernel_symbol *ks;
1751         if (!mod)
1752                 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
1753         else
1754                 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
1755         return ks != NULL && ks->value == value;
1756 }
1757
1758 /* As per nm */
1759 static char elf_type(const Elf_Sym *sym,
1760                      Elf_Shdr *sechdrs,
1761                      const char *secstrings,
1762                      struct module *mod)
1763 {
1764         if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1765                 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1766                         return 'v';
1767                 else
1768                         return 'w';
1769         }
1770         if (sym->st_shndx == SHN_UNDEF)
1771                 return 'U';
1772         if (sym->st_shndx == SHN_ABS)
1773                 return 'a';
1774         if (sym->st_shndx >= SHN_LORESERVE)
1775                 return '?';
1776         if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1777                 return 't';
1778         if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1779             && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1780                 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1781                         return 'r';
1782                 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1783                         return 'g';
1784                 else
1785                         return 'd';
1786         }
1787         if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1788                 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1789                         return 's';
1790                 else
1791                         return 'b';
1792         }
1793         if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1794                     ".debug", strlen(".debug")) == 0)
1795                 return 'n';
1796         return '?';
1797 }
1798
1799 static void add_kallsyms(struct module *mod,
1800                          Elf_Shdr *sechdrs,
1801                          unsigned int symindex,
1802                          unsigned int strindex,
1803                          const char *secstrings)
1804 {
1805         unsigned int i;
1806
1807         mod->symtab = (void *)sechdrs[symindex].sh_addr;
1808         mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1809         mod->strtab = (void *)sechdrs[strindex].sh_addr;
1810
1811         /* Set types up while we still have access to sections. */
1812         for (i = 0; i < mod->num_symtab; i++)
1813                 mod->symtab[i].st_info
1814                         = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1815 }
1816 #else
1817 static inline void add_kallsyms(struct module *mod,
1818                                 Elf_Shdr *sechdrs,
1819                                 unsigned int symindex,
1820                                 unsigned int strindex,
1821                                 const char *secstrings)
1822 {
1823 }
1824 #endif /* CONFIG_KALLSYMS */
1825
1826 static void dynamic_printk_setup(struct mod_debug *debug, unsigned int num)
1827 {
1828 #ifdef CONFIG_DYNAMIC_PRINTK_DEBUG
1829         unsigned int i;
1830
1831         for (i = 0; i < num; i++) {
1832                 register_dynamic_debug_module(debug[i].modname,
1833                                               debug[i].type,
1834                                               debug[i].logical_modname,
1835                                               debug[i].flag_names,
1836                                               debug[i].hash, debug[i].hash2);
1837         }
1838 #endif /* CONFIG_DYNAMIC_PRINTK_DEBUG */
1839 }
1840
1841 static void *module_alloc_update_bounds(unsigned long size)
1842 {
1843         void *ret = module_alloc(size);
1844
1845         if (ret) {
1846                 /* Update module bounds. */
1847                 if ((unsigned long)ret < module_addr_min)
1848                         module_addr_min = (unsigned long)ret;
1849                 if ((unsigned long)ret + size > module_addr_max)
1850                         module_addr_max = (unsigned long)ret + size;
1851         }
1852         return ret;
1853 }
1854
1855 /* Allocate and load the module: note that size of section 0 is always
1856    zero, and we rely on this for optional sections. */
1857 static noinline struct module *load_module(void __user *umod,
1858                                   unsigned long len,
1859                                   const char __user *uargs)
1860 {
1861         Elf_Ehdr *hdr;
1862         Elf_Shdr *sechdrs;
1863         char *secstrings, *args, *modmagic, *strtab = NULL;
1864         char *staging;
1865         unsigned int i;
1866         unsigned int symindex = 0;
1867         unsigned int strindex = 0;
1868         unsigned int modindex, versindex, infoindex, pcpuindex;
1869         unsigned int num_kp, num_mcount;
1870         struct kernel_param *kp;
1871         struct module *mod;
1872         long err = 0;
1873         void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1874         unsigned long *mseg;
1875         mm_segment_t old_fs;
1876
1877         DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1878                umod, len, uargs);
1879         if (len < sizeof(*hdr))
1880                 return ERR_PTR(-ENOEXEC);
1881
1882         /* Suck in entire file: we'll want most of it. */
1883         /* vmalloc barfs on "unusual" numbers.  Check here */
1884         if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1885                 return ERR_PTR(-ENOMEM);
1886
1887         /* Create stop_machine threads since the error path relies on
1888          * a non-failing stop_machine call. */
1889         err = stop_machine_create();
1890         if (err)
1891                 goto free_hdr;
1892
1893         if (copy_from_user(hdr, umod, len) != 0) {
1894                 err = -EFAULT;
1895                 goto free_hdr;
1896         }
1897
1898         /* Sanity checks against insmoding binaries or wrong arch,
1899            weird elf version */
1900         if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
1901             || hdr->e_type != ET_REL
1902             || !elf_check_arch(hdr)
1903             || hdr->e_shentsize != sizeof(*sechdrs)) {
1904                 err = -ENOEXEC;
1905                 goto free_hdr;
1906         }
1907
1908         if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1909                 goto truncated;
1910
1911         /* Convenience variables */
1912         sechdrs = (void *)hdr + hdr->e_shoff;
1913         secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1914         sechdrs[0].sh_addr = 0;
1915
1916         for (i = 1; i < hdr->e_shnum; i++) {
1917                 if (sechdrs[i].sh_type != SHT_NOBITS
1918                     && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1919                         goto truncated;
1920
1921                 /* Mark all sections sh_addr with their address in the
1922                    temporary image. */
1923                 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1924
1925                 /* Internal symbols and strings. */
1926                 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1927                         symindex = i;
1928                         strindex = sechdrs[i].sh_link;
1929                         strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1930                 }
1931 #ifndef CONFIG_MODULE_UNLOAD
1932                 /* Don't load .exit sections */
1933                 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1934                         sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1935 #endif
1936         }
1937
1938         modindex = find_sec(hdr, sechdrs, secstrings,
1939                             ".gnu.linkonce.this_module");
1940         if (!modindex) {
1941                 printk(KERN_WARNING "No module found in object\n");
1942                 err = -ENOEXEC;
1943                 goto free_hdr;
1944         }
1945         /* This is temporary: point mod into copy of data. */
1946         mod = (void *)sechdrs[modindex].sh_addr;
1947
1948         if (symindex == 0) {
1949                 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1950                        mod->name);
1951                 err = -ENOEXEC;
1952                 goto free_hdr;
1953         }
1954
1955         versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1956         infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1957         pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
1958
1959         /* Don't keep modinfo and version sections. */
1960         sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1961         sechdrs[versindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1962 #ifdef CONFIG_KALLSYMS
1963         /* Keep symbol and string tables for decoding later. */
1964         sechdrs[symindex].sh_flags |= SHF_ALLOC;
1965         sechdrs[strindex].sh_flags |= SHF_ALLOC;
1966 #endif
1967
1968         /* Check module struct version now, before we try to use module. */
1969         if (!check_modstruct_version(sechdrs, versindex, mod)) {
1970                 err = -ENOEXEC;
1971                 goto free_hdr;
1972         }
1973
1974         modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1975         /* This is allowed: modprobe --force will invalidate it. */
1976         if (!modmagic) {
1977                 err = try_to_force_load(mod, "magic");
1978                 if (err)
1979                         goto free_hdr;
1980         } else if (!same_magic(modmagic, vermagic, versindex)) {
1981                 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1982                        mod->name, modmagic, vermagic);
1983                 err = -ENOEXEC;
1984                 goto free_hdr;
1985         }
1986
1987         staging = get_modinfo(sechdrs, infoindex, "staging");
1988         if (staging) {
1989                 add_taint_module(mod, TAINT_CRAP);
1990                 printk(KERN_WARNING "%s: module is from the staging directory,"
1991                        " the quality is unknown, you have been warned.\n",
1992                        mod->name);
1993         }
1994
1995         /* Now copy in args */
1996         args = strndup_user(uargs, ~0UL >> 1);
1997         if (IS_ERR(args)) {
1998                 err = PTR_ERR(args);
1999                 goto free_hdr;
2000         }
2001
2002         if (find_module(mod->name)) {
2003                 err = -EEXIST;
2004                 goto free_mod;
2005         }
2006
2007         mod->state = MODULE_STATE_COMING;
2008
2009         /* Allow arches to frob section contents and sizes.  */
2010         err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
2011         if (err < 0)
2012                 goto free_mod;
2013
2014         if (pcpuindex) {
2015                 /* We have a special allocation for this section. */
2016                 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
2017                                          sechdrs[pcpuindex].sh_addralign,
2018                                          mod->name);
2019                 if (!percpu) {
2020                         err = -ENOMEM;
2021                         goto free_mod;
2022                 }
2023                 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
2024                 mod->percpu = percpu;
2025         }
2026
2027         /* Determine total sizes, and put offsets in sh_entsize.  For now
2028            this is done generically; there doesn't appear to be any
2029            special cases for the architectures. */
2030         layout_sections(mod, hdr, sechdrs, secstrings);
2031
2032         /* Do the allocs. */
2033         ptr = module_alloc_update_bounds(mod->core_size);
2034         if (!ptr) {
2035                 err = -ENOMEM;
2036                 goto free_percpu;
2037         }
2038         memset(ptr, 0, mod->core_size);
2039         mod->module_core = ptr;
2040
2041         ptr = module_alloc_update_bounds(mod->init_size);
2042         if (!ptr && mod->init_size) {
2043                 err = -ENOMEM;
2044                 goto free_core;
2045         }
2046         memset(ptr, 0, mod->init_size);
2047         mod->module_init = ptr;
2048
2049         /* Transfer each section which specifies SHF_ALLOC */
2050         DEBUGP("final section addresses:\n");
2051         for (i = 0; i < hdr->e_shnum; i++) {
2052                 void *dest;
2053
2054                 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
2055                         continue;
2056
2057                 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
2058                         dest = mod->module_init
2059                                 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
2060                 else
2061                         dest = mod->module_core + sechdrs[i].sh_entsize;
2062
2063                 if (sechdrs[i].sh_type != SHT_NOBITS)
2064                         memcpy(dest, (void *)sechdrs[i].sh_addr,
2065                                sechdrs[i].sh_size);
2066                 /* Update sh_addr to point to copy in image. */
2067                 sechdrs[i].sh_addr = (unsigned long)dest;
2068                 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
2069         }
2070         /* Module has been moved. */
2071         mod = (void *)sechdrs[modindex].sh_addr;
2072
2073         /* Now we've moved module, initialize linked lists, etc. */
2074         module_unload_init(mod);
2075
2076         /* add kobject, so we can reference it. */
2077         err = mod_sysfs_init(mod);
2078         if (err)
2079                 goto free_unload;
2080
2081         /* Set up license info based on the info section */
2082         set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
2083
2084         /*
2085          * ndiswrapper is under GPL by itself, but loads proprietary modules.
2086          * Don't use add_taint_module(), as it would prevent ndiswrapper from
2087          * using GPL-only symbols it needs.
2088          */
2089         if (strcmp(mod->name, "ndiswrapper") == 0)
2090                 add_taint(TAINT_PROPRIETARY_MODULE);
2091
2092         /* driverloader was caught wrongly pretending to be under GPL */
2093         if (strcmp(mod->name, "driverloader") == 0)
2094                 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2095
2096         /* Set up MODINFO_ATTR fields */
2097         setup_modinfo(mod, sechdrs, infoindex);
2098
2099         /* Fix up syms, so that st_value is a pointer to location. */
2100         err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
2101                                mod);
2102         if (err < 0)
2103                 goto cleanup;
2104
2105         /* Now we've got everything in the final locations, we can
2106          * find optional sections. */
2107         kp = section_objs(hdr, sechdrs, secstrings, "__param", sizeof(*kp),
2108                           &num_kp);
2109         mod->syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab",
2110                                  sizeof(*mod->syms), &mod->num_syms);
2111         mod->crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab");
2112         mod->gpl_syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab_gpl",
2113                                      sizeof(*mod->gpl_syms),
2114                                      &mod->num_gpl_syms);
2115         mod->gpl_crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab_gpl");
2116         mod->gpl_future_syms = section_objs(hdr, sechdrs, secstrings,
2117                                             "__ksymtab_gpl_future",
2118                                             sizeof(*mod->gpl_future_syms),
2119                                             &mod->num_gpl_future_syms);
2120         mod->gpl_future_crcs = section_addr(hdr, sechdrs, secstrings,
2121                                             "__kcrctab_gpl_future");
2122
2123 #ifdef CONFIG_UNUSED_SYMBOLS
2124         mod->unused_syms = section_objs(hdr, sechdrs, secstrings,
2125                                         "__ksymtab_unused",
2126                                         sizeof(*mod->unused_syms),
2127                                         &mod->num_unused_syms);
2128         mod->unused_crcs = section_addr(hdr, sechdrs, secstrings,
2129                                         "__kcrctab_unused");
2130         mod->unused_gpl_syms = section_objs(hdr, sechdrs, secstrings,
2131                                             "__ksymtab_unused_gpl",
2132                                             sizeof(*mod->unused_gpl_syms),
2133                                             &mod->num_unused_gpl_syms);
2134         mod->unused_gpl_crcs = section_addr(hdr, sechdrs, secstrings,
2135                                             "__kcrctab_unused_gpl");
2136 #endif
2137
2138 #ifdef CONFIG_MARKERS
2139         mod->markers = section_objs(hdr, sechdrs, secstrings, "__markers",
2140                                     sizeof(*mod->markers), &mod->num_markers);
2141 #endif
2142 #ifdef CONFIG_TRACEPOINTS
2143         mod->tracepoints = section_objs(hdr, sechdrs, secstrings,
2144                                         "__tracepoints",
2145                                         sizeof(*mod->tracepoints),
2146                                         &mod->num_tracepoints);
2147 #endif
2148
2149 #ifdef CONFIG_MODVERSIONS
2150         if ((mod->num_syms && !mod->crcs)
2151             || (mod->num_gpl_syms && !mod->gpl_crcs)
2152             || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
2153 #ifdef CONFIG_UNUSED_SYMBOLS
2154             || (mod->num_unused_syms && !mod->unused_crcs)
2155             || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
2156 #endif
2157                 ) {
2158                 printk(KERN_WARNING "%s: No versions for exported symbols.\n", mod->name);
2159                 err = try_to_force_load(mod, "nocrc");
2160                 if (err)
2161                         goto cleanup;
2162         }
2163 #endif
2164
2165         /* Now do relocations. */
2166         for (i = 1; i < hdr->e_shnum; i++) {
2167                 const char *strtab = (char *)sechdrs[strindex].sh_addr;
2168                 unsigned int info = sechdrs[i].sh_info;
2169
2170                 /* Not a valid relocation section? */
2171                 if (info >= hdr->e_shnum)
2172                         continue;
2173
2174                 /* Don't bother with non-allocated sections */
2175                 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
2176                         continue;
2177
2178                 if (sechdrs[i].sh_type == SHT_REL)
2179                         err = apply_relocate(sechdrs, strtab, symindex, i,mod);
2180                 else if (sechdrs[i].sh_type == SHT_RELA)
2181                         err = apply_relocate_add(sechdrs, strtab, symindex, i,
2182                                                  mod);
2183                 if (err < 0)
2184                         goto cleanup;
2185         }
2186
2187         /* Find duplicate symbols */
2188         err = verify_export_symbols(mod);
2189         if (err < 0)
2190                 goto cleanup;
2191
2192         /* Set up and sort exception table */
2193         mod->extable = section_objs(hdr, sechdrs, secstrings, "__ex_table",
2194                                     sizeof(*mod->extable), &mod->num_exentries);
2195         sort_extable(mod->extable, mod->extable + mod->num_exentries);
2196
2197         /* Finally, copy percpu area over. */
2198         percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
2199                        sechdrs[pcpuindex].sh_size);
2200
2201         add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
2202
2203         if (!mod->taints) {
2204                 struct mod_debug *debug;
2205                 unsigned int num_debug;
2206
2207                 debug = section_objs(hdr, sechdrs, secstrings, "__verbose",
2208                                      sizeof(*debug), &num_debug);
2209                 dynamic_printk_setup(debug, num_debug);
2210         }
2211
2212         /* sechdrs[0].sh_size is always zero */
2213         mseg = section_objs(hdr, sechdrs, secstrings, "__mcount_loc",
2214                             sizeof(*mseg), &num_mcount);
2215         ftrace_init_module(mod, mseg, mseg + num_mcount);
2216
2217         err = module_finalize(hdr, sechdrs, mod);
2218         if (err < 0)
2219                 goto cleanup;
2220
2221         /* flush the icache in correct context */
2222         old_fs = get_fs();
2223         set_fs(KERNEL_DS);
2224
2225         /*
2226          * Flush the instruction cache, since we've played with text.
2227          * Do it before processing of module parameters, so the module
2228          * can provide parameter accessor functions of its own.
2229          */
2230         if (mod->module_init)
2231                 flush_icache_range((unsigned long)mod->module_init,
2232                                    (unsigned long)mod->module_init
2233                                    + mod->init_size);
2234         flush_icache_range((unsigned long)mod->module_core,
2235                            (unsigned long)mod->module_core + mod->core_size);
2236
2237         set_fs(old_fs);
2238
2239         mod->args = args;
2240         if (section_addr(hdr, sechdrs, secstrings, "__obsparm"))
2241                 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2242                        mod->name);
2243
2244         /* Now sew it into the lists so we can get lockdep and oops
2245          * info during argument parsing.  Noone should access us, since
2246          * strong_try_module_get() will fail.
2247          * lockdep/oops can run asynchronous, so use the RCU list insertion
2248          * function to insert in a way safe to concurrent readers.
2249          * The mutex protects against concurrent writers.
2250          */
2251         list_add_rcu(&mod->list, &modules);
2252
2253         err = parse_args(mod->name, mod->args, kp, num_kp, NULL);
2254         if (err < 0)
2255                 goto unlink;
2256
2257         err = mod_sysfs_setup(mod, kp, num_kp);
2258         if (err < 0)
2259                 goto unlink;
2260         add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
2261         add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
2262
2263         /* Get rid of temporary copy */
2264         vfree(hdr);
2265
2266         stop_machine_destroy();
2267         /* Done! */
2268         return mod;
2269
2270  unlink:
2271         stop_machine(__unlink_module, mod, NULL);
2272         module_arch_cleanup(mod);
2273  cleanup:
2274         kobject_del(&mod->mkobj.kobj);
2275         kobject_put(&mod->mkobj.kobj);
2276         ftrace_release(mod->module_core, mod->core_size);
2277  free_unload:
2278         module_unload_free(mod);
2279         module_free(mod, mod->module_init);
2280  free_core:
2281         module_free(mod, mod->module_core);
2282  free_percpu:
2283         if (percpu)
2284                 percpu_modfree(percpu);
2285  free_mod:
2286         kfree(args);
2287  free_hdr:
2288         vfree(hdr);
2289         stop_machine_destroy();
2290         return ERR_PTR(err);
2291
2292  truncated:
2293         printk(KERN_ERR "Module len %lu truncated\n", len);
2294         err = -ENOEXEC;
2295         goto free_hdr;
2296 }
2297
2298 /* This is where the real work happens */
2299 asmlinkage long
2300 sys_init_module(void __user *umod,
2301                 unsigned long len,
2302                 const char __user *uargs)
2303 {
2304         struct module *mod;
2305         int ret = 0;
2306
2307         /* Must have permission */
2308         if (!capable(CAP_SYS_MODULE))
2309                 return -EPERM;
2310
2311         /* Only one module load at a time, please */
2312         if (mutex_lock_interruptible(&module_mutex) != 0)
2313                 return -EINTR;
2314
2315         /* Do all the hard work */
2316         mod = load_module(umod, len, uargs);
2317         if (IS_ERR(mod)) {
2318                 mutex_unlock(&module_mutex);
2319                 return PTR_ERR(mod);
2320         }
2321
2322         /* Drop lock so they can recurse */
2323         mutex_unlock(&module_mutex);
2324
2325         blocking_notifier_call_chain(&module_notify_list,
2326                         MODULE_STATE_COMING, mod);
2327
2328         /* Start the module */
2329         if (mod->init != NULL)
2330                 ret = do_one_initcall(mod->init);
2331         if (ret < 0) {
2332                 /* Init routine failed: abort.  Try to protect us from
2333                    buggy refcounters. */
2334                 mod->state = MODULE_STATE_GOING;
2335                 synchronize_sched();
2336                 module_put(mod);
2337                 blocking_notifier_call_chain(&module_notify_list,
2338                                              MODULE_STATE_GOING, mod);
2339                 mutex_lock(&module_mutex);
2340                 free_module(mod);
2341                 mutex_unlock(&module_mutex);
2342                 wake_up(&module_wq);
2343                 return ret;
2344         }
2345         if (ret > 0) {
2346                 printk(KERN_WARNING "%s: '%s'->init suspiciously returned %d, "
2347                                     "it should follow 0/-E convention\n"
2348                        KERN_WARNING "%s: loading module anyway...\n",
2349                        __func__, mod->name, ret,
2350                        __func__);
2351                 dump_stack();
2352         }
2353
2354         /* Now it's a first class citizen!  Wake up anyone waiting for it. */
2355         mod->state = MODULE_STATE_LIVE;
2356         wake_up(&module_wq);
2357         blocking_notifier_call_chain(&module_notify_list,
2358                                      MODULE_STATE_LIVE, mod);
2359
2360         mutex_lock(&module_mutex);
2361         /* Drop initial reference. */
2362         module_put(mod);
2363         module_free(mod, mod->module_init);
2364         mod->module_init = NULL;
2365         mod->init_size = 0;
2366         mod->init_text_size = 0;
2367         mutex_unlock(&module_mutex);
2368
2369         return 0;
2370 }
2371
2372 static inline int within(unsigned long addr, void *start, unsigned long size)
2373 {
2374         return ((void *)addr >= start && (void *)addr < start + size);
2375 }
2376
2377 #ifdef CONFIG_KALLSYMS
2378 /*
2379  * This ignores the intensely annoying "mapping symbols" found
2380  * in ARM ELF files: $a, $t and $d.
2381  */
2382 static inline int is_arm_mapping_symbol(const char *str)
2383 {
2384         return str[0] == '$' && strchr("atd", str[1])
2385                && (str[2] == '\0' || str[2] == '.');
2386 }
2387
2388 static const char *get_ksymbol(struct module *mod,
2389                                unsigned long addr,
2390                                unsigned long *size,
2391                                unsigned long *offset)
2392 {
2393         unsigned int i, best = 0;
2394         unsigned long nextval;
2395
2396         /* At worse, next value is at end of module */
2397         if (within_module_init(addr, mod))
2398                 nextval = (unsigned long)mod->module_init+mod->init_text_size;
2399         else
2400                 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2401
2402         /* Scan for closest preceeding symbol, and next symbol. (ELF
2403            starts real symbols at 1). */
2404         for (i = 1; i < mod->num_symtab; i++) {
2405                 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2406                         continue;
2407
2408                 /* We ignore unnamed symbols: they're uninformative
2409                  * and inserted at a whim. */
2410                 if (mod->symtab[i].st_value <= addr
2411                     && mod->symtab[i].st_value > mod->symtab[best].st_value
2412                     && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2413                     && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2414                         best = i;
2415                 if (mod->symtab[i].st_value > addr
2416                     && mod->symtab[i].st_value < nextval
2417                     && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2418                     && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2419                         nextval = mod->symtab[i].st_value;
2420         }
2421
2422         if (!best)
2423                 return NULL;
2424
2425         if (size)
2426                 *size = nextval - mod->symtab[best].st_value;
2427         if (offset)
2428                 *offset = addr - mod->symtab[best].st_value;
2429         return mod->strtab + mod->symtab[best].st_name;
2430 }
2431
2432 /* For kallsyms to ask for address resolution.  NULL means not found.  Careful
2433  * not to lock to avoid deadlock on oopses, simply disable preemption. */
2434 const char *module_address_lookup(unsigned long addr,
2435                             unsigned long *size,
2436                             unsigned long *offset,
2437                             char **modname,
2438                             char *namebuf)
2439 {
2440         struct module *mod;
2441         const char *ret = NULL;
2442
2443         preempt_disable();
2444         list_for_each_entry_rcu(mod, &modules, list) {
2445                 if (within_module_init(addr, mod) ||
2446                     within_module_core(addr, mod)) {
2447                         if (modname)
2448                                 *modname = mod->name;
2449                         ret = get_ksymbol(mod, addr, size, offset);
2450                         break;
2451                 }
2452         }
2453         /* Make a copy in here where it's safe */
2454         if (ret) {
2455                 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2456                 ret = namebuf;
2457         }
2458         preempt_enable();
2459         return ret;
2460 }
2461
2462 int lookup_module_symbol_name(unsigned long addr, char *symname)
2463 {
2464         struct module *mod;
2465
2466         preempt_disable();
2467         list_for_each_entry_rcu(mod, &modules, list) {
2468                 if (within_module_init(addr, mod) ||
2469                     within_module_core(addr, mod)) {
2470                         const char *sym;
2471
2472                         sym = get_ksymbol(mod, addr, NULL, NULL);
2473                         if (!sym)
2474                                 goto out;
2475                         strlcpy(symname, sym, KSYM_NAME_LEN);
2476                         preempt_enable();
2477                         return 0;
2478                 }
2479         }
2480 out:
2481         preempt_enable();
2482         return -ERANGE;
2483 }
2484
2485 int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2486                         unsigned long *offset, char *modname, char *name)
2487 {
2488         struct module *mod;
2489
2490         preempt_disable();
2491         list_for_each_entry_rcu(mod, &modules, list) {
2492                 if (within_module_init(addr, mod) ||
2493                     within_module_core(addr, mod)) {
2494                         const char *sym;
2495
2496                         sym = get_ksymbol(mod, addr, size, offset);
2497                         if (!sym)
2498                                 goto out;
2499                         if (modname)
2500                                 strlcpy(modname, mod->name, MODULE_NAME_LEN);
2501                         if (name)
2502                                 strlcpy(name, sym, KSYM_NAME_LEN);
2503                         preempt_enable();
2504                         return 0;
2505                 }
2506         }
2507 out:
2508         preempt_enable();
2509         return -ERANGE;
2510 }
2511
2512 int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2513                         char *name, char *module_name, int *exported)
2514 {
2515         struct module *mod;
2516
2517         preempt_disable();
2518         list_for_each_entry_rcu(mod, &modules, list) {
2519                 if (symnum < mod->num_symtab) {
2520                         *value = mod->symtab[symnum].st_value;
2521                         *type = mod->symtab[symnum].st_info;
2522                         strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
2523                                 KSYM_NAME_LEN);
2524                         strlcpy(module_name, mod->name, MODULE_NAME_LEN);
2525                         *exported = is_exported(name, *value, mod);
2526                         preempt_enable();
2527                         return 0;
2528                 }
2529                 symnum -= mod->num_symtab;
2530         }
2531         preempt_enable();
2532         return -ERANGE;
2533 }
2534
2535 static unsigned long mod_find_symname(struct module *mod, const char *name)
2536 {
2537         unsigned int i;
2538
2539         for (i = 0; i < mod->num_symtab; i++)
2540                 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2541                     mod->symtab[i].st_info != 'U')
2542                         return mod->symtab[i].st_value;
2543         return 0;
2544 }
2545
2546 /* Look for this name: can be of form module:name. */
2547 unsigned long module_kallsyms_lookup_name(const char *name)
2548 {
2549         struct module *mod;
2550         char *colon;
2551         unsigned long ret = 0;
2552
2553         /* Don't lock: we're in enough trouble already. */
2554         preempt_disable();
2555         if ((colon = strchr(name, ':')) != NULL) {
2556                 *colon = '\0';
2557                 if ((mod = find_module(name)) != NULL)
2558                         ret = mod_find_symname(mod, colon+1);
2559                 *colon = ':';
2560         } else {
2561                 list_for_each_entry_rcu(mod, &modules, list)
2562                         if ((ret = mod_find_symname(mod, name)) != 0)
2563                                 break;
2564         }
2565         preempt_enable();
2566         return ret;
2567 }
2568 #endif /* CONFIG_KALLSYMS */
2569
2570 static char *module_flags(struct module *mod, char *buf)
2571 {
2572         int bx = 0;
2573
2574         if (mod->taints ||
2575             mod->state == MODULE_STATE_GOING ||
2576             mod->state == MODULE_STATE_COMING) {
2577                 buf[bx++] = '(';
2578                 if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
2579                         buf[bx++] = 'P';
2580                 if (mod->taints & (1 << TAINT_FORCED_MODULE))
2581                         buf[bx++] = 'F';
2582                 if (mod->taints & (1 << TAINT_CRAP))
2583                         buf[bx++] = 'C';
2584                 /*
2585                  * TAINT_FORCED_RMMOD: could be added.
2586                  * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2587                  * apply to modules.
2588                  */
2589
2590                 /* Show a - for module-is-being-unloaded */
2591                 if (mod->state == MODULE_STATE_GOING)
2592                         buf[bx++] = '-';
2593                 /* Show a + for module-is-being-loaded */
2594                 if (mod->state == MODULE_STATE_COMING)
2595                         buf[bx++] = '+';
2596                 buf[bx++] = ')';
2597         }
2598         buf[bx] = '\0';
2599
2600         return buf;
2601 }
2602
2603 #ifdef CONFIG_PROC_FS
2604 /* Called by the /proc file system to return a list of modules. */
2605 static void *m_start(struct seq_file *m, loff_t *pos)
2606 {
2607         mutex_lock(&module_mutex);
2608         return seq_list_start(&modules, *pos);
2609 }
2610
2611 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2612 {
2613         return seq_list_next(p, &modules, pos);
2614 }
2615
2616 static void m_stop(struct seq_file *m, void *p)
2617 {
2618         mutex_unlock(&module_mutex);
2619 }
2620
2621 static int m_show(struct seq_file *m, void *p)
2622 {
2623         struct module *mod = list_entry(p, struct module, list);
2624         char buf[8];
2625
2626         seq_printf(m, "%s %u",
2627                    mod->name, mod->init_size + mod->core_size);
2628         print_unload_info(m, mod);
2629
2630         /* Informative for users. */
2631         seq_printf(m, " %s",
2632                    mod->state == MODULE_STATE_GOING ? "Unloading":
2633                    mod->state == MODULE_STATE_COMING ? "Loading":
2634                    "Live");
2635         /* Used by oprofile and other similar tools. */
2636         seq_printf(m, " 0x%p", mod->module_core);
2637
2638         /* Taints info */
2639         if (mod->taints)
2640                 seq_printf(m, " %s", module_flags(mod, buf));
2641
2642         seq_printf(m, "\n");
2643         return 0;
2644 }
2645
2646 /* Format: modulename size refcount deps address
2647
2648    Where refcount is a number or -, and deps is a comma-separated list
2649    of depends or -.
2650 */
2651 static const struct seq_operations modules_op = {
2652         .start  = m_start,
2653         .next   = m_next,
2654         .stop   = m_stop,
2655         .show   = m_show
2656 };
2657
2658 static int modules_open(struct inode *inode, struct file *file)
2659 {
2660         return seq_open(file, &modules_op);
2661 }
2662
2663 static const struct file_operations proc_modules_operations = {
2664         .open           = modules_open,
2665         .read           = seq_read,
2666         .llseek         = seq_lseek,
2667         .release        = seq_release,
2668 };
2669
2670 static int __init proc_modules_init(void)
2671 {
2672         proc_create("modules", 0, NULL, &proc_modules_operations);
2673         return 0;
2674 }
2675 module_init(proc_modules_init);
2676 #endif
2677
2678 /* Given an address, look for it in the module exception tables. */
2679 const struct exception_table_entry *search_module_extables(unsigned long addr)
2680 {
2681         const struct exception_table_entry *e = NULL;
2682         struct module *mod;
2683
2684         preempt_disable();
2685         list_for_each_entry_rcu(mod, &modules, list) {
2686                 if (mod->num_exentries == 0)
2687                         continue;
2688
2689                 e = search_extable(mod->extable,
2690                                    mod->extable + mod->num_exentries - 1,
2691                                    addr);
2692                 if (e)
2693                         break;
2694         }
2695         preempt_enable();
2696
2697         /* Now, if we found one, we are running inside it now, hence
2698            we cannot unload the module, hence no refcnt needed. */
2699         return e;
2700 }
2701
2702 /*
2703  * Is this a valid module address?
2704  */
2705 int is_module_address(unsigned long addr)
2706 {
2707         struct module *mod;
2708
2709         preempt_disable();
2710
2711         list_for_each_entry_rcu(mod, &modules, list) {
2712                 if (within_module_core(addr, mod)) {
2713                         preempt_enable();
2714                         return 1;
2715                 }
2716         }
2717
2718         preempt_enable();
2719
2720         return 0;
2721 }
2722
2723
2724 /* Is this a valid kernel address? */
2725 __notrace_funcgraph struct module *__module_text_address(unsigned long addr)
2726 {
2727         struct module *mod;
2728
2729         if (addr < module_addr_min || addr > module_addr_max)
2730                 return NULL;
2731
2732         list_for_each_entry_rcu(mod, &modules, list)
2733                 if (within(addr, mod->module_init, mod->init_text_size)
2734                     || within(addr, mod->module_core, mod->core_text_size))
2735                         return mod;
2736         return NULL;
2737 }
2738
2739 struct module *module_text_address(unsigned long addr)
2740 {
2741         struct module *mod;
2742
2743         preempt_disable();
2744         mod = __module_text_address(addr);
2745         preempt_enable();
2746
2747         return mod;
2748 }
2749
2750 /* Don't grab lock, we're oopsing. */
2751 void print_modules(void)
2752 {
2753         struct module *mod;
2754         char buf[8];
2755
2756         printk("Modules linked in:");
2757         /* Most callers should already have preempt disabled, but make sure */
2758         preempt_disable();
2759         list_for_each_entry_rcu(mod, &modules, list)
2760                 printk(" %s%s", mod->name, module_flags(mod, buf));
2761         preempt_enable();
2762         if (last_unloaded_module[0])
2763                 printk(" [last unloaded: %s]", last_unloaded_module);
2764         printk("\n");
2765 }
2766
2767 #ifdef CONFIG_MODVERSIONS
2768 /* Generate the signature for struct module here, too, for modversions. */
2769 void struct_module(struct module *mod) { return; }
2770 EXPORT_SYMBOL(struct_module);
2771 #endif
2772
2773 #ifdef CONFIG_MARKERS
2774 void module_update_markers(void)
2775 {
2776         struct module *mod;
2777
2778         mutex_lock(&module_mutex);
2779         list_for_each_entry(mod, &modules, list)
2780                 if (!mod->taints)
2781                         marker_update_probe_range(mod->markers,
2782                                 mod->markers + mod->num_markers);
2783         mutex_unlock(&module_mutex);
2784 }
2785 #endif
2786
2787 #ifdef CONFIG_TRACEPOINTS
2788 void module_update_tracepoints(void)
2789 {
2790         struct module *mod;
2791
2792         mutex_lock(&module_mutex);
2793         list_for_each_entry(mod, &modules, list)
2794                 if (!mod->taints)
2795                         tracepoint_update_probe_range(mod->tracepoints,
2796                                 mod->tracepoints + mod->num_tracepoints);
2797         mutex_unlock(&module_mutex);
2798 }
2799
2800 /*
2801  * Returns 0 if current not found.
2802  * Returns 1 if current found.
2803  */
2804 int module_get_iter_tracepoints(struct tracepoint_iter *iter)
2805 {
2806         struct module *iter_mod;
2807         int found = 0;
2808
2809         mutex_lock(&module_mutex);
2810         list_for_each_entry(iter_mod, &modules, list) {
2811                 if (!iter_mod->taints) {
2812                         /*
2813                          * Sorted module list
2814                          */
2815                         if (iter_mod < iter->module)
2816                                 continue;
2817                         else if (iter_mod > iter->module)
2818                                 iter->tracepoint = NULL;
2819                         found = tracepoint_get_iter_range(&iter->tracepoint,
2820                                 iter_mod->tracepoints,
2821                                 iter_mod->tracepoints
2822                                         + iter_mod->num_tracepoints);
2823                         if (found) {
2824                                 iter->module = iter_mod;
2825                                 break;
2826                         }
2827                 }
2828         }
2829         mutex_unlock(&module_mutex);
2830         return found;
2831 }
2832 #endif