blob: 1d3ccb173fd6c1d0cc3bd618a939234fd5f8ce39 [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>
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
Adrian Bunkf606ddf2008-07-23 21:28:50 -070028/* some toolchains uses a `_' prefix for all user symbols */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#ifndef MODULE_SYMBOL_PREFIX
30#define MODULE_SYMBOL_PREFIX ""
31#endif
32
Rusty Russell730b69d2008-10-22 10:00:22 -050033#define MODULE_NAME_LEN MAX_PARAM_PREFIX_LEN
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35struct kernel_symbol
36{
37 unsigned long value;
38 const char *name;
39};
40
41struct modversion_info
42{
43 unsigned long crc;
44 char name[MODULE_NAME_LEN];
45};
46
47struct module;
48
49struct module_attribute {
50 struct attribute attr;
51 ssize_t (*show)(struct module_attribute *, struct module *, char *);
52 ssize_t (*store)(struct module_attribute *, struct module *,
53 const char *, size_t count);
Matt Domschc988d2b2005-06-23 22:05:15 -070054 void (*setup)(struct module *, const char *);
55 int (*test)(struct module *);
56 void (*free)(struct module *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
59struct module_kobject
60{
61 struct kobject kobj;
62 struct module *mod;
Kay Sieversf30c53a2007-01-15 20:22:02 +010063 struct kobject *drivers_dir;
Rusty Russell9b473de2008-10-22 10:00:22 -050064 struct module_param_attrs *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
67/* These are either module local, or the kernel's dummy ones. */
68extern int init_module(void);
69extern void cleanup_module(void);
70
71/* Archs provide a method of finding the correct exception table. */
72struct exception_table_entry;
73
74const struct exception_table_entry *
75search_extable(const struct exception_table_entry *first,
76 const struct exception_table_entry *last,
77 unsigned long value);
78void sort_extable(struct exception_table_entry *start,
79 struct exception_table_entry *finish);
80void sort_main_extable(void);
Rusty Russellad6561d2009-06-12 21:47:03 -060081void trim_init_extable(struct module *m);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#ifdef MODULE
84#define MODULE_GENERIC_TABLE(gtype,name) \
85extern const struct gtype##_id __mod_##gtype##_table \
86 __attribute__ ((unused, alias(__stringify(name))))
87
88extern struct module __this_module;
89#define THIS_MODULE (&__this_module)
90#else /* !MODULE */
91#define MODULE_GENERIC_TABLE(gtype,name)
92#define THIS_MODULE ((struct module *)0)
93#endif
94
95/* Generic info of form tag = "info" */
96#define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
97
98/* For userspace: you can also call me... */
99#define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias)
100
101/*
102 * The following license idents are currently accepted as indicating free
103 * software modules
104 *
105 * "GPL" [GNU Public License v2 or later]
106 * "GPL v2" [GNU Public License v2]
107 * "GPL and additional rights" [GNU Public License v2 rights and more]
108 * "Dual BSD/GPL" [GNU Public License v2
109 * or BSD license choice]
Xose Vazquez Perez8d27e902006-06-23 02:05:13 -0700110 * "Dual MIT/GPL" [GNU Public License v2
111 * or MIT license choice]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * "Dual MPL/GPL" [GNU Public License v2
113 * or Mozilla license choice]
114 *
115 * The following other idents are available
116 *
117 * "Proprietary" [Non free products]
118 *
119 * There are dual licensed components, but when running with Linux it is the
120 * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL
121 * is a GPL combined work.
122 *
123 * This exists for several reasons
124 * 1. So modinfo can show license info for users wanting to vet their setup
125 * is free
126 * 2. So the community can ignore bug reports including proprietary modules
127 * 3. So vendors can do likewise based on their own policies
128 */
129#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
130
Rene Herman108f39a2007-05-10 22:22:50 -0700131/* Author, ideally of form NAME[, NAME]*[ and NAME] */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define MODULE_AUTHOR(_author) MODULE_INFO(author, _author)
133
134/* What your module does. */
135#define MODULE_DESCRIPTION(_description) MODULE_INFO(description, _description)
136
137/* One for each parameter, describing how to use it. Some files do
138 multiple of these per line, so can't just use MODULE_INFO. */
139#define MODULE_PARM_DESC(_parm, desc) \
140 __MODULE_INFO(parm, _parm, #_parm ":" desc)
141
142#define MODULE_DEVICE_TABLE(type,name) \
143 MODULE_GENERIC_TABLE(type##_device,name)
144
145/* Version of form [<epoch>:]<version>[-<extra-version>].
146 Or for CVS/RCS ID version, everything but the number is stripped.
147 <epoch>: A (small) unsigned integer which allows you to start versions
148 anew. If not mentioned, it's zero. eg. "2:1.0" is after
149 "1:2.0".
150 <version>: The <version> may contain only alphanumerics and the
151 character `.'. Ordered by numeric sort for numeric parts,
152 ascii sort for ascii parts (as per RPM or DEB algorithm).
153 <extraversion>: Like <version>, but inserted for local
154 customizations, eg "rh3" or "rusty1".
155
156 Using this automatically adds a checksum of the .c files and the
157 local headers in "srcversion".
158*/
159#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
160
Jon Masters187afbe2006-08-28 17:08:21 -0500161/* Optional firmware file (or files) needed by the module
162 * format is simply firmware file name. Multiple firmware
163 * files require multiple MODULE_FIRMWARE() specifiers */
164#define MODULE_FIRMWARE(_firmware) MODULE_INFO(firmware, _firmware)
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/* Given an address, look for it in the exception tables */
167const struct exception_table_entry *search_exception_tables(unsigned long add);
168
169struct notifier_block;
170
171#ifdef CONFIG_MODULES
172
173/* Get/put a kernel symbol (calls must be symmetric) */
174void *__symbol_get(const char *symbol);
175void *__symbol_get_gpl(const char *symbol);
176#define symbol_get(x) ((typeof(&x))(__symbol_get(MODULE_SYMBOL_PREFIX #x)))
177
178#ifndef __GENKSYMS__
179#ifdef CONFIG_MODVERSIONS
180/* Mark the CRC weak since genksyms apparently decides not to
181 * generate a checksums for some symbols */
182#define __CRC_SYMBOL(sym, sec) \
183 extern void *__crc_##sym __attribute__((weak)); \
184 static const unsigned long __kcrctab_##sym \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100185 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 __attribute__((section("__kcrctab" sec), unused)) \
187 = (unsigned long) &__crc_##sym;
188#else
189#define __CRC_SYMBOL(sym, sec)
190#endif
191
192/* For every exported symbol, place a struct in the __ksymtab section */
193#define __EXPORT_SYMBOL(sym, sec) \
Patrick McHardya1a8fee2006-03-23 22:07:34 -0800194 extern typeof(sym) sym; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 __CRC_SYMBOL(sym, sec) \
196 static const char __kstrtab_##sym[] \
Rusty Russellea01e792008-03-13 09:02:17 +0000197 __attribute__((section("__ksymtab_strings"), aligned(1))) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 = MODULE_SYMBOL_PREFIX #sym; \
199 static const struct kernel_symbol __ksymtab_##sym \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100200 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 __attribute__((section("__ksymtab" sec), unused)) \
202 = { (unsigned long)&sym, __kstrtab_##sym }
203
204#define EXPORT_SYMBOL(sym) \
205 __EXPORT_SYMBOL(sym, "")
206
207#define EXPORT_SYMBOL_GPL(sym) \
208 __EXPORT_SYMBOL(sym, "_gpl")
209
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800210#define EXPORT_SYMBOL_GPL_FUTURE(sym) \
211 __EXPORT_SYMBOL(sym, "_gpl_future")
212
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700213
214#ifdef CONFIG_UNUSED_SYMBOLS
215#define EXPORT_UNUSED_SYMBOL(sym) __EXPORT_SYMBOL(sym, "_unused")
216#define EXPORT_UNUSED_SYMBOL_GPL(sym) __EXPORT_SYMBOL(sym, "_unused_gpl")
217#else
218#define EXPORT_UNUSED_SYMBOL(sym)
219#define EXPORT_UNUSED_SYMBOL_GPL(sym)
220#endif
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#endif
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224enum module_state
225{
226 MODULE_STATE_LIVE,
227 MODULE_STATE_COMING,
228 MODULE_STATE_GOING,
229};
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231struct module
232{
233 enum module_state state;
234
235 /* Member of list of modules */
236 struct list_head list;
237
238 /* Unique handle for this module */
239 char name[MODULE_NAME_LEN];
240
241 /* Sysfs stuff. */
242 struct module_kobject mkobj;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800243 struct module_attribute *modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -0700244 const char *version;
245 const char *srcversion;
Kay Sievers270a6c42007-01-18 13:26:15 +0100246 struct kobject *holders_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 /* Exported symbols */
249 const struct kernel_symbol *syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 const unsigned long *crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500251 unsigned int num_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Rusty Russelle180a6b2009-03-31 13:05:29 -0600253 /* Kernel parameters. */
254 struct kernel_param *kp;
255 unsigned int num_kp;
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* GPL-only exported symbols. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 unsigned int num_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500259 const struct kernel_symbol *gpl_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 const unsigned long *gpl_crcs;
261
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500262#ifdef CONFIG_UNUSED_SYMBOLS
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700263 /* unused exported symbols. */
264 const struct kernel_symbol *unused_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700265 const unsigned long *unused_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500266 unsigned int num_unused_syms;
267
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700268 /* GPL-only, unused exported symbols. */
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700269 unsigned int num_unused_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500270 const struct kernel_symbol *unused_gpl_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700271 const unsigned long *unused_gpl_crcs;
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500272#endif
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700273
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800274 /* symbols that will be GPL-only in the near future. */
275 const struct kernel_symbol *gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800276 const unsigned long *gpl_future_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500277 unsigned int num_gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* Exception table */
280 unsigned int num_exentries;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500281 struct exception_table_entry *extable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /* Startup function. */
284 int (*init)(void);
285
286 /* If this is non-NULL, vfree after init() returns */
287 void *module_init;
288
289 /* Here is the actual code + data, vfree'd on unload. */
290 void *module_core;
291
292 /* Here are the sizes of the init and core sections */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500293 unsigned int init_size, core_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 /* The size of the executable code in each section. */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500296 unsigned int init_text_size, core_text_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /* Arch-specific module values */
299 struct mod_arch_specific arch;
300
Randy Dunlap2bc2d612006-10-02 02:17:02 -0700301 unsigned int taints; /* same bits as kernel:tainted */
302
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800303#ifdef CONFIG_GENERIC_BUG
304 /* Support for BUG */
Richard Kennedyaf540682008-07-22 19:24:26 -0500305 unsigned num_bugs;
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800306 struct list_head bug_list;
307 struct bug_entry *bug_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#endif
309
310#ifdef CONFIG_KALLSYMS
Jan Beulich4a496222009-07-06 14:50:42 +0100311 /*
312 * We keep the symbol and string tables for kallsyms.
313 * The core_* fields below are temporary, loader-only (they
314 * could really be discarded after module init).
315 */
316 Elf_Sym *symtab, *core_symtab;
317 unsigned int num_symtab, core_num_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 char *strtab;
319
320 /* Section attributes */
321 struct module_sect_attrs *sect_attrs;
Roland McGrath6d760132007-10-16 23:26:40 -0700322
323 /* Notes attributes */
324 struct module_notes_attrs *notes_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#endif
326
327 /* Per-cpu data. */
328 void *percpu;
329
330 /* The command line arguments (may be mangled). People like
331 keeping pointers to this stuff */
332 char *args;
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400333#ifdef CONFIG_TRACEPOINTS
334 struct tracepoint *tracepoints;
335 unsigned int num_tracepoints;
336#endif
Richard Kennedyaf540682008-07-22 19:24:26 -0500337
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100338#ifdef CONFIG_TRACING
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100339 const char **trace_bprintk_fmt_start;
340 unsigned int num_trace_bprintk_fmt;
341#endif
Steven Rostedt6d723732009-04-10 14:53:50 -0400342#ifdef CONFIG_EVENT_TRACING
343 struct ftrace_event_call *trace_events;
344 unsigned int num_trace_events;
345#endif
Steven Rostedt93eb6772009-04-15 13:24:06 -0400346#ifdef CONFIG_FTRACE_MCOUNT_RECORD
347 unsigned long *ftrace_callsites;
348 unsigned int num_ftrace_callsites;
349#endif
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100350
Richard Kennedyaf540682008-07-22 19:24:26 -0500351#ifdef CONFIG_MODULE_UNLOAD
352 /* What modules depend on me? */
353 struct list_head modules_which_use_me;
354
355 /* Who is waiting for us to be unloaded */
356 struct task_struct *waiter;
357
358 /* Destruction function. */
359 void (*exit)(void);
360
Eric Dumazet720eba32009-02-03 13:31:36 +1030361#ifdef CONFIG_SMP
362 char *refptr;
363#else
364 local_t ref;
365#endif
Richard Kennedyaf540682008-07-22 19:24:26 -0500366#endif
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700367
368#ifdef CONFIG_CONSTRUCTORS
369 /* Constructor functions. */
370 ctor_fn_t *ctors;
371 unsigned int num_ctors;
372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
Roman Zippele61a1c12007-05-09 02:35:15 -0700374#ifndef MODULE_ARCH_INIT
375#define MODULE_ARCH_INIT {}
376#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Tim Abbottc6b37802008-12-05 19:03:59 -0500378extern struct mutex module_mutex;
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/* FIXME: It'd be nice to isolate modules during init, too, so they
381 aren't used before they (may) fail. But presently too much code
382 (IDE & SCSI) require entry into the module during init.*/
383static inline int module_is_live(struct module *mod)
384{
385 return mod->state != MODULE_STATE_GOING;
386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388struct module *__module_text_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600389struct module *__module_address(unsigned long addr);
390bool is_module_address(unsigned long addr);
391bool is_module_text_address(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Masami Hiramatsua06f6212009-01-06 14:41:49 -0800393static inline int within_module_core(unsigned long addr, struct module *mod)
394{
395 return (unsigned long)mod->module_core <= addr &&
396 addr < (unsigned long)mod->module_core + mod->core_size;
397}
398
399static inline int within_module_init(unsigned long addr, struct module *mod)
400{
401 return (unsigned long)mod->module_init <= addr &&
402 addr < (unsigned long)mod->module_init + mod->init_size;
403}
404
Tim Abbottc6b37802008-12-05 19:03:59 -0500405/* Search for module by name: must hold module_mutex. */
406struct module *find_module(const char *name);
407
408struct symsearch {
409 const struct kernel_symbol *start, *stop;
410 const unsigned long *crcs;
411 enum {
412 NOT_GPL_ONLY,
413 GPL_ONLY,
414 WILL_BE_GPL_ONLY,
415 } licence;
416 bool unused;
417};
418
419/* Search for an exported symbol by name. */
420const struct kernel_symbol *find_symbol(const char *name,
421 struct module **owner,
422 const unsigned long **crc,
423 bool gplok,
424 bool warn);
425
426/* Walk the exported symbol table */
427bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
428 unsigned int symnum, void *data), void *data);
429
Alexey Dobriyanea078902007-05-08 00:28:39 -0700430/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 symnum out of range. */
Alexey Dobriyanea078902007-05-08 00:28:39 -0700432int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
433 char *name, char *module_name, int *exported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435/* Look for this name: can be of form module:name. */
436unsigned long module_kallsyms_lookup_name(const char *name);
437
Anders Kaseorg75a66612008-12-05 19:03:58 -0500438int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
439 struct module *, unsigned long),
440 void *data);
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442extern void __module_put_and_exit(struct module *mod, long code)
443 __attribute__((noreturn));
444#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code);
445
446#ifdef CONFIG_MODULE_UNLOAD
447unsigned int module_refcount(struct module *mod);
448void __symbol_put(const char *symbol);
449#define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x)
450void symbol_put_addr(void *addr);
451
Eric Dumazet720eba32009-02-03 13:31:36 +1030452static inline local_t *__module_ref_addr(struct module *mod, int cpu)
453{
454#ifdef CONFIG_SMP
455 return (local_t *) (mod->refptr + per_cpu_offset(cpu));
456#else
457 return &mod->ref;
458#endif
459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/* Sometimes we know we already have a refcount, and it's easier not
462 to handle the error case (which only happens with rmmod --wait). */
463static inline void __module_get(struct module *module)
464{
465 if (module) {
Li Zefan7ead8b82009-08-17 16:56:28 +0800466 unsigned int cpu = get_cpu();
467 local_inc(__module_ref_addr(module, cpu));
468 trace_module_get(module, _THIS_IP_,
469 local_read(__module_ref_addr(module, cpu)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 put_cpu();
471 }
472}
473
474static inline int try_module_get(struct module *module)
475{
476 int ret = 1;
477
478 if (module) {
479 unsigned int cpu = get_cpu();
Li Zefan7ead8b82009-08-17 16:56:28 +0800480 if (likely(module_is_live(module))) {
Eric Dumazet720eba32009-02-03 13:31:36 +1030481 local_inc(__module_ref_addr(module, cpu));
Li Zefan7ead8b82009-08-17 16:56:28 +0800482 trace_module_get(module, _THIS_IP_,
483 local_read(__module_ref_addr(module, cpu)));
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 else
486 ret = 0;
487 put_cpu();
488 }
489 return ret;
490}
491
Al Virof6a57032006-10-18 01:47:25 -0400492extern void module_put(struct module *module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494#else /*!CONFIG_MODULE_UNLOAD*/
495static inline int try_module_get(struct module *module)
496{
497 return !module || module_is_live(module);
498}
499static inline void module_put(struct module *module)
500{
501}
502static inline void __module_get(struct module *module)
503{
504}
505#define symbol_put(x) do { } while(0)
506#define symbol_put_addr(p) do { } while(0)
507
508#endif /* CONFIG_MODULE_UNLOAD */
Tim Abbottc6b37802008-12-05 19:03:59 -0500509int use_module(struct module *a, struct module *b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511/* This is a #define so the string doesn't get put in every .o file */
512#define module_name(mod) \
513({ \
514 struct module *__mod = (mod); \
515 __mod ? __mod->name : "kernel"; \
516})
517
Rusty Russell6dd06c92008-01-29 17:13:22 -0500518/* For kallsyms to ask for address resolution. namebuf should be at
519 * least KSYM_NAME_LEN long: a pointer to namebuf is returned if
520 * found, otherwise NULL. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800521const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500522 unsigned long *symbolsize,
523 unsigned long *offset,
524 char **modname,
525 char *namebuf);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700526int lookup_module_symbol_name(unsigned long addr, char *symname);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700527int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529/* For extable.c to search modules' exception tables. */
530const struct exception_table_entry *search_module_extables(unsigned long addr);
531
532int register_module_notifier(struct notifier_block * nb);
533int unregister_module_notifier(struct notifier_block * nb);
534
535extern void print_modules(void);
536
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400537extern void module_update_tracepoints(void);
538extern int module_get_iter_tracepoints(struct tracepoint_iter *iter);
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540#else /* !CONFIG_MODULES... */
541#define EXPORT_SYMBOL(sym)
542#define EXPORT_SYMBOL_GPL(sym)
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800543#define EXPORT_SYMBOL_GPL_FUTURE(sym)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700544#define EXPORT_UNUSED_SYMBOL(sym)
545#define EXPORT_UNUSED_SYMBOL_GPL(sym)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547/* Given an address, look for it in the exception tables. */
548static inline const struct exception_table_entry *
549search_module_extables(unsigned long addr)
550{
551 return NULL;
552}
553
Rusty Russelle6104992009-03-31 13:05:31 -0600554static inline struct module *__module_address(unsigned long addr)
555{
556 return NULL;
557}
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559static inline struct module *__module_text_address(unsigned long addr)
560{
561 return NULL;
562}
563
Rusty Russelle6104992009-03-31 13:05:31 -0600564static inline bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -0700565{
Rusty Russelle6104992009-03-31 13:05:31 -0600566 return false;
567}
568
569static inline bool is_module_text_address(unsigned long addr)
570{
571 return false;
Ingo Molnar4d435f92006-07-03 00:24:24 -0700572}
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574/* Get/put a kernel symbol (calls should be symmetric) */
575#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
576#define symbol_put(x) do { } while(0)
577#define symbol_put_addr(x) do { } while(0)
578
579static inline void __module_get(struct module *module)
580{
581}
582
583static inline int try_module_get(struct module *module)
584{
585 return 1;
586}
587
588static inline void module_put(struct module *module)
589{
590}
591
592#define module_name(mod) "kernel"
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/* For kallsyms to ask for address resolution. NULL means not found. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800595static inline const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500596 unsigned long *symbolsize,
597 unsigned long *offset,
598 char **modname,
599 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
601 return NULL;
602}
603
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700604static inline int lookup_module_symbol_name(unsigned long addr, char *symname)
605{
606 return -ERANGE;
607}
608
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700609static inline int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
610{
611 return -ERANGE;
612}
613
Alexey Dobriyanea078902007-05-08 00:28:39 -0700614static inline int module_get_kallsym(unsigned int symnum, unsigned long *value,
615 char *type, char *name,
616 char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Alexey Dobriyanea078902007-05-08 00:28:39 -0700618 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
621static inline unsigned long module_kallsyms_lookup_name(const char *name)
622{
623 return 0;
624}
625
Anders Kaseorg75a66612008-12-05 19:03:58 -0500626static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
627 struct module *,
628 unsigned long),
629 void *data)
630{
631 return 0;
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static inline int register_module_notifier(struct notifier_block * nb)
635{
636 /* no events will happen anyway, so this can always succeed */
637 return 0;
638}
639
640static inline int unregister_module_notifier(struct notifier_block * nb)
641{
642 return 0;
643}
644
645#define module_put_and_exit(code) do_exit(code)
646
647static inline void print_modules(void)
648{
649}
650
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400651static inline void module_update_tracepoints(void)
652{
653}
654
655static inline int module_get_iter_tracepoints(struct tracepoint_iter *iter)
656{
657 return 0;
658}
659
Randy Dunlapef665c12007-02-13 15:19:06 -0800660#endif /* CONFIG_MODULES */
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662struct device_driver;
Randy Dunlapef665c12007-02-13 15:19:06 -0800663#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664struct module;
665
Greg Kroah-Hartman7405c1e2007-11-01 10:39:50 -0700666extern struct kset *module_kset;
667extern struct kobj_type module_ktype;
668extern int module_sysfs_initialized;
Randy Dunlapef665c12007-02-13 15:19:06 -0800669
670int mod_sysfs_init(struct module *mod);
671int mod_sysfs_setup(struct module *mod,
672 struct kernel_param *kparam,
673 unsigned int num_params);
674int module_add_modinfo_attrs(struct module *mod);
675void module_remove_modinfo_attrs(struct module *mod);
676
677#else /* !CONFIG_SYSFS */
678
679static inline int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Randy Dunlapef665c12007-02-13 15:19:06 -0800681 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Randy Dunlapef665c12007-02-13 15:19:06 -0800684static inline int mod_sysfs_setup(struct module *mod,
685 struct kernel_param *kparam,
686 unsigned int num_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Randy Dunlapef665c12007-02-13 15:19:06 -0800688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Randy Dunlapef665c12007-02-13 15:19:06 -0800691static inline int module_add_modinfo_attrs(struct module *mod)
692{
693 return 0;
694}
695
696static inline void module_remove_modinfo_attrs(struct module *mod)
697{ }
698
699#endif /* CONFIG_SYSFS */
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
702
703/* BELOW HERE ALL THESE ARE OBSOLETE AND WILL VANISH */
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705#define __MODULE_STRING(x) __stringify(x)
706
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700707
708#ifdef CONFIG_GENERIC_BUG
709int module_bug_finalize(const Elf_Ehdr *, const Elf_Shdr *,
710 struct module *);
711void module_bug_cleanup(struct module *);
712
713#else /* !CONFIG_GENERIC_BUG */
714
715static inline int module_bug_finalize(const Elf_Ehdr *hdr,
716 const Elf_Shdr *sechdrs,
717 struct module *mod)
718{
719 return 0;
720}
721static inline void module_bug_cleanup(struct module *mod) {}
722#endif /* CONFIG_GENERIC_BUG */
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724#endif /* _LINUX_MODULE_H */