blob: 2302f09ea2d9e1d1d6222d8819a43be6e10611f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_MODULE_H
2#define _LINUX_MODULE_H
3/*
4 * Dynamic loading of modules into the kernel.
5 *
6 * Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
7 * Rewritten again by Rusty Russell, 2002
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/list.h>
10#include <linux/stat.h>
11#include <linux/compiler.h>
12#include <linux/cache.h>
13#include <linux/kmod.h>
14#include <linux/elf.h>
15#include <linux/stringify.h>
16#include <linux/kobject.h>
17#include <linux/moduleparam.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040018#include <linux/tracepoint.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Li Zefan7ead8b82009-08-17 16:56:28 +080020#include <asm/local.h>
Christoph Lametere1783a22010-01-05 15:34:50 +090021#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/module.h>
23
Li Zefan7ead8b82009-08-17 16:56:28 +080024#include <trace/events/module.h>
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* Not Yet Implemented */
27#define MODULE_SUPPORTED_DEVICE(name)
28
Alan Jenkins9e1b9b82009-11-07 21:03:54 +000029/* Some toolchains use a `_' prefix for all user symbols. */
30#ifdef CONFIG_SYMBOL_PREFIX
31#define MODULE_SYMBOL_PREFIX CONFIG_SYMBOL_PREFIX
32#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define MODULE_SYMBOL_PREFIX ""
34#endif
35
Rusty Russell730b69d2008-10-22 10:00:22 -050036#define MODULE_NAME_LEN MAX_PARAM_PREFIX_LEN
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38struct kernel_symbol
39{
40 unsigned long value;
41 const char *name;
42};
43
44struct modversion_info
45{
46 unsigned long crc;
47 char name[MODULE_NAME_LEN];
48};
49
50struct module;
51
52struct module_attribute {
53 struct attribute attr;
54 ssize_t (*show)(struct module_attribute *, struct module *, char *);
55 ssize_t (*store)(struct module_attribute *, struct module *,
56 const char *, size_t count);
Matt Domschc988d2b2005-06-23 22:05:15 -070057 void (*setup)(struct module *, const char *);
58 int (*test)(struct module *);
59 void (*free)(struct module *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62struct module_kobject
63{
64 struct kobject kobj;
65 struct module *mod;
Kay Sieversf30c53a2007-01-15 20:22:02 +010066 struct kobject *drivers_dir;
Rusty Russell9b473de2008-10-22 10:00:22 -050067 struct module_param_attrs *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
70/* These are either module local, or the kernel's dummy ones. */
71extern int init_module(void);
72extern void cleanup_module(void);
73
74/* Archs provide a method of finding the correct exception table. */
75struct exception_table_entry;
76
77const struct exception_table_entry *
78search_extable(const struct exception_table_entry *first,
79 const struct exception_table_entry *last,
80 unsigned long value);
81void sort_extable(struct exception_table_entry *start,
82 struct exception_table_entry *finish);
83void sort_main_extable(void);
Rusty Russellad6561d2009-06-12 21:47:03 -060084void trim_init_extable(struct module *m);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#ifdef MODULE
87#define MODULE_GENERIC_TABLE(gtype,name) \
88extern const struct gtype##_id __mod_##gtype##_table \
89 __attribute__ ((unused, alias(__stringify(name))))
90
91extern struct module __this_module;
92#define THIS_MODULE (&__this_module)
93#else /* !MODULE */
94#define MODULE_GENERIC_TABLE(gtype,name)
95#define THIS_MODULE ((struct module *)0)
96#endif
97
98/* Generic info of form tag = "info" */
99#define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
100
101/* For userspace: you can also call me... */
102#define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias)
103
104/*
105 * The following license idents are currently accepted as indicating free
106 * software modules
107 *
108 * "GPL" [GNU Public License v2 or later]
109 * "GPL v2" [GNU Public License v2]
110 * "GPL and additional rights" [GNU Public License v2 rights and more]
111 * "Dual BSD/GPL" [GNU Public License v2
112 * or BSD license choice]
Xose Vazquez Perez8d27e902006-06-23 02:05:13 -0700113 * "Dual MIT/GPL" [GNU Public License v2
114 * or MIT license choice]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * "Dual MPL/GPL" [GNU Public License v2
116 * or Mozilla license choice]
117 *
118 * The following other idents are available
119 *
120 * "Proprietary" [Non free products]
121 *
122 * There are dual licensed components, but when running with Linux it is the
123 * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL
124 * is a GPL combined work.
125 *
126 * This exists for several reasons
127 * 1. So modinfo can show license info for users wanting to vet their setup
128 * is free
129 * 2. So the community can ignore bug reports including proprietary modules
130 * 3. So vendors can do likewise based on their own policies
131 */
132#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
133
Johannes Berg1d7015c2009-09-25 00:32:58 -0600134/*
135 * Author(s), use "Name <email>" or just "Name", for multiple
136 * authors use multiple MODULE_AUTHOR() statements/lines.
137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define MODULE_AUTHOR(_author) MODULE_INFO(author, _author)
139
140/* What your module does. */
141#define MODULE_DESCRIPTION(_description) MODULE_INFO(description, _description)
142
143/* One for each parameter, describing how to use it. Some files do
144 multiple of these per line, so can't just use MODULE_INFO. */
145#define MODULE_PARM_DESC(_parm, desc) \
146 __MODULE_INFO(parm, _parm, #_parm ":" desc)
147
148#define MODULE_DEVICE_TABLE(type,name) \
149 MODULE_GENERIC_TABLE(type##_device,name)
150
151/* Version of form [<epoch>:]<version>[-<extra-version>].
152 Or for CVS/RCS ID version, everything but the number is stripped.
153 <epoch>: A (small) unsigned integer which allows you to start versions
154 anew. If not mentioned, it's zero. eg. "2:1.0" is after
155 "1:2.0".
156 <version>: The <version> may contain only alphanumerics and the
157 character `.'. Ordered by numeric sort for numeric parts,
158 ascii sort for ascii parts (as per RPM or DEB algorithm).
159 <extraversion>: Like <version>, but inserted for local
160 customizations, eg "rh3" or "rusty1".
161
162 Using this automatically adds a checksum of the .c files and the
163 local headers in "srcversion".
164*/
165#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
166
Jon Masters187afbe2006-08-28 17:08:21 -0500167/* Optional firmware file (or files) needed by the module
168 * format is simply firmware file name. Multiple firmware
169 * files require multiple MODULE_FIRMWARE() specifiers */
170#define MODULE_FIRMWARE(_firmware) MODULE_INFO(firmware, _firmware)
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* Given an address, look for it in the exception tables */
173const struct exception_table_entry *search_exception_tables(unsigned long add);
174
175struct notifier_block;
176
177#ifdef CONFIG_MODULES
178
179/* Get/put a kernel symbol (calls must be symmetric) */
180void *__symbol_get(const char *symbol);
181void *__symbol_get_gpl(const char *symbol);
182#define symbol_get(x) ((typeof(&x))(__symbol_get(MODULE_SYMBOL_PREFIX #x)))
183
184#ifndef __GENKSYMS__
185#ifdef CONFIG_MODVERSIONS
186/* Mark the CRC weak since genksyms apparently decides not to
187 * generate a checksums for some symbols */
188#define __CRC_SYMBOL(sym, sec) \
189 extern void *__crc_##sym __attribute__((weak)); \
190 static const unsigned long __kcrctab_##sym \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100191 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 __attribute__((section("__kcrctab" sec), unused)) \
193 = (unsigned long) &__crc_##sym;
194#else
195#define __CRC_SYMBOL(sym, sec)
196#endif
197
198/* For every exported symbol, place a struct in the __ksymtab section */
199#define __EXPORT_SYMBOL(sym, sec) \
Patrick McHardya1a8fee2006-03-23 22:07:34 -0800200 extern typeof(sym) sym; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 __CRC_SYMBOL(sym, sec) \
202 static const char __kstrtab_##sym[] \
Rusty Russellea01e792008-03-13 09:02:17 +0000203 __attribute__((section("__ksymtab_strings"), aligned(1))) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 = MODULE_SYMBOL_PREFIX #sym; \
205 static const struct kernel_symbol __ksymtab_##sym \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100206 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 __attribute__((section("__ksymtab" sec), unused)) \
208 = { (unsigned long)&sym, __kstrtab_##sym }
209
210#define EXPORT_SYMBOL(sym) \
211 __EXPORT_SYMBOL(sym, "")
212
213#define EXPORT_SYMBOL_GPL(sym) \
214 __EXPORT_SYMBOL(sym, "_gpl")
215
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800216#define EXPORT_SYMBOL_GPL_FUTURE(sym) \
217 __EXPORT_SYMBOL(sym, "_gpl_future")
218
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700219
220#ifdef CONFIG_UNUSED_SYMBOLS
221#define EXPORT_UNUSED_SYMBOL(sym) __EXPORT_SYMBOL(sym, "_unused")
222#define EXPORT_UNUSED_SYMBOL_GPL(sym) __EXPORT_SYMBOL(sym, "_unused_gpl")
223#else
224#define EXPORT_UNUSED_SYMBOL(sym)
225#define EXPORT_UNUSED_SYMBOL_GPL(sym)
226#endif
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228#endif
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230enum module_state
231{
232 MODULE_STATE_LIVE,
233 MODULE_STATE_COMING,
234 MODULE_STATE_GOING,
235};
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237struct module
238{
239 enum module_state state;
240
241 /* Member of list of modules */
242 struct list_head list;
243
244 /* Unique handle for this module */
245 char name[MODULE_NAME_LEN];
246
247 /* Sysfs stuff. */
248 struct module_kobject mkobj;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800249 struct module_attribute *modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -0700250 const char *version;
251 const char *srcversion;
Kay Sievers270a6c42007-01-18 13:26:15 +0100252 struct kobject *holders_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 /* Exported symbols */
255 const struct kernel_symbol *syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 const unsigned long *crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500257 unsigned int num_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Rusty Russelle180a6b2009-03-31 13:05:29 -0600259 /* Kernel parameters. */
260 struct kernel_param *kp;
261 unsigned int num_kp;
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* GPL-only exported symbols. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 unsigned int num_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500265 const struct kernel_symbol *gpl_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 const unsigned long *gpl_crcs;
267
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500268#ifdef CONFIG_UNUSED_SYMBOLS
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700269 /* unused exported symbols. */
270 const struct kernel_symbol *unused_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700271 const unsigned long *unused_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500272 unsigned int num_unused_syms;
273
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700274 /* GPL-only, unused exported symbols. */
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700275 unsigned int num_unused_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500276 const struct kernel_symbol *unused_gpl_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700277 const unsigned long *unused_gpl_crcs;
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500278#endif
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700279
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800280 /* symbols that will be GPL-only in the near future. */
281 const struct kernel_symbol *gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800282 const unsigned long *gpl_future_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500283 unsigned int num_gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* Exception table */
286 unsigned int num_exentries;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500287 struct exception_table_entry *extable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 /* Startup function. */
290 int (*init)(void);
291
292 /* If this is non-NULL, vfree after init() returns */
293 void *module_init;
294
295 /* Here is the actual code + data, vfree'd on unload. */
296 void *module_core;
297
298 /* Here are the sizes of the init and core sections */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500299 unsigned int init_size, core_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 /* The size of the executable code in each section. */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500302 unsigned int init_text_size, core_text_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* Arch-specific module values */
305 struct mod_arch_specific arch;
306
Randy Dunlap2bc2d612006-10-02 02:17:02 -0700307 unsigned int taints; /* same bits as kernel:tainted */
308
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800309#ifdef CONFIG_GENERIC_BUG
310 /* Support for BUG */
Richard Kennedyaf540682008-07-22 19:24:26 -0500311 unsigned num_bugs;
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800312 struct list_head bug_list;
313 struct bug_entry *bug_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#endif
315
316#ifdef CONFIG_KALLSYMS
Jan Beulich4a496222009-07-06 14:50:42 +0100317 /*
318 * We keep the symbol and string tables for kallsyms.
319 * The core_* fields below are temporary, loader-only (they
320 * could really be discarded after module init).
321 */
322 Elf_Sym *symtab, *core_symtab;
323 unsigned int num_symtab, core_num_syms;
Jan Beulich554bdfe2009-07-06 14:51:44 +0100324 char *strtab, *core_strtab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /* Section attributes */
327 struct module_sect_attrs *sect_attrs;
Roland McGrath6d760132007-10-16 23:26:40 -0700328
329 /* Notes attributes */
330 struct module_notes_attrs *notes_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#endif
332
333 /* Per-cpu data. */
334 void *percpu;
335
336 /* The command line arguments (may be mangled). People like
337 keeping pointers to this stuff */
338 char *args;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400339#ifdef CONFIG_TRACEPOINTS
340 struct tracepoint *tracepoints;
341 unsigned int num_tracepoints;
342#endif
Richard Kennedyaf540682008-07-22 19:24:26 -0500343
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100344#ifdef CONFIG_TRACING
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100345 const char **trace_bprintk_fmt_start;
346 unsigned int num_trace_bprintk_fmt;
347#endif
Steven Rostedt6d723732009-04-10 14:53:50 -0400348#ifdef CONFIG_EVENT_TRACING
349 struct ftrace_event_call *trace_events;
350 unsigned int num_trace_events;
351#endif
Steven Rostedt93eb6772009-04-15 13:24:06 -0400352#ifdef CONFIG_FTRACE_MCOUNT_RECORD
353 unsigned long *ftrace_callsites;
354 unsigned int num_ftrace_callsites;
355#endif
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100356
Richard Kennedyaf540682008-07-22 19:24:26 -0500357#ifdef CONFIG_MODULE_UNLOAD
358 /* What modules depend on me? */
359 struct list_head modules_which_use_me;
360
361 /* Who is waiting for us to be unloaded */
362 struct task_struct *waiter;
363
364 /* Destruction function. */
365 void (*exit)(void);
366
Christoph Lametere1783a22010-01-05 15:34:50 +0900367 struct module_ref {
368 int count;
369 } *refptr;
Richard Kennedyaf540682008-07-22 19:24:26 -0500370#endif
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700371
372#ifdef CONFIG_CONSTRUCTORS
373 /* Constructor functions. */
374 ctor_fn_t *ctors;
375 unsigned int num_ctors;
376#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377};
Roman Zippele61a1c12007-05-09 02:35:15 -0700378#ifndef MODULE_ARCH_INIT
379#define MODULE_ARCH_INIT {}
380#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Tim Abbottc6b37802008-12-05 19:03:59 -0500382extern struct mutex module_mutex;
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/* FIXME: It'd be nice to isolate modules during init, too, so they
385 aren't used before they (may) fail. But presently too much code
386 (IDE & SCSI) require entry into the module during init.*/
387static inline int module_is_live(struct module *mod)
388{
389 return mod->state != MODULE_STATE_GOING;
390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392struct module *__module_text_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600393struct module *__module_address(unsigned long addr);
394bool is_module_address(unsigned long addr);
395bool is_module_text_address(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Masami Hiramatsua06f6212009-01-06 14:41:49 -0800397static inline int within_module_core(unsigned long addr, struct module *mod)
398{
399 return (unsigned long)mod->module_core <= addr &&
400 addr < (unsigned long)mod->module_core + mod->core_size;
401}
402
403static inline int within_module_init(unsigned long addr, struct module *mod)
404{
405 return (unsigned long)mod->module_init <= addr &&
406 addr < (unsigned long)mod->module_init + mod->init_size;
407}
408
Tim Abbottc6b37802008-12-05 19:03:59 -0500409/* Search for module by name: must hold module_mutex. */
410struct module *find_module(const char *name);
411
412struct symsearch {
413 const struct kernel_symbol *start, *stop;
414 const unsigned long *crcs;
415 enum {
416 NOT_GPL_ONLY,
417 GPL_ONLY,
418 WILL_BE_GPL_ONLY,
419 } licence;
420 bool unused;
421};
422
423/* Search for an exported symbol by name. */
424const struct kernel_symbol *find_symbol(const char *name,
425 struct module **owner,
426 const unsigned long **crc,
427 bool gplok,
428 bool warn);
429
430/* Walk the exported symbol table */
431bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
432 unsigned int symnum, void *data), void *data);
433
Alexey Dobriyanea078902007-05-08 00:28:39 -0700434/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 symnum out of range. */
Alexey Dobriyanea078902007-05-08 00:28:39 -0700436int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
437 char *name, char *module_name, int *exported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439/* Look for this name: can be of form module:name. */
440unsigned long module_kallsyms_lookup_name(const char *name);
441
Anders Kaseorg75a66612008-12-05 19:03:58 -0500442int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
443 struct module *, unsigned long),
444 void *data);
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446extern void __module_put_and_exit(struct module *mod, long code)
447 __attribute__((noreturn));
448#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code);
449
450#ifdef CONFIG_MODULE_UNLOAD
451unsigned int module_refcount(struct module *mod);
452void __symbol_put(const char *symbol);
453#define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x)
454void symbol_put_addr(void *addr);
455
456/* Sometimes we know we already have a refcount, and it's easier not
457 to handle the error case (which only happens with rmmod --wait). */
458static inline void __module_get(struct module *module)
459{
460 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900461 preempt_disable();
462 __this_cpu_inc(module->refptr->count);
Li Zefan7ead8b82009-08-17 16:56:28 +0800463 trace_module_get(module, _THIS_IP_,
Christoph Lametere1783a22010-01-05 15:34:50 +0900464 __this_cpu_read(module->refptr->count));
465 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467}
468
469static inline int try_module_get(struct module *module)
470{
471 int ret = 1;
472
473 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900474 preempt_disable();
475
Li Zefan7ead8b82009-08-17 16:56:28 +0800476 if (likely(module_is_live(module))) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900477 __this_cpu_inc(module->refptr->count);
Li Zefan7ead8b82009-08-17 16:56:28 +0800478 trace_module_get(module, _THIS_IP_,
Christoph Lametere1783a22010-01-05 15:34:50 +0900479 __this_cpu_read(module->refptr->count));
Li Zefan7ead8b82009-08-17 16:56:28 +0800480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 else
482 ret = 0;
Christoph Lametere1783a22010-01-05 15:34:50 +0900483
484 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486 return ret;
487}
488
Al Virof6a57032006-10-18 01:47:25 -0400489extern void module_put(struct module *module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491#else /*!CONFIG_MODULE_UNLOAD*/
492static inline int try_module_get(struct module *module)
493{
494 return !module || module_is_live(module);
495}
496static inline void module_put(struct module *module)
497{
498}
499static inline void __module_get(struct module *module)
500{
501}
502#define symbol_put(x) do { } while(0)
503#define symbol_put_addr(p) do { } while(0)
504
505#endif /* CONFIG_MODULE_UNLOAD */
Tim Abbottc6b37802008-12-05 19:03:59 -0500506int use_module(struct module *a, struct module *b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508/* This is a #define so the string doesn't get put in every .o file */
509#define module_name(mod) \
510({ \
511 struct module *__mod = (mod); \
512 __mod ? __mod->name : "kernel"; \
513})
514
Rusty Russell6dd06c92008-01-29 17:13:22 -0500515/* For kallsyms to ask for address resolution. namebuf should be at
516 * least KSYM_NAME_LEN long: a pointer to namebuf is returned if
517 * found, otherwise NULL. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800518const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500519 unsigned long *symbolsize,
520 unsigned long *offset,
521 char **modname,
522 char *namebuf);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700523int lookup_module_symbol_name(unsigned long addr, char *symname);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700524int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526/* For extable.c to search modules' exception tables. */
527const struct exception_table_entry *search_module_extables(unsigned long addr);
528
529int register_module_notifier(struct notifier_block * nb);
530int unregister_module_notifier(struct notifier_block * nb);
531
532extern void print_modules(void);
533
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400534extern void module_update_tracepoints(void);
535extern int module_get_iter_tracepoints(struct tracepoint_iter *iter);
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537#else /* !CONFIG_MODULES... */
538#define EXPORT_SYMBOL(sym)
539#define EXPORT_SYMBOL_GPL(sym)
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800540#define EXPORT_SYMBOL_GPL_FUTURE(sym)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700541#define EXPORT_UNUSED_SYMBOL(sym)
542#define EXPORT_UNUSED_SYMBOL_GPL(sym)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544/* Given an address, look for it in the exception tables. */
545static inline const struct exception_table_entry *
546search_module_extables(unsigned long addr)
547{
548 return NULL;
549}
550
Rusty Russelle6104992009-03-31 13:05:31 -0600551static inline struct module *__module_address(unsigned long addr)
552{
553 return NULL;
554}
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556static inline struct module *__module_text_address(unsigned long addr)
557{
558 return NULL;
559}
560
Rusty Russelle6104992009-03-31 13:05:31 -0600561static inline bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -0700562{
Rusty Russelle6104992009-03-31 13:05:31 -0600563 return false;
564}
565
566static inline bool is_module_text_address(unsigned long addr)
567{
568 return false;
Ingo Molnar4d435f92006-07-03 00:24:24 -0700569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/* Get/put a kernel symbol (calls should be symmetric) */
572#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
573#define symbol_put(x) do { } while(0)
574#define symbol_put_addr(x) do { } while(0)
575
576static inline void __module_get(struct module *module)
577{
578}
579
580static inline int try_module_get(struct module *module)
581{
582 return 1;
583}
584
585static inline void module_put(struct module *module)
586{
587}
588
589#define module_name(mod) "kernel"
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/* For kallsyms to ask for address resolution. NULL means not found. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800592static inline const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500593 unsigned long *symbolsize,
594 unsigned long *offset,
595 char **modname,
596 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 return NULL;
599}
600
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700601static inline int lookup_module_symbol_name(unsigned long addr, char *symname)
602{
603 return -ERANGE;
604}
605
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700606static inline int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
607{
608 return -ERANGE;
609}
610
Alexey Dobriyanea078902007-05-08 00:28:39 -0700611static inline int module_get_kallsym(unsigned int symnum, unsigned long *value,
612 char *type, char *name,
613 char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Alexey Dobriyanea078902007-05-08 00:28:39 -0700615 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618static inline unsigned long module_kallsyms_lookup_name(const char *name)
619{
620 return 0;
621}
622
Anders Kaseorg75a66612008-12-05 19:03:58 -0500623static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
624 struct module *,
625 unsigned long),
626 void *data)
627{
628 return 0;
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631static inline int register_module_notifier(struct notifier_block * nb)
632{
633 /* no events will happen anyway, so this can always succeed */
634 return 0;
635}
636
637static inline int unregister_module_notifier(struct notifier_block * nb)
638{
639 return 0;
640}
641
642#define module_put_and_exit(code) do_exit(code)
643
644static inline void print_modules(void)
645{
646}
647
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400648static inline void module_update_tracepoints(void)
649{
650}
651
652static inline int module_get_iter_tracepoints(struct tracepoint_iter *iter)
653{
654 return 0;
655}
656
Randy Dunlapef665c12007-02-13 15:19:06 -0800657#endif /* CONFIG_MODULES */
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659struct device_driver;
Randy Dunlapef665c12007-02-13 15:19:06 -0800660#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661struct module;
662
Greg Kroah-Hartman7405c1e2007-11-01 10:39:50 -0700663extern struct kset *module_kset;
664extern struct kobj_type module_ktype;
665extern int module_sysfs_initialized;
Randy Dunlapef665c12007-02-13 15:19:06 -0800666
667int mod_sysfs_init(struct module *mod);
668int mod_sysfs_setup(struct module *mod,
669 struct kernel_param *kparam,
670 unsigned int num_params);
671int module_add_modinfo_attrs(struct module *mod);
672void module_remove_modinfo_attrs(struct module *mod);
673
674#else /* !CONFIG_SYSFS */
675
676static inline int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Randy Dunlapef665c12007-02-13 15:19:06 -0800678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Randy Dunlapef665c12007-02-13 15:19:06 -0800681static inline int mod_sysfs_setup(struct module *mod,
682 struct kernel_param *kparam,
683 unsigned int num_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Randy Dunlapef665c12007-02-13 15:19:06 -0800685 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Randy Dunlapef665c12007-02-13 15:19:06 -0800688static inline int module_add_modinfo_attrs(struct module *mod)
689{
690 return 0;
691}
692
693static inline void module_remove_modinfo_attrs(struct module *mod)
694{ }
695
696#endif /* CONFIG_SYSFS */
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
699
700/* BELOW HERE ALL THESE ARE OBSOLETE AND WILL VANISH */
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702#define __MODULE_STRING(x) __stringify(x)
703
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700704
705#ifdef CONFIG_GENERIC_BUG
706int module_bug_finalize(const Elf_Ehdr *, const Elf_Shdr *,
707 struct module *);
708void module_bug_cleanup(struct module *);
709
710#else /* !CONFIG_GENERIC_BUG */
711
712static inline int module_bug_finalize(const Elf_Ehdr *hdr,
713 const Elf_Shdr *sechdrs,
714 struct module *mod)
715{
716 return 0;
717}
718static inline void module_bug_cleanup(struct module *mod) {}
719#endif /* CONFIG_GENERIC_BUG */
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721#endif /* _LINUX_MODULE_H */