]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/module.h
static_call: Add inline static call infrastructure
[mirror_ubuntu-jammy-kernel.git] / include / linux / module.h
CommitLineData
bf49d9dd 1/* SPDX-License-Identifier: GPL-2.0-only */
1da177e4
LT
2/*
3 * Dynamic loading of modules into the kernel.
4 *
5 * Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
6 * Rewritten again by Rusty Russell, 2002
7 */
bf49d9dd
MY
8
9#ifndef _LINUX_MODULE_H
10#define _LINUX_MODULE_H
11
1da177e4
LT
12#include <linux/list.h>
13#include <linux/stat.h>
14#include <linux/compiler.h>
15#include <linux/cache.h>
16#include <linux/kmod.h>
0fd972a7 17#include <linux/init.h>
1da177e4
LT
18#include <linux/elf.h>
19#include <linux/stringify.h>
20#include <linux/kobject.h>
21#include <linux/moduleparam.h>
b2e285fc 22#include <linux/jump_label.h>
f5016932 23#include <linux/export.h>
93c2e105 24#include <linux/rbtree_latch.h>
663faf9f 25#include <linux/error-injection.h>
9c0be3f6 26#include <linux/tracepoint-defs.h>
fe15b50c 27#include <linux/srcu.h>
9183c3f9 28#include <linux/static_call_types.h>
1da177e4 29
e1783a24 30#include <linux/percpu.h>
1da177e4
LT
31#include <asm/module.h>
32
33/* Not Yet Implemented */
34#define MODULE_SUPPORTED_DEVICE(name)
35
730b69d2 36#define MODULE_NAME_LEN MAX_PARAM_PREFIX_LEN
1da177e4 37
e865d06b 38struct modversion_info {
1da177e4
LT
39 unsigned long crc;
40 char name[MODULE_NAME_LEN];
41};
42
43struct module;
0ef76537 44struct exception_table_entry;
1da177e4 45
4befb026
KS
46struct module_kobject {
47 struct kobject kobj;
48 struct module *mod;
49 struct kobject *drivers_dir;
50 struct module_param_attrs *mp;
942e4431 51 struct completion *kobj_completion;
3859a271 52} __randomize_layout;
4befb026 53
1da177e4 54struct module_attribute {
4befb026
KS
55 struct attribute attr;
56 ssize_t (*show)(struct module_attribute *, struct module_kobject *,
57 char *);
58 ssize_t (*store)(struct module_attribute *, struct module_kobject *,
1da177e4 59 const char *, size_t count);
c988d2b2
MD
60 void (*setup)(struct module *, const char *);
61 int (*test)(struct module *);
62 void (*free)(struct module *);
1da177e4
LT
63};
64
e94965ed
DT
65struct module_version_attribute {
66 struct module_attribute mattr;
67 const char *module_name;
68 const char *version;
98562ad8 69} __attribute__ ((__aligned__(sizeof(void *))));
e94965ed 70
9b73a584 71extern ssize_t __modver_version_show(struct module_attribute *,
4befb026 72 struct module_kobject *, char *);
9b73a584 73
88bfa324 74extern struct module_attribute module_uevent;
1da177e4
LT
75
76/* These are either module local, or the kernel's dummy ones. */
77extern int init_module(void);
78extern void cleanup_module(void);
79
0fd972a7
PG
80#ifndef MODULE
81/**
82 * module_init() - driver initialization entry point
83 * @x: function to be run at kernel boot time or module insertion
84 *
85 * module_init() will either be called during do_initcalls() (if
86 * builtin) or at module insertion time (if a module). There can only
87 * be one per module.
88 */
89#define module_init(x) __initcall(x);
90
91/**
92 * module_exit() - driver exit entry point
93 * @x: function to be run when driver is removed
94 *
95 * module_exit() will wrap the driver clean-up code
96 * with cleanup_module() when used with rmmod when
97 * the driver is a module. If the driver is statically
98 * compiled into the kernel, module_exit() has no effect.
99 * There can only be one per module.
100 */
101#define module_exit(x) __exitcall(x);
102
103#else /* MODULE */
104
105/*
106 * In most cases loadable modules do not need custom
107 * initcall levels. There are still some valid cases where
108 * a driver may be needed early if built in, and does not
109 * matter when built as a loadable module. Like bus
110 * snooping debug drivers.
111 */
112#define early_initcall(fn) module_init(fn)
113#define core_initcall(fn) module_init(fn)
114#define core_initcall_sync(fn) module_init(fn)
115#define postcore_initcall(fn) module_init(fn)
116#define postcore_initcall_sync(fn) module_init(fn)
117#define arch_initcall(fn) module_init(fn)
118#define subsys_initcall(fn) module_init(fn)
119#define subsys_initcall_sync(fn) module_init(fn)
120#define fs_initcall(fn) module_init(fn)
121#define fs_initcall_sync(fn) module_init(fn)
122#define rootfs_initcall(fn) module_init(fn)
123#define device_initcall(fn) module_init(fn)
124#define device_initcall_sync(fn) module_init(fn)
125#define late_initcall(fn) module_init(fn)
126#define late_initcall_sync(fn) module_init(fn)
127
128#define console_initcall(fn) module_init(fn)
0fd972a7
PG
129
130/* Each module must use one module_init(). */
131#define module_init(initfn) \
1f318a8b 132 static inline initcall_t __maybe_unused __inittest(void) \
0fd972a7 133 { return initfn; } \
a6e60d84 134 int init_module(void) __copy(initfn) __attribute__((alias(#initfn)));
0fd972a7
PG
135
136/* This is only required if you want to be unloadable. */
137#define module_exit(exitfn) \
1f318a8b 138 static inline exitcall_t __maybe_unused __exittest(void) \
0fd972a7 139 { return exitfn; } \
a6e60d84 140 void cleanup_module(void) __copy(exitfn) __attribute__((alias(#exitfn)));
0fd972a7
PG
141
142#endif
143
144/* This means "can be init if no module support, otherwise module load
145 may call it." */
146#ifdef CONFIG_MODULES
147#define __init_or_module
148#define __initdata_or_module
149#define __initconst_or_module
150#define __INIT_OR_MODULE .text
151#define __INITDATA_OR_MODULE .data
152#define __INITRODATA_OR_MODULE .section ".rodata","a",%progbits
153#else
154#define __init_or_module __init
155#define __initdata_or_module __initdata
156#define __initconst_or_module __initconst
157#define __INIT_OR_MODULE __INIT
158#define __INITDATA_OR_MODULE __INITDATA
159#define __INITRODATA_OR_MODULE __INITRODATA
160#endif /*CONFIG_MODULES*/
161
1da177e4
LT
162/* Generic info of form tag = "info" */
163#define MODULE_INFO(tag, info) __MODULE_INFO(tag, tag, info)
164
165/* For userspace: you can also call me... */
166#define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias)
167
7cb14ba7
AR
168/* Soft module dependencies. See man modprobe.d for details.
169 * Example: MODULE_SOFTDEP("pre: module-foo module-bar post: module-baz")
170 */
171#define MODULE_SOFTDEP(_softdep) MODULE_INFO(softdep, _softdep)
172
8b41fc44
MY
173/*
174 * MODULE_FILE is used for generating modules.builtin
175 * So, make it no-op when this is being built as a module
176 */
177#ifdef MODULE
178#define MODULE_FILE
179#else
180#define MODULE_FILE MODULE_INFO(file, KBUILD_MODFILE);
181#endif
182
1da177e4
LT
183/*
184 * The following license idents are currently accepted as indicating free
185 * software modules
186 *
bf7fbeea 187 * "GPL" [GNU Public License v2]
1da177e4
LT
188 * "GPL v2" [GNU Public License v2]
189 * "GPL and additional rights" [GNU Public License v2 rights and more]
190 * "Dual BSD/GPL" [GNU Public License v2
191 * or BSD license choice]
8d27e908
XVP
192 * "Dual MIT/GPL" [GNU Public License v2
193 * or MIT license choice]
1da177e4
LT
194 * "Dual MPL/GPL" [GNU Public License v2
195 * or Mozilla license choice]
196 *
197 * The following other idents are available
198 *
199 * "Proprietary" [Non free products]
200 *
bf7fbeea
TG
201 * Both "GPL v2" and "GPL" (the latter also in dual licensed strings) are
202 * merely stating that the module is licensed under the GPL v2, but are not
203 * telling whether "GPL v2 only" or "GPL v2 or later". The reason why there
204 * are two variants is a historic and failed attempt to convey more
205 * information in the MODULE_LICENSE string. For module loading the
206 * "only/or later" distinction is completely irrelevant and does neither
207 * replace the proper license identifiers in the corresponding source file
208 * nor amends them in any way. The sole purpose is to make the
209 * 'Proprietary' flagging work and to refuse to bind symbols which are
210 * exported with EXPORT_SYMBOL_GPL when a non free module is loaded.
211 *
212 * In the same way "BSD" is not a clear license information. It merely
213 * states, that the module is licensed under one of the compatible BSD
214 * license variants. The detailed and correct license information is again
215 * to be found in the corresponding source files.
216 *
1da177e4
LT
217 * There are dual licensed components, but when running with Linux it is the
218 * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL
219 * is a GPL combined work.
220 *
221 * This exists for several reasons
e865d06b 222 * 1. So modinfo can show license info for users wanting to vet their setup
1da177e4
LT
223 * is free
224 * 2. So the community can ignore bug reports including proprietary modules
225 * 3. So vendors can do likewise based on their own policies
226 */
8b41fc44 227#define MODULE_LICENSE(_license) MODULE_FILE MODULE_INFO(license, _license)
1da177e4 228
1d7015ca
JB
229/*
230 * Author(s), use "Name <email>" or just "Name", for multiple
231 * authors use multiple MODULE_AUTHOR() statements/lines.
232 */
1da177e4 233#define MODULE_AUTHOR(_author) MODULE_INFO(author, _author)
e865d06b 234
1da177e4
LT
235/* What your module does. */
236#define MODULE_DESCRIPTION(_description) MODULE_INFO(description, _description)
237
cff26a51
RR
238#ifdef MODULE
239/* Creates an alias so file2alias.c can find device table. */
240#define MODULE_DEVICE_TABLE(type, name) \
0bf8bf50 241extern typeof(name) __mod_##type##__##name##_device_table \
cff26a51
RR
242 __attribute__ ((unused, alias(__stringify(name))))
243#else /* !MODULE */
244#define MODULE_DEVICE_TABLE(type, name)
245#endif
1da177e4
LT
246
247/* Version of form [<epoch>:]<version>[-<extra-version>].
e865d06b
SL
248 * Or for CVS/RCS ID version, everything but the number is stripped.
249 * <epoch>: A (small) unsigned integer which allows you to start versions
250 * anew. If not mentioned, it's zero. eg. "2:1.0" is after
251 * "1:2.0".
252
253 * <version>: The <version> may contain only alphanumerics and the
254 * character `.'. Ordered by numeric sort for numeric parts,
255 * ascii sort for ascii parts (as per RPM or DEB algorithm).
256
257 * <extraversion>: Like <version>, but inserted for local
258 * customizations, eg "rh3" or "rusty1".
259
260 * Using this automatically adds a checksum of the .c files and the
261 * local headers in "srcversion".
262 */
e94965ed 263
3b90a5b2 264#if defined(MODULE) || !defined(CONFIG_SYSFS)
1da177e4 265#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
e94965ed
DT
266#else
267#define MODULE_VERSION(_version) \
898490c0 268 MODULE_INFO(version, _version); \
b4bc8428 269 static struct module_version_attribute ___modver_attr = { \
e94965ed
DT
270 .mattr = { \
271 .attr = { \
272 .name = "version", \
273 .mode = S_IRUGO, \
274 }, \
275 .show = __modver_version_show, \
276 }, \
277 .module_name = KBUILD_MODNAME, \
278 .version = _version, \
b4bc8428
DT
279 }; \
280 static const struct module_version_attribute \
281 __used __attribute__ ((__section__ ("__modver"))) \
282 * __moduleparam_const __modver_attr = &___modver_attr
e94965ed 283#endif
1da177e4 284
187afbed
JM
285/* Optional firmware file (or files) needed by the module
286 * format is simply firmware file name. Multiple firmware
287 * files require multiple MODULE_FIRMWARE() specifiers */
288#define MODULE_FIRMWARE(_firmware) MODULE_INFO(firmware, _firmware)
289
3e4d890a
LT
290#define MODULE_IMPORT_NS(ns) MODULE_INFO(import_ns, #ns)
291
1da177e4
LT
292struct notifier_block;
293
294#ifdef CONFIG_MODULES
295
5ed10910 296extern int modules_disabled; /* for sysctl */
1da177e4
LT
297/* Get/put a kernel symbol (calls must be symmetric) */
298void *__symbol_get(const char *symbol);
299void *__symbol_get_gpl(const char *symbol);
996302c5 300#define symbol_get(x) ((typeof(&x))(__symbol_get(__stringify(x))))
1da177e4 301
c8e21ced
RR
302/* modules using other modules: kdb wants to see this. */
303struct module_use {
304 struct list_head source_list;
305 struct list_head target_list;
306 struct module *source, *target;
307};
308
0d21b0e3
RR
309enum module_state {
310 MODULE_STATE_LIVE, /* Normal state. */
311 MODULE_STATE_COMING, /* Full formed, running module_init. */
312 MODULE_STATE_GOING, /* Going away. */
313 MODULE_STATE_UNFORMED, /* Still setting it up. */
1da177e4
LT
314};
315
93c2e105
PZ
316struct mod_tree_node {
317 struct module *mod;
318 struct latch_tree_node node;
319};
320
7523e4dc
RR
321struct module_layout {
322 /* The actual code + data. */
323 void *base;
324 /* Total size. */
325 unsigned int size;
326 /* The size of the executable code. */
327 unsigned int text_size;
328 /* Size of RO section of the module (text+rodata) */
329 unsigned int ro_size;
444d13ff
JY
330 /* Size of RO after init section */
331 unsigned int ro_after_init_size;
7523e4dc
RR
332
333#ifdef CONFIG_MODULES_TREE_LOOKUP
334 struct mod_tree_node mtn;
335#endif
336};
337
338#ifdef CONFIG_MODULES_TREE_LOOKUP
339/* Only touch one cacheline for common rbtree-for-core-layout case. */
340#define __module_layout_align ____cacheline_aligned
341#else
342#define __module_layout_align
343#endif
344
8244062e
RR
345struct mod_kallsyms {
346 Elf_Sym *symtab;
347 unsigned int num_symtab;
348 char *strtab;
1c7651f4 349 char *typetab;
8244062e
RR
350};
351
1ce15ef4
JY
352#ifdef CONFIG_LIVEPATCH
353struct klp_modinfo {
354 Elf_Ehdr hdr;
355 Elf_Shdr *sechdrs;
356 char *secstrings;
357 unsigned int symndx;
358};
359#endif
360
e865d06b 361struct module {
1da177e4
LT
362 enum module_state state;
363
364 /* Member of list of modules */
365 struct list_head list;
366
367 /* Unique handle for this module */
368 char name[MODULE_NAME_LEN];
369
370 /* Sysfs stuff. */
371 struct module_kobject mkobj;
03e88ae1 372 struct module_attribute *modinfo_attrs;
c988d2b2
MD
373 const char *version;
374 const char *srcversion;
270a6c4c 375 struct kobject *holders_dir;
1da177e4
LT
376
377 /* Exported symbols */
378 const struct kernel_symbol *syms;
71810db2 379 const s32 *crcs;
af540689 380 unsigned int num_syms;
1da177e4 381
e180a6b7 382 /* Kernel parameters. */
cf2fde7b 383#ifdef CONFIG_SYSFS
b51d23e4 384 struct mutex param_lock;
cf2fde7b 385#endif
e180a6b7
RR
386 struct kernel_param *kp;
387 unsigned int num_kp;
388
1da177e4 389 /* GPL-only exported symbols. */
1da177e4 390 unsigned int num_gpl_syms;
af540689 391 const struct kernel_symbol *gpl_syms;
71810db2 392 const s32 *gpl_crcs;
262e6ae7 393 bool using_gplonly_symbols;
1da177e4 394
f7f5b675 395#ifdef CONFIG_UNUSED_SYMBOLS
f71d20e9
AV
396 /* unused exported symbols. */
397 const struct kernel_symbol *unused_syms;
71810db2 398 const s32 *unused_crcs;
af540689
RK
399 unsigned int num_unused_syms;
400
f71d20e9 401 /* GPL-only, unused exported symbols. */
f71d20e9 402 unsigned int num_unused_gpl_syms;
af540689 403 const struct kernel_symbol *unused_gpl_syms;
71810db2 404 const s32 *unused_gpl_crcs;
f7f5b675 405#endif
f71d20e9 406
106a4ee2
RR
407#ifdef CONFIG_MODULE_SIG
408 /* Signature was verified. */
409 bool sig_ok;
410#endif
411
f2411da7
LR
412 bool async_probe_requested;
413
9f28bb7e
GKH
414 /* symbols that will be GPL-only in the near future. */
415 const struct kernel_symbol *gpl_future_syms;
71810db2 416 const s32 *gpl_future_crcs;
af540689 417 unsigned int num_gpl_future_syms;
9f28bb7e 418
1da177e4
LT
419 /* Exception table */
420 unsigned int num_exentries;
5e458cc0 421 struct exception_table_entry *extable;
1da177e4
LT
422
423 /* Startup function. */
424 int (*init)(void);
425
7523e4dc
RR
426 /* Core layout: rbtree is accessed frequently, so keep together. */
427 struct module_layout core_layout __module_layout_align;
428 struct module_layout init_layout;
84e1c6bb 429
1da177e4
LT
430 /* Arch-specific module values */
431 struct mod_arch_specific arch;
432
7fd8329b 433 unsigned long taints; /* same bits as kernel:taint_flags */
2bc2d61a 434
7664c5a1
JF
435#ifdef CONFIG_GENERIC_BUG
436 /* Support for BUG */
af540689 437 unsigned num_bugs;
7664c5a1
JF
438 struct list_head bug_list;
439 struct bug_entry *bug_table;
1da177e4
LT
440#endif
441
442#ifdef CONFIG_KALLSYMS
8244062e 443 /* Protected by RCU and/or module_mutex: use rcu_dereference() */
6080d608 444 struct mod_kallsyms __rcu *kallsyms;
8244062e 445 struct mod_kallsyms core_kallsyms;
c714965f 446
1da177e4
LT
447 /* Section attributes */
448 struct module_sect_attrs *sect_attrs;
6d760133
RM
449
450 /* Notes attributes */
451 struct module_notes_attrs *notes_attrs;
1da177e4
LT
452#endif
453
a288bd65
RK
454 /* The command line arguments (may be mangled). People like
455 keeping pointers to this stuff */
456 char *args;
457
259354de 458#ifdef CONFIG_SMP
1da177e4 459 /* Per-cpu data. */
259354de
TH
460 void __percpu *percpu;
461 unsigned int percpu_size;
462#endif
66e9b071
TG
463 void *noinstr_text_start;
464 unsigned int noinstr_text_size;
1da177e4 465
97e1c18e 466#ifdef CONFIG_TRACEPOINTS
97e1c18e 467 unsigned int num_tracepoints;
9c0be3f6 468 tracepoint_ptr_t *tracepoints_ptrs;
97e1c18e 469#endif
fe15b50c
PM
470#ifdef CONFIG_TREE_SRCU
471 unsigned int num_srcu_structs;
472 struct srcu_struct **srcu_struct_ptrs;
473#endif
a38d1107
MM
474#ifdef CONFIG_BPF_EVENTS
475 unsigned int num_bpf_raw_events;
476 struct bpf_raw_event_map *bpf_raw_events;
477#endif
e9666d10 478#ifdef CONFIG_JUMP_LABEL
bf5438fc
JB
479 struct jump_entry *jump_entries;
480 unsigned int num_jump_entries;
481#endif
769b0441 482#ifdef CONFIG_TRACING
1ba28e02 483 unsigned int num_trace_bprintk_fmt;
a288bd65 484 const char **trace_bprintk_fmt_start;
1ba28e02 485#endif
6d723736 486#ifdef CONFIG_EVENT_TRACING
2425bcb9 487 struct trace_event_call **trace_events;
6d723736 488 unsigned int num_trace_events;
99be647c
JL
489 struct trace_eval_map **trace_evals;
490 unsigned int num_trace_evals;
6d723736 491#endif
93eb677d 492#ifdef CONFIG_FTRACE_MCOUNT_RECORD
93eb677d 493 unsigned int num_ftrace_callsites;
a288bd65 494 unsigned long *ftrace_callsites;
93eb677d 495#endif
1e6769b0
MH
496#ifdef CONFIG_KPROBES
497 void *kprobes_text_start;
498 unsigned int kprobes_text_size;
16db6264
MH
499 unsigned long *kprobe_blacklist;
500 unsigned int num_kprobe_blacklist;
1e6769b0 501#endif
9183c3f9
JP
502#ifdef CONFIG_HAVE_STATIC_CALL_INLINE
503 int num_static_call_sites;
504 struct static_call_site *static_call_sites;
505#endif
1ba28e02 506
8cb2c2dc 507#ifdef CONFIG_LIVEPATCH
1ce15ef4 508 bool klp; /* Is this a livepatch module? */
8cb2c2dc 509 bool klp_alive;
1ce15ef4
JY
510
511 /* Elf information */
512 struct klp_modinfo *klp_info;
8cb2c2dc
PM
513#endif
514
af540689
RK
515#ifdef CONFIG_MODULE_UNLOAD
516 /* What modules depend on me? */
2c02dfe7
LT
517 struct list_head source_list;
518 /* What modules do I depend on? */
519 struct list_head target_list;
af540689 520
af540689
RK
521 /* Destruction function. */
522 void (*exit)(void);
523
2f35c41f 524 atomic_t refcnt;
af540689 525#endif
b99b87f7
PO
526
527#ifdef CONFIG_CONSTRUCTORS
528 /* Constructor functions. */
529 ctor_fn_t *ctors;
530 unsigned int num_ctors;
531#endif
92ace999 532
540adea3 533#ifdef CONFIG_FUNCTION_ERROR_INJECTION
663faf9f 534 struct error_injection_entry *ei_funcs;
540adea3 535 unsigned int num_ei_funcs;
92ace999 536#endif
3859a271 537} ____cacheline_aligned __randomize_layout;
e61a1c1c
RZ
538#ifndef MODULE_ARCH_INIT
539#define MODULE_ARCH_INIT {}
540#endif
1da177e4 541
93d77e7f
VW
542#ifndef HAVE_ARCH_KALLSYMS_SYMBOL_VALUE
543static inline unsigned long kallsyms_symbol_value(const Elf_Sym *sym)
544{
545 return sym->st_value;
546}
547#endif
548
c6b37801
TA
549extern struct mutex module_mutex;
550
1da177e4
LT
551/* FIXME: It'd be nice to isolate modules during init, too, so they
552 aren't used before they (may) fail. But presently too much code
553 (IDE & SCSI) require entry into the module during init.*/
171d864e 554static inline bool module_is_live(struct module *mod)
1da177e4
LT
555{
556 return mod->state != MODULE_STATE_GOING;
557}
558
1da177e4 559struct module *__module_text_address(unsigned long addr);
e610499e
RR
560struct module *__module_address(unsigned long addr);
561bool is_module_address(unsigned long addr);
383776fa 562bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr);
10fad5e4 563bool is_module_percpu_address(unsigned long addr);
e610499e 564bool is_module_text_address(unsigned long addr);
1da177e4 565
76681c8f
PM
566static inline bool within_module_core(unsigned long addr,
567 const struct module *mod)
a06f6211 568{
7523e4dc
RR
569 return (unsigned long)mod->core_layout.base <= addr &&
570 addr < (unsigned long)mod->core_layout.base + mod->core_layout.size;
a06f6211
MH
571}
572
76681c8f
PM
573static inline bool within_module_init(unsigned long addr,
574 const struct module *mod)
a06f6211 575{
7523e4dc
RR
576 return (unsigned long)mod->init_layout.base <= addr &&
577 addr < (unsigned long)mod->init_layout.base + mod->init_layout.size;
a06f6211
MH
578}
579
76681c8f 580static inline bool within_module(unsigned long addr, const struct module *mod)
9b20a352
PM
581{
582 return within_module_init(addr, mod) || within_module_core(addr, mod);
583}
584
c6b37801
TA
585/* Search for module by name: must hold module_mutex. */
586struct module *find_module(const char *name);
587
588struct symsearch {
589 const struct kernel_symbol *start, *stop;
71810db2 590 const s32 *crcs;
ef1dac60 591 enum mod_license {
c6b37801
TA
592 NOT_GPL_ONLY,
593 GPL_ONLY,
594 WILL_BE_GPL_ONLY,
cd8732cd 595 } license;
c6b37801
TA
596 bool unused;
597};
598
ea07890a 599/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
1da177e4 600 symnum out of range. */
ea07890a
AD
601int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
602 char *name, char *module_name, int *exported);
1da177e4
LT
603
604/* Look for this name: can be of form module:name. */
605unsigned long module_kallsyms_lookup_name(const char *name);
606
75a66614
AK
607int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
608 struct module *, unsigned long),
609 void *data);
610
bf262dce
JK
611extern void __noreturn __module_put_and_exit(struct module *mod,
612 long code);
74e22fac 613#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code)
1da177e4
LT
614
615#ifdef CONFIG_MODULE_UNLOAD
d5db139a 616int module_refcount(struct module *mod);
1da177e4 617void __symbol_put(const char *symbol);
996302c5 618#define symbol_put(x) __symbol_put(__stringify(x))
1da177e4
LT
619void symbol_put_addr(void *addr);
620
621/* Sometimes we know we already have a refcount, and it's easier not
622 to handle the error case (which only happens with rmmod --wait). */
d53799be 623extern void __module_get(struct module *module);
e1783a24 624
d53799be
SR
625/* This is the Right Way to get a module: if it fails, it's being removed,
626 * so pretend it's not there. */
627extern bool try_module_get(struct module *module);
1da177e4 628
f6a57033 629extern void module_put(struct module *module);
1da177e4
LT
630
631#else /*!CONFIG_MODULE_UNLOAD*/
8ba4fcdf 632static inline bool try_module_get(struct module *module)
1da177e4
LT
633{
634 return !module || module_is_live(module);
635}
636static inline void module_put(struct module *module)
637{
638}
639static inline void __module_get(struct module *module)
640{
641}
e865d06b
SL
642#define symbol_put(x) do { } while (0)
643#define symbol_put_addr(p) do { } while (0)
1da177e4
LT
644
645#endif /* CONFIG_MODULE_UNLOAD */
646
647/* This is a #define so the string doesn't get put in every .o file */
648#define module_name(mod) \
649({ \
650 struct module *__mod = (mod); \
651 __mod ? __mod->name : "kernel"; \
652})
653
b865ea64
SS
654/* Dereference module function descriptor */
655void *dereference_module_function_descriptor(struct module *mod, void *ptr);
656
6dd06c9f
RR
657/* For kallsyms to ask for address resolution. namebuf should be at
658 * least KSYM_NAME_LEN long: a pointer to namebuf is returned if
659 * found, otherwise NULL. */
92dfc9dc 660const char *module_address_lookup(unsigned long addr,
6dd06c9f
RR
661 unsigned long *symbolsize,
662 unsigned long *offset,
663 char **modname,
664 char *namebuf);
9d65cb4a 665int lookup_module_symbol_name(unsigned long addr, char *symname);
a5c43dae 666int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name);
1da177e4 667
e865d06b
SL
668int register_module_notifier(struct notifier_block *nb);
669int unregister_module_notifier(struct notifier_block *nb);
1da177e4
LT
670
671extern void print_modules(void);
672
80c6e146
DT
673static inline bool module_requested_async_probing(struct module *module)
674{
675 return module && module->async_probe_requested;
676}
677
1ce15ef4
JY
678#ifdef CONFIG_LIVEPATCH
679static inline bool is_livepatch_module(struct module *mod)
680{
681 return mod->klp;
682}
683#else /* !CONFIG_LIVEPATCH */
684static inline bool is_livepatch_module(struct module *mod)
685{
686 return false;
687}
688#endif /* CONFIG_LIVEPATCH */
689
fda784e5 690bool is_module_sig_enforced(void);
8db5da0b 691void set_module_sig_enforced(void);
fda784e5 692
1da177e4 693#else /* !CONFIG_MODULES... */
1da177e4 694
e610499e
RR
695static inline struct module *__module_address(unsigned long addr)
696{
697 return NULL;
698}
699
1da177e4
LT
700static inline struct module *__module_text_address(unsigned long addr)
701{
702 return NULL;
703}
704
e610499e
RR
705static inline bool is_module_address(unsigned long addr)
706{
707 return false;
708}
709
d5e50daf
RD
710static inline bool is_module_percpu_address(unsigned long addr)
711{
712 return false;
713}
714
383776fa
TG
715static inline bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
716{
717 return false;
718}
719
e610499e 720static inline bool is_module_text_address(unsigned long addr)
4d435f9d 721{
e610499e 722 return false;
4d435f9d
IM
723}
724
007ec26c
DH
725static inline bool within_module_core(unsigned long addr,
726 const struct module *mod)
727{
728 return false;
729}
730
dadec066
TV
731static inline bool within_module_init(unsigned long addr,
732 const struct module *mod)
733{
734 return false;
735}
736
737static inline bool within_module(unsigned long addr, const struct module *mod)
738{
739 return false;
740}
741
1da177e4
LT
742/* Get/put a kernel symbol (calls should be symmetric) */
743#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
e865d06b
SL
744#define symbol_put(x) do { } while (0)
745#define symbol_put_addr(x) do { } while (0)
1da177e4
LT
746
747static inline void __module_get(struct module *module)
748{
749}
750
8ba4fcdf 751static inline bool try_module_get(struct module *module)
1da177e4 752{
8ba4fcdf 753 return true;
1da177e4
LT
754}
755
756static inline void module_put(struct module *module)
757{
758}
759
760#define module_name(mod) "kernel"
761
1da177e4 762/* For kallsyms to ask for address resolution. NULL means not found. */
92dfc9dc 763static inline const char *module_address_lookup(unsigned long addr,
6dd06c9f
RR
764 unsigned long *symbolsize,
765 unsigned long *offset,
766 char **modname,
767 char *namebuf)
1da177e4
LT
768{
769 return NULL;
770}
771
9d65cb4a
AD
772static inline int lookup_module_symbol_name(unsigned long addr, char *symname)
773{
774 return -ERANGE;
775}
776
a5c43dae
AD
777static inline int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, unsigned long *offset, char *modname, char *name)
778{
779 return -ERANGE;
780}
781
ea07890a
AD
782static inline int module_get_kallsym(unsigned int symnum, unsigned long *value,
783 char *type, char *name,
784 char *module_name, int *exported)
1da177e4 785{
ea07890a 786 return -ERANGE;
1da177e4
LT
787}
788
789static inline unsigned long module_kallsyms_lookup_name(const char *name)
790{
791 return 0;
792}
793
75a66614
AK
794static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
795 struct module *,
796 unsigned long),
797 void *data)
798{
799 return 0;
800}
801
e865d06b 802static inline int register_module_notifier(struct notifier_block *nb)
1da177e4
LT
803{
804 /* no events will happen anyway, so this can always succeed */
805 return 0;
806}
807
e865d06b 808static inline int unregister_module_notifier(struct notifier_block *nb)
1da177e4
LT
809{
810 return 0;
811}
812
813#define module_put_and_exit(code) do_exit(code)
814
815static inline void print_modules(void)
816{
817}
80c6e146
DT
818
819static inline bool module_requested_async_probing(struct module *module)
820{
821 return false;
822}
823
fda784e5
BM
824static inline bool is_module_sig_enforced(void)
825{
826 return false;
827}
828
8db5da0b
MZ
829static inline void set_module_sig_enforced(void)
830{
831}
832
b865ea64
SS
833/* Dereference module function descriptor */
834static inline
835void *dereference_module_function_descriptor(struct module *mod, void *ptr)
836{
837 return ptr;
838}
839
ef665c1a
RD
840#endif /* CONFIG_MODULES */
841
ef665c1a 842#ifdef CONFIG_SYSFS
7405c1e1
GKH
843extern struct kset *module_kset;
844extern struct kobj_type module_ktype;
845extern int module_sysfs_initialized;
ef665c1a
RD
846#endif /* CONFIG_SYSFS */
847
1da177e4
LT
848#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)
849
850/* BELOW HERE ALL THESE ARE OBSOLETE AND WILL VANISH */
851
1da177e4
LT
852#define __MODULE_STRING(x) __stringify(x)
853
0d9c25dd 854#ifdef CONFIG_GENERIC_BUG
5336377d 855void module_bug_finalize(const Elf_Ehdr *, const Elf_Shdr *,
0d9c25dd
AM
856 struct module *);
857void module_bug_cleanup(struct module *);
858
859#else /* !CONFIG_GENERIC_BUG */
860
5336377d 861static inline void module_bug_finalize(const Elf_Ehdr *hdr,
0d9c25dd
AM
862 const Elf_Shdr *sechdrs,
863 struct module *mod)
864{
0d9c25dd
AM
865}
866static inline void module_bug_cleanup(struct module *mod) {}
867#endif /* CONFIG_GENERIC_BUG */
868
e4f35891 869#ifdef CONFIG_RETPOLINE
caf7501a
AK
870extern bool retpoline_module_ok(bool has_retpoline);
871#else
872static inline bool retpoline_module_ok(bool has_retpoline)
873{
874 return true;
875}
876#endif
877
59afdc7b
HX
878#ifdef CONFIG_MODULE_SIG
879static inline bool module_sig_ok(struct module *module)
880{
881 return module->sig_ok;
882}
883#else /* !CONFIG_MODULE_SIG */
884static inline bool module_sig_ok(struct module *module)
885{
886 return true;
887}
888#endif /* CONFIG_MODULE_SIG */
889
1da177e4 890#endif /* _LINUX_MODULE_H */