blob: 4cfebc211695991801871035e221ca39d4555760 [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
Christoph Lametere1783a22010-01-05 15:34:50 +090020#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/module.h>
22
Li Zefan7ead8b82009-08-17 16:56:28 +080023#include <trace/events/module.h>
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/* Not Yet Implemented */
26#define MODULE_SUPPORTED_DEVICE(name)
27
Alan Jenkins9e1b9b82009-11-07 21:03:54 +000028/* Some toolchains use a `_' prefix for all user symbols. */
29#ifdef CONFIG_SYMBOL_PREFIX
30#define MODULE_SYMBOL_PREFIX CONFIG_SYMBOL_PREFIX
31#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define MODULE_SYMBOL_PREFIX ""
33#endif
34
Rusty Russell730b69d2008-10-22 10:00:22 -050035#define MODULE_NAME_LEN MAX_PARAM_PREFIX_LEN
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37struct kernel_symbol
38{
39 unsigned long value;
40 const char *name;
41};
42
43struct modversion_info
44{
45 unsigned long crc;
46 char name[MODULE_NAME_LEN];
47};
48
49struct module;
50
51struct module_attribute {
52 struct attribute attr;
53 ssize_t (*show)(struct module_attribute *, struct module *, char *);
54 ssize_t (*store)(struct module_attribute *, struct module *,
55 const char *, size_t count);
Matt Domschc988d2b2005-06-23 22:05:15 -070056 void (*setup)(struct module *, const char *);
57 int (*test)(struct module *);
58 void (*free)(struct module *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Dmitry Torokhove94965e2010-12-15 14:00:19 -080061struct module_version_attribute {
62 struct module_attribute mattr;
63 const char *module_name;
64 const char *version;
Dmitry Torokhov98562ad2011-02-04 13:30:10 -080065} __attribute__ ((__aligned__(sizeof(void *))));
Dmitry Torokhove94965e2010-12-15 14:00:19 -080066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067struct module_kobject
68{
69 struct kobject kobj;
70 struct module *mod;
Kay Sieversf30c53a2007-01-15 20:22:02 +010071 struct kobject *drivers_dir;
Rusty Russell9b473de2008-10-22 10:00:22 -050072 struct module_param_attrs *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75/* These are either module local, or the kernel's dummy ones. */
76extern int init_module(void);
77extern void cleanup_module(void);
78
79/* Archs provide a method of finding the correct exception table. */
80struct exception_table_entry;
81
82const struct exception_table_entry *
83search_extable(const struct exception_table_entry *first,
84 const struct exception_table_entry *last,
85 unsigned long value);
86void sort_extable(struct exception_table_entry *start,
87 struct exception_table_entry *finish);
88void sort_main_extable(void);
Rusty Russellad6561d2009-06-12 21:47:03 -060089void trim_init_extable(struct module *m);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#ifdef MODULE
92#define MODULE_GENERIC_TABLE(gtype,name) \
93extern const struct gtype##_id __mod_##gtype##_table \
94 __attribute__ ((unused, alias(__stringify(name))))
95
96extern struct module __this_module;
97#define THIS_MODULE (&__this_module)
98#else /* !MODULE */
99#define MODULE_GENERIC_TABLE(gtype,name)
100#define THIS_MODULE ((struct module *)0)
101#endif
102
103/* Generic info of form tag = "info" */
104#define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
105
106/* For userspace: you can also call me... */
107#define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias)
108
109/*
110 * The following license idents are currently accepted as indicating free
111 * software modules
112 *
113 * "GPL" [GNU Public License v2 or later]
114 * "GPL v2" [GNU Public License v2]
115 * "GPL and additional rights" [GNU Public License v2 rights and more]
116 * "Dual BSD/GPL" [GNU Public License v2
117 * or BSD license choice]
Xose Vazquez Perez8d27e902006-06-23 02:05:13 -0700118 * "Dual MIT/GPL" [GNU Public License v2
119 * or MIT license choice]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 * "Dual MPL/GPL" [GNU Public License v2
121 * or Mozilla license choice]
122 *
123 * The following other idents are available
124 *
125 * "Proprietary" [Non free products]
126 *
127 * There are dual licensed components, but when running with Linux it is the
128 * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL
129 * is a GPL combined work.
130 *
131 * This exists for several reasons
132 * 1. So modinfo can show license info for users wanting to vet their setup
133 * is free
134 * 2. So the community can ignore bug reports including proprietary modules
135 * 3. So vendors can do likewise based on their own policies
136 */
137#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
138
Johannes Berg1d7015c2009-09-25 00:32:58 -0600139/*
140 * Author(s), use "Name <email>" or just "Name", for multiple
141 * authors use multiple MODULE_AUTHOR() statements/lines.
142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#define MODULE_AUTHOR(_author) MODULE_INFO(author, _author)
144
145/* What your module does. */
146#define MODULE_DESCRIPTION(_description) MODULE_INFO(description, _description)
147
148/* One for each parameter, describing how to use it. Some files do
149 multiple of these per line, so can't just use MODULE_INFO. */
150#define MODULE_PARM_DESC(_parm, desc) \
151 __MODULE_INFO(parm, _parm, #_parm ":" desc)
152
153#define MODULE_DEVICE_TABLE(type,name) \
154 MODULE_GENERIC_TABLE(type##_device,name)
155
156/* Version of form [<epoch>:]<version>[-<extra-version>].
157 Or for CVS/RCS ID version, everything but the number is stripped.
158 <epoch>: A (small) unsigned integer which allows you to start versions
159 anew. If not mentioned, it's zero. eg. "2:1.0" is after
160 "1:2.0".
161 <version>: The <version> may contain only alphanumerics and the
162 character `.'. Ordered by numeric sort for numeric parts,
163 ascii sort for ascii parts (as per RPM or DEB algorithm).
164 <extraversion>: Like <version>, but inserted for local
165 customizations, eg "rh3" or "rusty1".
166
167 Using this automatically adds a checksum of the .c files and the
168 local headers in "srcversion".
169*/
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800170
Rusty Russell3b90a5b2011-01-24 14:32:51 -0600171#if defined(MODULE) || !defined(CONFIG_SYSFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800173#else
174#define MODULE_VERSION(_version) \
175 extern ssize_t __modver_version_show(struct module_attribute *, \
176 struct module *, char *); \
Dmitry Torokhovb4bc84282011-02-07 16:02:25 -0800177 static struct module_version_attribute ___modver_attr = { \
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800178 .mattr = { \
179 .attr = { \
180 .name = "version", \
181 .mode = S_IRUGO, \
182 }, \
183 .show = __modver_version_show, \
184 }, \
185 .module_name = KBUILD_MODNAME, \
186 .version = _version, \
Dmitry Torokhovb4bc84282011-02-07 16:02:25 -0800187 }; \
188 static const struct module_version_attribute \
189 __used __attribute__ ((__section__ ("__modver"))) \
190 * __moduleparam_const __modver_attr = &___modver_attr
Dmitry Torokhove94965e2010-12-15 14:00:19 -0800191#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Jon Masters187afbe2006-08-28 17:08:21 -0500193/* Optional firmware file (or files) needed by the module
194 * format is simply firmware file name. Multiple firmware
195 * files require multiple MODULE_FIRMWARE() specifiers */
196#define MODULE_FIRMWARE(_firmware) MODULE_INFO(firmware, _firmware)
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* Given an address, look for it in the exception tables */
199const struct exception_table_entry *search_exception_tables(unsigned long add);
200
201struct notifier_block;
202
203#ifdef CONFIG_MODULES
204
Dave Young5ed10912010-03-10 15:24:06 -0800205extern int modules_disabled; /* for sysctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* Get/put a kernel symbol (calls must be symmetric) */
207void *__symbol_get(const char *symbol);
208void *__symbol_get_gpl(const char *symbol);
209#define symbol_get(x) ((typeof(&x))(__symbol_get(MODULE_SYMBOL_PREFIX #x)))
210
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600211/* modules using other modules: kdb wants to see this. */
212struct module_use {
213 struct list_head source_list;
214 struct list_head target_list;
215 struct module *source, *target;
216};
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218#ifndef __GENKSYMS__
219#ifdef CONFIG_MODVERSIONS
220/* Mark the CRC weak since genksyms apparently decides not to
221 * generate a checksums for some symbols */
222#define __CRC_SYMBOL(sym, sec) \
223 extern void *__crc_##sym __attribute__((weak)); \
224 static const unsigned long __kcrctab_##sym \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100225 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 __attribute__((section("__kcrctab" sec), unused)) \
227 = (unsigned long) &__crc_##sym;
228#else
229#define __CRC_SYMBOL(sym, sec)
230#endif
231
232/* For every exported symbol, place a struct in the __ksymtab section */
233#define __EXPORT_SYMBOL(sym, sec) \
Patrick McHardya1a8fee2006-03-23 22:07:34 -0800234 extern typeof(sym) sym; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 __CRC_SYMBOL(sym, sec) \
236 static const char __kstrtab_##sym[] \
Rusty Russellea01e792008-03-13 09:02:17 +0000237 __attribute__((section("__ksymtab_strings"), aligned(1))) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 = MODULE_SYMBOL_PREFIX #sym; \
239 static const struct kernel_symbol __ksymtab_##sym \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100240 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 __attribute__((section("__ksymtab" sec), unused)) \
242 = { (unsigned long)&sym, __kstrtab_##sym }
243
244#define EXPORT_SYMBOL(sym) \
245 __EXPORT_SYMBOL(sym, "")
246
247#define EXPORT_SYMBOL_GPL(sym) \
248 __EXPORT_SYMBOL(sym, "_gpl")
249
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800250#define EXPORT_SYMBOL_GPL_FUTURE(sym) \
251 __EXPORT_SYMBOL(sym, "_gpl_future")
252
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700253
254#ifdef CONFIG_UNUSED_SYMBOLS
255#define EXPORT_UNUSED_SYMBOL(sym) __EXPORT_SYMBOL(sym, "_unused")
256#define EXPORT_UNUSED_SYMBOL_GPL(sym) __EXPORT_SYMBOL(sym, "_unused_gpl")
257#else
258#define EXPORT_UNUSED_SYMBOL(sym)
259#define EXPORT_UNUSED_SYMBOL_GPL(sym)
260#endif
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264enum module_state
265{
266 MODULE_STATE_LIVE,
267 MODULE_STATE_COMING,
268 MODULE_STATE_GOING,
269};
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271struct module
272{
273 enum module_state state;
274
275 /* Member of list of modules */
276 struct list_head list;
277
278 /* Unique handle for this module */
279 char name[MODULE_NAME_LEN];
280
281 /* Sysfs stuff. */
282 struct module_kobject mkobj;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800283 struct module_attribute *modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -0700284 const char *version;
285 const char *srcversion;
Kay Sievers270a6c42007-01-18 13:26:15 +0100286 struct kobject *holders_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /* Exported symbols */
289 const struct kernel_symbol *syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 const unsigned long *crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500291 unsigned int num_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Rusty Russelle180a6b2009-03-31 13:05:29 -0600293 /* Kernel parameters. */
294 struct kernel_param *kp;
295 unsigned int num_kp;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* GPL-only exported symbols. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 unsigned int num_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500299 const struct kernel_symbol *gpl_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 const unsigned long *gpl_crcs;
301
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500302#ifdef CONFIG_UNUSED_SYMBOLS
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700303 /* unused exported symbols. */
304 const struct kernel_symbol *unused_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700305 const unsigned long *unused_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500306 unsigned int num_unused_syms;
307
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700308 /* GPL-only, unused exported symbols. */
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700309 unsigned int num_unused_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500310 const struct kernel_symbol *unused_gpl_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700311 const unsigned long *unused_gpl_crcs;
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500312#endif
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700313
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800314 /* symbols that will be GPL-only in the near future. */
315 const struct kernel_symbol *gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800316 const unsigned long *gpl_future_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500317 unsigned int num_gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* Exception table */
320 unsigned int num_exentries;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500321 struct exception_table_entry *extable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* Startup function. */
324 int (*init)(void);
325
326 /* If this is non-NULL, vfree after init() returns */
327 void *module_init;
328
329 /* Here is the actual code + data, vfree'd on unload. */
330 void *module_core;
331
332 /* Here are the sizes of the init and core sections */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500333 unsigned int init_size, core_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /* The size of the executable code in each section. */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500336 unsigned int init_text_size, core_text_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
matthieu castet84e1c6b2010-11-16 22:35:16 +0100338 /* Size of RO sections of the module (text+rodata) */
339 unsigned int init_ro_size, core_ro_size;
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* Arch-specific module values */
342 struct mod_arch_specific arch;
343
Randy Dunlap2bc2d612006-10-02 02:17:02 -0700344 unsigned int taints; /* same bits as kernel:tainted */
345
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800346#ifdef CONFIG_GENERIC_BUG
347 /* Support for BUG */
Richard Kennedyaf540682008-07-22 19:24:26 -0500348 unsigned num_bugs;
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800349 struct list_head bug_list;
350 struct bug_entry *bug_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351#endif
352
353#ifdef CONFIG_KALLSYMS
Jan Beulich4a496222009-07-06 14:50:42 +0100354 /*
355 * We keep the symbol and string tables for kallsyms.
356 * The core_* fields below are temporary, loader-only (they
357 * could really be discarded after module init).
358 */
359 Elf_Sym *symtab, *core_symtab;
360 unsigned int num_symtab, core_num_syms;
Jan Beulich554bdfe2009-07-06 14:51:44 +0100361 char *strtab, *core_strtab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 /* Section attributes */
364 struct module_sect_attrs *sect_attrs;
Roland McGrath6d760132007-10-16 23:26:40 -0700365
366 /* Notes attributes */
367 struct module_notes_attrs *notes_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368#endif
369
Tejun Heo259354d2010-03-10 18:56:10 +0900370#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /* Per-cpu data. */
Tejun Heo259354d2010-03-10 18:56:10 +0900372 void __percpu *percpu;
373 unsigned int percpu_size;
374#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 /* The command line arguments (may be mangled). People like
377 keeping pointers to this stuff */
378 char *args;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400379#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -0500380 struct tracepoint * const *tracepoints_ptrs;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400381 unsigned int num_tracepoints;
382#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -0400383#ifdef HAVE_JUMP_LABEL
384 struct jump_entry *jump_entries;
385 unsigned int num_jump_entries;
386#endif
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100387#ifdef CONFIG_TRACING
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100388 const char **trace_bprintk_fmt_start;
389 unsigned int num_trace_bprintk_fmt;
390#endif
Steven Rostedt6d723732009-04-10 14:53:50 -0400391#ifdef CONFIG_EVENT_TRACING
Steven Rostedte4a9ea52011-01-27 09:15:30 -0500392 struct ftrace_event_call **trace_events;
Steven Rostedt6d723732009-04-10 14:53:50 -0400393 unsigned int num_trace_events;
394#endif
Steven Rostedt93eb6772009-04-15 13:24:06 -0400395#ifdef CONFIG_FTRACE_MCOUNT_RECORD
396 unsigned long *ftrace_callsites;
397 unsigned int num_ftrace_callsites;
398#endif
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100399
Richard Kennedyaf540682008-07-22 19:24:26 -0500400#ifdef CONFIG_MODULE_UNLOAD
401 /* What modules depend on me? */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700402 struct list_head source_list;
403 /* What modules do I depend on? */
404 struct list_head target_list;
Richard Kennedyaf540682008-07-22 19:24:26 -0500405
406 /* Who is waiting for us to be unloaded */
407 struct task_struct *waiter;
408
409 /* Destruction function. */
410 void (*exit)(void);
411
Christoph Lametere1783a22010-01-05 15:34:50 +0900412 struct module_ref {
Nick Piggin5fbfb182010-04-01 19:09:40 +1100413 unsigned int incs;
414 unsigned int decs;
Tejun Heo43cf38e2010-02-02 14:38:57 +0900415 } __percpu *refptr;
Richard Kennedyaf540682008-07-22 19:24:26 -0500416#endif
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700417
418#ifdef CONFIG_CONSTRUCTORS
419 /* Constructor functions. */
420 ctor_fn_t *ctors;
421 unsigned int num_ctors;
422#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423};
Roman Zippele61a1c12007-05-09 02:35:15 -0700424#ifndef MODULE_ARCH_INIT
425#define MODULE_ARCH_INIT {}
426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Tim Abbottc6b37802008-12-05 19:03:59 -0500428extern struct mutex module_mutex;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/* FIXME: It'd be nice to isolate modules during init, too, so they
431 aren't used before they (may) fail. But presently too much code
432 (IDE & SCSI) require entry into the module during init.*/
433static inline int module_is_live(struct module *mod)
434{
435 return mod->state != MODULE_STATE_GOING;
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438struct module *__module_text_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600439struct module *__module_address(unsigned long addr);
440bool is_module_address(unsigned long addr);
Tejun Heo10fad5e2010-03-10 18:57:54 +0900441bool is_module_percpu_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600442bool is_module_text_address(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Masami Hiramatsua06f6212009-01-06 14:41:49 -0800444static inline int within_module_core(unsigned long addr, struct module *mod)
445{
446 return (unsigned long)mod->module_core <= addr &&
447 addr < (unsigned long)mod->module_core + mod->core_size;
448}
449
450static inline int within_module_init(unsigned long addr, struct module *mod)
451{
452 return (unsigned long)mod->module_init <= addr &&
453 addr < (unsigned long)mod->module_init + mod->init_size;
454}
455
Tim Abbottc6b37802008-12-05 19:03:59 -0500456/* Search for module by name: must hold module_mutex. */
457struct module *find_module(const char *name);
458
459struct symsearch {
460 const struct kernel_symbol *start, *stop;
461 const unsigned long *crcs;
462 enum {
463 NOT_GPL_ONLY,
464 GPL_ONLY,
465 WILL_BE_GPL_ONLY,
466 } licence;
467 bool unused;
468};
469
470/* Search for an exported symbol by name. */
471const struct kernel_symbol *find_symbol(const char *name,
472 struct module **owner,
473 const unsigned long **crc,
474 bool gplok,
475 bool warn);
476
477/* Walk the exported symbol table */
478bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
479 unsigned int symnum, void *data), void *data);
480
Alexey Dobriyanea078902007-05-08 00:28:39 -0700481/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 symnum out of range. */
Alexey Dobriyanea078902007-05-08 00:28:39 -0700483int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
484 char *name, char *module_name, int *exported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486/* Look for this name: can be of form module:name. */
487unsigned long module_kallsyms_lookup_name(const char *name);
488
Anders Kaseorg75a66612008-12-05 19:03:58 -0500489int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
490 struct module *, unsigned long),
491 void *data);
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493extern void __module_put_and_exit(struct module *mod, long code)
494 __attribute__((noreturn));
495#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code);
496
497#ifdef CONFIG_MODULE_UNLOAD
498unsigned int module_refcount(struct module *mod);
499void __symbol_put(const char *symbol);
500#define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x)
501void symbol_put_addr(void *addr);
502
503/* Sometimes we know we already have a refcount, and it's easier not
504 to handle the error case (which only happens with rmmod --wait). */
505static inline void __module_get(struct module *module)
506{
507 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900508 preempt_disable();
Nick Piggin5fbfb182010-04-01 19:09:40 +1100509 __this_cpu_inc(module->refptr->incs);
Li Zefanae832d12010-03-24 10:57:43 +0800510 trace_module_get(module, _THIS_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +0900511 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513}
514
515static inline int try_module_get(struct module *module)
516{
517 int ret = 1;
518
519 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900520 preempt_disable();
521
Li Zefan7ead8b82009-08-17 16:56:28 +0800522 if (likely(module_is_live(module))) {
Nick Piggin5fbfb182010-04-01 19:09:40 +1100523 __this_cpu_inc(module->refptr->incs);
Li Zefanae832d12010-03-24 10:57:43 +0800524 trace_module_get(module, _THIS_IP_);
Nick Piggin5fbfb182010-04-01 19:09:40 +1100525 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 ret = 0;
Christoph Lametere1783a22010-01-05 15:34:50 +0900527
528 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 return ret;
531}
532
Al Virof6a57032006-10-18 01:47:25 -0400533extern void module_put(struct module *module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535#else /*!CONFIG_MODULE_UNLOAD*/
536static inline int try_module_get(struct module *module)
537{
538 return !module || module_is_live(module);
539}
540static inline void module_put(struct module *module)
541{
542}
543static inline void __module_get(struct module *module)
544{
545}
546#define symbol_put(x) do { } while(0)
547#define symbol_put_addr(p) do { } while(0)
548
549#endif /* CONFIG_MODULE_UNLOAD */
Anders Kaseorgdfd62d12010-11-24 15:21:10 -0600550int ref_module(struct module *a, struct module *b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552/* This is a #define so the string doesn't get put in every .o file */
553#define module_name(mod) \
554({ \
555 struct module *__mod = (mod); \
556 __mod ? __mod->name : "kernel"; \
557})
558
Rusty Russell6dd06c92008-01-29 17:13:22 -0500559/* For kallsyms to ask for address resolution. namebuf should be at
560 * least KSYM_NAME_LEN long: a pointer to namebuf is returned if
561 * found, otherwise NULL. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800562const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500563 unsigned long *symbolsize,
564 unsigned long *offset,
565 char **modname,
566 char *namebuf);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700567int lookup_module_symbol_name(unsigned long addr, char *symname);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700568int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570/* For extable.c to search modules' exception tables. */
571const struct exception_table_entry *search_module_extables(unsigned long addr);
572
573int register_module_notifier(struct notifier_block * nb);
574int unregister_module_notifier(struct notifier_block * nb);
575
576extern void print_modules(void);
577
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400578extern void module_update_tracepoints(void);
579extern int module_get_iter_tracepoints(struct tracepoint_iter *iter);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581#else /* !CONFIG_MODULES... */
582#define EXPORT_SYMBOL(sym)
583#define EXPORT_SYMBOL_GPL(sym)
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800584#define EXPORT_SYMBOL_GPL_FUTURE(sym)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700585#define EXPORT_UNUSED_SYMBOL(sym)
586#define EXPORT_UNUSED_SYMBOL_GPL(sym)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588/* Given an address, look for it in the exception tables. */
589static inline const struct exception_table_entry *
590search_module_extables(unsigned long addr)
591{
592 return NULL;
593}
594
Rusty Russelle6104992009-03-31 13:05:31 -0600595static inline struct module *__module_address(unsigned long addr)
596{
597 return NULL;
598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static inline struct module *__module_text_address(unsigned long addr)
601{
602 return NULL;
603}
604
Rusty Russelle6104992009-03-31 13:05:31 -0600605static inline bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -0700606{
Rusty Russelle6104992009-03-31 13:05:31 -0600607 return false;
608}
609
Randy Dunlapd5e50da2010-03-31 11:33:42 +0900610static inline bool is_module_percpu_address(unsigned long addr)
611{
612 return false;
613}
614
Rusty Russelle6104992009-03-31 13:05:31 -0600615static inline bool is_module_text_address(unsigned long addr)
616{
617 return false;
Ingo Molnar4d435f92006-07-03 00:24:24 -0700618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/* Get/put a kernel symbol (calls should be symmetric) */
621#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
622#define symbol_put(x) do { } while(0)
623#define symbol_put_addr(x) do { } while(0)
624
625static inline void __module_get(struct module *module)
626{
627}
628
629static inline int try_module_get(struct module *module)
630{
631 return 1;
632}
633
634static inline void module_put(struct module *module)
635{
636}
637
638#define module_name(mod) "kernel"
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640/* For kallsyms to ask for address resolution. NULL means not found. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800641static inline const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500642 unsigned long *symbolsize,
643 unsigned long *offset,
644 char **modname,
645 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 return NULL;
648}
649
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700650static inline int lookup_module_symbol_name(unsigned long addr, char *symname)
651{
652 return -ERANGE;
653}
654
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700655static inline int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
656{
657 return -ERANGE;
658}
659
Alexey Dobriyanea078902007-05-08 00:28:39 -0700660static inline int module_get_kallsym(unsigned int symnum, unsigned long *value,
661 char *type, char *name,
662 char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Alexey Dobriyanea078902007-05-08 00:28:39 -0700664 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667static inline unsigned long module_kallsyms_lookup_name(const char *name)
668{
669 return 0;
670}
671
Anders Kaseorg75a66612008-12-05 19:03:58 -0500672static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
673 struct module *,
674 unsigned long),
675 void *data)
676{
677 return 0;
678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680static inline int register_module_notifier(struct notifier_block * nb)
681{
682 /* no events will happen anyway, so this can always succeed */
683 return 0;
684}
685
686static inline int unregister_module_notifier(struct notifier_block * nb)
687{
688 return 0;
689}
690
691#define module_put_and_exit(code) do_exit(code)
692
693static inline void print_modules(void)
694{
695}
696
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400697static inline void module_update_tracepoints(void)
698{
699}
700
701static inline int module_get_iter_tracepoints(struct tracepoint_iter *iter)
702{
703 return 0;
704}
Randy Dunlapef665c12007-02-13 15:19:06 -0800705#endif /* CONFIG_MODULES */
706
Randy Dunlapef665c12007-02-13 15:19:06 -0800707#ifdef CONFIG_SYSFS
Greg Kroah-Hartman7405c1e2007-11-01 10:39:50 -0700708extern struct kset *module_kset;
709extern struct kobj_type module_ktype;
710extern int module_sysfs_initialized;
Randy Dunlapef665c12007-02-13 15:19:06 -0800711#endif /* CONFIG_SYSFS */
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
714
715/* BELOW HERE ALL THESE ARE OBSOLETE AND WILL VANISH */
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717#define __MODULE_STRING(x) __stringify(x)
718
matthieu castet84e1c6b2010-11-16 22:35:16 +0100719#ifdef CONFIG_DEBUG_SET_MODULE_RONX
720extern void set_all_modules_text_rw(void);
721extern void set_all_modules_text_ro(void);
722#else
723static inline void set_all_modules_text_rw(void) { }
724static inline void set_all_modules_text_ro(void) { }
725#endif
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700726
727#ifdef CONFIG_GENERIC_BUG
Linus Torvalds53363772010-10-05 11:29:27 -0700728void module_bug_finalize(const Elf_Ehdr *, const Elf_Shdr *,
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700729 struct module *);
730void module_bug_cleanup(struct module *);
731
732#else /* !CONFIG_GENERIC_BUG */
733
Linus Torvalds53363772010-10-05 11:29:27 -0700734static inline void module_bug_finalize(const Elf_Ehdr *hdr,
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700735 const Elf_Shdr *sechdrs,
736 struct module *mod)
737{
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700738}
739static inline void module_bug_cleanup(struct module *mod) {}
740#endif /* CONFIG_GENERIC_BUG */
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742#endif /* _LINUX_MODULE_H */