blob: f6a4e721fd4907339dfbbca63d5081244697973f [file] [log] [blame]
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (C) 2002 Richard Henderson
3 Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/moduleloader.h>
21#include <linux/init.h>
Alexey Dobriyanae84e322007-05-08 00:28:38 -070022#include <linux/kallsyms.h>
Roland McGrath6d760132007-10-16 23:26:40 -070023#include <linux/sysfs.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070024#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/slab.h>
26#include <linux/vmalloc.h>
27#include <linux/elf.h>
28#include <linux/seq_file.h>
29#include <linux/syscalls.h>
30#include <linux/fcntl.h>
31#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080032#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/cpu.h>
34#include <linux/moduleparam.h>
35#include <linux/errno.h>
36#include <linux/err.h>
37#include <linux/vermagic.h>
38#include <linux/notifier.h>
Al Virof6a57032006-10-18 01:47:25 -040039#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/stop_machine.h>
41#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070042#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080043#include <linux/mutex.h>
Jan Beulich4552d5d2006-06-26 13:57:28 +020044#include <linux/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/uaccess.h>
46#include <asm/semaphore.h>
47#include <asm/cacheflush.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020048#include <linux/license.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#if 0
51#define DEBUGP printk
52#else
53#define DEBUGP(fmt , a...)
54#endif
55
56#ifndef ARCH_SHF_SMALL
57#define ARCH_SHF_SMALL 0
58#endif
59
60/* If this is set, the section belongs in the init part of the module */
61#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
62
Rusty Russell24da1cb2007-07-15 23:41:46 -070063/* List of modules, protected by module_mutex or preempt_disable
64 * (add/delete uses stop_machine). */
Ashutosh Naik6389a382006-03-23 03:00:46 -080065static DEFINE_MUTEX(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static LIST_HEAD(modules);
67
Rusty Russellc9a3ba52008-01-29 17:13:18 -050068/* Waiting for a module to finish initializing? */
69static DECLARE_WAIT_QUEUE_HEAD(module_wq);
70
Alan Sterne041c682006-03-27 01:16:30 -080071static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73int register_module_notifier(struct notifier_block * nb)
74{
Alan Sterne041c682006-03-27 01:16:30 -080075 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77EXPORT_SYMBOL(register_module_notifier);
78
79int unregister_module_notifier(struct notifier_block * nb)
80{
Alan Sterne041c682006-03-27 01:16:30 -080081 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83EXPORT_SYMBOL(unregister_module_notifier);
84
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -080085/* We require a truly strong try_module_get(): 0 means failure due to
86 ongoing or failed initialization etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static inline int strong_try_module_get(struct module *mod)
88{
89 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -050090 return -EBUSY;
91 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -050093 else
94 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Florin Malitafa3ba2e82006-10-11 01:21:48 -070097static inline void add_taint_module(struct module *mod, unsigned flag)
98{
99 add_taint(flag);
100 mod->taints |= flag;
101}
102
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200103/*
104 * A thread that wants to hold a reference to a module only while it
105 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
107void __module_put_and_exit(struct module *mod, long code)
108{
109 module_put(mod);
110 do_exit(code);
111}
112EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* Find a module section: 0 means not found. */
115static unsigned int find_sec(Elf_Ehdr *hdr,
116 Elf_Shdr *sechdrs,
117 const char *secstrings,
118 const char *name)
119{
120 unsigned int i;
121
122 for (i = 1; i < hdr->e_shnum; i++)
123 /* Alloc bit cleared means "ignore it." */
124 if ((sechdrs[i].sh_flags & SHF_ALLOC)
125 && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
126 return i;
127 return 0;
128}
129
130/* Provided by the linker */
131extern const struct kernel_symbol __start___ksymtab[];
132extern const struct kernel_symbol __stop___ksymtab[];
133extern const struct kernel_symbol __start___ksymtab_gpl[];
134extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800135extern const struct kernel_symbol __start___ksymtab_gpl_future[];
136extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700137extern const struct kernel_symbol __start___ksymtab_unused[];
138extern const struct kernel_symbol __stop___ksymtab_unused[];
139extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
140extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
141extern const struct kernel_symbol __start___ksymtab_gpl_future[];
142extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143extern const unsigned long __start___kcrctab[];
144extern const unsigned long __start___kcrctab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800145extern const unsigned long __start___kcrctab_gpl_future[];
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700146extern const unsigned long __start___kcrctab_unused[];
147extern const unsigned long __start___kcrctab_unused_gpl[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149#ifndef CONFIG_MODVERSIONS
150#define symversion(base, idx) NULL
151#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800152#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#endif
154
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100155/* lookup symbol in given range of kernel_symbols */
156static const struct kernel_symbol *lookup_symbol(const char *name,
157 const struct kernel_symbol *start,
158 const struct kernel_symbol *stop)
159{
160 const struct kernel_symbol *ks = start;
161 for (; ks < stop; ks++)
162 if (strcmp(ks->name, name) == 0)
163 return ks;
164 return NULL;
165}
166
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700167static void printk_unused_warning(const char *name)
168{
169 printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
170 "however this module is using it.\n", name);
171 printk(KERN_WARNING "This symbol will go away in the future.\n");
172 printk(KERN_WARNING "Please evalute if this is the right api to use, "
173 "and if it really is, submit a report the linux kernel "
174 "mailinglist together with submitting your code for "
175 "inclusion.\n");
176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/* Find a symbol, return value, crc and module which owns it */
179static unsigned long __find_symbol(const char *name,
180 struct module **owner,
181 const unsigned long **crc,
182 int gplok)
183{
184 struct module *mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100185 const struct kernel_symbol *ks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Daniel Walker22a8bde2007-10-18 03:06:07 -0700187 /* Core kernel first. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 *owner = NULL;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100189 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
190 if (ks) {
191 *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
192 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100195 ks = lookup_symbol(name, __start___ksymtab_gpl,
196 __stop___ksymtab_gpl);
197 if (ks) {
198 *crc = symversion(__start___kcrctab_gpl,
199 (ks - __start___ksymtab_gpl));
200 return ks->value;
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800203 ks = lookup_symbol(name, __start___ksymtab_gpl_future,
204 __stop___ksymtab_gpl_future);
205 if (ks) {
206 if (!gplok) {
207 printk(KERN_WARNING "Symbol %s is being used "
208 "by a non-GPL module, which will not "
209 "be allowed in the future\n", name);
210 printk(KERN_WARNING "Please see the file "
211 "Documentation/feature-removal-schedule.txt "
212 "in the kernel source tree for more "
213 "details.\n");
214 }
215 *crc = symversion(__start___kcrctab_gpl_future,
216 (ks - __start___ksymtab_gpl_future));
217 return ks->value;
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700220 ks = lookup_symbol(name, __start___ksymtab_unused,
221 __stop___ksymtab_unused);
222 if (ks) {
223 printk_unused_warning(name);
224 *crc = symversion(__start___kcrctab_unused,
225 (ks - __start___ksymtab_unused));
226 return ks->value;
227 }
228
229 if (gplok)
230 ks = lookup_symbol(name, __start___ksymtab_unused_gpl,
231 __stop___ksymtab_unused_gpl);
232 if (ks) {
233 printk_unused_warning(name);
234 *crc = symversion(__start___kcrctab_unused_gpl,
235 (ks - __start___ksymtab_unused_gpl));
236 return ks->value;
237 }
238
Daniel Walker22a8bde2007-10-18 03:06:07 -0700239 /* Now try modules. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 list_for_each_entry(mod, &modules, list) {
241 *owner = mod;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100242 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
243 if (ks) {
244 *crc = symversion(mod->crcs, (ks - mod->syms));
245 return ks->value;
246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (gplok) {
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100249 ks = lookup_symbol(name, mod->gpl_syms,
250 mod->gpl_syms + mod->num_gpl_syms);
251 if (ks) {
252 *crc = symversion(mod->gpl_crcs,
253 (ks - mod->gpl_syms));
254 return ks->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256 }
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700257 ks = lookup_symbol(name, mod->unused_syms, mod->unused_syms + mod->num_unused_syms);
258 if (ks) {
259 printk_unused_warning(name);
260 *crc = symversion(mod->unused_crcs, (ks - mod->unused_syms));
261 return ks->value;
262 }
263
264 if (gplok) {
265 ks = lookup_symbol(name, mod->unused_gpl_syms,
266 mod->unused_gpl_syms + mod->num_unused_gpl_syms);
267 if (ks) {
268 printk_unused_warning(name);
269 *crc = symversion(mod->unused_gpl_crcs,
270 (ks - mod->unused_gpl_syms));
271 return ks->value;
272 }
273 }
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800274 ks = lookup_symbol(name, mod->gpl_future_syms,
275 (mod->gpl_future_syms +
276 mod->num_gpl_future_syms));
277 if (ks) {
278 if (!gplok) {
279 printk(KERN_WARNING "Symbol %s is being used "
280 "by a non-GPL module, which will not "
281 "be allowed in the future\n", name);
282 printk(KERN_WARNING "Please see the file "
283 "Documentation/feature-removal-schedule.txt "
284 "in the kernel source tree for more "
285 "details.\n");
286 }
287 *crc = symversion(mod->gpl_future_crcs,
288 (ks - mod->gpl_future_syms));
289 return ks->value;
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 DEBUGP("Failed to find symbol %s\n", name);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/* Search for module by name: must hold module_mutex. */
297static struct module *find_module(const char *name)
298{
299 struct module *mod;
300
301 list_for_each_entry(mod, &modules, list) {
302 if (strcmp(mod->name, name) == 0)
303 return mod;
304 }
305 return NULL;
306}
307
308#ifdef CONFIG_SMP
309/* Number of blocks used and allocated. */
310static unsigned int pcpu_num_used, pcpu_num_allocated;
311/* Size of each block. -ve means used. */
312static int *pcpu_size;
313
314static int split_block(unsigned int i, unsigned short size)
315{
316 /* Reallocation required? */
317 if (pcpu_num_used + 1 > pcpu_num_allocated) {
Pekka Enberg6d4f9c52007-05-08 00:24:58 -0700318 int *new;
319
320 new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
321 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (!new)
323 return 0;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 pcpu_num_allocated *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 pcpu_size = new;
327 }
328
329 /* Insert a new subblock */
330 memmove(&pcpu_size[i+1], &pcpu_size[i],
331 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
332 pcpu_num_used++;
333
334 pcpu_size[i+1] -= size;
335 pcpu_size[i] = size;
336 return 1;
337}
338
339static inline unsigned int block_size(int val)
340{
341 if (val < 0)
342 return -val;
343 return val;
344}
345
346/* Created by linker magic */
347extern char __per_cpu_start[], __per_cpu_end[];
348
Rusty Russell842bbaa2005-08-01 21:11:47 -0700349static void *percpu_modalloc(unsigned long size, unsigned long align,
350 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 unsigned long extra;
353 unsigned int i;
354 void *ptr;
355
Jeremy Fitzhardingeb6e35902007-05-02 19:27:12 +0200356 if (align > PAGE_SIZE) {
357 printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
358 name, align, PAGE_SIZE);
359 align = PAGE_SIZE;
Rusty Russell842bbaa2005-08-01 21:11:47 -0700360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 ptr = __per_cpu_start;
363 for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
364 /* Extra for alignment requirement. */
365 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
366 BUG_ON(i == 0 && extra != 0);
367
368 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
369 continue;
370
371 /* Transfer extra to previous block. */
372 if (pcpu_size[i-1] < 0)
373 pcpu_size[i-1] -= extra;
374 else
375 pcpu_size[i-1] += extra;
376 pcpu_size[i] -= extra;
377 ptr += extra;
378
379 /* Split block if warranted */
380 if (pcpu_size[i] - size > sizeof(unsigned long))
381 if (!split_block(i, size))
382 return NULL;
383
384 /* Mark allocated */
385 pcpu_size[i] = -pcpu_size[i];
386 return ptr;
387 }
388
389 printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
390 size);
391 return NULL;
392}
393
394static void percpu_modfree(void *freeme)
395{
396 unsigned int i;
397 void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
398
399 /* First entry is core kernel percpu data. */
400 for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
401 if (ptr == freeme) {
402 pcpu_size[i] = -pcpu_size[i];
403 goto free;
404 }
405 }
406 BUG();
407
408 free:
409 /* Merge with previous? */
410 if (pcpu_size[i-1] >= 0) {
411 pcpu_size[i-1] += pcpu_size[i];
412 pcpu_num_used--;
413 memmove(&pcpu_size[i], &pcpu_size[i+1],
414 (pcpu_num_used - i) * sizeof(pcpu_size[0]));
415 i--;
416 }
417 /* Merge with next? */
418 if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
419 pcpu_size[i] += pcpu_size[i+1];
420 pcpu_num_used--;
421 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
422 (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
423 }
424}
425
426static unsigned int find_pcpusec(Elf_Ehdr *hdr,
427 Elf_Shdr *sechdrs,
428 const char *secstrings)
429{
430 return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
431}
432
433static int percpu_modinit(void)
434{
435 pcpu_num_used = 2;
436 pcpu_num_allocated = 2;
437 pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
438 GFP_KERNEL);
439 /* Static in-kernel percpu data (used). */
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +0200440 pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /* Free room. */
442 pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
443 if (pcpu_size[1] < 0) {
444 printk(KERN_ERR "No per-cpu room for modules.\n");
445 pcpu_num_used = 1;
446 }
447
448 return 0;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700449}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450__initcall(percpu_modinit);
451#else /* ... !CONFIG_SMP */
Rusty Russell842bbaa2005-08-01 21:11:47 -0700452static inline void *percpu_modalloc(unsigned long size, unsigned long align,
453 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 return NULL;
456}
457static inline void percpu_modfree(void *pcpuptr)
458{
459 BUG();
460}
461static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
462 Elf_Shdr *sechdrs,
463 const char *secstrings)
464{
465 return 0;
466}
467static inline void percpu_modcopy(void *pcpudst, const void *src,
468 unsigned long size)
469{
470 /* pcpusec should be 0, and size of that section should be 0. */
471 BUG_ON(size != 0);
472}
473#endif /* CONFIG_SMP */
474
Matt Domschc988d2b2005-06-23 22:05:15 -0700475#define MODINFO_ATTR(field) \
476static void setup_modinfo_##field(struct module *mod, const char *s) \
477{ \
478 mod->field = kstrdup(s, GFP_KERNEL); \
479} \
480static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
481 struct module *mod, char *buffer) \
482{ \
483 return sprintf(buffer, "%s\n", mod->field); \
484} \
485static int modinfo_##field##_exists(struct module *mod) \
486{ \
487 return mod->field != NULL; \
488} \
489static void free_modinfo_##field(struct module *mod) \
490{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700491 kfree(mod->field); \
492 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700493} \
494static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900495 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700496 .show = show_modinfo_##field, \
497 .setup = setup_modinfo_##field, \
498 .test = modinfo_##field##_exists, \
499 .free = free_modinfo_##field, \
500};
501
502MODINFO_ATTR(version);
503MODINFO_ATTR(srcversion);
504
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100505static char last_unloaded_module[MODULE_NAME_LEN+1];
506
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800507#ifdef CONFIG_MODULE_UNLOAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/* Init the unload section of the module. */
509static void module_unload_init(struct module *mod)
510{
511 unsigned int i;
512
513 INIT_LIST_HEAD(&mod->modules_which_use_me);
514 for (i = 0; i < NR_CPUS; i++)
515 local_set(&mod->ref[i].count, 0);
516 /* Hold reference count during initialization. */
Ingo Molnar39c715b2005-06-21 17:14:34 -0700517 local_set(&mod->ref[raw_smp_processor_id()].count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* Backwards compatibility macros put refcount during init. */
519 mod->waiter = current;
520}
521
522/* modules using other modules */
523struct module_use
524{
525 struct list_head list;
526 struct module *module_which_uses;
527};
528
529/* Does a already use b? */
530static int already_uses(struct module *a, struct module *b)
531{
532 struct module_use *use;
533
534 list_for_each_entry(use, &b->modules_which_use_me, list) {
535 if (use->module_which_uses == a) {
536 DEBUGP("%s uses %s!\n", a->name, b->name);
537 return 1;
538 }
539 }
540 DEBUGP("%s does not use %s!\n", a->name, b->name);
541 return 0;
542}
543
544/* Module a uses b */
545static int use_module(struct module *a, struct module *b)
546{
547 struct module_use *use;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500548 int no_warn, err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (b == NULL || already_uses(a, b)) return 1;
551
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500552 /* If we're interrupted or time out, we fail. */
553 if (wait_event_interruptible_timeout(
554 module_wq, (err = strong_try_module_get(b)) != -EBUSY,
555 30 * HZ) <= 0) {
556 printk("%s: gave up waiting for init of module %s.\n",
557 a->name, b->name);
558 return 0;
559 }
560
561 /* If strong_try_module_get() returned a different error, we fail. */
562 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
564
565 DEBUGP("Allocating new usage for %s.\n", a->name);
566 use = kmalloc(sizeof(*use), GFP_ATOMIC);
567 if (!use) {
568 printk("%s: out of memory loading\n", a->name);
569 module_put(b);
570 return 0;
571 }
572
573 use->module_which_uses = a;
574 list_add(&use->list, &b->modules_which_use_me);
Kay Sievers270a6c42007-01-18 13:26:15 +0100575 no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return 1;
577}
578
579/* Clear the unload stuff of the module. */
580static void module_unload_free(struct module *mod)
581{
582 struct module *i;
583
584 list_for_each_entry(i, &modules, list) {
585 struct module_use *use;
586
587 list_for_each_entry(use, &i->modules_which_use_me, list) {
588 if (use->module_which_uses == mod) {
589 DEBUGP("%s unusing %s\n", mod->name, i->name);
590 module_put(i);
591 list_del(&use->list);
592 kfree(use);
Kay Sievers270a6c42007-01-18 13:26:15 +0100593 sysfs_remove_link(i->holders_dir, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /* There can be at most one match. */
595 break;
596 }
597 }
598 }
599}
600
601#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800602static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 int ret = (flags & O_TRUNC);
605 if (ret)
Akinobu Mitafb169792006-01-08 01:04:29 -0800606 add_taint(TAINT_FORCED_RMMOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return ret;
608}
609#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800610static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 return 0;
613}
614#endif /* CONFIG_MODULE_FORCE_UNLOAD */
615
616struct stopref
617{
618 struct module *mod;
619 int flags;
620 int *forced;
621};
622
623/* Whole machine is stopped with interrupts off when this runs. */
624static int __try_stop_module(void *_sref)
625{
626 struct stopref *sref = _sref;
627
628 /* If it's not unused, quit unless we are told to block. */
629 if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800630 if (!(*sref->forced = try_force_unload(sref->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return -EWOULDBLOCK;
632 }
633
634 /* Mark it as dying. */
635 sref->mod->state = MODULE_STATE_GOING;
636 return 0;
637}
638
639static int try_stop_module(struct module *mod, int flags, int *forced)
640{
641 struct stopref sref = { mod, flags, forced };
642
643 return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
644}
645
646unsigned int module_refcount(struct module *mod)
647{
648 unsigned int i, total = 0;
649
650 for (i = 0; i < NR_CPUS; i++)
651 total += local_read(&mod->ref[i].count);
652 return total;
653}
654EXPORT_SYMBOL(module_refcount);
655
656/* This exists whether we can unload or not */
657static void free_module(struct module *mod);
658
659static void wait_for_zero_refcount(struct module *mod)
660{
661 /* Since we might sleep for some time, drop the semaphore first */
Ashutosh Naik6389a382006-03-23 03:00:46 -0800662 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 for (;;) {
664 DEBUGP("Looking at refcount...\n");
665 set_current_state(TASK_UNINTERRUPTIBLE);
666 if (module_refcount(mod) == 0)
667 break;
668 schedule();
669 }
670 current->state = TASK_RUNNING;
Ashutosh Naik6389a382006-03-23 03:00:46 -0800671 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800674asmlinkage long
675sys_delete_module(const char __user *name_user, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800678 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 int ret, forced = 0;
680
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800681 if (!capable(CAP_SYS_MODULE))
682 return -EPERM;
683
684 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
685 return -EFAULT;
686 name[MODULE_NAME_LEN-1] = '\0';
687
Ashutosh Naik6389a382006-03-23 03:00:46 -0800688 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return -EINTR;
690
691 mod = find_module(name);
692 if (!mod) {
693 ret = -ENOENT;
694 goto out;
695 }
696
697 if (!list_empty(&mod->modules_which_use_me)) {
698 /* Other modules depend on us: get rid of them first. */
699 ret = -EWOULDBLOCK;
700 goto out;
701 }
702
703 /* Doing init or already dying? */
704 if (mod->state != MODULE_STATE_LIVE) {
705 /* FIXME: if (force), slam module count and wake up
706 waiter --RR */
707 DEBUGP("%s already dying\n", mod->name);
708 ret = -EBUSY;
709 goto out;
710 }
711
712 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700713 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800714 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (!forced) {
716 /* This module can't be removed */
717 ret = -EBUSY;
718 goto out;
719 }
720 }
721
722 /* Set this up before setting mod->state */
723 mod->waiter = current;
724
725 /* Stop the machine so refcounts can't move and disable module. */
726 ret = try_stop_module(mod, flags, &forced);
727 if (ret != 0)
728 goto out;
729
730 /* Never wait if forced. */
731 if (!forced && module_refcount(mod) != 0)
732 wait_for_zero_refcount(mod);
733
734 /* Final destruction now noone is using it. */
735 if (mod->exit != NULL) {
Ashutosh Naik6389a382006-03-23 03:00:46 -0800736 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 mod->exit();
Ashutosh Naik6389a382006-03-23 03:00:46 -0800738 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100740 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500741 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 free_module(mod);
743
744 out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800745 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return ret;
747}
748
749static void print_unload_info(struct seq_file *m, struct module *mod)
750{
751 struct module_use *use;
752 int printed_something = 0;
753
754 seq_printf(m, " %u ", module_refcount(mod));
755
756 /* Always include a trailing , so userspace can differentiate
757 between this and the old multi-field proc format. */
758 list_for_each_entry(use, &mod->modules_which_use_me, list) {
759 printed_something = 1;
760 seq_printf(m, "%s,", use->module_which_uses->name);
761 }
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (mod->init != NULL && mod->exit == NULL) {
764 printed_something = 1;
765 seq_printf(m, "[permanent],");
766 }
767
768 if (!printed_something)
769 seq_printf(m, "-");
770}
771
772void __symbol_put(const char *symbol)
773{
774 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 const unsigned long *crc;
776
Rusty Russell24da1cb2007-07-15 23:41:46 -0700777 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (!__find_symbol(symbol, &owner, &crc, 1))
779 BUG();
780 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -0700781 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783EXPORT_SYMBOL(__symbol_put);
784
785void symbol_put_addr(void *addr)
786{
Trent Piepho5e376612006-05-15 09:44:06 -0700787 struct module *modaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Trent Piepho5e376612006-05-15 09:44:06 -0700789 if (core_kernel_text((unsigned long)addr))
790 return;
791
792 if (!(modaddr = module_text_address((unsigned long)addr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 BUG();
Trent Piepho5e376612006-05-15 09:44:06 -0700794 module_put(modaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796EXPORT_SYMBOL_GPL(symbol_put_addr);
797
798static ssize_t show_refcnt(struct module_attribute *mattr,
799 struct module *mod, char *buffer)
800{
Alexey Dobriyan256e2fd2007-08-06 23:47:45 +0400801 return sprintf(buffer, "%u\n", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
804static struct module_attribute refcnt = {
Tejun Heo7b595752007-06-14 03:45:17 +0900805 .attr = { .name = "refcnt", .mode = 0444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 .show = show_refcnt,
807};
808
Al Virof6a57032006-10-18 01:47:25 -0400809void module_put(struct module *module)
810{
811 if (module) {
812 unsigned int cpu = get_cpu();
813 local_dec(&module->ref[cpu].count);
814 /* Maybe they're waiting for us to drop reference? */
815 if (unlikely(!module_is_live(module)))
816 wake_up_process(module->waiter);
817 put_cpu();
818 }
819}
820EXPORT_SYMBOL(module_put);
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822#else /* !CONFIG_MODULE_UNLOAD */
823static void print_unload_info(struct seq_file *m, struct module *mod)
824{
825 /* We don't know the usage count, or what modules are using. */
826 seq_printf(m, " - -");
827}
828
829static inline void module_unload_free(struct module *mod)
830{
831}
832
833static inline int use_module(struct module *a, struct module *b)
834{
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500835 return strong_try_module_get(b) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
838static inline void module_unload_init(struct module *mod)
839{
840}
841#endif /* CONFIG_MODULE_UNLOAD */
842
Kay Sievers1f717402006-11-24 12:15:25 +0100843static ssize_t show_initstate(struct module_attribute *mattr,
844 struct module *mod, char *buffer)
845{
846 const char *state = "unknown";
847
848 switch (mod->state) {
849 case MODULE_STATE_LIVE:
850 state = "live";
851 break;
852 case MODULE_STATE_COMING:
853 state = "coming";
854 break;
855 case MODULE_STATE_GOING:
856 state = "going";
857 break;
858 }
859 return sprintf(buffer, "%s\n", state);
860}
861
862static struct module_attribute initstate = {
Tejun Heo7b595752007-06-14 03:45:17 +0900863 .attr = { .name = "initstate", .mode = 0444 },
Kay Sievers1f717402006-11-24 12:15:25 +0100864 .show = show_initstate,
865};
866
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800867static struct module_attribute *modinfo_attrs[] = {
868 &modinfo_version,
869 &modinfo_srcversion,
Kay Sievers1f717402006-11-24 12:15:25 +0100870 &initstate,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800871#ifdef CONFIG_MODULE_UNLOAD
872 &refcnt,
873#endif
874 NULL,
875};
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877static const char vermagic[] = VERMAGIC_STRING;
878
879#ifdef CONFIG_MODVERSIONS
880static int check_version(Elf_Shdr *sechdrs,
881 unsigned int versindex,
882 const char *symname,
883 struct module *mod,
884 const unsigned long *crc)
885{
886 unsigned int i, num_versions;
887 struct modversion_info *versions;
888
889 /* Exporting module didn't supply crcs? OK, we're already tainted. */
890 if (!crc)
891 return 1;
892
893 versions = (void *) sechdrs[versindex].sh_addr;
894 num_versions = sechdrs[versindex].sh_size
895 / sizeof(struct modversion_info);
896
897 for (i = 0; i < num_versions; i++) {
898 if (strcmp(versions[i].name, symname) != 0)
899 continue;
900
901 if (versions[i].crc == *crc)
902 return 1;
903 printk("%s: disagrees about version of symbol %s\n",
904 mod->name, symname);
905 DEBUGP("Found checksum %lX vs module %lX\n",
906 *crc, versions[i].crc);
907 return 0;
908 }
909 /* Not in module's version table. OK, but that taints the kernel. */
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700910 if (!(tainted & TAINT_FORCED_MODULE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 printk("%s: no version for \"%s\" found: kernel tainted.\n",
912 mod->name, symname);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700913 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return 1;
915}
916
917static inline int check_modstruct_version(Elf_Shdr *sechdrs,
918 unsigned int versindex,
919 struct module *mod)
920{
921 const unsigned long *crc;
922 struct module *owner;
923
924 if (!__find_symbol("struct_module", &owner, &crc, 1))
925 BUG();
926 return check_version(sechdrs, versindex, "struct_module", mod,
927 crc);
928}
929
930/* First part is kernel version, which we ignore. */
931static inline int same_magic(const char *amagic, const char *bmagic)
932{
933 amagic += strcspn(amagic, " ");
934 bmagic += strcspn(bmagic, " ");
935 return strcmp(amagic, bmagic) == 0;
936}
937#else
938static inline int check_version(Elf_Shdr *sechdrs,
939 unsigned int versindex,
940 const char *symname,
941 struct module *mod,
942 const unsigned long *crc)
943{
944 return 1;
945}
946
947static inline int check_modstruct_version(Elf_Shdr *sechdrs,
948 unsigned int versindex,
949 struct module *mod)
950{
951 return 1;
952}
953
954static inline int same_magic(const char *amagic, const char *bmagic)
955{
956 return strcmp(amagic, bmagic) == 0;
957}
958#endif /* CONFIG_MODVERSIONS */
959
960/* Resolve a symbol for this module. I.e. if we find one, record usage.
961 Must be holding module_mutex. */
962static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
963 unsigned int versindex,
964 const char *name,
965 struct module *mod)
966{
967 struct module *owner;
968 unsigned long ret;
969 const unsigned long *crc;
970
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700971 ret = __find_symbol(name, &owner, &crc,
972 !(mod->taints & TAINT_PROPRIETARY_MODULE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (ret) {
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -0800974 /* use_module can fail due to OOM,
975 or module initialization or unloading */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (!check_version(sechdrs, versindex, name, mod, crc) ||
977 !use_module(mod, owner))
978 ret = 0;
979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return ret;
981}
982
983
984/*
985 * /sys/module/foo/sections stuff
986 * J. Corbet <corbet@lwn.net>
987 */
988#ifdef CONFIG_KALLSYMS
989static ssize_t module_sect_show(struct module_attribute *mattr,
990 struct module *mod, char *buf)
991{
992 struct module_sect_attr *sattr =
993 container_of(mattr, struct module_sect_attr, mattr);
994 return sprintf(buf, "0x%lx\n", sattr->address);
995}
996
Ian S. Nelson04b1db92006-09-29 02:01:31 -0700997static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
998{
999 int section;
1000
1001 for (section = 0; section < sect_attrs->nsections; section++)
1002 kfree(sect_attrs->attrs[section].name);
1003 kfree(sect_attrs);
1004}
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006static void add_sect_attrs(struct module *mod, unsigned int nsect,
1007 char *secstrings, Elf_Shdr *sechdrs)
1008{
1009 unsigned int nloaded = 0, i, size[2];
1010 struct module_sect_attrs *sect_attrs;
1011 struct module_sect_attr *sattr;
1012 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* Count loaded sections and allocate structures */
1015 for (i = 0; i < nsect; i++)
1016 if (sechdrs[i].sh_flags & SHF_ALLOC)
1017 nloaded++;
1018 size[0] = ALIGN(sizeof(*sect_attrs)
1019 + nloaded * sizeof(sect_attrs->attrs[0]),
1020 sizeof(sect_attrs->grp.attrs[0]));
1021 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001022 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1023 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return;
1025
1026 /* Setup section attributes. */
1027 sect_attrs->grp.name = "sections";
1028 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1029
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001030 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 sattr = &sect_attrs->attrs[0];
1032 gattr = &sect_attrs->grp.attrs[0];
1033 for (i = 0; i < nsect; i++) {
1034 if (! (sechdrs[i].sh_flags & SHF_ALLOC))
1035 continue;
1036 sattr->address = sechdrs[i].sh_addr;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001037 sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
1038 GFP_KERNEL);
1039 if (sattr->name == NULL)
1040 goto out;
1041 sect_attrs->nsections++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 sattr->mattr.show = module_sect_show;
1043 sattr->mattr.store = NULL;
1044 sattr->mattr.attr.name = sattr->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 sattr->mattr.attr.mode = S_IRUGO;
1046 *(gattr++) = &(sattr++)->mattr.attr;
1047 }
1048 *gattr = NULL;
1049
1050 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1051 goto out;
1052
1053 mod->sect_attrs = sect_attrs;
1054 return;
1055 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001056 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
1059static void remove_sect_attrs(struct module *mod)
1060{
1061 if (mod->sect_attrs) {
1062 sysfs_remove_group(&mod->mkobj.kobj,
1063 &mod->sect_attrs->grp);
1064 /* We are positive that no one is using any sect attrs
1065 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001066 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 mod->sect_attrs = NULL;
1068 }
1069}
1070
Roland McGrath6d760132007-10-16 23:26:40 -07001071/*
1072 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1073 */
1074
1075struct module_notes_attrs {
1076 struct kobject *dir;
1077 unsigned int notes;
1078 struct bin_attribute attrs[0];
1079};
1080
1081static ssize_t module_notes_read(struct kobject *kobj,
1082 struct bin_attribute *bin_attr,
1083 char *buf, loff_t pos, size_t count)
1084{
1085 /*
1086 * The caller checked the pos and count against our size.
1087 */
1088 memcpy(buf, bin_attr->private + pos, count);
1089 return count;
1090}
1091
1092static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1093 unsigned int i)
1094{
1095 if (notes_attrs->dir) {
1096 while (i-- > 0)
1097 sysfs_remove_bin_file(notes_attrs->dir,
1098 &notes_attrs->attrs[i]);
1099 kobject_del(notes_attrs->dir);
1100 }
1101 kfree(notes_attrs);
1102}
1103
1104static void add_notes_attrs(struct module *mod, unsigned int nsect,
1105 char *secstrings, Elf_Shdr *sechdrs)
1106{
1107 unsigned int notes, loaded, i;
1108 struct module_notes_attrs *notes_attrs;
1109 struct bin_attribute *nattr;
1110
1111 /* Count notes sections and allocate structures. */
1112 notes = 0;
1113 for (i = 0; i < nsect; i++)
1114 if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
1115 (sechdrs[i].sh_type == SHT_NOTE))
1116 ++notes;
1117
1118 if (notes == 0)
1119 return;
1120
1121 notes_attrs = kzalloc(sizeof(*notes_attrs)
1122 + notes * sizeof(notes_attrs->attrs[0]),
1123 GFP_KERNEL);
1124 if (notes_attrs == NULL)
1125 return;
1126
1127 notes_attrs->notes = notes;
1128 nattr = &notes_attrs->attrs[0];
1129 for (loaded = i = 0; i < nsect; ++i) {
1130 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1131 continue;
1132 if (sechdrs[i].sh_type == SHT_NOTE) {
1133 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1134 nattr->attr.mode = S_IRUGO;
1135 nattr->size = sechdrs[i].sh_size;
1136 nattr->private = (void *) sechdrs[i].sh_addr;
1137 nattr->read = module_notes_read;
1138 ++nattr;
1139 }
1140 ++loaded;
1141 }
1142
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001143 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001144 if (!notes_attrs->dir)
1145 goto out;
1146
1147 for (i = 0; i < notes; ++i)
1148 if (sysfs_create_bin_file(notes_attrs->dir,
1149 &notes_attrs->attrs[i]))
1150 goto out;
1151
1152 mod->notes_attrs = notes_attrs;
1153 return;
1154
1155 out:
1156 free_notes_attrs(notes_attrs, i);
1157}
1158
1159static void remove_notes_attrs(struct module *mod)
1160{
1161 if (mod->notes_attrs)
1162 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
1168 char *sectstrings, Elf_Shdr *sechdrs)
1169{
1170}
1171
1172static inline void remove_sect_attrs(struct module *mod)
1173{
1174}
Roland McGrath6d760132007-10-16 23:26:40 -07001175
1176static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
1177 char *sectstrings, Elf_Shdr *sechdrs)
1178{
1179}
1180
1181static inline void remove_notes_attrs(struct module *mod)
1182{
1183}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184#endif /* CONFIG_KALLSYMS */
1185
Randy Dunlapef665c12007-02-13 15:19:06 -08001186#ifdef CONFIG_SYSFS
1187int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001188{
1189 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001190 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001191 int error = 0;
1192 int i;
1193
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001194 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1195 (ARRAY_SIZE(modinfo_attrs) + 1)),
1196 GFP_KERNEL);
1197 if (!mod->modinfo_attrs)
1198 return -ENOMEM;
1199
1200 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001201 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
1202 if (!attr->test ||
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001203 (attr->test && attr->test(mod))) {
1204 memcpy(temp_attr, attr, sizeof(*temp_attr));
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001205 error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
1206 ++temp_attr;
1207 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001208 }
1209 return error;
1210}
1211
Randy Dunlapef665c12007-02-13 15:19:06 -08001212void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001213{
1214 struct module_attribute *attr;
1215 int i;
1216
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001217 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1218 /* pick a field to test for end of list */
1219 if (!attr->attr.name)
1220 break;
Matt Domschc988d2b2005-06-23 22:05:15 -07001221 sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001222 if (attr->free)
1223 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001224 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001225 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001226}
Randy Dunlapef665c12007-02-13 15:19:06 -08001227#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Randy Dunlapef665c12007-02-13 15:19:06 -08001229#ifdef CONFIG_SYSFS
1230int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
1232 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001233 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001235 if (!module_sysfs_initialized) {
1236 printk(KERN_ERR "%s: module sysfs not initialized\n",
Ed Swierk1cc5f712006-09-25 16:25:36 -07001237 mod->name);
1238 err = -EINVAL;
1239 goto out;
1240 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001241
1242 kobj = kset_find_obj(module_kset, mod->name);
1243 if (kobj) {
1244 printk(KERN_ERR "%s: module is already loaded\n", mod->name);
1245 kobject_put(kobj);
1246 err = -EINVAL;
1247 goto out;
1248 }
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001251
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001252 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1253 mod->mkobj.kobj.kset = module_kset;
1254 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1255 "%s", mod->name);
1256 if (err)
1257 kobject_put(&mod->mkobj.kobj);
Kay Sievers270a6c42007-01-18 13:26:15 +01001258
Kay Sievers97c146e2007-11-29 23:46:11 +01001259 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001260out:
1261 return err;
1262}
1263
Randy Dunlapef665c12007-02-13 15:19:06 -08001264int mod_sysfs_setup(struct module *mod,
Kay Sievers270a6c42007-01-18 13:26:15 +01001265 struct kernel_param *kparam,
1266 unsigned int num_params)
1267{
1268 int err;
1269
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001270 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001271 if (!mod->holders_dir) {
1272 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001273 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001274 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 err = module_param_sysfs_setup(mod, kparam, num_params);
1277 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001278 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Matt Domschc988d2b2005-06-23 22:05:15 -07001280 err = module_add_modinfo_attrs(mod);
1281 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001282 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001283
Kay Sieverse17e0f52006-11-24 12:15:25 +01001284 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return 0;
1286
Kay Sieverse17e0f52006-11-24 12:15:25 +01001287out_unreg_param:
1288 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001289out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001290 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001291out_unreg:
Kay Sieverse17e0f52006-11-24 12:15:25 +01001292 kobject_put(&mod->mkobj.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return err;
1294}
Randy Dunlapef665c12007-02-13 15:19:06 -08001295#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297static void mod_kobject_remove(struct module *mod)
1298{
Matt Domschc988d2b2005-06-23 22:05:15 -07001299 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001301 kobject_put(mod->mkobj.drivers_dir);
1302 kobject_put(mod->holders_dir);
1303 kobject_put(&mod->mkobj.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
1306/*
Rusty Russellbb9d3d52008-01-29 17:13:21 -05001307 * link the module with the whole machine is stopped with interrupts off
1308 * - this defends against kallsyms not taking locks
1309 */
1310static int __link_module(void *_mod)
1311{
1312 struct module *mod = _mod;
1313 list_add(&mod->list, &modules);
1314 return 0;
1315}
1316
1317/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 * unlink the module with the whole machine is stopped with interrupts off
1319 * - this defends against kallsyms not taking locks
1320 */
1321static int __unlink_module(void *_mod)
1322{
1323 struct module *mod = _mod;
1324 list_del(&mod->list);
1325 return 0;
1326}
1327
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001328/* Free a module, remove from lists, etc (must hold module_mutex). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329static void free_module(struct module *mod)
1330{
1331 /* Delete from various lists */
1332 stop_machine_run(__unlink_module, mod, NR_CPUS);
Roland McGrath6d760132007-10-16 23:26:40 -07001333 remove_notes_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 remove_sect_attrs(mod);
1335 mod_kobject_remove(mod);
1336
Jan Beulich4552d5d2006-06-26 13:57:28 +02001337 unwind_remove_table(mod->unwind_info, 0);
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 /* Arch-specific cleanup. */
1340 module_arch_cleanup(mod);
1341
1342 /* Module unload stuff */
1343 module_unload_free(mod);
1344
1345 /* This may be NULL, but that's OK */
1346 module_free(mod, mod->module_init);
1347 kfree(mod->args);
1348 if (mod->percpu)
1349 percpu_modfree(mod->percpu);
1350
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001351 /* Free lock-classes: */
1352 lockdep_free_key_range(mod->module_core, mod->core_size);
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 /* Finally, free the core (containing the module structure) */
1355 module_free(mod, mod->module_core);
1356}
1357
1358void *__symbol_get(const char *symbol)
1359{
1360 struct module *owner;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001361 unsigned long value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 const unsigned long *crc;
1363
Rusty Russell24da1cb2007-07-15 23:41:46 -07001364 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 value = __find_symbol(symbol, &owner, &crc, 1);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05001366 if (value && strong_try_module_get(owner) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 value = 0;
Rusty Russell24da1cb2007-07-15 23:41:46 -07001368 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 return (void *)value;
1371}
1372EXPORT_SYMBOL_GPL(__symbol_get);
1373
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001374/*
1375 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02001376 * in the kernel or in some other module's exported symbol table.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001377 */
1378static int verify_export_symbols(struct module *mod)
1379{
1380 const char *name = NULL;
1381 unsigned long i, ret = 0;
1382 struct module *owner;
1383 const unsigned long *crc;
1384
1385 for (i = 0; i < mod->num_syms; i++)
Daniel Walker22a8bde2007-10-18 03:06:07 -07001386 if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001387 name = mod->syms[i].name;
1388 ret = -ENOEXEC;
1389 goto dup;
1390 }
1391
1392 for (i = 0; i < mod->num_gpl_syms; i++)
Daniel Walker22a8bde2007-10-18 03:06:07 -07001393 if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
Ashutosh Naikeea8b542006-01-08 01:04:25 -08001394 name = mod->gpl_syms[i].name;
1395 ret = -ENOEXEC;
1396 goto dup;
1397 }
1398
1399dup:
1400 if (ret)
1401 printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
1402 mod->name, name, module_name(owner));
1403
1404 return ret;
1405}
1406
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08001407/* Change all symbols so that st_value encodes the pointer directly. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408static int simplify_symbols(Elf_Shdr *sechdrs,
1409 unsigned int symindex,
1410 const char *strtab,
1411 unsigned int versindex,
1412 unsigned int pcpuindex,
1413 struct module *mod)
1414{
1415 Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1416 unsigned long secbase;
1417 unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1418 int ret = 0;
1419
1420 for (i = 1; i < n; i++) {
1421 switch (sym[i].st_shndx) {
1422 case SHN_COMMON:
1423 /* We compiled with -fno-common. These are not
1424 supposed to happen. */
1425 DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1426 printk("%s: please compile with -fno-common\n",
1427 mod->name);
1428 ret = -ENOEXEC;
1429 break;
1430
1431 case SHN_ABS:
1432 /* Don't need to do anything */
1433 DEBUGP("Absolute symbol: 0x%08lx\n",
1434 (long)sym[i].st_value);
1435 break;
1436
1437 case SHN_UNDEF:
1438 sym[i].st_value
1439 = resolve_symbol(sechdrs, versindex,
1440 strtab + sym[i].st_name, mod);
1441
1442 /* Ok if resolved. */
1443 if (sym[i].st_value != 0)
1444 break;
1445 /* Ok if weak. */
1446 if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1447 break;
1448
1449 printk(KERN_WARNING "%s: Unknown symbol %s\n",
1450 mod->name, strtab + sym[i].st_name);
1451 ret = -ENOENT;
1452 break;
1453
1454 default:
1455 /* Divert to percpu allocation if a percpu var. */
1456 if (sym[i].st_shndx == pcpuindex)
1457 secbase = (unsigned long)mod->percpu;
1458 else
1459 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1460 sym[i].st_value += secbase;
1461 break;
1462 }
1463 }
1464
1465 return ret;
1466}
1467
1468/* Update size with this section: return offset. */
1469static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1470{
1471 long ret;
1472
1473 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1474 *size = ret + sechdr->sh_size;
1475 return ret;
1476}
1477
1478/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1479 might -- code, read-only data, read-write data, small data. Tally
1480 sizes, and place the offsets into sh_entsize fields: high bit means it
1481 belongs in init. */
1482static void layout_sections(struct module *mod,
1483 const Elf_Ehdr *hdr,
1484 Elf_Shdr *sechdrs,
1485 const char *secstrings)
1486{
1487 static unsigned long const masks[][2] = {
1488 /* NOTE: all executable code must be the first section
1489 * in this array; otherwise modify the text_size
1490 * finder in the two loops below */
1491 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1492 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1493 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1494 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1495 };
1496 unsigned int m, i;
1497
1498 for (i = 0; i < hdr->e_shnum; i++)
1499 sechdrs[i].sh_entsize = ~0UL;
1500
1501 DEBUGP("Core section allocation order:\n");
1502 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1503 for (i = 0; i < hdr->e_shnum; ++i) {
1504 Elf_Shdr *s = &sechdrs[i];
1505
1506 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1507 || (s->sh_flags & masks[m][1])
1508 || s->sh_entsize != ~0UL
1509 || strncmp(secstrings + s->sh_name,
1510 ".init", 5) == 0)
1511 continue;
1512 s->sh_entsize = get_offset(&mod->core_size, s);
1513 DEBUGP("\t%s\n", secstrings + s->sh_name);
1514 }
1515 if (m == 0)
1516 mod->core_text_size = mod->core_size;
1517 }
1518
1519 DEBUGP("Init section allocation order:\n");
1520 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1521 for (i = 0; i < hdr->e_shnum; ++i) {
1522 Elf_Shdr *s = &sechdrs[i];
1523
1524 if ((s->sh_flags & masks[m][0]) != masks[m][0]
1525 || (s->sh_flags & masks[m][1])
1526 || s->sh_entsize != ~0UL
1527 || strncmp(secstrings + s->sh_name,
1528 ".init", 5) != 0)
1529 continue;
1530 s->sh_entsize = (get_offset(&mod->init_size, s)
1531 | INIT_OFFSET_MASK);
1532 DEBUGP("\t%s\n", secstrings + s->sh_name);
1533 }
1534 if (m == 0)
1535 mod->init_text_size = mod->init_size;
1536 }
1537}
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539static void set_license(struct module *mod, const char *license)
1540{
1541 if (!license)
1542 license = "unspecified";
1543
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001544 if (!license_is_gpl_compatible(license)) {
1545 if (!(tainted & TAINT_PROPRIETARY_MODULE))
Jan Dittmer1d4d2622006-10-28 10:38:38 -07001546 printk(KERN_WARNING "%s: module license '%s' taints "
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001547 "kernel.\n", mod->name, license);
1548 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
1550}
1551
1552/* Parse tag=value strings from .modinfo section */
1553static char *next_string(char *string, unsigned long *secsize)
1554{
1555 /* Skip non-zero chars */
1556 while (string[0]) {
1557 string++;
1558 if ((*secsize)-- <= 1)
1559 return NULL;
1560 }
1561
1562 /* Skip any zero padding. */
1563 while (!string[0]) {
1564 string++;
1565 if ((*secsize)-- <= 1)
1566 return NULL;
1567 }
1568 return string;
1569}
1570
1571static char *get_modinfo(Elf_Shdr *sechdrs,
1572 unsigned int info,
1573 const char *tag)
1574{
1575 char *p;
1576 unsigned int taglen = strlen(tag);
1577 unsigned long size = sechdrs[info].sh_size;
1578
1579 for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1580 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1581 return p + taglen + 1;
1582 }
1583 return NULL;
1584}
1585
Matt Domschc988d2b2005-06-23 22:05:15 -07001586static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
1587 unsigned int infoindex)
1588{
1589 struct module_attribute *attr;
1590 int i;
1591
1592 for (i = 0; (attr = modinfo_attrs[i]); i++) {
1593 if (attr->setup)
1594 attr->setup(mod,
1595 get_modinfo(sechdrs,
1596 infoindex,
1597 attr->attr.name));
1598 }
1599}
Matt Domschc988d2b2005-06-23 22:05:15 -07001600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601#ifdef CONFIG_KALLSYMS
Alexey Dobriyanea078902007-05-08 00:28:39 -07001602static int is_exported(const char *name, const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001604 if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
1605 return 1;
1606 else
Jesper Juhlf867d2a2006-06-25 05:47:09 -07001607 if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return 1;
Sam Ravnborg3fd68052006-02-08 21:16:45 +01001609 else
1610 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
1613/* As per nm */
1614static char elf_type(const Elf_Sym *sym,
1615 Elf_Shdr *sechdrs,
1616 const char *secstrings,
1617 struct module *mod)
1618{
1619 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1620 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1621 return 'v';
1622 else
1623 return 'w';
1624 }
1625 if (sym->st_shndx == SHN_UNDEF)
1626 return 'U';
1627 if (sym->st_shndx == SHN_ABS)
1628 return 'a';
1629 if (sym->st_shndx >= SHN_LORESERVE)
1630 return '?';
1631 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1632 return 't';
1633 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1634 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1635 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1636 return 'r';
1637 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1638 return 'g';
1639 else
1640 return 'd';
1641 }
1642 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1643 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1644 return 's';
1645 else
1646 return 'b';
1647 }
1648 if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1649 ".debug", strlen(".debug")) == 0)
1650 return 'n';
1651 return '?';
1652}
1653
1654static void add_kallsyms(struct module *mod,
1655 Elf_Shdr *sechdrs,
1656 unsigned int symindex,
1657 unsigned int strindex,
1658 const char *secstrings)
1659{
1660 unsigned int i;
1661
1662 mod->symtab = (void *)sechdrs[symindex].sh_addr;
1663 mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1664 mod->strtab = (void *)sechdrs[strindex].sh_addr;
1665
1666 /* Set types up while we still have access to sections. */
1667 for (i = 0; i < mod->num_symtab; i++)
1668 mod->symtab[i].st_info
1669 = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1670}
1671#else
1672static inline void add_kallsyms(struct module *mod,
1673 Elf_Shdr *sechdrs,
1674 unsigned int symindex,
1675 unsigned int strindex,
1676 const char *secstrings)
1677{
1678}
1679#endif /* CONFIG_KALLSYMS */
1680
1681/* Allocate and load the module: note that size of section 0 is always
1682 zero, and we rely on this for optional sections. */
1683static struct module *load_module(void __user *umod,
1684 unsigned long len,
1685 const char __user *uargs)
1686{
1687 Elf_Ehdr *hdr;
1688 Elf_Shdr *sechdrs;
1689 char *secstrings, *args, *modmagic, *strtab = NULL;
Andrew Morton84860f92006-06-28 04:26:46 -07001690 unsigned int i;
1691 unsigned int symindex = 0;
1692 unsigned int strindex = 0;
1693 unsigned int setupindex;
1694 unsigned int exindex;
1695 unsigned int exportindex;
1696 unsigned int modindex;
1697 unsigned int obsparmindex;
1698 unsigned int infoindex;
1699 unsigned int gplindex;
1700 unsigned int crcindex;
1701 unsigned int gplcrcindex;
1702 unsigned int versindex;
1703 unsigned int pcpuindex;
1704 unsigned int gplfutureindex;
1705 unsigned int gplfuturecrcindex;
1706 unsigned int unwindex = 0;
1707 unsigned int unusedindex;
1708 unsigned int unusedcrcindex;
1709 unsigned int unusedgplindex;
1710 unsigned int unusedgplcrcindex;
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001711 unsigned int markersindex;
1712 unsigned int markersstringsindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 struct module *mod;
1714 long err = 0;
1715 void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1716 struct exception_table_entry *extable;
Thomas Koeller378bac82005-09-06 15:17:11 -07001717 mm_segment_t old_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1720 umod, len, uargs);
1721 if (len < sizeof(*hdr))
1722 return ERR_PTR(-ENOEXEC);
1723
1724 /* Suck in entire file: we'll want most of it. */
1725 /* vmalloc barfs on "unusual" numbers. Check here */
1726 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1727 return ERR_PTR(-ENOMEM);
1728 if (copy_from_user(hdr, umod, len) != 0) {
1729 err = -EFAULT;
1730 goto free_hdr;
1731 }
1732
1733 /* Sanity checks against insmoding binaries or wrong arch,
1734 weird elf version */
1735 if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1736 || hdr->e_type != ET_REL
1737 || !elf_check_arch(hdr)
1738 || hdr->e_shentsize != sizeof(*sechdrs)) {
1739 err = -ENOEXEC;
1740 goto free_hdr;
1741 }
1742
1743 if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1744 goto truncated;
1745
1746 /* Convenience variables */
1747 sechdrs = (void *)hdr + hdr->e_shoff;
1748 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1749 sechdrs[0].sh_addr = 0;
1750
1751 for (i = 1; i < hdr->e_shnum; i++) {
1752 if (sechdrs[i].sh_type != SHT_NOBITS
1753 && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1754 goto truncated;
1755
1756 /* Mark all sections sh_addr with their address in the
1757 temporary image. */
1758 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1759
1760 /* Internal symbols and strings. */
1761 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1762 symindex = i;
1763 strindex = sechdrs[i].sh_link;
1764 strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1765 }
1766#ifndef CONFIG_MODULE_UNLOAD
1767 /* Don't load .exit sections */
1768 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1769 sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1770#endif
1771 }
1772
1773 modindex = find_sec(hdr, sechdrs, secstrings,
1774 ".gnu.linkonce.this_module");
1775 if (!modindex) {
1776 printk(KERN_WARNING "No module found in object\n");
1777 err = -ENOEXEC;
1778 goto free_hdr;
1779 }
1780 mod = (void *)sechdrs[modindex].sh_addr;
1781
1782 if (symindex == 0) {
1783 printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
1784 mod->name);
1785 err = -ENOEXEC;
1786 goto free_hdr;
1787 }
1788
1789 /* Optional sections */
1790 exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1791 gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001792 gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001793 unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
1794 unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1796 gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001797 gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001798 unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
1799 unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1801 exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1802 obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1803 versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1804 infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1805 pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
Jan Beulich4552d5d2006-06-26 13:57:28 +02001806#ifdef ARCH_UNWIND_SECTION_NAME
1807 unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
1808#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
1810 /* Don't keep modinfo section */
1811 sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1812#ifdef CONFIG_KALLSYMS
1813 /* Keep symbol and string tables for decoding later. */
1814 sechdrs[symindex].sh_flags |= SHF_ALLOC;
1815 sechdrs[strindex].sh_flags |= SHF_ALLOC;
1816#endif
Jan Beulich4552d5d2006-06-26 13:57:28 +02001817 if (unwindex)
1818 sechdrs[unwindex].sh_flags |= SHF_ALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 /* Check module struct version now, before we try to use module. */
1821 if (!check_modstruct_version(sechdrs, versindex, mod)) {
1822 err = -ENOEXEC;
1823 goto free_hdr;
1824 }
1825
1826 modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1827 /* This is allowed: modprobe --force will invalidate it. */
1828 if (!modmagic) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001829 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1831 mod->name);
1832 } else if (!same_magic(modmagic, vermagic)) {
1833 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1834 mod->name, modmagic, vermagic);
1835 err = -ENOEXEC;
1836 goto free_hdr;
1837 }
1838
1839 /* Now copy in args */
Davi Arnaut24277dd2006-03-24 03:18:43 -08001840 args = strndup_user(uargs, ~0UL >> 1);
1841 if (IS_ERR(args)) {
1842 err = PTR_ERR(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 goto free_hdr;
1844 }
Andrew Morton8e08b752006-02-07 12:58:45 -08001845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (find_module(mod->name)) {
1847 err = -EEXIST;
1848 goto free_mod;
1849 }
1850
1851 mod->state = MODULE_STATE_COMING;
1852
1853 /* Allow arches to frob section contents and sizes. */
1854 err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1855 if (err < 0)
1856 goto free_mod;
1857
1858 if (pcpuindex) {
1859 /* We have a special allocation for this section. */
1860 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
Rusty Russell842bbaa2005-08-01 21:11:47 -07001861 sechdrs[pcpuindex].sh_addralign,
1862 mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (!percpu) {
1864 err = -ENOMEM;
1865 goto free_mod;
1866 }
1867 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1868 mod->percpu = percpu;
1869 }
1870
1871 /* Determine total sizes, and put offsets in sh_entsize. For now
1872 this is done generically; there doesn't appear to be any
1873 special cases for the architectures. */
1874 layout_sections(mod, hdr, sechdrs, secstrings);
1875
1876 /* Do the allocs. */
1877 ptr = module_alloc(mod->core_size);
1878 if (!ptr) {
1879 err = -ENOMEM;
1880 goto free_percpu;
1881 }
1882 memset(ptr, 0, mod->core_size);
1883 mod->module_core = ptr;
1884
1885 ptr = module_alloc(mod->init_size);
1886 if (!ptr && mod->init_size) {
1887 err = -ENOMEM;
1888 goto free_core;
1889 }
1890 memset(ptr, 0, mod->init_size);
1891 mod->module_init = ptr;
1892
1893 /* Transfer each section which specifies SHF_ALLOC */
1894 DEBUGP("final section addresses:\n");
1895 for (i = 0; i < hdr->e_shnum; i++) {
1896 void *dest;
1897
1898 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1899 continue;
1900
1901 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1902 dest = mod->module_init
1903 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1904 else
1905 dest = mod->module_core + sechdrs[i].sh_entsize;
1906
1907 if (sechdrs[i].sh_type != SHT_NOBITS)
1908 memcpy(dest, (void *)sechdrs[i].sh_addr,
1909 sechdrs[i].sh_size);
1910 /* Update sh_addr to point to copy in image. */
1911 sechdrs[i].sh_addr = (unsigned long)dest;
1912 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1913 }
1914 /* Module has been moved. */
1915 mod = (void *)sechdrs[modindex].sh_addr;
1916
1917 /* Now we've moved module, initialize linked lists, etc. */
1918 module_unload_init(mod);
1919
Kay Sievers97c146e2007-11-29 23:46:11 +01001920 /* add kobject, so we can reference it. */
Akinobu Mitad58ae672007-10-16 23:30:27 -07001921 err = mod_sysfs_init(mod);
1922 if (err)
Kay Sievers97c146e2007-11-29 23:46:11 +01001923 goto free_unload;
Kay Sievers270a6c42007-01-18 13:26:15 +01001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 /* Set up license info based on the info section */
1926 set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1927
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001928 if (strcmp(mod->name, "ndiswrapper") == 0)
Jon Masters0aa5bd52008-01-21 20:43:41 +00001929 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001930 if (strcmp(mod->name, "driverloader") == 0)
1931 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
Dave Jones9841d61d2006-01-08 01:03:41 -08001932
Matt Domschc988d2b2005-06-23 22:05:15 -07001933 /* Set up MODINFO_ATTR fields */
1934 setup_modinfo(mod, sechdrs, infoindex);
Matt Domschc988d2b2005-06-23 22:05:15 -07001935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 /* Fix up syms, so that st_value is a pointer to location. */
1937 err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1938 mod);
1939 if (err < 0)
1940 goto cleanup;
1941
1942 /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1943 mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1944 mod->syms = (void *)sechdrs[exportindex].sh_addr;
1945 if (crcindex)
1946 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1947 mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1948 mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1949 if (gplcrcindex)
1950 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001951 mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
1952 sizeof(*mod->gpl_future_syms);
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001953 mod->num_unused_syms = sechdrs[unusedindex].sh_size /
1954 sizeof(*mod->unused_syms);
1955 mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
1956 sizeof(*mod->unused_gpl_syms);
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001957 mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
1958 if (gplfuturecrcindex)
1959 mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001961 mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
1962 if (unusedcrcindex)
1963 mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
1964 mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
1965 if (unusedgplcrcindex)
1966 mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968#ifdef CONFIG_MODVERSIONS
Daniel Walker22a8bde2007-10-18 03:06:07 -07001969 if ((mod->num_syms && !crcindex) ||
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -08001970 (mod->num_gpl_syms && !gplcrcindex) ||
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001971 (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
1972 (mod->num_unused_syms && !unusedcrcindex) ||
1973 (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 printk(KERN_WARNING "%s: No versions for exported symbols."
1975 " Tainting kernel.\n", mod->name);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07001976 add_taint_module(mod, TAINT_FORCED_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07001979 markersindex = find_sec(hdr, sechdrs, secstrings, "__markers");
1980 markersstringsindex = find_sec(hdr, sechdrs, secstrings,
1981 "__markers_strings");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 /* Now do relocations. */
1984 for (i = 1; i < hdr->e_shnum; i++) {
1985 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1986 unsigned int info = sechdrs[i].sh_info;
1987
1988 /* Not a valid relocation section? */
1989 if (info >= hdr->e_shnum)
1990 continue;
1991
1992 /* Don't bother with non-allocated sections */
1993 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1994 continue;
1995
1996 if (sechdrs[i].sh_type == SHT_REL)
1997 err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1998 else if (sechdrs[i].sh_type == SHT_RELA)
1999 err = apply_relocate_add(sechdrs, strtab, symindex, i,
2000 mod);
2001 if (err < 0)
2002 goto cleanup;
2003 }
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002004#ifdef CONFIG_MARKERS
2005 mod->markers = (void *)sechdrs[markersindex].sh_addr;
2006 mod->num_markers =
2007 sechdrs[markersindex].sh_size / sizeof(*mod->markers);
2008#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002010 /* Find duplicate symbols */
2011 err = verify_export_symbols(mod);
2012
2013 if (err < 0)
2014 goto cleanup;
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /* Set up and sort exception table */
2017 mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
2018 mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
2019 sort_extable(extable, extable + mod->num_exentries);
2020
2021 /* Finally, copy percpu area over. */
2022 percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
2023 sechdrs[pcpuindex].sh_size);
2024
2025 add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
2026
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002027#ifdef CONFIG_MARKERS
2028 if (!mod->taints)
2029 marker_update_probe_range(mod->markers,
2030 mod->markers + mod->num_markers, NULL, NULL);
2031#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 err = module_finalize(hdr, sechdrs, mod);
2033 if (err < 0)
2034 goto cleanup;
2035
Thomas Koeller378bac82005-09-06 15:17:11 -07002036 /* flush the icache in correct context */
2037 old_fs = get_fs();
2038 set_fs(KERNEL_DS);
2039
2040 /*
2041 * Flush the instruction cache, since we've played with text.
2042 * Do it before processing of module parameters, so the module
2043 * can provide parameter accessor functions of its own.
2044 */
2045 if (mod->module_init)
2046 flush_icache_range((unsigned long)mod->module_init,
2047 (unsigned long)mod->module_init
2048 + mod->init_size);
2049 flush_icache_range((unsigned long)mod->module_core,
2050 (unsigned long)mod->module_core + mod->core_size);
2051
2052 set_fs(old_fs);
2053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 mod->args = args;
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002055 if (obsparmindex)
2056 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
2057 mod->name);
2058
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002059 /* Now sew it into the lists so we can get lockdep and oops
2060 * info during argument parsing. Noone should access us, since
2061 * strong_try_module_get() will fail. */
2062 stop_machine_run(__link_module, mod, NR_CPUS);
2063
Rusty Russell8d3b33f2006-03-25 03:07:05 -08002064 /* Size of section 0 is 0, so this works well if no params */
2065 err = parse_args(mod->name, mod->args,
2066 (struct kernel_param *)
2067 sechdrs[setupindex].sh_addr,
2068 sechdrs[setupindex].sh_size
2069 / sizeof(struct kernel_param),
2070 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002072 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Daniel Walker22a8bde2007-10-18 03:06:07 -07002074 err = mod_sysfs_setup(mod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 (struct kernel_param *)
2076 sechdrs[setupindex].sh_addr,
2077 sechdrs[setupindex].sh_size
2078 / sizeof(struct kernel_param));
2079 if (err < 0)
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002080 goto unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Roland McGrath6d760132007-10-16 23:26:40 -07002082 add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Jan Beulich4552d5d2006-06-26 13:57:28 +02002084 /* Size of section 0 is 0, so this works well if no unwind info. */
2085 mod->unwind_info = unwind_add_table(mod,
Daniel Walker22a8bde2007-10-18 03:06:07 -07002086 (void *)sechdrs[unwindex].sh_addr,
2087 sechdrs[unwindex].sh_size);
Jan Beulich4552d5d2006-06-26 13:57:28 +02002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 /* Get rid of temporary copy */
2090 vfree(hdr);
2091
2092 /* Done! */
2093 return mod;
2094
Rusty Russellbb9d3d52008-01-29 17:13:21 -05002095 unlink:
2096 stop_machine_run(__unlink_module, mod, NR_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 module_arch_cleanup(mod);
2098 cleanup:
Kay Sievers97c146e2007-11-29 23:46:11 +01002099 kobject_del(&mod->mkobj.kobj);
2100 kobject_put(&mod->mkobj.kobj);
2101 free_unload:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 module_unload_free(mod);
2103 module_free(mod, mod->module_init);
2104 free_core:
2105 module_free(mod, mod->module_core);
2106 free_percpu:
2107 if (percpu)
2108 percpu_modfree(percpu);
2109 free_mod:
2110 kfree(args);
2111 free_hdr:
2112 vfree(hdr);
Jayachandran C6fe2e702006-01-06 00:19:54 -08002113 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 truncated:
2116 printk(KERN_ERR "Module len %lu truncated\n", len);
2117 err = -ENOEXEC;
2118 goto free_hdr;
2119}
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121/* This is where the real work happens */
2122asmlinkage long
2123sys_init_module(void __user *umod,
2124 unsigned long len,
2125 const char __user *uargs)
2126{
2127 struct module *mod;
2128 int ret = 0;
2129
2130 /* Must have permission */
2131 if (!capable(CAP_SYS_MODULE))
2132 return -EPERM;
2133
2134 /* Only one module load at a time, please */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002135 if (mutex_lock_interruptible(&module_mutex) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 return -EINTR;
2137
2138 /* Do all the hard work */
2139 mod = load_module(umod, len, uargs);
2140 if (IS_ERR(mod)) {
Ashutosh Naik6389a382006-03-23 03:00:46 -08002141 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 return PTR_ERR(mod);
2143 }
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 /* Drop lock so they can recurse */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002146 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Alan Sterne041c682006-03-27 01:16:30 -08002148 blocking_notifier_call_chain(&module_notify_list,
2149 MODULE_STATE_COMING, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 /* Start the module */
2152 if (mod->init != NULL)
2153 ret = mod->init();
2154 if (ret < 0) {
2155 /* Init routine failed: abort. Try to protect us from
2156 buggy refcounters. */
2157 mod->state = MODULE_STATE_GOING;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002158 synchronize_sched();
Rusty Russellaf49d922007-10-16 23:26:27 -07002159 module_put(mod);
2160 mutex_lock(&module_mutex);
2161 free_module(mod);
2162 mutex_unlock(&module_mutex);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05002163 wake_up(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 return ret;
2165 }
2166
2167 /* Now it's a first class citizen! */
Ashutosh Naik6389a382006-03-23 03:00:46 -08002168 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 mod->state = MODULE_STATE_LIVE;
2170 /* Drop initial reference. */
2171 module_put(mod);
Jan Beulich4552d5d2006-06-26 13:57:28 +02002172 unwind_remove_table(mod->unwind_info, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 module_free(mod, mod->module_init);
2174 mod->module_init = NULL;
2175 mod->init_size = 0;
2176 mod->init_text_size = 0;
Ashutosh Naik6389a382006-03-23 03:00:46 -08002177 mutex_unlock(&module_mutex);
Rusty Russellc9a3ba52008-01-29 17:13:18 -05002178 wake_up(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 return 0;
2181}
2182
2183static inline int within(unsigned long addr, void *start, unsigned long size)
2184{
2185 return ((void *)addr >= start && (void *)addr < start + size);
2186}
2187
2188#ifdef CONFIG_KALLSYMS
2189/*
2190 * This ignores the intensely annoying "mapping symbols" found
2191 * in ARM ELF files: $a, $t and $d.
2192 */
2193static inline int is_arm_mapping_symbol(const char *str)
2194{
Daniel Walker22a8bde2007-10-18 03:06:07 -07002195 return str[0] == '$' && strchr("atd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 && (str[2] == '\0' || str[2] == '.');
2197}
2198
2199static const char *get_ksymbol(struct module *mod,
2200 unsigned long addr,
2201 unsigned long *size,
2202 unsigned long *offset)
2203{
2204 unsigned int i, best = 0;
2205 unsigned long nextval;
2206
2207 /* At worse, next value is at end of module */
2208 if (within(addr, mod->module_init, mod->init_size))
2209 nextval = (unsigned long)mod->module_init+mod->init_text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002210 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 nextval = (unsigned long)mod->module_core+mod->core_text_size;
2212
2213 /* Scan for closest preceeding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07002214 starts real symbols at 1). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 for (i = 1; i < mod->num_symtab; i++) {
2216 if (mod->symtab[i].st_shndx == SHN_UNDEF)
2217 continue;
2218
2219 /* We ignore unnamed symbols: they're uninformative
2220 * and inserted at a whim. */
2221 if (mod->symtab[i].st_value <= addr
2222 && mod->symtab[i].st_value > mod->symtab[best].st_value
2223 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2224 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2225 best = i;
2226 if (mod->symtab[i].st_value > addr
2227 && mod->symtab[i].st_value < nextval
2228 && *(mod->strtab + mod->symtab[i].st_name) != '\0'
2229 && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
2230 nextval = mod->symtab[i].st_value;
2231 }
2232
2233 if (!best)
2234 return NULL;
2235
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002236 if (size)
2237 *size = nextval - mod->symtab[best].st_value;
2238 if (offset)
2239 *offset = addr - mod->symtab[best].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return mod->strtab + mod->symtab[best].st_name;
2241}
2242
Rusty Russell6dd06c92008-01-29 17:13:22 -05002243/* For kallsyms to ask for address resolution. NULL means not found. Careful
2244 * not to lock to avoid deadlock on oopses, simply disable preemption. */
2245char *module_address_lookup(unsigned long addr,
2246 unsigned long *size,
2247 unsigned long *offset,
2248 char **modname,
2249 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
2251 struct module *mod;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002252 const char *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Rusty Russellcb2a5202008-01-14 00:55:03 -08002254 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 list_for_each_entry(mod, &modules, list) {
2256 if (within(addr, mod->module_init, mod->init_size)
2257 || within(addr, mod->module_core, mod->core_size)) {
Franck Bui-Huuffc50892006-10-03 01:13:48 -07002258 if (modname)
2259 *modname = mod->name;
Rusty Russellcb2a5202008-01-14 00:55:03 -08002260 ret = get_ksymbol(mod, addr, size, offset);
2261 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05002264 /* Make a copy in here where it's safe */
2265 if (ret) {
2266 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
2267 ret = namebuf;
2268 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002269 preempt_enable();
Rusty Russell6dd06c92008-01-29 17:13:22 -05002270 return (char *)ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271}
2272
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002273int lookup_module_symbol_name(unsigned long addr, char *symname)
2274{
2275 struct module *mod;
2276
Rusty Russellcb2a5202008-01-14 00:55:03 -08002277 preempt_disable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002278 list_for_each_entry(mod, &modules, list) {
2279 if (within(addr, mod->module_init, mod->init_size) ||
2280 within(addr, mod->module_core, mod->core_size)) {
2281 const char *sym;
2282
2283 sym = get_ksymbol(mod, addr, NULL, NULL);
2284 if (!sym)
2285 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07002286 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002287 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002288 return 0;
2289 }
2290 }
2291out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002292 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07002293 return -ERANGE;
2294}
2295
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002296int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
2297 unsigned long *offset, char *modname, char *name)
2298{
2299 struct module *mod;
2300
Rusty Russellcb2a5202008-01-14 00:55:03 -08002301 preempt_disable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002302 list_for_each_entry(mod, &modules, list) {
2303 if (within(addr, mod->module_init, mod->init_size) ||
2304 within(addr, mod->module_core, mod->core_size)) {
2305 const char *sym;
2306
2307 sym = get_ksymbol(mod, addr, size, offset);
2308 if (!sym)
2309 goto out;
2310 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07002311 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002312 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07002313 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002314 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002315 return 0;
2316 }
2317 }
2318out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08002319 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07002320 return -ERANGE;
2321}
2322
Alexey Dobriyanea078902007-05-08 00:28:39 -07002323int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2324 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325{
2326 struct module *mod;
2327
Rusty Russellcb2a5202008-01-14 00:55:03 -08002328 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 list_for_each_entry(mod, &modules, list) {
2330 if (symnum < mod->num_symtab) {
2331 *value = mod->symtab[symnum].st_value;
2332 *type = mod->symtab[symnum].st_info;
Andreas Gruenbacher098c5ee2006-07-14 00:24:04 -07002333 strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
Tejun Heo9281ace2007-07-17 04:03:51 -07002334 KSYM_NAME_LEN);
2335 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Alexey Dobriyanea078902007-05-08 00:28:39 -07002336 *exported = is_exported(name, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08002337 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
2340 symnum -= mod->num_symtab;
2341 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002342 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07002343 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344}
2345
2346static unsigned long mod_find_symname(struct module *mod, const char *name)
2347{
2348 unsigned int i;
2349
2350 for (i = 0; i < mod->num_symtab; i++)
Keith Owens54e8ce42006-02-03 03:03:53 -08002351 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
2352 mod->symtab[i].st_info != 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 return mod->symtab[i].st_value;
2354 return 0;
2355}
2356
2357/* Look for this name: can be of form module:name. */
2358unsigned long module_kallsyms_lookup_name(const char *name)
2359{
2360 struct module *mod;
2361 char *colon;
2362 unsigned long ret = 0;
2363
2364 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08002365 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 if ((colon = strchr(name, ':')) != NULL) {
2367 *colon = '\0';
2368 if ((mod = find_module(name)) != NULL)
2369 ret = mod_find_symname(mod, colon+1);
2370 *colon = ':';
2371 } else {
2372 list_for_each_entry(mod, &modules, list)
2373 if ((ret = mod_find_symname(mod, name)) != 0)
2374 break;
2375 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08002376 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 return ret;
2378}
2379#endif /* CONFIG_KALLSYMS */
2380
2381/* Called by the /proc file system to return a list of modules. */
2382static void *m_start(struct seq_file *m, loff_t *pos)
2383{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002384 mutex_lock(&module_mutex);
Pavel Emelianov708f4b52007-07-15 23:39:54 -07002385 return seq_list_start(&modules, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
2388static void *m_next(struct seq_file *m, void *p, loff_t *pos)
2389{
Pavel Emelianov708f4b52007-07-15 23:39:54 -07002390 return seq_list_next(p, &modules, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391}
2392
2393static void m_stop(struct seq_file *m, void *p)
2394{
Ashutosh Naik6389a382006-03-23 03:00:46 -08002395 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396}
2397
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002398static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002399{
2400 int bx = 0;
2401
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002402 if (mod->taints ||
2403 mod->state == MODULE_STATE_GOING ||
2404 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002405 buf[bx++] = '(';
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002406 if (mod->taints & TAINT_PROPRIETARY_MODULE)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002407 buf[bx++] = 'P';
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002408 if (mod->taints & TAINT_FORCED_MODULE)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002409 buf[bx++] = 'F';
2410 /*
2411 * TAINT_FORCED_RMMOD: could be added.
2412 * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
2413 * apply to modules.
2414 */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002415
2416 /* Show a - for module-is-being-unloaded */
2417 if (mod->state == MODULE_STATE_GOING)
2418 buf[bx++] = '-';
2419 /* Show a + for module-is-being-loaded */
2420 if (mod->state == MODULE_STATE_COMING)
2421 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002422 buf[bx++] = ')';
2423 }
2424 buf[bx] = '\0';
2425
2426 return buf;
2427}
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429static int m_show(struct seq_file *m, void *p)
2430{
2431 struct module *mod = list_entry(p, struct module, list);
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002432 char buf[8];
2433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 seq_printf(m, "%s %lu",
2435 mod->name, mod->init_size + mod->core_size);
2436 print_unload_info(m, mod);
2437
2438 /* Informative for users. */
2439 seq_printf(m, " %s",
2440 mod->state == MODULE_STATE_GOING ? "Unloading":
2441 mod->state == MODULE_STATE_COMING ? "Loading":
2442 "Live");
2443 /* Used by oprofile and other similar tools. */
2444 seq_printf(m, " 0x%p", mod->module_core);
2445
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002446 /* Taints info */
2447 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002448 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 seq_printf(m, "\n");
2451 return 0;
2452}
2453
2454/* Format: modulename size refcount deps address
2455
2456 Where refcount is a number or -, and deps is a comma-separated list
2457 of depends or -.
2458*/
Helge Deller15ad7cd2006-12-06 20:40:36 -08002459const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 .start = m_start,
2461 .next = m_next,
2462 .stop = m_stop,
2463 .show = m_show
2464};
2465
2466/* Given an address, look for it in the module exception tables. */
2467const struct exception_table_entry *search_module_extables(unsigned long addr)
2468{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 const struct exception_table_entry *e = NULL;
2470 struct module *mod;
2471
Rusty Russell24da1cb2007-07-15 23:41:46 -07002472 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 list_for_each_entry(mod, &modules, list) {
2474 if (mod->num_exentries == 0)
2475 continue;
Daniel Walker22a8bde2007-10-18 03:06:07 -07002476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 e = search_extable(mod->extable,
2478 mod->extable + mod->num_exentries - 1,
2479 addr);
2480 if (e)
2481 break;
2482 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07002483 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485 /* Now, if we found one, we are running inside it now, hence
Daniel Walker22a8bde2007-10-18 03:06:07 -07002486 we cannot unload the module, hence no refcnt needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return e;
2488}
2489
Ingo Molnar4d435f92006-07-03 00:24:24 -07002490/*
2491 * Is this a valid module address?
2492 */
2493int is_module_address(unsigned long addr)
2494{
Ingo Molnar4d435f92006-07-03 00:24:24 -07002495 struct module *mod;
2496
Rusty Russell24da1cb2007-07-15 23:41:46 -07002497 preempt_disable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002498
2499 list_for_each_entry(mod, &modules, list) {
2500 if (within(addr, mod->module_core, mod->core_size)) {
Rusty Russell24da1cb2007-07-15 23:41:46 -07002501 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002502 return 1;
2503 }
2504 }
2505
Rusty Russell24da1cb2007-07-15 23:41:46 -07002506 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07002507
2508 return 0;
2509}
2510
2511
Rusty Russell24da1cb2007-07-15 23:41:46 -07002512/* Is this a valid kernel address? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513struct module *__module_text_address(unsigned long addr)
2514{
2515 struct module *mod;
2516
2517 list_for_each_entry(mod, &modules, list)
2518 if (within(addr, mod->module_init, mod->init_text_size)
2519 || within(addr, mod->module_core, mod->core_text_size))
2520 return mod;
2521 return NULL;
2522}
2523
2524struct module *module_text_address(unsigned long addr)
2525{
2526 struct module *mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Rusty Russell24da1cb2007-07-15 23:41:46 -07002528 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 mod = __module_text_address(addr);
Rusty Russell24da1cb2007-07-15 23:41:46 -07002530 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 return mod;
2533}
2534
2535/* Don't grab lock, we're oopsing. */
2536void print_modules(void)
2537{
2538 struct module *mod;
Randy Dunlap2bc2d612006-10-02 02:17:02 -07002539 char buf[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
2541 printk("Modules linked in:");
2542 list_for_each_entry(mod, &modules, list)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01002543 printk(" %s%s", mod->name, module_flags(mod, buf));
Arjan van de Vene14af7e2008-01-25 21:08:33 +01002544 if (last_unloaded_module[0])
2545 printk(" [last unloaded: %s]", last_unloaded_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 printk("\n");
2547}
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549#ifdef CONFIG_MODVERSIONS
2550/* Generate the signature for struct module here, too, for modversions. */
2551void struct_module(struct module *mod) { return; }
2552EXPORT_SYMBOL(struct_module);
2553#endif
Mathieu Desnoyers8256e472007-10-18 23:41:06 -07002554
2555#ifdef CONFIG_MARKERS
2556void module_update_markers(struct module *probe_module, int *refcount)
2557{
2558 struct module *mod;
2559
2560 mutex_lock(&module_mutex);
2561 list_for_each_entry(mod, &modules, list)
2562 if (!mod->taints)
2563 marker_update_probe_range(mod->markers,
2564 mod->markers + mod->num_markers,
2565 probe_module, refcount);
2566 mutex_unlock(&module_mutex);
2567}
2568#endif