blob: 098bdb7bfacf1dd4a69bf3701e39144b847791df [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 Desnoyers8256e472007-10-18 23:41:06 -070018#include <linux/marker.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040019#include <linux/tracepoint.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/local.h>
21
22#include <asm/module.h>
23
24/* Not Yet Implemented */
25#define MODULE_SUPPORTED_DEVICE(name)
26
Adrian Bunkf606ddf2008-07-23 21:28:50 -070027/* some toolchains uses a `_' prefix for all user symbols */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#ifndef MODULE_SYMBOL_PREFIX
29#define MODULE_SYMBOL_PREFIX ""
30#endif
31
Rusty Russell730b69d2008-10-22 10:00:22 -050032#define MODULE_NAME_LEN MAX_PARAM_PREFIX_LEN
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34struct kernel_symbol
35{
36 unsigned long value;
37 const char *name;
38};
39
40struct modversion_info
41{
42 unsigned long crc;
43 char name[MODULE_NAME_LEN];
44};
45
46struct module;
47
48struct module_attribute {
49 struct attribute attr;
50 ssize_t (*show)(struct module_attribute *, struct module *, char *);
51 ssize_t (*store)(struct module_attribute *, struct module *,
52 const char *, size_t count);
Matt Domschc988d2b2005-06-23 22:05:15 -070053 void (*setup)(struct module *, const char *);
54 int (*test)(struct module *);
55 void (*free)(struct module *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
58struct 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
87extern struct module __this_module;
88#define THIS_MODULE (&__this_module)
89#else /* !MODULE */
90#define MODULE_GENERIC_TABLE(gtype,name)
91#define THIS_MODULE ((struct module *)0)
92#endif
93
94/* Generic info of form tag = "info" */
95#define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
96
97/* For userspace: you can also call me... */
98#define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias)
99
100/*
101 * The following license idents are currently accepted as indicating free
102 * software modules
103 *
104 * "GPL" [GNU Public License v2 or later]
105 * "GPL v2" [GNU Public License v2]
106 * "GPL and additional rights" [GNU Public License v2 rights and more]
107 * "Dual BSD/GPL" [GNU Public License v2
108 * or BSD license choice]
Xose Vazquez Perez8d27e902006-06-23 02:05:13 -0700109 * "Dual MIT/GPL" [GNU Public License v2
110 * or MIT license choice]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * "Dual MPL/GPL" [GNU Public License v2
112 * or Mozilla license choice]
113 *
114 * The following other idents are available
115 *
116 * "Proprietary" [Non free products]
117 *
118 * There are dual licensed components, but when running with Linux it is the
119 * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL
120 * is a GPL combined work.
121 *
122 * This exists for several reasons
123 * 1. So modinfo can show license info for users wanting to vet their setup
124 * is free
125 * 2. So the community can ignore bug reports including proprietary modules
126 * 3. So vendors can do likewise based on their own policies
127 */
128#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
129
Rene Herman108f39a2007-05-10 22:22:50 -0700130/* Author, ideally of form NAME[, NAME]*[ and NAME] */
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*/
158#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
159
Jon Masters187afbe2006-08-28 17:08:21 -0500160/* Optional firmware file (or files) needed by the module
161 * format is simply firmware file name. Multiple firmware
162 * files require multiple MODULE_FIRMWARE() specifiers */
163#define MODULE_FIRMWARE(_firmware) MODULE_INFO(firmware, _firmware)
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/* Given an address, look for it in the exception tables */
166const struct exception_table_entry *search_exception_tables(unsigned long add);
167
168struct notifier_block;
169
170#ifdef CONFIG_MODULES
171
172/* Get/put a kernel symbol (calls must be symmetric) */
173void *__symbol_get(const char *symbol);
174void *__symbol_get_gpl(const char *symbol);
175#define symbol_get(x) ((typeof(&x))(__symbol_get(MODULE_SYMBOL_PREFIX #x)))
176
177#ifndef __GENKSYMS__
178#ifdef CONFIG_MODVERSIONS
179/* Mark the CRC weak since genksyms apparently decides not to
180 * generate a checksums for some symbols */
181#define __CRC_SYMBOL(sym, sec) \
182 extern void *__crc_##sym __attribute__((weak)); \
183 static const unsigned long __kcrctab_##sym \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100184 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 __attribute__((section("__kcrctab" sec), unused)) \
186 = (unsigned long) &__crc_##sym;
187#else
188#define __CRC_SYMBOL(sym, sec)
189#endif
190
191/* For every exported symbol, place a struct in the __ksymtab section */
192#define __EXPORT_SYMBOL(sym, sec) \
Patrick McHardya1a8fee2006-03-23 22:07:34 -0800193 extern typeof(sym) sym; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 __CRC_SYMBOL(sym, sec) \
195 static const char __kstrtab_##sym[] \
Rusty Russellea01e792008-03-13 09:02:17 +0000196 __attribute__((section("__ksymtab_strings"), aligned(1))) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 = MODULE_SYMBOL_PREFIX #sym; \
198 static const struct kernel_symbol __ksymtab_##sym \
Adrian Bunk3ff6eec2008-01-24 22:16:20 +0100199 __used \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 __attribute__((section("__ksymtab" sec), unused)) \
201 = { (unsigned long)&sym, __kstrtab_##sym }
202
203#define EXPORT_SYMBOL(sym) \
204 __EXPORT_SYMBOL(sym, "")
205
206#define EXPORT_SYMBOL_GPL(sym) \
207 __EXPORT_SYMBOL(sym, "_gpl")
208
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800209#define EXPORT_SYMBOL_GPL_FUTURE(sym) \
210 __EXPORT_SYMBOL(sym, "_gpl_future")
211
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700212
213#ifdef CONFIG_UNUSED_SYMBOLS
214#define EXPORT_UNUSED_SYMBOL(sym) __EXPORT_SYMBOL(sym, "_unused")
215#define EXPORT_UNUSED_SYMBOL_GPL(sym) __EXPORT_SYMBOL(sym, "_unused_gpl")
216#else
217#define EXPORT_UNUSED_SYMBOL(sym)
218#define EXPORT_UNUSED_SYMBOL_GPL(sym)
219#endif
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#endif
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223enum module_state
224{
225 MODULE_STATE_LIVE,
226 MODULE_STATE_COMING,
227 MODULE_STATE_GOING,
228};
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230struct module
231{
232 enum module_state state;
233
234 /* Member of list of modules */
235 struct list_head list;
236
237 /* Unique handle for this module */
238 char name[MODULE_NAME_LEN];
239
240 /* Sysfs stuff. */
241 struct module_kobject mkobj;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800242 struct module_attribute *modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -0700243 const char *version;
244 const char *srcversion;
Kay Sievers270a6c42007-01-18 13:26:15 +0100245 struct kobject *holders_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 /* Exported symbols */
248 const struct kernel_symbol *syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 const unsigned long *crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500250 unsigned int num_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Rusty Russelle180a6b2009-03-31 13:05:29 -0600252 /* Kernel parameters. */
253 struct kernel_param *kp;
254 unsigned int num_kp;
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* GPL-only exported symbols. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 unsigned int num_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500258 const struct kernel_symbol *gpl_syms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 const unsigned long *gpl_crcs;
260
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500261#ifdef CONFIG_UNUSED_SYMBOLS
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700262 /* unused exported symbols. */
263 const struct kernel_symbol *unused_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700264 const unsigned long *unused_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500265 unsigned int num_unused_syms;
266
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700267 /* GPL-only, unused exported symbols. */
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700268 unsigned int num_unused_gpl_syms;
Richard Kennedyaf540682008-07-22 19:24:26 -0500269 const struct kernel_symbol *unused_gpl_syms;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700270 const unsigned long *unused_gpl_crcs;
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500271#endif
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700272
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800273 /* symbols that will be GPL-only in the near future. */
274 const struct kernel_symbol *gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800275 const unsigned long *gpl_future_crcs;
Richard Kennedyaf540682008-07-22 19:24:26 -0500276 unsigned int num_gpl_future_syms;
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* Exception table */
279 unsigned int num_exentries;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500280 struct exception_table_entry *extable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* Startup function. */
283 int (*init)(void);
284
285 /* If this is non-NULL, vfree after init() returns */
286 void *module_init;
287
288 /* Here is the actual code + data, vfree'd on unload. */
289 void *module_core;
290
291 /* Here are the sizes of the init and core sections */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500292 unsigned int init_size, core_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /* The size of the executable code in each section. */
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500295 unsigned int init_text_size, core_text_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 /* Arch-specific module values */
298 struct mod_arch_specific arch;
299
Randy Dunlap2bc2d612006-10-02 02:17:02 -0700300 unsigned int taints; /* same bits as kernel:tainted */
301
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800302#ifdef CONFIG_GENERIC_BUG
303 /* Support for BUG */
Richard Kennedyaf540682008-07-22 19:24:26 -0500304 unsigned num_bugs;
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -0800305 struct list_head bug_list;
306 struct bug_entry *bug_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#endif
308
309#ifdef CONFIG_KALLSYMS
310 /* We keep the symbol and string tables for kallsyms. */
311 Elf_Sym *symtab;
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -0500312 unsigned int num_symtab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 char *strtab;
314
315 /* Section attributes */
316 struct module_sect_attrs *sect_attrs;
Roland McGrath6d760132007-10-16 23:26:40 -0700317
318 /* Notes attributes */
319 struct module_notes_attrs *notes_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#endif
321
322 /* Per-cpu data. */
323 void *percpu;
324
325 /* The command line arguments (may be mangled). People like
326 keeping pointers to this stuff */
327 char *args;
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700328#ifdef CONFIG_MARKERS
329 struct marker *markers;
330 unsigned int num_markers;
331#endif
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400332#ifdef CONFIG_TRACEPOINTS
333 struct tracepoint *tracepoints;
334 unsigned int num_tracepoints;
335#endif
Richard Kennedyaf540682008-07-22 19:24:26 -0500336
Frederic Weisbecker769b0442009-03-06 17:21:49 +0100337#ifdef CONFIG_TRACING
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100338 const char **trace_bprintk_fmt_start;
339 unsigned int num_trace_bprintk_fmt;
340#endif
Steven Rostedt6d723732009-04-10 14:53:50 -0400341#ifdef CONFIG_EVENT_TRACING
342 struct ftrace_event_call *trace_events;
343 unsigned int num_trace_events;
344#endif
Steven Rostedt93eb6772009-04-15 13:24:06 -0400345#ifdef CONFIG_FTRACE_MCOUNT_RECORD
346 unsigned long *ftrace_callsites;
347 unsigned int num_ftrace_callsites;
348#endif
Lai Jiangshan1ba28e02009-03-06 17:21:48 +0100349
Richard Kennedyaf540682008-07-22 19:24:26 -0500350#ifdef CONFIG_MODULE_UNLOAD
351 /* What modules depend on me? */
352 struct list_head modules_which_use_me;
353
354 /* Who is waiting for us to be unloaded */
355 struct task_struct *waiter;
356
357 /* Destruction function. */
358 void (*exit)(void);
359
Eric Dumazet720eba32009-02-03 13:31:36 +1030360#ifdef CONFIG_SMP
361 char *refptr;
362#else
363 local_t ref;
364#endif
Richard Kennedyaf540682008-07-22 19:24:26 -0500365#endif
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -0700366
367#ifdef CONFIG_CONSTRUCTORS
368 /* Constructor functions. */
369 ctor_fn_t *ctors;
370 unsigned int num_ctors;
371#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372};
Roman Zippele61a1c12007-05-09 02:35:15 -0700373#ifndef MODULE_ARCH_INIT
374#define MODULE_ARCH_INIT {}
375#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Tim Abbottc6b37802008-12-05 19:03:59 -0500377extern struct mutex module_mutex;
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/* FIXME: It'd be nice to isolate modules during init, too, so they
380 aren't used before they (may) fail. But presently too much code
381 (IDE & SCSI) require entry into the module during init.*/
382static inline int module_is_live(struct module *mod)
383{
384 return mod->state != MODULE_STATE_GOING;
385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387struct module *__module_text_address(unsigned long addr);
Rusty Russelle6104992009-03-31 13:05:31 -0600388struct module *__module_address(unsigned long addr);
389bool is_module_address(unsigned long addr);
390bool is_module_text_address(unsigned long addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Masami Hiramatsua06f6212009-01-06 14:41:49 -0800392static inline int within_module_core(unsigned long addr, struct module *mod)
393{
394 return (unsigned long)mod->module_core <= addr &&
395 addr < (unsigned long)mod->module_core + mod->core_size;
396}
397
398static inline int within_module_init(unsigned long addr, struct module *mod)
399{
400 return (unsigned long)mod->module_init <= addr &&
401 addr < (unsigned long)mod->module_init + mod->init_size;
402}
403
Tim Abbottc6b37802008-12-05 19:03:59 -0500404/* Search for module by name: must hold module_mutex. */
405struct module *find_module(const char *name);
406
407struct symsearch {
408 const struct kernel_symbol *start, *stop;
409 const unsigned long *crcs;
410 enum {
411 NOT_GPL_ONLY,
412 GPL_ONLY,
413 WILL_BE_GPL_ONLY,
414 } licence;
415 bool unused;
416};
417
418/* Search for an exported symbol by name. */
419const struct kernel_symbol *find_symbol(const char *name,
420 struct module **owner,
421 const unsigned long **crc,
422 bool gplok,
423 bool warn);
424
425/* Walk the exported symbol table */
426bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
427 unsigned int symnum, void *data), void *data);
428
Alexey Dobriyanea078902007-05-08 00:28:39 -0700429/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 symnum out of range. */
Alexey Dobriyanea078902007-05-08 00:28:39 -0700431int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
432 char *name, char *module_name, int *exported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434/* Look for this name: can be of form module:name. */
435unsigned long module_kallsyms_lookup_name(const char *name);
436
Anders Kaseorg75a66612008-12-05 19:03:58 -0500437int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
438 struct module *, unsigned long),
439 void *data);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441extern void __module_put_and_exit(struct module *mod, long code)
442 __attribute__((noreturn));
443#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code);
444
445#ifdef CONFIG_MODULE_UNLOAD
446unsigned int module_refcount(struct module *mod);
447void __symbol_put(const char *symbol);
448#define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x)
449void symbol_put_addr(void *addr);
450
Eric Dumazet720eba32009-02-03 13:31:36 +1030451static inline local_t *__module_ref_addr(struct module *mod, int cpu)
452{
453#ifdef CONFIG_SMP
454 return (local_t *) (mod->refptr + per_cpu_offset(cpu));
455#else
456 return &mod->ref;
457#endif
458}
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460/* 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) {
Eric Dumazet720eba32009-02-03 13:31:36 +1030465 local_inc(__module_ref_addr(module, get_cpu()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 put_cpu();
467 }
468}
469
470static inline int try_module_get(struct module *module)
471{
472 int ret = 1;
473
474 if (module) {
475 unsigned int cpu = get_cpu();
476 if (likely(module_is_live(module)))
Eric Dumazet720eba32009-02-03 13:31:36 +1030477 local_inc(__module_ref_addr(module, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 else
479 ret = 0;
480 put_cpu();
481 }
482 return ret;
483}
484
Al Virof6a57032006-10-18 01:47:25 -0400485extern void module_put(struct module *module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487#else /*!CONFIG_MODULE_UNLOAD*/
488static inline int try_module_get(struct module *module)
489{
490 return !module || module_is_live(module);
491}
492static inline void module_put(struct module *module)
493{
494}
495static inline void __module_get(struct module *module)
496{
497}
498#define symbol_put(x) do { } while(0)
499#define symbol_put_addr(p) do { } while(0)
500
501#endif /* CONFIG_MODULE_UNLOAD */
Tim Abbottc6b37802008-12-05 19:03:59 -0500502int use_module(struct module *a, struct module *b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504/* This is a #define so the string doesn't get put in every .o file */
505#define module_name(mod) \
506({ \
507 struct module *__mod = (mod); \
508 __mod ? __mod->name : "kernel"; \
509})
510
Rusty Russell6dd06c92008-01-29 17:13:22 -0500511/* For kallsyms to ask for address resolution. namebuf should be at
512 * least KSYM_NAME_LEN long: a pointer to namebuf is returned if
513 * found, otherwise NULL. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800514const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500515 unsigned long *symbolsize,
516 unsigned long *offset,
517 char **modname,
518 char *namebuf);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700519int lookup_module_symbol_name(unsigned long addr, char *symname);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700520int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522/* For extable.c to search modules' exception tables. */
523const struct exception_table_entry *search_module_extables(unsigned long addr);
524
525int register_module_notifier(struct notifier_block * nb);
526int unregister_module_notifier(struct notifier_block * nb);
527
528extern void print_modules(void);
529
Mathieu Desnoyersfb40bd72008-02-13 15:03:37 -0800530extern void module_update_markers(void);
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700531
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400532extern void module_update_tracepoints(void);
533extern int module_get_iter_tracepoints(struct tracepoint_iter *iter);
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535#else /* !CONFIG_MODULES... */
536#define EXPORT_SYMBOL(sym)
537#define EXPORT_SYMBOL_GPL(sym)
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800538#define EXPORT_SYMBOL_GPL_FUTURE(sym)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700539#define EXPORT_UNUSED_SYMBOL(sym)
540#define EXPORT_UNUSED_SYMBOL_GPL(sym)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542/* Given an address, look for it in the exception tables. */
543static inline const struct exception_table_entry *
544search_module_extables(unsigned long addr)
545{
546 return NULL;
547}
548
Rusty Russelle6104992009-03-31 13:05:31 -0600549static inline struct module *__module_address(unsigned long addr)
550{
551 return NULL;
552}
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554static inline struct module *__module_text_address(unsigned long addr)
555{
556 return NULL;
557}
558
Rusty Russelle6104992009-03-31 13:05:31 -0600559static inline bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -0700560{
Rusty Russelle6104992009-03-31 13:05:31 -0600561 return false;
562}
563
564static inline bool is_module_text_address(unsigned long addr)
565{
566 return false;
Ingo Molnar4d435f92006-07-03 00:24:24 -0700567}
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569/* Get/put a kernel symbol (calls should be symmetric) */
570#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
571#define symbol_put(x) do { } while(0)
572#define symbol_put_addr(x) do { } while(0)
573
574static inline void __module_get(struct module *module)
575{
576}
577
578static inline int try_module_get(struct module *module)
579{
580 return 1;
581}
582
583static inline void module_put(struct module *module)
584{
585}
586
587#define module_name(mod) "kernel"
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589/* For kallsyms to ask for address resolution. NULL means not found. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -0800590static inline const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -0500591 unsigned long *symbolsize,
592 unsigned long *offset,
593 char **modname,
594 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 return NULL;
597}
598
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -0700599static inline int lookup_module_symbol_name(unsigned long addr, char *symname)
600{
601 return -ERANGE;
602}
603
Alexey Dobriyana5c43da2007-05-08 00:28:47 -0700604static inline int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
605{
606 return -ERANGE;
607}
608
Alexey Dobriyanea078902007-05-08 00:28:39 -0700609static inline int module_get_kallsym(unsigned int symnum, unsigned long *value,
610 char *type, char *name,
611 char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Alexey Dobriyanea078902007-05-08 00:28:39 -0700613 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
616static inline unsigned long module_kallsyms_lookup_name(const char *name)
617{
618 return 0;
619}
620
Anders Kaseorg75a66612008-12-05 19:03:58 -0500621static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
622 struct module *,
623 unsigned long),
624 void *data)
625{
626 return 0;
627}
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629static inline int register_module_notifier(struct notifier_block * nb)
630{
631 /* no events will happen anyway, so this can always succeed */
632 return 0;
633}
634
635static inline int unregister_module_notifier(struct notifier_block * nb)
636{
637 return 0;
638}
639
640#define module_put_and_exit(code) do_exit(code)
641
642static inline void print_modules(void)
643{
644}
645
Adrian Bunk1387d0d2008-02-14 19:31:20 -0800646static inline void module_update_markers(void)
Mathieu Desnoyers8256e472007-10-18 23:41:06 -0700647{
648}
649
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -0400650static inline void module_update_tracepoints(void)
651{
652}
653
654static inline int module_get_iter_tracepoints(struct tracepoint_iter *iter)
655{
656 return 0;
657}
658
Randy Dunlapef665c12007-02-13 15:19:06 -0800659#endif /* CONFIG_MODULES */
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661struct device_driver;
Randy Dunlapef665c12007-02-13 15:19:06 -0800662#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663struct module;
664
Greg Kroah-Hartman7405c1e2007-11-01 10:39:50 -0700665extern struct kset *module_kset;
666extern struct kobj_type module_ktype;
667extern int module_sysfs_initialized;
Randy Dunlapef665c12007-02-13 15:19:06 -0800668
669int mod_sysfs_init(struct module *mod);
670int mod_sysfs_setup(struct module *mod,
671 struct kernel_param *kparam,
672 unsigned int num_params);
673int module_add_modinfo_attrs(struct module *mod);
674void module_remove_modinfo_attrs(struct module *mod);
675
676#else /* !CONFIG_SYSFS */
677
678static inline int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Randy Dunlapef665c12007-02-13 15:19:06 -0800680 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Randy Dunlapef665c12007-02-13 15:19:06 -0800683static inline int mod_sysfs_setup(struct module *mod,
684 struct kernel_param *kparam,
685 unsigned int num_params)
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 module_add_modinfo_attrs(struct module *mod)
691{
692 return 0;
693}
694
695static inline void module_remove_modinfo_attrs(struct module *mod)
696{ }
697
698#endif /* CONFIG_SYSFS */
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
701
702/* BELOW HERE ALL THESE ARE OBSOLETE AND WILL VANISH */
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704#define __MODULE_STRING(x) __stringify(x)
705
Andrew Morton0d9c25d2009-06-16 15:33:37 -0700706
707#ifdef CONFIG_GENERIC_BUG
708int module_bug_finalize(const Elf_Ehdr *, const Elf_Shdr *,
709 struct module *);
710void module_bug_cleanup(struct module *);
711
712#else /* !CONFIG_GENERIC_BUG */
713
714static inline int module_bug_finalize(const Elf_Ehdr *hdr,
715 const Elf_Shdr *sechdrs,
716 struct module *mod)
717{
718 return 0;
719}
720static inline void module_bug_cleanup(struct module *mod) {}
721#endif /* CONFIG_GENERIC_BUG */
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#endif /* _LINUX_MODULE_H */