blob: 68d05d2f4d8a9e70dccadefb078284a939342971 [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>
Christoph Lameter6d762392008-02-08 04:18:42 -080049#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#if 0
52#define DEBUGP printk
53#else
54#define DEBUGP(fmt , a...)
55#endif
56
57#ifndef ARCH_SHF_SMALL
58#define ARCH_SHF_SMALL 0
59#endif
60
61/* If this is set, the section belongs in the init part of the module */
62#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
63
Rusty Russell24da1cb2007-07-15 23:41:46 -070064/* List of modules, protected by module_mutex or preempt_disable
65 * (add/delete uses stop_machine). */
Ashutosh Naik6389a382006-03-23 03:00:46 -080066static DEFINE_MUTEX(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static LIST_HEAD(modules);
68
Rusty Russellc9a3ba52008-01-29 17:13:18 -050069/* Waiting for a module to finish initializing? */
70static DECLARE_WAIT_QUEUE_HEAD(module_wq);
71
Alan Sterne041c682006-03-27 01:16:30 -080072static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74int register_module_notifier(struct notifier_block * nb)
75{
Alan Sterne041c682006-03-27 01:16:30 -080076 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78EXPORT_SYMBOL(register_module_notifier);
79
80int unregister_module_notifier(struct notifier_block * nb)
81{
Alan Sterne041c682006-03-27 01:16:30 -080082 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84EXPORT_SYMBOL(unregister_module_notifier);
85
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -080086/* We require a truly strong try_module_get(): 0 means failure due to
87 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static inline int strong_try_module_get(struct module *mod)
89{
90 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -050091 return -EBUSY;
92 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -050094 else
95 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Florin Malitafa3ba2e82006-10-11 01:21:48 -070098static inline void add_taint_module(struct module *mod, unsigned flag)
99{
100 add_taint(flag);
101 mod->taints |= flag;
102}
103
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200104/*
105 * A thread that wants to hold a reference to a module only while it
106 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
108void __module_put_and_exit(struct module *mod, long code)
109{
110 module_put(mod);
111 do_exit(code);
112}
113EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* Find a module section: 0 means not found. */
116static unsigned int find_sec(Elf_Ehdr *hdr,
117 Elf_Shdr *sechdrs,
118 const char *secstrings,
119 const char *name)
120{
121 unsigned int i;
122
123 for (i = 1; i < hdr->e_shnum; i++)
124 /* Alloc bit cleared means "ignore it." */
125 if ((sechdrs[i].sh_flags & SHF_ALLOC)
126 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
127 return i;
128 return 0;
129}
130
131/* Provided by the linker */
132extern const struct kernel_symbol __start___ksymtab[];
133extern const struct kernel_symbol __stop___ksymtab[];
134extern const struct kernel_symbol __start___ksymtab_gpl[];
135extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800136extern const struct kernel_symbol __start___ksymtab_gpl_future[];
137extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700138extern const struct kernel_symbol __start___ksymtab_unused[];
139extern const struct kernel_symbol __stop___ksymtab_unused[];
140extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
141extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
142extern const struct kernel_symbol __start___ksymtab_gpl_future[];
143extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144extern const unsigned long __start___kcrctab[];
145extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800146extern const unsigned long __start___kcrctab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700147extern const unsigned long __start___kcrctab_unused[];
148extern const unsigned long __start___kcrctab_unused_gpl[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150#ifndef CONFIG_MODVERSIONS
151#define symversion(base, idx) NULL
152#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800153#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#endif
155
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100156/* lookup symbol in given range of kernel_symbols */
157static const struct kernel_symbol *lookup_symbol(const char *name,
158 const struct kernel_symbol *start,
159 const struct kernel_symbol *stop)
160{
161 const struct kernel_symbol *ks = start;
162 for (; ks < stop; ks++)
163 if (strcmp(ks->name, name) == 0)
164 return ks;
165 return NULL;
166}
167
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700168static void printk_unused_warning(const char *name)
169{
170 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
171 "however this module is using it.\n", name);
172 printk(KERN_WARNING "This symbol will go away in the future.\n");
173 printk(KERN_WARNING "Please evalute if this is the right api to use, "
174 "and if it really is, submit a report the linux kernel "
175 "mailinglist together with submitting your code for "
176 "inclusion.\n");
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/* Find a symbol, return value, crc and module which owns it */
180static unsigned long __find_symbol(const char *name,
181 struct module **owner,
182 const unsigned long **crc,
183 int gplok)
184{
185 struct module *mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100186 const struct kernel_symbol *ks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Daniel Walker22a8bde2007-10-18 03:06:07 -0700188 /* Core kernel first. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *owner = NULL;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100190 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
191 if (ks) {
192 *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
193 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100196 ks = lookup_symbol(name, __start___ksymtab_gpl,
197 __stop___ksymtab_gpl);
198 if (ks) {
199 *crc = symversion(__start___kcrctab_gpl,
200 (ks - __start___ksymtab_gpl));
201 return ks->value;
202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800204 ks = lookup_symbol(name, __start___ksymtab_gpl_future,
205 __stop___ksymtab_gpl_future);
206 if (ks) {
207 if (!gplok) {
208 printk(KERN_WARNING "Symbol %s is being used "
209 "by a non-GPL module, which will not "
210 "be allowed in the future\n", name);
211 printk(KERN_WARNING "Please see the file "
212 "Documentation/feature-removal-schedule.txt "
213 "in the kernel source tree for more "
214 "details.\n");
215 }
216 *crc = symversion(__start___kcrctab_gpl_future,
217 (ks - __start___ksymtab_gpl_future));
218 return ks->value;
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700221 ks = lookup_symbol(name, __start___ksymtab_unused,
222 __stop___ksymtab_unused);
223 if (ks) {
224 printk_unused_warning(name);
225 *crc = symversion(__start___kcrctab_unused,
226 (ks - __start___ksymtab_unused));
227 return ks->value;
228 }
229
230 if (gplok)
231 ks = lookup_symbol(name, __start___ksymtab_unused_gpl,
232 __stop___ksymtab_unused_gpl);
233 if (ks) {
234 printk_unused_warning(name);
235 *crc = symversion(__start___kcrctab_unused_gpl,
236 (ks - __start___ksymtab_unused_gpl));
237 return ks->value;
238 }
239
Daniel Walker22a8bde2007-10-18 03:06:07 -0700240 /* Now try modules. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 list_for_each_entry(mod, &modules, list) {
242 *owner = mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100243 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
244 if (ks) {
245 *crc = symversion(mod->crcs, (ks - mod->syms));
246 return ks->value;
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100250 ks = lookup_symbol(name, mod->gpl_syms,
251 mod->gpl_syms + mod->num_gpl_syms);
252 if (ks) {
253 *crc = symversion(mod->gpl_crcs,
254 (ks - mod->gpl_syms));
255 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257 }
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700258 ks = lookup_symbol(name, mod->unused_syms, mod->unused_syms + mod->num_unused_syms);
259 if (ks) {
260 printk_unused_warning(name);
261 *crc = symversion(mod->unused_crcs, (ks - mod->unused_syms));
262 return ks->value;
263 }
264
265 if (gplok) {
266 ks = lookup_symbol(name, mod->unused_gpl_syms,
267 mod->unused_gpl_syms + mod->num_unused_gpl_syms);
268 if (ks) {
269 printk_unused_warning(name);
270 *crc = symversion(mod->unused_gpl_crcs,
271 (ks - mod->unused_gpl_syms));
272 return ks->value;
273 }
274 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800275 ks = lookup_symbol(name, mod->gpl_future_syms,
276 (mod->gpl_future_syms +
277 mod->num_gpl_future_syms));
278 if (ks) {
279 if (!gplok) {
280 printk(KERN_WARNING "Symbol %s is being used "
281 "by a non-GPL module, which will not "
282 "be allowed in the future\n", name);
283 printk(KERN_WARNING "Please see the file "
284 "Documentation/feature-removal-schedule.txt "
285 "in the kernel source tree for more "
286 "details.\n");
287 }
288 *crc = symversion(mod->gpl_future_crcs,
289 (ks - mod->gpl_future_syms));
290 return ks->value;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 DEBUGP("Failed to find symbol %s\n", name);
Christoph Lameter88173502008-02-08 04:18:41 -0800294 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297/* Search for module by name: must hold module_mutex. */
298static struct module *find_module(const char *name)
299{
300 struct module *mod;
301
302 list_for_each_entry(mod, &modules, list) {
303 if (strcmp(mod->name, name) == 0)
304 return mod;
305 }
306 return NULL;
307}
308
309#ifdef CONFIG_SMP
310/* Number of blocks used and allocated. */
311static unsigned int pcpu_num_used, pcpu_num_allocated;
312/* Size of each block. -ve means used. */
313static int *pcpu_size;
314
315static int split_block(unsigned int i, unsigned short size)
316{
317 /* Reallocation required? */
318 if (pcpu_num_used + 1 > pcpu_num_allocated) {
Pekka Enberg6d4f9c52007-05-08 00:24:58 -0700319 int *new;
320
321 new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
322 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (!new)
324 return 0;
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 pcpu_num_allocated *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 pcpu_size = new;
328 }
329
330 /* Insert a new subblock */
331 memmove(&pcpu_size[i+1], &pcpu_size[i],
332 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
333 pcpu_num_used++;
334
335 pcpu_size[i+1] -= size;
336 pcpu_size[i] = size;
337 return 1;
338}
339
340static inline unsigned int block_size(int val)
341{
342 if (val < 0)
343 return -val;
344 return val;
345}
346
Rusty Russell842bbaa2005-08-01 21:11:47 -0700347static void *percpu_modalloc(unsigned long size, unsigned long align,
348 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 unsigned long extra;
351 unsigned int i;
352 void *ptr;
353
Jeremy Fitzhardingeb6e35902007-05-02 19:27:12 +0200354 if (align > PAGE_SIZE) {
355 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
356 name, align, PAGE_SIZE);
357 align = PAGE_SIZE;
Rusty Russell842bbaa2005-08-01 21:11:47 -0700358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 ptr = __per_cpu_start;
361 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
362 /* Extra for alignment requirement. */
363 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
364 BUG_ON(i == 0 && extra != 0);
365
366 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
367 continue;
368
369 /* Transfer extra to previous block. */
370 if (pcpu_size[i-1] < 0)
371 pcpu_size[i-1] -= extra;
372 else
373 pcpu_size[i-1] += extra;
374 pcpu_size[i] -= extra;
375 ptr += extra;
376
377 /* Split block if warranted */
378 if (pcpu_size[i] - size > sizeof(unsigned long))
379 if (!split_block(i, size))
380 return NULL;
381
382 /* Mark allocated */
383 pcpu_size[i] = -pcpu_size[i];
384 return ptr;
385 }
386
387 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
388 size);
389 return NULL;
390}
391
392static void percpu_modfree(void *freeme)
393{
394 unsigned int i;
395 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
396
397 /* First entry is core kernel percpu data. */
398 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
399 if (ptr == freeme) {
400 pcpu_size[i] = -pcpu_size[i];
401 goto free;
402 }
403 }
404 BUG();
405
406 free:
407 /* Merge with previous? */
408 if (pcpu_size[i-1] >= 0) {
409 pcpu_size[i-1] += pcpu_size[i];
410 pcpu_num_used--;
411 memmove(&pcpu_size[i], &pcpu_size[i+1],
412 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
413 i--;
414 }
415 /* Merge with next? */
416 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
417 pcpu_size[i] += pcpu_size[i+1];
418 pcpu_num_used--;
419 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
420 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
421 }
422}
423
424static unsigned int find_pcpusec(Elf_Ehdr *hdr,
425 Elf_Shdr *sechdrs,
426 const char *secstrings)
427{
428 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
429}
430
Mike Travisdd5af902008-01-30 13:33:32 +0100431static void percpu_modcopy(void *pcpudest, const void *from, unsigned long size)
432{
433 int cpu;
434
435 for_each_possible_cpu(cpu)
436 memcpy(pcpudest + per_cpu_offset(cpu), from, size);
437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static int percpu_modinit(void)
440{
441 pcpu_num_used = 2;
442 pcpu_num_allocated = 2;
443 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
444 GFP_KERNEL);
445 /* Static in-kernel percpu data (used). */
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +0200446 pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 /* Free room. */
448 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
449 if (pcpu_size[1] < 0) {
450 printk(KERN_ERR "No per-cpu room for modules.\n");
451 pcpu_num_used = 1;
452 }
453
454 return 0;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700455}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456__initcall(percpu_modinit);
457#else /* ... !CONFIG_SMP */
Rusty Russell842bbaa2005-08-01 21:11:47 -0700458static inline void *percpu_modalloc(unsigned long size, unsigned long align,
459 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 return NULL;
462}
463static inline void percpu_modfree(void *pcpuptr)
464{
465 BUG();
466}
467static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
468 Elf_Shdr *sechdrs,
469 const char *secstrings)
470{
471 return 0;
472}
473static inline void percpu_modcopy(void *pcpudst, const void *src,
474 unsigned long size)
475{
476 /* pcpusec should be 0, and size of that section should be 0. */
477 BUG_ON(size != 0);
478}
479#endif /* CONFIG_SMP */
480
Matt Domschc988d2b2005-06-23 22:05:15 -0700481#define MODINFO_ATTR(field) \
482static void setup_modinfo_##field(struct module *mod, const char *s) \
483{ \
484 mod->field = kstrdup(s, GFP_KERNEL); \
485} \
486static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
487 struct module *mod, char *buffer) \
488{ \
489 return sprintf(buffer, "%s\n", mod->field); \
490} \
491static int modinfo_##field##_exists(struct module *mod) \
492{ \
493 return mod->field != NULL; \
494} \
495static void free_modinfo_##field(struct module *mod) \
496{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700497 kfree(mod->field); \
498 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700499} \
500static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900501 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700502 .show = show_modinfo_##field, \
503 .setup = setup_modinfo_##field, \
504 .test = modinfo_##field##_exists, \
505 .free = free_modinfo_##field, \
506};
507
508MODINFO_ATTR(version);
509MODINFO_ATTR(srcversion);
510
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100511static char last_unloaded_module[MODULE_NAME_LEN+1];
512
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800513#ifdef CONFIG_MODULE_UNLOAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/* Init the unload section of the module. */
515static void module_unload_init(struct module *mod)
516{
517 unsigned int i;
518
519 INIT_LIST_HEAD(&mod->modules_which_use_me);
520 for (i = 0; i < NR_CPUS; i++)
521 local_set(&mod->ref[i].count, 0);
522 /* Hold reference count during initialization. */
Ingo Molnar39c715b2005-06-21 17:14:34 -0700523 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* Backwards compatibility macros put refcount during init. */
525 mod->waiter = current;
526}
527
528/* modules using other modules */
529struct module_use
530{
531 struct list_head list;
532 struct module *module_which_uses;
533};
534
535/* Does a already use b? */
536static int already_uses(struct module *a, struct module *b)
537{
538 struct module_use *use;
539
540 list_for_each_entry(use, &b->modules_which_use_me, list) {
541 if (use->module_which_uses == a) {
542 DEBUGP("%s uses %s!\n", a->name, b->name);
543 return 1;
544 }
545 }
546 DEBUGP("%s does not use %s!\n", a->name, b->name);
547 return 0;
548}
549
550/* Module a uses b */
551static int use_module(struct module *a, struct module *b)
552{
553 struct module_use *use;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500554 int no_warn, err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (b == NULL || already_uses(a, b)) return 1;
557
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500558 /* If we're interrupted or time out, we fail. */
559 if (wait_event_interruptible_timeout(
560 module_wq, (err = strong_try_module_get(b)) != -EBUSY,
561 30 * HZ) <= 0) {
562 printk("%s: gave up waiting for init of module %s.\n",
563 a->name, b->name);
564 return 0;
565 }
566
567 /* If strong_try_module_get() returned a different error, we fail. */
568 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return 0;
570
571 DEBUGP("Allocating new usage for %s.\n", a->name);
572 use = kmalloc(sizeof(*use), GFP_ATOMIC);
573 if (!use) {
574 printk("%s: out of memory loading\n", a->name);
575 module_put(b);
576 return 0;
577 }
578
579 use->module_which_uses = a;
580 list_add(&use->list, &b->modules_which_use_me);
Kay Sievers270a6c42007-01-18 13:26:15 +0100581 no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return 1;
583}
584
585/* Clear the unload stuff of the module. */
586static void module_unload_free(struct module *mod)
587{
588 struct module *i;
589
590 list_for_each_entry(i, &modules, list) {
591 struct module_use *use;
592
593 list_for_each_entry(use, &i->modules_which_use_me, list) {
594 if (use->module_which_uses == mod) {
595 DEBUGP("%s unusing %s\n", mod->name, i->name);
596 module_put(i);
597 list_del(&use->list);
598 kfree(use);
Kay Sievers270a6c42007-01-18 13:26:15 +0100599 sysfs_remove_link(i->holders_dir, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /* There can be at most one match. */
601 break;
602 }
603 }
604 }
605}
606
607#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800608static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
610 int ret = (flags & O_TRUNC);
611 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800612 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return ret;
614}
615#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800616static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 return 0;
619}
620#endif /* CONFIG_MODULE_FORCE_UNLOAD */
621
622struct stopref
623{
624 struct module *mod;
625 int flags;
626 int *forced;
627};
628
629/* Whole machine is stopped with interrupts off when this runs. */
630static int __try_stop_module(void *_sref)
631{
632 struct stopref *sref = _sref;
633
634 /* If it's not unused, quit unless we are told to block. */
635 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800636 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return -EWOULDBLOCK;
638 }
639
640 /* Mark it as dying. */
641 sref->mod->state = MODULE_STATE_GOING;
642 return 0;
643}
644
645static int try_stop_module(struct module *mod, int flags, int *forced)
646{
647 struct stopref sref = { mod, flags, forced };
648
649 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
650}
651
652unsigned int module_refcount(struct module *mod)
653{
654 unsigned int i, total = 0;
655
656 for (i = 0; i < NR_CPUS; i++)
657 total += local_read(&mod->ref[i].count);
658 return total;
659}
660EXPORT_SYMBOL(module_refcount);
661
662/* This exists whether we can unload or not */
663static void free_module(struct module *mod);
664
665static void wait_for_zero_refcount(struct module *mod)
666{
667 /* Since we might sleep for some time, drop the semaphore first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800668 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 for (;;) {
670 DEBUGP("Looking at refcount...\n");
671 set_current_state(TASK_UNINTERRUPTIBLE);
672 if (module_refcount(mod) == 0)
673 break;
674 schedule();
675 }
676 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800677 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800680asmlinkage long
681sys_delete_module(const char __user *name_user, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800684 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 int ret, forced = 0;
686
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800687 if (!capable(CAP_SYS_MODULE))
688 return -EPERM;
689
690 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
691 return -EFAULT;
692 name[MODULE_NAME_LEN-1] = '\0';
693
Ashutosh Naik6389a382006-03-23 03:00:46 -0800694 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return -EINTR;
696
697 mod = find_module(name);
698 if (!mod) {
699 ret = -ENOENT;
700 goto out;
701 }
702
703 if (!list_empty(&mod->modules_which_use_me)) {
704 /* Other modules depend on us: get rid of them first. */
705 ret = -EWOULDBLOCK;
706 goto out;
707 }
708
709 /* Doing init or already dying? */
710 if (mod->state != MODULE_STATE_LIVE) {
711 /* FIXME: if (force), slam module count and wake up
712 waiter --RR */
713 DEBUGP("%s already dying\n", mod->name);
714 ret = -EBUSY;
715 goto out;
716 }
717
718 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700719 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800720 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (!forced) {
722 /* This module can't be removed */
723 ret = -EBUSY;
724 goto out;
725 }
726 }
727
728 /* Set this up before setting mod->state */
729 mod->waiter = current;
730
731 /* Stop the machine so refcounts can't move and disable module. */
732 ret = try_stop_module(mod, flags, &forced);
733 if (ret != 0)
734 goto out;
735
736 /* Never wait if forced. */
737 if (!forced && module_refcount(mod) != 0)
738 wait_for_zero_refcount(mod);
739
740 /* Final destruction now noone is using it. */
741 if (mod->exit != NULL) {
Ashutosh Naik6389a382006-03-23 03:00:46 -0800742 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 mod->exit();
Ashutosh Naik6389a382006-03-23 03:00:46 -0800744 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100746 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500747 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 free_module(mod);
749
750 out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800751 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return ret;
753}
754
755static void print_unload_info(struct seq_file *m, struct module *mod)
756{
757 struct module_use *use;
758 int printed_something = 0;
759
760 seq_printf(m, " %u ", module_refcount(mod));
761
762 /* Always include a trailing , so userspace can differentiate
763 between this and the old multi-field proc format. */
764 list_for_each_entry(use, &mod->modules_which_use_me, list) {
765 printed_something = 1;
766 seq_printf(m, "%s,", use->module_which_uses->name);
767 }
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (mod->init != NULL && mod->exit == NULL) {
770 printed_something = 1;
771 seq_printf(m, "[permanent],");
772 }
773
774 if (!printed_something)
775 seq_printf(m, "-");
776}
777
778void __symbol_put(const char *symbol)
779{
780 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 const unsigned long *crc;
782
Rusty Russell24da1cb2007-07-15 23:41:46 -0700783 preempt_disable();
Christoph Lameter88173502008-02-08 04:18:41 -0800784 if (IS_ERR_VALUE(__find_symbol(symbol, &owner, &crc, 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 BUG();
786 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700787 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789EXPORT_SYMBOL(__symbol_put);
790
791void symbol_put_addr(void *addr)
792{
Trent Piepho5e376612006-05-15 09:44:06 -0700793 struct module *modaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Trent Piepho5e376612006-05-15 09:44:06 -0700795 if (core_kernel_text((unsigned long)addr))
796 return;
797
798 if (!(modaddr = module_text_address((unsigned long)addr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 BUG();
Trent Piepho5e376612006-05-15 09:44:06 -0700800 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802EXPORT_SYMBOL_GPL(symbol_put_addr);
803
804static ssize_t show_refcnt(struct module_attribute *mattr,
805 struct module *mod, char *buffer)
806{
Alexey Dobriyan256e2fd2007-08-06 23:47:45 +0400807 return sprintf(buffer, "%u\n", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810static struct module_attribute refcnt = {
Tejun Heo7b595752007-06-14 03:45:17 +0900811 .attr = { .name = "refcnt", .mode = 0444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 .show = show_refcnt,
813};
814
Al Virof6a57032006-10-18 01:47:25 -0400815void module_put(struct module *module)
816{
817 if (module) {
818 unsigned int cpu = get_cpu();
819 local_dec(&module->ref[cpu].count);
820 /* Maybe they're waiting for us to drop reference? */
821 if (unlikely(!module_is_live(module)))
822 wake_up_process(module->waiter);
823 put_cpu();
824 }
825}
826EXPORT_SYMBOL(module_put);
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828#else /* !CONFIG_MODULE_UNLOAD */
829static void print_unload_info(struct seq_file *m, struct module *mod)
830{
831 /* We don't know the usage count, or what modules are using. */
832 seq_printf(m, " - -");
833}
834
835static inline void module_unload_free(struct module *mod)
836{
837}
838
839static inline int use_module(struct module *a, struct module *b)
840{
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500841 return strong_try_module_get(b) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844static inline void module_unload_init(struct module *mod)
845{
846}
847#endif /* CONFIG_MODULE_UNLOAD */
848
Kay Sievers1f717402006-11-24 12:15:25 +0100849static ssize_t show_initstate(struct module_attribute *mattr,
850 struct module *mod, char *buffer)
851{
852 const char *state = "unknown";
853
854 switch (mod->state) {
855 case MODULE_STATE_LIVE:
856 state = "live";
857 break;
858 case MODULE_STATE_COMING:
859 state = "coming";
860 break;
861 case MODULE_STATE_GOING:
862 state = "going";
863 break;
864 }
865 return sprintf(buffer, "%s\n", state);
866}
867
868static struct module_attribute initstate = {
Tejun Heo7b595752007-06-14 03:45:17 +0900869 .attr = { .name = "initstate", .mode = 0444 },
Kay Sievers1f717402006-11-24 12:15:25 +0100870 .show = show_initstate,
871};
872
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800873static struct module_attribute *modinfo_attrs[] = {
874 &modinfo_version,
875 &modinfo_srcversion,
Kay Sievers1f717402006-11-24 12:15:25 +0100876 &initstate,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800877#ifdef CONFIG_MODULE_UNLOAD
878 &refcnt,
879#endif
880 NULL,
881};
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883static const char vermagic[] = VERMAGIC_STRING;
884
885#ifdef CONFIG_MODVERSIONS
886static int check_version(Elf_Shdr *sechdrs,
887 unsigned int versindex,
888 const char *symname,
889 struct module *mod,
890 const unsigned long *crc)
891{
892 unsigned int i, num_versions;
893 struct modversion_info *versions;
894
895 /* Exporting module didn't supply crcs? OK, we're already tainted. */
896 if (!crc)
897 return 1;
898
899 versions = (void *) sechdrs[versindex].sh_addr;
900 num_versions = sechdrs[versindex].sh_size
901 / sizeof(struct modversion_info);
902
903 for (i = 0; i < num_versions; i++) {
904 if (strcmp(versions[i].name, symname) != 0)
905 continue;
906
907 if (versions[i].crc == *crc)
908 return 1;
909 printk("%s: disagrees about version of symbol %s\n",
910 mod->name, symname);
911 DEBUGP("Found checksum %lX vs module %lX\n",
912 *crc, versions[i].crc);
913 return 0;
914 }
915 /* Not in module's version table. OK, but that taints the kernel. */
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700916 if (!(tainted & TAINT_FORCED_MODULE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 printk("%s: no version for \"%s\" found: kernel tainted.\n",
918 mod->name, symname);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700919 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return 1;
921}
922
923static inline int check_modstruct_version(Elf_Shdr *sechdrs,
924 unsigned int versindex,
925 struct module *mod)
926{
927 const unsigned long *crc;
928 struct module *owner;
929
Christoph Lameter88173502008-02-08 04:18:41 -0800930 if (IS_ERR_VALUE(__find_symbol("struct_module",
931 &owner, &crc, 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 BUG();
933 return check_version(sechdrs, versindex, "struct_module", mod,
934 crc);
935}
936
937/* First part is kernel version, which we ignore. */
938static inline int same_magic(const char *amagic, const char *bmagic)
939{
940 amagic += strcspn(amagic, " ");
941 bmagic += strcspn(bmagic, " ");
942 return strcmp(amagic, bmagic) == 0;
943}
944#else
945static inline int check_version(Elf_Shdr *sechdrs,
946 unsigned int versindex,
947 const char *symname,
948 struct module *mod,
949 const unsigned long *crc)
950{
951 return 1;
952}
953
954static inline int check_modstruct_version(Elf_Shdr *sechdrs,
955 unsigned int versindex,
956 struct module *mod)
957{
958 return 1;
959}
960
961static inline int same_magic(const char *amagic, const char *bmagic)
962{
963 return strcmp(amagic, bmagic) == 0;
964}
965#endif /* CONFIG_MODVERSIONS */
966
967/* Resolve a symbol for this module. I.e. if we find one, record usage.
968 Must be holding module_mutex. */
969static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
970 unsigned int versindex,
971 const char *name,
972 struct module *mod)
973{
974 struct module *owner;
975 unsigned long ret;
976 const unsigned long *crc;
977
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700978 ret = __find_symbol(name, &owner, &crc,
979 !(mod->taints & TAINT_PROPRIETARY_MODULE));
Christoph Lameter88173502008-02-08 04:18:41 -0800980 if (!IS_ERR_VALUE(ret)) {
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800981 /* use_module can fail due to OOM,
982 or module initialization or unloading */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (!check_version(sechdrs, versindex, name, mod, crc) ||
984 !use_module(mod, owner))
Christoph Lameter88173502008-02-08 04:18:41 -0800985 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return ret;
988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/*
991 * /sys/module/foo/sections stuff
992 * J. Corbet <corbet@lwn.net>
993 */
Kay Sievers120fc3d2008-02-21 00:33:20 +0100994#if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995static ssize_t module_sect_show(struct module_attribute *mattr,
996 struct module *mod, char *buf)
997{
998 struct module_sect_attr *sattr =
999 container_of(mattr, struct module_sect_attr, mattr);
1000 return sprintf(buf, "0x%lx\n", sattr->address);
1001}
1002
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001003static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1004{
1005 int section;
1006
1007 for (section = 0; section < sect_attrs->nsections; section++)
1008 kfree(sect_attrs->attrs[section].name);
1009 kfree(sect_attrs);
1010}
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012static void add_sect_attrs(struct module *mod, unsigned int nsect,
1013 char *secstrings, Elf_Shdr *sechdrs)
1014{
1015 unsigned int nloaded = 0, i, size[2];
1016 struct module_sect_attrs *sect_attrs;
1017 struct module_sect_attr *sattr;
1018 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /* Count loaded sections and allocate structures */
1021 for (i = 0; i < nsect; i++)
1022 if (sechdrs[i].sh_flags & SHF_ALLOC)
1023 nloaded++;
1024 size[0] = ALIGN(sizeof(*sect_attrs)
1025 + nloaded * sizeof(sect_attrs->attrs[0]),
1026 sizeof(sect_attrs->grp.attrs[0]));
1027 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001028 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1029 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return;
1031
1032 /* Setup section attributes. */
1033 sect_attrs->grp.name = "sections";
1034 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1035
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001036 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 sattr = &sect_attrs->attrs[0];
1038 gattr = &sect_attrs->grp.attrs[0];
1039 for (i = 0; i < nsect; i++) {
1040 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1041 continue;
1042 sattr->address = sechdrs[i].sh_addr;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001043 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1044 GFP_KERNEL);
1045 if (sattr->name == NULL)
1046 goto out;
1047 sect_attrs->nsections++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 sattr->mattr.show = module_sect_show;
1049 sattr->mattr.store = NULL;
1050 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 sattr->mattr.attr.mode = S_IRUGO;
1052 *(gattr++) = &(sattr++)->mattr.attr;
1053 }
1054 *gattr = NULL;
1055
1056 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1057 goto out;
1058
1059 mod->sect_attrs = sect_attrs;
1060 return;
1061 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001062 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
1065static void remove_sect_attrs(struct module *mod)
1066{
1067 if (mod->sect_attrs) {
1068 sysfs_remove_group(&mod->mkobj.kobj,
1069 &mod->sect_attrs->grp);
1070 /* We are positive that no one is using any sect attrs
1071 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001072 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 mod->sect_attrs = NULL;
1074 }
1075}
1076
Roland McGrath6d760132007-10-16 23:26:40 -07001077/*
1078 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1079 */
1080
1081struct module_notes_attrs {
1082 struct kobject *dir;
1083 unsigned int notes;
1084 struct bin_attribute attrs[0];
1085};
1086
1087static ssize_t module_notes_read(struct kobject *kobj,
1088 struct bin_attribute *bin_attr,
1089 char *buf, loff_t pos, size_t count)
1090{
1091 /*
1092 * The caller checked the pos and count against our size.
1093 */
1094 memcpy(buf, bin_attr->private + pos, count);
1095 return count;
1096}
1097
1098static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1099 unsigned int i)
1100{
1101 if (notes_attrs->dir) {
1102 while (i-- > 0)
1103 sysfs_remove_bin_file(notes_attrs->dir,
1104 &notes_attrs->attrs[i]);
1105 kobject_del(notes_attrs->dir);
1106 }
1107 kfree(notes_attrs);
1108}
1109
1110static void add_notes_attrs(struct module *mod, unsigned int nsect,
1111 char *secstrings, Elf_Shdr *sechdrs)
1112{
1113 unsigned int notes, loaded, i;
1114 struct module_notes_attrs *notes_attrs;
1115 struct bin_attribute *nattr;
1116
1117 /* Count notes sections and allocate structures. */
1118 notes = 0;
1119 for (i = 0; i < nsect; i++)
1120 if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
1121 (sechdrs[i].sh_type == SHT_NOTE))
1122 ++notes;
1123
1124 if (notes == 0)
1125 return;
1126
1127 notes_attrs = kzalloc(sizeof(*notes_attrs)
1128 + notes * sizeof(notes_attrs->attrs[0]),
1129 GFP_KERNEL);
1130 if (notes_attrs == NULL)
1131 return;
1132
1133 notes_attrs->notes = notes;
1134 nattr = &notes_attrs->attrs[0];
1135 for (loaded = i = 0; i < nsect; ++i) {
1136 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1137 continue;
1138 if (sechdrs[i].sh_type == SHT_NOTE) {
1139 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1140 nattr->attr.mode = S_IRUGO;
1141 nattr->size = sechdrs[i].sh_size;
1142 nattr->private = (void *) sechdrs[i].sh_addr;
1143 nattr->read = module_notes_read;
1144 ++nattr;
1145 }
1146 ++loaded;
1147 }
1148
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001149 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001150 if (!notes_attrs->dir)
1151 goto out;
1152
1153 for (i = 0; i < notes; ++i)
1154 if (sysfs_create_bin_file(notes_attrs->dir,
1155 &notes_attrs->attrs[i]))
1156 goto out;
1157
1158 mod->notes_attrs = notes_attrs;
1159 return;
1160
1161 out:
1162 free_notes_attrs(notes_attrs, i);
1163}
1164
1165static void remove_notes_attrs(struct module *mod)
1166{
1167 if (mod->notes_attrs)
1168 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1169}
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1174 char *sectstrings, Elf_Shdr *sechdrs)
1175{
1176}
1177
1178static inline void remove_sect_attrs(struct module *mod)
1179{
1180}
Roland McGrath6d760132007-10-16 23:26:40 -07001181
1182static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1183 char *sectstrings, Elf_Shdr *sechdrs)
1184{
1185}
1186
1187static inline void remove_notes_attrs(struct module *mod)
1188{
1189}
Kay Sievers120fc3d2008-02-21 00:33:20 +01001190#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Randy Dunlapef665c12007-02-13 15:19:06 -08001192#ifdef CONFIG_SYSFS
1193int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001194{
1195 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001196 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001197 int error = 0;
1198 int i;
1199
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001200 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1201 (ARRAY_SIZE(modinfo_attrs) + 1)),
1202 GFP_KERNEL);
1203 if (!mod->modinfo_attrs)
1204 return -ENOMEM;
1205
1206 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001207 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1208 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001209 (attr->test && attr->test(mod))) {
1210 memcpy(temp_attr, attr, sizeof(*temp_attr));
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001211 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1212 ++temp_attr;
1213 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001214 }
1215 return error;
1216}
1217
Randy Dunlapef665c12007-02-13 15:19:06 -08001218void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001219{
1220 struct module_attribute *attr;
1221 int i;
1222
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001223 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1224 /* pick a field to test for end of list */
1225 if (!attr->attr.name)
1226 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001227 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001228 if (attr->free)
1229 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001230 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001231 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001232}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Randy Dunlapef665c12007-02-13 15:19:06 -08001234int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
1236 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001237 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001239 if (!module_sysfs_initialized) {
1240 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001241 mod->name);
1242 err = -EINVAL;
1243 goto out;
1244 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001245
1246 kobj = kset_find_obj(module_kset, mod->name);
1247 if (kobj) {
1248 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1249 kobject_put(kobj);
1250 err = -EINVAL;
1251 goto out;
1252 }
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001255
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001256 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1257 mod->mkobj.kobj.kset = module_kset;
1258 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1259 "%s", mod->name);
1260 if (err)
1261 kobject_put(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001262
Kay Sievers97c146e2007-11-29 23:46:11 +01001263 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001264out:
1265 return err;
1266}
1267
Randy Dunlapef665c12007-02-13 15:19:06 -08001268int mod_sysfs_setup(struct module *mod,
Kay Sievers270a6c42007-01-18 13:26:15 +01001269 struct kernel_param *kparam,
1270 unsigned int num_params)
1271{
1272 int err;
1273
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001274 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001275 if (!mod->holders_dir) {
1276 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001277 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001278 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 err = module_param_sysfs_setup(mod, kparam, num_params);
1281 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001282 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Matt Domschc988d2b2005-06-23 22:05:15 -07001284 err = module_add_modinfo_attrs(mod);
1285 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001286 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001287
Kay Sieverse17e0f52006-11-24 12:15:25 +01001288 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 return 0;
1290
Kay Sieverse17e0f52006-11-24 12:15:25 +01001291out_unreg_param:
1292 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001293out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001294 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001295out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001296 kobject_put(&mod->mkobj.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return err;
1298}
Randy Dunlapef665c12007-02-13 15:19:06 -08001299#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301static void mod_kobject_remove(struct module *mod)
1302{
Matt Domschc988d2b2005-06-23 22:05:15 -07001303 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001305 kobject_put(mod->mkobj.drivers_dir);
1306 kobject_put(mod->holders_dir);
1307 kobject_put(&mod->mkobj.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
1310/*
Rusty Russellbb9d3d52008-01-29 17:13:21 -05001311 * link the module with the whole machine is stopped with interrupts off
1312 * - this defends against kallsyms not taking locks
1313 */
1314static int __link_module(void *_mod)
1315{
1316 struct module *mod = _mod;
1317 list_add(&mod->list, &modules);
1318 return 0;
1319}
1320
1321/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 * unlink the module with the whole machine is stopped with interrupts off
1323 * - this defends against kallsyms not taking locks
1324 */
1325static int __unlink_module(void *_mod)
1326{
1327 struct module *mod = _mod;
1328 list_del(&mod->list);
1329 return 0;
1330}
1331
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001332/* Free a module, remove from lists, etc (must hold module_mutex). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333static void free_module(struct module *mod)
1334{
1335 /* Delete from various lists */
1336 stop_machine_run(__unlink_module, mod, NR_CPUS);
Roland McGrath6d760132007-10-16 23:26:40 -07001337 remove_notes_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 remove_sect_attrs(mod);
1339 mod_kobject_remove(mod);
1340
Jan Beulich4552d5d2006-06-26 13:57:28 +02001341 unwind_remove_table(mod->unwind_info, 0);
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 /* Arch-specific cleanup. */
1344 module_arch_cleanup(mod);
1345
1346 /* Module unload stuff */
1347 module_unload_free(mod);
1348
1349 /* This may be NULL, but that's OK */
1350 module_free(mod, mod->module_init);
1351 kfree(mod->args);
1352 if (mod->percpu)
1353 percpu_modfree(mod->percpu);
1354
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001355 /* Free lock-classes: */
1356 lockdep_free_key_range(mod->module_core, mod->core_size);
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /* Finally, free the core (containing the module structure) */
1359 module_free(mod, mod->module_core);
1360}
1361
1362void *__symbol_get(const char *symbol)
1363{
1364 struct module *owner;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001365 unsigned long value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 const unsigned long *crc;
1367
Rusty Russell24da1cb2007-07-15 23:41:46 -07001368 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 value = __find_symbol(symbol, &owner, &crc, 1);
Christoph Lameter88173502008-02-08 04:18:41 -08001370 if (IS_ERR_VALUE(value))
1371 value = 0;
1372 else if (strong_try_module_get(owner))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 value = 0;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001374 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 return (void *)value;
1377}
1378EXPORT_SYMBOL_GPL(__symbol_get);
1379
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001380/*
1381 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001382 * in the kernel or in some other module's exported symbol table.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001383 */
1384static int verify_export_symbols(struct module *mod)
1385{
1386 const char *name = NULL;
1387 unsigned long i, ret = 0;
1388 struct module *owner;
1389 const unsigned long *crc;
1390
1391 for (i = 0; i < mod->num_syms; i++)
Christoph Lameter88173502008-02-08 04:18:41 -08001392 if (!IS_ERR_VALUE(__find_symbol(mod->syms[i].name,
1393 &owner, &crc, 1))) {
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001394 name = mod->syms[i].name;
1395 ret = -ENOEXEC;
1396 goto dup;
1397 }
1398
1399 for (i = 0; i < mod->num_gpl_syms; i++)
Christoph Lameter88173502008-02-08 04:18:41 -08001400 if (!IS_ERR_VALUE(__find_symbol(mod->gpl_syms[i].name,
1401 &owner, &crc, 1))) {
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001402 name = mod->gpl_syms[i].name;
1403 ret = -ENOEXEC;
1404 goto dup;
1405 }
1406
1407dup:
1408 if (ret)
1409 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1410 mod->name, name, module_name(owner));
1411
1412 return ret;
1413}
1414
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001415/* Change all symbols so that st_value encodes the pointer directly. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416static int simplify_symbols(Elf_Shdr *sechdrs,
1417 unsigned int symindex,
1418 const char *strtab,
1419 unsigned int versindex,
1420 unsigned int pcpuindex,
1421 struct module *mod)
1422{
1423 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1424 unsigned long secbase;
1425 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1426 int ret = 0;
1427
1428 for (i = 1; i < n; i++) {
1429 switch (sym[i].st_shndx) {
1430 case SHN_COMMON:
1431 /* We compiled with -fno-common. These are not
1432 supposed to happen. */
1433 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1434 printk("%s: please compile with -fno-common\n",
1435 mod->name);
1436 ret = -ENOEXEC;
1437 break;
1438
1439 case SHN_ABS:
1440 /* Don't need to do anything */
1441 DEBUGP("Absolute symbol: 0x%08lx\n",
1442 (long)sym[i].st_value);
1443 break;
1444
1445 case SHN_UNDEF:
1446 sym[i].st_value
1447 = resolve_symbol(sechdrs, versindex,
1448 strtab + sym[i].st_name, mod);
1449
1450 /* Ok if resolved. */
Christoph Lameter88173502008-02-08 04:18:41 -08001451 if (!IS_ERR_VALUE(sym[i].st_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 break;
1453 /* Ok if weak. */
1454 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1455 break;
1456
1457 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1458 mod->name, strtab + sym[i].st_name);
1459 ret = -ENOENT;
1460 break;
1461
1462 default:
1463 /* Divert to percpu allocation if a percpu var. */
1464 if (sym[i].st_shndx == pcpuindex)
1465 secbase = (unsigned long)mod->percpu;
1466 else
1467 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1468 sym[i].st_value += secbase;
1469 break;
1470 }
1471 }
1472
1473 return ret;
1474}
1475
1476/* Update size with this section: return offset. */
1477static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1478{
1479 long ret;
1480
1481 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1482 *size = ret + sechdr->sh_size;
1483 return ret;
1484}
1485
1486/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1487 might -- code, read-only data, read-write data, small data. Tally
1488 sizes, and place the offsets into sh_entsize fields: high bit means it
1489 belongs in init. */
1490static void layout_sections(struct module *mod,
1491 const Elf_Ehdr *hdr,
1492 Elf_Shdr *sechdrs,
1493 const char *secstrings)
1494{
1495 static unsigned long const masks[][2] = {
1496 /* NOTE: all executable code must be the first section
1497 * in this array; otherwise modify the text_size
1498 * finder in the two loops below */
1499 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1500 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1501 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1502 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1503 };
1504 unsigned int m, i;
1505
1506 for (i = 0; i < hdr->e_shnum; i++)
1507 sechdrs[i].sh_entsize = ~0UL;
1508
1509 DEBUGP("Core section allocation order:\n");
1510 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1511 for (i = 0; i < hdr->e_shnum; ++i) {
1512 Elf_Shdr *s = &sechdrs[i];
1513
1514 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1515 || (s->sh_flags & masks[m][1])
1516 || s->sh_entsize != ~0UL
1517 || strncmp(secstrings + s->sh_name,
1518 ".init", 5) == 0)
1519 continue;
1520 s->sh_entsize = get_offset(&mod->core_size, s);
1521 DEBUGP("\t%s\n", secstrings + s->sh_name);
1522 }
1523 if (m == 0)
1524 mod->core_text_size = mod->core_size;
1525 }
1526
1527 DEBUGP("Init section allocation order:\n");
1528 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1529 for (i = 0; i < hdr->e_shnum; ++i) {
1530 Elf_Shdr *s = &sechdrs[i];
1531
1532 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1533 || (s->sh_flags & masks[m][1])
1534 || s->sh_entsize != ~0UL
1535 || strncmp(secstrings + s->sh_name,
1536 ".init", 5) != 0)
1537 continue;
1538 s->sh_entsize = (get_offset(&mod->init_size, s)
1539 | INIT_OFFSET_MASK);
1540 DEBUGP("\t%s\n", secstrings + s->sh_name);
1541 }
1542 if (m == 0)
1543 mod->init_text_size = mod->init_size;
1544 }
1545}
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547static void set_license(struct module *mod, const char *license)
1548{
1549 if (!license)
1550 license = "unspecified";
1551
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001552 if (!license_is_gpl_compatible(license)) {
1553 if (!(tainted & TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07001554 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001555 "kernel.\n", mod->name, license);
1556 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558}
1559
1560/* Parse tag=value strings from .modinfo section */
1561static char *next_string(char *string, unsigned long *secsize)
1562{
1563 /* Skip non-zero chars */
1564 while (string[0]) {
1565 string++;
1566 if ((*secsize)-- <= 1)
1567 return NULL;
1568 }
1569
1570 /* Skip any zero padding. */
1571 while (!string[0]) {
1572 string++;
1573 if ((*secsize)-- <= 1)
1574 return NULL;
1575 }
1576 return string;
1577}
1578
1579static char *get_modinfo(Elf_Shdr *sechdrs,
1580 unsigned int info,
1581 const char *tag)
1582{
1583 char *p;
1584 unsigned int taglen = strlen(tag);
1585 unsigned long size = sechdrs[info].sh_size;
1586
1587 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1588 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1589 return p + taglen + 1;
1590 }
1591 return NULL;
1592}
1593
Matt Domschc988d2b2005-06-23 22:05:15 -07001594static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1595 unsigned int infoindex)
1596{
1597 struct module_attribute *attr;
1598 int i;
1599
1600 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1601 if (attr->setup)
1602 attr->setup(mod,
1603 get_modinfo(sechdrs,
1604 infoindex,
1605 attr->attr.name));
1606 }
1607}
Matt Domschc988d2b2005-06-23 22:05:15 -07001608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609#ifdef CONFIG_KALLSYMS
Alexey Dobriyanea078902007-05-08 00:28:39 -07001610static int is_exported(const char *name, const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001612 if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1613 return 1;
1614 else
Jesper Juhlf867d2a2006-06-25 05:47:09 -07001615 if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return 1;
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001617 else
1618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
1621/* As per nm */
1622static char elf_type(const Elf_Sym *sym,
1623 Elf_Shdr *sechdrs,
1624 const char *secstrings,
1625 struct module *mod)
1626{
1627 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1628 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1629 return 'v';
1630 else
1631 return 'w';
1632 }
1633 if (sym->st_shndx == SHN_UNDEF)
1634 return 'U';
1635 if (sym->st_shndx == SHN_ABS)
1636 return 'a';
1637 if (sym->st_shndx >= SHN_LORESERVE)
1638 return '?';
1639 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1640 return 't';
1641 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1642 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1643 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1644 return 'r';
1645 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1646 return 'g';
1647 else
1648 return 'd';
1649 }
1650 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1651 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1652 return 's';
1653 else
1654 return 'b';
1655 }
1656 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1657 ".debug", strlen(".debug")) == 0)
1658 return 'n';
1659 return '?';
1660}
1661
1662static void add_kallsyms(struct module *mod,
1663 Elf_Shdr *sechdrs,
1664 unsigned int symindex,
1665 unsigned int strindex,
1666 const char *secstrings)
1667{
1668 unsigned int i;
1669
1670 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1671 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1672 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1673
1674 /* Set types up while we still have access to sections. */
1675 for (i = 0; i < mod->num_symtab; i++)
1676 mod->symtab[i].st_info
1677 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1678}
1679#else
1680static inline void add_kallsyms(struct module *mod,
1681 Elf_Shdr *sechdrs,
1682 unsigned int symindex,
1683 unsigned int strindex,
1684 const char *secstrings)
1685{
1686}
1687#endif /* CONFIG_KALLSYMS */
1688
1689/* Allocate and load the module: note that size of section 0 is always
1690 zero, and we rely on this for optional sections. */
1691static struct module *load_module(void __user *umod,
1692 unsigned long len,
1693 const char __user *uargs)
1694{
1695 Elf_Ehdr *hdr;
1696 Elf_Shdr *sechdrs;
1697 char *secstrings, *args, *modmagic, *strtab = NULL;
Andrew Morton84860f92006-06-28 04:26:46 -07001698 unsigned int i;
1699 unsigned int symindex = 0;
1700 unsigned int strindex = 0;
1701 unsigned int setupindex;
1702 unsigned int exindex;
1703 unsigned int exportindex;
1704 unsigned int modindex;
1705 unsigned int obsparmindex;
1706 unsigned int infoindex;
1707 unsigned int gplindex;
1708 unsigned int crcindex;
1709 unsigned int gplcrcindex;
1710 unsigned int versindex;
1711 unsigned int pcpuindex;
1712 unsigned int gplfutureindex;
1713 unsigned int gplfuturecrcindex;
1714 unsigned int unwindex = 0;
1715 unsigned int unusedindex;
1716 unsigned int unusedcrcindex;
1717 unsigned int unusedgplindex;
1718 unsigned int unusedgplcrcindex;
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001719 unsigned int markersindex;
1720 unsigned int markersstringsindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 struct module *mod;
1722 long err = 0;
1723 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1724 struct exception_table_entry *extable;
Thomas Koeller378bac82005-09-06 15:17:11 -07001725 mm_segment_t old_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1728 umod, len, uargs);
1729 if (len < sizeof(*hdr))
1730 return ERR_PTR(-ENOEXEC);
1731
1732 /* Suck in entire file: we'll want most of it. */
1733 /* vmalloc barfs on "unusual" numbers. Check here */
1734 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1735 return ERR_PTR(-ENOMEM);
1736 if (copy_from_user(hdr, umod, len) != 0) {
1737 err = -EFAULT;
1738 goto free_hdr;
1739 }
1740
1741 /* Sanity checks against insmoding binaries or wrong arch,
1742 weird elf version */
1743 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1744 || hdr->e_type != ET_REL
1745 || !elf_check_arch(hdr)
1746 || hdr->e_shentsize != sizeof(*sechdrs)) {
1747 err = -ENOEXEC;
1748 goto free_hdr;
1749 }
1750
1751 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1752 goto truncated;
1753
1754 /* Convenience variables */
1755 sechdrs = (void *)hdr + hdr->e_shoff;
1756 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1757 sechdrs[0].sh_addr = 0;
1758
1759 for (i = 1; i < hdr->e_shnum; i++) {
1760 if (sechdrs[i].sh_type != SHT_NOBITS
1761 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1762 goto truncated;
1763
1764 /* Mark all sections sh_addr with their address in the
1765 temporary image. */
1766 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1767
1768 /* Internal symbols and strings. */
1769 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1770 symindex = i;
1771 strindex = sechdrs[i].sh_link;
1772 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1773 }
1774#ifndef CONFIG_MODULE_UNLOAD
1775 /* Don't load .exit sections */
1776 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1777 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1778#endif
1779 }
1780
1781 modindex = find_sec(hdr, sechdrs, secstrings,
1782 ".gnu.linkonce.this_module");
1783 if (!modindex) {
1784 printk(KERN_WARNING "No module found in object\n");
1785 err = -ENOEXEC;
1786 goto free_hdr;
1787 }
1788 mod = (void *)sechdrs[modindex].sh_addr;
1789
1790 if (symindex == 0) {
1791 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1792 mod->name);
1793 err = -ENOEXEC;
1794 goto free_hdr;
1795 }
1796
1797 /* Optional sections */
1798 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1799 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001800 gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001801 unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
1802 unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1804 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001805 gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001806 unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
1807 unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1809 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1810 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1811 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1812 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1813 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
Jan Beulich4552d5d2006-06-26 13:57:28 +02001814#ifdef ARCH_UNWIND_SECTION_NAME
1815 unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
1816#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818 /* Don't keep modinfo section */
1819 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1820#ifdef CONFIG_KALLSYMS
1821 /* Keep symbol and string tables for decoding later. */
1822 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1823 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1824#endif
Jan Beulich4552d5d2006-06-26 13:57:28 +02001825 if (unwindex)
1826 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 /* Check module struct version now, before we try to use module. */
1829 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1830 err = -ENOEXEC;
1831 goto free_hdr;
1832 }
1833
1834 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1835 /* This is allowed: modprobe --force will invalidate it. */
1836 if (!modmagic) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001837 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1839 mod->name);
1840 } else if (!same_magic(modmagic, vermagic)) {
1841 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1842 mod->name, modmagic, vermagic);
1843 err = -ENOEXEC;
1844 goto free_hdr;
1845 }
1846
1847 /* Now copy in args */
Davi Arnaut24277dd2006-03-24 03:18:43 -08001848 args = strndup_user(uargs, ~0UL >> 1);
1849 if (IS_ERR(args)) {
1850 err = PTR_ERR(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 goto free_hdr;
1852 }
Andrew Morton8e08b752006-02-07 12:58:45 -08001853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (find_module(mod->name)) {
1855 err = -EEXIST;
1856 goto free_mod;
1857 }
1858
1859 mod->state = MODULE_STATE_COMING;
1860
1861 /* Allow arches to frob section contents and sizes. */
1862 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1863 if (err < 0)
1864 goto free_mod;
1865
1866 if (pcpuindex) {
1867 /* We have a special allocation for this section. */
1868 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
Rusty Russell842bbaa2005-08-01 21:11:47 -07001869 sechdrs[pcpuindex].sh_addralign,
1870 mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 if (!percpu) {
1872 err = -ENOMEM;
1873 goto free_mod;
1874 }
1875 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1876 mod->percpu = percpu;
1877 }
1878
1879 /* Determine total sizes, and put offsets in sh_entsize. For now
1880 this is done generically; there doesn't appear to be any
1881 special cases for the architectures. */
1882 layout_sections(mod, hdr, sechdrs, secstrings);
1883
1884 /* Do the allocs. */
1885 ptr = module_alloc(mod->core_size);
1886 if (!ptr) {
1887 err = -ENOMEM;
1888 goto free_percpu;
1889 }
1890 memset(ptr, 0, mod->core_size);
1891 mod->module_core = ptr;
1892
1893 ptr = module_alloc(mod->init_size);
1894 if (!ptr && mod->init_size) {
1895 err = -ENOMEM;
1896 goto free_core;
1897 }
1898 memset(ptr, 0, mod->init_size);
1899 mod->module_init = ptr;
1900
1901 /* Transfer each section which specifies SHF_ALLOC */
1902 DEBUGP("final section addresses:\n");
1903 for (i = 0; i < hdr->e_shnum; i++) {
1904 void *dest;
1905
1906 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1907 continue;
1908
1909 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1910 dest = mod->module_init
1911 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1912 else
1913 dest = mod->module_core + sechdrs[i].sh_entsize;
1914
1915 if (sechdrs[i].sh_type != SHT_NOBITS)
1916 memcpy(dest, (void *)sechdrs[i].sh_addr,
1917 sechdrs[i].sh_size);
1918 /* Update sh_addr to point to copy in image. */
1919 sechdrs[i].sh_addr = (unsigned long)dest;
1920 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1921 }
1922 /* Module has been moved. */
1923 mod = (void *)sechdrs[modindex].sh_addr;
1924
1925 /* Now we've moved module, initialize linked lists, etc. */
1926 module_unload_init(mod);
1927
Kay Sievers97c146e2007-11-29 23:46:11 +01001928 /* add kobject, so we can reference it. */
Akinobu Mitad58ae672007-10-16 23:30:27 -07001929 err = mod_sysfs_init(mod);
1930 if (err)
Kay Sievers97c146e2007-11-29 23:46:11 +01001931 goto free_unload;
Kay Sievers270a6c42007-01-18 13:26:15 +01001932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 /* Set up license info based on the info section */
1934 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1935
Pavel Roskin9b37ccf2008-02-28 17:11:02 -05001936 /*
1937 * ndiswrapper is under GPL by itself, but loads proprietary modules.
1938 * Don't use add_taint_module(), as it would prevent ndiswrapper from
1939 * using GPL-only symbols it needs.
1940 */
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001941 if (strcmp(mod->name, "ndiswrapper") == 0)
Pavel Roskin9b37ccf2008-02-28 17:11:02 -05001942 add_taint(TAINT_PROPRIETARY_MODULE);
1943
1944 /* driverloader was caught wrongly pretending to be under GPL */
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001945 if (strcmp(mod->name, "driverloader") == 0)
1946 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Dave Jones9841d61d2006-01-08 01:03:41 -08001947
Matt Domschc988d2b2005-06-23 22:05:15 -07001948 /* Set up MODINFO_ATTR fields */
1949 setup_modinfo(mod, sechdrs, infoindex);
Matt Domschc988d2b2005-06-23 22:05:15 -07001950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 /* Fix up syms, so that st_value is a pointer to location. */
1952 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1953 mod);
1954 if (err < 0)
1955 goto cleanup;
1956
1957 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1958 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1959 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1960 if (crcindex)
1961 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1962 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1963 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1964 if (gplcrcindex)
1965 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001966 mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
1967 sizeof(*mod->gpl_future_syms);
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001968 mod->num_unused_syms = sechdrs[unusedindex].sh_size /
1969 sizeof(*mod->unused_syms);
1970 mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
1971 sizeof(*mod->unused_gpl_syms);
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001972 mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
1973 if (gplfuturecrcindex)
1974 mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001976 mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
1977 if (unusedcrcindex)
1978 mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
1979 mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
1980 if (unusedgplcrcindex)
1981 mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983#ifdef CONFIG_MODVERSIONS
Daniel Walker22a8bde2007-10-18 03:06:07 -07001984 if ((mod->num_syms && !crcindex) ||
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001985 (mod->num_gpl_syms && !gplcrcindex) ||
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001986 (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
1987 (mod->num_unused_syms && !unusedcrcindex) ||
1988 (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 printk(KERN_WARNING "%s: No versions for exported symbols."
1990 " Tainting kernel.\n", mod->name);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001991 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
1993#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001994 markersindex = find_sec(hdr, sechdrs, secstrings, "__markers");
1995 markersstringsindex = find_sec(hdr, sechdrs, secstrings,
1996 "__markers_strings");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* Now do relocations. */
1999 for (i = 1; i < hdr->e_shnum; i++) {
2000 const char *strtab = (char *)sechdrs[strindex].sh_addr;
2001 unsigned int info = sechdrs[i].sh_info;
2002
2003 /* Not a valid relocation section? */
2004 if (info >= hdr->e_shnum)
2005 continue;
2006
2007 /* Don't bother with non-allocated sections */
2008 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
2009 continue;
2010
2011 if (sechdrs[i].sh_type == SHT_REL)
2012 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
2013 else if (sechdrs[i].sh_type == SHT_RELA)
2014 err = apply_relocate_add(sechdrs, strtab, symindex, i,
2015 mod);
2016 if (err < 0)
2017 goto cleanup;
2018 }
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002019#ifdef CONFIG_MARKERS
2020 mod->markers = (void *)sechdrs[markersindex].sh_addr;
2021 mod->num_markers =
2022 sechdrs[markersindex].sh_size / sizeof(*mod->markers);
2023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002025 /* Find duplicate symbols */
2026 err = verify_export_symbols(mod);
2027
2028 if (err < 0)
2029 goto cleanup;
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 /* Set up and sort exception table */
2032 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
2033 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
2034 sort_extable(extable, extable + mod->num_exentries);
2035
2036 /* Finally, copy percpu area over. */
2037 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
2038 sechdrs[pcpuindex].sh_size);
2039
2040 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
2041
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002042#ifdef CONFIG_MARKERS
2043 if (!mod->taints)
2044 marker_update_probe_range(mod->markers,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -08002045 mod->markers + mod->num_markers);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002046#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 err = module_finalize(hdr, sechdrs, mod);
2048 if (err < 0)
2049 goto cleanup;
2050
Thomas Koeller378bac82005-09-06 15:17:11 -07002051 /* flush the icache in correct context */
2052 old_fs = get_fs();
2053 set_fs(KERNEL_DS);
2054
2055 /*
2056 * Flush the instruction cache, since we've played with text.
2057 * Do it before processing of module parameters, so the module
2058 * can provide parameter accessor functions of its own.
2059 */
2060 if (mod->module_init)
2061 flush_icache_range((unsigned long)mod->module_init,
2062 (unsigned long)mod->module_init
2063 + mod->init_size);
2064 flush_icache_range((unsigned long)mod->module_core,
2065 (unsigned long)mod->module_core + mod->core_size);
2066
2067 set_fs(old_fs);
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 mod->args = args;
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002070 if (obsparmindex)
2071 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2072 mod->name);
2073
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002074 /* Now sew it into the lists so we can get lockdep and oops
2075 * info during argument parsing. Noone should access us, since
2076 * strong_try_module_get() will fail. */
2077 stop_machine_run(__link_module, mod, NR_CPUS);
2078
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002079 /* Size of section 0 is 0, so this works well if no params */
2080 err = parse_args(mod->name, mod->args,
2081 (struct kernel_param *)
2082 sechdrs[setupindex].sh_addr,
2083 sechdrs[setupindex].sh_size
2084 / sizeof(struct kernel_param),
2085 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002087 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Daniel Walker22a8bde2007-10-18 03:06:07 -07002089 err = mod_sysfs_setup(mod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 (struct kernel_param *)
2091 sechdrs[setupindex].sh_addr,
2092 sechdrs[setupindex].sh_size
2093 / sizeof(struct kernel_param));
2094 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002095 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Roland McGrath6d760132007-10-16 23:26:40 -07002097 add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Jan Beulich4552d5d2006-06-26 13:57:28 +02002099 /* Size of section 0 is 0, so this works well if no unwind info. */
2100 mod->unwind_info = unwind_add_table(mod,
Daniel Walker22a8bde2007-10-18 03:06:07 -07002101 (void *)sechdrs[unwindex].sh_addr,
2102 sechdrs[unwindex].sh_size);
Jan Beulich4552d5d2006-06-26 13:57:28 +02002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 /* Get rid of temporary copy */
2105 vfree(hdr);
2106
2107 /* Done! */
2108 return mod;
2109
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002110 unlink:
2111 stop_machine_run(__unlink_module, mod, NR_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 module_arch_cleanup(mod);
2113 cleanup:
Kay Sievers97c146e2007-11-29 23:46:11 +01002114 kobject_del(&mod->mkobj.kobj);
2115 kobject_put(&mod->mkobj.kobj);
2116 free_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 module_unload_free(mod);
2118 module_free(mod, mod->module_init);
2119 free_core:
2120 module_free(mod, mod->module_core);
2121 free_percpu:
2122 if (percpu)
2123 percpu_modfree(percpu);
2124 free_mod:
2125 kfree(args);
2126 free_hdr:
2127 vfree(hdr);
Jayachandran C6fe2e702006-01-06 00:19:54 -08002128 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 truncated:
2131 printk(KERN_ERR "Module len %lu truncated\n", len);
2132 err = -ENOEXEC;
2133 goto free_hdr;
2134}
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136/* This is where the real work happens */
2137asmlinkage long
2138sys_init_module(void __user *umod,
2139 unsigned long len,
2140 const char __user *uargs)
2141{
2142 struct module *mod;
2143 int ret = 0;
2144
2145 /* Must have permission */
2146 if (!capable(CAP_SYS_MODULE))
2147 return -EPERM;
2148
2149 /* Only one module load at a time, please */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002150 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return -EINTR;
2152
2153 /* Do all the hard work */
2154 mod = load_module(umod, len, uargs);
2155 if (IS_ERR(mod)) {
Ashutosh Naik6389a382006-03-23 03:00:46 -08002156 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 return PTR_ERR(mod);
2158 }
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 /* Drop lock so they can recurse */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002161 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Alan Sterne041c682006-03-27 01:16:30 -08002163 blocking_notifier_call_chain(&module_notify_list,
2164 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166 /* Start the module */
2167 if (mod->init != NULL)
2168 ret = mod->init();
2169 if (ret < 0) {
2170 /* Init routine failed: abort. Try to protect us from
2171 buggy refcounters. */
2172 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002173 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002174 module_put(mod);
2175 mutex_lock(&module_mutex);
2176 free_module(mod);
2177 mutex_unlock(&module_mutex);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05002178 wake_up(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return ret;
2180 }
2181
Rusty Russell6c5db222008-03-10 11:43:52 -07002182 /* Now it's a first class citizen! Wake up anyone waiting for it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 mod->state = MODULE_STATE_LIVE;
Rusty Russell6c5db222008-03-10 11:43:52 -07002184 wake_up(&module_wq);
2185
2186 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 /* Drop initial reference. */
2188 module_put(mod);
Jan Beulich4552d5d2006-06-26 13:57:28 +02002189 unwind_remove_table(mod->unwind_info, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 module_free(mod, mod->module_init);
2191 mod->module_init = NULL;
2192 mod->init_size = 0;
2193 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08002194 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 return 0;
2197}
2198
2199static inline int within(unsigned long addr, void *start, unsigned long size)
2200{
2201 return ((void *)addr >= start && (void *)addr < start + size);
2202}
2203
2204#ifdef CONFIG_KALLSYMS
2205/*
2206 * This ignores the intensely annoying "mapping symbols" found
2207 * in ARM ELF files: $a, $t and $d.
2208 */
2209static inline int is_arm_mapping_symbol(const char *str)
2210{
Daniel Walker22a8bde2007-10-18 03:06:07 -07002211 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 && (str[2] == '\0' || str[2] == '.');
2213}
2214
2215static const char *get_ksymbol(struct module *mod,
2216 unsigned long addr,
2217 unsigned long *size,
2218 unsigned long *offset)
2219{
2220 unsigned int i, best = 0;
2221 unsigned long nextval;
2222
2223 /* At worse, next value is at end of module */
2224 if (within(addr, mod->module_init, mod->init_size))
2225 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002226 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2228
2229 /* Scan for closest preceeding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07002230 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 for (i = 1; i < mod->num_symtab; i++) {
2232 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2233 continue;
2234
2235 /* We ignore unnamed symbols: they're uninformative
2236 * and inserted at a whim. */
2237 if (mod->symtab[i].st_value <= addr
2238 && mod->symtab[i].st_value > mod->symtab[best].st_value
2239 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2240 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2241 best = i;
2242 if (mod->symtab[i].st_value > addr
2243 && mod->symtab[i].st_value < nextval
2244 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2245 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2246 nextval = mod->symtab[i].st_value;
2247 }
2248
2249 if (!best)
2250 return NULL;
2251
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002252 if (size)
2253 *size = nextval - mod->symtab[best].st_value;
2254 if (offset)
2255 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 return mod->strtab + mod->symtab[best].st_name;
2257}
2258
Rusty Russell6dd06c92008-01-29 17:13:22 -05002259/* For kallsyms to ask for address resolution. NULL means not found. Careful
2260 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002261const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05002262 unsigned long *size,
2263 unsigned long *offset,
2264 char **modname,
2265 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
2267 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002268 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Rusty Russellcb2a5202008-01-14 00:55:03 -08002270 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 list_for_each_entry(mod, &modules, list) {
2272 if (within(addr, mod->module_init, mod->init_size)
2273 || within(addr, mod->module_core, mod->core_size)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07002274 if (modname)
2275 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002276 ret = get_ksymbol(mod, addr, size, offset);
2277 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 }
2279 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05002280 /* Make a copy in here where it's safe */
2281 if (ret) {
2282 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2283 ret = namebuf;
2284 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002285 preempt_enable();
Andrew Morton92dfc9d2008-02-08 04:18:43 -08002286 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287}
2288
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002289int lookup_module_symbol_name(unsigned long addr, char *symname)
2290{
2291 struct module *mod;
2292
Rusty Russellcb2a5202008-01-14 00:55:03 -08002293 preempt_disable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002294 list_for_each_entry(mod, &modules, list) {
2295 if (within(addr, mod->module_init, mod->init_size) ||
2296 within(addr, mod->module_core, mod->core_size)) {
2297 const char *sym;
2298
2299 sym = get_ksymbol(mod, addr, NULL, NULL);
2300 if (!sym)
2301 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07002302 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002303 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002304 return 0;
2305 }
2306 }
2307out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002308 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002309 return -ERANGE;
2310}
2311
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002312int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2313 unsigned long *offset, char *modname, char *name)
2314{
2315 struct module *mod;
2316
Rusty Russellcb2a5202008-01-14 00:55:03 -08002317 preempt_disable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002318 list_for_each_entry(mod, &modules, list) {
2319 if (within(addr, mod->module_init, mod->init_size) ||
2320 within(addr, mod->module_core, mod->core_size)) {
2321 const char *sym;
2322
2323 sym = get_ksymbol(mod, addr, size, offset);
2324 if (!sym)
2325 goto out;
2326 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07002327 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002328 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07002329 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002330 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002331 return 0;
2332 }
2333 }
2334out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002335 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002336 return -ERANGE;
2337}
2338
Alexey Dobriyanea078902007-05-08 00:28:39 -07002339int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2340 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
2342 struct module *mod;
2343
Rusty Russellcb2a5202008-01-14 00:55:03 -08002344 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 list_for_each_entry(mod, &modules, list) {
2346 if (symnum < mod->num_symtab) {
2347 *value = mod->symtab[symnum].st_value;
2348 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07002349 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07002350 KSYM_NAME_LEN);
2351 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Alexey Dobriyanea078902007-05-08 00:28:39 -07002352 *exported = is_exported(name, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002353 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 }
2356 symnum -= mod->num_symtab;
2357 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002358 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002359 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360}
2361
2362static unsigned long mod_find_symname(struct module *mod, const char *name)
2363{
2364 unsigned int i;
2365
2366 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002367 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2368 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 return mod->symtab[i].st_value;
2370 return 0;
2371}
2372
2373/* Look for this name: can be of form module:name. */
2374unsigned long module_kallsyms_lookup_name(const char *name)
2375{
2376 struct module *mod;
2377 char *colon;
2378 unsigned long ret = 0;
2379
2380 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002381 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 if ((colon = strchr(name, ':')) != NULL) {
2383 *colon = '\0';
2384 if ((mod = find_module(name)) != NULL)
2385 ret = mod_find_symname(mod, colon+1);
2386 *colon = ':';
2387 } else {
2388 list_for_each_entry(mod, &modules, list)
2389 if ((ret = mod_find_symname(mod, name)) != 0)
2390 break;
2391 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002392 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return ret;
2394}
2395#endif /* CONFIG_KALLSYMS */
2396
2397/* Called by the /proc file system to return a list of modules. */
2398static void *m_start(struct seq_file *m, loff_t *pos)
2399{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002400 mutex_lock(&module_mutex);
Pavel Emelianov708f4b52007-07-15 23:39:54 -07002401 return seq_list_start(&modules, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
2403
2404static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2405{
Pavel Emelianov708f4b52007-07-15 23:39:54 -07002406 return seq_list_next(p, &modules, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407}
2408
2409static void m_stop(struct seq_file *m, void *p)
2410{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002411 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412}
2413
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002414static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002415{
2416 int bx = 0;
2417
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002418 if (mod->taints ||
2419 mod->state == MODULE_STATE_GOING ||
2420 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002421 buf[bx++] = '(';
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002422 if (mod->taints & TAINT_PROPRIETARY_MODULE)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002423 buf[bx++] = 'P';
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002424 if (mod->taints & TAINT_FORCED_MODULE)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002425 buf[bx++] = 'F';
2426 /*
2427 * TAINT_FORCED_RMMOD: could be added.
2428 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2429 * apply to modules.
2430 */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002431
2432 /* Show a - for module-is-being-unloaded */
2433 if (mod->state == MODULE_STATE_GOING)
2434 buf[bx++] = '-';
2435 /* Show a + for module-is-being-loaded */
2436 if (mod->state == MODULE_STATE_COMING)
2437 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002438 buf[bx++] = ')';
2439 }
2440 buf[bx] = '\0';
2441
2442 return buf;
2443}
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445static int m_show(struct seq_file *m, void *p)
2446{
2447 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002448 char buf[8];
2449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 seq_printf(m, "%s %lu",
2451 mod->name, mod->init_size + mod->core_size);
2452 print_unload_info(m, mod);
2453
2454 /* Informative for users. */
2455 seq_printf(m, " %s",
2456 mod->state == MODULE_STATE_GOING ? "Unloading":
2457 mod->state == MODULE_STATE_COMING ? "Loading":
2458 "Live");
2459 /* Used by oprofile and other similar tools. */
2460 seq_printf(m, " 0x%p", mod->module_core);
2461
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002462 /* Taints info */
2463 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002464 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 seq_printf(m, "\n");
2467 return 0;
2468}
2469
2470/* Format: modulename size refcount deps address
2471
2472 Where refcount is a number or -, and deps is a comma-separated list
2473 of depends or -.
2474*/
Helge Deller15ad7cd2006-12-06 20:40:36 -08002475const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 .start = m_start,
2477 .next = m_next,
2478 .stop = m_stop,
2479 .show = m_show
2480};
2481
2482/* Given an address, look for it in the module exception tables. */
2483const struct exception_table_entry *search_module_extables(unsigned long addr)
2484{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 const struct exception_table_entry *e = NULL;
2486 struct module *mod;
2487
Rusty Russell24da1cb2007-07-15 23:41:46 -07002488 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 list_for_each_entry(mod, &modules, list) {
2490 if (mod->num_exentries == 0)
2491 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 e = search_extable(mod->extable,
2494 mod->extable + mod->num_exentries - 1,
2495 addr);
2496 if (e)
2497 break;
2498 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07002499 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
2501 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07002502 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 return e;
2504}
2505
Ingo Molnar4d435f92006-07-03 00:24:24 -07002506/*
2507 * Is this a valid module address?
2508 */
2509int is_module_address(unsigned long addr)
2510{
Ingo Molnar4d435f92006-07-03 00:24:24 -07002511 struct module *mod;
2512
Rusty Russell24da1cb2007-07-15 23:41:46 -07002513 preempt_disable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002514
2515 list_for_each_entry(mod, &modules, list) {
2516 if (within(addr, mod->module_core, mod->core_size)) {
Rusty Russell24da1cb2007-07-15 23:41:46 -07002517 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002518 return 1;
2519 }
2520 }
2521
Rusty Russell24da1cb2007-07-15 23:41:46 -07002522 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002523
2524 return 0;
2525}
2526
2527
Rusty Russell24da1cb2007-07-15 23:41:46 -07002528/* Is this a valid kernel address? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529struct module *__module_text_address(unsigned long addr)
2530{
2531 struct module *mod;
2532
2533 list_for_each_entry(mod, &modules, list)
2534 if (within(addr, mod->module_init, mod->init_text_size)
2535 || within(addr, mod->module_core, mod->core_text_size))
2536 return mod;
2537 return NULL;
2538}
2539
2540struct module *module_text_address(unsigned long addr)
2541{
2542 struct module *mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Rusty Russell24da1cb2007-07-15 23:41:46 -07002544 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 mod = __module_text_address(addr);
Rusty Russell24da1cb2007-07-15 23:41:46 -07002546 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548 return mod;
2549}
2550
2551/* Don't grab lock, we're oopsing. */
2552void print_modules(void)
2553{
2554 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07002555 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
2557 printk("Modules linked in:");
2558 list_for_each_entry(mod, &modules, list)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002559 printk(" %s%s", mod->name, module_flags(mod, buf));
Arjan van de Vene14af7e2008-01-25 21:08:33 +01002560 if (last_unloaded_module[0])
2561 printk(" [last unloaded: %s]", last_unloaded_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 printk("\n");
2563}
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565#ifdef CONFIG_MODVERSIONS
2566/* Generate the signature for struct module here, too, for modversions. */
2567void struct_module(struct module *mod) { return; }
2568EXPORT_SYMBOL(struct_module);
2569#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002570
2571#ifdef CONFIG_MARKERS
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -08002572void module_update_markers(void)
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002573{
2574 struct module *mod;
2575
2576 mutex_lock(&module_mutex);
2577 list_for_each_entry(mod, &modules, list)
2578 if (!mod->taints)
2579 marker_update_probe_range(mod->markers,
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -08002580 mod->markers + mod->num_markers);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002581 mutex_unlock(&module_mutex);
2582}
2583#endif