blob: 0351625767b112d4908eb74fabb03e4e868499ce [file] [log] [blame]
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 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*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/moduleloader.h>
21#include <linux/init.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070022#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/slab.h>
24#include <linux/vmalloc.h>
25#include <linux/elf.h>
26#include <linux/seq_file.h>
27#include <linux/syscalls.h>
28#include <linux/fcntl.h>
29#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080030#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/cpu.h>
32#include <linux/moduleparam.h>
33#include <linux/errno.h>
34#include <linux/err.h>
35#include <linux/vermagic.h>
36#include <linux/notifier.h>
37#include <linux/stop_machine.h>
38#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070039#include <linux/string.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080040#include <linux/sched.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080041#include <linux/mutex.h>
Jan Beulich4552d5d2006-06-26 13:57:28 +020042#include <linux/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
44#include <asm/semaphore.h>
45#include <asm/cacheflush.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020046#include <linux/license.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#if 0
49#define DEBUGP printk
50#else
51#define DEBUGP(fmt , a...)
52#endif
53
54#ifndef ARCH_SHF_SMALL
55#define ARCH_SHF_SMALL 0
56#endif
57
58/* If this is set, the section belongs in the init part of the module */
59#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
60
61/* Protects module list */
62static DEFINE_SPINLOCK(modlist_lock);
63
64/* List of modules, protected by module_mutex AND modlist_lock */
Ashutosh Naik6389a382006-03-23 03:00:46 -080065static DEFINE_MUTEX(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static LIST_HEAD(modules);
67
Alan Sterne041c682006-03-27 01:16:30 -080068static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70int register_module_notifier(struct notifier_block * nb)
71{
Alan Sterne041c682006-03-27 01:16:30 -080072 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74EXPORT_SYMBOL(register_module_notifier);
75
76int unregister_module_notifier(struct notifier_block * nb)
77{
Alan Sterne041c682006-03-27 01:16:30 -080078 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80EXPORT_SYMBOL(unregister_module_notifier);
81
82/* We require a truly strong try_module_get() */
83static inline int strong_try_module_get(struct module *mod)
84{
85 if (mod && mod->state == MODULE_STATE_COMING)
86 return 0;
87 return try_module_get(mod);
88}
89
90/* A thread that wants to hold a reference to a module only while it
91 * is running can call ths to safely exit.
92 * nfsd and lockd use this.
93 */
94void __module_put_and_exit(struct module *mod, long code)
95{
96 module_put(mod);
97 do_exit(code);
98}
99EXPORT_SYMBOL(__module_put_and_exit);
100
101/* Find a module section: 0 means not found. */
102static unsigned int find_sec(Elf_Ehdr *hdr,
103 Elf_Shdr *sechdrs,
104 const char *secstrings,
105 const char *name)
106{
107 unsigned int i;
108
109 for (i = 1; i < hdr->e_shnum; i++)
110 /* Alloc bit cleared means "ignore it." */
111 if ((sechdrs[i].sh_flags & SHF_ALLOC)
112 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
113 return i;
114 return 0;
115}
116
117/* Provided by the linker */
118extern const struct kernel_symbol __start___ksymtab[];
119extern const struct kernel_symbol __stop___ksymtab[];
120extern const struct kernel_symbol __start___ksymtab_gpl[];
121extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800122extern const struct kernel_symbol __start___ksymtab_gpl_future[];
123extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700124extern const struct kernel_symbol __start___ksymtab_unused[];
125extern const struct kernel_symbol __stop___ksymtab_unused[];
126extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
127extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
128extern const struct kernel_symbol __start___ksymtab_gpl_future[];
129extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130extern const unsigned long __start___kcrctab[];
131extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800132extern const unsigned long __start___kcrctab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700133extern const unsigned long __start___kcrctab_unused[];
134extern const unsigned long __start___kcrctab_unused_gpl[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136#ifndef CONFIG_MODVERSIONS
137#define symversion(base, idx) NULL
138#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800139#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#endif
141
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100142/* lookup symbol in given range of kernel_symbols */
143static const struct kernel_symbol *lookup_symbol(const char *name,
144 const struct kernel_symbol *start,
145 const struct kernel_symbol *stop)
146{
147 const struct kernel_symbol *ks = start;
148 for (; ks < stop; ks++)
149 if (strcmp(ks->name, name) == 0)
150 return ks;
151 return NULL;
152}
153
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700154static void printk_unused_warning(const char *name)
155{
156 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
157 "however this module is using it.\n", name);
158 printk(KERN_WARNING "This symbol will go away in the future.\n");
159 printk(KERN_WARNING "Please evalute if this is the right api to use, "
160 "and if it really is, submit a report the linux kernel "
161 "mailinglist together with submitting your code for "
162 "inclusion.\n");
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/* Find a symbol, return value, crc and module which owns it */
166static unsigned long __find_symbol(const char *name,
167 struct module **owner,
168 const unsigned long **crc,
169 int gplok)
170{
171 struct module *mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100172 const struct kernel_symbol *ks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /* Core kernel first. */
175 *owner = NULL;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100176 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
177 if (ks) {
178 *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
179 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100182 ks = lookup_symbol(name, __start___ksymtab_gpl,
183 __stop___ksymtab_gpl);
184 if (ks) {
185 *crc = symversion(__start___kcrctab_gpl,
186 (ks - __start___ksymtab_gpl));
187 return ks->value;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800190 ks = lookup_symbol(name, __start___ksymtab_gpl_future,
191 __stop___ksymtab_gpl_future);
192 if (ks) {
193 if (!gplok) {
194 printk(KERN_WARNING "Symbol %s is being used "
195 "by a non-GPL module, which will not "
196 "be allowed in the future\n", name);
197 printk(KERN_WARNING "Please see the file "
198 "Documentation/feature-removal-schedule.txt "
199 "in the kernel source tree for more "
200 "details.\n");
201 }
202 *crc = symversion(__start___kcrctab_gpl_future,
203 (ks - __start___ksymtab_gpl_future));
204 return ks->value;
205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700207 ks = lookup_symbol(name, __start___ksymtab_unused,
208 __stop___ksymtab_unused);
209 if (ks) {
210 printk_unused_warning(name);
211 *crc = symversion(__start___kcrctab_unused,
212 (ks - __start___ksymtab_unused));
213 return ks->value;
214 }
215
216 if (gplok)
217 ks = lookup_symbol(name, __start___ksymtab_unused_gpl,
218 __stop___ksymtab_unused_gpl);
219 if (ks) {
220 printk_unused_warning(name);
221 *crc = symversion(__start___kcrctab_unused_gpl,
222 (ks - __start___ksymtab_unused_gpl));
223 return ks->value;
224 }
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* Now try modules. */
227 list_for_each_entry(mod, &modules, list) {
228 *owner = mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100229 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
230 if (ks) {
231 *crc = symversion(mod->crcs, (ks - mod->syms));
232 return ks->value;
233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100236 ks = lookup_symbol(name, mod->gpl_syms,
237 mod->gpl_syms + mod->num_gpl_syms);
238 if (ks) {
239 *crc = symversion(mod->gpl_crcs,
240 (ks - mod->gpl_syms));
241 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243 }
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700244 ks = lookup_symbol(name, mod->unused_syms, mod->unused_syms + mod->num_unused_syms);
245 if (ks) {
246 printk_unused_warning(name);
247 *crc = symversion(mod->unused_crcs, (ks - mod->unused_syms));
248 return ks->value;
249 }
250
251 if (gplok) {
252 ks = lookup_symbol(name, mod->unused_gpl_syms,
253 mod->unused_gpl_syms + mod->num_unused_gpl_syms);
254 if (ks) {
255 printk_unused_warning(name);
256 *crc = symversion(mod->unused_gpl_crcs,
257 (ks - mod->unused_gpl_syms));
258 return ks->value;
259 }
260 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800261 ks = lookup_symbol(name, mod->gpl_future_syms,
262 (mod->gpl_future_syms +
263 mod->num_gpl_future_syms));
264 if (ks) {
265 if (!gplok) {
266 printk(KERN_WARNING "Symbol %s is being used "
267 "by a non-GPL module, which will not "
268 "be allowed in the future\n", name);
269 printk(KERN_WARNING "Please see the file "
270 "Documentation/feature-removal-schedule.txt "
271 "in the kernel source tree for more "
272 "details.\n");
273 }
274 *crc = symversion(mod->gpl_future_crcs,
275 (ks - mod->gpl_future_syms));
276 return ks->value;
277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279 DEBUGP("Failed to find symbol %s\n", name);
280 return 0;
281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/* Search for module by name: must hold module_mutex. */
284static struct module *find_module(const char *name)
285{
286 struct module *mod;
287
288 list_for_each_entry(mod, &modules, list) {
289 if (strcmp(mod->name, name) == 0)
290 return mod;
291 }
292 return NULL;
293}
294
295#ifdef CONFIG_SMP
296/* Number of blocks used and allocated. */
297static unsigned int pcpu_num_used, pcpu_num_allocated;
298/* Size of each block. -ve means used. */
299static int *pcpu_size;
300
301static int split_block(unsigned int i, unsigned short size)
302{
303 /* Reallocation required? */
304 if (pcpu_num_used + 1 > pcpu_num_allocated) {
305 int *new = kmalloc(sizeof(new[0]) * pcpu_num_allocated*2,
306 GFP_KERNEL);
307 if (!new)
308 return 0;
309
310 memcpy(new, pcpu_size, sizeof(new[0])*pcpu_num_allocated);
311 pcpu_num_allocated *= 2;
312 kfree(pcpu_size);
313 pcpu_size = new;
314 }
315
316 /* Insert a new subblock */
317 memmove(&pcpu_size[i+1], &pcpu_size[i],
318 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
319 pcpu_num_used++;
320
321 pcpu_size[i+1] -= size;
322 pcpu_size[i] = size;
323 return 1;
324}
325
326static inline unsigned int block_size(int val)
327{
328 if (val < 0)
329 return -val;
330 return val;
331}
332
333/* Created by linker magic */
334extern char __per_cpu_start[], __per_cpu_end[];
335
Rusty Russell842bbaa2005-08-01 21:11:47 -0700336static void *percpu_modalloc(unsigned long size, unsigned long align,
337 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 unsigned long extra;
340 unsigned int i;
341 void *ptr;
342
Rusty Russell842bbaa2005-08-01 21:11:47 -0700343 if (align > SMP_CACHE_BYTES) {
344 printk(KERN_WARNING "%s: per-cpu alignment %li > %i\n",
345 name, align, SMP_CACHE_BYTES);
346 align = SMP_CACHE_BYTES;
347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 ptr = __per_cpu_start;
350 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
351 /* Extra for alignment requirement. */
352 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
353 BUG_ON(i == 0 && extra != 0);
354
355 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
356 continue;
357
358 /* Transfer extra to previous block. */
359 if (pcpu_size[i-1] < 0)
360 pcpu_size[i-1] -= extra;
361 else
362 pcpu_size[i-1] += extra;
363 pcpu_size[i] -= extra;
364 ptr += extra;
365
366 /* Split block if warranted */
367 if (pcpu_size[i] - size > sizeof(unsigned long))
368 if (!split_block(i, size))
369 return NULL;
370
371 /* Mark allocated */
372 pcpu_size[i] = -pcpu_size[i];
373 return ptr;
374 }
375
376 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
377 size);
378 return NULL;
379}
380
381static void percpu_modfree(void *freeme)
382{
383 unsigned int i;
384 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
385
386 /* First entry is core kernel percpu data. */
387 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
388 if (ptr == freeme) {
389 pcpu_size[i] = -pcpu_size[i];
390 goto free;
391 }
392 }
393 BUG();
394
395 free:
396 /* Merge with previous? */
397 if (pcpu_size[i-1] >= 0) {
398 pcpu_size[i-1] += pcpu_size[i];
399 pcpu_num_used--;
400 memmove(&pcpu_size[i], &pcpu_size[i+1],
401 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
402 i--;
403 }
404 /* Merge with next? */
405 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
406 pcpu_size[i] += pcpu_size[i+1];
407 pcpu_num_used--;
408 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
409 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
410 }
411}
412
413static unsigned int find_pcpusec(Elf_Ehdr *hdr,
414 Elf_Shdr *sechdrs,
415 const char *secstrings)
416{
417 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
418}
419
420static int percpu_modinit(void)
421{
422 pcpu_num_used = 2;
423 pcpu_num_allocated = 2;
424 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
425 GFP_KERNEL);
426 /* Static in-kernel percpu data (used). */
427 pcpu_size[0] = -ALIGN(__per_cpu_end-__per_cpu_start, SMP_CACHE_BYTES);
428 /* Free room. */
429 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
430 if (pcpu_size[1] < 0) {
431 printk(KERN_ERR "No per-cpu room for modules.\n");
432 pcpu_num_used = 1;
433 }
434
435 return 0;
436}
437__initcall(percpu_modinit);
438#else /* ... !CONFIG_SMP */
Rusty Russell842bbaa2005-08-01 21:11:47 -0700439static inline void *percpu_modalloc(unsigned long size, unsigned long align,
440 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 return NULL;
443}
444static inline void percpu_modfree(void *pcpuptr)
445{
446 BUG();
447}
448static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
449 Elf_Shdr *sechdrs,
450 const char *secstrings)
451{
452 return 0;
453}
454static inline void percpu_modcopy(void *pcpudst, const void *src,
455 unsigned long size)
456{
457 /* pcpusec should be 0, and size of that section should be 0. */
458 BUG_ON(size != 0);
459}
460#endif /* CONFIG_SMP */
461
Matt Domschc988d2b2005-06-23 22:05:15 -0700462#define MODINFO_ATTR(field) \
463static void setup_modinfo_##field(struct module *mod, const char *s) \
464{ \
465 mod->field = kstrdup(s, GFP_KERNEL); \
466} \
467static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
468 struct module *mod, char *buffer) \
469{ \
470 return sprintf(buffer, "%s\n", mod->field); \
471} \
472static int modinfo_##field##_exists(struct module *mod) \
473{ \
474 return mod->field != NULL; \
475} \
476static void free_modinfo_##field(struct module *mod) \
477{ \
478 kfree(mod->field); \
479 mod->field = NULL; \
480} \
481static struct module_attribute modinfo_##field = { \
482 .attr = { .name = __stringify(field), .mode = 0444, \
483 .owner = THIS_MODULE }, \
484 .show = show_modinfo_##field, \
485 .setup = setup_modinfo_##field, \
486 .test = modinfo_##field##_exists, \
487 .free = free_modinfo_##field, \
488};
489
490MODINFO_ATTR(version);
491MODINFO_ATTR(srcversion);
492
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800493#ifdef CONFIG_MODULE_UNLOAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494/* Init the unload section of the module. */
495static void module_unload_init(struct module *mod)
496{
497 unsigned int i;
498
499 INIT_LIST_HEAD(&mod->modules_which_use_me);
500 for (i = 0; i < NR_CPUS; i++)
501 local_set(&mod->ref[i].count, 0);
502 /* Hold reference count during initialization. */
Ingo Molnar39c715b2005-06-21 17:14:34 -0700503 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* Backwards compatibility macros put refcount during init. */
505 mod->waiter = current;
506}
507
508/* modules using other modules */
509struct module_use
510{
511 struct list_head list;
512 struct module *module_which_uses;
513};
514
515/* Does a already use b? */
516static int already_uses(struct module *a, struct module *b)
517{
518 struct module_use *use;
519
520 list_for_each_entry(use, &b->modules_which_use_me, list) {
521 if (use->module_which_uses == a) {
522 DEBUGP("%s uses %s!\n", a->name, b->name);
523 return 1;
524 }
525 }
526 DEBUGP("%s does not use %s!\n", a->name, b->name);
527 return 0;
528}
529
530/* Module a uses b */
531static int use_module(struct module *a, struct module *b)
532{
533 struct module_use *use;
534 if (b == NULL || already_uses(a, b)) return 1;
535
536 if (!strong_try_module_get(b))
537 return 0;
538
539 DEBUGP("Allocating new usage for %s.\n", a->name);
540 use = kmalloc(sizeof(*use), GFP_ATOMIC);
541 if (!use) {
542 printk("%s: out of memory loading\n", a->name);
543 module_put(b);
544 return 0;
545 }
546
547 use->module_which_uses = a;
548 list_add(&use->list, &b->modules_which_use_me);
549 return 1;
550}
551
552/* Clear the unload stuff of the module. */
553static void module_unload_free(struct module *mod)
554{
555 struct module *i;
556
557 list_for_each_entry(i, &modules, list) {
558 struct module_use *use;
559
560 list_for_each_entry(use, &i->modules_which_use_me, list) {
561 if (use->module_which_uses == mod) {
562 DEBUGP("%s unusing %s\n", mod->name, i->name);
563 module_put(i);
564 list_del(&use->list);
565 kfree(use);
566 /* There can be at most one match. */
567 break;
568 }
569 }
570 }
571}
572
573#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800574static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 int ret = (flags & O_TRUNC);
577 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800578 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return ret;
580}
581#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800582static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 return 0;
585}
586#endif /* CONFIG_MODULE_FORCE_UNLOAD */
587
588struct stopref
589{
590 struct module *mod;
591 int flags;
592 int *forced;
593};
594
595/* Whole machine is stopped with interrupts off when this runs. */
596static int __try_stop_module(void *_sref)
597{
598 struct stopref *sref = _sref;
599
600 /* If it's not unused, quit unless we are told to block. */
601 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800602 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return -EWOULDBLOCK;
604 }
605
606 /* Mark it as dying. */
607 sref->mod->state = MODULE_STATE_GOING;
608 return 0;
609}
610
611static int try_stop_module(struct module *mod, int flags, int *forced)
612{
613 struct stopref sref = { mod, flags, forced };
614
615 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
616}
617
618unsigned int module_refcount(struct module *mod)
619{
620 unsigned int i, total = 0;
621
622 for (i = 0; i < NR_CPUS; i++)
623 total += local_read(&mod->ref[i].count);
624 return total;
625}
626EXPORT_SYMBOL(module_refcount);
627
628/* This exists whether we can unload or not */
629static void free_module(struct module *mod);
630
631static void wait_for_zero_refcount(struct module *mod)
632{
633 /* Since we might sleep for some time, drop the semaphore first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800634 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 for (;;) {
636 DEBUGP("Looking at refcount...\n");
637 set_current_state(TASK_UNINTERRUPTIBLE);
638 if (module_refcount(mod) == 0)
639 break;
640 schedule();
641 }
642 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800643 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646asmlinkage long
647sys_delete_module(const char __user *name_user, unsigned int flags)
648{
649 struct module *mod;
650 char name[MODULE_NAME_LEN];
651 int ret, forced = 0;
652
653 if (!capable(CAP_SYS_MODULE))
654 return -EPERM;
655
656 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
657 return -EFAULT;
658 name[MODULE_NAME_LEN-1] = '\0';
659
Ashutosh Naik6389a382006-03-23 03:00:46 -0800660 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return -EINTR;
662
663 mod = find_module(name);
664 if (!mod) {
665 ret = -ENOENT;
666 goto out;
667 }
668
669 if (!list_empty(&mod->modules_which_use_me)) {
670 /* Other modules depend on us: get rid of them first. */
671 ret = -EWOULDBLOCK;
672 goto out;
673 }
674
675 /* Doing init or already dying? */
676 if (mod->state != MODULE_STATE_LIVE) {
677 /* FIXME: if (force), slam module count and wake up
678 waiter --RR */
679 DEBUGP("%s already dying\n", mod->name);
680 ret = -EBUSY;
681 goto out;
682 }
683
684 /* If it has an init func, it must have an exit func to unload */
685 if ((mod->init != NULL && mod->exit == NULL)
686 || mod->unsafe) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800687 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (!forced) {
689 /* This module can't be removed */
690 ret = -EBUSY;
691 goto out;
692 }
693 }
694
695 /* Set this up before setting mod->state */
696 mod->waiter = current;
697
698 /* Stop the machine so refcounts can't move and disable module. */
699 ret = try_stop_module(mod, flags, &forced);
700 if (ret != 0)
701 goto out;
702
703 /* Never wait if forced. */
704 if (!forced && module_refcount(mod) != 0)
705 wait_for_zero_refcount(mod);
706
707 /* Final destruction now noone is using it. */
708 if (mod->exit != NULL) {
Ashutosh Naik6389a382006-03-23 03:00:46 -0800709 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 mod->exit();
Ashutosh Naik6389a382006-03-23 03:00:46 -0800711 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713 free_module(mod);
714
715 out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800716 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return ret;
718}
719
720static void print_unload_info(struct seq_file *m, struct module *mod)
721{
722 struct module_use *use;
723 int printed_something = 0;
724
725 seq_printf(m, " %u ", module_refcount(mod));
726
727 /* Always include a trailing , so userspace can differentiate
728 between this and the old multi-field proc format. */
729 list_for_each_entry(use, &mod->modules_which_use_me, list) {
730 printed_something = 1;
731 seq_printf(m, "%s,", use->module_which_uses->name);
732 }
733
734 if (mod->unsafe) {
735 printed_something = 1;
736 seq_printf(m, "[unsafe],");
737 }
738
739 if (mod->init != NULL && mod->exit == NULL) {
740 printed_something = 1;
741 seq_printf(m, "[permanent],");
742 }
743
744 if (!printed_something)
745 seq_printf(m, "-");
746}
747
748void __symbol_put(const char *symbol)
749{
750 struct module *owner;
751 unsigned long flags;
752 const unsigned long *crc;
753
754 spin_lock_irqsave(&modlist_lock, flags);
755 if (!__find_symbol(symbol, &owner, &crc, 1))
756 BUG();
757 module_put(owner);
758 spin_unlock_irqrestore(&modlist_lock, flags);
759}
760EXPORT_SYMBOL(__symbol_put);
761
762void symbol_put_addr(void *addr)
763{
Trent Piepho5e376612006-05-15 09:44:06 -0700764 struct module *modaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Trent Piepho5e376612006-05-15 09:44:06 -0700766 if (core_kernel_text((unsigned long)addr))
767 return;
768
769 if (!(modaddr = module_text_address((unsigned long)addr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 BUG();
Trent Piepho5e376612006-05-15 09:44:06 -0700771 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773EXPORT_SYMBOL_GPL(symbol_put_addr);
774
775static ssize_t show_refcnt(struct module_attribute *mattr,
776 struct module *mod, char *buffer)
777{
778 /* sysfs holds a reference */
779 return sprintf(buffer, "%u\n", module_refcount(mod)-1);
780}
781
782static struct module_attribute refcnt = {
783 .attr = { .name = "refcnt", .mode = 0444, .owner = THIS_MODULE },
784 .show = show_refcnt,
785};
786
787#else /* !CONFIG_MODULE_UNLOAD */
788static void print_unload_info(struct seq_file *m, struct module *mod)
789{
790 /* We don't know the usage count, or what modules are using. */
791 seq_printf(m, " - -");
792}
793
794static inline void module_unload_free(struct module *mod)
795{
796}
797
798static inline int use_module(struct module *a, struct module *b)
799{
800 return strong_try_module_get(b);
801}
802
803static inline void module_unload_init(struct module *mod)
804{
805}
806#endif /* CONFIG_MODULE_UNLOAD */
807
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800808static struct module_attribute *modinfo_attrs[] = {
809 &modinfo_version,
810 &modinfo_srcversion,
811#ifdef CONFIG_MODULE_UNLOAD
812 &refcnt,
813#endif
814 NULL,
815};
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817static const char vermagic[] = VERMAGIC_STRING;
818
819#ifdef CONFIG_MODVERSIONS
820static int check_version(Elf_Shdr *sechdrs,
821 unsigned int versindex,
822 const char *symname,
823 struct module *mod,
824 const unsigned long *crc)
825{
826 unsigned int i, num_versions;
827 struct modversion_info *versions;
828
829 /* Exporting module didn't supply crcs? OK, we're already tainted. */
830 if (!crc)
831 return 1;
832
833 versions = (void *) sechdrs[versindex].sh_addr;
834 num_versions = sechdrs[versindex].sh_size
835 / sizeof(struct modversion_info);
836
837 for (i = 0; i < num_versions; i++) {
838 if (strcmp(versions[i].name, symname) != 0)
839 continue;
840
841 if (versions[i].crc == *crc)
842 return 1;
843 printk("%s: disagrees about version of symbol %s\n",
844 mod->name, symname);
845 DEBUGP("Found checksum %lX vs module %lX\n",
846 *crc, versions[i].crc);
847 return 0;
848 }
849 /* Not in module's version table. OK, but that taints the kernel. */
850 if (!(tainted & TAINT_FORCED_MODULE)) {
851 printk("%s: no version for \"%s\" found: kernel tainted.\n",
852 mod->name, symname);
Randy Dunlap9f158332005-09-13 01:25:16 -0700853 add_taint(TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855 return 1;
856}
857
858static inline int check_modstruct_version(Elf_Shdr *sechdrs,
859 unsigned int versindex,
860 struct module *mod)
861{
862 const unsigned long *crc;
863 struct module *owner;
864
865 if (!__find_symbol("struct_module", &owner, &crc, 1))
866 BUG();
867 return check_version(sechdrs, versindex, "struct_module", mod,
868 crc);
869}
870
871/* First part is kernel version, which we ignore. */
872static inline int same_magic(const char *amagic, const char *bmagic)
873{
874 amagic += strcspn(amagic, " ");
875 bmagic += strcspn(bmagic, " ");
876 return strcmp(amagic, bmagic) == 0;
877}
878#else
879static inline int check_version(Elf_Shdr *sechdrs,
880 unsigned int versindex,
881 const char *symname,
882 struct module *mod,
883 const unsigned long *crc)
884{
885 return 1;
886}
887
888static inline int check_modstruct_version(Elf_Shdr *sechdrs,
889 unsigned int versindex,
890 struct module *mod)
891{
892 return 1;
893}
894
895static inline int same_magic(const char *amagic, const char *bmagic)
896{
897 return strcmp(amagic, bmagic) == 0;
898}
899#endif /* CONFIG_MODVERSIONS */
900
901/* Resolve a symbol for this module. I.e. if we find one, record usage.
902 Must be holding module_mutex. */
903static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
904 unsigned int versindex,
905 const char *name,
906 struct module *mod)
907{
908 struct module *owner;
909 unsigned long ret;
910 const unsigned long *crc;
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 ret = __find_symbol(name, &owner, &crc, mod->license_gplok);
913 if (ret) {
914 /* use_module can fail due to OOM, or module unloading */
915 if (!check_version(sechdrs, versindex, name, mod, crc) ||
916 !use_module(mod, owner))
917 ret = 0;
918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return ret;
920}
921
922
923/*
924 * /sys/module/foo/sections stuff
925 * J. Corbet <corbet@lwn.net>
926 */
927#ifdef CONFIG_KALLSYMS
928static ssize_t module_sect_show(struct module_attribute *mattr,
929 struct module *mod, char *buf)
930{
931 struct module_sect_attr *sattr =
932 container_of(mattr, struct module_sect_attr, mattr);
933 return sprintf(buf, "0x%lx\n", sattr->address);
934}
935
936static void add_sect_attrs(struct module *mod, unsigned int nsect,
937 char *secstrings, Elf_Shdr *sechdrs)
938{
939 unsigned int nloaded = 0, i, size[2];
940 struct module_sect_attrs *sect_attrs;
941 struct module_sect_attr *sattr;
942 struct attribute **gattr;
943
944 /* Count loaded sections and allocate structures */
945 for (i = 0; i < nsect; i++)
946 if (sechdrs[i].sh_flags & SHF_ALLOC)
947 nloaded++;
948 size[0] = ALIGN(sizeof(*sect_attrs)
949 + nloaded * sizeof(sect_attrs->attrs[0]),
950 sizeof(sect_attrs->grp.attrs[0]));
951 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
952 if (! (sect_attrs = kmalloc(size[0] + size[1], GFP_KERNEL)))
953 return;
954
955 /* Setup section attributes. */
956 sect_attrs->grp.name = "sections";
957 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
958
959 sattr = &sect_attrs->attrs[0];
960 gattr = &sect_attrs->grp.attrs[0];
961 for (i = 0; i < nsect; i++) {
962 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
963 continue;
964 sattr->address = sechdrs[i].sh_addr;
965 strlcpy(sattr->name, secstrings + sechdrs[i].sh_name,
966 MODULE_SECT_NAME_LEN);
967 sattr->mattr.show = module_sect_show;
968 sattr->mattr.store = NULL;
969 sattr->mattr.attr.name = sattr->name;
970 sattr->mattr.attr.owner = mod;
971 sattr->mattr.attr.mode = S_IRUGO;
972 *(gattr++) = &(sattr++)->mattr.attr;
973 }
974 *gattr = NULL;
975
976 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
977 goto out;
978
979 mod->sect_attrs = sect_attrs;
980 return;
981 out:
982 kfree(sect_attrs);
983}
984
985static void remove_sect_attrs(struct module *mod)
986{
987 if (mod->sect_attrs) {
988 sysfs_remove_group(&mod->mkobj.kobj,
989 &mod->sect_attrs->grp);
990 /* We are positive that no one is using any sect attrs
991 * at this point. Deallocate immediately. */
992 kfree(mod->sect_attrs);
993 mod->sect_attrs = NULL;
994 }
995}
996
997
998#else
999static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1000 char *sectstrings, Elf_Shdr *sechdrs)
1001{
1002}
1003
1004static inline void remove_sect_attrs(struct module *mod)
1005{
1006}
1007#endif /* CONFIG_KALLSYMS */
1008
Matt Domschc988d2b2005-06-23 22:05:15 -07001009static int module_add_modinfo_attrs(struct module *mod)
1010{
1011 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001012 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001013 int error = 0;
1014 int i;
1015
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001016 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1017 (ARRAY_SIZE(modinfo_attrs) + 1)),
1018 GFP_KERNEL);
1019 if (!mod->modinfo_attrs)
1020 return -ENOMEM;
1021
1022 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001023 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1024 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001025 (attr->test && attr->test(mod))) {
1026 memcpy(temp_attr, attr, sizeof(*temp_attr));
1027 temp_attr->attr.owner = mod;
1028 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1029 ++temp_attr;
1030 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001031 }
1032 return error;
1033}
1034
1035static void module_remove_modinfo_attrs(struct module *mod)
1036{
1037 struct module_attribute *attr;
1038 int i;
1039
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001040 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1041 /* pick a field to test for end of list */
1042 if (!attr->attr.name)
1043 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001044 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001045 if (attr->free)
1046 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001047 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001048 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001049}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051static int mod_sysfs_setup(struct module *mod,
1052 struct kernel_param *kparam,
1053 unsigned int num_params)
1054{
1055 int err;
1056
1057 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1058 err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
1059 if (err)
1060 goto out;
1061 kobj_set_kset_s(&mod->mkobj, module_subsys);
1062 mod->mkobj.mod = mod;
1063 err = kobject_register(&mod->mkobj.kobj);
1064 if (err)
1065 goto out;
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 err = module_param_sysfs_setup(mod, kparam, num_params);
1068 if (err)
1069 goto out_unreg;
1070
Matt Domschc988d2b2005-06-23 22:05:15 -07001071 err = module_add_modinfo_attrs(mod);
1072 if (err)
1073 goto out_unreg;
Matt Domschc988d2b2005-06-23 22:05:15 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return 0;
1076
1077out_unreg:
1078 kobject_unregister(&mod->mkobj.kobj);
1079out:
1080 return err;
1081}
1082
1083static void mod_kobject_remove(struct module *mod)
1084{
Matt Domschc988d2b2005-06-23 22:05:15 -07001085 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 module_param_sysfs_remove(mod);
1087
1088 kobject_unregister(&mod->mkobj.kobj);
1089}
1090
1091/*
1092 * unlink the module with the whole machine is stopped with interrupts off
1093 * - this defends against kallsyms not taking locks
1094 */
1095static int __unlink_module(void *_mod)
1096{
1097 struct module *mod = _mod;
1098 list_del(&mod->list);
1099 return 0;
1100}
1101
1102/* Free a module, remove from lists, etc (must hold module mutex). */
1103static void free_module(struct module *mod)
1104{
1105 /* Delete from various lists */
1106 stop_machine_run(__unlink_module, mod, NR_CPUS);
1107 remove_sect_attrs(mod);
1108 mod_kobject_remove(mod);
1109
Jan Beulich4552d5d2006-06-26 13:57:28 +02001110 unwind_remove_table(mod->unwind_info, 0);
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 /* Arch-specific cleanup. */
1113 module_arch_cleanup(mod);
1114
1115 /* Module unload stuff */
1116 module_unload_free(mod);
1117
1118 /* This may be NULL, but that's OK */
1119 module_free(mod, mod->module_init);
1120 kfree(mod->args);
1121 if (mod->percpu)
1122 percpu_modfree(mod->percpu);
1123
1124 /* Finally, free the core (containing the module structure) */
1125 module_free(mod, mod->module_core);
1126}
1127
1128void *__symbol_get(const char *symbol)
1129{
1130 struct module *owner;
1131 unsigned long value, flags;
1132 const unsigned long *crc;
1133
1134 spin_lock_irqsave(&modlist_lock, flags);
1135 value = __find_symbol(symbol, &owner, &crc, 1);
1136 if (value && !strong_try_module_get(owner))
1137 value = 0;
1138 spin_unlock_irqrestore(&modlist_lock, flags);
1139
1140 return (void *)value;
1141}
1142EXPORT_SYMBOL_GPL(__symbol_get);
1143
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001144/*
1145 * Ensure that an exported symbol [global namespace] does not already exist
1146 * in the Kernel or in some other modules exported symbol table.
1147 */
1148static int verify_export_symbols(struct module *mod)
1149{
1150 const char *name = NULL;
1151 unsigned long i, ret = 0;
1152 struct module *owner;
1153 const unsigned long *crc;
1154
1155 for (i = 0; i < mod->num_syms; i++)
1156 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
1157 name = mod->syms[i].name;
1158 ret = -ENOEXEC;
1159 goto dup;
1160 }
1161
1162 for (i = 0; i < mod->num_gpl_syms; i++)
1163 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
1164 name = mod->gpl_syms[i].name;
1165 ret = -ENOEXEC;
1166 goto dup;
1167 }
1168
1169dup:
1170 if (ret)
1171 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1172 mod->name, name, module_name(owner));
1173
1174 return ret;
1175}
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177/* Change all symbols so that sh_value encodes the pointer directly. */
1178static int simplify_symbols(Elf_Shdr *sechdrs,
1179 unsigned int symindex,
1180 const char *strtab,
1181 unsigned int versindex,
1182 unsigned int pcpuindex,
1183 struct module *mod)
1184{
1185 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1186 unsigned long secbase;
1187 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1188 int ret = 0;
1189
1190 for (i = 1; i < n; i++) {
1191 switch (sym[i].st_shndx) {
1192 case SHN_COMMON:
1193 /* We compiled with -fno-common. These are not
1194 supposed to happen. */
1195 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1196 printk("%s: please compile with -fno-common\n",
1197 mod->name);
1198 ret = -ENOEXEC;
1199 break;
1200
1201 case SHN_ABS:
1202 /* Don't need to do anything */
1203 DEBUGP("Absolute symbol: 0x%08lx\n",
1204 (long)sym[i].st_value);
1205 break;
1206
1207 case SHN_UNDEF:
1208 sym[i].st_value
1209 = resolve_symbol(sechdrs, versindex,
1210 strtab + sym[i].st_name, mod);
1211
1212 /* Ok if resolved. */
1213 if (sym[i].st_value != 0)
1214 break;
1215 /* Ok if weak. */
1216 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1217 break;
1218
1219 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1220 mod->name, strtab + sym[i].st_name);
1221 ret = -ENOENT;
1222 break;
1223
1224 default:
1225 /* Divert to percpu allocation if a percpu var. */
1226 if (sym[i].st_shndx == pcpuindex)
1227 secbase = (unsigned long)mod->percpu;
1228 else
1229 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1230 sym[i].st_value += secbase;
1231 break;
1232 }
1233 }
1234
1235 return ret;
1236}
1237
1238/* Update size with this section: return offset. */
1239static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1240{
1241 long ret;
1242
1243 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1244 *size = ret + sechdr->sh_size;
1245 return ret;
1246}
1247
1248/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1249 might -- code, read-only data, read-write data, small data. Tally
1250 sizes, and place the offsets into sh_entsize fields: high bit means it
1251 belongs in init. */
1252static void layout_sections(struct module *mod,
1253 const Elf_Ehdr *hdr,
1254 Elf_Shdr *sechdrs,
1255 const char *secstrings)
1256{
1257 static unsigned long const masks[][2] = {
1258 /* NOTE: all executable code must be the first section
1259 * in this array; otherwise modify the text_size
1260 * finder in the two loops below */
1261 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1262 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1263 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1264 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1265 };
1266 unsigned int m, i;
1267
1268 for (i = 0; i < hdr->e_shnum; i++)
1269 sechdrs[i].sh_entsize = ~0UL;
1270
1271 DEBUGP("Core section allocation order:\n");
1272 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1273 for (i = 0; i < hdr->e_shnum; ++i) {
1274 Elf_Shdr *s = &sechdrs[i];
1275
1276 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1277 || (s->sh_flags & masks[m][1])
1278 || s->sh_entsize != ~0UL
1279 || strncmp(secstrings + s->sh_name,
1280 ".init", 5) == 0)
1281 continue;
1282 s->sh_entsize = get_offset(&mod->core_size, s);
1283 DEBUGP("\t%s\n", secstrings + s->sh_name);
1284 }
1285 if (m == 0)
1286 mod->core_text_size = mod->core_size;
1287 }
1288
1289 DEBUGP("Init section allocation order:\n");
1290 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1291 for (i = 0; i < hdr->e_shnum; ++i) {
1292 Elf_Shdr *s = &sechdrs[i];
1293
1294 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1295 || (s->sh_flags & masks[m][1])
1296 || s->sh_entsize != ~0UL
1297 || strncmp(secstrings + s->sh_name,
1298 ".init", 5) != 0)
1299 continue;
1300 s->sh_entsize = (get_offset(&mod->init_size, s)
1301 | INIT_OFFSET_MASK);
1302 DEBUGP("\t%s\n", secstrings + s->sh_name);
1303 }
1304 if (m == 0)
1305 mod->init_text_size = mod->init_size;
1306 }
1307}
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309static void set_license(struct module *mod, const char *license)
1310{
1311 if (!license)
1312 license = "unspecified";
1313
1314 mod->license_gplok = license_is_gpl_compatible(license);
1315 if (!mod->license_gplok && !(tainted & TAINT_PROPRIETARY_MODULE)) {
1316 printk(KERN_WARNING "%s: module license '%s' taints kernel.\n",
1317 mod->name, license);
Randy Dunlap9f158332005-09-13 01:25:16 -07001318 add_taint(TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320}
1321
1322/* Parse tag=value strings from .modinfo section */
1323static char *next_string(char *string, unsigned long *secsize)
1324{
1325 /* Skip non-zero chars */
1326 while (string[0]) {
1327 string++;
1328 if ((*secsize)-- <= 1)
1329 return NULL;
1330 }
1331
1332 /* Skip any zero padding. */
1333 while (!string[0]) {
1334 string++;
1335 if ((*secsize)-- <= 1)
1336 return NULL;
1337 }
1338 return string;
1339}
1340
1341static char *get_modinfo(Elf_Shdr *sechdrs,
1342 unsigned int info,
1343 const char *tag)
1344{
1345 char *p;
1346 unsigned int taglen = strlen(tag);
1347 unsigned long size = sechdrs[info].sh_size;
1348
1349 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1350 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1351 return p + taglen + 1;
1352 }
1353 return NULL;
1354}
1355
Matt Domschc988d2b2005-06-23 22:05:15 -07001356static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1357 unsigned int infoindex)
1358{
1359 struct module_attribute *attr;
1360 int i;
1361
1362 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1363 if (attr->setup)
1364 attr->setup(mod,
1365 get_modinfo(sechdrs,
1366 infoindex,
1367 attr->attr.name));
1368 }
1369}
Matt Domschc988d2b2005-06-23 22:05:15 -07001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371#ifdef CONFIG_KALLSYMS
1372int is_exported(const char *name, const struct module *mod)
1373{
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001374 if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1375 return 1;
1376 else
Jesper Juhlf867d2a2006-06-25 05:47:09 -07001377 if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return 1;
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001379 else
1380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
1383/* As per nm */
1384static char elf_type(const Elf_Sym *sym,
1385 Elf_Shdr *sechdrs,
1386 const char *secstrings,
1387 struct module *mod)
1388{
1389 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1390 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1391 return 'v';
1392 else
1393 return 'w';
1394 }
1395 if (sym->st_shndx == SHN_UNDEF)
1396 return 'U';
1397 if (sym->st_shndx == SHN_ABS)
1398 return 'a';
1399 if (sym->st_shndx >= SHN_LORESERVE)
1400 return '?';
1401 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1402 return 't';
1403 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1404 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1405 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1406 return 'r';
1407 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1408 return 'g';
1409 else
1410 return 'd';
1411 }
1412 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1413 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1414 return 's';
1415 else
1416 return 'b';
1417 }
1418 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1419 ".debug", strlen(".debug")) == 0)
1420 return 'n';
1421 return '?';
1422}
1423
1424static void add_kallsyms(struct module *mod,
1425 Elf_Shdr *sechdrs,
1426 unsigned int symindex,
1427 unsigned int strindex,
1428 const char *secstrings)
1429{
1430 unsigned int i;
1431
1432 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1433 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1434 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1435
1436 /* Set types up while we still have access to sections. */
1437 for (i = 0; i < mod->num_symtab; i++)
1438 mod->symtab[i].st_info
1439 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1440}
1441#else
1442static inline void add_kallsyms(struct module *mod,
1443 Elf_Shdr *sechdrs,
1444 unsigned int symindex,
1445 unsigned int strindex,
1446 const char *secstrings)
1447{
1448}
1449#endif /* CONFIG_KALLSYMS */
1450
1451/* Allocate and load the module: note that size of section 0 is always
1452 zero, and we rely on this for optional sections. */
1453static struct module *load_module(void __user *umod,
1454 unsigned long len,
1455 const char __user *uargs)
1456{
1457 Elf_Ehdr *hdr;
1458 Elf_Shdr *sechdrs;
1459 char *secstrings, *args, *modmagic, *strtab = NULL;
Andrew Morton84860f92006-06-28 04:26:46 -07001460 unsigned int i;
1461 unsigned int symindex = 0;
1462 unsigned int strindex = 0;
1463 unsigned int setupindex;
1464 unsigned int exindex;
1465 unsigned int exportindex;
1466 unsigned int modindex;
1467 unsigned int obsparmindex;
1468 unsigned int infoindex;
1469 unsigned int gplindex;
1470 unsigned int crcindex;
1471 unsigned int gplcrcindex;
1472 unsigned int versindex;
1473 unsigned int pcpuindex;
1474 unsigned int gplfutureindex;
1475 unsigned int gplfuturecrcindex;
1476 unsigned int unwindex = 0;
1477 unsigned int unusedindex;
1478 unsigned int unusedcrcindex;
1479 unsigned int unusedgplindex;
1480 unsigned int unusedgplcrcindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 struct module *mod;
1482 long err = 0;
1483 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1484 struct exception_table_entry *extable;
Thomas Koeller378bac82005-09-06 15:17:11 -07001485 mm_segment_t old_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1488 umod, len, uargs);
1489 if (len < sizeof(*hdr))
1490 return ERR_PTR(-ENOEXEC);
1491
1492 /* Suck in entire file: we'll want most of it. */
1493 /* vmalloc barfs on "unusual" numbers. Check here */
1494 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1495 return ERR_PTR(-ENOMEM);
1496 if (copy_from_user(hdr, umod, len) != 0) {
1497 err = -EFAULT;
1498 goto free_hdr;
1499 }
1500
1501 /* Sanity checks against insmoding binaries or wrong arch,
1502 weird elf version */
1503 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1504 || hdr->e_type != ET_REL
1505 || !elf_check_arch(hdr)
1506 || hdr->e_shentsize != sizeof(*sechdrs)) {
1507 err = -ENOEXEC;
1508 goto free_hdr;
1509 }
1510
1511 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1512 goto truncated;
1513
1514 /* Convenience variables */
1515 sechdrs = (void *)hdr + hdr->e_shoff;
1516 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1517 sechdrs[0].sh_addr = 0;
1518
1519 for (i = 1; i < hdr->e_shnum; i++) {
1520 if (sechdrs[i].sh_type != SHT_NOBITS
1521 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1522 goto truncated;
1523
1524 /* Mark all sections sh_addr with their address in the
1525 temporary image. */
1526 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1527
1528 /* Internal symbols and strings. */
1529 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1530 symindex = i;
1531 strindex = sechdrs[i].sh_link;
1532 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1533 }
1534#ifndef CONFIG_MODULE_UNLOAD
1535 /* Don't load .exit sections */
1536 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1537 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1538#endif
1539 }
1540
1541 modindex = find_sec(hdr, sechdrs, secstrings,
1542 ".gnu.linkonce.this_module");
1543 if (!modindex) {
1544 printk(KERN_WARNING "No module found in object\n");
1545 err = -ENOEXEC;
1546 goto free_hdr;
1547 }
1548 mod = (void *)sechdrs[modindex].sh_addr;
1549
1550 if (symindex == 0) {
1551 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1552 mod->name);
1553 err = -ENOEXEC;
1554 goto free_hdr;
1555 }
1556
1557 /* Optional sections */
1558 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1559 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001560 gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001561 unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
1562 unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1564 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001565 gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001566 unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
1567 unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1569 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1570 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1571 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1572 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1573 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
Jan Beulich4552d5d2006-06-26 13:57:28 +02001574#ifdef ARCH_UNWIND_SECTION_NAME
1575 unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
1576#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /* Don't keep modinfo section */
1579 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1580#ifdef CONFIG_KALLSYMS
1581 /* Keep symbol and string tables for decoding later. */
1582 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1583 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1584#endif
Jan Beulich4552d5d2006-06-26 13:57:28 +02001585 if (unwindex)
1586 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 /* Check module struct version now, before we try to use module. */
1589 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1590 err = -ENOEXEC;
1591 goto free_hdr;
1592 }
1593
1594 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1595 /* This is allowed: modprobe --force will invalidate it. */
1596 if (!modmagic) {
Randy Dunlap9f158332005-09-13 01:25:16 -07001597 add_taint(TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1599 mod->name);
1600 } else if (!same_magic(modmagic, vermagic)) {
1601 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1602 mod->name, modmagic, vermagic);
1603 err = -ENOEXEC;
1604 goto free_hdr;
1605 }
1606
1607 /* Now copy in args */
Davi Arnaut24277dd2006-03-24 03:18:43 -08001608 args = strndup_user(uargs, ~0UL >> 1);
1609 if (IS_ERR(args)) {
1610 err = PTR_ERR(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 goto free_hdr;
1612 }
Andrew Morton8e08b752006-02-07 12:58:45 -08001613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (find_module(mod->name)) {
1615 err = -EEXIST;
1616 goto free_mod;
1617 }
1618
1619 mod->state = MODULE_STATE_COMING;
1620
1621 /* Allow arches to frob section contents and sizes. */
1622 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1623 if (err < 0)
1624 goto free_mod;
1625
1626 if (pcpuindex) {
1627 /* We have a special allocation for this section. */
1628 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
Rusty Russell842bbaa2005-08-01 21:11:47 -07001629 sechdrs[pcpuindex].sh_addralign,
1630 mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 if (!percpu) {
1632 err = -ENOMEM;
1633 goto free_mod;
1634 }
1635 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1636 mod->percpu = percpu;
1637 }
1638
1639 /* Determine total sizes, and put offsets in sh_entsize. For now
1640 this is done generically; there doesn't appear to be any
1641 special cases for the architectures. */
1642 layout_sections(mod, hdr, sechdrs, secstrings);
1643
1644 /* Do the allocs. */
1645 ptr = module_alloc(mod->core_size);
1646 if (!ptr) {
1647 err = -ENOMEM;
1648 goto free_percpu;
1649 }
1650 memset(ptr, 0, mod->core_size);
1651 mod->module_core = ptr;
1652
1653 ptr = module_alloc(mod->init_size);
1654 if (!ptr && mod->init_size) {
1655 err = -ENOMEM;
1656 goto free_core;
1657 }
1658 memset(ptr, 0, mod->init_size);
1659 mod->module_init = ptr;
1660
1661 /* Transfer each section which specifies SHF_ALLOC */
1662 DEBUGP("final section addresses:\n");
1663 for (i = 0; i < hdr->e_shnum; i++) {
1664 void *dest;
1665
1666 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1667 continue;
1668
1669 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1670 dest = mod->module_init
1671 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1672 else
1673 dest = mod->module_core + sechdrs[i].sh_entsize;
1674
1675 if (sechdrs[i].sh_type != SHT_NOBITS)
1676 memcpy(dest, (void *)sechdrs[i].sh_addr,
1677 sechdrs[i].sh_size);
1678 /* Update sh_addr to point to copy in image. */
1679 sechdrs[i].sh_addr = (unsigned long)dest;
1680 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1681 }
1682 /* Module has been moved. */
1683 mod = (void *)sechdrs[modindex].sh_addr;
1684
1685 /* Now we've moved module, initialize linked lists, etc. */
1686 module_unload_init(mod);
1687
1688 /* Set up license info based on the info section */
1689 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1690
Dave Jones9841d61d2006-01-08 01:03:41 -08001691 if (strcmp(mod->name, "ndiswrapper") == 0)
1692 add_taint(TAINT_PROPRIETARY_MODULE);
1693 if (strcmp(mod->name, "driverloader") == 0)
1694 add_taint(TAINT_PROPRIETARY_MODULE);
1695
Matt Domschc988d2b2005-06-23 22:05:15 -07001696 /* Set up MODINFO_ATTR fields */
1697 setup_modinfo(mod, sechdrs, infoindex);
Matt Domschc988d2b2005-06-23 22:05:15 -07001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 /* Fix up syms, so that st_value is a pointer to location. */
1700 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1701 mod);
1702 if (err < 0)
1703 goto cleanup;
1704
1705 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1706 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1707 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1708 if (crcindex)
1709 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1710 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1711 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1712 if (gplcrcindex)
1713 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001714 mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
1715 sizeof(*mod->gpl_future_syms);
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001716 mod->num_unused_syms = sechdrs[unusedindex].sh_size /
1717 sizeof(*mod->unused_syms);
1718 mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
1719 sizeof(*mod->unused_gpl_syms);
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001720 mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
1721 if (gplfuturecrcindex)
1722 mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001724 mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
1725 if (unusedcrcindex)
1726 mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
1727 mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
1728 if (unusedgplcrcindex)
1729 mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731#ifdef CONFIG_MODVERSIONS
1732 if ((mod->num_syms && !crcindex) ||
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001733 (mod->num_gpl_syms && !gplcrcindex) ||
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001734 (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
1735 (mod->num_unused_syms && !unusedcrcindex) ||
1736 (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 printk(KERN_WARNING "%s: No versions for exported symbols."
1738 " Tainting kernel.\n", mod->name);
Randy Dunlap9f158332005-09-13 01:25:16 -07001739 add_taint(TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741#endif
1742
1743 /* Now do relocations. */
1744 for (i = 1; i < hdr->e_shnum; i++) {
1745 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1746 unsigned int info = sechdrs[i].sh_info;
1747
1748 /* Not a valid relocation section? */
1749 if (info >= hdr->e_shnum)
1750 continue;
1751
1752 /* Don't bother with non-allocated sections */
1753 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1754 continue;
1755
1756 if (sechdrs[i].sh_type == SHT_REL)
1757 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1758 else if (sechdrs[i].sh_type == SHT_RELA)
1759 err = apply_relocate_add(sechdrs, strtab, symindex, i,
1760 mod);
1761 if (err < 0)
1762 goto cleanup;
1763 }
1764
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001765 /* Find duplicate symbols */
1766 err = verify_export_symbols(mod);
1767
1768 if (err < 0)
1769 goto cleanup;
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 /* Set up and sort exception table */
1772 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
1773 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
1774 sort_extable(extable, extable + mod->num_exentries);
1775
1776 /* Finally, copy percpu area over. */
1777 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
1778 sechdrs[pcpuindex].sh_size);
1779
1780 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
1781
1782 err = module_finalize(hdr, sechdrs, mod);
1783 if (err < 0)
1784 goto cleanup;
1785
Thomas Koeller378bac82005-09-06 15:17:11 -07001786 /* flush the icache in correct context */
1787 old_fs = get_fs();
1788 set_fs(KERNEL_DS);
1789
1790 /*
1791 * Flush the instruction cache, since we've played with text.
1792 * Do it before processing of module parameters, so the module
1793 * can provide parameter accessor functions of its own.
1794 */
1795 if (mod->module_init)
1796 flush_icache_range((unsigned long)mod->module_init,
1797 (unsigned long)mod->module_init
1798 + mod->init_size);
1799 flush_icache_range((unsigned long)mod->module_core,
1800 (unsigned long)mod->module_core + mod->core_size);
1801
1802 set_fs(old_fs);
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 mod->args = args;
Rusty Russell8d3b33f2006-03-25 03:07:05 -08001805 if (obsparmindex)
1806 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
1807 mod->name);
1808
1809 /* Size of section 0 is 0, so this works well if no params */
1810 err = parse_args(mod->name, mod->args,
1811 (struct kernel_param *)
1812 sechdrs[setupindex].sh_addr,
1813 sechdrs[setupindex].sh_size
1814 / sizeof(struct kernel_param),
1815 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 if (err < 0)
1817 goto arch_cleanup;
1818
1819 err = mod_sysfs_setup(mod,
1820 (struct kernel_param *)
1821 sechdrs[setupindex].sh_addr,
1822 sechdrs[setupindex].sh_size
1823 / sizeof(struct kernel_param));
1824 if (err < 0)
1825 goto arch_cleanup;
1826 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
1827
Jan Beulich4552d5d2006-06-26 13:57:28 +02001828 /* Size of section 0 is 0, so this works well if no unwind info. */
1829 mod->unwind_info = unwind_add_table(mod,
1830 (void *)sechdrs[unwindex].sh_addr,
1831 sechdrs[unwindex].sh_size);
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 /* Get rid of temporary copy */
1834 vfree(hdr);
1835
1836 /* Done! */
1837 return mod;
1838
1839 arch_cleanup:
1840 module_arch_cleanup(mod);
1841 cleanup:
1842 module_unload_free(mod);
1843 module_free(mod, mod->module_init);
1844 free_core:
1845 module_free(mod, mod->module_core);
1846 free_percpu:
1847 if (percpu)
1848 percpu_modfree(percpu);
1849 free_mod:
1850 kfree(args);
1851 free_hdr:
1852 vfree(hdr);
Jayachandran C6fe2e702006-01-06 00:19:54 -08001853 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 truncated:
1856 printk(KERN_ERR "Module len %lu truncated\n", len);
1857 err = -ENOEXEC;
1858 goto free_hdr;
1859}
1860
1861/*
1862 * link the module with the whole machine is stopped with interrupts off
1863 * - this defends against kallsyms not taking locks
1864 */
1865static int __link_module(void *_mod)
1866{
1867 struct module *mod = _mod;
1868 list_add(&mod->list, &modules);
1869 return 0;
1870}
1871
1872/* This is where the real work happens */
1873asmlinkage long
1874sys_init_module(void __user *umod,
1875 unsigned long len,
1876 const char __user *uargs)
1877{
1878 struct module *mod;
1879 int ret = 0;
1880
1881 /* Must have permission */
1882 if (!capable(CAP_SYS_MODULE))
1883 return -EPERM;
1884
1885 /* Only one module load at a time, please */
Ashutosh Naik6389a382006-03-23 03:00:46 -08001886 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return -EINTR;
1888
1889 /* Do all the hard work */
1890 mod = load_module(umod, len, uargs);
1891 if (IS_ERR(mod)) {
Ashutosh Naik6389a382006-03-23 03:00:46 -08001892 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return PTR_ERR(mod);
1894 }
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 /* Now sew it into the lists. They won't access us, since
1897 strong_try_module_get() will fail. */
1898 stop_machine_run(__link_module, mod, NR_CPUS);
1899
1900 /* Drop lock so they can recurse */
Ashutosh Naik6389a382006-03-23 03:00:46 -08001901 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Alan Sterne041c682006-03-27 01:16:30 -08001903 blocking_notifier_call_chain(&module_notify_list,
1904 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 /* Start the module */
1907 if (mod->init != NULL)
1908 ret = mod->init();
1909 if (ret < 0) {
1910 /* Init routine failed: abort. Try to protect us from
1911 buggy refcounters. */
1912 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001913 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 if (mod->unsafe)
1915 printk(KERN_ERR "%s: module is now stuck!\n",
1916 mod->name);
1917 else {
1918 module_put(mod);
Ashutosh Naik6389a382006-03-23 03:00:46 -08001919 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 free_module(mod);
Ashutosh Naik6389a382006-03-23 03:00:46 -08001921 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923 return ret;
1924 }
1925
1926 /* Now it's a first class citizen! */
Ashutosh Naik6389a382006-03-23 03:00:46 -08001927 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 mod->state = MODULE_STATE_LIVE;
1929 /* Drop initial reference. */
1930 module_put(mod);
Jan Beulich4552d5d2006-06-26 13:57:28 +02001931 unwind_remove_table(mod->unwind_info, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 module_free(mod, mod->module_init);
1933 mod->module_init = NULL;
1934 mod->init_size = 0;
1935 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08001936 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 return 0;
1939}
1940
1941static inline int within(unsigned long addr, void *start, unsigned long size)
1942{
1943 return ((void *)addr >= start && (void *)addr < start + size);
1944}
1945
1946#ifdef CONFIG_KALLSYMS
1947/*
1948 * This ignores the intensely annoying "mapping symbols" found
1949 * in ARM ELF files: $a, $t and $d.
1950 */
1951static inline int is_arm_mapping_symbol(const char *str)
1952{
1953 return str[0] == '$' && strchr("atd", str[1])
1954 && (str[2] == '\0' || str[2] == '.');
1955}
1956
1957static const char *get_ksymbol(struct module *mod,
1958 unsigned long addr,
1959 unsigned long *size,
1960 unsigned long *offset)
1961{
1962 unsigned int i, best = 0;
1963 unsigned long nextval;
1964
1965 /* At worse, next value is at end of module */
1966 if (within(addr, mod->module_init, mod->init_size))
1967 nextval = (unsigned long)mod->module_init+mod->init_text_size;
1968 else
1969 nextval = (unsigned long)mod->module_core+mod->core_text_size;
1970
1971 /* Scan for closest preceeding symbol, and next symbol. (ELF
1972 starts real symbols at 1). */
1973 for (i = 1; i < mod->num_symtab; i++) {
1974 if (mod->symtab[i].st_shndx == SHN_UNDEF)
1975 continue;
1976
1977 /* We ignore unnamed symbols: they're uninformative
1978 * and inserted at a whim. */
1979 if (mod->symtab[i].st_value <= addr
1980 && mod->symtab[i].st_value > mod->symtab[best].st_value
1981 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
1982 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
1983 best = i;
1984 if (mod->symtab[i].st_value > addr
1985 && mod->symtab[i].st_value < nextval
1986 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
1987 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
1988 nextval = mod->symtab[i].st_value;
1989 }
1990
1991 if (!best)
1992 return NULL;
1993
1994 *size = nextval - mod->symtab[best].st_value;
1995 *offset = addr - mod->symtab[best].st_value;
1996 return mod->strtab + mod->symtab[best].st_name;
1997}
1998
1999/* For kallsyms to ask for address resolution. NULL means not found.
2000 We don't lock, as this is used for oops resolution and races are a
2001 lesser concern. */
2002const char *module_address_lookup(unsigned long addr,
2003 unsigned long *size,
2004 unsigned long *offset,
2005 char **modname)
2006{
2007 struct module *mod;
2008
2009 list_for_each_entry(mod, &modules, list) {
2010 if (within(addr, mod->module_init, mod->init_size)
2011 || within(addr, mod->module_core, mod->core_size)) {
2012 *modname = mod->name;
2013 return get_ksymbol(mod, addr, size, offset);
2014 }
2015 }
2016 return NULL;
2017}
2018
2019struct module *module_get_kallsym(unsigned int symnum,
2020 unsigned long *value,
2021 char *type,
2022 char namebuf[128])
2023{
2024 struct module *mod;
2025
Ashutosh Naik6389a382006-03-23 03:00:46 -08002026 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 list_for_each_entry(mod, &modules, list) {
2028 if (symnum < mod->num_symtab) {
2029 *value = mod->symtab[symnum].st_value;
2030 *type = mod->symtab[symnum].st_info;
2031 strncpy(namebuf,
2032 mod->strtab + mod->symtab[symnum].st_name,
2033 127);
Ashutosh Naik6389a382006-03-23 03:00:46 -08002034 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return mod;
2036 }
2037 symnum -= mod->num_symtab;
2038 }
Ashutosh Naik6389a382006-03-23 03:00:46 -08002039 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return NULL;
2041}
2042
2043static unsigned long mod_find_symname(struct module *mod, const char *name)
2044{
2045 unsigned int i;
2046
2047 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002048 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2049 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return mod->symtab[i].st_value;
2051 return 0;
2052}
2053
2054/* Look for this name: can be of form module:name. */
2055unsigned long module_kallsyms_lookup_name(const char *name)
2056{
2057 struct module *mod;
2058 char *colon;
2059 unsigned long ret = 0;
2060
2061 /* Don't lock: we're in enough trouble already. */
2062 if ((colon = strchr(name, ':')) != NULL) {
2063 *colon = '\0';
2064 if ((mod = find_module(name)) != NULL)
2065 ret = mod_find_symname(mod, colon+1);
2066 *colon = ':';
2067 } else {
2068 list_for_each_entry(mod, &modules, list)
2069 if ((ret = mod_find_symname(mod, name)) != 0)
2070 break;
2071 }
2072 return ret;
2073}
2074#endif /* CONFIG_KALLSYMS */
2075
2076/* Called by the /proc file system to return a list of modules. */
2077static void *m_start(struct seq_file *m, loff_t *pos)
2078{
2079 struct list_head *i;
2080 loff_t n = 0;
2081
Ashutosh Naik6389a382006-03-23 03:00:46 -08002082 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 list_for_each(i, &modules) {
2084 if (n++ == *pos)
2085 break;
2086 }
2087 if (i == &modules)
2088 return NULL;
2089 return i;
2090}
2091
2092static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2093{
2094 struct list_head *i = p;
2095 (*pos)++;
2096 if (i->next == &modules)
2097 return NULL;
2098 return i->next;
2099}
2100
2101static void m_stop(struct seq_file *m, void *p)
2102{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002103 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
2105
2106static int m_show(struct seq_file *m, void *p)
2107{
2108 struct module *mod = list_entry(p, struct module, list);
2109 seq_printf(m, "%s %lu",
2110 mod->name, mod->init_size + mod->core_size);
2111 print_unload_info(m, mod);
2112
2113 /* Informative for users. */
2114 seq_printf(m, " %s",
2115 mod->state == MODULE_STATE_GOING ? "Unloading":
2116 mod->state == MODULE_STATE_COMING ? "Loading":
2117 "Live");
2118 /* Used by oprofile and other similar tools. */
2119 seq_printf(m, " 0x%p", mod->module_core);
2120
2121 seq_printf(m, "\n");
2122 return 0;
2123}
2124
2125/* Format: modulename size refcount deps address
2126
2127 Where refcount is a number or -, and deps is a comma-separated list
2128 of depends or -.
2129*/
2130struct seq_operations modules_op = {
2131 .start = m_start,
2132 .next = m_next,
2133 .stop = m_stop,
2134 .show = m_show
2135};
2136
2137/* Given an address, look for it in the module exception tables. */
2138const struct exception_table_entry *search_module_extables(unsigned long addr)
2139{
2140 unsigned long flags;
2141 const struct exception_table_entry *e = NULL;
2142 struct module *mod;
2143
2144 spin_lock_irqsave(&modlist_lock, flags);
2145 list_for_each_entry(mod, &modules, list) {
2146 if (mod->num_exentries == 0)
2147 continue;
2148
2149 e = search_extable(mod->extable,
2150 mod->extable + mod->num_exentries - 1,
2151 addr);
2152 if (e)
2153 break;
2154 }
2155 spin_unlock_irqrestore(&modlist_lock, flags);
2156
2157 /* Now, if we found one, we are running inside it now, hence
2158 we cannot unload the module, hence no refcnt needed. */
2159 return e;
2160}
2161
Ingo Molnar4d435f92006-07-03 00:24:24 -07002162/*
2163 * Is this a valid module address?
2164 */
2165int is_module_address(unsigned long addr)
2166{
2167 unsigned long flags;
2168 struct module *mod;
2169
2170 spin_lock_irqsave(&modlist_lock, flags);
2171
2172 list_for_each_entry(mod, &modules, list) {
2173 if (within(addr, mod->module_core, mod->core_size)) {
2174 spin_unlock_irqrestore(&modlist_lock, flags);
2175 return 1;
2176 }
2177 }
2178
2179 spin_unlock_irqrestore(&modlist_lock, flags);
2180
2181 return 0;
2182}
2183
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185/* Is this a valid kernel address? We don't grab the lock: we are oopsing. */
2186struct module *__module_text_address(unsigned long addr)
2187{
2188 struct module *mod;
2189
2190 list_for_each_entry(mod, &modules, list)
2191 if (within(addr, mod->module_init, mod->init_text_size)
2192 || within(addr, mod->module_core, mod->core_text_size))
2193 return mod;
2194 return NULL;
2195}
2196
2197struct module *module_text_address(unsigned long addr)
2198{
2199 struct module *mod;
2200 unsigned long flags;
2201
2202 spin_lock_irqsave(&modlist_lock, flags);
2203 mod = __module_text_address(addr);
2204 spin_unlock_irqrestore(&modlist_lock, flags);
2205
2206 return mod;
2207}
2208
2209/* Don't grab lock, we're oopsing. */
2210void print_modules(void)
2211{
2212 struct module *mod;
2213
2214 printk("Modules linked in:");
2215 list_for_each_entry(mod, &modules, list)
2216 printk(" %s", mod->name);
2217 printk("\n");
2218}
2219
2220void module_add_driver(struct module *mod, struct device_driver *drv)
2221{
2222 if (!mod || !drv)
2223 return;
2224
2225 /* Don't check return code; this call is idempotent */
2226 sysfs_create_link(&drv->kobj, &mod->mkobj.kobj, "module");
2227}
2228EXPORT_SYMBOL(module_add_driver);
2229
2230void module_remove_driver(struct device_driver *drv)
2231{
2232 if (!drv)
2233 return;
2234 sysfs_remove_link(&drv->kobj, "module");
2235}
2236EXPORT_SYMBOL(module_remove_driver);
2237
2238#ifdef CONFIG_MODVERSIONS
2239/* Generate the signature for struct module here, too, for modversions. */
2240void struct_module(struct module *mod) { return; }
2241EXPORT_SYMBOL(struct_module);
2242#endif