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