blob: 20fb004e7d8da0f851c540919fcc52fc1364e881 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Arjan van de Venf71d20e2006-06-28 04:26:45 -07002/*
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03003 * Copyright (C) 2002 Richard Henderson
4 * Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM.
5 */
Leon Romanovsky51161bf2020-04-19 18:55:06 +03006
7#define INCLUDE_VERMAGIC
8
Paul Gortmaker9984de12011-05-23 14:51:41 -04009#include <linux/export.h>
Paul Gortmaker8a293be2016-07-23 14:01:45 -040010#include <linux/extable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/moduleloader.h>
Thiago Jung Bauermannc8424e72019-07-04 15:57:34 -030012#include <linux/module_signature.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040013#include <linux/trace_events.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
Alexey Dobriyanae84e322007-05-08 00:28:38 -070015#include <linux/kallsyms.h>
Kees Cook34e11692012-10-16 07:31:07 +103016#include <linux/file.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040017#include <linux/fs.h>
Roland McGrath6d760132007-10-16 23:26:40 -070018#include <linux/sysfs.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070019#include <linux/kernel.h>
Scott Brandenb89999d02020-10-02 10:38:15 -070020#include <linux/kernel_read_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/slab.h>
22#include <linux/vmalloc.h>
23#include <linux/elf.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040024#include <linux/proc_fs.h>
Kees Cook2e72d512012-10-16 07:32:07 +103025#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/seq_file.h>
27#include <linux/syscalls.h>
28#include <linux/fcntl.h>
29#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080030#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/cpu.h>
32#include <linux/moduleparam.h>
33#include <linux/errno.h>
34#include <linux/err.h>
35#include <linux/vermagic.h>
36#include <linux/notifier.h>
Al Virof6a57032006-10-18 01:47:25 -040037#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070039#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080040#include <linux/mutex.h>
Andi Kleend72b3752008-08-30 10:09:00 +020041#include <linux/rculist.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080042#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/cacheflush.h>
Michael Ellerman563ec5c2017-07-06 15:35:58 -070044#include <linux/set_memory.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070045#include <asm/mmu_context.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020046#include <linux/license.h>
Christoph Lameter6d762392008-02-08 04:18:42 -080047#include <asm/sections.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040048#include <linux/tracepoint.h>
Steven Rostedt90d595f2008-08-14 15:45:09 -040049#include <linux/ftrace.h>
Jessica Yu7e545d62016-03-16 20:55:39 -040050#include <linux/livepatch.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080051#include <linux/async.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090052#include <linux/percpu.h>
Catalin Marinas4f2294b2009-06-11 13:23:20 +010053#include <linux/kmemleak.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040054#include <linux/jump_label.h>
matthieu castet84e1c6b2010-11-16 22:35:16 +010055#include <linux/pfn.h>
Alessio Igor Bogani403ed272011-04-20 11:10:52 +020056#include <linux/bsearch.h>
Luis de Bethencourt9d5059c2016-08-02 14:03:47 -070057#include <linux/dynamic_debug.h>
Richard Guy Briggsca86cad2017-02-04 13:10:38 -050058#include <linux/audit.h>
Rusty Russell2f3238a2012-10-22 18:09:41 +103059#include <uapi/linux/module.h>
Rusty Russell106a4ee2012-09-26 10:09:40 +010060#include "module-internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Li Zefan7ead8b82009-08-17 16:56:28 +080062#define CREATE_TRACE_POINTS
63#include <trace/events/module.h>
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#ifndef ARCH_SHF_SMALL
66#define ARCH_SHF_SMALL 0
67#endif
68
matthieu castet84e1c6b2010-11-16 22:35:16 +010069/*
70 * Modules' sections will be aligned on page boundaries
He Zhe3b5be162019-08-20 22:53:10 +080071 * to ensure complete separation of code and data, but
72 * only when CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
matthieu castet84e1c6b2010-11-16 22:35:16 +010073 */
He Zhe3b5be162019-08-20 22:53:10 +080074#ifdef CONFIG_ARCH_HAS_STRICT_MODULE_RWX
matthieu castet84e1c6b2010-11-16 22:35:16 +010075# define debug_align(X) ALIGN(X, PAGE_SIZE)
He Zhe3b5be162019-08-20 22:53:10 +080076#else
77# define debug_align(X) (X)
78#endif
matthieu castet84e1c6b2010-11-16 22:35:16 +010079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* If this is set, the section belongs in the init part of the module */
81#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
82
Rusty Russell75676502010-06-05 11:17:36 -060083/*
84 * Mutex protects:
85 * 1) List of modules (also safely readable with preempt_disable),
86 * 2) module_use links,
87 * 3) module_addr_min/module_addr_max.
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +030088 * (delete and add uses RCU list operations).
89 */
Christoph Hellwig922f2a72021-02-02 13:13:28 +010090static DEFINE_MUTEX(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static LIST_HEAD(modules);
Peter Zijlstra93c2e102015-05-27 11:09:37 +093092
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -070093/* Work queue for freeing init sections in success case */
Daniel Jordanfdf09ab2020-10-08 13:32:20 -040094static void do_free_init(struct work_struct *w);
95static DECLARE_WORK(init_free_wq, do_free_init);
96static LLIST_HEAD(init_free_list);
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -070097
Peter Zijlstra6c9692e2015-05-27 11:09:37 +093098#ifdef CONFIG_MODULES_TREE_LOOKUP
99
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930100/*
101 * Use a latched RB-tree for __module_address(); this allows us to use
102 * RCU-sched lookups of the address from any context.
103 *
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930104 * This is conditional on PERF_EVENTS || TRACING because those can really hit
105 * __module_address() hard by doing a lot of stack unwinding; potentially from
106 * NMI context.
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930107 */
108
109static __always_inline unsigned long __mod_tree_val(struct latch_tree_node *n)
110{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030111 struct module_layout *layout = container_of(n, struct module_layout, mtn.node);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930112
Rusty Russell7523e4d2015-11-26 09:44:08 +1030113 return (unsigned long)layout->base;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930114}
115
116static __always_inline unsigned long __mod_tree_size(struct latch_tree_node *n)
117{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030118 struct module_layout *layout = container_of(n, struct module_layout, mtn.node);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930119
Rusty Russell7523e4d2015-11-26 09:44:08 +1030120 return (unsigned long)layout->size;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930121}
122
123static __always_inline bool
124mod_tree_less(struct latch_tree_node *a, struct latch_tree_node *b)
125{
126 return __mod_tree_val(a) < __mod_tree_val(b);
127}
128
129static __always_inline int
130mod_tree_comp(void *key, struct latch_tree_node *n)
131{
132 unsigned long val = (unsigned long)key;
133 unsigned long start, end;
134
135 start = __mod_tree_val(n);
136 if (val < start)
137 return -1;
138
139 end = start + __mod_tree_size(n);
140 if (val >= end)
141 return 1;
142
143 return 0;
144}
145
146static const struct latch_tree_ops mod_tree_ops = {
147 .less = mod_tree_less,
148 .comp = mod_tree_comp,
149};
150
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930151static struct mod_tree_root {
152 struct latch_tree_root root;
153 unsigned long addr_min;
154 unsigned long addr_max;
155} mod_tree __cacheline_aligned = {
156 .addr_min = -1UL,
157};
158
159#define module_addr_min mod_tree.addr_min
160#define module_addr_max mod_tree.addr_max
161
162static noinline void __mod_tree_insert(struct mod_tree_node *node)
163{
164 latch_tree_insert(&node->node, &mod_tree.root, &mod_tree_ops);
165}
166
167static void __mod_tree_remove(struct mod_tree_node *node)
168{
169 latch_tree_erase(&node->node, &mod_tree.root, &mod_tree_ops);
170}
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930171
172/*
173 * These modifications: insert, remove_init and remove; are serialized by the
174 * module_mutex.
175 */
176static void mod_tree_insert(struct module *mod)
177{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030178 mod->core_layout.mtn.mod = mod;
179 mod->init_layout.mtn.mod = mod;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930180
Rusty Russell7523e4d2015-11-26 09:44:08 +1030181 __mod_tree_insert(&mod->core_layout.mtn);
182 if (mod->init_layout.size)
183 __mod_tree_insert(&mod->init_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930184}
185
186static void mod_tree_remove_init(struct module *mod)
187{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030188 if (mod->init_layout.size)
189 __mod_tree_remove(&mod->init_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930190}
191
192static void mod_tree_remove(struct module *mod)
193{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030194 __mod_tree_remove(&mod->core_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930195 mod_tree_remove_init(mod);
196}
197
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930198static struct module *mod_find(unsigned long addr)
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930199{
200 struct latch_tree_node *ltn;
201
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930202 ltn = latch_tree_find((void *)addr, &mod_tree.root, &mod_tree_ops);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930203 if (!ltn)
204 return NULL;
205
206 return container_of(ltn, struct mod_tree_node, node)->mod;
207}
208
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930209#else /* MODULES_TREE_LOOKUP */
210
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930211static unsigned long module_addr_min = -1UL, module_addr_max = 0;
212
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930213static void mod_tree_insert(struct module *mod) { }
214static void mod_tree_remove_init(struct module *mod) { }
215static void mod_tree_remove(struct module *mod) { }
216
217static struct module *mod_find(unsigned long addr)
218{
219 struct module *mod;
220
Masami Hiramatsubf089492019-12-03 15:14:04 +0900221 list_for_each_entry_rcu(mod, &modules, list,
222 lockdep_is_held(&module_mutex)) {
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930223 if (within_module(addr, mod))
224 return mod;
225 }
226
227 return NULL;
228}
229
230#endif /* MODULES_TREE_LOOKUP */
231
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930232/*
233 * Bounds of module text, for speeding up __module_address.
234 * Protected by module_mutex.
235 */
236static void __mod_update_bounds(void *base, unsigned int size)
237{
238 unsigned long min = (unsigned long)base;
239 unsigned long max = min + size;
240
241 if (min < module_addr_min)
242 module_addr_min = min;
243 if (max > module_addr_max)
244 module_addr_max = max;
245}
246
247static void mod_update_bounds(struct module *mod)
248{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030249 __mod_update_bounds(mod->core_layout.base, mod->core_layout.size);
250 if (mod->init_layout.size)
251 __mod_update_bounds(mod->init_layout.base, mod->init_layout.size);
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930252}
253
Jason Wessel67fc4e02010-05-20 21:04:21 -0500254#ifdef CONFIG_KGDB_KDB
255struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
256#endif /* CONFIG_KGDB_KDB */
257
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930258static void module_assert_mutex_or_preempt(void)
259{
260#ifdef CONFIG_LOCKDEP
261 if (unlikely(!debug_locks))
262 return;
Rusty Russell106a4ee2012-09-26 10:09:40 +0100263
Steven Rostedt95025142016-07-19 05:59:24 +0930264 WARN_ON_ONCE(!rcu_read_lock_sched_held() &&
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930265 !lockdep_is_held(&module_mutex));
266#endif
267}
268
Luis R. Rodriguez6727bb92015-05-27 11:09:39 +0930269static bool sig_enforce = IS_ENABLED(CONFIG_MODULE_SIG_FORCE);
Rusty Russell106a4ee2012-09-26 10:09:40 +0100270module_param(sig_enforce, bool_enable_only, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Bruno E. O. Meneguelefda784e2017-10-24 15:37:00 -0200272/*
273 * Export sig_enforce kernel cmdline parameter to allow other subsystems rely
274 * on that instead of directly to CONFIG_MODULE_SIG_FORCE config.
275 */
276bool is_module_sig_enforced(void)
277{
278 return sig_enforce;
279}
280EXPORT_SYMBOL(is_module_sig_enforced);
281
Mimi Zohar8db5da02019-01-27 19:03:45 -0500282void set_module_sig_enforced(void)
283{
284 sig_enforce = true;
285}
286
Stephen Rothwell19e45292009-04-14 17:27:18 +1000287/* Block module loading/unloading? */
288int modules_disabled = 0;
Dave Young02608be2012-02-01 10:33:14 +0800289core_param(nomodule, modules_disabled, bint, 0);
Stephen Rothwell19e45292009-04-14 17:27:18 +1000290
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500291/* Waiting for a module to finish initializing? */
292static DECLARE_WAIT_QUEUE_HEAD(module_wq);
293
Alan Sterne041c682006-03-27 01:16:30 -0800294static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Ionut Alexa6da0b562014-11-10 09:31:29 +1030296int register_module_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Alan Sterne041c682006-03-27 01:16:30 -0800298 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300EXPORT_SYMBOL(register_module_notifier);
301
Ionut Alexa6da0b562014-11-10 09:31:29 +1030302int unregister_module_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Alan Sterne041c682006-03-27 01:16:30 -0800304 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306EXPORT_SYMBOL(unregister_module_notifier);
307
Miroslav Benes71d9f502016-11-16 16:45:48 +0100308/*
309 * We require a truly strong try_module_get(): 0 means success.
310 * Otherwise an error is returned due to ongoing or failed
311 * initialization etc.
312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313static inline int strong_try_module_get(struct module *mod)
314{
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030315 BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500317 return -EBUSY;
318 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500320 else
321 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Rusty Russell373d4d02013-01-21 17:17:39 +1030324static inline void add_taint_module(struct module *mod, unsigned flag,
325 enum lockdep_ok lockdep_ok)
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700326{
Rusty Russell373d4d02013-01-21 17:17:39 +1030327 add_taint(flag, lockdep_ok);
Petr Mladek7fd83292016-09-21 13:47:22 +0200328 set_bit(flag, &mod->taints);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700329}
330
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200331/*
332 * A thread that wants to hold a reference to a module only while it
333 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 */
Jiri Kosinabf262dc2016-04-12 05:02:09 +0930335void __noreturn __module_put_and_exit(struct module *mod, long code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 module_put(mod);
338 do_exit(code);
339}
340EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/* Find a module section: 0 means not found. */
Rusty Russell49668682010-08-05 12:59:10 -0600343static unsigned int find_sec(const struct load_info *info, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 unsigned int i;
346
Rusty Russell49668682010-08-05 12:59:10 -0600347 for (i = 1; i < info->hdr->e_shnum; i++) {
348 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /* Alloc bit cleared means "ignore it." */
Rusty Russell49668682010-08-05 12:59:10 -0600350 if ((shdr->sh_flags & SHF_ALLOC)
351 && strcmp(info->secstrings + shdr->sh_name, name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return i;
Rusty Russell49668682010-08-05 12:59:10 -0600353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 0;
355}
356
Rusty Russell5e458cc2008-10-22 10:00:13 -0500357/* Find a module section, or NULL. */
Rusty Russell49668682010-08-05 12:59:10 -0600358static void *section_addr(const struct load_info *info, const char *name)
Rusty Russell5e458cc2008-10-22 10:00:13 -0500359{
360 /* Section 0 has sh_addr 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600361 return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500362}
363
364/* Find a module section, or NULL. Fill in number of "objects" in section. */
Rusty Russell49668682010-08-05 12:59:10 -0600365static void *section_objs(const struct load_info *info,
Rusty Russell5e458cc2008-10-22 10:00:13 -0500366 const char *name,
367 size_t object_size,
368 unsigned int *num)
369{
Rusty Russell49668682010-08-05 12:59:10 -0600370 unsigned int sec = find_sec(info, name);
Rusty Russell5e458cc2008-10-22 10:00:13 -0500371
372 /* Section 0 has sh_addr 0 and sh_size 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600373 *num = info->sechdrs[sec].sh_size / object_size;
374 return (void *)info->sechdrs[sec].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500375}
376
Andrii Nakryiko36e68442020-11-09 17:19:31 -0800377/* Find a module section: 0 means not found. Ignores SHF_ALLOC flag. */
378static unsigned int find_any_sec(const struct load_info *info, const char *name)
379{
380 unsigned int i;
381
382 for (i = 1; i < info->hdr->e_shnum; i++) {
383 Elf_Shdr *shdr = &info->sechdrs[i];
384 if (strcmp(info->secstrings + shdr->sh_name, name) == 0)
385 return i;
386 }
387 return 0;
388}
389
390/*
391 * Find a module section, or NULL. Fill in number of "objects" in section.
392 * Ignores SHF_ALLOC flag.
393 */
394static __maybe_unused void *any_section_objs(const struct load_info *info,
395 const char *name,
396 size_t object_size,
397 unsigned int *num)
398{
399 unsigned int sec = find_any_sec(info, name);
400
401 /* Section 0 has sh_addr 0 and sh_size 0. */
402 *num = info->sechdrs[sec].sh_size / object_size;
403 return (void *)info->sechdrs[sec].sh_addr;
404}
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406/* Provided by the linker */
407extern const struct kernel_symbol __start___ksymtab[];
408extern const struct kernel_symbol __stop___ksymtab[];
409extern const struct kernel_symbol __start___ksymtab_gpl[];
410extern const struct kernel_symbol __stop___ksymtab_gpl[];
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000411extern const s32 __start___kcrctab[];
412extern const s32 __start___kcrctab_gpl[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414#ifndef CONFIG_MODVERSIONS
415#define symversion(base, idx) NULL
416#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800417#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#endif
419
Christoph Hellwig00cc2c12021-02-02 13:13:32 +0100420struct symsearch {
421 const struct kernel_symbol *start, *stop;
422 const s32 *crcs;
423 enum mod_license {
424 NOT_GPL_ONLY,
425 GPL_ONLY,
Christoph Hellwig00cc2c12021-02-02 13:13:32 +0100426 } license;
Christoph Hellwig00cc2c12021-02-02 13:13:32 +0100427};
428
Rusty Russelldafd0942008-07-22 19:24:25 -0500429struct find_symbol_arg {
430 /* Input */
431 const char *name;
432 bool gplok;
433 bool warn;
434
435 /* Output */
436 struct module *owner;
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000437 const s32 *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500438 const struct kernel_symbol *sym;
Christoph Hellwigef1dac62020-07-30 08:10:26 +0200439 enum mod_license license;
Rusty Russelldafd0942008-07-22 19:24:25 -0500440};
441
Jessica Yu2d25bc52018-11-19 17:43:58 +0100442static bool check_exported_symbol(const struct symsearch *syms,
443 struct module *owner,
444 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500445{
Rusty Russelldafd0942008-07-22 19:24:25 -0500446 struct find_symbol_arg *fsa = data;
447
Christoph Hellwigf1c3d732021-02-02 13:13:33 +0100448 if (!fsa->gplok && syms->license == GPL_ONLY)
449 return false;
Rusty Russelldafd0942008-07-22 19:24:25 -0500450 fsa->owner = owner;
451 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500452 fsa->sym = &syms->start[symnum];
Christoph Hellwigef1dac62020-07-30 08:10:26 +0200453 fsa->license = syms->license;
Rusty Russellad9546c2008-05-01 21:14:59 -0500454 return true;
455}
456
Ard Biesheuvel7290d582018-08-21 21:56:09 -0700457static unsigned long kernel_symbol_value(const struct kernel_symbol *sym)
458{
459#ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
460 return (unsigned long)offset_to_ptr(&sym->value_offset);
461#else
462 return sym->value;
463#endif
464}
465
466static const char *kernel_symbol_name(const struct kernel_symbol *sym)
467{
468#ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
469 return offset_to_ptr(&sym->name_offset);
470#else
471 return sym->name;
472#endif
473}
474
Matthias Maennich8651ec02019-09-06 11:32:27 +0100475static const char *kernel_symbol_namespace(const struct kernel_symbol *sym)
476{
477#ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
Will Deacon069e1c02019-09-11 13:26:46 +0100478 if (!sym->namespace_offset)
479 return NULL;
Matthias Maennich8651ec02019-09-06 11:32:27 +0100480 return offset_to_ptr(&sym->namespace_offset);
481#else
482 return sym->namespace;
483#endif
484}
485
Masahiro Yamadab605be62019-09-09 20:39:02 +0900486static int cmp_name(const void *name, const void *sym)
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200487{
Masahiro Yamadab605be62019-09-09 20:39:02 +0900488 return strcmp(name, kernel_symbol_name(sym));
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200489}
490
Jessica Yu2d25bc52018-11-19 17:43:58 +0100491static bool find_exported_symbol_in_section(const struct symsearch *syms,
492 struct module *owner,
493 void *data)
Rusty Russellde4d8d52011-04-19 21:49:58 +0200494{
495 struct find_symbol_arg *fsa = data;
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200496 struct kernel_symbol *sym;
Rusty Russellde4d8d52011-04-19 21:49:58 +0200497
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200498 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
499 sizeof(struct kernel_symbol), cmp_name);
500
Jessica Yu2d25bc52018-11-19 17:43:58 +0100501 if (sym != NULL && check_exported_symbol(syms, owner,
502 sym - syms->start, data))
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200503 return true;
504
Rusty Russellde4d8d52011-04-19 21:49:58 +0200505 return false;
506}
507
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +0300508/*
509 * Find an exported symbol and return it, along with, (optional) crc and
510 * (optional) module which owns it. Needs preempt disabled or module_mutex.
511 */
Christoph Hellwig0b966152021-01-20 14:58:27 +0100512static bool find_symbol(struct find_symbol_arg *fsa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100514 static const struct symsearch arr[] = {
515 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
Christoph Hellwig36794822021-02-02 13:13:34 +0100516 NOT_GPL_ONLY },
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100517 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
518 __start___kcrctab_gpl,
Christoph Hellwig36794822021-02-02 13:13:34 +0100519 GPL_ONLY },
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100520 };
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100521 struct module *mod;
522 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100524 module_assert_mutex_or_preempt();
Rusty Russelldafd0942008-07-22 19:24:25 -0500525
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100526 for (i = 0; i < ARRAY_SIZE(arr); i++)
Christoph Hellwig0b966152021-01-20 14:58:27 +0100527 if (find_exported_symbol_in_section(&arr[i], NULL, fsa))
528 return true;
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100529
530 list_for_each_entry_rcu(mod, &modules, list,
531 lockdep_is_held(&module_mutex)) {
532 struct symsearch arr[] = {
533 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
Christoph Hellwig36794822021-02-02 13:13:34 +0100534 NOT_GPL_ONLY },
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100535 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
536 mod->gpl_crcs,
Christoph Hellwig36794822021-02-02 13:13:34 +0100537 GPL_ONLY },
Christoph Hellwig71e4b302021-02-02 13:13:30 +0100538 };
539
540 if (mod->state == MODULE_STATE_UNFORMED)
541 continue;
542
543 for (i = 0; i < ARRAY_SIZE(arr); i++)
Christoph Hellwig0b966152021-01-20 14:58:27 +0100544 if (find_exported_symbol_in_section(&arr[i], mod, fsa))
545 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500547
Christoph Hellwig0b966152021-01-20 14:58:27 +0100548 pr_debug("Failed to find symbol %s\n", fsa->name);
549 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Rusty Russellfe0d34d2015-07-29 05:52:14 +0930552/*
553 * Search for module by name: must hold module_mutex (or preempt disabled
554 * for read-only access).
555 */
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930556static struct module *find_module_all(const char *name, size_t len,
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030557 bool even_unformed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
559 struct module *mod;
560
Rusty Russellfe0d34d2015-07-29 05:52:14 +0930561 module_assert_mutex_or_preempt();
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930562
Masami Hiramatsubf089492019-12-03 15:14:04 +0900563 list_for_each_entry_rcu(mod, &modules, list,
564 lockdep_is_held(&module_mutex)) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030565 if (!even_unformed && mod->state == MODULE_STATE_UNFORMED)
566 continue;
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930567 if (strlen(mod->name) == len && !memcmp(mod->name, name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return mod;
569 }
570 return NULL;
571}
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030572
573struct module *find_module(const char *name)
574{
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930575 return find_module_all(name, strlen(name), false);
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030576}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900579
Tejun Heo259354d2010-03-10 18:56:10 +0900580static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900581{
Tejun Heo259354d2010-03-10 18:56:10 +0900582 return mod->percpu;
583}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900584
Rusty Russell9eb76d72013-07-03 10:06:29 +0930585static int percpu_modalloc(struct module *mod, struct load_info *info)
Tejun Heo259354d2010-03-10 18:56:10 +0900586{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930587 Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu];
588 unsigned long align = pcpusec->sh_addralign;
589
590 if (!pcpusec->sh_size)
591 return 0;
592
Tejun Heofbf59bc2009-02-20 16:29:08 +0900593 if (align > PAGE_SIZE) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800594 pr_warn("%s: per-cpu alignment %li > %li\n",
595 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900596 align = PAGE_SIZE;
597 }
598
Rusty Russell9eb76d72013-07-03 10:06:29 +0930599 mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align);
Tejun Heo259354d2010-03-10 18:56:10 +0900600 if (!mod->percpu) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800601 pr_warn("%s: Could not allocate %lu bytes percpu data\n",
602 mod->name, (unsigned long)pcpusec->sh_size);
Tejun Heo259354d2010-03-10 18:56:10 +0900603 return -ENOMEM;
604 }
Rusty Russell9eb76d72013-07-03 10:06:29 +0930605 mod->percpu_size = pcpusec->sh_size;
Tejun Heo259354d2010-03-10 18:56:10 +0900606 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900607}
608
Tejun Heo259354d2010-03-10 18:56:10 +0900609static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900610{
Tejun Heo259354d2010-03-10 18:56:10 +0900611 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900612}
613
Rusty Russell49668682010-08-05 12:59:10 -0600614static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900615{
Rusty Russell49668682010-08-05 12:59:10 -0600616 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900617}
618
Tejun Heo259354d2010-03-10 18:56:10 +0900619static void percpu_modcopy(struct module *mod,
620 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900621{
622 int cpu;
623
624 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900625 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900626}
627
Thomas Gleixner383776f2017-02-27 15:37:36 +0100628bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
Tejun Heo10fad5e2010-03-10 18:57:54 +0900629{
630 struct module *mod;
631 unsigned int cpu;
632
633 preempt_disable();
634
635 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030636 if (mod->state == MODULE_STATE_UNFORMED)
637 continue;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900638 if (!mod->percpu_size)
639 continue;
640 for_each_possible_cpu(cpu) {
641 void *start = per_cpu_ptr(mod->percpu, cpu);
Thomas Gleixner383776f2017-02-27 15:37:36 +0100642 void *va = (void *)addr;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900643
Thomas Gleixner383776f2017-02-27 15:37:36 +0100644 if (va >= start && va < start + mod->percpu_size) {
Peter Zijlstra8ce371f2017-03-20 12:26:55 +0100645 if (can_addr) {
Thomas Gleixner383776f2017-02-27 15:37:36 +0100646 *can_addr = (unsigned long) (va - start);
Peter Zijlstra8ce371f2017-03-20 12:26:55 +0100647 *can_addr += (unsigned long)
648 per_cpu_ptr(mod->percpu,
649 get_boot_cpu_id());
650 }
Tejun Heo10fad5e2010-03-10 18:57:54 +0900651 preempt_enable();
652 return true;
653 }
654 }
655 }
656
657 preempt_enable();
658 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700659}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Thomas Gleixner383776f2017-02-27 15:37:36 +0100661/**
Sergey Shtylyov24389b62020-11-04 23:34:59 +0300662 * is_module_percpu_address() - test whether address is from module static percpu
Thomas Gleixner383776f2017-02-27 15:37:36 +0100663 * @addr: address to test
664 *
665 * Test whether @addr belongs to module static percpu area.
666 *
Sergey Shtylyov24389b62020-11-04 23:34:59 +0300667 * Return: %true if @addr is from module static percpu area
Thomas Gleixner383776f2017-02-27 15:37:36 +0100668 */
669bool is_module_percpu_address(unsigned long addr)
670{
671 return __is_module_percpu_address(addr, NULL);
672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900675
Tejun Heo259354d2010-03-10 18:56:10 +0900676static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 return NULL;
679}
Rusty Russell9eb76d72013-07-03 10:06:29 +0930680static int percpu_modalloc(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930682 /* UP modules shouldn't have this section: ENOMEM isn't quite right */
683 if (info->sechdrs[info->index.pcpu].sh_size != 0)
684 return -ENOMEM;
685 return 0;
Tejun Heo259354d2010-03-10 18:56:10 +0900686}
687static inline void percpu_modfree(struct module *mod)
688{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
Rusty Russell49668682010-08-05 12:59:10 -0600690static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 return 0;
693}
Tejun Heo259354d2010-03-10 18:56:10 +0900694static inline void percpu_modcopy(struct module *mod,
695 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 /* pcpusec should be 0, and size of that section should be 0. */
698 BUG_ON(size != 0);
699}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900700bool is_module_percpu_address(unsigned long addr)
701{
702 return false;
703}
Tejun Heo6b588c12009-02-20 16:29:07 +0900704
Thomas Gleixner383776f2017-02-27 15:37:36 +0100705bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
706{
707 return false;
708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710#endif /* CONFIG_SMP */
711
Matt Domschc988d2b2005-06-23 22:05:15 -0700712#define MODINFO_ATTR(field) \
713static void setup_modinfo_##field(struct module *mod, const char *s) \
714{ \
715 mod->field = kstrdup(s, GFP_KERNEL); \
716} \
717static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
Kay Sievers4befb022011-07-24 22:06:04 +0930718 struct module_kobject *mk, char *buffer) \
Matt Domschc988d2b2005-06-23 22:05:15 -0700719{ \
Chen Gangcc56ded2013-08-20 15:34:21 +0930720 return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field); \
Matt Domschc988d2b2005-06-23 22:05:15 -0700721} \
722static int modinfo_##field##_exists(struct module *mod) \
723{ \
724 return mod->field != NULL; \
725} \
726static void free_modinfo_##field(struct module *mod) \
727{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700728 kfree(mod->field); \
729 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700730} \
731static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900732 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700733 .show = show_modinfo_##field, \
734 .setup = setup_modinfo_##field, \
735 .test = modinfo_##field##_exists, \
736 .free = free_modinfo_##field, \
737};
738
739MODINFO_ATTR(version);
740MODINFO_ATTR(srcversion);
741
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100742static char last_unloaded_module[MODULE_NAME_LEN+1];
743
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800744#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400745
746EXPORT_TRACEPOINT_SYMBOL(module_get);
747
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030748/* MODULE_REF_BASE is the base reference count by kmodule loader. */
749#define MODULE_REF_BASE 1
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600752static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030754 /*
755 * Initialize reference counter to MODULE_REF_BASE.
756 * refcnt == 0 means module is going.
757 */
758 atomic_set(&mod->refcnt, MODULE_REF_BASE);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600759
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700760 INIT_LIST_HEAD(&mod->source_list);
761 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /* Hold reference count during initialization. */
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030764 atomic_inc(&mod->refcnt);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600765
766 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769/* Does a already use b? */
770static int already_uses(struct module *a, struct module *b)
771{
772 struct module_use *use;
773
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700774 list_for_each_entry(use, &b->source_list, source_list) {
775 if (use->source == a) {
Jim Cromie5e124162011-12-06 12:11:31 -0700776 pr_debug("%s uses %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return 1;
778 }
779 }
Jim Cromie5e124162011-12-06 12:11:31 -0700780 pr_debug("%s does not use %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return 0;
782}
783
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700784/*
785 * Module a uses b
786 * - we add 'a' as a "source", 'b' as a "target" of module use
787 * - the module_use is added to the list of 'b' sources (so
788 * 'b' can walk the list to see who sourced them), and of 'a'
789 * targets (so 'a' can see what modules it targets).
790 */
791static int add_module_usage(struct module *a, struct module *b)
792{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700793 struct module_use *use;
794
Jim Cromie5e124162011-12-06 12:11:31 -0700795 pr_debug("Allocating new usage for %s.\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700796 use = kmalloc(sizeof(*use), GFP_ATOMIC);
Markus Elfring9ad04572017-10-06 16:27:26 +0200797 if (!use)
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700798 return -ENOMEM;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700799
800 use->source = a;
801 use->target = b;
802 list_add(&use->source_list, &b->source_list);
803 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700804 return 0;
805}
806
Rusty Russell75676502010-06-05 11:17:36 -0600807/* Module a uses b: caller needs module_mutex() */
Christoph Hellwig7ef5264d2020-07-30 08:10:20 +0200808static int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600810 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100811
Rusty Russell9bea7f22010-06-05 11:17:37 -0600812 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700813 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700814
Rusty Russell9bea7f22010-06-05 11:17:37 -0600815 /* If module isn't available, we fail. */
816 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500817 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600818 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700820 err = add_module_usage(a, b);
821 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600823 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828/* Clear the unload stuff of the module. */
829static void module_unload_free(struct module *mod)
830{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700831 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Rusty Russell75676502010-06-05 11:17:36 -0600833 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700834 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
835 struct module *i = use->target;
Jim Cromie5e124162011-12-06 12:11:31 -0700836 pr_debug("%s unusing %s\n", mod->name, i->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700837 module_put(i);
838 list_del(&use->source_list);
839 list_del(&use->target_list);
840 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
Rusty Russell75676502010-06-05 11:17:36 -0600842 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
845#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800846static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 int ret = (flags & O_TRUNC);
849 if (ret)
Rusty Russell373d4d02013-01-21 17:17:39 +1030850 add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return ret;
852}
853#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800854static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 return 0;
857}
858#endif /* CONFIG_MODULE_FORCE_UNLOAD */
859
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030860/* Try to release refcount of module, 0 means success. */
861static int try_release_module_ref(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030863 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030865 /* Try to decrement refcnt which we set at loading */
866 ret = atomic_sub_return(MODULE_REF_BASE, &mod->refcnt);
867 BUG_ON(ret < 0);
868 if (ret)
869 /* Someone can put this right now, recover with checking */
870 ret = atomic_add_unless(&mod->refcnt, MODULE_REF_BASE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030872 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
875static int try_stop_module(struct module *mod, int flags, int *forced)
876{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030877 /* If it's not unused, quit unless we're forcing. */
878 if (try_release_module_ref(mod) != 0) {
879 *forced = try_force_unload(flags);
880 if (!(*forced))
881 return -EWOULDBLOCK;
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030884 /* Mark it as dying. */
885 mod->state = MODULE_STATE_GOING;
886
887 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Rusty Russelld5db1392015-01-22 11:13:14 +1030890/**
Sergey Shtylyov24389b62020-11-04 23:34:59 +0300891 * module_refcount() - return the refcount or -1 if unloading
Rusty Russelld5db1392015-01-22 11:13:14 +1030892 * @mod: the module we're checking
893 *
Sergey Shtylyov24389b62020-11-04 23:34:59 +0300894 * Return:
Rusty Russelld5db1392015-01-22 11:13:14 +1030895 * -1 if the module is in the process of unloading
896 * otherwise the number of references in the kernel to the module
897 */
898int module_refcount(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Rusty Russelld5db1392015-01-22 11:13:14 +1030900 return atomic_read(&mod->refcnt) - MODULE_REF_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902EXPORT_SYMBOL(module_refcount);
903
904/* This exists whether we can unload or not */
905static void free_module(struct module *mod);
906
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100907SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
908 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800911 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 int ret, forced = 0;
913
Kees Cook3d433212009-04-02 15:49:29 -0700914 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800915 return -EPERM;
916
917 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
918 return -EFAULT;
919 name[MODULE_NAME_LEN-1] = '\0';
920
Richard Guy Briggsf6276ac2017-05-02 10:16:04 -0400921 audit_log_kern_module(name);
922
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200923 if (mutex_lock_interruptible(&module_mutex) != 0)
924 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 mod = find_module(name);
927 if (!mod) {
928 ret = -ENOENT;
929 goto out;
930 }
931
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700932 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /* Other modules depend on us: get rid of them first. */
934 ret = -EWOULDBLOCK;
935 goto out;
936 }
937
938 /* Doing init or already dying? */
939 if (mod->state != MODULE_STATE_LIVE) {
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930940 /* FIXME: if (force), slam module count damn the torpedoes */
Jim Cromie5e124162011-12-06 12:11:31 -0700941 pr_debug("%s already dying\n", mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 ret = -EBUSY;
943 goto out;
944 }
945
946 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700947 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800948 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (!forced) {
950 /* This module can't be removed */
951 ret = -EBUSY;
952 goto out;
953 }
954 }
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 /* Stop the machine so refcounts can't move and disable module. */
957 ret = try_stop_module(mod, flags, &forced);
958 if (ret != 0)
959 goto out;
960
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200961 mutex_unlock(&module_mutex);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300962 /* Final destruction now no one is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200963 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200965 blocking_notifier_call_chain(&module_notify_list,
966 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -0400967 klp_module_going(mod);
Jessica Yu7dcd1822016-02-16 17:32:33 -0500968 ftrace_release_mod(mod);
969
Arjan van de Ven22a9d642009-01-07 08:45:46 -0800970 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -0600971
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100972 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -0500973 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Rusty Russell75676502010-06-05 11:17:36 -0600975 free_module(mod);
Konstantin Khorenko5d603312019-11-13 12:29:50 +0300976 /* someone could wait for the module in add_unformed_module() */
977 wake_up_all(&module_wq);
Rusty Russell75676502010-06-05 11:17:36 -0600978 return 0;
979out:
Ashutosh Naik6389a382006-03-23 03:00:46 -0800980 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return ret;
982}
983
Jianjun Kongd1e99d72008-12-08 14:26:29 +0800984static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
986 struct module_use *use;
987 int printed_something = 0;
988
Rusty Russelld5db1392015-01-22 11:13:14 +1030989 seq_printf(m, " %i ", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Ionut Alexa6da0b562014-11-10 09:31:29 +1030991 /*
992 * Always include a trailing , so userspace can differentiate
993 * between this and the old multi-field proc format.
994 */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700995 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700997 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (mod->init != NULL && mod->exit == NULL) {
1001 printed_something = 1;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301002 seq_puts(m, "[permanent],");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004
1005 if (!printed_something)
Ionut Alexa6da0b562014-11-10 09:31:29 +10301006 seq_puts(m, "-");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009void __symbol_put(const char *symbol)
1010{
Christoph Hellwig0b966152021-01-20 14:58:27 +01001011 struct find_symbol_arg fsa = {
1012 .name = symbol,
1013 .gplok = true,
1014 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Rusty Russell24da1cb2007-07-15 23:41:46 -07001016 preempt_disable();
Christoph Hellwig0b966152021-01-20 14:58:27 +01001017 if (!find_symbol(&fsa))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 BUG();
Christoph Hellwig0b966152021-01-20 14:58:27 +01001019 module_put(fsa.owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -07001020 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022EXPORT_SYMBOL(__symbol_put);
1023
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301024/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025void symbol_put_addr(void *addr)
1026{
Trent Piepho5e376612006-05-15 09:44:06 -07001027 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301028 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301030 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -07001031 return;
1032
Peter Zijlstra275d7d42015-08-20 10:34:59 +09301033 /*
1034 * Even though we hold a reference on the module; we still need to
1035 * disable preemption in order to safely traverse the data structure.
1036 */
1037 preempt_disable();
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301038 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -06001039 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -07001040 module_put(modaddr);
Peter Zijlstra275d7d42015-08-20 10:34:59 +09301041 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043EXPORT_SYMBOL_GPL(symbol_put_addr);
1044
1045static ssize_t show_refcnt(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301046 struct module_kobject *mk, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Rusty Russelld5db1392015-01-22 11:13:14 +10301048 return sprintf(buffer, "%i\n", module_refcount(mk->mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
Kay Sieverscca3e702012-01-13 09:32:15 +10301051static struct module_attribute modinfo_refcnt =
1052 __ATTR(refcnt, 0444, show_refcnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Steven Rostedtd53799b2012-03-26 12:50:52 +10301054void __module_get(struct module *module)
1055{
1056 if (module) {
1057 preempt_disable();
Masami Hiramatsu2f35c412014-11-10 09:29:29 +10301058 atomic_inc(&module->refcnt);
Steven Rostedtd53799b2012-03-26 12:50:52 +10301059 trace_module_get(module, _RET_IP_);
1060 preempt_enable();
1061 }
1062}
1063EXPORT_SYMBOL(__module_get);
1064
1065bool try_module_get(struct module *module)
1066{
1067 bool ret = true;
1068
1069 if (module) {
1070 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301071 /* Note: here, we can fail to get a reference */
1072 if (likely(module_is_live(module) &&
1073 atomic_inc_not_zero(&module->refcnt) != 0))
Steven Rostedtd53799b2012-03-26 12:50:52 +10301074 trace_module_get(module, _RET_IP_);
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301075 else
Steven Rostedtd53799b2012-03-26 12:50:52 +10301076 ret = false;
1077
1078 preempt_enable();
1079 }
1080 return ret;
1081}
1082EXPORT_SYMBOL(try_module_get);
1083
Al Virof6a57032006-10-18 01:47:25 -04001084void module_put(struct module *module)
1085{
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301086 int ret;
1087
Al Virof6a57032006-10-18 01:47:25 -04001088 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +09001089 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301090 ret = atomic_dec_if_positive(&module->refcnt);
1091 WARN_ON(ret < 0); /* Failed to put refcount */
Li Zefanae832d12010-03-24 10:57:43 +08001092 trace_module_put(module, _RET_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +09001093 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -04001094 }
1095}
1096EXPORT_SYMBOL(module_put);
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +08001099static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
1101 /* We don't know the usage count, or what modules are using. */
Ionut Alexa6da0b562014-11-10 09:31:29 +10301102 seq_puts(m, " - -");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
1105static inline void module_unload_free(struct module *mod)
1106{
1107}
1108
Christoph Hellwig7ef5264d2020-07-30 08:10:20 +02001109static int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Rusty Russell9bea7f22010-06-05 11:17:37 -06001111 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001114static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118#endif /* CONFIG_MODULE_UNLOAD */
1119
Kevin Winchester53999bf2012-01-15 19:32:55 -04001120static size_t module_flags_taint(struct module *mod, char *buf)
1121{
1122 size_t l = 0;
Petr Mladek7fd83292016-09-21 13:47:22 +02001123 int i;
Kevin Winchester53999bf2012-01-15 19:32:55 -04001124
Petr Mladek7fd83292016-09-21 13:47:22 +02001125 for (i = 0; i < TAINT_FLAGS_COUNT; i++) {
1126 if (taint_flags[i].module && test_bit(i, &mod->taints))
Larry Finger5eb7c0d2017-01-01 20:25:25 -06001127 buf[l++] = taint_flags[i].c_true;
Petr Mladek7fd83292016-09-21 13:47:22 +02001128 }
1129
Kevin Winchester53999bf2012-01-15 19:32:55 -04001130 return l;
1131}
1132
Kay Sievers1f717402006-11-24 12:15:25 +01001133static ssize_t show_initstate(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301134 struct module_kobject *mk, char *buffer)
Kay Sievers1f717402006-11-24 12:15:25 +01001135{
1136 const char *state = "unknown";
1137
Kay Sievers4befb022011-07-24 22:06:04 +09301138 switch (mk->mod->state) {
Kay Sievers1f717402006-11-24 12:15:25 +01001139 case MODULE_STATE_LIVE:
1140 state = "live";
1141 break;
1142 case MODULE_STATE_COMING:
1143 state = "coming";
1144 break;
1145 case MODULE_STATE_GOING:
1146 state = "going";
1147 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301148 default:
1149 BUG();
Kay Sievers1f717402006-11-24 12:15:25 +01001150 }
1151 return sprintf(buffer, "%s\n", state);
1152}
1153
Kay Sieverscca3e702012-01-13 09:32:15 +10301154static struct module_attribute modinfo_initstate =
1155 __ATTR(initstate, 0444, show_initstate, NULL);
Kay Sievers1f717402006-11-24 12:15:25 +01001156
Kay Sievers88bfa322011-07-24 22:06:04 +09301157static ssize_t store_uevent(struct module_attribute *mattr,
1158 struct module_kobject *mk,
1159 const char *buffer, size_t count)
1160{
Peter Rajnohadf44b472018-12-05 12:27:44 +01001161 int rc;
1162
1163 rc = kobject_synth_uevent(&mk->kobj, buffer, count);
1164 return rc ? rc : count;
Kay Sievers88bfa322011-07-24 22:06:04 +09301165}
1166
Kay Sieverscca3e702012-01-13 09:32:15 +10301167struct module_attribute module_uevent =
1168 __ATTR(uevent, 0200, NULL, store_uevent);
1169
1170static ssize_t show_coresize(struct module_attribute *mattr,
1171 struct module_kobject *mk, char *buffer)
1172{
Rusty Russell7523e4d2015-11-26 09:44:08 +10301173 return sprintf(buffer, "%u\n", mk->mod->core_layout.size);
Kay Sieverscca3e702012-01-13 09:32:15 +10301174}
1175
1176static struct module_attribute modinfo_coresize =
1177 __ATTR(coresize, 0444, show_coresize, NULL);
1178
1179static ssize_t show_initsize(struct module_attribute *mattr,
1180 struct module_kobject *mk, char *buffer)
1181{
Rusty Russell7523e4d2015-11-26 09:44:08 +10301182 return sprintf(buffer, "%u\n", mk->mod->init_layout.size);
Kay Sieverscca3e702012-01-13 09:32:15 +10301183}
1184
1185static struct module_attribute modinfo_initsize =
1186 __ATTR(initsize, 0444, show_initsize, NULL);
1187
1188static ssize_t show_taint(struct module_attribute *mattr,
1189 struct module_kobject *mk, char *buffer)
1190{
1191 size_t l;
1192
1193 l = module_flags_taint(mk->mod, buffer);
1194 buffer[l++] = '\n';
1195 return l;
1196}
1197
1198static struct module_attribute modinfo_taint =
1199 __ATTR(taint, 0444, show_taint, NULL);
Kay Sievers88bfa322011-07-24 22:06:04 +09301200
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001201static struct module_attribute *modinfo_attrs[] = {
Kay Sieverscca3e702012-01-13 09:32:15 +10301202 &module_uevent,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001203 &modinfo_version,
1204 &modinfo_srcversion,
Kay Sieverscca3e702012-01-13 09:32:15 +10301205 &modinfo_initstate,
1206 &modinfo_coresize,
1207 &modinfo_initsize,
1208 &modinfo_taint,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001209#ifdef CONFIG_MODULE_UNLOAD
Kay Sieverscca3e702012-01-13 09:32:15 +10301210 &modinfo_refcnt,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001211#endif
1212 NULL,
1213};
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215static const char vermagic[] = VERMAGIC_STRING;
1216
Rusty Russellc6e665c2009-03-31 13:05:33 -06001217static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -07001218{
1219#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -07001220 if (!test_taint(TAINT_FORCED_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001221 pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
Rusty Russell373d4d02013-01-21 17:17:39 +10301222 add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds826e4502008-05-04 17:04:16 -07001223 return 0;
1224#else
1225 return -ENOEXEC;
1226#endif
1227}
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229#ifdef CONFIG_MODVERSIONS
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001230
1231static u32 resolve_rel_crc(const s32 *crc)
Rusty Russelld4703ae2009-12-15 16:28:32 -06001232{
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001233 return *(u32 *)((void *)crc + *crc);
Rusty Russelld4703ae2009-12-15 16:28:32 -06001234}
1235
Kees Cook49019422017-04-21 15:35:26 -07001236static int check_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301238 struct module *mod,
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001239 const s32 *crc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Kees Cook49019422017-04-21 15:35:26 -07001241 Elf_Shdr *sechdrs = info->sechdrs;
1242 unsigned int versindex = info->index.vers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 unsigned int i, num_versions;
1244 struct modversion_info *versions;
1245
1246 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1247 if (!crc)
1248 return 1;
1249
Rusty Russella5dd6972008-05-09 16:24:21 +10001250 /* No versions at all? modprobe --force does this. */
1251 if (versindex == 0)
1252 return try_to_force_load(mod, symname) == 0;
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 versions = (void *) sechdrs[versindex].sh_addr;
1255 num_versions = sechdrs[versindex].sh_size
1256 / sizeof(struct modversion_info);
1257
1258 for (i = 0; i < num_versions; i++) {
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001259 u32 crcval;
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (strcmp(versions[i].name, symname) != 0)
1262 continue;
1263
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001264 if (IS_ENABLED(CONFIG_MODULE_REL_CRCS))
1265 crcval = resolve_rel_crc(crc);
1266 else
1267 crcval = *crc;
1268 if (versions[i].crc == crcval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return 1;
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001270 pr_debug("Found checksum %X vs module %lX\n",
1271 crcval, versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001272 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001274
Linus Torvaldsfaaae2a2016-11-29 15:20:14 -08001275 /* Broken toolchain. Warn once, then let it go.. */
Kees Cook3e2e8572017-04-21 15:35:27 -07001276 pr_warn_once("%s: no symbol version for %s\n", info->name, symname);
Linus Torvaldsfaaae2a2016-11-29 15:20:14 -08001277 return 1;
Linus Torvalds826e4502008-05-04 17:04:16 -07001278
1279bad_version:
Ionut Alexa6da0b562014-11-10 09:31:29 +10301280 pr_warn("%s: disagrees about version of symbol %s\n",
Kees Cook3e2e8572017-04-21 15:35:27 -07001281 info->name, symname);
Linus Torvalds826e4502008-05-04 17:04:16 -07001282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
Kees Cook49019422017-04-21 15:35:26 -07001285static inline int check_modstruct_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 struct module *mod)
1287{
Christoph Hellwig0b966152021-01-20 14:58:27 +01001288 struct find_symbol_arg fsa = {
1289 .name = "module_layout",
1290 .gplok = true,
1291 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301293 /*
1294 * Since this should be found in kernel (which can't be removed), no
1295 * locking is necessary -- use preempt_disable() to placate lockdep.
1296 */
1297 preempt_disable();
Christoph Hellwig0b966152021-01-20 14:58:27 +01001298 if (!find_symbol(&fsa)) {
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301299 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 BUG();
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301301 }
1302 preempt_enable();
Christoph Hellwig0b966152021-01-20 14:58:27 +01001303 return check_version(info, "module_layout", mod, fsa.crc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
Rusty Russell91e37a72008-05-09 16:25:28 +10001306/* First part is kernel version, which we ignore if module has crcs. */
1307static inline int same_magic(const char *amagic, const char *bmagic,
1308 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Rusty Russell91e37a72008-05-09 16:25:28 +10001310 if (has_crcs) {
1311 amagic += strcspn(amagic, " ");
1312 bmagic += strcspn(bmagic, " ");
1313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return strcmp(amagic, bmagic) == 0;
1315}
1316#else
Kees Cook49019422017-04-21 15:35:26 -07001317static inline int check_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301319 struct module *mod,
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001320 const s32 *crc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
1322 return 1;
1323}
1324
Kees Cook49019422017-04-21 15:35:26 -07001325static inline int check_modstruct_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 struct module *mod)
1327{
1328 return 1;
1329}
1330
Rusty Russell91e37a72008-05-09 16:25:28 +10001331static inline int same_magic(const char *amagic, const char *bmagic,
1332 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 return strcmp(amagic, bmagic) == 0;
1335}
1336#endif /* CONFIG_MODVERSIONS */
1337
Matthias Maennich8651ec02019-09-06 11:32:27 +01001338static char *get_modinfo(const struct load_info *info, const char *tag);
1339static char *get_next_modinfo(const struct load_info *info, const char *tag,
1340 char *prev);
1341
1342static int verify_namespace_is_imported(const struct load_info *info,
1343 const struct kernel_symbol *sym,
1344 struct module *mod)
1345{
1346 const char *namespace;
1347 char *imported_namespace;
1348
1349 namespace = kernel_symbol_namespace(sym);
Masahiro Yamadac3a6cf12019-10-18 10:31:43 +01001350 if (namespace && namespace[0]) {
Matthias Maennich8651ec02019-09-06 11:32:27 +01001351 imported_namespace = get_modinfo(info, "import_ns");
1352 while (imported_namespace) {
1353 if (strcmp(namespace, imported_namespace) == 0)
1354 return 0;
1355 imported_namespace = get_next_modinfo(
1356 info, "import_ns", imported_namespace);
1357 }
Matthias Maennich3d52ec52019-09-06 11:32:29 +01001358#ifdef CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS
1359 pr_warn(
1360#else
1361 pr_err(
1362#endif
1363 "%s: module uses symbol (%s) from namespace %s, but does not import it.\n",
1364 mod->name, kernel_symbol_name(sym), namespace);
1365#ifndef CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS
Matthias Maennich8651ec02019-09-06 11:32:27 +01001366 return -EINVAL;
Matthias Maennich3d52ec52019-09-06 11:32:29 +01001367#endif
Matthias Maennich8651ec02019-09-06 11:32:27 +01001368 }
1369 return 0;
1370}
1371
Christoph Hellwig262e6ae2020-07-28 23:33:33 +02001372static bool inherit_taint(struct module *mod, struct module *owner)
1373{
1374 if (!owner || !test_bit(TAINT_PROPRIETARY_MODULE, &owner->taints))
1375 return true;
1376
1377 if (mod->using_gplonly_symbols) {
1378 pr_err("%s: module using GPL-only symbols uses symbols from proprietary module %s.\n",
1379 mod->name, owner->name);
1380 return false;
1381 }
1382
1383 if (!test_bit(TAINT_PROPRIETARY_MODULE, &mod->taints)) {
1384 pr_warn("%s: module uses symbols from proprietary module %s, inheriting taint.\n",
1385 mod->name, owner->name);
1386 set_bit(TAINT_PROPRIETARY_MODULE, &mod->taints);
1387 }
1388 return true;
1389}
Matthias Maennich8651ec02019-09-06 11:32:27 +01001390
Rusty Russell75676502010-06-05 11:17:36 -06001391/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001392static const struct kernel_symbol *resolve_symbol(struct module *mod,
1393 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001394 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001395 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
Christoph Hellwig0b966152021-01-20 14:58:27 +01001397 struct find_symbol_arg fsa = {
1398 .name = name,
1399 .gplok = !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)),
1400 .warn = true,
1401 };
Rusty Russell9bea7f22010-06-05 11:17:37 -06001402 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Peter Zijlstrad64810f2015-02-11 15:01:13 +10301404 /*
1405 * The module_mutex should not be a heavily contended lock;
1406 * if we get the occasional sleep here, we'll go an extra iteration
1407 * in the wait_event_interruptible(), which is harmless.
1408 */
1409 sched_annotate_sleep();
Rusty Russell75676502010-06-05 11:17:36 -06001410 mutex_lock(&module_mutex);
Christoph Hellwig0b966152021-01-20 14:58:27 +01001411 if (!find_symbol(&fsa))
Rusty Russell9bea7f22010-06-05 11:17:37 -06001412 goto unlock;
1413
Christoph Hellwig0b966152021-01-20 14:58:27 +01001414 if (fsa.license == GPL_ONLY)
Christoph Hellwig262e6ae2020-07-28 23:33:33 +02001415 mod->using_gplonly_symbols = true;
1416
Christoph Hellwig0b966152021-01-20 14:58:27 +01001417 if (!inherit_taint(mod, fsa.owner)) {
1418 fsa.sym = NULL;
Christoph Hellwig262e6ae2020-07-28 23:33:33 +02001419 goto getname;
1420 }
1421
Christoph Hellwig0b966152021-01-20 14:58:27 +01001422 if (!check_version(info, name, mod, fsa.crc)) {
1423 fsa.sym = ERR_PTR(-EINVAL);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001424 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001426
Christoph Hellwig0b966152021-01-20 14:58:27 +01001427 err = verify_namespace_is_imported(info, fsa.sym, mod);
Matthias Maennich8651ec02019-09-06 11:32:27 +01001428 if (err) {
Christoph Hellwig0b966152021-01-20 14:58:27 +01001429 fsa.sym = ERR_PTR(err);
Matthias Maennich8651ec02019-09-06 11:32:27 +01001430 goto getname;
1431 }
1432
Christoph Hellwig0b966152021-01-20 14:58:27 +01001433 err = ref_module(mod, fsa.owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001434 if (err) {
Christoph Hellwig0b966152021-01-20 14:58:27 +01001435 fsa.sym = ERR_PTR(err);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001436 goto getname;
1437 }
1438
1439getname:
1440 /* We must make copy under the lock if we failed to get ref. */
Christoph Hellwig0b966152021-01-20 14:58:27 +01001441 strncpy(ownername, module_name(fsa.owner), MODULE_NAME_LEN);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001442unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001443 mutex_unlock(&module_mutex);
Christoph Hellwig0b966152021-01-20 14:58:27 +01001444 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
Rusty Russell49668682010-08-05 12:59:10 -06001447static const struct kernel_symbol *
1448resolve_symbol_wait(struct module *mod,
1449 const struct load_info *info,
1450 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001451{
1452 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001453 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001454
1455 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001456 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1457 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001458 30 * HZ) <= 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001459 pr_warn("%s: gave up waiting for init of module %s.\n",
1460 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001461 }
1462 return ksym;
1463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465/*
1466 * /sys/module/foo/sections stuff
1467 * J. Corbet <corbet@lwn.net>
1468 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001469#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001470
Rusty Russell8f6d0372010-08-05 12:59:09 -06001471#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001472static inline bool sect_empty(const Elf_Shdr *sect)
1473{
1474 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1475}
1476
Ionut Alexa6da0b562014-11-10 09:31:29 +10301477struct module_sect_attr {
Kees Cooked66f9912020-07-02 13:47:20 -07001478 struct bin_attribute battr;
Rusty Russella58730c2008-03-13 09:03:44 +00001479 unsigned long address;
1480};
1481
Ionut Alexa6da0b562014-11-10 09:31:29 +10301482struct module_sect_attrs {
Rusty Russella58730c2008-03-13 09:03:44 +00001483 struct attribute_group grp;
1484 unsigned int nsections;
Gustavo A. R. Silva0f742262020-02-13 09:14:09 -06001485 struct module_sect_attr attrs[];
Rusty Russella58730c2008-03-13 09:03:44 +00001486};
1487
Kees Cook11990a52020-08-06 14:15:23 -07001488#define MODULE_SECT_READ_SIZE (3 /* "0x", "\n" */ + (BITS_PER_LONG / 4))
Kees Cooked66f9912020-07-02 13:47:20 -07001489static ssize_t module_sect_read(struct file *file, struct kobject *kobj,
1490 struct bin_attribute *battr,
1491 char *buf, loff_t pos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
1493 struct module_sect_attr *sattr =
Kees Cooked66f9912020-07-02 13:47:20 -07001494 container_of(battr, struct module_sect_attr, battr);
Kees Cook11990a52020-08-06 14:15:23 -07001495 char bounce[MODULE_SECT_READ_SIZE + 1];
1496 size_t wrote;
Kees Cooked66f9912020-07-02 13:47:20 -07001497
1498 if (pos != 0)
1499 return -EINVAL;
1500
Kees Cook11990a52020-08-06 14:15:23 -07001501 /*
1502 * Since we're a binary read handler, we must account for the
1503 * trailing NUL byte that sprintf will write: if "buf" is
1504 * too small to hold the NUL, or the NUL is exactly the last
1505 * byte, the read will look like it got truncated by one byte.
1506 * Since there is no way to ask sprintf nicely to not write
1507 * the NUL, we have to use a bounce buffer.
1508 */
1509 wrote = scnprintf(bounce, sizeof(bounce), "0x%px\n",
1510 kallsyms_show_value(file->f_cred)
1511 ? (void *)sattr->address : NULL);
1512 count = min(count, wrote);
1513 memcpy(buf, bounce, count);
1514
1515 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001518static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1519{
Rusty Russella58730c2008-03-13 09:03:44 +00001520 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001521
1522 for (section = 0; section < sect_attrs->nsections; section++)
Kees Cooked66f9912020-07-02 13:47:20 -07001523 kfree(sect_attrs->attrs[section].battr.attr.name);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001524 kfree(sect_attrs);
1525}
1526
Rusty Russell8f6d0372010-08-05 12:59:09 -06001527static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 unsigned int nloaded = 0, i, size[2];
1530 struct module_sect_attrs *sect_attrs;
1531 struct module_sect_attr *sattr;
Kees Cooked66f9912020-07-02 13:47:20 -07001532 struct bin_attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001535 for (i = 0; i < info->hdr->e_shnum; i++)
1536 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 nloaded++;
Gustavo A. R. Silva8d1b73d2019-06-06 13:18:53 -05001538 size[0] = ALIGN(struct_size(sect_attrs, attrs, nloaded),
Kees Cooked66f9912020-07-02 13:47:20 -07001539 sizeof(sect_attrs->grp.bin_attrs[0]));
1540 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.bin_attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001541 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1542 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return;
1544
1545 /* Setup section attributes. */
1546 sect_attrs->grp.name = "sections";
Kees Cooked66f9912020-07-02 13:47:20 -07001547 sect_attrs->grp.bin_attrs = (void *)sect_attrs + size[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001549 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 sattr = &sect_attrs->attrs[0];
Kees Cooked66f9912020-07-02 13:47:20 -07001551 gattr = &sect_attrs->grp.bin_attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001552 for (i = 0; i < info->hdr->e_shnum; i++) {
1553 Elf_Shdr *sec = &info->sechdrs[i];
1554 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001555 continue;
Kees Cooked66f9912020-07-02 13:47:20 -07001556 sysfs_bin_attr_init(&sattr->battr);
Rusty Russell8f6d0372010-08-05 12:59:09 -06001557 sattr->address = sec->sh_addr;
Kees Cooked66f9912020-07-02 13:47:20 -07001558 sattr->battr.attr.name =
1559 kstrdup(info->secstrings + sec->sh_name, GFP_KERNEL);
1560 if (sattr->battr.attr.name == NULL)
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001561 goto out;
1562 sect_attrs->nsections++;
Kees Cooked66f9912020-07-02 13:47:20 -07001563 sattr->battr.read = module_sect_read;
Kees Cook11990a52020-08-06 14:15:23 -07001564 sattr->battr.size = MODULE_SECT_READ_SIZE;
Kees Cooked66f9912020-07-02 13:47:20 -07001565 sattr->battr.attr.mode = 0400;
1566 *(gattr++) = &(sattr++)->battr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568 *gattr = NULL;
1569
1570 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1571 goto out;
1572
1573 mod->sect_attrs = sect_attrs;
1574 return;
1575 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001576 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
1579static void remove_sect_attrs(struct module *mod)
1580{
1581 if (mod->sect_attrs) {
1582 sysfs_remove_group(&mod->mkobj.kobj,
1583 &mod->sect_attrs->grp);
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03001584 /*
1585 * We are positive that no one is using any sect attrs
1586 * at this point. Deallocate immediately.
1587 */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001588 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 mod->sect_attrs = NULL;
1590 }
1591}
1592
Roland McGrath6d760132007-10-16 23:26:40 -07001593/*
1594 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1595 */
1596
1597struct module_notes_attrs {
1598 struct kobject *dir;
1599 unsigned int notes;
Gustavo A. R. Silva0f742262020-02-13 09:14:09 -06001600 struct bin_attribute attrs[];
Roland McGrath6d760132007-10-16 23:26:40 -07001601};
1602
Chris Wright2c3c8be2010-05-12 18:28:57 -07001603static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001604 struct bin_attribute *bin_attr,
1605 char *buf, loff_t pos, size_t count)
1606{
1607 /*
1608 * The caller checked the pos and count against our size.
1609 */
1610 memcpy(buf, bin_attr->private + pos, count);
1611 return count;
1612}
1613
1614static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1615 unsigned int i)
1616{
1617 if (notes_attrs->dir) {
1618 while (i-- > 0)
1619 sysfs_remove_bin_file(notes_attrs->dir,
1620 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001621 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001622 }
1623 kfree(notes_attrs);
1624}
1625
Rusty Russell8f6d0372010-08-05 12:59:09 -06001626static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001627{
1628 unsigned int notes, loaded, i;
1629 struct module_notes_attrs *notes_attrs;
1630 struct bin_attribute *nattr;
1631
Ingo Molnarea6bff32009-08-28 10:44:56 +02001632 /* failed to create section attributes, so can't create notes */
1633 if (!mod->sect_attrs)
1634 return;
1635
Roland McGrath6d760132007-10-16 23:26:40 -07001636 /* Count notes sections and allocate structures. */
1637 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001638 for (i = 0; i < info->hdr->e_shnum; i++)
1639 if (!sect_empty(&info->sechdrs[i]) &&
1640 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001641 ++notes;
1642
1643 if (notes == 0)
1644 return;
1645
Kees Cookacafe7e2018-05-08 13:45:50 -07001646 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes),
Roland McGrath6d760132007-10-16 23:26:40 -07001647 GFP_KERNEL);
1648 if (notes_attrs == NULL)
1649 return;
1650
1651 notes_attrs->notes = notes;
1652 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001653 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1654 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001655 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001656 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001657 sysfs_bin_attr_init(nattr);
Kees Cooked66f9912020-07-02 13:47:20 -07001658 nattr->attr.name = mod->sect_attrs->attrs[loaded].battr.attr.name;
Roland McGrath6d760132007-10-16 23:26:40 -07001659 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001660 nattr->size = info->sechdrs[i].sh_size;
1661 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001662 nattr->read = module_notes_read;
1663 ++nattr;
1664 }
1665 ++loaded;
1666 }
1667
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001668 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001669 if (!notes_attrs->dir)
1670 goto out;
1671
1672 for (i = 0; i < notes; ++i)
1673 if (sysfs_create_bin_file(notes_attrs->dir,
1674 &notes_attrs->attrs[i]))
1675 goto out;
1676
1677 mod->notes_attrs = notes_attrs;
1678 return;
1679
1680 out:
1681 free_notes_attrs(notes_attrs, i);
1682}
1683
1684static void remove_notes_attrs(struct module *mod)
1685{
1686 if (mod->notes_attrs)
1687 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1688}
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001691
Rusty Russell8f6d0372010-08-05 12:59:09 -06001692static inline void add_sect_attrs(struct module *mod,
1693 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
1695}
1696
1697static inline void remove_sect_attrs(struct module *mod)
1698{
1699}
Roland McGrath6d760132007-10-16 23:26:40 -07001700
Rusty Russell8f6d0372010-08-05 12:59:09 -06001701static inline void add_notes_attrs(struct module *mod,
1702 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001703{
1704}
1705
1706static inline void remove_notes_attrs(struct module *mod)
1707{
1708}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001709#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001711static void del_usage_links(struct module *mod)
1712{
1713#ifdef CONFIG_MODULE_UNLOAD
1714 struct module_use *use;
1715
Rusty Russell75676502010-06-05 11:17:36 -06001716 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001717 list_for_each_entry(use, &mod->target_list, target_list)
1718 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001719 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001720#endif
1721}
1722
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001723static int add_usage_links(struct module *mod)
1724{
1725 int ret = 0;
1726#ifdef CONFIG_MODULE_UNLOAD
1727 struct module_use *use;
1728
1729 mutex_lock(&module_mutex);
1730 list_for_each_entry(use, &mod->target_list, target_list) {
1731 ret = sysfs_create_link(use->target->holders_dir,
1732 &mod->mkobj.kobj, mod->name);
1733 if (ret)
1734 break;
1735 }
1736 mutex_unlock(&module_mutex);
1737 if (ret)
1738 del_usage_links(mod);
1739#endif
1740 return ret;
1741}
1742
YueHaibingbc6f2a72019-06-11 23:00:07 +08001743static void module_remove_modinfo_attrs(struct module *mod, int end);
1744
Rusty Russell6407ebb22010-06-05 11:17:36 -06001745static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001746{
1747 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001748 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001749 int error = 0;
1750 int i;
1751
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001752 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1753 (ARRAY_SIZE(modinfo_attrs) + 1)),
1754 GFP_KERNEL);
1755 if (!mod->modinfo_attrs)
1756 return -ENOMEM;
1757
1758 temp_attr = mod->modinfo_attrs;
YueHaibingbc6f2a72019-06-11 23:00:07 +08001759 for (i = 0; (attr = modinfo_attrs[i]); i++) {
Rusty Russellc75b5902016-04-12 05:03:09 +09301760 if (!attr->test || attr->test(mod)) {
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001761 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001762 sysfs_attr_init(&temp_attr->attr);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301763 error = sysfs_create_file(&mod->mkobj.kobj,
1764 &temp_attr->attr);
YueHaibingbc6f2a72019-06-11 23:00:07 +08001765 if (error)
1766 goto error_out;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001767 ++temp_attr;
1768 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001769 }
YueHaibingbc6f2a72019-06-11 23:00:07 +08001770
1771 return 0;
1772
1773error_out:
1774 if (i > 0)
1775 module_remove_modinfo_attrs(mod, --i);
YueHaibingf6d061d2019-12-28 19:54:55 +08001776 else
1777 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001778 return error;
1779}
1780
YueHaibingbc6f2a72019-06-11 23:00:07 +08001781static void module_remove_modinfo_attrs(struct module *mod, int end)
Matt Domschc988d2b2005-06-23 22:05:15 -07001782{
1783 struct module_attribute *attr;
1784 int i;
1785
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001786 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
YueHaibingbc6f2a72019-06-11 23:00:07 +08001787 if (end >= 0 && i > end)
1788 break;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001789 /* pick a field to test for end of list */
1790 if (!attr->attr.name)
1791 break;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301792 sysfs_remove_file(&mod->mkobj.kobj, &attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001793 if (attr->free)
1794 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001795 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001796 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001797}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Li Zhong942e4432013-09-03 16:33:57 +09301799static void mod_kobject_put(struct module *mod)
1800{
1801 DECLARE_COMPLETION_ONSTACK(c);
1802 mod->mkobj.kobj_completion = &c;
1803 kobject_put(&mod->mkobj.kobj);
1804 wait_for_completion(&c);
1805}
1806
Rusty Russell6407ebb22010-06-05 11:17:36 -06001807static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
1809 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001810 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001812 if (!module_sysfs_initialized) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001813 pr_err("%s: module sysfs not initialized\n", mod->name);
Ed Swierk1cc5f712006-09-25 16:25:36 -07001814 err = -EINVAL;
1815 goto out;
1816 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001817
1818 kobj = kset_find_obj(module_kset, mod->name);
1819 if (kobj) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001820 pr_err("%s: module is already loaded\n", mod->name);
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001821 kobject_put(kobj);
1822 err = -EINVAL;
1823 goto out;
1824 }
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001827
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001828 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1829 mod->mkobj.kobj.kset = module_kset;
1830 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1831 "%s", mod->name);
1832 if (err)
Li Zhong942e4432013-09-03 16:33:57 +09301833 mod_kobject_put(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001834
1835out:
1836 return err;
1837}
1838
Rusty Russell6407ebb22010-06-05 11:17:36 -06001839static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001840 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001841 struct kernel_param *kparam,
1842 unsigned int num_params)
1843{
1844 int err;
1845
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001846 err = mod_sysfs_init(mod);
1847 if (err)
1848 goto out;
1849
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001850 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001851 if (!mod->holders_dir) {
1852 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001853 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001854 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 err = module_param_sysfs_setup(mod, kparam, num_params);
1857 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001858 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Matt Domschc988d2b2005-06-23 22:05:15 -07001860 err = module_add_modinfo_attrs(mod);
1861 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001862 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001863
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001864 err = add_usage_links(mod);
1865 if (err)
1866 goto out_unreg_modinfo_attrs;
1867
Rusty Russell8f6d0372010-08-05 12:59:09 -06001868 add_sect_attrs(mod, info);
1869 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 return 0;
1872
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001873out_unreg_modinfo_attrs:
YueHaibingbc6f2a72019-06-11 23:00:07 +08001874 module_remove_modinfo_attrs(mod, -1);
Kay Sieverse17e0f52006-11-24 12:15:25 +01001875out_unreg_param:
1876 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001877out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001878 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001879out_unreg:
Li Zhong942e4432013-09-03 16:33:57 +09301880 mod_kobject_put(mod);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001881out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return err;
1883}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001884
1885static void mod_sysfs_fini(struct module *mod)
1886{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001887 remove_notes_attrs(mod);
1888 remove_sect_attrs(mod);
Li Zhong942e4432013-09-03 16:33:57 +09301889 mod_kobject_put(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001890}
1891
Rusty Russellcf2fde72015-06-26 06:44:38 +09301892static void init_param_lock(struct module *mod)
1893{
1894 mutex_init(&mod->param_lock);
1895}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001896#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001897
Rusty Russell8f6d0372010-08-05 12:59:09 -06001898static int mod_sysfs_setup(struct module *mod,
1899 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001900 struct kernel_param *kparam,
1901 unsigned int num_params)
1902{
1903 return 0;
1904}
1905
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001906static void mod_sysfs_fini(struct module *mod)
1907{
1908}
1909
YueHaibingbc6f2a72019-06-11 23:00:07 +08001910static void module_remove_modinfo_attrs(struct module *mod, int end)
Rusty Russell36b03602010-08-05 12:59:09 -06001911{
1912}
1913
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001914static void del_usage_links(struct module *mod)
1915{
1916}
1917
Rusty Russellcf2fde72015-06-26 06:44:38 +09301918static void init_param_lock(struct module *mod)
1919{
1920}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001921#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Rusty Russell36b03602010-08-05 12:59:09 -06001923static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001925 del_usage_links(mod);
YueHaibingbc6f2a72019-06-11 23:00:07 +08001926 module_remove_modinfo_attrs(mod, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001928 kobject_put(mod->mkobj.drivers_dir);
1929 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001930 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
matthieu castet84e1c6b2010-11-16 22:35:16 +01001933/*
1934 * LKM RO/NX protection: protect module's text/ro-data
1935 * from modification and any data from execution.
Rusty Russell85c898d2015-11-26 09:45:08 +10301936 *
1937 * General layout of module is:
Jessica Yu444d13f2016-07-27 12:06:21 +09301938 * [text] [read-only-data] [ro-after-init] [writable data]
1939 * text_size -----^ ^ ^ ^
1940 * ro_size ------------------------| | |
1941 * ro_after_init_size -----------------------------| |
1942 * size -----------------------------------------------------------|
Rusty Russell85c898d2015-11-26 09:45:08 +10301943 *
1944 * These values are always page-aligned (as is base)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001945 */
Jessica Yudb991af2020-04-08 16:31:06 +02001946
1947/*
1948 * Since some arches are moving towards PAGE_KERNEL module allocations instead
1949 * of PAGE_KERNEL_EXEC, keep frob_text() and module_enable_x() outside of the
1950 * CONFIG_STRICT_MODULE_RWX block below because they are needed regardless of
1951 * whether we are strict.
1952 */
1953#ifdef CONFIG_ARCH_HAS_STRICT_MODULE_RWX
Rusty Russell85c898d2015-11-26 09:45:08 +10301954static void frob_text(const struct module_layout *layout,
1955 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001956{
Rusty Russell85c898d2015-11-26 09:45:08 +10301957 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1958 BUG_ON((unsigned long)layout->text_size & (PAGE_SIZE-1));
1959 set_memory((unsigned long)layout->base,
1960 layout->text_size >> PAGE_SHIFT);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001961}
1962
Jessica Yudb991af2020-04-08 16:31:06 +02001963static void module_enable_x(const struct module *mod)
1964{
1965 frob_text(&mod->core_layout, set_memory_x);
1966 frob_text(&mod->init_layout, set_memory_x);
1967}
1968#else /* !CONFIG_ARCH_HAS_STRICT_MODULE_RWX */
1969static void module_enable_x(const struct module *mod) { }
1970#endif /* CONFIG_ARCH_HAS_STRICT_MODULE_RWX */
1971
Yang Yingliang93651f82019-06-25 17:40:28 +08001972#ifdef CONFIG_STRICT_MODULE_RWX
Rusty Russell85c898d2015-11-26 09:45:08 +10301973static void frob_rodata(const struct module_layout *layout,
1974 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001975{
Rusty Russell85c898d2015-11-26 09:45:08 +10301976 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1977 BUG_ON((unsigned long)layout->text_size & (PAGE_SIZE-1));
1978 BUG_ON((unsigned long)layout->ro_size & (PAGE_SIZE-1));
1979 set_memory((unsigned long)layout->base + layout->text_size,
1980 (layout->ro_size - layout->text_size) >> PAGE_SHIFT);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001981}
1982
Jessica Yu444d13f2016-07-27 12:06:21 +09301983static void frob_ro_after_init(const struct module_layout *layout,
1984 int (*set_memory)(unsigned long start, int num_pages))
1985{
1986 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1987 BUG_ON((unsigned long)layout->ro_size & (PAGE_SIZE-1));
1988 BUG_ON((unsigned long)layout->ro_after_init_size & (PAGE_SIZE-1));
1989 set_memory((unsigned long)layout->base + layout->ro_size,
1990 (layout->ro_after_init_size - layout->ro_size) >> PAGE_SHIFT);
1991}
1992
Rusty Russell85c898d2015-11-26 09:45:08 +10301993static void frob_writable_data(const struct module_layout *layout,
1994 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001995{
Rusty Russell85c898d2015-11-26 09:45:08 +10301996 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
Jessica Yu444d13f2016-07-27 12:06:21 +09301997 BUG_ON((unsigned long)layout->ro_after_init_size & (PAGE_SIZE-1));
Rusty Russell85c898d2015-11-26 09:45:08 +10301998 BUG_ON((unsigned long)layout->size & (PAGE_SIZE-1));
Jessica Yu444d13f2016-07-27 12:06:21 +09301999 set_memory((unsigned long)layout->base + layout->ro_after_init_size,
2000 (layout->size - layout->ro_after_init_size) >> PAGE_SHIFT);
Jan Glauber01526ed2011-05-19 16:55:26 -06002001}
2002
Josh Poimboeufe6eff432020-04-29 10:24:53 -05002003static void module_enable_ro(const struct module *mod, bool after_init)
Josh Poimboeuf20ef10c2015-11-26 09:42:08 +10302004{
AKASHI Takahiro39290b32016-11-14 15:15:05 +09002005 if (!rodata_enabled)
2006 return;
2007
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07002008 set_vm_flush_reset_perms(mod->core_layout.base);
2009 set_vm_flush_reset_perms(mod->init_layout.base);
Rusty Russell85c898d2015-11-26 09:45:08 +10302010 frob_text(&mod->core_layout, set_memory_ro);
Nadav Amitf2c65fb2019-04-25 17:11:31 -07002011
Rusty Russell85c898d2015-11-26 09:45:08 +10302012 frob_rodata(&mod->core_layout, set_memory_ro);
2013 frob_text(&mod->init_layout, set_memory_ro);
2014 frob_rodata(&mod->init_layout, set_memory_ro);
Jessica Yu444d13f2016-07-27 12:06:21 +09302015
2016 if (after_init)
2017 frob_ro_after_init(&mod->core_layout, set_memory_ro);
Jan Glauber01526ed2011-05-19 16:55:26 -06002018}
2019
Rusty Russell85c898d2015-11-26 09:45:08 +10302020static void module_enable_nx(const struct module *mod)
Jan Glauber01526ed2011-05-19 16:55:26 -06002021{
Rusty Russell85c898d2015-11-26 09:45:08 +10302022 frob_rodata(&mod->core_layout, set_memory_nx);
Jessica Yu444d13f2016-07-27 12:06:21 +09302023 frob_ro_after_init(&mod->core_layout, set_memory_nx);
Rusty Russell85c898d2015-11-26 09:45:08 +10302024 frob_writable_data(&mod->core_layout, set_memory_nx);
2025 frob_rodata(&mod->init_layout, set_memory_nx);
2026 frob_writable_data(&mod->init_layout, set_memory_nx);
2027}
2028
Peter Zijlstra5c3a7db2020-04-03 19:13:03 +02002029static int module_enforce_rwx_sections(Elf_Ehdr *hdr, Elf_Shdr *sechdrs,
2030 char *secstrings, struct module *mod)
2031{
2032 const unsigned long shf_wx = SHF_WRITE|SHF_EXECINSTR;
2033 int i;
2034
2035 for (i = 0; i < hdr->e_shnum; i++) {
Qu Wenruo14721ad2020-09-02 14:46:19 +08002036 if ((sechdrs[i].sh_flags & shf_wx) == shf_wx) {
2037 pr_err("%s: section %s (index %d) has invalid WRITE|EXEC flags\n",
2038 mod->name, secstrings + sechdrs[i].sh_name, i);
Peter Zijlstra5c3a7db2020-04-03 19:13:03 +02002039 return -ENOEXEC;
Qu Wenruo14721ad2020-09-02 14:46:19 +08002040 }
Peter Zijlstra5c3a7db2020-04-03 19:13:03 +02002041 }
2042
2043 return 0;
2044}
2045
Yang Yingliang93651f82019-06-25 17:40:28 +08002046#else /* !CONFIG_STRICT_MODULE_RWX */
Rusty Russell85c898d2015-11-26 09:45:08 +10302047static void module_enable_nx(const struct module *mod) { }
Josh Poimboeufe6eff432020-04-29 10:24:53 -05002048static void module_enable_ro(const struct module *mod, bool after_init) {}
Peter Zijlstra5c3a7db2020-04-03 19:13:03 +02002049static int module_enforce_rwx_sections(Elf_Ehdr *hdr, Elf_Shdr *sechdrs,
2050 char *secstrings, struct module *mod)
Yang Yingliang2eef1392019-06-20 10:18:14 +08002051{
Peter Zijlstra5c3a7db2020-04-03 19:13:03 +02002052 return 0;
Yang Yingliang2eef1392019-06-20 10:18:14 +08002053}
matthieu castet84e1c6b2010-11-16 22:35:16 +01002054#endif /* CONFIG_STRICT_MODULE_RWX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002056#ifdef CONFIG_LIVEPATCH
2057/*
2058 * Persist Elf information about a module. Copy the Elf header,
2059 * section header table, section string table, and symtab section
2060 * index from info to mod->klp_info.
2061 */
2062static int copy_module_elf(struct module *mod, struct load_info *info)
2063{
2064 unsigned int size, symndx;
2065 int ret;
2066
2067 size = sizeof(*mod->klp_info);
2068 mod->klp_info = kmalloc(size, GFP_KERNEL);
2069 if (mod->klp_info == NULL)
2070 return -ENOMEM;
2071
2072 /* Elf header */
2073 size = sizeof(mod->klp_info->hdr);
2074 memcpy(&mod->klp_info->hdr, info->hdr, size);
2075
2076 /* Elf section header table */
2077 size = sizeof(*info->sechdrs) * info->hdr->e_shnum;
zhong jiang9be936f2018-08-01 00:56:17 +08002078 mod->klp_info->sechdrs = kmemdup(info->sechdrs, size, GFP_KERNEL);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002079 if (mod->klp_info->sechdrs == NULL) {
2080 ret = -ENOMEM;
2081 goto free_info;
2082 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002083
2084 /* Elf section name string table */
2085 size = info->sechdrs[info->hdr->e_shstrndx].sh_size;
zhong jiang9be936f2018-08-01 00:56:17 +08002086 mod->klp_info->secstrings = kmemdup(info->secstrings, size, GFP_KERNEL);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002087 if (mod->klp_info->secstrings == NULL) {
2088 ret = -ENOMEM;
2089 goto free_sechdrs;
2090 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002091
2092 /* Elf symbol section index */
2093 symndx = info->index.sym;
2094 mod->klp_info->symndx = symndx;
2095
2096 /*
2097 * For livepatch modules, core_kallsyms.symtab is a complete
2098 * copy of the original symbol table. Adjust sh_addr to point
2099 * to core_kallsyms.symtab since the copy of the symtab in module
2100 * init memory is freed at the end of do_init_module().
2101 */
2102 mod->klp_info->sechdrs[symndx].sh_addr = \
2103 (unsigned long) mod->core_kallsyms.symtab;
2104
2105 return 0;
2106
2107free_sechdrs:
2108 kfree(mod->klp_info->sechdrs);
2109free_info:
2110 kfree(mod->klp_info);
2111 return ret;
2112}
2113
2114static void free_module_elf(struct module *mod)
2115{
2116 kfree(mod->klp_info->sechdrs);
2117 kfree(mod->klp_info->secstrings);
2118 kfree(mod->klp_info);
2119}
2120#else /* !CONFIG_LIVEPATCH */
2121static int copy_module_elf(struct module *mod, struct load_info *info)
2122{
2123 return 0;
2124}
2125
2126static void free_module_elf(struct module *mod)
2127{
2128}
2129#endif /* CONFIG_LIVEPATCH */
2130
Rusty Russellbe1f2212015-01-20 09:07:05 +10302131void __weak module_memfree(void *module_region)
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002132{
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07002133 /*
2134 * This memory may be RO, and freeing RO memory in an interrupt is not
2135 * supported by vmalloc.
2136 */
2137 WARN_ON(in_interrupt());
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002138 vfree(module_region);
2139}
2140
2141void __weak module_arch_cleanup(struct module *mod)
2142{
2143}
2144
Rusty Russelld453cde2015-01-20 09:07:04 +10302145void __weak module_arch_freeing_init(struct module *mod)
2146{
2147}
2148
Sami Tolvanencf68fff2021-04-08 11:28:26 -07002149static void cfi_cleanup(struct module *mod);
2150
Rusty Russell75676502010-06-05 11:17:36 -06002151/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152static void free_module(struct module *mod)
2153{
Li Zefan7ead8b82009-08-17 16:56:28 +08002154 trace_module_free(mod);
2155
Rusty Russell36b03602010-08-05 12:59:09 -06002156 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03002158 /*
2159 * We leave it in list to prevent duplicate loads, but make sure
2160 * that noone uses it while it's being deconstructed.
2161 */
Prarit Bhargavad3051b42014-10-14 02:51:39 +10302162 mutex_lock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09302163 mod->state = MODULE_STATE_UNFORMED;
Prarit Bhargavad3051b42014-10-14 02:51:39 +10302164 mutex_unlock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09302165
Jason Baronb82bab4b2010-07-27 13:18:01 -07002166 /* Remove dynamic debug info */
2167 ddebug_remove_module(mod->name);
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 /* Arch-specific cleanup. */
2170 module_arch_cleanup(mod);
2171
2172 /* Module unload stuff */
2173 module_unload_free(mod);
2174
Rusty Russelle180a6b2009-03-31 13:05:29 -06002175 /* Free any allocated parameters. */
2176 destroy_params(mod->kp, mod->num_kp);
2177
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002178 if (is_livepatch_module(mod))
2179 free_module_elf(mod);
2180
Rusty Russell944a1fa2013-04-17 13:20:03 +09302181 /* Now we can delete it from the lists */
2182 mutex_lock(&module_mutex);
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10302183 /* Unlink carefully: kallsyms could be walking list. */
2184 list_del_rcu(&mod->list);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09302185 mod_tree_remove(mod);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10302186 /* Remove this module from bug list, this uses list_del_rcu */
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10302187 module_bug_cleanup(mod);
Peter Zijlstra0be964b2015-05-27 11:09:35 +09302188 /* Wait for RCU-sched synchronizing before releasing mod->list and buglist. */
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08002189 synchronize_rcu();
Rusty Russell944a1fa2013-04-17 13:20:03 +09302190 mutex_unlock(&module_mutex);
2191
Sami Tolvanencf68fff2021-04-08 11:28:26 -07002192 /* Clean up CFI for the module. */
2193 cfi_cleanup(mod);
2194
Rusty Russell85c898d2015-11-26 09:45:08 +10302195 /* This may be empty, but that's OK */
Rusty Russelld453cde2015-01-20 09:07:04 +10302196 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10302197 module_memfree(mod->init_layout.base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09002199 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06002200
Peter Zijlstra35a93932015-02-26 16:23:11 +01002201 /* Free lock-classes; relies on the preceding sync_rcu(). */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302202 lockdep_free_key_range(mod->core_layout.base, mod->core_layout.size);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 /* Finally, free the core (containing the module structure) */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302205 module_memfree(mod->core_layout.base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
2208void *__symbol_get(const char *symbol)
2209{
Christoph Hellwig0b966152021-01-20 14:58:27 +01002210 struct find_symbol_arg fsa = {
2211 .name = symbol,
2212 .gplok = true,
2213 .warn = true,
2214 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Rusty Russell24da1cb2007-07-15 23:41:46 -07002216 preempt_disable();
Christoph Hellwig0b966152021-01-20 14:58:27 +01002217 if (!find_symbol(&fsa) || strong_try_module_get(fsa.owner)) {
2218 preempt_enable();
2219 return NULL;
2220 }
Rusty Russell24da1cb2007-07-15 23:41:46 -07002221 preempt_enable();
Christoph Hellwig0b966152021-01-20 14:58:27 +01002222 return (void *)kernel_symbol_value(fsa.sym);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223}
2224EXPORT_SYMBOL_GPL(__symbol_get);
2225
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002226/*
2227 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02002228 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06002229 *
2230 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002231 */
Jessica Yu2d25bc52018-11-19 17:43:58 +01002232static int verify_exported_symbols(struct module *mod)
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002233{
Rusty Russellb2111042008-05-01 21:15:00 -05002234 unsigned int i;
Rusty Russellb2111042008-05-01 21:15:00 -05002235 const struct kernel_symbol *s;
2236 struct {
2237 const struct kernel_symbol *sym;
2238 unsigned int num;
2239 } arr[] = {
2240 { mod->syms, mod->num_syms },
2241 { mod->gpl_syms, mod->num_gpl_syms },
Rusty Russellb2111042008-05-01 21:15:00 -05002242 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002243
Rusty Russellb2111042008-05-01 21:15:00 -05002244 for (i = 0; i < ARRAY_SIZE(arr); i++) {
2245 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Christoph Hellwig0b966152021-01-20 14:58:27 +01002246 struct find_symbol_arg fsa = {
2247 .name = kernel_symbol_name(s),
2248 .gplok = true,
2249 };
2250 if (find_symbol(&fsa)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002251 pr_err("%s: exports duplicate symbol %s"
Rusty Russellb2111042008-05-01 21:15:00 -05002252 " (owned by %s)\n",
Ard Biesheuvel7290d582018-08-21 21:56:09 -07002253 mod->name, kernel_symbol_name(s),
Christoph Hellwig0b966152021-01-20 14:58:27 +01002254 module_name(fsa.owner));
Rusty Russellb2111042008-05-01 21:15:00 -05002255 return -ENOEXEC;
2256 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002257 }
Rusty Russellb2111042008-05-01 21:15:00 -05002258 }
2259 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002260}
2261
Fangrui Songebfac7b2021-01-15 11:52:22 -08002262static bool ignore_undef_symbol(Elf_Half emachine, const char *name)
2263{
2264 /*
2265 * On x86, PIC code and Clang non-PIC code may have call foo@PLT. GNU as
2266 * before 2.37 produces an unreferenced _GLOBAL_OFFSET_TABLE_ on x86-64.
2267 * i386 has a similar problem but may not deserve a fix.
2268 *
2269 * If we ever have to ignore many symbols, consider refactoring the code to
2270 * only warn if referenced by a relocation.
2271 */
2272 if (emachine == EM_386 || emachine == EM_X86_64)
2273 return !strcmp(name, "_GLOBAL_OFFSET_TABLE_");
2274 return false;
2275}
2276
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08002277/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06002278static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Rusty Russell49668682010-08-05 12:59:10 -06002280 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
2281 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06002283 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05002285 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Rusty Russell49668682010-08-05 12:59:10 -06002287 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
2288 const char *name = info->strtab + sym[i].st_name;
2289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 switch (sym[i].st_shndx) {
2291 case SHN_COMMON:
Joe Mario80375982014-02-08 09:01:09 +01002292 /* Ignore common symbols */
2293 if (!strncmp(name, "__gnu_lto", 9))
2294 break;
2295
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03002296 /*
2297 * We compiled with -fno-common. These are not
2298 * supposed to happen.
2299 */
Jim Cromie5e124162011-12-06 12:11:31 -07002300 pr_debug("Common symbol: %s\n", name);
Ionut Alexa6da0b562014-11-10 09:31:29 +10302301 pr_warn("%s: please compile with -fno-common\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 mod->name);
2303 ret = -ENOEXEC;
2304 break;
2305
2306 case SHN_ABS:
2307 /* Don't need to do anything */
Jim Cromie5e124162011-12-06 12:11:31 -07002308 pr_debug("Absolute symbol: 0x%08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 (long)sym[i].st_value);
2310 break;
2311
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002312 case SHN_LIVEPATCH:
2313 /* Livepatch symbols are resolved by livepatch */
2314 break;
2315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06002317 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06002319 if (ksym && !IS_ERR(ksym)) {
Ard Biesheuvel7290d582018-08-21 21:56:09 -07002320 sym[i].st_value = kernel_symbol_value(ksym);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 break;
Tim Abbott414fd312008-12-05 19:03:56 -05002322 }
2323
Fangrui Songebfac7b2021-01-15 11:52:22 -08002324 /* Ok if weak or ignored. */
2325 if (!ksym &&
2326 (ELF_ST_BIND(sym[i].st_info) == STB_WEAK ||
2327 ignore_undef_symbol(info->hdr->e_machine, name)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 break;
2329
Rusty Russell9bea7f22010-06-05 11:17:37 -06002330 ret = PTR_ERR(ksym) ?: -ENOENT;
Jason A. Donenfeld62267e02018-06-22 17:38:50 +02002331 pr_warn("%s: Unknown symbol %s (err %d)\n",
2332 mod->name, name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 break;
2334
2335 default:
2336 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06002337 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09002338 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 else
Rusty Russell49668682010-08-05 12:59:10 -06002340 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 sym[i].st_value += secbase;
2342 break;
2343 }
2344 }
2345
2346 return ret;
2347}
2348
Rusty Russell49668682010-08-05 12:59:10 -06002349static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06002350{
2351 unsigned int i;
2352 int err = 0;
2353
2354 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06002355 for (i = 1; i < info->hdr->e_shnum; i++) {
2356 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06002357
2358 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06002359 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06002360 continue;
2361
2362 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06002363 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06002364 continue;
2365
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002366 if (info->sechdrs[i].sh_flags & SHF_RELA_LIVEPATCH)
Josh Poimboeuf7c8e2bd2020-04-29 10:24:44 -05002367 err = klp_apply_section_relocs(mod, info->sechdrs,
2368 info->secstrings,
2369 info->strtab,
2370 info->index.sym, i,
2371 NULL);
2372 else if (info->sechdrs[i].sh_type == SHT_REL)
Rusty Russell49668682010-08-05 12:59:10 -06002373 err = apply_relocate(info->sechdrs, info->strtab,
2374 info->index.sym, i, mod);
2375 else if (info->sechdrs[i].sh_type == SHT_RELA)
2376 err = apply_relocate_add(info->sechdrs, info->strtab,
2377 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002378 if (err < 0)
2379 break;
2380 }
2381 return err;
2382}
2383
Helge Deller088af9a2008-12-31 12:31:18 +01002384/* Additional bytes needed by arch in front of individual sections */
2385unsigned int __weak arch_mod_section_prepend(struct module *mod,
2386 unsigned int section)
2387{
2388 /* default implementation just returns zero */
2389 return 0;
2390}
2391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01002393static long get_offset(struct module *mod, unsigned int *size,
2394 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
2396 long ret;
2397
Helge Deller088af9a2008-12-31 12:31:18 +01002398 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2400 *size = ret + sechdr->sh_size;
2401 return ret;
2402}
2403
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03002404/*
2405 * Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2406 * might -- code, read-only data, read-write data, small data. Tally
2407 * sizes, and place the offsets into sh_entsize fields: high bit means it
2408 * belongs in init.
2409 */
Rusty Russell49668682010-08-05 12:59:10 -06002410static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
2412 static unsigned long const masks[][2] = {
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03002413 /*
2414 * NOTE: all executable code must be the first section
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 * in this array; otherwise modify the text_size
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03002416 * finder in the two loops below
2417 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2419 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
Jessica Yu444d13f2016-07-27 12:06:21 +09302420 { SHF_RO_AFTER_INIT | SHF_ALLOC, ARCH_SHF_SMALL },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2422 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2423 };
2424 unsigned int m, i;
2425
Rusty Russell49668682010-08-05 12:59:10 -06002426 for (i = 0; i < info->hdr->e_shnum; i++)
2427 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Jim Cromie5e124162011-12-06 12:11:31 -07002429 pr_debug("Core section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002431 for (i = 0; i < info->hdr->e_shnum; ++i) {
2432 Elf_Shdr *s = &info->sechdrs[i];
2433 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2436 || (s->sh_flags & masks[m][1])
2437 || s->sh_entsize != ~0UL
Vincent Whitchurch23189762020-05-14 11:36:41 +01002438 || module_init_section(sname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 continue;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302440 s->sh_entsize = get_offset(mod, &mod->core_layout.size, s, i);
Jim Cromie5e124162011-12-06 12:11:31 -07002441 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002443 switch (m) {
2444 case 0: /* executable */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302445 mod->core_layout.size = debug_align(mod->core_layout.size);
2446 mod->core_layout.text_size = mod->core_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002447 break;
2448 case 1: /* RO: text and ro-data */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302449 mod->core_layout.size = debug_align(mod->core_layout.size);
2450 mod->core_layout.ro_size = mod->core_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002451 break;
Jessica Yu444d13f2016-07-27 12:06:21 +09302452 case 2: /* RO after init */
2453 mod->core_layout.size = debug_align(mod->core_layout.size);
2454 mod->core_layout.ro_after_init_size = mod->core_layout.size;
2455 break;
2456 case 4: /* whole core */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302457 mod->core_layout.size = debug_align(mod->core_layout.size);
matthieu castet84e1c6b2010-11-16 22:35:16 +01002458 break;
2459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 }
2461
Jim Cromie5e124162011-12-06 12:11:31 -07002462 pr_debug("Init section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002464 for (i = 0; i < info->hdr->e_shnum; ++i) {
2465 Elf_Shdr *s = &info->sechdrs[i];
2466 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2469 || (s->sh_flags & masks[m][1])
2470 || s->sh_entsize != ~0UL
Vincent Whitchurch23189762020-05-14 11:36:41 +01002471 || !module_init_section(sname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 continue;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302473 s->sh_entsize = (get_offset(mod, &mod->init_layout.size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 | INIT_OFFSET_MASK);
Jim Cromie5e124162011-12-06 12:11:31 -07002475 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002477 switch (m) {
2478 case 0: /* executable */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302479 mod->init_layout.size = debug_align(mod->init_layout.size);
2480 mod->init_layout.text_size = mod->init_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002481 break;
2482 case 1: /* RO: text and ro-data */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302483 mod->init_layout.size = debug_align(mod->init_layout.size);
2484 mod->init_layout.ro_size = mod->init_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002485 break;
Jessica Yu444d13f2016-07-27 12:06:21 +09302486 case 2:
2487 /*
2488 * RO after init doesn't apply to init_layout (only
2489 * core_layout), so it just takes the value of ro_size.
2490 */
2491 mod->init_layout.ro_after_init_size = mod->init_layout.ro_size;
2492 break;
2493 case 4: /* whole init */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302494 mod->init_layout.size = debug_align(mod->init_layout.size);
matthieu castet84e1c6b2010-11-16 22:35:16 +01002495 break;
2496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 }
2498}
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500static void set_license(struct module *mod, const char *license)
2501{
2502 if (!license)
2503 license = "unspecified";
2504
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002505 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07002506 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002507 pr_warn("%s: module license '%s' taints kernel.\n",
2508 mod->name, license);
Rusty Russell373d4d02013-01-21 17:17:39 +10302509 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2510 LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 }
2512}
2513
2514/* Parse tag=value strings from .modinfo section */
2515static char *next_string(char *string, unsigned long *secsize)
2516{
2517 /* Skip non-zero chars */
2518 while (string[0]) {
2519 string++;
2520 if ((*secsize)-- <= 1)
2521 return NULL;
2522 }
2523
2524 /* Skip any zero padding. */
2525 while (!string[0]) {
2526 string++;
2527 if ((*secsize)-- <= 1)
2528 return NULL;
2529 }
2530 return string;
2531}
2532
Matthias Maennichc5e4a062019-09-06 11:32:25 +01002533static char *get_next_modinfo(const struct load_info *info, const char *tag,
2534 char *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535{
2536 char *p;
2537 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06002538 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2539 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002541 /*
2542 * get_modinfo() calls made before rewrite_section_headers()
2543 * must use sh_offset, as sh_addr isn't set!
2544 */
Matthias Maennichc5e4a062019-09-06 11:32:25 +01002545 char *modinfo = (char *)info->hdr + infosec->sh_offset;
2546
2547 if (prev) {
2548 size -= prev - modinfo;
2549 modinfo = next_string(prev, &size);
2550 }
2551
2552 for (p = modinfo; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2554 return p + taglen + 1;
2555 }
2556 return NULL;
2557}
2558
Matthias Maennichc5e4a062019-09-06 11:32:25 +01002559static char *get_modinfo(const struct load_info *info, const char *tag)
2560{
2561 return get_next_modinfo(info, tag, NULL);
2562}
2563
Rusty Russell49668682010-08-05 12:59:10 -06002564static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07002565{
2566 struct module_attribute *attr;
2567 int i;
2568
2569 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2570 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06002571 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07002572 }
2573}
Matt Domschc988d2b2005-06-23 22:05:15 -07002574
Rusty Russella263f7762009-09-25 00:32:58 -06002575static void free_modinfo(struct module *mod)
2576{
2577 struct module_attribute *attr;
2578 int i;
2579
2580 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2581 if (attr->free)
2582 attr->free(mod);
2583 }
2584}
2585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01002587
Jessica Yu2d25bc52018-11-19 17:43:58 +01002588/* Lookup exported symbol in given range of kernel_symbols */
2589static const struct kernel_symbol *lookup_exported_symbol(const char *name,
2590 const struct kernel_symbol *start,
2591 const struct kernel_symbol *stop)
WANG Cong15bba372008-07-24 15:41:48 +01002592{
Alessio Igor Bogani9d634872011-05-18 22:35:59 +02002593 return bsearch(name, start, stop - start,
2594 sizeof(struct kernel_symbol), cmp_name);
WANG Cong15bba372008-07-24 15:41:48 +01002595}
2596
Tim Abbottca4787b2009-01-05 08:40:10 -06002597static int is_exported(const char *name, unsigned long value,
2598 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
Tim Abbottca4787b2009-01-05 08:40:10 -06002600 const struct kernel_symbol *ks;
2601 if (!mod)
Jessica Yu2d25bc52018-11-19 17:43:58 +01002602 ks = lookup_exported_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01002603 else
Jessica Yu2d25bc52018-11-19 17:43:58 +01002604 ks = lookup_exported_symbol(name, mod->syms, mod->syms + mod->num_syms);
2605
Ard Biesheuvel7290d582018-08-21 21:56:09 -07002606 return ks != NULL && kernel_symbol_value(ks) == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
2609/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06002610static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
Rusty Russelleded41c2010-08-05 12:59:07 -06002612 const Elf_Shdr *sechdrs = info->sechdrs;
2613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2615 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2616 return 'v';
2617 else
2618 return 'w';
2619 }
2620 if (sym->st_shndx == SHN_UNDEF)
2621 return 'U';
Miroslav Benese0224412015-11-26 13:18:06 +10302622 if (sym->st_shndx == SHN_ABS || sym->st_shndx == info->index.pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 return 'a';
2624 if (sym->st_shndx >= SHN_LORESERVE)
2625 return '?';
2626 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2627 return 't';
2628 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2629 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2630 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2631 return 'r';
2632 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2633 return 'g';
2634 else
2635 return 'd';
2636 }
2637 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2638 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2639 return 's';
2640 else
2641 return 'b';
2642 }
Rusty Russelleded41c2010-08-05 12:59:07 -06002643 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2644 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06002646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 return '?';
2648}
2649
Jan Beulich4a496222009-07-06 14:50:42 +01002650static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
Miroslav Benese0224412015-11-26 13:18:06 +10302651 unsigned int shnum, unsigned int pcpundx)
Jan Beulich4a496222009-07-06 14:50:42 +01002652{
2653 const Elf_Shdr *sec;
2654
2655 if (src->st_shndx == SHN_UNDEF
2656 || src->st_shndx >= shnum
2657 || !src->st_name)
2658 return false;
2659
Miroslav Benese0224412015-11-26 13:18:06 +10302660#ifdef CONFIG_KALLSYMS_ALL
2661 if (src->st_shndx == pcpundx)
2662 return true;
2663#endif
2664
Jan Beulich4a496222009-07-06 14:50:42 +01002665 sec = sechdrs + src->st_shndx;
2666 if (!(sec->sh_flags & SHF_ALLOC)
2667#ifndef CONFIG_KALLSYMS_ALL
2668 || !(sec->sh_flags & SHF_EXECINSTR)
2669#endif
2670 || (sec->sh_entsize & INIT_OFFSET_MASK))
2671 return false;
2672
2673 return true;
2674}
2675
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302676/*
2677 * We only allocate and copy the strings needed by the parts of symtab
2678 * we keep. This is simple, but has the effect of making multiple
2679 * copies of duplicates. We could be more sophisticated, see
2680 * linux-kernel thread starting with
2681 * <73defb5e4bca04a6431392cc341112b1@localhost>.
2682 */
Rusty Russell49668682010-08-05 12:59:10 -06002683static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002684{
Rusty Russell49668682010-08-05 12:59:10 -06002685 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2686 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01002687 const Elf_Sym *src;
Satoru Takeuchi54523ec2012-12-05 12:29:04 +10302688 unsigned int i, nsrc, ndst, strtab_size = 0;
Jan Beulich4a496222009-07-06 14:50:42 +01002689
2690 /* Put symbol section at end of init part of module. */
2691 symsect->sh_flags |= SHF_ALLOC;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302692 symsect->sh_entsize = get_offset(mod, &mod->init_layout.size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06002693 info->index.sym) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002694 pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002695
Rusty Russell49668682010-08-05 12:59:10 -06002696 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002697 nsrc = symsect->sh_size / sizeof(*src);
Kevin Cernekee70b1e9162011-11-12 19:08:55 -08002698
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302699 /* Compute total space required for the core symbols' strtab. */
Rusty Russell59ef28b2012-10-25 10:49:25 +10302700 for (ndst = i = 0; i < nsrc; i++) {
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002701 if (i == 0 || is_livepatch_module(mod) ||
Miroslav Benese0224412015-11-26 13:18:06 +10302702 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum,
2703 info->index.pcpu)) {
Rusty Russell59ef28b2012-10-25 10:49:25 +10302704 strtab_size += strlen(&info->strtab[src[i].st_name])+1;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302705 ndst++;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002706 }
Rusty Russell59ef28b2012-10-25 10:49:25 +10302707 }
Jan Beulich4a496222009-07-06 14:50:42 +01002708
2709 /* Append room for core symbols at end of core part. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302710 info->symoffs = ALIGN(mod->core_layout.size, symsect->sh_addralign ?: 1);
2711 info->stroffs = mod->core_layout.size = info->symoffs + ndst * sizeof(Elf_Sym);
2712 mod->core_layout.size += strtab_size;
Eugene Loh1c7651f2019-02-25 11:59:58 -08002713 info->core_typeoffs = mod->core_layout.size;
2714 mod->core_layout.size += ndst * sizeof(char);
Rusty Russell7523e4d2015-11-26 09:44:08 +10302715 mod->core_layout.size = debug_align(mod->core_layout.size);
Jan Beulich4a496222009-07-06 14:50:42 +01002716
Jan Beulich554bdfe2009-07-06 14:51:44 +01002717 /* Put string table section at end of init part of module. */
2718 strsect->sh_flags |= SHF_ALLOC;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302719 strsect->sh_entsize = get_offset(mod, &mod->init_layout.size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06002720 info->index.str) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002721 pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
Rusty Russell82440622016-02-03 16:55:26 +10302722
2723 /* We'll tack temporary mod_kallsyms on the end. */
2724 mod->init_layout.size = ALIGN(mod->init_layout.size,
2725 __alignof__(struct mod_kallsyms));
2726 info->mod_kallsyms_init_off = mod->init_layout.size;
2727 mod->init_layout.size += sizeof(struct mod_kallsyms);
Eugene Loh1c7651f2019-02-25 11:59:58 -08002728 info->init_typeoffs = mod->init_layout.size;
2729 mod->init_layout.size += nsrc * sizeof(char);
Rusty Russell82440622016-02-03 16:55:26 +10302730 mod->init_layout.size = debug_align(mod->init_layout.size);
Jan Beulich4a496222009-07-06 14:50:42 +01002731}
2732
Rusty Russell82440622016-02-03 16:55:26 +10302733/*
2734 * We use the full symtab and strtab which layout_symtab arranged to
2735 * be appended to the init section. Later we switch to the cut-down
2736 * core-only ones.
2737 */
Rusty Russell811d66a2010-08-05 12:59:12 -06002738static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739{
Jan Beulich4a496222009-07-06 14:50:42 +01002740 unsigned int i, ndst;
2741 const Elf_Sym *src;
2742 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002743 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002744 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Rusty Russell82440622016-02-03 16:55:26 +10302746 /* Set up to point into init section. */
2747 mod->kallsyms = mod->init_layout.base + info->mod_kallsyms_init_off;
2748
2749 mod->kallsyms->symtab = (void *)symsec->sh_addr;
2750 mod->kallsyms->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002751 /* Make sure we get permanent strtab: don't use info->strtab. */
Rusty Russell82440622016-02-03 16:55:26 +10302752 mod->kallsyms->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Eugene Loh1c7651f2019-02-25 11:59:58 -08002753 mod->kallsyms->typetab = mod->init_layout.base + info->init_typeoffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Eugene Loh1c7651f2019-02-25 11:59:58 -08002755 /*
2756 * Now populate the cut down core kallsyms for after init
2757 * and set types up while we still have access to sections.
2758 */
Rusty Russell82440622016-02-03 16:55:26 +10302759 mod->core_kallsyms.symtab = dst = mod->core_layout.base + info->symoffs;
2760 mod->core_kallsyms.strtab = s = mod->core_layout.base + info->stroffs;
Eugene Loh1c7651f2019-02-25 11:59:58 -08002761 mod->core_kallsyms.typetab = mod->core_layout.base + info->core_typeoffs;
Rusty Russell82440622016-02-03 16:55:26 +10302762 src = mod->kallsyms->symtab;
2763 for (ndst = i = 0; i < mod->kallsyms->num_symtab; i++) {
Eugene Loh1c7651f2019-02-25 11:59:58 -08002764 mod->kallsyms->typetab[i] = elf_type(src + i, info);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002765 if (i == 0 || is_livepatch_module(mod) ||
Miroslav Benese0224412015-11-26 13:18:06 +10302766 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum,
2767 info->index.pcpu)) {
Eugene Loh1c7651f2019-02-25 11:59:58 -08002768 mod->core_kallsyms.typetab[ndst] =
2769 mod->kallsyms->typetab[i];
Rusty Russell59ef28b2012-10-25 10:49:25 +10302770 dst[ndst] = src[i];
Rusty Russell82440622016-02-03 16:55:26 +10302771 dst[ndst++].st_name = s - mod->core_kallsyms.strtab;
2772 s += strlcpy(s, &mod->kallsyms->strtab[src[i].st_name],
Rusty Russell59ef28b2012-10-25 10:49:25 +10302773 KSYM_NAME_LEN) + 1;
2774 }
Jan Beulich4a496222009-07-06 14:50:42 +01002775 }
Rusty Russell82440622016-02-03 16:55:26 +10302776 mod->core_kallsyms.num_symtab = ndst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777}
2778#else
Rusty Russell49668682010-08-05 12:59:10 -06002779static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002780{
2781}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002782
Michał Mirosławabbce902010-09-20 01:58:08 +02002783static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784{
2785}
2786#endif /* CONFIG_KALLSYMS */
2787
Zhou Chengming52796312017-07-07 11:15:58 +08002788static void dynamic_debug_setup(struct module *mod, struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002789{
Rusty Russell811d66a2010-08-05 12:59:12 -06002790 if (!debug)
2791 return;
Rasmus Villemoes513770f2019-03-07 16:27:48 -08002792 ddebug_add_module(debug, num, mod->name);
Rusty Russell5e458cc2008-10-22 10:00:13 -05002793}
Jason Baron346e15b2008-08-12 16:46:19 -04002794
Zhou Chengming52796312017-07-07 11:15:58 +08002795static void dynamic_debug_remove(struct module *mod, struct _ddebug *debug)
Yehuda Sadehff49d742010-07-03 13:07:35 +10002796{
2797 if (debug)
Zhou Chengming52796312017-07-07 11:15:58 +08002798 ddebug_remove_module(mod->name);
Yehuda Sadehff49d742010-07-03 13:07:35 +10002799}
2800
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002801void * __weak module_alloc(unsigned long size)
2802{
Christoph Hellwig7a0e27b2020-06-25 20:30:47 -07002803 return __vmalloc_node_range(size, 1, VMALLOC_START, VMALLOC_END,
2804 GFP_KERNEL, PAGE_KERNEL_EXEC, VM_FLUSH_RESET_PERMS,
Christoph Hellwiga3a66c32020-07-03 15:15:27 -07002805 NUMA_NO_NODE, __builtin_return_address(0));
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002806}
2807
Vincent Whitchurch23189762020-05-14 11:36:41 +01002808bool __weak module_init_section(const char *name)
2809{
2810 return strstarts(name, ".init");
2811}
2812
Matthias Schiffer38b37d62019-06-07 12:49:11 +02002813bool __weak module_exit_section(const char *name)
2814{
2815 return strstarts(name, ".exit");
2816}
2817
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002818#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002819static void kmemleak_load_module(const struct module *mod,
2820 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002821{
2822 unsigned int i;
2823
2824 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002825 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002826
Rusty Russell49668682010-08-05 12:59:10 -06002827 for (i = 1; i < info->hdr->e_shnum; i++) {
Steven Rostedt06c94942013-05-15 20:33:01 +01002828 /* Scan all writable sections that's not executable */
2829 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
2830 !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
2831 (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002832 continue;
2833
Rusty Russell49668682010-08-05 12:59:10 -06002834 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2835 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002836 }
2837}
2838#else
Rusty Russell49668682010-08-05 12:59:10 -06002839static inline void kmemleak_load_module(const struct module *mod,
2840 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002841{
2842}
2843#endif
2844
Rusty Russell106a4ee2012-09-26 10:09:40 +01002845#ifdef CONFIG_MODULE_SIG
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302846static int module_sig_check(struct load_info *info, int flags)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002847{
David Howells49fcf732019-08-19 17:17:40 -07002848 int err = -ENODATA;
Kees Cook34e11692012-10-16 07:31:07 +10302849 const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
David Howells49fcf732019-08-19 17:17:40 -07002850 const char *reason;
Kees Cook34e11692012-10-16 07:31:07 +10302851 const void *mod = info->hdr;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002852
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302853 /*
2854 * Require flags == 0, as a module with version information
2855 * removed is no longer the module that was signed
2856 */
2857 if (flags == 0 &&
2858 info->len > markerlen &&
Kees Cook34e11692012-10-16 07:31:07 +10302859 memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
David Howellscaabe242012-10-20 01:19:29 +01002860 /* We truncate the module to discard the signature */
Kees Cook34e11692012-10-16 07:31:07 +10302861 info->len -= markerlen;
Jessica Yuf314dfe2018-06-29 16:37:08 +02002862 err = mod_verify_sig(mod, info);
Sergey Shtylyov076aa522020-10-31 23:10:28 +03002863 if (!err) {
2864 info->sig_ok = true;
2865 return 0;
2866 }
Rusty Russell106a4ee2012-09-26 10:09:40 +01002867 }
2868
Sergey Shtylyov076aa522020-10-31 23:10:28 +03002869 /*
2870 * We don't permit modules to be loaded into the trusted kernels
2871 * without a valid signature on them, but if we're not enforcing,
2872 * certain errors are non-fatal.
2873 */
David Howells49fcf732019-08-19 17:17:40 -07002874 switch (err) {
David Howells49fcf732019-08-19 17:17:40 -07002875 case -ENODATA:
Sergey Shtylyov705e9192020-10-31 23:06:45 +03002876 reason = "unsigned module";
Sergey Shtylyov10ccd1a2020-10-31 23:09:31 +03002877 break;
David Howells49fcf732019-08-19 17:17:40 -07002878 case -ENOPKG:
Sergey Shtylyov705e9192020-10-31 23:06:45 +03002879 reason = "module with unsupported crypto";
Sergey Shtylyov10ccd1a2020-10-31 23:09:31 +03002880 break;
David Howells49fcf732019-08-19 17:17:40 -07002881 case -ENOKEY:
Sergey Shtylyov705e9192020-10-31 23:06:45 +03002882 reason = "module with unavailable key";
Sergey Shtylyov10ccd1a2020-10-31 23:09:31 +03002883 break;
David Howells49fcf732019-08-19 17:17:40 -07002884
David Howells49fcf732019-08-19 17:17:40 -07002885 default:
Sergey Shtylyov076aa522020-10-31 23:10:28 +03002886 /*
2887 * All other errors are fatal, including lack of memory,
2888 * unparseable signatures, and signature check failures --
2889 * even if signatures aren't required.
2890 */
David Howells49fcf732019-08-19 17:17:40 -07002891 return err;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002892 }
Sergey Shtylyov10ccd1a2020-10-31 23:09:31 +03002893
2894 if (is_module_sig_enforced()) {
Frank van der Lindenec2a2952021-01-14 22:21:46 +00002895 pr_notice("Loading of %s is rejected\n", reason);
Sergey Shtylyov10ccd1a2020-10-31 23:09:31 +03002896 return -EKEYREJECTED;
2897 }
2898
2899 return security_locked_down(LOCKDOWN_MODULE_SIGNATURE);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002900}
2901#else /* !CONFIG_MODULE_SIG */
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302902static int module_sig_check(struct load_info *info, int flags)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002903{
2904 return 0;
2905}
2906#endif /* !CONFIG_MODULE_SIG */
2907
Frank van der Lindenec2a2952021-01-14 22:21:46 +00002908static int validate_section_offset(struct load_info *info, Elf_Shdr *shdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06002909{
Frank van der Lindenec2a2952021-01-14 22:21:46 +00002910 unsigned long secend;
2911
2912 /*
2913 * Check for both overflow and offset/size being
2914 * too large.
2915 */
2916 secend = shdr->sh_offset + shdr->sh_size;
2917 if (secend < shdr->sh_offset || secend > info->len)
2918 return -ENOEXEC;
2919
2920 return 0;
2921}
2922
2923/*
2924 * Sanity checks against invalid binaries, wrong arch, weird elf version.
2925 *
2926 * Also do basic validity checks against section offsets and sizes, the
2927 * section name string table, and the indices used for it (sh_name).
2928 */
2929static int elf_validity_check(struct load_info *info)
2930{
2931 unsigned int i;
2932 Elf_Shdr *shdr, *strhdr;
2933 int err;
2934
Kees Cook34e11692012-10-16 07:31:07 +10302935 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002936 return -ENOEXEC;
2937
Kees Cook34e11692012-10-16 07:31:07 +10302938 if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2939 || info->hdr->e_type != ET_REL
2940 || !elf_check_arch(info->hdr)
2941 || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2942 return -ENOEXEC;
2943
Frank van der Lindenec2a2952021-01-14 22:21:46 +00002944 /*
2945 * e_shnum is 16 bits, and sizeof(Elf_Shdr) is
2946 * known and small. So e_shnum * sizeof(Elf_Shdr)
2947 * will not overflow unsigned long on any platform.
2948 */
Kees Cook34e11692012-10-16 07:31:07 +10302949 if (info->hdr->e_shoff >= info->len
2950 || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2951 info->len - info->hdr->e_shoff))
2952 return -ENOEXEC;
2953
Frank van der Lindenec2a2952021-01-14 22:21:46 +00002954 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
2955
2956 /*
2957 * Verify if the section name table index is valid.
2958 */
2959 if (info->hdr->e_shstrndx == SHN_UNDEF
2960 || info->hdr->e_shstrndx >= info->hdr->e_shnum)
2961 return -ENOEXEC;
2962
2963 strhdr = &info->sechdrs[info->hdr->e_shstrndx];
2964 err = validate_section_offset(info, strhdr);
2965 if (err < 0)
2966 return err;
2967
2968 /*
2969 * The section name table must be NUL-terminated, as required
2970 * by the spec. This makes strcmp and pr_* calls that access
2971 * strings in the section safe.
2972 */
2973 info->secstrings = (void *)info->hdr + strhdr->sh_offset;
2974 if (info->secstrings[strhdr->sh_size - 1] != '\0')
2975 return -ENOEXEC;
2976
2977 /*
2978 * The code assumes that section 0 has a length of zero and
2979 * an addr of zero, so check for it.
2980 */
2981 if (info->sechdrs[0].sh_type != SHT_NULL
2982 || info->sechdrs[0].sh_size != 0
2983 || info->sechdrs[0].sh_addr != 0)
2984 return -ENOEXEC;
2985
2986 for (i = 1; i < info->hdr->e_shnum; i++) {
2987 shdr = &info->sechdrs[i];
2988 switch (shdr->sh_type) {
2989 case SHT_NULL:
2990 case SHT_NOBITS:
2991 continue;
2992 case SHT_SYMTAB:
2993 if (shdr->sh_link == SHN_UNDEF
2994 || shdr->sh_link >= info->hdr->e_shnum)
2995 return -ENOEXEC;
2996 fallthrough;
2997 default:
2998 err = validate_section_offset(info, shdr);
2999 if (err < 0) {
3000 pr_err("Invalid ELF section in module (section %u type %u)\n",
3001 i, shdr->sh_type);
3002 return err;
3003 }
3004
3005 if (shdr->sh_flags & SHF_ALLOC) {
3006 if (shdr->sh_name >= strhdr->sh_size) {
3007 pr_err("Invalid ELF section name in module (section %u type %u)\n",
3008 i, shdr->sh_type);
3009 return -ENOEXEC;
3010 }
3011 }
3012 break;
3013 }
3014 }
3015
Kees Cook34e11692012-10-16 07:31:07 +10303016 return 0;
3017}
3018
Linus Torvalds3afe9f82015-04-07 10:33:49 -07003019#define COPY_CHUNK_SIZE (16*PAGE_SIZE)
3020
3021static int copy_chunked_from_user(void *dst, const void __user *usrc, unsigned long len)
3022{
3023 do {
3024 unsigned long n = min(len, COPY_CHUNK_SIZE);
3025
3026 if (copy_from_user(dst, usrc, n) != 0)
3027 return -EFAULT;
3028 cond_resched();
3029 dst += n;
3030 usrc += n;
3031 len -= n;
3032 } while (len);
3033 return 0;
3034}
3035
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003036#ifdef CONFIG_LIVEPATCH
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05003037static int check_modinfo_livepatch(struct module *mod, struct load_info *info)
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003038{
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05003039 if (get_modinfo(info, "livepatch")) {
3040 mod->klp = true;
3041 add_taint_module(mod, TAINT_LIVEPATCH, LOCKDEP_STILL_OK);
Joe Lawrence7598d162017-01-12 11:57:44 -05003042 pr_notice_once("%s: tainting kernel with TAINT_LIVEPATCH\n",
3043 mod->name);
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05003044 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003045
3046 return 0;
3047}
3048#else /* !CONFIG_LIVEPATCH */
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05003049static int check_modinfo_livepatch(struct module *mod, struct load_info *info)
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003050{
3051 if (get_modinfo(info, "livepatch")) {
3052 pr_err("%s: module is marked as livepatch module, but livepatch support is disabled",
3053 mod->name);
3054 return -ENOEXEC;
3055 }
3056
3057 return 0;
3058}
3059#endif /* CONFIG_LIVEPATCH */
3060
Andi Kleencaf75012018-01-25 15:50:28 -08003061static void check_modinfo_retpoline(struct module *mod, struct load_info *info)
3062{
3063 if (retpoline_module_ok(get_modinfo(info, "retpoline")))
3064 return;
3065
3066 pr_warn("%s: loading module not compiled with retpoline compiler.\n",
3067 mod->name);
3068}
3069
Kees Cook34e11692012-10-16 07:31:07 +10303070/* Sets info->hdr and info->len. */
3071static int copy_module_from_user(const void __user *umod, unsigned long len,
3072 struct load_info *info)
3073{
Kees Cook2e72d512012-10-16 07:32:07 +10303074 int err;
3075
Kees Cook34e11692012-10-16 07:31:07 +10303076 info->len = len;
3077 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06003078 return -ENOEXEC;
3079
Kees Cook38f90172020-10-02 10:38:22 -07003080 err = security_kernel_load_data(LOADING_MODULE, true);
Kees Cook2e72d512012-10-16 07:32:07 +10303081 if (err)
3082 return err;
3083
Rusty Russell40dd2562010-08-05 12:59:03 -06003084 /* Suck in entire file: we'll want most of it. */
Christoph Hellwig88dca4c2020-06-01 21:51:40 -07003085 info->hdr = __vmalloc(info->len, GFP_KERNEL | __GFP_NOWARN);
Kees Cook34e11692012-10-16 07:31:07 +10303086 if (!info->hdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06003087 return -ENOMEM;
3088
Linus Torvalds3afe9f82015-04-07 10:33:49 -07003089 if (copy_chunked_from_user(info->hdr, umod, info->len) != 0) {
Kees Cook38f90172020-10-02 10:38:22 -07003090 err = -EFAULT;
3091 goto out;
Rusty Russell40dd2562010-08-05 12:59:03 -06003092 }
3093
Kees Cook38f90172020-10-02 10:38:22 -07003094 err = security_kernel_post_load_data((char *)info->hdr, info->len,
3095 LOADING_MODULE, "init_module");
3096out:
3097 if (err)
3098 vfree(info->hdr);
3099
3100 return err;
Kees Cook34e11692012-10-16 07:31:07 +10303101}
Rusty Russell40dd2562010-08-05 12:59:03 -06003102
Rusty Russelld9131882010-08-05 12:59:08 -06003103static void free_copy(struct load_info *info)
3104{
Rusty Russelld9131882010-08-05 12:59:08 -06003105 vfree(info->hdr);
3106}
3107
Rusty Russell2f3238a2012-10-22 18:09:41 +10303108static int rewrite_section_headers(struct load_info *info, int flags)
Rusty Russell8b5f61a2010-08-05 12:59:06 -06003109{
3110 unsigned int i;
3111
3112 /* This should always be true, but let's be sure. */
3113 info->sechdrs[0].sh_addr = 0;
3114
3115 for (i = 1; i < info->hdr->e_shnum; i++) {
3116 Elf_Shdr *shdr = &info->sechdrs[i];
Rusty Russell8b5f61a2010-08-05 12:59:06 -06003117
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03003118 /*
3119 * Mark all sections sh_addr with their address in the
3120 * temporary image.
3121 */
Rusty Russell8b5f61a2010-08-05 12:59:06 -06003122 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
3123
3124#ifndef CONFIG_MODULE_UNLOAD
3125 /* Don't load .exit sections */
Matthias Schiffer38b37d62019-06-07 12:49:11 +02003126 if (module_exit_section(info->secstrings+shdr->sh_name))
Rusty Russell8b5f61a2010-08-05 12:59:06 -06003127 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
3128#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06003129 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06003130
3131 /* Track but don't keep modinfo and version sections. */
Rusty Russelld6df72a2010-08-05 12:59:07 -06003132 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Kees Cook3e2e8572017-04-21 15:35:27 -07003133 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
3134
Rusty Russell8b5f61a2010-08-05 12:59:06 -06003135 return 0;
3136}
3137
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003138/*
3139 * Set up our basic convenience variables (pointers to section headers,
3140 * search for module section index etc), and do some basic section
3141 * verification.
3142 *
Jessica Yu81a0abd2018-06-22 13:59:29 +02003143 * Set info->mod to the temporary copy of the module in info->hdr. The final one
3144 * will be allocated in move_module().
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003145 */
Jessica Yu81a0abd2018-06-22 13:59:29 +02003146static int setup_load_info(struct load_info *info, int flags)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003147{
3148 unsigned int i;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003149
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003150 /* Try to find a name early so we can log errors with a module name */
3151 info->index.info = find_sec(info, ".modinfo");
Jessica Yu708e0ad2020-01-17 13:32:21 +01003152 if (info->index.info)
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003153 info->name = get_modinfo(info, "name");
Rusty Russell8b5f61a2010-08-05 12:59:06 -06003154
3155 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003156 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003157 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
3158 info->index.sym = i;
3159 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06003160 info->strtab = (char *)info->hdr
3161 + info->sechdrs[info->index.str].sh_offset;
3162 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003163 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003164 }
3165
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003166 if (info->index.sym == 0) {
Jessica Yu708e0ad2020-01-17 13:32:21 +01003167 pr_warn("%s: module has no symbols (stripped?)\n",
3168 info->name ?: "(missing .modinfo section or name field)");
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003169 return -ENOEXEC;
3170 }
3171
Rusty Russell49668682010-08-05 12:59:10 -06003172 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003173 if (!info->index.mod) {
Kees Cook3e2e8572017-04-21 15:35:27 -07003174 pr_warn("%s: No module found in object\n",
Jessica Yu708e0ad2020-01-17 13:32:21 +01003175 info->name ?: "(missing .modinfo section or name field)");
Jessica Yu81a0abd2018-06-22 13:59:29 +02003176 return -ENOEXEC;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003177 }
3178 /* This is temporary: point mod into copy of data. */
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003179 info->mod = (void *)info->hdr + info->sechdrs[info->index.mod].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003180
Kees Cook3e2e8572017-04-21 15:35:27 -07003181 /*
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003182 * If we didn't load the .modinfo 'name' field earlier, fall back to
Kees Cook3e2e8572017-04-21 15:35:27 -07003183 * on-disk struct mod 'name' field.
3184 */
3185 if (!info->name)
Jessica Yu81a0abd2018-06-22 13:59:29 +02003186 info->name = info->mod->name;
Kees Cook3e2e8572017-04-21 15:35:27 -07003187
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003188 if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
3189 info->index.vers = 0; /* Pretend no __versions section! */
3190 else
3191 info->index.vers = find_sec(info, "__versions");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003192
Rusty Russell49668682010-08-05 12:59:10 -06003193 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003194
Jessica Yu81a0abd2018-06-22 13:59:29 +02003195 return 0;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07003196}
3197
Rusty Russell2f3238a2012-10-22 18:09:41 +10303198static int check_modinfo(struct module *mod, struct load_info *info, int flags)
Rusty Russell40dd2562010-08-05 12:59:03 -06003199{
Rusty Russell49668682010-08-05 12:59:10 -06003200 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06003201 int err;
3202
Rusty Russell2f3238a2012-10-22 18:09:41 +10303203 if (flags & MODULE_INIT_IGNORE_VERMAGIC)
3204 modmagic = NULL;
3205
Rusty Russell40dd2562010-08-05 12:59:03 -06003206 /* This is allowed: modprobe --force will invalidate it. */
3207 if (!modmagic) {
3208 err = try_to_force_load(mod, "bad vermagic");
3209 if (err)
3210 return err;
Rusty Russell49668682010-08-05 12:59:10 -06003211 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003212 pr_err("%s: version magic '%s' should be '%s'\n",
Kees Cook3e2e8572017-04-21 15:35:27 -07003213 info->name, modmagic, vermagic);
Rusty Russell40dd2562010-08-05 12:59:03 -06003214 return -ENOEXEC;
3215 }
3216
Libor Pechacek3205c362016-04-13 11:06:12 +09303217 if (!get_modinfo(info, "intree")) {
3218 if (!test_taint(TAINT_OOT_MODULE))
3219 pr_warn("%s: loading out-of-tree module taints kernel.\n",
3220 mod->name);
Rusty Russell373d4d02013-01-21 17:17:39 +10303221 add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
Libor Pechacek3205c362016-04-13 11:06:12 +09303222 }
Ben Hutchings2449b8b2011-10-24 15:12:28 +02003223
Andi Kleencaf75012018-01-25 15:50:28 -08003224 check_modinfo_retpoline(mod, info);
3225
Rusty Russell49668682010-08-05 12:59:10 -06003226 if (get_modinfo(info, "staging")) {
Rusty Russell373d4d02013-01-21 17:17:39 +10303227 add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003228 pr_warn("%s: module is from the staging directory, the quality "
3229 "is unknown, you have been warned.\n", mod->name);
Rusty Russell40dd2562010-08-05 12:59:03 -06003230 }
Rusty Russell22e268e2010-08-05 12:59:05 -06003231
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05003232 err = check_modinfo_livepatch(mod, info);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003233 if (err)
3234 return err;
3235
Rusty Russell22e268e2010-08-05 12:59:05 -06003236 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06003237 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06003238
Rusty Russell40dd2562010-08-05 12:59:03 -06003239 return 0;
3240}
3241
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303242static int find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003243{
Rusty Russell49668682010-08-05 12:59:10 -06003244 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003245 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06003246 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003247 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003248 mod->crcs = section_addr(info, "__kcrctab");
3249 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003250 sizeof(*mod->gpl_syms),
3251 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003252 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003253
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003254#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06003255 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003256 sizeof(*mod->ctors), &mod->num_ctors);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303257 if (!mod->ctors)
3258 mod->ctors = section_objs(info, ".init_array",
3259 sizeof(*mod->ctors), &mod->num_ctors);
3260 else if (find_sec(info, ".init_array")) {
3261 /*
3262 * This shouldn't happen with same compiler and binutils
3263 * building all parts of the module.
3264 */
Ionut Alexa6da0b562014-11-10 09:31:29 +10303265 pr_warn("%s: has both .ctors and .init_array.\n",
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303266 mod->name);
3267 return -EINVAL;
3268 }
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003269#endif
3270
Thomas Gleixner66e9b072020-03-10 14:04:34 +01003271 mod->noinstr_text_start = section_objs(info, ".noinstr.text", 1,
3272 &mod->noinstr_text_size);
3273
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003274#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -05003275 mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
3276 sizeof(*mod->tracepoints_ptrs),
3277 &mod->num_tracepoints);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003278#endif
Paul E. McKenneyfe15b502019-04-05 16:15:00 -07003279#ifdef CONFIG_TREE_SRCU
3280 mod->srcu_struct_ptrs = section_objs(info, "___srcu_struct_ptrs",
3281 sizeof(*mod->srcu_struct_ptrs),
3282 &mod->num_srcu_structs);
3283#endif
Matt Mullinsa38d1102018-12-12 16:42:37 -08003284#ifdef CONFIG_BPF_EVENTS
3285 mod->bpf_raw_events = section_objs(info, "__bpf_raw_tp_map",
3286 sizeof(*mod->bpf_raw_events),
3287 &mod->num_bpf_raw_events);
3288#endif
Andrii Nakryiko36e68442020-11-09 17:19:31 -08003289#ifdef CONFIG_DEBUG_INFO_BTF_MODULES
3290 mod->btf_data = any_section_objs(info, ".BTF", 1, &mod->btf_data_size);
3291#endif
Masahiro Yamadae9666d12018-12-31 00:14:15 +09003292#ifdef CONFIG_JUMP_LABEL
Jason Baronbf5438fc2010-09-17 11:09:00 -04003293 mod->jump_entries = section_objs(info, "__jump_table",
3294 sizeof(*mod->jump_entries),
3295 &mod->num_jump_entries);
3296#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003297#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06003298 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003299 sizeof(*mod->trace_events),
3300 &mod->num_trace_events);
Jeremy Linton99be6472017-05-31 16:56:44 -05003301 mod->trace_evals = section_objs(info, "_ftrace_eval_map",
3302 sizeof(*mod->trace_evals),
3303 &mod->num_trace_evals);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003304#endif
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05003305#ifdef CONFIG_TRACING
3306 mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
3307 sizeof(*mod->trace_bprintk_fmt_start),
3308 &mod->num_trace_bprintk_fmt);
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05003309#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003310#ifdef CONFIG_FTRACE_MCOUNT_RECORD
3311 /* sechdrs[0].sh_size is always zero */
Mark Rutlanda1326b172019-10-16 18:17:11 +01003312 mod->ftrace_callsites = section_objs(info, FTRACE_CALLSITE_SECTION,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003313 sizeof(*mod->ftrace_callsites),
3314 &mod->num_ftrace_callsites);
3315#endif
Masami Hiramatsu540adea2018-01-13 02:55:03 +09003316#ifdef CONFIG_FUNCTION_ERROR_INJECTION
3317 mod->ei_funcs = section_objs(info, "_error_injection_whitelist",
3318 sizeof(*mod->ei_funcs),
3319 &mod->num_ei_funcs);
Josef Bacik92ace992017-12-11 11:36:46 -05003320#endif
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09003321#ifdef CONFIG_KPROBES
3322 mod->kprobes_text_start = section_objs(info, ".kprobes.text", 1,
3323 &mod->kprobes_text_size);
Masami Hiramatsu16db6262020-03-26 23:50:00 +09003324 mod->kprobe_blacklist = section_objs(info, "_kprobe_blacklist",
3325 sizeof(unsigned long),
3326 &mod->num_kprobe_blacklist);
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09003327#endif
Josh Poimboeuf9183c3f2020-08-18 15:57:42 +02003328#ifdef CONFIG_HAVE_STATIC_CALL_INLINE
3329 mod->static_call_sites = section_objs(info, ".static_call_sites",
3330 sizeof(*mod->static_call_sites),
3331 &mod->num_static_call_sites);
3332#endif
Rusty Russell811d66a2010-08-05 12:59:12 -06003333 mod->extable = section_objs(info, "__ex_table",
3334 sizeof(*mod->extable), &mod->num_exentries);
3335
Rusty Russell49668682010-08-05 12:59:10 -06003336 if (section_addr(info, "__obsparm"))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003337 pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06003338
Jim Cromiee5ebffe2020-07-19 17:10:45 -06003339 info->debug = section_objs(info, "__dyndbg",
Rusty Russell811d66a2010-08-05 12:59:12 -06003340 sizeof(*info->debug), &info->num_debug);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303341
3342 return 0;
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003343}
3344
Rusty Russell49668682010-08-05 12:59:10 -06003345static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003346{
3347 int i;
3348 void *ptr;
3349
3350 /* Do the allocs. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10303351 ptr = module_alloc(mod->core_layout.size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003352 /*
3353 * The pointer to this block is stored in the module structure
3354 * which is inside the block. Just mark it as not being a
3355 * leak.
3356 */
3357 kmemleak_not_leak(ptr);
3358 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06003359 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003360
Rusty Russell7523e4d2015-11-26 09:44:08 +10303361 memset(ptr, 0, mod->core_layout.size);
3362 mod->core_layout.base = ptr;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003363
Rusty Russell7523e4d2015-11-26 09:44:08 +10303364 if (mod->init_layout.size) {
3365 ptr = module_alloc(mod->init_layout.size);
Rusty Russell82fab442012-12-11 09:38:33 +10303366 /*
3367 * The pointer to this block is stored in the module structure
3368 * which is inside the block. This block doesn't need to be
3369 * scanned as it contains data and code that will be freed
3370 * after the module is initialized.
3371 */
3372 kmemleak_ignore(ptr);
3373 if (!ptr) {
Rusty Russell7523e4d2015-11-26 09:44:08 +10303374 module_memfree(mod->core_layout.base);
Rusty Russell82fab442012-12-11 09:38:33 +10303375 return -ENOMEM;
3376 }
Rusty Russell7523e4d2015-11-26 09:44:08 +10303377 memset(ptr, 0, mod->init_layout.size);
3378 mod->init_layout.base = ptr;
Rusty Russell82fab442012-12-11 09:38:33 +10303379 } else
Rusty Russell7523e4d2015-11-26 09:44:08 +10303380 mod->init_layout.base = NULL;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003381
3382 /* Transfer each section which specifies SHF_ALLOC */
Jim Cromie5e124162011-12-06 12:11:31 -07003383 pr_debug("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06003384 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003385 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06003386 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003387
Rusty Russell49668682010-08-05 12:59:10 -06003388 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003389 continue;
3390
Rusty Russell49668682010-08-05 12:59:10 -06003391 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Rusty Russell7523e4d2015-11-26 09:44:08 +10303392 dest = mod->init_layout.base
Rusty Russell49668682010-08-05 12:59:10 -06003393 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003394 else
Rusty Russell7523e4d2015-11-26 09:44:08 +10303395 dest = mod->core_layout.base + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003396
Rusty Russell49668682010-08-05 12:59:10 -06003397 if (shdr->sh_type != SHT_NOBITS)
3398 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003399 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06003400 shdr->sh_addr = (unsigned long)dest;
Jim Cromie5e124162011-12-06 12:11:31 -07003401 pr_debug("\t0x%lx %s\n",
3402 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003403 }
Rusty Russelld9131882010-08-05 12:59:08 -06003404
3405 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003406}
3407
Rusty Russell49668682010-08-05 12:59:10 -06003408static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06003409{
Libor Pechacek3205c362016-04-13 11:06:12 +09303410 int prev_taint = test_taint(TAINT_PROPRIETARY_MODULE);
3411
Rusty Russell22e268e2010-08-05 12:59:05 -06003412 /*
3413 * ndiswrapper is under GPL by itself, but loads proprietary modules.
3414 * Don't use add_taint_module(), as it would prevent ndiswrapper from
3415 * using GPL-only symbols it needs.
3416 */
3417 if (strcmp(mod->name, "ndiswrapper") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303418 add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06003419
3420 /* driverloader was caught wrongly pretending to be under GPL */
3421 if (strcmp(mod->name, "driverloader") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303422 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
3423 LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06003424
Matthew Garrettc99af372012-06-22 13:49:31 -04003425 /* lve claims to be GPL but upstream won't provide source */
3426 if (strcmp(mod->name, "lve") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303427 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
3428 LOCKDEP_NOW_UNRELIABLE);
Matthew Garrettc99af372012-06-22 13:49:31 -04003429
Libor Pechacek3205c362016-04-13 11:06:12 +09303430 if (!prev_taint && test_taint(TAINT_PROPRIETARY_MODULE))
3431 pr_warn("%s: module license taints kernel.\n", mod->name);
3432
Rusty Russell22e268e2010-08-05 12:59:05 -06003433#ifdef CONFIG_MODVERSIONS
Christoph Hellwig36794822021-02-02 13:13:34 +01003434 if ((mod->num_syms && !mod->crcs) ||
3435 (mod->num_gpl_syms && !mod->gpl_crcs)) {
Rusty Russell22e268e2010-08-05 12:59:05 -06003436 return try_to_force_load(mod,
3437 "no versions for exported symbols");
3438 }
3439#endif
3440 return 0;
3441}
3442
3443static void flush_module_icache(const struct module *mod)
3444{
Rusty Russell22e268e2010-08-05 12:59:05 -06003445 /*
3446 * Flush the instruction cache, since we've played with text.
3447 * Do it before processing of module parameters, so the module
3448 * can provide parameter accessor functions of its own.
3449 */
Rusty Russell7523e4d2015-11-26 09:44:08 +10303450 if (mod->init_layout.base)
3451 flush_icache_range((unsigned long)mod->init_layout.base,
3452 (unsigned long)mod->init_layout.base
3453 + mod->init_layout.size);
3454 flush_icache_range((unsigned long)mod->core_layout.base,
3455 (unsigned long)mod->core_layout.base + mod->core_layout.size);
Rusty Russell22e268e2010-08-05 12:59:05 -06003456}
3457
Jonas Bonn74e08fc2011-06-30 21:22:11 +02003458int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
3459 Elf_Shdr *sechdrs,
3460 char *secstrings,
3461 struct module *mod)
3462{
3463 return 0;
3464}
3465
Prarit Bhargavabe7de5f2016-07-21 15:37:56 +09303466/* module_blacklist is a comma-separated list of module names */
3467static char *module_blacklist;
Luis R. Rodriguez96b5b192017-06-28 18:32:31 -07003468static bool blacklisted(const char *module_name)
Prarit Bhargavabe7de5f2016-07-21 15:37:56 +09303469{
3470 const char *p;
3471 size_t len;
3472
3473 if (!module_blacklist)
3474 return false;
3475
3476 for (p = module_blacklist; *p; p += len) {
3477 len = strcspn(p, ",");
3478 if (strlen(module_name) == len && !memcmp(module_name, p, len))
3479 return true;
3480 if (p[len] == ',')
3481 len++;
3482 }
3483 return false;
3484}
3485core_param(module_blacklist, module_blacklist, charp, 0400);
3486
Rusty Russell2f3238a2012-10-22 18:09:41 +10303487static struct module *layout_and_allocate(struct load_info *info, int flags)
Rusty Russelld9131882010-08-05 12:59:08 -06003488{
Rusty Russelld9131882010-08-05 12:59:08 -06003489 struct module *mod;
Jessica Yu444d13f2016-07-27 12:06:21 +09303490 unsigned int ndx;
Rusty Russelld9131882010-08-05 12:59:08 -06003491 int err;
3492
Jessica Yu81a0abd2018-06-22 13:59:29 +02003493 err = check_modinfo(info->mod, info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06003494 if (err)
3495 return ERR_PTR(err);
3496
3497 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06003498 err = module_frob_arch_sections(info->hdr, info->sechdrs,
Jessica Yu81a0abd2018-06-22 13:59:29 +02003499 info->secstrings, info->mod);
Rusty Russelld9131882010-08-05 12:59:08 -06003500 if (err < 0)
Rusty Russell8d8022e2013-07-03 10:06:28 +09303501 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06003502
Peter Zijlstra5c3a7db2020-04-03 19:13:03 +02003503 err = module_enforce_rwx_sections(info->hdr, info->sechdrs,
3504 info->secstrings, info->mod);
3505 if (err < 0)
3506 return ERR_PTR(err);
3507
Rusty Russell8d8022e2013-07-03 10:06:28 +09303508 /* We will do a special allocation for per-cpu sections later. */
3509 info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06003510
Jessica Yu444d13f2016-07-27 12:06:21 +09303511 /*
3512 * Mark ro_after_init section with SHF_RO_AFTER_INIT so that
3513 * layout_sections() can put it in the right place.
3514 * Note: ro_after_init sections also have SHF_{WRITE,ALLOC} set.
3515 */
3516 ndx = find_sec(info, ".data..ro_after_init");
3517 if (ndx)
3518 info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
Ard Biesheuvele8722672018-09-18 23:51:43 -07003519 /*
3520 * Mark the __jump_table section as ro_after_init as well: these data
3521 * structures are never modified, with the exception of entries that
3522 * refer to code in the __init section, which are annotated as such
3523 * at module load time.
3524 */
3525 ndx = find_sec(info, "__jump_table");
3526 if (ndx)
3527 info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
Jessica Yu444d13f2016-07-27 12:06:21 +09303528
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03003529 /*
3530 * Determine total sizes, and put offsets in sh_entsize. For now
3531 * this is done generically; there doesn't appear to be any
3532 * special cases for the architectures.
3533 */
Jessica Yu81a0abd2018-06-22 13:59:29 +02003534 layout_sections(info->mod, info);
3535 layout_symtab(info->mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003536
3537 /* Allocate and move to the final place */
Jessica Yu81a0abd2018-06-22 13:59:29 +02003538 err = move_module(info->mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003539 if (err)
Rusty Russell8d8022e2013-07-03 10:06:28 +09303540 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06003541
3542 /* Module has been copied to its final place now: return it. */
3543 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06003544 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003545 return mod;
Rusty Russelld9131882010-08-05 12:59:08 -06003546}
3547
3548/* mod is no longer valid after this! */
3549static void module_deallocate(struct module *mod, struct load_info *info)
3550{
Rusty Russelld9131882010-08-05 12:59:08 -06003551 percpu_modfree(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10303552 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10303553 module_memfree(mod->init_layout.base);
3554 module_memfree(mod->core_layout.base);
Rusty Russelld9131882010-08-05 12:59:08 -06003555}
3556
Jonas Bonn74e08fc2011-06-30 21:22:11 +02003557int __weak module_finalize(const Elf_Ehdr *hdr,
3558 const Elf_Shdr *sechdrs,
3559 struct module *me)
3560{
3561 return 0;
3562}
3563
Rusty Russell811d66a2010-08-05 12:59:12 -06003564static int post_relocation(struct module *mod, const struct load_info *info)
3565{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003566 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06003567 sort_extable(mod->extable, mod->extable + mod->num_exentries);
3568
3569 /* Copy relocated percpu area over. */
3570 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
3571 info->sechdrs[info->index.pcpu].sh_size);
3572
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003573 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06003574 add_kallsyms(mod, info);
3575
3576 /* Arch-specific module finalizing. */
3577 return module_finalize(info->hdr, info->sechdrs, mod);
3578}
3579
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303580/* Is this module of this name done loading? No locks held. */
3581static bool finished_loading(const char *name)
3582{
3583 struct module *mod;
3584 bool ret;
3585
Peter Zijlstra9cc019b2015-02-11 15:01:13 +10303586 /*
3587 * The module_mutex should not be a heavily contended lock;
3588 * if we get the occasional sleep here, we'll go an extra iteration
3589 * in the wait_event_interruptible(), which is harmless.
3590 */
3591 sched_annotate_sleep();
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303592 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303593 mod = find_module_all(name, strlen(name), true);
Prarit Bhargava6e6de3d2019-05-29 07:26:25 -04003594 ret = !mod || mod->state == MODULE_STATE_LIVE;
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303595 mutex_unlock(&module_mutex);
3596
3597 return ret;
3598}
3599
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003600/* Call module constructors. */
3601static void do_mod_ctors(struct module *mod)
3602{
3603#ifdef CONFIG_CONSTRUCTORS
3604 unsigned long i;
3605
3606 for (i = 0; i < mod->num_ctors; i++)
3607 mod->ctors[i]();
3608#endif
3609}
3610
Rusty Russellc7496372015-01-20 09:07:05 +10303611/* For freeing module_init on success, in case kallsyms traversing */
3612struct mod_initfree {
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003613 struct llist_node node;
Rusty Russellc7496372015-01-20 09:07:05 +10303614 void *module_init;
3615};
3616
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003617static void do_free_init(struct work_struct *w)
Rusty Russellc7496372015-01-20 09:07:05 +10303618{
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003619 struct llist_node *pos, *n, *list;
3620 struct mod_initfree *initfree;
3621
3622 list = llist_del_all(&init_free_list);
3623
3624 synchronize_rcu();
3625
3626 llist_for_each_safe(pos, n, list) {
3627 initfree = container_of(pos, struct mod_initfree, node);
3628 module_memfree(initfree->module_init);
3629 kfree(initfree);
3630 }
Rusty Russellc7496372015-01-20 09:07:05 +10303631}
3632
Jan Kiszkabe02a182015-02-17 13:46:50 -08003633/*
3634 * This is where the real work happens.
3635 *
3636 * Keep it uninlined to provide a reliable breakpoint target, e.g. for the gdb
3637 * helper command 'lx-symbols'.
3638 */
3639static noinline int do_init_module(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 int ret = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303642 struct mod_initfree *freeinit;
3643
3644 freeinit = kmalloc(sizeof(*freeinit), GFP_KERNEL);
3645 if (!freeinit) {
3646 ret = -ENOMEM;
3647 goto fail;
3648 }
Rusty Russell7523e4d2015-11-26 09:44:08 +10303649 freeinit->module_init = mod->init_layout.base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
Tejun Heo774a1222013-01-15 18:52:51 -08003651 /*
3652 * We want to find out whether @mod uses async during init. Clear
3653 * PF_USED_ASYNC. async_schedule*() will set it.
3654 */
3655 current->flags &= ~PF_USED_ASYNC;
3656
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003657 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 /* Start the module */
3659 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07003660 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 if (ret < 0) {
Rusty Russellc7496372015-01-20 09:07:05 +10303662 goto fail_free_freeinit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003664 if (ret > 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003665 pr_warn("%s: '%s'->init suspiciously returned %d, it should "
3666 "follow 0/-E convention\n"
3667 "%s: loading module anyway...\n",
3668 __func__, mod->name, ret, __func__);
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003669 dump_stack();
3670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Rusty Russell6f139092012-09-28 14:31:03 +09303672 /* Now it's a first class citizen! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 mod->state = MODULE_STATE_LIVE;
Masami Hiramatsu0deddf42009-01-06 14:41:54 -08003674 blocking_notifier_call_chain(&module_notify_list,
3675 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07003676
Jessica Yu38dc7172020-11-27 10:09:39 +01003677 /* Delay uevent until module has finished its init routine */
3678 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
3679
Tejun Heo774a1222013-01-15 18:52:51 -08003680 /*
3681 * We need to finish all async code before the module init sequence
3682 * is done. This has potential to deadlock. For example, a newly
3683 * detected block device can trigger request_module() of the
3684 * default iosched from async probing task. Once userland helper
3685 * reaches here, async_synchronize_full() will wait on the async
3686 * task waiting on request_module() and deadlock.
3687 *
3688 * This deadlock is avoided by perfomring async_synchronize_full()
3689 * iff module init queued any async jobs. This isn't a full
3690 * solution as it will deadlock the same if module loading from
3691 * async jobs nests more than once; however, due to the various
3692 * constraints, this hack seems to be the best option for now.
3693 * Please refer to the following thread for details.
3694 *
3695 * http://thread.gmane.org/gmane.linux.kernel/1420814
3696 */
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003697 if (!mod->async_probe_requested && (current->flags & PF_USED_ASYNC))
Tejun Heo774a1222013-01-15 18:52:51 -08003698 async_synchronize_full();
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07003699
Steven Rostedt (VMware)aba4b5c2017-09-01 08:35:38 -04003700 ftrace_free_mem(mod, mod->init_layout.base, mod->init_layout.base +
Steven Rostedt (VMware)3e234282017-03-03 18:00:22 -05003701 mod->init_layout.size);
Rusty Russell6c5db222008-03-10 11:43:52 -07003702 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 /* Drop initial reference. */
3704 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06003705 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01003706#ifdef CONFIG_KALLSYMS
Rusty Russell82440622016-02-03 16:55:26 +10303707 /* Switch to core kallsyms now init is done: kallsyms may be walking! */
3708 rcu_assign_pointer(mod->kallsyms, &mod->core_kallsyms);
Jan Beulich4a496222009-07-06 14:50:42 +01003709#endif
Jessica Yu444d13f2016-07-27 12:06:21 +09303710 module_enable_ro(mod, true);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09303711 mod_tree_remove_init(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10303712 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10303713 mod->init_layout.base = NULL;
3714 mod->init_layout.size = 0;
3715 mod->init_layout.ro_size = 0;
Jessica Yu444d13f2016-07-27 12:06:21 +09303716 mod->init_layout.ro_after_init_size = 0;
Rusty Russell7523e4d2015-11-26 09:44:08 +10303717 mod->init_layout.text_size = 0;
Andrii Nakryiko607c5432020-11-20 23:08:29 -08003718#ifdef CONFIG_DEBUG_INFO_BTF_MODULES
3719 /* .BTF is not SHF_ALLOC and will get removed, so sanitize pointer */
3720 mod->btf_data = NULL;
Andrii Nakryiko607c5432020-11-20 23:08:29 -08003721#endif
Rusty Russellc7496372015-01-20 09:07:05 +10303722 /*
3723 * We want to free module_init, but be aware that kallsyms may be
Peter Zijlstra0be964b2015-05-27 11:09:35 +09303724 * walking this with preempt disabled. In all the failure paths, we
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08003725 * call synchronize_rcu(), but we don't want to slow down the success
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003726 * path. module_memfree() cannot be called in an interrupt, so do the
3727 * work and call synchronize_rcu() in a work queue.
3728 *
Jeffrey Hugoae646f02018-05-11 16:01:42 -07003729 * Note that module_alloc() on most architectures creates W+X page
3730 * mappings which won't be cleaned up until do_free_init() runs. Any
3731 * code such as mark_rodata_ro() which depends on those mappings to
3732 * be cleaned up needs to sync with the queued work - ie
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08003733 * rcu_barrier()
Rusty Russellc7496372015-01-20 09:07:05 +10303734 */
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003735 if (llist_add(&freeinit->node, &init_free_list))
3736 schedule_work(&init_free_wq);
3737
Ashutosh Naik6389a382006-03-23 03:00:46 -08003738 mutex_unlock(&module_mutex);
Rusty Russell6f139092012-09-28 14:31:03 +09303739 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
3741 return 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303742
3743fail_free_freeinit:
3744 kfree(freeinit);
3745fail:
3746 /* Try to protect us from buggy refcounters. */
3747 mod->state = MODULE_STATE_GOING;
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08003748 synchronize_rcu();
Rusty Russellc7496372015-01-20 09:07:05 +10303749 module_put(mod);
3750 blocking_notifier_call_chain(&module_notify_list,
3751 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04003752 klp_module_going(mod);
Jessica Yu7dcd1822016-02-16 17:32:33 -05003753 ftrace_release_mod(mod);
Rusty Russellc7496372015-01-20 09:07:05 +10303754 free_module(mod);
3755 wake_up_all(&module_wq);
3756 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757}
3758
Kees Cook34e11692012-10-16 07:31:07 +10303759static int may_init_module(void)
3760{
3761 if (!capable(CAP_SYS_MODULE) || modules_disabled)
3762 return -EPERM;
3763
3764 return 0;
3765}
3766
Rusty Russella3535c72013-01-21 17:18:59 +10303767/*
3768 * We try to place it in the list now to make sure it's unique before
3769 * we dedicate too many resources. In particular, temporary percpu
3770 * memory exhaustion.
3771 */
3772static int add_unformed_module(struct module *mod)
3773{
3774 int err;
3775 struct module *old;
3776
3777 mod->state = MODULE_STATE_UNFORMED;
3778
3779again:
3780 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303781 old = find_module_all(mod->name, strlen(mod->name), true);
3782 if (old != NULL) {
Prarit Bhargava6e6de3d2019-05-29 07:26:25 -04003783 if (old->state != MODULE_STATE_LIVE) {
Rusty Russella3535c72013-01-21 17:18:59 +10303784 /* Wait in case it fails to load. */
3785 mutex_unlock(&module_mutex);
Peter Zijlstra9cc019b2015-02-11 15:01:13 +10303786 err = wait_event_interruptible(module_wq,
3787 finished_loading(mod->name));
Rusty Russella3535c72013-01-21 17:18:59 +10303788 if (err)
3789 goto out_unlocked;
3790 goto again;
3791 }
3792 err = -EEXIST;
3793 goto out;
3794 }
Peter Zijlstra4f6665462015-05-27 11:09:38 +09303795 mod_update_bounds(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303796 list_add_rcu(&mod->list, &modules);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09303797 mod_tree_insert(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303798 err = 0;
3799
3800out:
3801 mutex_unlock(&module_mutex);
3802out_unlocked:
3803 return err;
3804}
3805
3806static int complete_formation(struct module *mod, struct load_info *info)
3807{
3808 int err;
3809
3810 mutex_lock(&module_mutex);
3811
3812 /* Find duplicate symbols (must be called under lock). */
Jessica Yu2d25bc52018-11-19 17:43:58 +01003813 err = verify_exported_symbols(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303814 if (err < 0)
3815 goto out;
3816
3817 /* This relies on module_mutex for list integrity. */
3818 module_bug_finalize(info->hdr, info->sechdrs, mod);
3819
Jessica Yu444d13f2016-07-27 12:06:21 +09303820 module_enable_ro(mod, false);
Rusty Russell85c898d2015-11-26 09:45:08 +10303821 module_enable_nx(mod);
Steven Rostedt (VMware)af742622019-12-09 10:33:30 -05003822 module_enable_x(mod);
Rusty Russell49822232014-05-14 10:54:19 +09303823
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03003824 /*
3825 * Mark state as coming so strong_try_module_get() ignores us,
3826 * but kallsyms etc. can see us.
3827 */
Rusty Russella3535c72013-01-21 17:18:59 +10303828 mod->state = MODULE_STATE_COMING;
Rusty Russell49822232014-05-14 10:54:19 +09303829 mutex_unlock(&module_mutex);
3830
Rusty Russell49822232014-05-14 10:54:19 +09303831 return 0;
Rusty Russella3535c72013-01-21 17:18:59 +10303832
3833out:
3834 mutex_unlock(&module_mutex);
3835 return err;
3836}
3837
Jessica Yu4c973d12016-03-16 20:55:38 -04003838static int prepare_coming_module(struct module *mod)
3839{
Jessica Yu7e545d62016-03-16 20:55:39 -04003840 int err;
3841
Jessica Yu4c973d12016-03-16 20:55:38 -04003842 ftrace_module_enable(mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04003843 err = klp_module_coming(mod);
3844 if (err)
3845 return err;
3846
Peter Zijlstra59cc8e02020-08-18 15:57:38 +02003847 err = blocking_notifier_call_chain_robust(&module_notify_list,
3848 MODULE_STATE_COMING, MODULE_STATE_GOING, mod);
3849 err = notifier_to_errno(err);
3850 if (err)
3851 klp_module_going(mod);
3852
3853 return err;
Jessica Yu4c973d12016-03-16 20:55:38 -04003854}
3855
Luis R. Rodriguezecc86172015-03-30 16:20:03 -07003856static int unknown_module_param_cb(char *param, char *val, const char *modname,
3857 void *arg)
Rusty Russell54041d82013-07-02 15:35:12 +09303858{
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003859 struct module *mod = arg;
3860 int ret;
3861
3862 if (strcmp(param, "async_probe") == 0) {
3863 mod->async_probe_requested = true;
3864 return 0;
3865 }
3866
Ionut Alexa6da0b562014-11-10 09:31:29 +10303867 /* Check for magic 'dyndbg' arg */
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003868 ret = ddebug_dyndbg_module_param_cb(param, val, modname);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003869 if (ret != 0)
3870 pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
Rusty Russell54041d82013-07-02 15:35:12 +09303871 return 0;
3872}
3873
Sami Tolvanencf68fff2021-04-08 11:28:26 -07003874static void cfi_init(struct module *mod);
3875
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03003876/*
3877 * Allocate and load the module: note that size of section 0 is always
3878 * zero, and we rely on this for optional sections.
3879 */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303880static int load_module(struct load_info *info, const char __user *uargs,
3881 int flags)
Kees Cook34e11692012-10-16 07:31:07 +10303882{
Rusty Russella3535c72013-01-21 17:18:59 +10303883 struct module *mod;
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003884 long err = 0;
Rusty Russell51e158c2014-04-28 11:34:33 +09303885 char *after_dashes;
Kees Cook34e11692012-10-16 07:31:07 +10303886
Frank van der Lindenec2a2952021-01-14 22:21:46 +00003887 /*
3888 * Do the signature check (if any) first. All that
3889 * the signature check needs is info->len, it does
3890 * not need any of the section info. That can be
3891 * set up later. This will minimize the chances
3892 * of a corrupt module causing problems before
3893 * we even get to the signature check.
3894 *
3895 * The check will also adjust info->len by stripping
3896 * off the sig length at the end of the module, making
3897 * checks against info->len more correct.
3898 */
3899 err = module_sig_check(info, flags);
3900 if (err)
3901 goto free_copy;
3902
3903 /*
3904 * Do basic sanity checks against the ELF header and
3905 * sections.
3906 */
3907 err = elf_validity_check(info);
Qu Wenruo14721ad2020-09-02 14:46:19 +08003908 if (err) {
Frank van der Lindenec2a2952021-01-14 22:21:46 +00003909 pr_err("Module has invalid ELF structures\n");
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003910 goto free_copy;
Qu Wenruo14721ad2020-09-02 14:46:19 +08003911 }
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003912
Frank van der Lindenec2a2952021-01-14 22:21:46 +00003913 /*
3914 * Everything checks out, so set up the section info
3915 * in the info structure.
3916 */
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003917 err = setup_load_info(info, flags);
3918 if (err)
3919 goto free_copy;
3920
Frank van der Lindenec2a2952021-01-14 22:21:46 +00003921 /*
3922 * Now that we know we have the correct module name, check
3923 * if it's blacklisted.
3924 */
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003925 if (blacklisted(info->name)) {
3926 err = -EPERM;
Qu Wenruo14721ad2020-09-02 14:46:19 +08003927 pr_err("Module %s is blacklisted\n", info->name);
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003928 goto free_copy;
3929 }
3930
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003931 err = rewrite_section_headers(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303932 if (err)
3933 goto free_copy;
3934
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003935 /* Check module struct version now, before we try to use module. */
3936 if (!check_modstruct_version(info, info->mod)) {
3937 err = -ENOEXEC;
3938 goto free_copy;
3939 }
3940
Kees Cook34e11692012-10-16 07:31:07 +10303941 /* Figure out module layout, and allocate all the memory. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303942 mod = layout_and_allocate(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303943 if (IS_ERR(mod)) {
3944 err = PTR_ERR(mod);
3945 goto free_copy;
3946 }
3947
Richard Guy Briggsca86cad2017-02-04 13:10:38 -05003948 audit_log_kern_module(mod->name);
3949
Rusty Russella3535c72013-01-21 17:18:59 +10303950 /* Reserve our place in the list. */
3951 err = add_unformed_module(mod);
3952 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303953 goto free_module;
Rusty Russell1fb93412013-01-12 13:27:34 +10303954
Kees Cook34e11692012-10-16 07:31:07 +10303955#ifdef CONFIG_MODULE_SIG
3956 mod->sig_ok = info->sig_ok;
Rusty Russell64748a22013-01-21 17:03:02 +10303957 if (!mod->sig_ok) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003958 pr_notice_once("%s: module verification failed: signature "
Marcel Holtmannab92ebb2015-02-06 15:09:57 +10303959 "and/or required key missing - tainting "
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003960 "kernel\n", mod->name);
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10303961 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
Rusty Russell64748a22013-01-21 17:03:02 +10303962 }
Kees Cook34e11692012-10-16 07:31:07 +10303963#endif
3964
Rusty Russell8d8022e2013-07-03 10:06:28 +09303965 /* To avoid stressing percpu allocator, do this once we're unique. */
Rusty Russell9eb76d72013-07-03 10:06:29 +09303966 err = percpu_modalloc(mod, info);
Rusty Russell8d8022e2013-07-03 10:06:28 +09303967 if (err)
3968 goto unlink_mod;
3969
Kees Cook34e11692012-10-16 07:31:07 +10303970 /* Now module is in final location, initialize linked lists, etc. */
3971 err = module_unload_init(mod);
3972 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303973 goto unlink_mod;
Kees Cook34e11692012-10-16 07:31:07 +10303974
Rusty Russellcf2fde72015-06-26 06:44:38 +09303975 init_param_lock(mod);
Dan Streetmanb51d23e2015-06-17 06:18:52 +09303976
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03003977 /*
3978 * Now we've got everything in the final locations, we can
3979 * find optional sections.
3980 */
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303981 err = find_module_sections(mod, info);
3982 if (err)
3983 goto free_unload;
Kees Cook34e11692012-10-16 07:31:07 +10303984
3985 err = check_module_license_and_versions(mod);
3986 if (err)
3987 goto free_unload;
3988
3989 /* Set up MODINFO_ATTR fields */
3990 setup_modinfo(mod, info);
3991
3992 /* Fix up syms, so that st_value is a pointer to location. */
3993 err = simplify_symbols(mod, info);
3994 if (err < 0)
3995 goto free_modinfo;
3996
3997 err = apply_relocations(mod, info);
3998 if (err < 0)
3999 goto free_modinfo;
4000
4001 err = post_relocation(mod, info);
4002 if (err < 0)
4003 goto free_modinfo;
4004
4005 flush_module_icache(mod);
4006
Sami Tolvanencf68fff2021-04-08 11:28:26 -07004007 /* Setup CFI for the module. */
4008 cfi_init(mod);
4009
Kees Cook34e11692012-10-16 07:31:07 +10304010 /* Now copy in args */
4011 mod->args = strndup_user(uargs, ~0UL >> 1);
4012 if (IS_ERR(mod->args)) {
4013 err = PTR_ERR(mod->args);
4014 goto free_arch_cleanup;
4015 }
4016
Zhou Chengming52796312017-07-07 11:15:58 +08004017 dynamic_debug_setup(mod, info->debug, info->num_debug);
Kees Cook34e11692012-10-16 07:31:07 +10304018
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04004019 /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
4020 ftrace_module_init(mod);
4021
Rusty Russella3535c72013-01-21 17:18:59 +10304022 /* Finally it's fully formed, ready to start executing. */
4023 err = complete_formation(mod, info);
4024 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10304025 goto ddebug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10304026
Jessica Yu4c973d12016-03-16 20:55:38 -04004027 err = prepare_coming_module(mod);
4028 if (err)
4029 goto bug_cleanup;
4030
Kees Cook34e11692012-10-16 07:31:07 +10304031 /* Module is ready to execute: parsing args may do that. */
Rusty Russell51e158c2014-04-28 11:34:33 +09304032 after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
Luis R. Rodriguez4355efb2016-02-03 16:55:26 +10304033 -32768, 32767, mod,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -07004034 unknown_module_param_cb);
Rusty Russell51e158c2014-04-28 11:34:33 +09304035 if (IS_ERR(after_dashes)) {
4036 err = PTR_ERR(after_dashes);
Jessica Yu4c973d12016-03-16 20:55:38 -04004037 goto coming_cleanup;
Rusty Russell51e158c2014-04-28 11:34:33 +09304038 } else if (after_dashes) {
4039 pr_warn("%s: parameters '%s' after `--' ignored\n",
4040 mod->name, after_dashes);
4041 }
Kees Cook34e11692012-10-16 07:31:07 +10304042
Richard Guy Briggsca86cad2017-02-04 13:10:38 -05004043 /* Link in to sysfs. */
Kees Cook34e11692012-10-16 07:31:07 +10304044 err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
4045 if (err < 0)
Jessica Yu4c973d12016-03-16 20:55:38 -04004046 goto coming_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10304047
Jessica Yu1ce15ef2016-03-22 20:03:16 -04004048 if (is_livepatch_module(mod)) {
4049 err = copy_module_elf(mod, info);
4050 if (err < 0)
4051 goto sysfs_cleanup;
4052 }
4053
Kees Cook34e11692012-10-16 07:31:07 +10304054 /* Get rid of temporary copy. */
4055 free_copy(info);
4056
4057 /* Done! */
4058 trace_module_load(mod);
4059
4060 return do_init_module(mod);
4061
Jessica Yu1ce15ef2016-03-22 20:03:16 -04004062 sysfs_cleanup:
4063 mod_sysfs_teardown(mod);
Jessica Yu4c973d12016-03-16 20:55:38 -04004064 coming_cleanup:
Aaron Tomlin885a78d2016-10-20 17:18:12 +01004065 mod->state = MODULE_STATE_GOING;
Luis R. Rodrigueza5544882017-02-10 14:06:22 -08004066 destroy_params(mod->kp, mod->num_kp);
Jessica Yu4c973d12016-03-16 20:55:38 -04004067 blocking_notifier_call_chain(&module_notify_list,
4068 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04004069 klp_module_going(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10304070 bug_cleanup:
Miroslav Benes5e8ed282020-10-27 15:03:36 +01004071 mod->state = MODULE_STATE_GOING;
Rusty Russell1fb93412013-01-12 13:27:34 +10304072 /* module_bug_cleanup needs module_mutex protection */
Kees Cook34e11692012-10-16 07:31:07 +10304073 mutex_lock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10304074 module_bug_cleanup(mod);
Linus Torvaldsee61abb2013-01-20 20:22:58 -08004075 mutex_unlock(&module_mutex);
Andy Lutomirskiff7e0052014-08-16 04:13:37 +09304076
Rusty Russella3535c72013-01-21 17:18:59 +10304077 ddebug_cleanup:
Namit Gupta1323eac2018-01-08 10:41:21 +05304078 ftrace_release_mod(mod);
Zhou Chengming52796312017-07-07 11:15:58 +08004079 dynamic_debug_remove(mod, info->debug);
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08004080 synchronize_rcu();
Kees Cook34e11692012-10-16 07:31:07 +10304081 kfree(mod->args);
4082 free_arch_cleanup:
Sami Tolvanencf68fff2021-04-08 11:28:26 -07004083 cfi_cleanup(mod);
Kees Cook34e11692012-10-16 07:31:07 +10304084 module_arch_cleanup(mod);
4085 free_modinfo:
4086 free_modinfo(mod);
4087 free_unload:
4088 module_unload_free(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10304089 unlink_mod:
4090 mutex_lock(&module_mutex);
4091 /* Unlink carefully: kallsyms could be walking list. */
4092 list_del_rcu(&mod->list);
Peter Zijlstra758556b2015-07-09 06:48:06 +09304093 mod_tree_remove(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10304094 wake_up_all(&module_wq);
Peter Zijlstra0be964b2015-05-27 11:09:35 +09304095 /* Wait for RCU-sched synchronizing before releasing mod->list. */
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08004096 synchronize_rcu();
Rusty Russell1fb93412013-01-12 13:27:34 +10304097 mutex_unlock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10304098 free_module:
Peter Zijlstra35a93932015-02-26 16:23:11 +01004099 /* Free lock-classes; relies on the preceding sync_rcu() */
Rusty Russell7523e4d2015-11-26 09:44:08 +10304100 lockdep_free_key_range(mod->core_layout.base, mod->core_layout.size);
Peter Zijlstra35a93932015-02-26 16:23:11 +01004101
Kees Cook34e11692012-10-16 07:31:07 +10304102 module_deallocate(mod, info);
4103 free_copy:
4104 free_copy(info);
4105 return err;
4106}
4107
4108SYSCALL_DEFINE3(init_module, void __user *, umod,
4109 unsigned long, len, const char __user *, uargs)
4110{
4111 int err;
4112 struct load_info info = { };
4113
4114 err = may_init_module();
4115 if (err)
4116 return err;
4117
4118 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
4119 umod, len, uargs);
4120
4121 err = copy_module_from_user(umod, len, &info);
4122 if (err)
4123 return err;
4124
Rusty Russell2f3238a2012-10-22 18:09:41 +10304125 return load_module(&info, uargs, 0);
Kees Cook34e11692012-10-16 07:31:07 +10304126}
4127
Rusty Russell2f3238a2012-10-22 18:09:41 +10304128SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
Kees Cook34e11692012-10-16 07:31:07 +10304129{
Kees Cook34e11692012-10-16 07:31:07 +10304130 struct load_info info = { };
Kees Cookc3074592020-10-02 10:38:13 -07004131 void *hdr = NULL;
Mimi Zohara1db7422015-12-30 07:35:30 -05004132 int err;
Kees Cook34e11692012-10-16 07:31:07 +10304133
4134 err = may_init_module();
4135 if (err)
4136 return err;
4137
Rusty Russell2f3238a2012-10-22 18:09:41 +10304138 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
4139
4140 if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
4141 |MODULE_INIT_IGNORE_VERMAGIC))
4142 return -EINVAL;
Kees Cook34e11692012-10-16 07:31:07 +10304143
Kees Cook0fa8e082020-10-02 10:38:25 -07004144 err = kernel_read_file_from_fd(fd, 0, &hdr, INT_MAX, NULL,
Mimi Zohara1db7422015-12-30 07:35:30 -05004145 READING_MODULE);
Kees Cookf7a4f682020-10-02 10:38:17 -07004146 if (err < 0)
Kees Cook34e11692012-10-16 07:31:07 +10304147 return err;
Mimi Zohara1db7422015-12-30 07:35:30 -05004148 info.hdr = hdr;
Kees Cookf7a4f682020-10-02 10:38:17 -07004149 info.len = err;
Kees Cook34e11692012-10-16 07:31:07 +10304150
Rusty Russell2f3238a2012-10-22 18:09:41 +10304151 return load_module(&info, uargs, flags);
Kees Cook34e11692012-10-16 07:31:07 +10304152}
4153
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154static inline int within(unsigned long addr, void *start, unsigned long size)
4155{
4156 return ((void *)addr >= start && (void *)addr < start + size);
4157}
4158
4159#ifdef CONFIG_KALLSYMS
4160/*
4161 * This ignores the intensely annoying "mapping symbols" found
4162 * in ARM ELF files: $a, $t and $d.
4163 */
4164static inline int is_arm_mapping_symbol(const char *str)
4165{
Russell King2e3a10a2014-07-27 07:29:01 +09304166 if (str[0] == '.' && str[1] == 'L')
4167 return true;
Kyle McMartin6c34f1f2014-09-16 22:37:18 +01004168 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 && (str[2] == '\0' || str[2] == '.');
4170}
4171
Jessica Yu2d25bc52018-11-19 17:43:58 +01004172static const char *kallsyms_symbol_name(struct mod_kallsyms *kallsyms, unsigned int symnum)
Rusty Russell2e7bac52016-02-03 16:55:26 +10304173{
Rusty Russell82440622016-02-03 16:55:26 +10304174 return kallsyms->strtab + kallsyms->symtab[symnum].st_name;
Rusty Russell2e7bac52016-02-03 16:55:26 +10304175}
4176
Jessica Yu2d25bc52018-11-19 17:43:58 +01004177/*
4178 * Given a module and address, find the corresponding symbol and return its name
4179 * while providing its size and offset if needed.
4180 */
4181static const char *find_kallsyms_symbol(struct module *mod,
4182 unsigned long addr,
4183 unsigned long *size,
4184 unsigned long *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185{
4186 unsigned int i, best = 0;
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004187 unsigned long nextval, bestval;
Rusty Russell82440622016-02-03 16:55:26 +10304188 struct mod_kallsyms *kallsyms = rcu_dereference_sched(mod->kallsyms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
4190 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08004191 if (within_module_init(addr, mod))
Rusty Russell7523e4d2015-11-26 09:44:08 +10304192 nextval = (unsigned long)mod->init_layout.base+mod->init_layout.text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07004193 else
Rusty Russell7523e4d2015-11-26 09:44:08 +10304194 nextval = (unsigned long)mod->core_layout.base+mod->core_layout.text_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004196 bestval = kallsyms_symbol_value(&kallsyms->symtab[best]);
4197
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03004198 /*
4199 * Scan for closest preceding symbol, and next symbol. (ELF
4200 * starts real symbols at 1).
4201 */
Rusty Russell82440622016-02-03 16:55:26 +10304202 for (i = 1; i < kallsyms->num_symtab; i++) {
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004203 const Elf_Sym *sym = &kallsyms->symtab[i];
4204 unsigned long thisval = kallsyms_symbol_value(sym);
4205
4206 if (sym->st_shndx == SHN_UNDEF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 continue;
4208
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03004209 /*
4210 * We ignore unnamed symbols: they're uninformative
4211 * and inserted at a whim.
4212 */
Jessica Yu2d25bc52018-11-19 17:43:58 +01004213 if (*kallsyms_symbol_name(kallsyms, i) == '\0'
4214 || is_arm_mapping_symbol(kallsyms_symbol_name(kallsyms, i)))
Rusty Russell2e7bac52016-02-03 16:55:26 +10304215 continue;
4216
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004217 if (thisval <= addr && thisval > bestval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 best = i;
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004219 bestval = thisval;
4220 }
4221 if (thisval > addr && thisval < nextval)
4222 nextval = thisval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 }
4224
4225 if (!best)
4226 return NULL;
4227
Alexey Dobriyanffb45122007-05-08 00:28:41 -07004228 if (size)
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004229 *size = nextval - bestval;
Alexey Dobriyanffb45122007-05-08 00:28:41 -07004230 if (offset)
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004231 *offset = addr - bestval;
Jessica Yu2d25bc52018-11-19 17:43:58 +01004232
4233 return kallsyms_symbol_name(kallsyms, best);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234}
4235
Sergey Senozhatskyb865ea62017-11-10 08:48:25 +09004236void * __weak dereference_module_function_descriptor(struct module *mod,
4237 void *ptr)
4238{
4239 return ptr;
4240}
4241
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03004242/*
4243 * For kallsyms to ask for address resolution. NULL means not found. Careful
4244 * not to lock to avoid deadlock on oopses, simply disable preemption.
4245 */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08004246const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05004247 unsigned long *size,
4248 unsigned long *offset,
4249 char **modname,
4250 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251{
Rusty Russellcb2a5202008-01-14 00:55:03 -08004252 const char *ret = NULL;
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09304253 struct module *mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254
Rusty Russellcb2a5202008-01-14 00:55:03 -08004255 preempt_disable();
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09304256 mod = __module_address(addr);
4257 if (mod) {
4258 if (modname)
4259 *modname = mod->name;
Jessica Yu2d25bc52018-11-19 17:43:58 +01004260
4261 ret = find_kallsyms_symbol(mod, addr, size, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05004263 /* Make a copy in here where it's safe */
4264 if (ret) {
4265 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
4266 ret = namebuf;
4267 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08004268 preempt_enable();
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09304269
Andrew Morton92dfc9d2008-02-08 04:18:43 -08004270 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271}
4272
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004273int lookup_module_symbol_name(unsigned long addr, char *symname)
4274{
4275 struct module *mod;
4276
Rusty Russellcb2a5202008-01-14 00:55:03 -08004277 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02004278 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304279 if (mod->state == MODULE_STATE_UNFORMED)
4280 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09304281 if (within_module(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004282 const char *sym;
4283
Jessica Yu2d25bc52018-11-19 17:43:58 +01004284 sym = find_kallsyms_symbol(mod, addr, NULL, NULL);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004285 if (!sym)
4286 goto out;
Jessica Yu2d25bc52018-11-19 17:43:58 +01004287
Tejun Heo9281ace2007-07-17 04:03:51 -07004288 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08004289 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004290 return 0;
4291 }
4292 }
4293out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08004294 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004295 return -ERANGE;
4296}
4297
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004298int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
4299 unsigned long *offset, char *modname, char *name)
4300{
4301 struct module *mod;
4302
Rusty Russellcb2a5202008-01-14 00:55:03 -08004303 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02004304 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304305 if (mod->state == MODULE_STATE_UNFORMED)
4306 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09304307 if (within_module(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004308 const char *sym;
4309
Jessica Yu2d25bc52018-11-19 17:43:58 +01004310 sym = find_kallsyms_symbol(mod, addr, size, offset);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004311 if (!sym)
4312 goto out;
4313 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07004314 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004315 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07004316 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08004317 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004318 return 0;
4319 }
4320 }
4321out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08004322 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004323 return -ERANGE;
4324}
4325
Alexey Dobriyanea078902007-05-08 00:28:39 -07004326int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
4327 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328{
4329 struct module *mod;
4330
Rusty Russellcb2a5202008-01-14 00:55:03 -08004331 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02004332 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell82440622016-02-03 16:55:26 +10304333 struct mod_kallsyms *kallsyms;
4334
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304335 if (mod->state == MODULE_STATE_UNFORMED)
4336 continue;
Rusty Russell82440622016-02-03 16:55:26 +10304337 kallsyms = rcu_dereference_sched(mod->kallsyms);
4338 if (symnum < kallsyms->num_symtab) {
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004339 const Elf_Sym *sym = &kallsyms->symtab[symnum];
4340
4341 *value = kallsyms_symbol_value(sym);
Eugene Loh1c7651f2019-02-25 11:59:58 -08004342 *type = kallsyms->typetab[symnum];
Jessica Yu2d25bc52018-11-19 17:43:58 +01004343 strlcpy(name, kallsyms_symbol_name(kallsyms, symnum), KSYM_NAME_LEN);
Tejun Heo9281ace2007-07-17 04:03:51 -07004344 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06004345 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08004346 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07004347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 }
Rusty Russell82440622016-02-03 16:55:26 +10304349 symnum -= kallsyms->num_symtab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08004351 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07004352 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353}
4354
Jessica Yu2d25bc52018-11-19 17:43:58 +01004355/* Given a module and name of symbol, find and return the symbol's value */
4356static unsigned long find_kallsyms_symbol_value(struct module *mod, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357{
4358 unsigned int i;
Rusty Russell82440622016-02-03 16:55:26 +10304359 struct mod_kallsyms *kallsyms = rcu_dereference_sched(mod->kallsyms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004361 for (i = 0; i < kallsyms->num_symtab; i++) {
4362 const Elf_Sym *sym = &kallsyms->symtab[i];
4363
Jessica Yu2d25bc52018-11-19 17:43:58 +01004364 if (strcmp(name, kallsyms_symbol_name(kallsyms, i)) == 0 &&
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004365 sym->st_shndx != SHN_UNDEF)
4366 return kallsyms_symbol_value(sym);
4367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 return 0;
4369}
4370
4371/* Look for this name: can be of form module:name. */
4372unsigned long module_kallsyms_lookup_name(const char *name)
4373{
4374 struct module *mod;
4375 char *colon;
4376 unsigned long ret = 0;
4377
4378 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08004379 preempt_disable();
Naveen N. Rao17586182017-04-23 22:53:43 +05304380 if ((colon = strnchr(name, MODULE_NAME_LEN, ':')) != NULL) {
Mathias Krause4f6de4d2013-07-02 15:35:11 +09304381 if ((mod = find_module_all(name, colon - name, false)) != NULL)
Jessica Yu2d25bc52018-11-19 17:43:58 +01004382 ret = find_kallsyms_symbol_value(mod, colon+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 } else {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304384 list_for_each_entry_rcu(mod, &modules, list) {
4385 if (mod->state == MODULE_STATE_UNFORMED)
4386 continue;
Jessica Yu2d25bc52018-11-19 17:43:58 +01004387 if ((ret = find_kallsyms_symbol_value(mod, name)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08004391 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 return ret;
4393}
Anders Kaseorg75a66612008-12-05 19:03:58 -05004394
Christoph Hellwig3e355202021-02-02 13:13:27 +01004395#ifdef CONFIG_LIVEPATCH
Anders Kaseorg75a66612008-12-05 19:03:58 -05004396int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
4397 struct module *, unsigned long),
4398 void *data)
4399{
4400 struct module *mod;
4401 unsigned int i;
Dan Carpenter1e80d9c2021-02-10 13:57:07 +03004402 int ret = 0;
Anders Kaseorg75a66612008-12-05 19:03:58 -05004403
Christoph Hellwig013c1662021-02-02 13:13:26 +01004404 mutex_lock(&module_mutex);
Anders Kaseorg75a66612008-12-05 19:03:58 -05004405 list_for_each_entry(mod, &modules, list) {
Rusty Russell82440622016-02-03 16:55:26 +10304406 /* We hold module_mutex: no need for rcu_dereference_sched */
4407 struct mod_kallsyms *kallsyms = mod->kallsyms;
4408
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304409 if (mod->state == MODULE_STATE_UNFORMED)
4410 continue;
Rusty Russell82440622016-02-03 16:55:26 +10304411 for (i = 0; i < kallsyms->num_symtab; i++) {
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004412 const Elf_Sym *sym = &kallsyms->symtab[i];
Jessica Yu9f2d1e62018-06-05 10:22:52 +02004413
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004414 if (sym->st_shndx == SHN_UNDEF)
Jessica Yu9f2d1e62018-06-05 10:22:52 +02004415 continue;
4416
Jessica Yu2d25bc52018-11-19 17:43:58 +01004417 ret = fn(data, kallsyms_symbol_name(kallsyms, i),
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004418 mod, kallsyms_symbol_value(sym));
Anders Kaseorg75a66612008-12-05 19:03:58 -05004419 if (ret != 0)
Christoph Hellwig013c1662021-02-02 13:13:26 +01004420 break;
Anders Kaseorg75a66612008-12-05 19:03:58 -05004421 }
4422 }
Christoph Hellwig013c1662021-02-02 13:13:26 +01004423 mutex_unlock(&module_mutex);
4424 return ret;
Anders Kaseorg75a66612008-12-05 19:03:58 -05004425}
Christoph Hellwig3e355202021-02-02 13:13:27 +01004426#endif /* CONFIG_LIVEPATCH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427#endif /* CONFIG_KALLSYMS */
4428
Sami Tolvanencf68fff2021-04-08 11:28:26 -07004429static void cfi_init(struct module *mod)
4430{
4431#ifdef CONFIG_CFI_CLANG
4432 initcall_t *init;
4433 exitcall_t *exit;
4434
4435 rcu_read_lock_sched();
4436 mod->cfi_check = (cfi_check_fn)
4437 find_kallsyms_symbol_value(mod, "__cfi_check");
4438 init = (initcall_t *)
4439 find_kallsyms_symbol_value(mod, "__cfi_jt_init_module");
4440 exit = (exitcall_t *)
4441 find_kallsyms_symbol_value(mod, "__cfi_jt_cleanup_module");
4442 rcu_read_unlock_sched();
4443
4444 /* Fix init/exit functions to point to the CFI jump table */
4445 if (init)
4446 mod->init = *init;
4447 if (exit)
4448 mod->exit = *exit;
4449
4450 cfi_module_add(mod, module_addr_min);
4451#endif
4452}
4453
4454static void cfi_cleanup(struct module *mod)
4455{
4456#ifdef CONFIG_CFI_CLANG
4457 cfi_module_remove(mod, module_addr_min);
4458#endif
4459}
4460
Petr Mladek7fd83292016-09-21 13:47:22 +02004461/* Maximum number of characters written by module_flags() */
4462#define MODULE_FLAGS_BUF_SIZE (TAINT_FLAGS_COUNT + 4)
4463
4464/* Keep in sync with MODULE_FLAGS_BUF_SIZE !!! */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004465static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004466{
4467 int bx = 0;
4468
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304469 BUG_ON(mod->state == MODULE_STATE_UNFORMED);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004470 if (mod->taints ||
4471 mod->state == MODULE_STATE_GOING ||
4472 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004473 buf[bx++] = '(';
Kay Sieverscca3e702012-01-13 09:32:15 +10304474 bx += module_flags_taint(mod, buf + bx);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004475 /* Show a - for module-is-being-unloaded */
4476 if (mod->state == MODULE_STATE_GOING)
4477 buf[bx++] = '-';
4478 /* Show a + for module-is-being-loaded */
4479 if (mod->state == MODULE_STATE_COMING)
4480 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004481 buf[bx++] = ')';
4482 }
4483 buf[bx] = '\0';
4484
4485 return buf;
4486}
4487
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004488#ifdef CONFIG_PROC_FS
4489/* Called by the /proc file system to return a list of modules. */
4490static void *m_start(struct seq_file *m, loff_t *pos)
4491{
4492 mutex_lock(&module_mutex);
4493 return seq_list_start(&modules, *pos);
4494}
4495
4496static void *m_next(struct seq_file *m, void *p, loff_t *pos)
4497{
4498 return seq_list_next(p, &modules, pos);
4499}
4500
4501static void m_stop(struct seq_file *m, void *p)
4502{
4503 mutex_unlock(&module_mutex);
4504}
4505
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506static int m_show(struct seq_file *m, void *p)
4507{
4508 struct module *mod = list_entry(p, struct module, list);
Petr Mladek7fd83292016-09-21 13:47:22 +02004509 char buf[MODULE_FLAGS_BUF_SIZE];
Linus Torvalds668533d2017-11-29 10:30:13 -08004510 void *value;
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004511
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304512 /* We always ignore unformed modules. */
4513 if (mod->state == MODULE_STATE_UNFORMED)
4514 return 0;
4515
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05004516 seq_printf(m, "%s %u",
Rusty Russell7523e4d2015-11-26 09:44:08 +10304517 mod->name, mod->init_layout.size + mod->core_layout.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 print_unload_info(m, mod);
4519
4520 /* Informative for users. */
4521 seq_printf(m, " %s",
Ionut Alexa6da0b562014-11-10 09:31:29 +10304522 mod->state == MODULE_STATE_GOING ? "Unloading" :
4523 mod->state == MODULE_STATE_COMING ? "Loading" :
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 "Live");
4525 /* Used by oprofile and other similar tools. */
Linus Torvalds668533d2017-11-29 10:30:13 -08004526 value = m->private ? NULL : mod->core_layout.base;
4527 seq_printf(m, " 0x%px", value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004529 /* Taints info */
4530 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004531 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004532
Ionut Alexa6da0b562014-11-10 09:31:29 +10304533 seq_puts(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 return 0;
4535}
4536
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03004537/*
4538 * Format: modulename size refcount deps address
4539 *
4540 * Where refcount is a number or -, and deps is a comma-separated list
4541 * of depends or -.
4542 */
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004543static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 .start = m_start,
4545 .next = m_next,
4546 .stop = m_stop,
4547 .show = m_show
4548};
4549
Linus Torvalds516fb7f2017-11-12 18:44:23 -08004550/*
4551 * This also sets the "private" pointer to non-NULL if the
4552 * kernel pointers should be hidden (so you can just test
4553 * "m->private" to see if you should keep the values private).
4554 *
4555 * We use the same logic as for /proc/kallsyms.
4556 */
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004557static int modules_open(struct inode *inode, struct file *file)
4558{
Linus Torvalds516fb7f2017-11-12 18:44:23 -08004559 int err = seq_open(file, &modules_op);
4560
4561 if (!err) {
4562 struct seq_file *m = file->private_data;
Kees Cookb25a7c52020-07-02 14:43:59 -07004563 m->private = kallsyms_show_value(file->f_cred) ? NULL : (void *)8ul;
Linus Torvalds516fb7f2017-11-12 18:44:23 -08004564 }
4565
Leon Yu3f553b32018-03-06 23:16:24 +08004566 return err;
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004567}
4568
Alexey Dobriyan97a32532020-02-03 17:37:17 -08004569static const struct proc_ops modules_proc_ops = {
Alexey Dobriyand919b332020-04-06 20:09:01 -07004570 .proc_flags = PROC_ENTRY_PERMANENT,
Alexey Dobriyan97a32532020-02-03 17:37:17 -08004571 .proc_open = modules_open,
4572 .proc_read = seq_read,
4573 .proc_lseek = seq_lseek,
4574 .proc_release = seq_release,
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004575};
4576
4577static int __init proc_modules_init(void)
4578{
Alexey Dobriyan97a32532020-02-03 17:37:17 -08004579 proc_create("modules", 0, NULL, &modules_proc_ops);
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004580 return 0;
4581}
4582module_init(proc_modules_init);
4583#endif
4584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585/* Given an address, look for it in the module exception tables. */
4586const struct exception_table_entry *search_module_extables(unsigned long addr)
4587{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 const struct exception_table_entry *e = NULL;
4589 struct module *mod;
4590
Rusty Russell24da1cb2007-07-15 23:41:46 -07004591 preempt_disable();
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004592 mod = __module_address(addr);
4593 if (!mod)
4594 goto out;
Daniel Walker22a8bde2007-10-18 03:06:07 -07004595
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004596 if (!mod->num_exentries)
4597 goto out;
4598
4599 e = search_extable(mod->extable,
Thomas Meyera94c33d2017-07-10 15:51:58 -07004600 mod->num_exentries,
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004601 addr);
4602out:
Rusty Russell24da1cb2007-07-15 23:41:46 -07004603 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004605 /*
4606 * Now, if we found one, we are running inside it now, hence
4607 * we cannot unload the module, hence no refcnt needed.
4608 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 return e;
4610}
4611
Sergey Shtylyov2541743e2020-11-04 23:35:51 +03004612/**
4613 * is_module_address() - is this address inside a module?
Rusty Russelle6104992009-03-31 13:05:31 -06004614 * @addr: the address to check.
4615 *
4616 * See is_module_text_address() if you simply want to see if the address
4617 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07004618 */
Rusty Russelle6104992009-03-31 13:05:31 -06004619bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07004620{
Rusty Russelle6104992009-03-31 13:05:31 -06004621 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07004622
Rusty Russell24da1cb2007-07-15 23:41:46 -07004623 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06004624 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07004625 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07004626
Rusty Russelle6104992009-03-31 13:05:31 -06004627 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07004628}
4629
Sergey Shtylyov2541743e2020-11-04 23:35:51 +03004630/**
4631 * __module_address() - get the module which contains an address.
Rusty Russelle6104992009-03-31 13:05:31 -06004632 * @addr: the address.
4633 *
4634 * Must be called with preempt disabled or module mutex held so that
4635 * module doesn't get freed during this.
4636 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07004637struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638{
4639 struct module *mod;
4640
Rusty Russell3a642e92008-07-22 19:24:28 -05004641 if (addr < module_addr_min || addr > module_addr_max)
4642 return NULL;
4643
Peter Zijlstra0be964b2015-05-27 11:09:35 +09304644 module_assert_mutex_or_preempt();
4645
Peter Zijlstra6c9692e2015-05-27 11:09:37 +09304646 mod = mod_find(addr);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304647 if (mod) {
4648 BUG_ON(!within_module(addr, mod));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304649 if (mod->state == MODULE_STATE_UNFORMED)
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304650 mod = NULL;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304651 }
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304652 return mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653}
4654
Sergey Shtylyov2541743e2020-11-04 23:35:51 +03004655/**
4656 * is_module_text_address() - is this address inside module code?
Rusty Russelle6104992009-03-31 13:05:31 -06004657 * @addr: the address to check.
4658 *
4659 * See is_module_address() if you simply want to see if the address is
4660 * anywhere in a module. See kernel_text_address() for testing if an
4661 * address corresponds to kernel or module code.
4662 */
4663bool is_module_text_address(unsigned long addr)
4664{
4665 bool ret;
4666
4667 preempt_disable();
4668 ret = __module_text_address(addr) != NULL;
4669 preempt_enable();
4670
4671 return ret;
4672}
4673
Sergey Shtylyov2541743e2020-11-04 23:35:51 +03004674/**
4675 * __module_text_address() - get the module whose code contains an address.
Rusty Russelle6104992009-03-31 13:05:31 -06004676 * @addr: the address.
4677 *
4678 * Must be called with preempt disabled or module mutex held so that
4679 * module doesn't get freed during this.
4680 */
4681struct module *__module_text_address(unsigned long addr)
4682{
4683 struct module *mod = __module_address(addr);
4684 if (mod) {
4685 /* Make sure it's within the text section. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10304686 if (!within(addr, mod->init_layout.base, mod->init_layout.text_size)
4687 && !within(addr, mod->core_layout.base, mod->core_layout.text_size))
Rusty Russelle6104992009-03-31 13:05:31 -06004688 mod = NULL;
4689 }
4690 return mod;
4691}
4692
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693/* Don't grab lock, we're oopsing. */
4694void print_modules(void)
4695{
4696 struct module *mod;
Petr Mladek7fd83292016-09-21 13:47:22 +02004697 char buf[MODULE_FLAGS_BUF_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Linus Torvaldsb2311252009-06-16 11:07:14 -07004699 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02004700 /* Most callers should already have preempt disabled, but make sure */
4701 preempt_disable();
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304702 list_for_each_entry_rcu(mod, &modules, list) {
4703 if (mod->state == MODULE_STATE_UNFORMED)
4704 continue;
Jiri Slaby27bba4d2014-02-03 11:13:13 +10304705 pr_cont(" %s%s", mod->name, module_flags(mod, buf));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304706 }
Andi Kleend72b3752008-08-30 10:09:00 +02004707 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01004708 if (last_unloaded_module[0])
Jiri Slaby27bba4d2014-02-03 11:13:13 +10304709 pr_cont(" [last unloaded: %s]", last_unloaded_module);
4710 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711}
4712
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713#ifdef CONFIG_MODVERSIONS
Sergey Shtylyov24b9f0d2020-11-07 23:20:52 +03004714/*
4715 * Generate the signature for all relevant module structures here.
4716 * If these change, we don't want to try to parse the module.
4717 */
Rusty Russell8c8ef422009-03-31 13:05:34 -06004718void module_layout(struct module *mod,
4719 struct modversion_info *ver,
4720 struct kernel_param *kp,
4721 struct kernel_symbol *ks,
Mathieu Desnoyers65498642011-01-26 17:26:22 -05004722 struct tracepoint * const *tp)
Rusty Russell8c8ef422009-03-31 13:05:34 -06004723{
4724}
4725EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726#endif