blob: e91cc650069a097a66096ad1e6dbe9b82896b14f [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>
Paul Gortmaker110bf6b2011-05-23 14:11:39 -040019#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
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
Rusty Russell730b69d2008-10-22 10:00:22 -050029#define MODULE_NAME_LEN MAX_PARAM_PREFIX_LEN
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031struct modversion_info
32{
33 unsigned long crc;
34 char name[MODULE_NAME_LEN];
35};
36
37struct module;
38
39struct module_attribute {
40 struct attribute attr;
41 ssize_t (*show)(struct module_attribute *, struct module *, char *);
42 ssize_t (*store)(struct module_attribute *, struct module *,
43 const char *, size_t count);
Matt Domschc988d2b2005-06-23 22:05:15 -070044 void (*setup)(struct module *, const char *);
45 int (*test)(struct module *);
46 void (*free)(struct module *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
Dmitry Torokhove94965e2010-12-15 14:00:19 -080049struct module_version_attribute {
50 struct module_attribute mattr;
51 const char *module_name;
52 const char *version;
Dmitry Torokhov98562ad2011-02-04 13:30:10 -080053} __attribute__ ((__aligned__(sizeof(void *))));
Dmitry Torokhove94965e2010-12-15 14:00:19 -080054
Dmitry Torokhov9b73a582011-02-07 16:02:27 -080055extern ssize_t __modver_version_show(struct module_attribute *,
56 struct module *, char *);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058struct module_kobject
59{
60 struct kobject kobj;
61 struct module *mod;
Kay Sieversf30c53a2007-01-15 20:22:02 +010062 struct kobject *drivers_dir;
Rusty Russell9b473de2008-10-22 10:00:22 -050063 struct module_param_attrs *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66/* These are either module local, or the kernel's dummy ones. */
67extern int init_module(void);
68extern void cleanup_module(void);
69
70/* Archs provide a method of finding the correct exception table. */
71struct exception_table_entry;
72
73const struct exception_table_entry *
74search_extable(const struct exception_table_entry *first,
75 const struct exception_table_entry *last,
76 unsigned long value);
77void sort_extable(struct exception_table_entry *start,
78 struct exception_table_entry *finish);
79void sort_main_extable(void);
Rusty Russellad6561d2009-06-12 21:47:03 -060080void trim_init_extable(struct module *m);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#ifdef MODULE
83#define MODULE_GENERIC_TABLE(gtype,name) \
84extern const struct gtype##_id __mod_##gtype##_table \
85 __attribute__ ((unused, alias(__stringify(name))))
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#else /* !MODULE */
88#define MODULE_GENERIC_TABLE(gtype,name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#endif
90
91/* Generic info of form tag = "info" */
92#define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
93
94/* For userspace: you can also call me... */
95#define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias)
96
97/*
98 * The following license idents are currently accepted as indicating free
99 * software modules
100 *
101 * "GPL" [GNU Public License v2 or later]
102 * "GPL v2" [GNU Public License v2]
103 * "GPL and additional rights" [GNU Public License v2 rights and more]
104 * "Dual BSD/GPL" [GNU Public License v2
105 * or BSD license choice]
Xose Vazquez Perez8d27e902006-06-23 02:05:13 -0700106 * "Dual MIT/GPL" [GNU Public License v2
107 * or MIT license choice]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * "Dual MPL/GPL" [GNU Public License v2
109 * or Mozilla license choice]
110 *
111 * The following other idents are available
112 *
113 * "Proprietary" [Non free products]
114 *
115 * There are dual licensed components, but when running with Linux it is the
116 * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL
117 * is a GPL combined work.
118 *
119 * This exists for several reasons
120 * 1. So modinfo can show license info for users wanting to vet their setup
121 * is free
122 * 2. So the community can ignore bug reports including proprietary modules
123 * 3. So vendors can do likewise based on their own policies
124 */
125#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
126
Johannes Berg1d7015c2009-09-25 00:32:58 -0600127/*
128 * Author(s), use "Name <email>" or just "Name", for multiple
129 * authors use multiple MODULE_AUTHOR() statements/lines.
130 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#define MODULE_AUTHOR(_author) MODULE_INFO(author, _author)
132
133/* What your module does. */
134#define MODULE_DESCRIPTION(_description) MODULE_INFO(description, _description)
135
136/* One for each parameter, describing how to use it. Some files do
137 multiple of these per line, so can't just use MODULE_INFO. */
138#define MODULE_PARM_DESC(_parm, desc) \
139 __MODULE_INFO(parm, _parm, #_parm ":" desc)
140
141#define MODULE_DEVICE_TABLE(type,name) \
142 MODULE_GENERIC_TABLE(type##_device,name)
143
144/* Version of form [<epoch>:]<version>[-<extra-version>].
145 Or for CVS/RCS ID version, everything but the number is stripped.
146 <epoch>: A (small) unsigned integer which allows you to start versions
147 anew. If not mentioned, it's zero. eg. "2:1.0" is after
148 "1:2.0".
149 <version>: The <version> may contain only alphanumerics and the
150 character `.'. Ordered by numeric sort for numeric parts,
151 ascii sort for ascii parts (as per RPM or DEB algorithm).
152 <extraversion>: Like <version>, but inserted for local
153 customizations, eg "rh3" or "rusty1".
154
155 Using this automatically adds a checksum of the .c files and the
156 local headers in "srcversion".
157*/
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800158
Rusty Russell3b90a5b2011-01-24 14:32:51 -0600159#if defined(MODULE) || !defined(CONFIG_SYSFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800161#else
162#define MODULE_VERSION(_version) \
Dmitry Torokhovb4bc84282011-02-07 16:02:25 -0800163 static struct module_version_attribute ___modver_attr = { \
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800164 .mattr = { \
165 .attr = { \
166 .name = "version", \
167 .mode = S_IRUGO, \
168 }, \
169 .show = __modver_version_show, \
170 }, \
171 .module_name = KBUILD_MODNAME, \
172 .version = _version, \
Dmitry Torokhovb4bc84282011-02-07 16:02:25 -0800173 }; \
174 static const struct module_version_attribute \
175 __used __attribute__ ((__section__ ("__modver"))) \
176 * __moduleparam_const __modver_attr = &___modver_attr
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800177#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Jon Masters187afbe2006-08-28 17:08:21 -0500179/* Optional firmware file (or files) needed by the module
180 * format is simply firmware file name. Multiple firmware
181 * files require multiple MODULE_FIRMWARE() specifiers */
182#define MODULE_FIRMWARE(_firmware) MODULE_INFO(firmware, _firmware)
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/* Given an address, look for it in the exception tables */
185const struct exception_table_entry *search_exception_tables(unsigned long add);
186
187struct notifier_block;
188
189#ifdef CONFIG_MODULES
190
Dave Young5ed10912010-03-10 15:24:06 -0800191extern int modules_disabled; /* for sysctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/* Get/put a kernel symbol (calls must be symmetric) */
193void *__symbol_get(const char *symbol);
194void *__symbol_get_gpl(const char *symbol);
195#define symbol_get(x) ((typeof(&x))(__symbol_get(MODULE_SYMBOL_PREFIX #x)))
196
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600197/* modules using other modules: kdb wants to see this. */
198struct module_use {
199 struct list_head source_list;
200 struct list_head target_list;
201 struct module *source, *target;
202};
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204enum module_state
205{
206 MODULE_STATE_LIVE,
207 MODULE_STATE_COMING,
208 MODULE_STATE_GOING,
209};
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211struct module
212{
213 enum module_state state;
214
215 /* Member of list of modules */
216 struct list_head list;
217
218 /* Unique handle for this module */
219 char name[MODULE_NAME_LEN];
220
221 /* Sysfs stuff. */
222 struct module_kobject mkobj;
Greg Kroah-Hartman03e88ae2006-02-16 13:50:23 -0800223 struct module_attribute *modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -0700224 const char *version;
225 const char *srcversion;
Kay Sievers270a6c42007-01-18 13:26:15 +0100226 struct kobject *holders_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /* Exported symbols */
229 const struct kernel_symbol *syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 const unsigned long *crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500231 unsigned int num_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Rusty Russelle180a6b2009-03-31 13:05:29 -0600233 /* Kernel parameters. */
234 struct kernel_param *kp;
235 unsigned int num_kp;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* GPL-only exported symbols. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 unsigned int num_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500239 const struct kernel_symbol *gpl_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 const unsigned long *gpl_crcs;
241
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500242#ifdef CONFIG_UNUSED_SYMBOLS
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700243 /* unused exported symbols. */
244 const struct kernel_symbol *unused_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700245 const unsigned long *unused_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500246 unsigned int num_unused_syms;
247
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700248 /* GPL-only, unused exported symbols. */
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700249 unsigned int num_unused_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500250 const struct kernel_symbol *unused_gpl_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700251 const unsigned long *unused_gpl_crcs;
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500252#endif
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700253
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800254 /* symbols that will be GPL-only in the near future. */
255 const struct kernel_symbol *gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800256 const unsigned long *gpl_future_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500257 unsigned int num_gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* Exception table */
260 unsigned int num_exentries;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500261 struct exception_table_entry *extable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /* Startup function. */
264 int (*init)(void);
265
266 /* If this is non-NULL, vfree after init() returns */
267 void *module_init;
268
269 /* Here is the actual code + data, vfree'd on unload. */
270 void *module_core;
271
272 /* Here are the sizes of the init and core sections */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500273 unsigned int init_size, core_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* The size of the executable code in each section. */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500276 unsigned int init_text_size, core_text_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
matthieu castet84e1c6b2010-11-16 22:35:16 +0100278 /* Size of RO sections of the module (text+rodata) */
279 unsigned int init_ro_size, core_ro_size;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* Arch-specific module values */
282 struct mod_arch_specific arch;
283
Randy Dunlap2bc2d612006-10-02 02:17:02 -0700284 unsigned int taints; /* same bits as kernel:tainted */
285
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800286#ifdef CONFIG_GENERIC_BUG
287 /* Support for BUG */
Richard Kennedyaf540682008-07-22 19:24:26 -0500288 unsigned num_bugs;
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800289 struct list_head bug_list;
290 struct bug_entry *bug_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#endif
292
293#ifdef CONFIG_KALLSYMS
Jan Beulich4a496222009-07-06 14:50:42 +0100294 /*
295 * We keep the symbol and string tables for kallsyms.
296 * The core_* fields below are temporary, loader-only (they
297 * could really be discarded after module init).
298 */
299 Elf_Sym *symtab, *core_symtab;
300 unsigned int num_symtab, core_num_syms;
Jan Beulich554bdfe2009-07-06 14:51:44 +0100301 char *strtab, *core_strtab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* Section attributes */
304 struct module_sect_attrs *sect_attrs;
Roland McGrath6d760132007-10-16 23:26:40 -0700305
306 /* Notes attributes */
307 struct module_notes_attrs *notes_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#endif
309
Richard Kennedya288bd62011-05-19 16:55:25 -0600310 /* The command line arguments (may be mangled). People like
311 keeping pointers to this stuff */
312 char *args;
313
Tejun Heo259354d2010-03-10 18:56:10 +0900314#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /* Per-cpu data. */
Tejun Heo259354d2010-03-10 18:56:10 +0900316 void __percpu *percpu;
317 unsigned int percpu_size;
318#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400320#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400321 unsigned int num_tracepoints;
Richard Kennedya288bd62011-05-19 16:55:25 -0600322 struct tracepoint * const *tracepoints_ptrs;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400323#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -0400324#ifdef HAVE_JUMP_LABEL
325 struct jump_entry *jump_entries;
326 unsigned int num_jump_entries;
327#endif
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100328#ifdef CONFIG_TRACING
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100329 unsigned int num_trace_bprintk_fmt;
Richard Kennedya288bd62011-05-19 16:55:25 -0600330 const char **trace_bprintk_fmt_start;
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100331#endif
Steven Rostedt6d723732009-04-10 14:53:50 -0400332#ifdef CONFIG_EVENT_TRACING
Steven Rostedte4a9ea52011-01-27 09:15:30 -0500333 struct ftrace_event_call **trace_events;
Steven Rostedt6d723732009-04-10 14:53:50 -0400334 unsigned int num_trace_events;
335#endif
Steven Rostedt93eb6772009-04-15 13:24:06 -0400336#ifdef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedt93eb6772009-04-15 13:24:06 -0400337 unsigned int num_ftrace_callsites;
Richard Kennedya288bd62011-05-19 16:55:25 -0600338 unsigned long *ftrace_callsites;
Steven Rostedt93eb6772009-04-15 13:24:06 -0400339#endif
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100340
Richard Kennedyaf540682008-07-22 19:24:26 -0500341#ifdef CONFIG_MODULE_UNLOAD
342 /* What modules depend on me? */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700343 struct list_head source_list;
344 /* What modules do I depend on? */
345 struct list_head target_list;
Richard Kennedyaf540682008-07-22 19:24:26 -0500346
347 /* Who is waiting for us to be unloaded */
348 struct task_struct *waiter;
349
350 /* Destruction function. */
351 void (*exit)(void);
352
Christoph Lametere1783a22010-01-05 15:34:50 +0900353 struct module_ref {
Nick Piggin5fbfb182010-04-01 19:09:40 +1100354 unsigned int incs;
355 unsigned int decs;
Tejun Heo43cf38e2010-02-02 14:38:57 +0900356 } __percpu *refptr;
Richard Kennedyaf540682008-07-22 19:24:26 -0500357#endif
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700358
359#ifdef CONFIG_CONSTRUCTORS
360 /* Constructor functions. */
361 ctor_fn_t *ctors;
362 unsigned int num_ctors;
363#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364};
Roman Zippele61a1c12007-05-09 02:35:15 -0700365#ifndef MODULE_ARCH_INIT
366#define MODULE_ARCH_INIT {}
367#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Tim Abbottc6b37802008-12-05 19:03:59 -0500369extern struct mutex module_mutex;
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/* FIXME: It'd be nice to isolate modules during init, too, so they
372 aren't used before they (may) fail. But presently too much code
373 (IDE & SCSI) require entry into the module during init.*/
374static inline int module_is_live(struct module *mod)
375{
376 return mod->state != MODULE_STATE_GOING;
377}
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379struct module *__module_text_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600380struct module *__module_address(unsigned long addr);
381bool is_module_address(unsigned long addr);
Tejun Heo10fad5e2010-03-10 18:57:54 +0900382bool is_module_percpu_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600383bool is_module_text_address(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Masami Hiramatsua06f6212009-01-06 14:41:49 -0800385static inline int within_module_core(unsigned long addr, struct module *mod)
386{
387 return (unsigned long)mod->module_core <= addr &&
388 addr < (unsigned long)mod->module_core + mod->core_size;
389}
390
391static inline int within_module_init(unsigned long addr, struct module *mod)
392{
393 return (unsigned long)mod->module_init <= addr &&
394 addr < (unsigned long)mod->module_init + mod->init_size;
395}
396
Tim Abbottc6b37802008-12-05 19:03:59 -0500397/* Search for module by name: must hold module_mutex. */
398struct module *find_module(const char *name);
399
400struct symsearch {
401 const struct kernel_symbol *start, *stop;
402 const unsigned long *crcs;
403 enum {
404 NOT_GPL_ONLY,
405 GPL_ONLY,
406 WILL_BE_GPL_ONLY,
407 } licence;
408 bool unused;
409};
410
411/* Search for an exported symbol by name. */
412const struct kernel_symbol *find_symbol(const char *name,
413 struct module **owner,
414 const unsigned long **crc,
415 bool gplok,
416 bool warn);
417
418/* Walk the exported symbol table */
Rusty Russellde4d8d52011-04-19 21:49:58 +0200419bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
420 struct module *owner,
421 void *data), void *data);
Tim Abbottc6b37802008-12-05 19:03:59 -0500422
Alexey Dobriyanea078902007-05-08 00:28:39 -0700423/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 symnum out of range. */
Alexey Dobriyanea078902007-05-08 00:28:39 -0700425int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
426 char *name, char *module_name, int *exported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428/* Look for this name: can be of form module:name. */
429unsigned long module_kallsyms_lookup_name(const char *name);
430
Anders Kaseorg75a66612008-12-05 19:03:58 -0500431int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
432 struct module *, unsigned long),
433 void *data);
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435extern void __module_put_and_exit(struct module *mod, long code)
436 __attribute__((noreturn));
437#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code);
438
439#ifdef CONFIG_MODULE_UNLOAD
440unsigned int module_refcount(struct module *mod);
441void __symbol_put(const char *symbol);
442#define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x)
443void symbol_put_addr(void *addr);
444
445/* Sometimes we know we already have a refcount, and it's easier not
446 to handle the error case (which only happens with rmmod --wait). */
447static inline void __module_get(struct module *module)
448{
449 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900450 preempt_disable();
Nick Piggin5fbfb182010-04-01 19:09:40 +1100451 __this_cpu_inc(module->refptr->incs);
Li Zefanae832d12010-03-24 10:57:43 +0800452 trace_module_get(module, _THIS_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +0900453 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455}
456
457static inline int try_module_get(struct module *module)
458{
459 int ret = 1;
460
461 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900462 preempt_disable();
463
Li Zefan7ead8b82009-08-17 16:56:28 +0800464 if (likely(module_is_live(module))) {
Nick Piggin5fbfb182010-04-01 19:09:40 +1100465 __this_cpu_inc(module->refptr->incs);
Li Zefanae832d12010-03-24 10:57:43 +0800466 trace_module_get(module, _THIS_IP_);
Nick Piggin5fbfb182010-04-01 19:09:40 +1100467 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 ret = 0;
Christoph Lametere1783a22010-01-05 15:34:50 +0900469
470 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472 return ret;
473}
474
Al Virof6a57032006-10-18 01:47:25 -0400475extern void module_put(struct module *module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477#else /*!CONFIG_MODULE_UNLOAD*/
478static inline int try_module_get(struct module *module)
479{
480 return !module || module_is_live(module);
481}
482static inline void module_put(struct module *module)
483{
484}
485static inline void __module_get(struct module *module)
486{
487}
488#define symbol_put(x) do { } while(0)
489#define symbol_put_addr(p) do { } while(0)
490
491#endif /* CONFIG_MODULE_UNLOAD */
Anders Kaseorgdfd62d12010-11-24 15:21:10 -0600492int ref_module(struct module *a, struct module *b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494/* This is a #define so the string doesn't get put in every .o file */
495#define module_name(mod) \
496({ \
497 struct module *__mod = (mod); \
498 __mod ? __mod->name : "kernel"; \
499})
500
Rusty Russell6dd06c92008-01-29 17:13:22 -0500501/* For kallsyms to ask for address resolution. namebuf should be at
502 * least KSYM_NAME_LEN long: a pointer to namebuf is returned if
503 * found, otherwise NULL. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800504const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500505 unsigned long *symbolsize,
506 unsigned long *offset,
507 char **modname,
508 char *namebuf);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700509int lookup_module_symbol_name(unsigned long addr, char *symname);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700510int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512/* For extable.c to search modules' exception tables. */
513const struct exception_table_entry *search_module_extables(unsigned long addr);
514
515int register_module_notifier(struct notifier_block * nb);
516int unregister_module_notifier(struct notifier_block * nb);
517
518extern void print_modules(void);
519
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400520extern void module_update_tracepoints(void);
521extern int module_get_iter_tracepoints(struct tracepoint_iter *iter);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523#else /* !CONFIG_MODULES... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525/* Given an address, look for it in the exception tables. */
526static inline const struct exception_table_entry *
527search_module_extables(unsigned long addr)
528{
529 return NULL;
530}
531
Rusty Russelle6104992009-03-31 13:05:31 -0600532static inline struct module *__module_address(unsigned long addr)
533{
534 return NULL;
535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537static inline struct module *__module_text_address(unsigned long addr)
538{
539 return NULL;
540}
541
Rusty Russelle6104992009-03-31 13:05:31 -0600542static inline bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -0700543{
Rusty Russelle6104992009-03-31 13:05:31 -0600544 return false;
545}
546
Randy Dunlapd5e50da2010-03-31 11:33:42 +0900547static inline bool is_module_percpu_address(unsigned long addr)
548{
549 return false;
550}
551
Rusty Russelle6104992009-03-31 13:05:31 -0600552static inline bool is_module_text_address(unsigned long addr)
553{
554 return false;
Ingo Molnar4d435f92006-07-03 00:24:24 -0700555}
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557/* Get/put a kernel symbol (calls should be symmetric) */
558#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
559#define symbol_put(x) do { } while(0)
560#define symbol_put_addr(x) do { } while(0)
561
562static inline void __module_get(struct module *module)
563{
564}
565
566static inline int try_module_get(struct module *module)
567{
568 return 1;
569}
570
571static inline void module_put(struct module *module)
572{
573}
574
575#define module_name(mod) "kernel"
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/* For kallsyms to ask for address resolution. NULL means not found. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800578static inline const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500579 unsigned long *symbolsize,
580 unsigned long *offset,
581 char **modname,
582 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 return NULL;
585}
586
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700587static inline int lookup_module_symbol_name(unsigned long addr, char *symname)
588{
589 return -ERANGE;
590}
591
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700592static inline int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
593{
594 return -ERANGE;
595}
596
Alexey Dobriyanea078902007-05-08 00:28:39 -0700597static inline int module_get_kallsym(unsigned int symnum, unsigned long *value,
598 char *type, char *name,
599 char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Alexey Dobriyanea078902007-05-08 00:28:39 -0700601 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604static inline unsigned long module_kallsyms_lookup_name(const char *name)
605{
606 return 0;
607}
608
Anders Kaseorg75a66612008-12-05 19:03:58 -0500609static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
610 struct module *,
611 unsigned long),
612 void *data)
613{
614 return 0;
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617static inline int register_module_notifier(struct notifier_block * nb)
618{
619 /* no events will happen anyway, so this can always succeed */
620 return 0;
621}
622
623static inline int unregister_module_notifier(struct notifier_block * nb)
624{
625 return 0;
626}
627
628#define module_put_and_exit(code) do_exit(code)
629
630static inline void print_modules(void)
631{
632}
633
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400634static inline void module_update_tracepoints(void)
635{
636}
637
638static inline int module_get_iter_tracepoints(struct tracepoint_iter *iter)
639{
640 return 0;
641}
Randy Dunlapef665c12007-02-13 15:19:06 -0800642#endif /* CONFIG_MODULES */
643
Randy Dunlapef665c12007-02-13 15:19:06 -0800644#ifdef CONFIG_SYSFS
Greg Kroah-Hartman7405c1e2007-11-01 10:39:50 -0700645extern struct kset *module_kset;
646extern struct kobj_type module_ktype;
647extern int module_sysfs_initialized;
Randy Dunlapef665c12007-02-13 15:19:06 -0800648#endif /* CONFIG_SYSFS */
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
651
652/* BELOW HERE ALL THESE ARE OBSOLETE AND WILL VANISH */
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654#define __MODULE_STRING(x) __stringify(x)
655
matthieu castet84e1c6b2010-11-16 22:35:16 +0100656#ifdef CONFIG_DEBUG_SET_MODULE_RONX
657extern void set_all_modules_text_rw(void);
658extern void set_all_modules_text_ro(void);
659#else
660static inline void set_all_modules_text_rw(void) { }
661static inline void set_all_modules_text_ro(void) { }
662#endif
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700663
664#ifdef CONFIG_GENERIC_BUG
Linus Torvalds53363772010-10-05 11:29:27 -0700665void module_bug_finalize(const Elf_Ehdr *, const Elf_Shdr *,
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700666 struct module *);
667void module_bug_cleanup(struct module *);
668
669#else /* !CONFIG_GENERIC_BUG */
670
Linus Torvalds53363772010-10-05 11:29:27 -0700671static inline void module_bug_finalize(const Elf_Ehdr *hdr,
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700672 const Elf_Shdr *sechdrs,
673 struct module *mod)
674{
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700675}
676static inline void module_bug_cleanup(struct module *mod) {}
677#endif /* CONFIG_GENERIC_BUG */
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679#endif /* _LINUX_MODULE_H */