blob: 0ae811785c59dba901eb52d6476113a6e44e4789 [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>
Alexey Dobriyanae84e322007-05-08 00:28:38 -070022#include <linux/kallsyms.h>
Roland McGrath6d760132007-10-16 23:26:40 -070023#include <linux/sysfs.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070024#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080032#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#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>
Al Virof6a57032006-10-18 01:47:25 -040039#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/stop_machine.h>
41#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070042#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080043#include <linux/mutex.h>
Jan Beulich4552d5d2006-06-26 13:57:28 +020044#include <linux/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/uaccess.h>
46#include <asm/semaphore.h>
47#include <asm/cacheflush.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020048#include <linux/license.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
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
Rusty Russell24da1cb2007-07-15 23:41:46 -070063/* List of modules, protected by module_mutex or preempt_disable
64 * (add/delete uses stop_machine). */
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
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -080082/* We require a truly strong try_module_get(): 0 means failure due to
83 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static inline int strong_try_module_get(struct module *mod)
85{
86 if (mod && mod->state == MODULE_STATE_COMING)
87 return 0;
88 return try_module_get(mod);
89}
90
Florin Malitafa3ba2e82006-10-11 01:21:48 -070091static inline void add_taint_module(struct module *mod, unsigned flag)
92{
93 add_taint(flag);
94 mod->taints |= flag;
95}
96
Robert P. J. Day02a3e592007-05-09 07:26:28 +020097/*
98 * A thread that wants to hold a reference to a module only while it
99 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
101void __module_put_and_exit(struct module *mod, long code)
102{
103 module_put(mod);
104 do_exit(code);
105}
106EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/* Find a module section: 0 means not found. */
109static unsigned int find_sec(Elf_Ehdr *hdr,
110 Elf_Shdr *sechdrs,
111 const char *secstrings,
112 const char *name)
113{
114 unsigned int i;
115
116 for (i = 1; i < hdr->e_shnum; i++)
117 /* Alloc bit cleared means "ignore it." */
118 if ((sechdrs[i].sh_flags & SHF_ALLOC)
119 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
120 return i;
121 return 0;
122}
123
124/* Provided by the linker */
125extern const struct kernel_symbol __start___ksymtab[];
126extern const struct kernel_symbol __stop___ksymtab[];
127extern const struct kernel_symbol __start___ksymtab_gpl[];
128extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800129extern const struct kernel_symbol __start___ksymtab_gpl_future[];
130extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700131extern const struct kernel_symbol __start___ksymtab_unused[];
132extern const struct kernel_symbol __stop___ksymtab_unused[];
133extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
134extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
135extern const struct kernel_symbol __start___ksymtab_gpl_future[];
136extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137extern const unsigned long __start___kcrctab[];
138extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800139extern const unsigned long __start___kcrctab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700140extern const unsigned long __start___kcrctab_unused[];
141extern const unsigned long __start___kcrctab_unused_gpl[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143#ifndef CONFIG_MODVERSIONS
144#define symversion(base, idx) NULL
145#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800146#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#endif
148
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100149/* lookup symbol in given range of kernel_symbols */
150static const struct kernel_symbol *lookup_symbol(const char *name,
151 const struct kernel_symbol *start,
152 const struct kernel_symbol *stop)
153{
154 const struct kernel_symbol *ks = start;
155 for (; ks < stop; ks++)
156 if (strcmp(ks->name, name) == 0)
157 return ks;
158 return NULL;
159}
160
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700161static void printk_unused_warning(const char *name)
162{
163 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
164 "however this module is using it.\n", name);
165 printk(KERN_WARNING "This symbol will go away in the future.\n");
166 printk(KERN_WARNING "Please evalute if this is the right api to use, "
167 "and if it really is, submit a report the linux kernel "
168 "mailinglist together with submitting your code for "
169 "inclusion.\n");
170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* Find a symbol, return value, crc and module which owns it */
173static unsigned long __find_symbol(const char *name,
174 struct module **owner,
175 const unsigned long **crc,
176 int gplok)
177{
178 struct module *mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100179 const struct kernel_symbol *ks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Daniel Walker22a8bde2007-10-18 03:06:07 -0700181 /* Core kernel first. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 *owner = NULL;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100183 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
184 if (ks) {
185 *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
186 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100189 ks = lookup_symbol(name, __start___ksymtab_gpl,
190 __stop___ksymtab_gpl);
191 if (ks) {
192 *crc = symversion(__start___kcrctab_gpl,
193 (ks - __start___ksymtab_gpl));
194 return ks->value;
195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800197 ks = lookup_symbol(name, __start___ksymtab_gpl_future,
198 __stop___ksymtab_gpl_future);
199 if (ks) {
200 if (!gplok) {
201 printk(KERN_WARNING "Symbol %s is being used "
202 "by a non-GPL module, which will not "
203 "be allowed in the future\n", name);
204 printk(KERN_WARNING "Please see the file "
205 "Documentation/feature-removal-schedule.txt "
206 "in the kernel source tree for more "
207 "details.\n");
208 }
209 *crc = symversion(__start___kcrctab_gpl_future,
210 (ks - __start___ksymtab_gpl_future));
211 return ks->value;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700214 ks = lookup_symbol(name, __start___ksymtab_unused,
215 __stop___ksymtab_unused);
216 if (ks) {
217 printk_unused_warning(name);
218 *crc = symversion(__start___kcrctab_unused,
219 (ks - __start___ksymtab_unused));
220 return ks->value;
221 }
222
223 if (gplok)
224 ks = lookup_symbol(name, __start___ksymtab_unused_gpl,
225 __stop___ksymtab_unused_gpl);
226 if (ks) {
227 printk_unused_warning(name);
228 *crc = symversion(__start___kcrctab_unused_gpl,
229 (ks - __start___ksymtab_unused_gpl));
230 return ks->value;
231 }
232
Daniel Walker22a8bde2007-10-18 03:06:07 -0700233 /* Now try modules. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 list_for_each_entry(mod, &modules, list) {
235 *owner = mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100236 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
237 if (ks) {
238 *crc = symversion(mod->crcs, (ks - mod->syms));
239 return ks->value;
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100243 ks = lookup_symbol(name, mod->gpl_syms,
244 mod->gpl_syms + mod->num_gpl_syms);
245 if (ks) {
246 *crc = symversion(mod->gpl_crcs,
247 (ks - mod->gpl_syms));
248 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250 }
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700251 ks = lookup_symbol(name, mod->unused_syms, mod->unused_syms + mod->num_unused_syms);
252 if (ks) {
253 printk_unused_warning(name);
254 *crc = symversion(mod->unused_crcs, (ks - mod->unused_syms));
255 return ks->value;
256 }
257
258 if (gplok) {
259 ks = lookup_symbol(name, mod->unused_gpl_syms,
260 mod->unused_gpl_syms + mod->num_unused_gpl_syms);
261 if (ks) {
262 printk_unused_warning(name);
263 *crc = symversion(mod->unused_gpl_crcs,
264 (ks - mod->unused_gpl_syms));
265 return ks->value;
266 }
267 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800268 ks = lookup_symbol(name, mod->gpl_future_syms,
269 (mod->gpl_future_syms +
270 mod->num_gpl_future_syms));
271 if (ks) {
272 if (!gplok) {
273 printk(KERN_WARNING "Symbol %s is being used "
274 "by a non-GPL module, which will not "
275 "be allowed in the future\n", name);
276 printk(KERN_WARNING "Please see the file "
277 "Documentation/feature-removal-schedule.txt "
278 "in the kernel source tree for more "
279 "details.\n");
280 }
281 *crc = symversion(mod->gpl_future_crcs,
282 (ks - mod->gpl_future_syms));
283 return ks->value;
284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286 DEBUGP("Failed to find symbol %s\n", name);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/* Search for module by name: must hold module_mutex. */
291static struct module *find_module(const char *name)
292{
293 struct module *mod;
294
295 list_for_each_entry(mod, &modules, list) {
296 if (strcmp(mod->name, name) == 0)
297 return mod;
298 }
299 return NULL;
300}
301
302#ifdef CONFIG_SMP
303/* Number of blocks used and allocated. */
304static unsigned int pcpu_num_used, pcpu_num_allocated;
305/* Size of each block. -ve means used. */
306static int *pcpu_size;
307
308static int split_block(unsigned int i, unsigned short size)
309{
310 /* Reallocation required? */
311 if (pcpu_num_used + 1 > pcpu_num_allocated) {
Pekka Enberg6d4f9c52007-05-08 00:24:58 -0700312 int *new;
313
314 new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
315 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (!new)
317 return 0;
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 pcpu_num_allocated *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 pcpu_size = new;
321 }
322
323 /* Insert a new subblock */
324 memmove(&pcpu_size[i+1], &pcpu_size[i],
325 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
326 pcpu_num_used++;
327
328 pcpu_size[i+1] -= size;
329 pcpu_size[i] = size;
330 return 1;
331}
332
333static inline unsigned int block_size(int val)
334{
335 if (val < 0)
336 return -val;
337 return val;
338}
339
340/* Created by linker magic */
341extern char __per_cpu_start[], __per_cpu_end[];
342
Rusty Russell842bbaa2005-08-01 21:11:47 -0700343static void *percpu_modalloc(unsigned long size, unsigned long align,
344 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 unsigned long extra;
347 unsigned int i;
348 void *ptr;
349
Jeremy Fitzhardingeb6e35902007-05-02 19:27:12 +0200350 if (align > PAGE_SIZE) {
351 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
352 name, align, PAGE_SIZE);
353 align = PAGE_SIZE;
Rusty Russell842bbaa2005-08-01 21:11:47 -0700354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 ptr = __per_cpu_start;
357 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
358 /* Extra for alignment requirement. */
359 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
360 BUG_ON(i == 0 && extra != 0);
361
362 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
363 continue;
364
365 /* Transfer extra to previous block. */
366 if (pcpu_size[i-1] < 0)
367 pcpu_size[i-1] -= extra;
368 else
369 pcpu_size[i-1] += extra;
370 pcpu_size[i] -= extra;
371 ptr += extra;
372
373 /* Split block if warranted */
374 if (pcpu_size[i] - size > sizeof(unsigned long))
375 if (!split_block(i, size))
376 return NULL;
377
378 /* Mark allocated */
379 pcpu_size[i] = -pcpu_size[i];
380 return ptr;
381 }
382
383 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
384 size);
385 return NULL;
386}
387
388static void percpu_modfree(void *freeme)
389{
390 unsigned int i;
391 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
392
393 /* First entry is core kernel percpu data. */
394 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
395 if (ptr == freeme) {
396 pcpu_size[i] = -pcpu_size[i];
397 goto free;
398 }
399 }
400 BUG();
401
402 free:
403 /* Merge with previous? */
404 if (pcpu_size[i-1] >= 0) {
405 pcpu_size[i-1] += pcpu_size[i];
406 pcpu_num_used--;
407 memmove(&pcpu_size[i], &pcpu_size[i+1],
408 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
409 i--;
410 }
411 /* Merge with next? */
412 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
413 pcpu_size[i] += pcpu_size[i+1];
414 pcpu_num_used--;
415 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
416 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
417 }
418}
419
420static unsigned int find_pcpusec(Elf_Ehdr *hdr,
421 Elf_Shdr *sechdrs,
422 const char *secstrings)
423{
424 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
425}
426
427static int percpu_modinit(void)
428{
429 pcpu_num_used = 2;
430 pcpu_num_allocated = 2;
431 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
432 GFP_KERNEL);
433 /* Static in-kernel percpu data (used). */
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +0200434 pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /* Free room. */
436 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
437 if (pcpu_size[1] < 0) {
438 printk(KERN_ERR "No per-cpu room for modules.\n");
439 pcpu_num_used = 1;
440 }
441
442 return 0;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700443}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444__initcall(percpu_modinit);
445#else /* ... !CONFIG_SMP */
Rusty Russell842bbaa2005-08-01 21:11:47 -0700446static inline void *percpu_modalloc(unsigned long size, unsigned long align,
447 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 return NULL;
450}
451static inline void percpu_modfree(void *pcpuptr)
452{
453 BUG();
454}
455static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
456 Elf_Shdr *sechdrs,
457 const char *secstrings)
458{
459 return 0;
460}
461static inline void percpu_modcopy(void *pcpudst, const void *src,
462 unsigned long size)
463{
464 /* pcpusec should be 0, and size of that section should be 0. */
465 BUG_ON(size != 0);
466}
467#endif /* CONFIG_SMP */
468
Matt Domschc988d2b2005-06-23 22:05:15 -0700469#define MODINFO_ATTR(field) \
470static void setup_modinfo_##field(struct module *mod, const char *s) \
471{ \
472 mod->field = kstrdup(s, GFP_KERNEL); \
473} \
474static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
475 struct module *mod, char *buffer) \
476{ \
477 return sprintf(buffer, "%s\n", mod->field); \
478} \
479static int modinfo_##field##_exists(struct module *mod) \
480{ \
481 return mod->field != NULL; \
482} \
483static void free_modinfo_##field(struct module *mod) \
484{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700485 kfree(mod->field); \
486 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700487} \
488static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900489 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700490 .show = show_modinfo_##field, \
491 .setup = setup_modinfo_##field, \
492 .test = modinfo_##field##_exists, \
493 .free = free_modinfo_##field, \
494};
495
496MODINFO_ATTR(version);
497MODINFO_ATTR(srcversion);
498
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800499#ifdef CONFIG_MODULE_UNLOAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/* Init the unload section of the module. */
501static void module_unload_init(struct module *mod)
502{
503 unsigned int i;
504
505 INIT_LIST_HEAD(&mod->modules_which_use_me);
506 for (i = 0; i < NR_CPUS; i++)
507 local_set(&mod->ref[i].count, 0);
508 /* Hold reference count during initialization. */
Ingo Molnar39c715b2005-06-21 17:14:34 -0700509 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* Backwards compatibility macros put refcount during init. */
511 mod->waiter = current;
512}
513
514/* modules using other modules */
515struct module_use
516{
517 struct list_head list;
518 struct module *module_which_uses;
519};
520
521/* Does a already use b? */
522static int already_uses(struct module *a, struct module *b)
523{
524 struct module_use *use;
525
526 list_for_each_entry(use, &b->modules_which_use_me, list) {
527 if (use->module_which_uses == a) {
528 DEBUGP("%s uses %s!\n", a->name, b->name);
529 return 1;
530 }
531 }
532 DEBUGP("%s does not use %s!\n", a->name, b->name);
533 return 0;
534}
535
536/* Module a uses b */
537static int use_module(struct module *a, struct module *b)
538{
539 struct module_use *use;
Kay Sievers270a6c42007-01-18 13:26:15 +0100540 int no_warn;
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (b == NULL || already_uses(a, b)) return 1;
543
544 if (!strong_try_module_get(b))
545 return 0;
546
547 DEBUGP("Allocating new usage for %s.\n", a->name);
548 use = kmalloc(sizeof(*use), GFP_ATOMIC);
549 if (!use) {
550 printk("%s: out of memory loading\n", a->name);
551 module_put(b);
552 return 0;
553 }
554
555 use->module_which_uses = a;
556 list_add(&use->list, &b->modules_which_use_me);
Kay Sievers270a6c42007-01-18 13:26:15 +0100557 no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return 1;
559}
560
561/* Clear the unload stuff of the module. */
562static void module_unload_free(struct module *mod)
563{
564 struct module *i;
565
566 list_for_each_entry(i, &modules, list) {
567 struct module_use *use;
568
569 list_for_each_entry(use, &i->modules_which_use_me, list) {
570 if (use->module_which_uses == mod) {
571 DEBUGP("%s unusing %s\n", mod->name, i->name);
572 module_put(i);
573 list_del(&use->list);
574 kfree(use);
Kay Sievers270a6c42007-01-18 13:26:15 +0100575 sysfs_remove_link(i->holders_dir, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* There can be at most one match. */
577 break;
578 }
579 }
580 }
581}
582
583#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800584static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 int ret = (flags & O_TRUNC);
587 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800588 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return ret;
590}
591#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800592static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 return 0;
595}
596#endif /* CONFIG_MODULE_FORCE_UNLOAD */
597
598struct stopref
599{
600 struct module *mod;
601 int flags;
602 int *forced;
603};
604
605/* Whole machine is stopped with interrupts off when this runs. */
606static int __try_stop_module(void *_sref)
607{
608 struct stopref *sref = _sref;
609
610 /* If it's not unused, quit unless we are told to block. */
611 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800612 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return -EWOULDBLOCK;
614 }
615
616 /* Mark it as dying. */
617 sref->mod->state = MODULE_STATE_GOING;
618 return 0;
619}
620
621static int try_stop_module(struct module *mod, int flags, int *forced)
622{
623 struct stopref sref = { mod, flags, forced };
624
625 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
626}
627
628unsigned int module_refcount(struct module *mod)
629{
630 unsigned int i, total = 0;
631
632 for (i = 0; i < NR_CPUS; i++)
633 total += local_read(&mod->ref[i].count);
634 return total;
635}
636EXPORT_SYMBOL(module_refcount);
637
638/* This exists whether we can unload or not */
639static void free_module(struct module *mod);
640
641static void wait_for_zero_refcount(struct module *mod)
642{
643 /* Since we might sleep for some time, drop the semaphore first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800644 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 for (;;) {
646 DEBUGP("Looking at refcount...\n");
647 set_current_state(TASK_UNINTERRUPTIBLE);
648 if (module_refcount(mod) == 0)
649 break;
650 schedule();
651 }
652 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800653 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800656asmlinkage long
657sys_delete_module(const char __user *name_user, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800660 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 int ret, forced = 0;
662
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800663 if (!capable(CAP_SYS_MODULE))
664 return -EPERM;
665
666 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
667 return -EFAULT;
668 name[MODULE_NAME_LEN-1] = '\0';
669
Ashutosh Naik6389a382006-03-23 03:00:46 -0800670 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return -EINTR;
672
673 mod = find_module(name);
674 if (!mod) {
675 ret = -ENOENT;
676 goto out;
677 }
678
679 if (!list_empty(&mod->modules_which_use_me)) {
680 /* Other modules depend on us: get rid of them first. */
681 ret = -EWOULDBLOCK;
682 goto out;
683 }
684
685 /* Doing init or already dying? */
686 if (mod->state != MODULE_STATE_LIVE) {
687 /* FIXME: if (force), slam module count and wake up
688 waiter --RR */
689 DEBUGP("%s already dying\n", mod->name);
690 ret = -EBUSY;
691 goto out;
692 }
693
694 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700695 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800696 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (!forced) {
698 /* This module can't be removed */
699 ret = -EBUSY;
700 goto out;
701 }
702 }
703
704 /* Set this up before setting mod->state */
705 mod->waiter = current;
706
707 /* Stop the machine so refcounts can't move and disable module. */
708 ret = try_stop_module(mod, flags, &forced);
709 if (ret != 0)
710 goto out;
711
712 /* Never wait if forced. */
713 if (!forced && module_refcount(mod) != 0)
714 wait_for_zero_refcount(mod);
715
716 /* Final destruction now noone is using it. */
717 if (mod->exit != NULL) {
Ashutosh Naik6389a382006-03-23 03:00:46 -0800718 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 mod->exit();
Ashutosh Naik6389a382006-03-23 03:00:46 -0800720 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722 free_module(mod);
723
724 out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800725 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return ret;
727}
728
729static void print_unload_info(struct seq_file *m, struct module *mod)
730{
731 struct module_use *use;
732 int printed_something = 0;
733
734 seq_printf(m, " %u ", module_refcount(mod));
735
736 /* Always include a trailing , so userspace can differentiate
737 between this and the old multi-field proc format. */
738 list_for_each_entry(use, &mod->modules_which_use_me, list) {
739 printed_something = 1;
740 seq_printf(m, "%s,", use->module_which_uses->name);
741 }
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (mod->init != NULL && mod->exit == NULL) {
744 printed_something = 1;
745 seq_printf(m, "[permanent],");
746 }
747
748 if (!printed_something)
749 seq_printf(m, "-");
750}
751
752void __symbol_put(const char *symbol)
753{
754 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 const unsigned long *crc;
756
Rusty Russell24da1cb2007-07-15 23:41:46 -0700757 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (!__find_symbol(symbol, &owner, &crc, 1))
759 BUG();
760 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700761 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763EXPORT_SYMBOL(__symbol_put);
764
765void symbol_put_addr(void *addr)
766{
Trent Piepho5e376612006-05-15 09:44:06 -0700767 struct module *modaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Trent Piepho5e376612006-05-15 09:44:06 -0700769 if (core_kernel_text((unsigned long)addr))
770 return;
771
772 if (!(modaddr = module_text_address((unsigned long)addr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 BUG();
Trent Piepho5e376612006-05-15 09:44:06 -0700774 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776EXPORT_SYMBOL_GPL(symbol_put_addr);
777
778static ssize_t show_refcnt(struct module_attribute *mattr,
779 struct module *mod, char *buffer)
780{
Alexey Dobriyan256e2fd2007-08-06 23:47:45 +0400781 return sprintf(buffer, "%u\n", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784static struct module_attribute refcnt = {
Tejun Heo7b595752007-06-14 03:45:17 +0900785 .attr = { .name = "refcnt", .mode = 0444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .show = show_refcnt,
787};
788
Al Virof6a57032006-10-18 01:47:25 -0400789void module_put(struct module *module)
790{
791 if (module) {
792 unsigned int cpu = get_cpu();
793 local_dec(&module->ref[cpu].count);
794 /* Maybe they're waiting for us to drop reference? */
795 if (unlikely(!module_is_live(module)))
796 wake_up_process(module->waiter);
797 put_cpu();
798 }
799}
800EXPORT_SYMBOL(module_put);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802#else /* !CONFIG_MODULE_UNLOAD */
803static void print_unload_info(struct seq_file *m, struct module *mod)
804{
805 /* We don't know the usage count, or what modules are using. */
806 seq_printf(m, " - -");
807}
808
809static inline void module_unload_free(struct module *mod)
810{
811}
812
813static inline int use_module(struct module *a, struct module *b)
814{
815 return strong_try_module_get(b);
816}
817
818static inline void module_unload_init(struct module *mod)
819{
820}
821#endif /* CONFIG_MODULE_UNLOAD */
822
Kay Sievers1f717402006-11-24 12:15:25 +0100823static ssize_t show_initstate(struct module_attribute *mattr,
824 struct module *mod, char *buffer)
825{
826 const char *state = "unknown";
827
828 switch (mod->state) {
829 case MODULE_STATE_LIVE:
830 state = "live";
831 break;
832 case MODULE_STATE_COMING:
833 state = "coming";
834 break;
835 case MODULE_STATE_GOING:
836 state = "going";
837 break;
838 }
839 return sprintf(buffer, "%s\n", state);
840}
841
842static struct module_attribute initstate = {
Tejun Heo7b595752007-06-14 03:45:17 +0900843 .attr = { .name = "initstate", .mode = 0444 },
Kay Sievers1f717402006-11-24 12:15:25 +0100844 .show = show_initstate,
845};
846
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800847static struct module_attribute *modinfo_attrs[] = {
848 &modinfo_version,
849 &modinfo_srcversion,
Kay Sievers1f717402006-11-24 12:15:25 +0100850 &initstate,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800851#ifdef CONFIG_MODULE_UNLOAD
852 &refcnt,
853#endif
854 NULL,
855};
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857static const char vermagic[] = VERMAGIC_STRING;
858
859#ifdef CONFIG_MODVERSIONS
860static int check_version(Elf_Shdr *sechdrs,
861 unsigned int versindex,
862 const char *symname,
863 struct module *mod,
864 const unsigned long *crc)
865{
866 unsigned int i, num_versions;
867 struct modversion_info *versions;
868
869 /* Exporting module didn't supply crcs? OK, we're already tainted. */
870 if (!crc)
871 return 1;
872
873 versions = (void *) sechdrs[versindex].sh_addr;
874 num_versions = sechdrs[versindex].sh_size
875 / sizeof(struct modversion_info);
876
877 for (i = 0; i < num_versions; i++) {
878 if (strcmp(versions[i].name, symname) != 0)
879 continue;
880
881 if (versions[i].crc == *crc)
882 return 1;
883 printk("%s: disagrees about version of symbol %s\n",
884 mod->name, symname);
885 DEBUGP("Found checksum %lX vs module %lX\n",
886 *crc, versions[i].crc);
887 return 0;
888 }
889 /* Not in module's version table. OK, but that taints the kernel. */
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700890 if (!(tainted & TAINT_FORCED_MODULE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 printk("%s: no version for \"%s\" found: kernel tainted.\n",
892 mod->name, symname);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700893 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return 1;
895}
896
897static inline int check_modstruct_version(Elf_Shdr *sechdrs,
898 unsigned int versindex,
899 struct module *mod)
900{
901 const unsigned long *crc;
902 struct module *owner;
903
904 if (!__find_symbol("struct_module", &owner, &crc, 1))
905 BUG();
906 return check_version(sechdrs, versindex, "struct_module", mod,
907 crc);
908}
909
910/* First part is kernel version, which we ignore. */
911static inline int same_magic(const char *amagic, const char *bmagic)
912{
913 amagic += strcspn(amagic, " ");
914 bmagic += strcspn(bmagic, " ");
915 return strcmp(amagic, bmagic) == 0;
916}
917#else
918static inline int check_version(Elf_Shdr *sechdrs,
919 unsigned int versindex,
920 const char *symname,
921 struct module *mod,
922 const unsigned long *crc)
923{
924 return 1;
925}
926
927static inline int check_modstruct_version(Elf_Shdr *sechdrs,
928 unsigned int versindex,
929 struct module *mod)
930{
931 return 1;
932}
933
934static inline int same_magic(const char *amagic, const char *bmagic)
935{
936 return strcmp(amagic, bmagic) == 0;
937}
938#endif /* CONFIG_MODVERSIONS */
939
940/* Resolve a symbol for this module. I.e. if we find one, record usage.
941 Must be holding module_mutex. */
942static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
943 unsigned int versindex,
944 const char *name,
945 struct module *mod)
946{
947 struct module *owner;
948 unsigned long ret;
949 const unsigned long *crc;
950
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700951 ret = __find_symbol(name, &owner, &crc,
952 !(mod->taints & TAINT_PROPRIETARY_MODULE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (ret) {
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800954 /* use_module can fail due to OOM,
955 or module initialization or unloading */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (!check_version(sechdrs, versindex, name, mod, crc) ||
957 !use_module(mod, owner))
958 ret = 0;
959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return ret;
961}
962
963
964/*
965 * /sys/module/foo/sections stuff
966 * J. Corbet <corbet@lwn.net>
967 */
968#ifdef CONFIG_KALLSYMS
969static ssize_t module_sect_show(struct module_attribute *mattr,
970 struct module *mod, char *buf)
971{
972 struct module_sect_attr *sattr =
973 container_of(mattr, struct module_sect_attr, mattr);
974 return sprintf(buf, "0x%lx\n", sattr->address);
975}
976
Ian S. Nelson04b1db92006-09-29 02:01:31 -0700977static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
978{
979 int section;
980
981 for (section = 0; section < sect_attrs->nsections; section++)
982 kfree(sect_attrs->attrs[section].name);
983 kfree(sect_attrs);
984}
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986static void add_sect_attrs(struct module *mod, unsigned int nsect,
987 char *secstrings, Elf_Shdr *sechdrs)
988{
989 unsigned int nloaded = 0, i, size[2];
990 struct module_sect_attrs *sect_attrs;
991 struct module_sect_attr *sattr;
992 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 /* Count loaded sections and allocate structures */
995 for (i = 0; i < nsect; i++)
996 if (sechdrs[i].sh_flags & SHF_ALLOC)
997 nloaded++;
998 size[0] = ALIGN(sizeof(*sect_attrs)
999 + nloaded * sizeof(sect_attrs->attrs[0]),
1000 sizeof(sect_attrs->grp.attrs[0]));
1001 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001002 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1003 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return;
1005
1006 /* Setup section attributes. */
1007 sect_attrs->grp.name = "sections";
1008 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1009
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001010 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 sattr = &sect_attrs->attrs[0];
1012 gattr = &sect_attrs->grp.attrs[0];
1013 for (i = 0; i < nsect; i++) {
1014 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1015 continue;
1016 sattr->address = sechdrs[i].sh_addr;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001017 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1018 GFP_KERNEL);
1019 if (sattr->name == NULL)
1020 goto out;
1021 sect_attrs->nsections++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 sattr->mattr.show = module_sect_show;
1023 sattr->mattr.store = NULL;
1024 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 sattr->mattr.attr.mode = S_IRUGO;
1026 *(gattr++) = &(sattr++)->mattr.attr;
1027 }
1028 *gattr = NULL;
1029
1030 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1031 goto out;
1032
1033 mod->sect_attrs = sect_attrs;
1034 return;
1035 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001036 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
1039static void remove_sect_attrs(struct module *mod)
1040{
1041 if (mod->sect_attrs) {
1042 sysfs_remove_group(&mod->mkobj.kobj,
1043 &mod->sect_attrs->grp);
1044 /* We are positive that no one is using any sect attrs
1045 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001046 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 mod->sect_attrs = NULL;
1048 }
1049}
1050
Roland McGrath6d760132007-10-16 23:26:40 -07001051/*
1052 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1053 */
1054
1055struct module_notes_attrs {
1056 struct kobject *dir;
1057 unsigned int notes;
1058 struct bin_attribute attrs[0];
1059};
1060
1061static ssize_t module_notes_read(struct kobject *kobj,
1062 struct bin_attribute *bin_attr,
1063 char *buf, loff_t pos, size_t count)
1064{
1065 /*
1066 * The caller checked the pos and count against our size.
1067 */
1068 memcpy(buf, bin_attr->private + pos, count);
1069 return count;
1070}
1071
1072static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1073 unsigned int i)
1074{
1075 if (notes_attrs->dir) {
1076 while (i-- > 0)
1077 sysfs_remove_bin_file(notes_attrs->dir,
1078 &notes_attrs->attrs[i]);
1079 kobject_del(notes_attrs->dir);
1080 }
1081 kfree(notes_attrs);
1082}
1083
1084static void add_notes_attrs(struct module *mod, unsigned int nsect,
1085 char *secstrings, Elf_Shdr *sechdrs)
1086{
1087 unsigned int notes, loaded, i;
1088 struct module_notes_attrs *notes_attrs;
1089 struct bin_attribute *nattr;
1090
1091 /* Count notes sections and allocate structures. */
1092 notes = 0;
1093 for (i = 0; i < nsect; i++)
1094 if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
1095 (sechdrs[i].sh_type == SHT_NOTE))
1096 ++notes;
1097
1098 if (notes == 0)
1099 return;
1100
1101 notes_attrs = kzalloc(sizeof(*notes_attrs)
1102 + notes * sizeof(notes_attrs->attrs[0]),
1103 GFP_KERNEL);
1104 if (notes_attrs == NULL)
1105 return;
1106
1107 notes_attrs->notes = notes;
1108 nattr = &notes_attrs->attrs[0];
1109 for (loaded = i = 0; i < nsect; ++i) {
1110 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1111 continue;
1112 if (sechdrs[i].sh_type == SHT_NOTE) {
1113 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1114 nattr->attr.mode = S_IRUGO;
1115 nattr->size = sechdrs[i].sh_size;
1116 nattr->private = (void *) sechdrs[i].sh_addr;
1117 nattr->read = module_notes_read;
1118 ++nattr;
1119 }
1120 ++loaded;
1121 }
1122
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001123 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001124 if (!notes_attrs->dir)
1125 goto out;
1126
1127 for (i = 0; i < notes; ++i)
1128 if (sysfs_create_bin_file(notes_attrs->dir,
1129 &notes_attrs->attrs[i]))
1130 goto out;
1131
1132 mod->notes_attrs = notes_attrs;
1133 return;
1134
1135 out:
1136 free_notes_attrs(notes_attrs, i);
1137}
1138
1139static void remove_notes_attrs(struct module *mod)
1140{
1141 if (mod->notes_attrs)
1142 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1143}
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1148 char *sectstrings, Elf_Shdr *sechdrs)
1149{
1150}
1151
1152static inline void remove_sect_attrs(struct module *mod)
1153{
1154}
Roland McGrath6d760132007-10-16 23:26:40 -07001155
1156static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1157 char *sectstrings, Elf_Shdr *sechdrs)
1158{
1159}
1160
1161static inline void remove_notes_attrs(struct module *mod)
1162{
1163}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164#endif /* CONFIG_KALLSYMS */
1165
Randy Dunlapef665c12007-02-13 15:19:06 -08001166#ifdef CONFIG_SYSFS
1167int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001168{
1169 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001170 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001171 int error = 0;
1172 int i;
1173
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001174 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1175 (ARRAY_SIZE(modinfo_attrs) + 1)),
1176 GFP_KERNEL);
1177 if (!mod->modinfo_attrs)
1178 return -ENOMEM;
1179
1180 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001181 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1182 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001183 (attr->test && attr->test(mod))) {
1184 memcpy(temp_attr, attr, sizeof(*temp_attr));
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001185 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1186 ++temp_attr;
1187 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001188 }
1189 return error;
1190}
1191
Randy Dunlapef665c12007-02-13 15:19:06 -08001192void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001193{
1194 struct module_attribute *attr;
1195 int i;
1196
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001197 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1198 /* pick a field to test for end of list */
1199 if (!attr->attr.name)
1200 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001201 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001202 if (attr->free)
1203 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001204 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001205 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001206}
Randy Dunlapef665c12007-02-13 15:19:06 -08001207#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Randy Dunlapef665c12007-02-13 15:19:06 -08001209#ifdef CONFIG_SYSFS
1210int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 int err;
1213
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001214 if (!module_sysfs_initialized) {
1215 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001216 mod->name);
1217 err = -EINVAL;
1218 goto out;
1219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1221 err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
1222 if (err)
1223 goto out;
Greg Kroah-Hartman7405c1e2007-11-01 10:39:50 -07001224 mod->mkobj.kobj.kset = module_kset;
1225 mod->mkobj.kobj.ktype = &module_ktype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001227
Kay Sieverse17e0f52006-11-24 12:15:25 +01001228 kobject_init(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001229
Kay Sievers97c146e2007-11-29 23:46:11 +01001230 /* delay uevent until full sysfs population */
1231 err = kobject_add(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001232out:
1233 return err;
1234}
1235
Randy Dunlapef665c12007-02-13 15:19:06 -08001236int mod_sysfs_setup(struct module *mod,
Kay Sievers270a6c42007-01-18 13:26:15 +01001237 struct kernel_param *kparam,
1238 unsigned int num_params)
1239{
1240 int err;
1241
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001242 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001243 if (!mod->holders_dir) {
1244 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001245 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001246 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 err = module_param_sysfs_setup(mod, kparam, num_params);
1249 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001250 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Matt Domschc988d2b2005-06-23 22:05:15 -07001252 err = module_add_modinfo_attrs(mod);
1253 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001254 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001255
Kay Sieverse17e0f52006-11-24 12:15:25 +01001256 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return 0;
1258
Kay Sieverse17e0f52006-11-24 12:15:25 +01001259out_unreg_param:
1260 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001261out_unreg_holders:
1262 kobject_unregister(mod->holders_dir);
1263out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001264 kobject_del(&mod->mkobj.kobj);
1265 kobject_put(&mod->mkobj.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return err;
1267}
Randy Dunlapef665c12007-02-13 15:19:06 -08001268#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270static void mod_kobject_remove(struct module *mod)
1271{
Matt Domschc988d2b2005-06-23 22:05:15 -07001272 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 module_param_sysfs_remove(mod);
Mariusz Kozlowskib92be9f2007-02-14 21:03:39 +01001274 kobject_unregister(mod->mkobj.drivers_dir);
1275 kobject_unregister(mod->holders_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 kobject_unregister(&mod->mkobj.kobj);
1277}
1278
1279/*
1280 * unlink the module with the whole machine is stopped with interrupts off
1281 * - this defends against kallsyms not taking locks
1282 */
1283static int __unlink_module(void *_mod)
1284{
1285 struct module *mod = _mod;
1286 list_del(&mod->list);
1287 return 0;
1288}
1289
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001290/* Free a module, remove from lists, etc (must hold module_mutex). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291static void free_module(struct module *mod)
1292{
1293 /* Delete from various lists */
1294 stop_machine_run(__unlink_module, mod, NR_CPUS);
Roland McGrath6d760132007-10-16 23:26:40 -07001295 remove_notes_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 remove_sect_attrs(mod);
1297 mod_kobject_remove(mod);
1298
Jan Beulich4552d5d2006-06-26 13:57:28 +02001299 unwind_remove_table(mod->unwind_info, 0);
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 /* Arch-specific cleanup. */
1302 module_arch_cleanup(mod);
1303
1304 /* Module unload stuff */
1305 module_unload_free(mod);
1306
1307 /* This may be NULL, but that's OK */
1308 module_free(mod, mod->module_init);
1309 kfree(mod->args);
1310 if (mod->percpu)
1311 percpu_modfree(mod->percpu);
1312
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001313 /* Free lock-classes: */
1314 lockdep_free_key_range(mod->module_core, mod->core_size);
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 /* Finally, free the core (containing the module structure) */
1317 module_free(mod, mod->module_core);
1318}
1319
1320void *__symbol_get(const char *symbol)
1321{
1322 struct module *owner;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001323 unsigned long value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 const unsigned long *crc;
1325
Rusty Russell24da1cb2007-07-15 23:41:46 -07001326 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 value = __find_symbol(symbol, &owner, &crc, 1);
1328 if (value && !strong_try_module_get(owner))
1329 value = 0;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001330 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 return (void *)value;
1333}
1334EXPORT_SYMBOL_GPL(__symbol_get);
1335
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001336/*
1337 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001338 * in the kernel or in some other module's exported symbol table.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001339 */
1340static int verify_export_symbols(struct module *mod)
1341{
1342 const char *name = NULL;
1343 unsigned long i, ret = 0;
1344 struct module *owner;
1345 const unsigned long *crc;
1346
1347 for (i = 0; i < mod->num_syms; i++)
Daniel Walker22a8bde2007-10-18 03:06:07 -07001348 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001349 name = mod->syms[i].name;
1350 ret = -ENOEXEC;
1351 goto dup;
1352 }
1353
1354 for (i = 0; i < mod->num_gpl_syms; i++)
Daniel Walker22a8bde2007-10-18 03:06:07 -07001355 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001356 name = mod->gpl_syms[i].name;
1357 ret = -ENOEXEC;
1358 goto dup;
1359 }
1360
1361dup:
1362 if (ret)
1363 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1364 mod->name, name, module_name(owner));
1365
1366 return ret;
1367}
1368
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001369/* Change all symbols so that st_value encodes the pointer directly. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370static int simplify_symbols(Elf_Shdr *sechdrs,
1371 unsigned int symindex,
1372 const char *strtab,
1373 unsigned int versindex,
1374 unsigned int pcpuindex,
1375 struct module *mod)
1376{
1377 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1378 unsigned long secbase;
1379 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1380 int ret = 0;
1381
1382 for (i = 1; i < n; i++) {
1383 switch (sym[i].st_shndx) {
1384 case SHN_COMMON:
1385 /* We compiled with -fno-common. These are not
1386 supposed to happen. */
1387 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1388 printk("%s: please compile with -fno-common\n",
1389 mod->name);
1390 ret = -ENOEXEC;
1391 break;
1392
1393 case SHN_ABS:
1394 /* Don't need to do anything */
1395 DEBUGP("Absolute symbol: 0x%08lx\n",
1396 (long)sym[i].st_value);
1397 break;
1398
1399 case SHN_UNDEF:
1400 sym[i].st_value
1401 = resolve_symbol(sechdrs, versindex,
1402 strtab + sym[i].st_name, mod);
1403
1404 /* Ok if resolved. */
1405 if (sym[i].st_value != 0)
1406 break;
1407 /* Ok if weak. */
1408 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1409 break;
1410
1411 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1412 mod->name, strtab + sym[i].st_name);
1413 ret = -ENOENT;
1414 break;
1415
1416 default:
1417 /* Divert to percpu allocation if a percpu var. */
1418 if (sym[i].st_shndx == pcpuindex)
1419 secbase = (unsigned long)mod->percpu;
1420 else
1421 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1422 sym[i].st_value += secbase;
1423 break;
1424 }
1425 }
1426
1427 return ret;
1428}
1429
1430/* Update size with this section: return offset. */
1431static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1432{
1433 long ret;
1434
1435 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1436 *size = ret + sechdr->sh_size;
1437 return ret;
1438}
1439
1440/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1441 might -- code, read-only data, read-write data, small data. Tally
1442 sizes, and place the offsets into sh_entsize fields: high bit means it
1443 belongs in init. */
1444static void layout_sections(struct module *mod,
1445 const Elf_Ehdr *hdr,
1446 Elf_Shdr *sechdrs,
1447 const char *secstrings)
1448{
1449 static unsigned long const masks[][2] = {
1450 /* NOTE: all executable code must be the first section
1451 * in this array; otherwise modify the text_size
1452 * finder in the two loops below */
1453 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1454 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1455 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1456 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1457 };
1458 unsigned int m, i;
1459
1460 for (i = 0; i < hdr->e_shnum; i++)
1461 sechdrs[i].sh_entsize = ~0UL;
1462
1463 DEBUGP("Core section allocation order:\n");
1464 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1465 for (i = 0; i < hdr->e_shnum; ++i) {
1466 Elf_Shdr *s = &sechdrs[i];
1467
1468 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1469 || (s->sh_flags & masks[m][1])
1470 || s->sh_entsize != ~0UL
1471 || strncmp(secstrings + s->sh_name,
1472 ".init", 5) == 0)
1473 continue;
1474 s->sh_entsize = get_offset(&mod->core_size, s);
1475 DEBUGP("\t%s\n", secstrings + s->sh_name);
1476 }
1477 if (m == 0)
1478 mod->core_text_size = mod->core_size;
1479 }
1480
1481 DEBUGP("Init section allocation order:\n");
1482 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1483 for (i = 0; i < hdr->e_shnum; ++i) {
1484 Elf_Shdr *s = &sechdrs[i];
1485
1486 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1487 || (s->sh_flags & masks[m][1])
1488 || s->sh_entsize != ~0UL
1489 || strncmp(secstrings + s->sh_name,
1490 ".init", 5) != 0)
1491 continue;
1492 s->sh_entsize = (get_offset(&mod->init_size, s)
1493 | INIT_OFFSET_MASK);
1494 DEBUGP("\t%s\n", secstrings + s->sh_name);
1495 }
1496 if (m == 0)
1497 mod->init_text_size = mod->init_size;
1498 }
1499}
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501static void set_license(struct module *mod, const char *license)
1502{
1503 if (!license)
1504 license = "unspecified";
1505
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001506 if (!license_is_gpl_compatible(license)) {
1507 if (!(tainted & TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07001508 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001509 "kernel.\n", mod->name, license);
1510 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
1512}
1513
1514/* Parse tag=value strings from .modinfo section */
1515static char *next_string(char *string, unsigned long *secsize)
1516{
1517 /* Skip non-zero chars */
1518 while (string[0]) {
1519 string++;
1520 if ((*secsize)-- <= 1)
1521 return NULL;
1522 }
1523
1524 /* Skip any zero padding. */
1525 while (!string[0]) {
1526 string++;
1527 if ((*secsize)-- <= 1)
1528 return NULL;
1529 }
1530 return string;
1531}
1532
1533static char *get_modinfo(Elf_Shdr *sechdrs,
1534 unsigned int info,
1535 const char *tag)
1536{
1537 char *p;
1538 unsigned int taglen = strlen(tag);
1539 unsigned long size = sechdrs[info].sh_size;
1540
1541 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1542 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1543 return p + taglen + 1;
1544 }
1545 return NULL;
1546}
1547
Matt Domschc988d2b2005-06-23 22:05:15 -07001548static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1549 unsigned int infoindex)
1550{
1551 struct module_attribute *attr;
1552 int i;
1553
1554 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1555 if (attr->setup)
1556 attr->setup(mod,
1557 get_modinfo(sechdrs,
1558 infoindex,
1559 attr->attr.name));
1560 }
1561}
Matt Domschc988d2b2005-06-23 22:05:15 -07001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563#ifdef CONFIG_KALLSYMS
Alexey Dobriyanea078902007-05-08 00:28:39 -07001564static int is_exported(const char *name, const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001566 if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1567 return 1;
1568 else
Jesper Juhlf867d2a2006-06-25 05:47:09 -07001569 if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return 1;
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001571 else
1572 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575/* As per nm */
1576static char elf_type(const Elf_Sym *sym,
1577 Elf_Shdr *sechdrs,
1578 const char *secstrings,
1579 struct module *mod)
1580{
1581 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1582 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1583 return 'v';
1584 else
1585 return 'w';
1586 }
1587 if (sym->st_shndx == SHN_UNDEF)
1588 return 'U';
1589 if (sym->st_shndx == SHN_ABS)
1590 return 'a';
1591 if (sym->st_shndx >= SHN_LORESERVE)
1592 return '?';
1593 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1594 return 't';
1595 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1596 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1597 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1598 return 'r';
1599 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1600 return 'g';
1601 else
1602 return 'd';
1603 }
1604 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1605 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1606 return 's';
1607 else
1608 return 'b';
1609 }
1610 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1611 ".debug", strlen(".debug")) == 0)
1612 return 'n';
1613 return '?';
1614}
1615
1616static void add_kallsyms(struct module *mod,
1617 Elf_Shdr *sechdrs,
1618 unsigned int symindex,
1619 unsigned int strindex,
1620 const char *secstrings)
1621{
1622 unsigned int i;
1623
1624 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1625 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1626 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1627
1628 /* Set types up while we still have access to sections. */
1629 for (i = 0; i < mod->num_symtab; i++)
1630 mod->symtab[i].st_info
1631 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1632}
1633#else
1634static inline void add_kallsyms(struct module *mod,
1635 Elf_Shdr *sechdrs,
1636 unsigned int symindex,
1637 unsigned int strindex,
1638 const char *secstrings)
1639{
1640}
1641#endif /* CONFIG_KALLSYMS */
1642
1643/* Allocate and load the module: note that size of section 0 is always
1644 zero, and we rely on this for optional sections. */
1645static struct module *load_module(void __user *umod,
1646 unsigned long len,
1647 const char __user *uargs)
1648{
1649 Elf_Ehdr *hdr;
1650 Elf_Shdr *sechdrs;
1651 char *secstrings, *args, *modmagic, *strtab = NULL;
Andrew Morton84860f92006-06-28 04:26:46 -07001652 unsigned int i;
1653 unsigned int symindex = 0;
1654 unsigned int strindex = 0;
1655 unsigned int setupindex;
1656 unsigned int exindex;
1657 unsigned int exportindex;
1658 unsigned int modindex;
1659 unsigned int obsparmindex;
1660 unsigned int infoindex;
1661 unsigned int gplindex;
1662 unsigned int crcindex;
1663 unsigned int gplcrcindex;
1664 unsigned int versindex;
1665 unsigned int pcpuindex;
1666 unsigned int gplfutureindex;
1667 unsigned int gplfuturecrcindex;
1668 unsigned int unwindex = 0;
1669 unsigned int unusedindex;
1670 unsigned int unusedcrcindex;
1671 unsigned int unusedgplindex;
1672 unsigned int unusedgplcrcindex;
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001673 unsigned int markersindex;
1674 unsigned int markersstringsindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 struct module *mod;
1676 long err = 0;
1677 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1678 struct exception_table_entry *extable;
Thomas Koeller378bac82005-09-06 15:17:11 -07001679 mm_segment_t old_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1682 umod, len, uargs);
1683 if (len < sizeof(*hdr))
1684 return ERR_PTR(-ENOEXEC);
1685
1686 /* Suck in entire file: we'll want most of it. */
1687 /* vmalloc barfs on "unusual" numbers. Check here */
1688 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1689 return ERR_PTR(-ENOMEM);
1690 if (copy_from_user(hdr, umod, len) != 0) {
1691 err = -EFAULT;
1692 goto free_hdr;
1693 }
1694
1695 /* Sanity checks against insmoding binaries or wrong arch,
1696 weird elf version */
1697 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1698 || hdr->e_type != ET_REL
1699 || !elf_check_arch(hdr)
1700 || hdr->e_shentsize != sizeof(*sechdrs)) {
1701 err = -ENOEXEC;
1702 goto free_hdr;
1703 }
1704
1705 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1706 goto truncated;
1707
1708 /* Convenience variables */
1709 sechdrs = (void *)hdr + hdr->e_shoff;
1710 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1711 sechdrs[0].sh_addr = 0;
1712
1713 for (i = 1; i < hdr->e_shnum; i++) {
1714 if (sechdrs[i].sh_type != SHT_NOBITS
1715 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1716 goto truncated;
1717
1718 /* Mark all sections sh_addr with their address in the
1719 temporary image. */
1720 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1721
1722 /* Internal symbols and strings. */
1723 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1724 symindex = i;
1725 strindex = sechdrs[i].sh_link;
1726 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1727 }
1728#ifndef CONFIG_MODULE_UNLOAD
1729 /* Don't load .exit sections */
1730 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1731 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1732#endif
1733 }
1734
1735 modindex = find_sec(hdr, sechdrs, secstrings,
1736 ".gnu.linkonce.this_module");
1737 if (!modindex) {
1738 printk(KERN_WARNING "No module found in object\n");
1739 err = -ENOEXEC;
1740 goto free_hdr;
1741 }
1742 mod = (void *)sechdrs[modindex].sh_addr;
1743
1744 if (symindex == 0) {
1745 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1746 mod->name);
1747 err = -ENOEXEC;
1748 goto free_hdr;
1749 }
1750
1751 /* Optional sections */
1752 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1753 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001754 gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001755 unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
1756 unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1758 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001759 gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001760 unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
1761 unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1763 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1764 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1765 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1766 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1767 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
Jan Beulich4552d5d2006-06-26 13:57:28 +02001768#ifdef ARCH_UNWIND_SECTION_NAME
1769 unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
1770#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 /* Don't keep modinfo section */
1773 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1774#ifdef CONFIG_KALLSYMS
1775 /* Keep symbol and string tables for decoding later. */
1776 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1777 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1778#endif
Jan Beulich4552d5d2006-06-26 13:57:28 +02001779 if (unwindex)
1780 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 /* Check module struct version now, before we try to use module. */
1783 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1784 err = -ENOEXEC;
1785 goto free_hdr;
1786 }
1787
1788 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1789 /* This is allowed: modprobe --force will invalidate it. */
1790 if (!modmagic) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001791 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1793 mod->name);
1794 } else if (!same_magic(modmagic, vermagic)) {
1795 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1796 mod->name, modmagic, vermagic);
1797 err = -ENOEXEC;
1798 goto free_hdr;
1799 }
1800
1801 /* Now copy in args */
Davi Arnaut24277dd2006-03-24 03:18:43 -08001802 args = strndup_user(uargs, ~0UL >> 1);
1803 if (IS_ERR(args)) {
1804 err = PTR_ERR(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 goto free_hdr;
1806 }
Andrew Morton8e08b752006-02-07 12:58:45 -08001807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (find_module(mod->name)) {
1809 err = -EEXIST;
1810 goto free_mod;
1811 }
1812
1813 mod->state = MODULE_STATE_COMING;
1814
1815 /* Allow arches to frob section contents and sizes. */
1816 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1817 if (err < 0)
1818 goto free_mod;
1819
1820 if (pcpuindex) {
1821 /* We have a special allocation for this section. */
1822 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
Rusty Russell842bbaa2005-08-01 21:11:47 -07001823 sechdrs[pcpuindex].sh_addralign,
1824 mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (!percpu) {
1826 err = -ENOMEM;
1827 goto free_mod;
1828 }
1829 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1830 mod->percpu = percpu;
1831 }
1832
1833 /* Determine total sizes, and put offsets in sh_entsize. For now
1834 this is done generically; there doesn't appear to be any
1835 special cases for the architectures. */
1836 layout_sections(mod, hdr, sechdrs, secstrings);
1837
1838 /* Do the allocs. */
1839 ptr = module_alloc(mod->core_size);
1840 if (!ptr) {
1841 err = -ENOMEM;
1842 goto free_percpu;
1843 }
1844 memset(ptr, 0, mod->core_size);
1845 mod->module_core = ptr;
1846
1847 ptr = module_alloc(mod->init_size);
1848 if (!ptr && mod->init_size) {
1849 err = -ENOMEM;
1850 goto free_core;
1851 }
1852 memset(ptr, 0, mod->init_size);
1853 mod->module_init = ptr;
1854
1855 /* Transfer each section which specifies SHF_ALLOC */
1856 DEBUGP("final section addresses:\n");
1857 for (i = 0; i < hdr->e_shnum; i++) {
1858 void *dest;
1859
1860 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1861 continue;
1862
1863 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1864 dest = mod->module_init
1865 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1866 else
1867 dest = mod->module_core + sechdrs[i].sh_entsize;
1868
1869 if (sechdrs[i].sh_type != SHT_NOBITS)
1870 memcpy(dest, (void *)sechdrs[i].sh_addr,
1871 sechdrs[i].sh_size);
1872 /* Update sh_addr to point to copy in image. */
1873 sechdrs[i].sh_addr = (unsigned long)dest;
1874 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1875 }
1876 /* Module has been moved. */
1877 mod = (void *)sechdrs[modindex].sh_addr;
1878
1879 /* Now we've moved module, initialize linked lists, etc. */
1880 module_unload_init(mod);
1881
Kay Sievers97c146e2007-11-29 23:46:11 +01001882 /* add kobject, so we can reference it. */
Akinobu Mitad58ae672007-10-16 23:30:27 -07001883 err = mod_sysfs_init(mod);
1884 if (err)
Kay Sievers97c146e2007-11-29 23:46:11 +01001885 goto free_unload;
Kay Sievers270a6c42007-01-18 13:26:15 +01001886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 /* Set up license info based on the info section */
1888 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1889
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001890 if (strcmp(mod->name, "ndiswrapper") == 0)
Randy Dunlap0e2d57f2006-10-29 22:46:34 -08001891 add_taint(TAINT_PROPRIETARY_MODULE);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001892 if (strcmp(mod->name, "driverloader") == 0)
1893 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Dave Jones9841d61d2006-01-08 01:03:41 -08001894
Matt Domschc988d2b2005-06-23 22:05:15 -07001895 /* Set up MODINFO_ATTR fields */
1896 setup_modinfo(mod, sechdrs, infoindex);
Matt Domschc988d2b2005-06-23 22:05:15 -07001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 /* Fix up syms, so that st_value is a pointer to location. */
1899 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1900 mod);
1901 if (err < 0)
1902 goto cleanup;
1903
1904 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1905 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1906 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1907 if (crcindex)
1908 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1909 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1910 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1911 if (gplcrcindex)
1912 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001913 mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
1914 sizeof(*mod->gpl_future_syms);
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001915 mod->num_unused_syms = sechdrs[unusedindex].sh_size /
1916 sizeof(*mod->unused_syms);
1917 mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
1918 sizeof(*mod->unused_gpl_syms);
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001919 mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
1920 if (gplfuturecrcindex)
1921 mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001923 mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
1924 if (unusedcrcindex)
1925 mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
1926 mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
1927 if (unusedgplcrcindex)
1928 mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930#ifdef CONFIG_MODVERSIONS
Daniel Walker22a8bde2007-10-18 03:06:07 -07001931 if ((mod->num_syms && !crcindex) ||
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001932 (mod->num_gpl_syms && !gplcrcindex) ||
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001933 (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
1934 (mod->num_unused_syms && !unusedcrcindex) ||
1935 (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 printk(KERN_WARNING "%s: No versions for exported symbols."
1937 " Tainting kernel.\n", mod->name);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001938 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 }
1940#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001941 markersindex = find_sec(hdr, sechdrs, secstrings, "__markers");
1942 markersstringsindex = find_sec(hdr, sechdrs, secstrings,
1943 "__markers_strings");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 /* Now do relocations. */
1946 for (i = 1; i < hdr->e_shnum; i++) {
1947 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1948 unsigned int info = sechdrs[i].sh_info;
1949
1950 /* Not a valid relocation section? */
1951 if (info >= hdr->e_shnum)
1952 continue;
1953
1954 /* Don't bother with non-allocated sections */
1955 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1956 continue;
1957
1958 if (sechdrs[i].sh_type == SHT_REL)
1959 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1960 else if (sechdrs[i].sh_type == SHT_RELA)
1961 err = apply_relocate_add(sechdrs, strtab, symindex, i,
1962 mod);
1963 if (err < 0)
1964 goto cleanup;
1965 }
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001966#ifdef CONFIG_MARKERS
1967 mod->markers = (void *)sechdrs[markersindex].sh_addr;
1968 mod->num_markers =
1969 sechdrs[markersindex].sh_size / sizeof(*mod->markers);
1970#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001972 /* Find duplicate symbols */
1973 err = verify_export_symbols(mod);
1974
1975 if (err < 0)
1976 goto cleanup;
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /* Set up and sort exception table */
1979 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
1980 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
1981 sort_extable(extable, extable + mod->num_exentries);
1982
1983 /* Finally, copy percpu area over. */
1984 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
1985 sechdrs[pcpuindex].sh_size);
1986
1987 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
1988
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001989#ifdef CONFIG_MARKERS
1990 if (!mod->taints)
1991 marker_update_probe_range(mod->markers,
1992 mod->markers + mod->num_markers, NULL, NULL);
1993#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 err = module_finalize(hdr, sechdrs, mod);
1995 if (err < 0)
1996 goto cleanup;
1997
Thomas Koeller378bac82005-09-06 15:17:11 -07001998 /* flush the icache in correct context */
1999 old_fs = get_fs();
2000 set_fs(KERNEL_DS);
2001
2002 /*
2003 * Flush the instruction cache, since we've played with text.
2004 * Do it before processing of module parameters, so the module
2005 * can provide parameter accessor functions of its own.
2006 */
2007 if (mod->module_init)
2008 flush_icache_range((unsigned long)mod->module_init,
2009 (unsigned long)mod->module_init
2010 + mod->init_size);
2011 flush_icache_range((unsigned long)mod->module_core,
2012 (unsigned long)mod->module_core + mod->core_size);
2013
2014 set_fs(old_fs);
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 mod->args = args;
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002017 if (obsparmindex)
2018 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2019 mod->name);
2020
2021 /* Size of section 0 is 0, so this works well if no params */
2022 err = parse_args(mod->name, mod->args,
2023 (struct kernel_param *)
2024 sechdrs[setupindex].sh_addr,
2025 sechdrs[setupindex].sh_size
2026 / sizeof(struct kernel_param),
2027 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 if (err < 0)
2029 goto arch_cleanup;
2030
Daniel Walker22a8bde2007-10-18 03:06:07 -07002031 err = mod_sysfs_setup(mod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 (struct kernel_param *)
2033 sechdrs[setupindex].sh_addr,
2034 sechdrs[setupindex].sh_size
2035 / sizeof(struct kernel_param));
2036 if (err < 0)
2037 goto arch_cleanup;
2038 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Roland McGrath6d760132007-10-16 23:26:40 -07002039 add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Jan Beulich4552d5d2006-06-26 13:57:28 +02002041 /* Size of section 0 is 0, so this works well if no unwind info. */
2042 mod->unwind_info = unwind_add_table(mod,
Daniel Walker22a8bde2007-10-18 03:06:07 -07002043 (void *)sechdrs[unwindex].sh_addr,
2044 sechdrs[unwindex].sh_size);
Jan Beulich4552d5d2006-06-26 13:57:28 +02002045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 /* Get rid of temporary copy */
2047 vfree(hdr);
2048
2049 /* Done! */
2050 return mod;
2051
2052 arch_cleanup:
2053 module_arch_cleanup(mod);
2054 cleanup:
Kay Sievers97c146e2007-11-29 23:46:11 +01002055 kobject_del(&mod->mkobj.kobj);
2056 kobject_put(&mod->mkobj.kobj);
2057 free_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 module_unload_free(mod);
2059 module_free(mod, mod->module_init);
2060 free_core:
2061 module_free(mod, mod->module_core);
2062 free_percpu:
2063 if (percpu)
2064 percpu_modfree(percpu);
2065 free_mod:
2066 kfree(args);
2067 free_hdr:
2068 vfree(hdr);
Jayachandran C6fe2e702006-01-06 00:19:54 -08002069 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 truncated:
2072 printk(KERN_ERR "Module len %lu truncated\n", len);
2073 err = -ENOEXEC;
2074 goto free_hdr;
2075}
2076
2077/*
2078 * link the module with the whole machine is stopped with interrupts off
2079 * - this defends against kallsyms not taking locks
2080 */
2081static int __link_module(void *_mod)
2082{
2083 struct module *mod = _mod;
2084 list_add(&mod->list, &modules);
2085 return 0;
2086}
2087
2088/* This is where the real work happens */
2089asmlinkage long
2090sys_init_module(void __user *umod,
2091 unsigned long len,
2092 const char __user *uargs)
2093{
2094 struct module *mod;
2095 int ret = 0;
2096
2097 /* Must have permission */
2098 if (!capable(CAP_SYS_MODULE))
2099 return -EPERM;
2100
2101 /* Only one module load at a time, please */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002102 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 return -EINTR;
2104
2105 /* Do all the hard work */
2106 mod = load_module(umod, len, uargs);
2107 if (IS_ERR(mod)) {
Ashutosh Naik6389a382006-03-23 03:00:46 -08002108 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 return PTR_ERR(mod);
2110 }
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 /* Now sew it into the lists. They won't access us, since
2113 strong_try_module_get() will fail. */
2114 stop_machine_run(__link_module, mod, NR_CPUS);
2115
2116 /* Drop lock so they can recurse */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002117 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Alan Sterne041c682006-03-27 01:16:30 -08002119 blocking_notifier_call_chain(&module_notify_list,
2120 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 /* Start the module */
2123 if (mod->init != NULL)
2124 ret = mod->init();
2125 if (ret < 0) {
2126 /* Init routine failed: abort. Try to protect us from
2127 buggy refcounters. */
2128 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002129 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002130 module_put(mod);
2131 mutex_lock(&module_mutex);
2132 free_module(mod);
2133 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 return ret;
2135 }
2136
2137 /* Now it's a first class citizen! */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002138 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 mod->state = MODULE_STATE_LIVE;
2140 /* Drop initial reference. */
2141 module_put(mod);
Jan Beulich4552d5d2006-06-26 13:57:28 +02002142 unwind_remove_table(mod->unwind_info, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 module_free(mod, mod->module_init);
2144 mod->module_init = NULL;
2145 mod->init_size = 0;
2146 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08002147 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 return 0;
2150}
2151
2152static inline int within(unsigned long addr, void *start, unsigned long size)
2153{
2154 return ((void *)addr >= start && (void *)addr < start + size);
2155}
2156
2157#ifdef CONFIG_KALLSYMS
2158/*
2159 * This ignores the intensely annoying "mapping symbols" found
2160 * in ARM ELF files: $a, $t and $d.
2161 */
2162static inline int is_arm_mapping_symbol(const char *str)
2163{
Daniel Walker22a8bde2007-10-18 03:06:07 -07002164 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 && (str[2] == '\0' || str[2] == '.');
2166}
2167
2168static const char *get_ksymbol(struct module *mod,
2169 unsigned long addr,
2170 unsigned long *size,
2171 unsigned long *offset)
2172{
2173 unsigned int i, best = 0;
2174 unsigned long nextval;
2175
2176 /* At worse, next value is at end of module */
2177 if (within(addr, mod->module_init, mod->init_size))
2178 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002179 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2181
2182 /* Scan for closest preceeding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07002183 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 for (i = 1; i < mod->num_symtab; i++) {
2185 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2186 continue;
2187
2188 /* We ignore unnamed symbols: they're uninformative
2189 * and inserted at a whim. */
2190 if (mod->symtab[i].st_value <= addr
2191 && mod->symtab[i].st_value > mod->symtab[best].st_value
2192 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2193 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2194 best = i;
2195 if (mod->symtab[i].st_value > addr
2196 && mod->symtab[i].st_value < nextval
2197 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2198 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2199 nextval = mod->symtab[i].st_value;
2200 }
2201
2202 if (!best)
2203 return NULL;
2204
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002205 if (size)
2206 *size = nextval - mod->symtab[best].st_value;
2207 if (offset)
2208 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 return mod->strtab + mod->symtab[best].st_name;
2210}
2211
2212/* For kallsyms to ask for address resolution. NULL means not found.
2213 We don't lock, as this is used for oops resolution and races are a
2214 lesser concern. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002215/* FIXME: Risky: returns a pointer into a module w/o lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216const char *module_address_lookup(unsigned long addr,
2217 unsigned long *size,
2218 unsigned long *offset,
2219 char **modname)
2220{
2221 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002222 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Rusty Russellcb2a5202008-01-14 00:55:03 -08002224 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 list_for_each_entry(mod, &modules, list) {
2226 if (within(addr, mod->module_init, mod->init_size)
2227 || within(addr, mod->module_core, mod->core_size)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07002228 if (modname)
2229 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002230 ret = get_ksymbol(mod, addr, size, offset);
2231 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
2233 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002234 preempt_enable();
2235 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
2237
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002238int lookup_module_symbol_name(unsigned long addr, char *symname)
2239{
2240 struct module *mod;
2241
Rusty Russellcb2a5202008-01-14 00:55:03 -08002242 preempt_disable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002243 list_for_each_entry(mod, &modules, list) {
2244 if (within(addr, mod->module_init, mod->init_size) ||
2245 within(addr, mod->module_core, mod->core_size)) {
2246 const char *sym;
2247
2248 sym = get_ksymbol(mod, addr, NULL, NULL);
2249 if (!sym)
2250 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07002251 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002252 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002253 return 0;
2254 }
2255 }
2256out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002257 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002258 return -ERANGE;
2259}
2260
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002261int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2262 unsigned long *offset, char *modname, char *name)
2263{
2264 struct module *mod;
2265
Rusty Russellcb2a5202008-01-14 00:55:03 -08002266 preempt_disable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002267 list_for_each_entry(mod, &modules, list) {
2268 if (within(addr, mod->module_init, mod->init_size) ||
2269 within(addr, mod->module_core, mod->core_size)) {
2270 const char *sym;
2271
2272 sym = get_ksymbol(mod, addr, size, offset);
2273 if (!sym)
2274 goto out;
2275 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07002276 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002277 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07002278 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002279 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002280 return 0;
2281 }
2282 }
2283out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002284 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002285 return -ERANGE;
2286}
2287
Alexey Dobriyanea078902007-05-08 00:28:39 -07002288int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2289 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
2291 struct module *mod;
2292
Rusty Russellcb2a5202008-01-14 00:55:03 -08002293 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 list_for_each_entry(mod, &modules, list) {
2295 if (symnum < mod->num_symtab) {
2296 *value = mod->symtab[symnum].st_value;
2297 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07002298 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07002299 KSYM_NAME_LEN);
2300 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Alexey Dobriyanea078902007-05-08 00:28:39 -07002301 *exported = is_exported(name, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002302 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 }
2305 symnum -= mod->num_symtab;
2306 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002307 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002308 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309}
2310
2311static unsigned long mod_find_symname(struct module *mod, const char *name)
2312{
2313 unsigned int i;
2314
2315 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002316 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2317 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 return mod->symtab[i].st_value;
2319 return 0;
2320}
2321
2322/* Look for this name: can be of form module:name. */
2323unsigned long module_kallsyms_lookup_name(const char *name)
2324{
2325 struct module *mod;
2326 char *colon;
2327 unsigned long ret = 0;
2328
2329 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002330 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if ((colon = strchr(name, ':')) != NULL) {
2332 *colon = '\0';
2333 if ((mod = find_module(name)) != NULL)
2334 ret = mod_find_symname(mod, colon+1);
2335 *colon = ':';
2336 } else {
2337 list_for_each_entry(mod, &modules, list)
2338 if ((ret = mod_find_symname(mod, name)) != 0)
2339 break;
2340 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002341 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 return ret;
2343}
2344#endif /* CONFIG_KALLSYMS */
2345
2346/* Called by the /proc file system to return a list of modules. */
2347static void *m_start(struct seq_file *m, loff_t *pos)
2348{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002349 mutex_lock(&module_mutex);
Pavel Emelianov708f4b52007-07-15 23:39:54 -07002350 return seq_list_start(&modules, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
2353static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2354{
Pavel Emelianov708f4b52007-07-15 23:39:54 -07002355 return seq_list_next(p, &modules, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356}
2357
2358static void m_stop(struct seq_file *m, void *p)
2359{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002360 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002363static char *taint_flags(unsigned int taints, char *buf)
2364{
2365 int bx = 0;
2366
2367 if (taints) {
2368 buf[bx++] = '(';
2369 if (taints & TAINT_PROPRIETARY_MODULE)
2370 buf[bx++] = 'P';
2371 if (taints & TAINT_FORCED_MODULE)
2372 buf[bx++] = 'F';
2373 /*
2374 * TAINT_FORCED_RMMOD: could be added.
2375 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2376 * apply to modules.
2377 */
2378 buf[bx++] = ')';
2379 }
2380 buf[bx] = '\0';
2381
2382 return buf;
2383}
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385static int m_show(struct seq_file *m, void *p)
2386{
2387 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002388 char buf[8];
2389
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 seq_printf(m, "%s %lu",
2391 mod->name, mod->init_size + mod->core_size);
2392 print_unload_info(m, mod);
2393
2394 /* Informative for users. */
2395 seq_printf(m, " %s",
2396 mod->state == MODULE_STATE_GOING ? "Unloading":
2397 mod->state == MODULE_STATE_COMING ? "Loading":
2398 "Live");
2399 /* Used by oprofile and other similar tools. */
2400 seq_printf(m, " 0x%p", mod->module_core);
2401
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002402 /* Taints info */
2403 if (mod->taints)
2404 seq_printf(m, " %s", taint_flags(mod->taints, buf));
2405
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 seq_printf(m, "\n");
2407 return 0;
2408}
2409
2410/* Format: modulename size refcount deps address
2411
2412 Where refcount is a number or -, and deps is a comma-separated list
2413 of depends or -.
2414*/
Helge Deller15ad7cd2006-12-06 20:40:36 -08002415const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 .start = m_start,
2417 .next = m_next,
2418 .stop = m_stop,
2419 .show = m_show
2420};
2421
2422/* Given an address, look for it in the module exception tables. */
2423const struct exception_table_entry *search_module_extables(unsigned long addr)
2424{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 const struct exception_table_entry *e = NULL;
2426 struct module *mod;
2427
Rusty Russell24da1cb2007-07-15 23:41:46 -07002428 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 list_for_each_entry(mod, &modules, list) {
2430 if (mod->num_exentries == 0)
2431 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 e = search_extable(mod->extable,
2434 mod->extable + mod->num_exentries - 1,
2435 addr);
2436 if (e)
2437 break;
2438 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07002439 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07002442 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return e;
2444}
2445
Ingo Molnar4d435f92006-07-03 00:24:24 -07002446/*
2447 * Is this a valid module address?
2448 */
2449int is_module_address(unsigned long addr)
2450{
Ingo Molnar4d435f92006-07-03 00:24:24 -07002451 struct module *mod;
2452
Rusty Russell24da1cb2007-07-15 23:41:46 -07002453 preempt_disable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002454
2455 list_for_each_entry(mod, &modules, list) {
2456 if (within(addr, mod->module_core, mod->core_size)) {
Rusty Russell24da1cb2007-07-15 23:41:46 -07002457 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002458 return 1;
2459 }
2460 }
2461
Rusty Russell24da1cb2007-07-15 23:41:46 -07002462 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002463
2464 return 0;
2465}
2466
2467
Rusty Russell24da1cb2007-07-15 23:41:46 -07002468/* Is this a valid kernel address? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469struct module *__module_text_address(unsigned long addr)
2470{
2471 struct module *mod;
2472
2473 list_for_each_entry(mod, &modules, list)
2474 if (within(addr, mod->module_init, mod->init_text_size)
2475 || within(addr, mod->module_core, mod->core_text_size))
2476 return mod;
2477 return NULL;
2478}
2479
2480struct module *module_text_address(unsigned long addr)
2481{
2482 struct module *mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Rusty Russell24da1cb2007-07-15 23:41:46 -07002484 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 mod = __module_text_address(addr);
Rusty Russell24da1cb2007-07-15 23:41:46 -07002486 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
2488 return mod;
2489}
2490
2491/* Don't grab lock, we're oopsing. */
2492void print_modules(void)
2493{
2494 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07002495 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 printk("Modules linked in:");
2498 list_for_each_entry(mod, &modules, list)
Randy Dunlap2bc2d612006-10-02 02:17:02 -07002499 printk(" %s%s", mod->name, taint_flags(mod->taints, buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 printk("\n");
2501}
2502
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503#ifdef CONFIG_MODVERSIONS
2504/* Generate the signature for struct module here, too, for modversions. */
2505void struct_module(struct module *mod) { return; }
2506EXPORT_SYMBOL(struct_module);
2507#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002508
2509#ifdef CONFIG_MARKERS
2510void module_update_markers(struct module *probe_module, int *refcount)
2511{
2512 struct module *mod;
2513
2514 mutex_lock(&module_mutex);
2515 list_for_each_entry(mod, &modules, list)
2516 if (!mod->taints)
2517 marker_update_probe_range(mod->markers,
2518 mod->markers + mod->num_markers,
2519 probe_module, refcount);
2520 mutex_unlock(&module_mutex);
2521}
2522#endif