blob: 8bd399a00343ab42eee6557dae15e1ad92a5f82e [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
61struct module_kobject
62{
63 struct kobject kobj;
64 struct module *mod;
Kay Sieversf30c53a2007-01-15 20:22:02 +010065 struct kobject *drivers_dir;
Rusty Russell9b473de2008-10-22 10:00:22 -050066 struct module_param_attrs *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
69/* These are either module local, or the kernel's dummy ones. */
70extern int init_module(void);
71extern void cleanup_module(void);
72
73/* Archs provide a method of finding the correct exception table. */
74struct exception_table_entry;
75
76const struct exception_table_entry *
77search_extable(const struct exception_table_entry *first,
78 const struct exception_table_entry *last,
79 unsigned long value);
80void sort_extable(struct exception_table_entry *start,
81 struct exception_table_entry *finish);
82void sort_main_extable(void);
Rusty Russellad6561d2009-06-12 21:47:03 -060083void trim_init_extable(struct module *m);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#ifdef MODULE
86#define MODULE_GENERIC_TABLE(gtype,name) \
87extern const struct gtype##_id __mod_##gtype##_table \
88 __attribute__ ((unused, alias(__stringify(name))))
89
90extern struct module __this_module;
91#define THIS_MODULE (&__this_module)
92#else /* !MODULE */
93#define MODULE_GENERIC_TABLE(gtype,name)
94#define THIS_MODULE ((struct module *)0)
95#endif
96
97/* Generic info of form tag = "info" */
98#define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
99
100/* For userspace: you can also call me... */
101#define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias)
102
103/*
104 * The following license idents are currently accepted as indicating free
105 * software modules
106 *
107 * "GPL" [GNU Public License v2 or later]
108 * "GPL v2" [GNU Public License v2]
109 * "GPL and additional rights" [GNU Public License v2 rights and more]
110 * "Dual BSD/GPL" [GNU Public License v2
111 * or BSD license choice]
Xose Vazquez Perez8d27e902006-06-23 02:05:13 -0700112 * "Dual MIT/GPL" [GNU Public License v2
113 * or MIT license choice]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * "Dual MPL/GPL" [GNU Public License v2
115 * or Mozilla license choice]
116 *
117 * The following other idents are available
118 *
119 * "Proprietary" [Non free products]
120 *
121 * There are dual licensed components, but when running with Linux it is the
122 * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL
123 * is a GPL combined work.
124 *
125 * This exists for several reasons
126 * 1. So modinfo can show license info for users wanting to vet their setup
127 * is free
128 * 2. So the community can ignore bug reports including proprietary modules
129 * 3. So vendors can do likewise based on their own policies
130 */
131#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
132
Johannes Berg1d7015c2009-09-25 00:32:58 -0600133/*
134 * Author(s), use "Name <email>" or just "Name", for multiple
135 * authors use multiple MODULE_AUTHOR() statements/lines.
136 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define MODULE_AUTHOR(_author) MODULE_INFO(author, _author)
138
139/* What your module does. */
140#define MODULE_DESCRIPTION(_description) MODULE_INFO(description, _description)
141
142/* One for each parameter, describing how to use it. Some files do
143 multiple of these per line, so can't just use MODULE_INFO. */
144#define MODULE_PARM_DESC(_parm, desc) \
145 __MODULE_INFO(parm, _parm, #_parm ":" desc)
146
147#define MODULE_DEVICE_TABLE(type,name) \
148 MODULE_GENERIC_TABLE(type##_device,name)
149
150/* Version of form [<epoch>:]<version>[-<extra-version>].
151 Or for CVS/RCS ID version, everything but the number is stripped.
152 <epoch>: A (small) unsigned integer which allows you to start versions
153 anew. If not mentioned, it's zero. eg. "2:1.0" is after
154 "1:2.0".
155 <version>: The <version> may contain only alphanumerics and the
156 character `.'. Ordered by numeric sort for numeric parts,
157 ascii sort for ascii parts (as per RPM or DEB algorithm).
158 <extraversion>: Like <version>, but inserted for local
159 customizations, eg "rh3" or "rusty1".
160
161 Using this automatically adds a checksum of the .c files and the
162 local headers in "srcversion".
163*/
164#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
165
Jon Masters187afbe2006-08-28 17:08:21 -0500166/* Optional firmware file (or files) needed by the module
167 * format is simply firmware file name. Multiple firmware
168 * files require multiple MODULE_FIRMWARE() specifiers */
169#define MODULE_FIRMWARE(_firmware) MODULE_INFO(firmware, _firmware)
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/* Given an address, look for it in the exception tables */
172const struct exception_table_entry *search_exception_tables(unsigned long add);
173
174struct notifier_block;
175
176#ifdef CONFIG_MODULES
177
Dave Young5ed10912010-03-10 15:24:06 -0800178extern int modules_disabled; /* for sysctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/* 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
Tejun Heo259354d2010-03-10 18:56:10 +0900333#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* Per-cpu data. */
Tejun Heo259354d2010-03-10 18:56:10 +0900335 void __percpu *percpu;
336 unsigned int percpu_size;
337#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* The command line arguments (may be mangled). People like
340 keeping pointers to this stuff */
341 char *args;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400342#ifdef CONFIG_TRACEPOINTS
343 struct tracepoint *tracepoints;
344 unsigned int num_tracepoints;
345#endif
Richard Kennedyaf540682008-07-22 19:24:26 -0500346
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100347#ifdef CONFIG_TRACING
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100348 const char **trace_bprintk_fmt_start;
349 unsigned int num_trace_bprintk_fmt;
350#endif
Steven Rostedt6d723732009-04-10 14:53:50 -0400351#ifdef CONFIG_EVENT_TRACING
352 struct ftrace_event_call *trace_events;
353 unsigned int num_trace_events;
354#endif
Steven Rostedt93eb6772009-04-15 13:24:06 -0400355#ifdef CONFIG_FTRACE_MCOUNT_RECORD
356 unsigned long *ftrace_callsites;
357 unsigned int num_ftrace_callsites;
358#endif
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100359
Richard Kennedyaf540682008-07-22 19:24:26 -0500360#ifdef CONFIG_MODULE_UNLOAD
361 /* What modules depend on me? */
362 struct list_head modules_which_use_me;
363
364 /* Who is waiting for us to be unloaded */
365 struct task_struct *waiter;
366
367 /* Destruction function. */
368 void (*exit)(void);
369
Christoph Lametere1783a22010-01-05 15:34:50 +0900370 struct module_ref {
371 int count;
Tejun Heo43cf38e2010-02-02 14:38:57 +0900372 } __percpu *refptr;
Richard Kennedyaf540682008-07-22 19:24:26 -0500373#endif
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700374
375#ifdef CONFIG_CONSTRUCTORS
376 /* Constructor functions. */
377 ctor_fn_t *ctors;
378 unsigned int num_ctors;
379#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380};
Roman Zippele61a1c12007-05-09 02:35:15 -0700381#ifndef MODULE_ARCH_INIT
382#define MODULE_ARCH_INIT {}
383#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Tim Abbottc6b37802008-12-05 19:03:59 -0500385extern struct mutex module_mutex;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/* FIXME: It'd be nice to isolate modules during init, too, so they
388 aren't used before they (may) fail. But presently too much code
389 (IDE & SCSI) require entry into the module during init.*/
390static inline int module_is_live(struct module *mod)
391{
392 return mod->state != MODULE_STATE_GOING;
393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395struct module *__module_text_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600396struct module *__module_address(unsigned long addr);
397bool is_module_address(unsigned long addr);
Tejun Heo10fad5e2010-03-10 18:57:54 +0900398bool is_module_percpu_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600399bool is_module_text_address(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Masami Hiramatsua06f6212009-01-06 14:41:49 -0800401static inline int within_module_core(unsigned long addr, struct module *mod)
402{
403 return (unsigned long)mod->module_core <= addr &&
404 addr < (unsigned long)mod->module_core + mod->core_size;
405}
406
407static inline int within_module_init(unsigned long addr, struct module *mod)
408{
409 return (unsigned long)mod->module_init <= addr &&
410 addr < (unsigned long)mod->module_init + mod->init_size;
411}
412
Tim Abbottc6b37802008-12-05 19:03:59 -0500413/* Search for module by name: must hold module_mutex. */
414struct module *find_module(const char *name);
415
416struct symsearch {
417 const struct kernel_symbol *start, *stop;
418 const unsigned long *crcs;
419 enum {
420 NOT_GPL_ONLY,
421 GPL_ONLY,
422 WILL_BE_GPL_ONLY,
423 } licence;
424 bool unused;
425};
426
427/* Search for an exported symbol by name. */
428const struct kernel_symbol *find_symbol(const char *name,
429 struct module **owner,
430 const unsigned long **crc,
431 bool gplok,
432 bool warn);
433
434/* Walk the exported symbol table */
435bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
436 unsigned int symnum, void *data), void *data);
437
Alexey Dobriyanea078902007-05-08 00:28:39 -0700438/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 symnum out of range. */
Alexey Dobriyanea078902007-05-08 00:28:39 -0700440int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
441 char *name, char *module_name, int *exported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443/* Look for this name: can be of form module:name. */
444unsigned long module_kallsyms_lookup_name(const char *name);
445
Anders Kaseorg75a66612008-12-05 19:03:58 -0500446int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
447 struct module *, unsigned long),
448 void *data);
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450extern void __module_put_and_exit(struct module *mod, long code)
451 __attribute__((noreturn));
452#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code);
453
454#ifdef CONFIG_MODULE_UNLOAD
455unsigned int module_refcount(struct module *mod);
456void __symbol_put(const char *symbol);
457#define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x)
458void symbol_put_addr(void *addr);
459
460/* Sometimes we know we already have a refcount, and it's easier not
461 to handle the error case (which only happens with rmmod --wait). */
462static inline void __module_get(struct module *module)
463{
464 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900465 preempt_disable();
466 __this_cpu_inc(module->refptr->count);
Li Zefan7ead8b82009-08-17 16:56:28 +0800467 trace_module_get(module, _THIS_IP_,
Christoph Lametere1783a22010-01-05 15:34:50 +0900468 __this_cpu_read(module->refptr->count));
469 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471}
472
473static inline int try_module_get(struct module *module)
474{
475 int ret = 1;
476
477 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900478 preempt_disable();
479
Li Zefan7ead8b82009-08-17 16:56:28 +0800480 if (likely(module_is_live(module))) {
Christoph Lametere1783a22010-01-05 15:34:50 +0900481 __this_cpu_inc(module->refptr->count);
Li Zefan7ead8b82009-08-17 16:56:28 +0800482 trace_module_get(module, _THIS_IP_,
Christoph Lametere1783a22010-01-05 15:34:50 +0900483 __this_cpu_read(module->refptr->count));
Li Zefan7ead8b82009-08-17 16:56:28 +0800484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 else
486 ret = 0;
Christoph Lametere1783a22010-01-05 15:34:50 +0900487
488 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490 return ret;
491}
492
Al Virof6a57032006-10-18 01:47:25 -0400493extern void module_put(struct module *module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495#else /*!CONFIG_MODULE_UNLOAD*/
496static inline int try_module_get(struct module *module)
497{
498 return !module || module_is_live(module);
499}
500static inline void module_put(struct module *module)
501{
502}
503static inline void __module_get(struct module *module)
504{
505}
506#define symbol_put(x) do { } while(0)
507#define symbol_put_addr(p) do { } while(0)
508
509#endif /* CONFIG_MODULE_UNLOAD */
Tim Abbottc6b37802008-12-05 19:03:59 -0500510int use_module(struct module *a, struct module *b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512/* This is a #define so the string doesn't get put in every .o file */
513#define module_name(mod) \
514({ \
515 struct module *__mod = (mod); \
516 __mod ? __mod->name : "kernel"; \
517})
518
Rusty Russell6dd06c92008-01-29 17:13:22 -0500519/* For kallsyms to ask for address resolution. namebuf should be at
520 * least KSYM_NAME_LEN long: a pointer to namebuf is returned if
521 * found, otherwise NULL. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800522const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500523 unsigned long *symbolsize,
524 unsigned long *offset,
525 char **modname,
526 char *namebuf);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700527int lookup_module_symbol_name(unsigned long addr, char *symname);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700528int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530/* For extable.c to search modules' exception tables. */
531const struct exception_table_entry *search_module_extables(unsigned long addr);
532
533int register_module_notifier(struct notifier_block * nb);
534int unregister_module_notifier(struct notifier_block * nb);
535
536extern void print_modules(void);
537
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400538extern void module_update_tracepoints(void);
539extern int module_get_iter_tracepoints(struct tracepoint_iter *iter);
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541#else /* !CONFIG_MODULES... */
542#define EXPORT_SYMBOL(sym)
543#define EXPORT_SYMBOL_GPL(sym)
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800544#define EXPORT_SYMBOL_GPL_FUTURE(sym)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700545#define EXPORT_UNUSED_SYMBOL(sym)
546#define EXPORT_UNUSED_SYMBOL_GPL(sym)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548/* Given an address, look for it in the exception tables. */
549static inline const struct exception_table_entry *
550search_module_extables(unsigned long addr)
551{
552 return NULL;
553}
554
Rusty Russelle6104992009-03-31 13:05:31 -0600555static inline struct module *__module_address(unsigned long addr)
556{
557 return NULL;
558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static inline struct module *__module_text_address(unsigned long addr)
561{
562 return NULL;
563}
564
Rusty Russelle6104992009-03-31 13:05:31 -0600565static inline bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -0700566{
Rusty Russelle6104992009-03-31 13:05:31 -0600567 return false;
568}
569
Randy Dunlapd5e50da2010-03-31 11:33:42 +0900570static inline bool is_module_percpu_address(unsigned long addr)
571{
572 return false;
573}
574
Rusty Russelle6104992009-03-31 13:05:31 -0600575static inline bool is_module_text_address(unsigned long addr)
576{
577 return false;
Ingo Molnar4d435f92006-07-03 00:24:24 -0700578}
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580/* Get/put a kernel symbol (calls should be symmetric) */
581#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
582#define symbol_put(x) do { } while(0)
583#define symbol_put_addr(x) do { } while(0)
584
585static inline void __module_get(struct module *module)
586{
587}
588
589static inline int try_module_get(struct module *module)
590{
591 return 1;
592}
593
594static inline void module_put(struct module *module)
595{
596}
597
598#define module_name(mod) "kernel"
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600/* For kallsyms to ask for address resolution. NULL means not found. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800601static inline const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500602 unsigned long *symbolsize,
603 unsigned long *offset,
604 char **modname,
605 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
607 return NULL;
608}
609
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700610static inline int lookup_module_symbol_name(unsigned long addr, char *symname)
611{
612 return -ERANGE;
613}
614
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700615static inline int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
616{
617 return -ERANGE;
618}
619
Alexey Dobriyanea078902007-05-08 00:28:39 -0700620static inline int module_get_kallsym(unsigned int symnum, unsigned long *value,
621 char *type, char *name,
622 char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Alexey Dobriyanea078902007-05-08 00:28:39 -0700624 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627static inline unsigned long module_kallsyms_lookup_name(const char *name)
628{
629 return 0;
630}
631
Anders Kaseorg75a66612008-12-05 19:03:58 -0500632static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
633 struct module *,
634 unsigned long),
635 void *data)
636{
637 return 0;
638}
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640static inline int register_module_notifier(struct notifier_block * nb)
641{
642 /* no events will happen anyway, so this can always succeed */
643 return 0;
644}
645
646static inline int unregister_module_notifier(struct notifier_block * nb)
647{
648 return 0;
649}
650
651#define module_put_and_exit(code) do_exit(code)
652
653static inline void print_modules(void)
654{
655}
656
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400657static inline void module_update_tracepoints(void)
658{
659}
660
661static inline int module_get_iter_tracepoints(struct tracepoint_iter *iter)
662{
663 return 0;
664}
665
Randy Dunlapef665c12007-02-13 15:19:06 -0800666#endif /* CONFIG_MODULES */
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668struct device_driver;
Randy Dunlapef665c12007-02-13 15:19:06 -0800669#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670struct module;
671
Greg Kroah-Hartman7405c1e2007-11-01 10:39:50 -0700672extern struct kset *module_kset;
673extern struct kobj_type module_ktype;
674extern int module_sysfs_initialized;
Randy Dunlapef665c12007-02-13 15:19:06 -0800675
676int mod_sysfs_init(struct module *mod);
677int mod_sysfs_setup(struct module *mod,
678 struct kernel_param *kparam,
679 unsigned int num_params);
680int module_add_modinfo_attrs(struct module *mod);
681void module_remove_modinfo_attrs(struct module *mod);
682
683#else /* !CONFIG_SYSFS */
684
685static inline int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Randy Dunlapef665c12007-02-13 15:19:06 -0800687 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Randy Dunlapef665c12007-02-13 15:19:06 -0800690static inline int mod_sysfs_setup(struct module *mod,
691 struct kernel_param *kparam,
692 unsigned int num_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Randy Dunlapef665c12007-02-13 15:19:06 -0800694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Randy Dunlapef665c12007-02-13 15:19:06 -0800697static inline int module_add_modinfo_attrs(struct module *mod)
698{
699 return 0;
700}
701
702static inline void module_remove_modinfo_attrs(struct module *mod)
703{ }
704
705#endif /* CONFIG_SYSFS */
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
708
709/* BELOW HERE ALL THESE ARE OBSOLETE AND WILL VANISH */
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711#define __MODULE_STRING(x) __stringify(x)
712
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700713
714#ifdef CONFIG_GENERIC_BUG
715int module_bug_finalize(const Elf_Ehdr *, const Elf_Shdr *,
716 struct module *);
717void module_bug_cleanup(struct module *);
718
719#else /* !CONFIG_GENERIC_BUG */
720
721static inline int module_bug_finalize(const Elf_Ehdr *hdr,
722 const Elf_Shdr *sechdrs,
723 struct module *mod)
724{
725 return 0;
726}
727static inline void module_bug_cleanup(struct module *mod) {}
728#endif /* CONFIG_GENERIC_BUG */
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730#endif /* _LINUX_MODULE_H */