blob: a9020bdd4cf6bddcb666583d91a02875204557d3 [file] [log] [blame]
Arjan van de Venf71d20e2006-06-28 04:26:45 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (C) 2002 Richard Henderson
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003 Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
Paul Gortmaker9984de12011-05-23 14:51:41 -040019#include <linux/export.h>
Paul Gortmaker8a293be2016-07-23 14:01:45 -040020#include <linux/extable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/moduleloader.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040022#include <linux/trace_events.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/init.h>
Alexey Dobriyanae84e322007-05-08 00:28:38 -070024#include <linux/kallsyms.h>
Kees Cook34e11692012-10-16 07:31:07 +103025#include <linux/file.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040026#include <linux/fs.h>
Roland McGrath6d760132007-10-16 23:26:40 -070027#include <linux/sysfs.h>
Randy Dunlap9f158332005-09-13 01:25:16 -070028#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/slab.h>
30#include <linux/vmalloc.h>
31#include <linux/elf.h>
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +040032#include <linux/proc_fs.h>
Kees Cook2e72d512012-10-16 07:32:07 +103033#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/seq_file.h>
35#include <linux/syscalls.h>
36#include <linux/fcntl.h>
37#include <linux/rcupdate.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080038#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/cpu.h>
40#include <linux/moduleparam.h>
41#include <linux/errno.h>
42#include <linux/err.h>
43#include <linux/vermagic.h>
44#include <linux/notifier.h>
Al Virof6a57032006-10-18 01:47:25 -040045#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/device.h>
Matt Domschc988d2b2005-06-23 22:05:15 -070047#include <linux/string.h>
Arjan van de Ven97d1f152006-03-23 03:00:24 -080048#include <linux/mutex.h>
Andi Kleend72b3752008-08-30 10:09:00 +020049#include <linux/rculist.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080050#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/cacheflush.h>
Michael Ellerman563ec5c2017-07-06 15:35:58 -070052#include <linux/set_memory.h>
Bernd Schmidteb8cdec2009-09-21 17:03:57 -070053#include <asm/mmu_context.h>
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020054#include <linux/license.h>
Christoph Lameter6d762392008-02-08 04:18:42 -080055#include <asm/sections.h>
Mathieu Desnoyers97e1c182008-07-18 12:16:16 -040056#include <linux/tracepoint.h>
Steven Rostedt90d595f2008-08-14 15:45:09 -040057#include <linux/ftrace.h>
Jessica Yu7e545d62016-03-16 20:55:39 -040058#include <linux/livepatch.h>
Arjan van de Ven22a9d642009-01-07 08:45:46 -080059#include <linux/async.h>
Tejun Heofbf59bc2009-02-20 16:29:08 +090060#include <linux/percpu.h>
Catalin Marinas4f2294b2009-06-11 13:23:20 +010061#include <linux/kmemleak.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040062#include <linux/jump_label.h>
matthieu castet84e1c6b2010-11-16 22:35:16 +010063#include <linux/pfn.h>
Alessio Igor Bogani403ed272011-04-20 11:10:52 +020064#include <linux/bsearch.h>
Luis de Bethencourt9d5059c2016-08-02 14:03:47 -070065#include <linux/dynamic_debug.h>
Richard Guy Briggsca86cad2017-02-04 13:10:38 -050066#include <linux/audit.h>
Rusty Russell2f3238a2012-10-22 18:09:41 +103067#include <uapi/linux/module.h>
Rusty Russell106a4ee2012-09-26 10:09:40 +010068#include "module-internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Li Zefan7ead8b82009-08-17 16:56:28 +080070#define CREATE_TRACE_POINTS
71#include <trace/events/module.h>
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#ifndef ARCH_SHF_SMALL
74#define ARCH_SHF_SMALL 0
75#endif
76
matthieu castet84e1c6b2010-11-16 22:35:16 +010077/*
78 * Modules' sections will be aligned on page boundaries
79 * to ensure complete separation of code and data, but
Laura Abbott0f5bf6d2017-02-06 16:31:58 -080080 * only when CONFIG_STRICT_MODULE_RWX=y
matthieu castet84e1c6b2010-11-16 22:35:16 +010081 */
Laura Abbott0f5bf6d2017-02-06 16:31:58 -080082#ifdef CONFIG_STRICT_MODULE_RWX
matthieu castet84e1c6b2010-11-16 22:35:16 +010083# define debug_align(X) ALIGN(X, PAGE_SIZE)
84#else
85# define debug_align(X) (X)
86#endif
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/* If this is set, the section belongs in the init part of the module */
89#define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
90
Rusty Russell75676502010-06-05 11:17:36 -060091/*
92 * Mutex protects:
93 * 1) List of modules (also safely readable with preempt_disable),
94 * 2) module_use links,
95 * 3) module_addr_min/module_addr_max.
Masami Hiramatsue513cc12014-11-10 09:30:29 +103096 * (delete and add uses RCU list operations). */
Tim Abbottc6b37802008-12-05 19:03:59 -050097DEFINE_MUTEX(module_mutex);
98EXPORT_SYMBOL_GPL(module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static LIST_HEAD(modules);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930100
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -0700101/* Work queue for freeing init sections in success case */
102static struct work_struct init_free_wq;
103static struct llist_head init_free_list;
104
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930105#ifdef CONFIG_MODULES_TREE_LOOKUP
106
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930107/*
108 * Use a latched RB-tree for __module_address(); this allows us to use
109 * RCU-sched lookups of the address from any context.
110 *
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930111 * This is conditional on PERF_EVENTS || TRACING because those can really hit
112 * __module_address() hard by doing a lot of stack unwinding; potentially from
113 * NMI context.
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930114 */
115
116static __always_inline unsigned long __mod_tree_val(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->base;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930121}
122
123static __always_inline unsigned long __mod_tree_size(struct latch_tree_node *n)
124{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030125 struct module_layout *layout = container_of(n, struct module_layout, mtn.node);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930126
Rusty Russell7523e4d2015-11-26 09:44:08 +1030127 return (unsigned long)layout->size;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930128}
129
130static __always_inline bool
131mod_tree_less(struct latch_tree_node *a, struct latch_tree_node *b)
132{
133 return __mod_tree_val(a) < __mod_tree_val(b);
134}
135
136static __always_inline int
137mod_tree_comp(void *key, struct latch_tree_node *n)
138{
139 unsigned long val = (unsigned long)key;
140 unsigned long start, end;
141
142 start = __mod_tree_val(n);
143 if (val < start)
144 return -1;
145
146 end = start + __mod_tree_size(n);
147 if (val >= end)
148 return 1;
149
150 return 0;
151}
152
153static const struct latch_tree_ops mod_tree_ops = {
154 .less = mod_tree_less,
155 .comp = mod_tree_comp,
156};
157
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930158static struct mod_tree_root {
159 struct latch_tree_root root;
160 unsigned long addr_min;
161 unsigned long addr_max;
162} mod_tree __cacheline_aligned = {
163 .addr_min = -1UL,
164};
165
166#define module_addr_min mod_tree.addr_min
167#define module_addr_max mod_tree.addr_max
168
169static noinline void __mod_tree_insert(struct mod_tree_node *node)
170{
171 latch_tree_insert(&node->node, &mod_tree.root, &mod_tree_ops);
172}
173
174static void __mod_tree_remove(struct mod_tree_node *node)
175{
176 latch_tree_erase(&node->node, &mod_tree.root, &mod_tree_ops);
177}
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930178
179/*
180 * These modifications: insert, remove_init and remove; are serialized by the
181 * module_mutex.
182 */
183static void mod_tree_insert(struct module *mod)
184{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030185 mod->core_layout.mtn.mod = mod;
186 mod->init_layout.mtn.mod = mod;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930187
Rusty Russell7523e4d2015-11-26 09:44:08 +1030188 __mod_tree_insert(&mod->core_layout.mtn);
189 if (mod->init_layout.size)
190 __mod_tree_insert(&mod->init_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930191}
192
193static void mod_tree_remove_init(struct module *mod)
194{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030195 if (mod->init_layout.size)
196 __mod_tree_remove(&mod->init_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930197}
198
199static void mod_tree_remove(struct module *mod)
200{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030201 __mod_tree_remove(&mod->core_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930202 mod_tree_remove_init(mod);
203}
204
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930205static struct module *mod_find(unsigned long addr)
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930206{
207 struct latch_tree_node *ltn;
208
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930209 ltn = latch_tree_find((void *)addr, &mod_tree.root, &mod_tree_ops);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930210 if (!ltn)
211 return NULL;
212
213 return container_of(ltn, struct mod_tree_node, node)->mod;
214}
215
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930216#else /* MODULES_TREE_LOOKUP */
217
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930218static unsigned long module_addr_min = -1UL, module_addr_max = 0;
219
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930220static void mod_tree_insert(struct module *mod) { }
221static void mod_tree_remove_init(struct module *mod) { }
222static void mod_tree_remove(struct module *mod) { }
223
224static struct module *mod_find(unsigned long addr)
225{
226 struct module *mod;
227
228 list_for_each_entry_rcu(mod, &modules, list) {
229 if (within_module(addr, mod))
230 return mod;
231 }
232
233 return NULL;
234}
235
236#endif /* MODULES_TREE_LOOKUP */
237
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930238/*
239 * Bounds of module text, for speeding up __module_address.
240 * Protected by module_mutex.
241 */
242static void __mod_update_bounds(void *base, unsigned int size)
243{
244 unsigned long min = (unsigned long)base;
245 unsigned long max = min + size;
246
247 if (min < module_addr_min)
248 module_addr_min = min;
249 if (max > module_addr_max)
250 module_addr_max = max;
251}
252
253static void mod_update_bounds(struct module *mod)
254{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030255 __mod_update_bounds(mod->core_layout.base, mod->core_layout.size);
256 if (mod->init_layout.size)
257 __mod_update_bounds(mod->init_layout.base, mod->init_layout.size);
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930258}
259
Jason Wessel67fc4e02010-05-20 21:04:21 -0500260#ifdef CONFIG_KGDB_KDB
261struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
262#endif /* CONFIG_KGDB_KDB */
263
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930264static void module_assert_mutex(void)
Rusty Russell106a4ee2012-09-26 10:09:40 +0100265{
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930266 lockdep_assert_held(&module_mutex);
Rusty Russell106a4ee2012-09-26 10:09:40 +0100267}
268
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930269static void module_assert_mutex_or_preempt(void)
270{
271#ifdef CONFIG_LOCKDEP
272 if (unlikely(!debug_locks))
273 return;
Rusty Russell106a4ee2012-09-26 10:09:40 +0100274
Steven Rostedt95025142016-07-19 05:59:24 +0930275 WARN_ON_ONCE(!rcu_read_lock_sched_held() &&
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930276 !lockdep_is_held(&module_mutex));
277#endif
278}
279
Luis R. Rodriguez6727bb92015-05-27 11:09:39 +0930280static bool sig_enforce = IS_ENABLED(CONFIG_MODULE_SIG_FORCE);
Rusty Russell106a4ee2012-09-26 10:09:40 +0100281module_param(sig_enforce, bool_enable_only, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Bruno E. O. Meneguelefda784e2017-10-24 15:37:00 -0200283/*
284 * Export sig_enforce kernel cmdline parameter to allow other subsystems rely
285 * on that instead of directly to CONFIG_MODULE_SIG_FORCE config.
286 */
287bool is_module_sig_enforced(void)
288{
289 return sig_enforce;
290}
291EXPORT_SYMBOL(is_module_sig_enforced);
292
Stephen Rothwell19e45292009-04-14 17:27:18 +1000293/* Block module loading/unloading? */
294int modules_disabled = 0;
Dave Young02608be2012-02-01 10:33:14 +0800295core_param(nomodule, modules_disabled, bint, 0);
Stephen Rothwell19e45292009-04-14 17:27:18 +1000296
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500297/* Waiting for a module to finish initializing? */
298static DECLARE_WAIT_QUEUE_HEAD(module_wq);
299
Alan Sterne041c682006-03-27 01:16:30 -0800300static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Ionut Alexa6da0b562014-11-10 09:31:29 +1030302int register_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_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306EXPORT_SYMBOL(register_module_notifier);
307
Ionut Alexa6da0b562014-11-10 09:31:29 +1030308int unregister_module_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Alan Sterne041c682006-03-27 01:16:30 -0800310 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312EXPORT_SYMBOL(unregister_module_notifier);
313
Miroslav Benes71d9f502016-11-16 16:45:48 +0100314/*
315 * We require a truly strong try_module_get(): 0 means success.
316 * Otherwise an error is returned due to ongoing or failed
317 * initialization etc.
318 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319static inline int strong_try_module_get(struct module *mod)
320{
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030321 BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500323 return -EBUSY;
324 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500326 else
327 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Rusty Russell373d4d02013-01-21 17:17:39 +1030330static inline void add_taint_module(struct module *mod, unsigned flag,
331 enum lockdep_ok lockdep_ok)
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700332{
Rusty Russell373d4d02013-01-21 17:17:39 +1030333 add_taint(flag, lockdep_ok);
Petr Mladek7fd83292016-09-21 13:47:22 +0200334 set_bit(flag, &mod->taints);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700335}
336
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200337/*
338 * A thread that wants to hold a reference to a module only while it
339 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 */
Jiri Kosinabf262dc2016-04-12 05:02:09 +0930341void __noreturn __module_put_and_exit(struct module *mod, long code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 module_put(mod);
344 do_exit(code);
345}
346EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/* Find a module section: 0 means not found. */
Rusty Russell49668682010-08-05 12:59:10 -0600349static unsigned int find_sec(const struct load_info *info, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 unsigned int i;
352
Rusty Russell49668682010-08-05 12:59:10 -0600353 for (i = 1; i < info->hdr->e_shnum; i++) {
354 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /* Alloc bit cleared means "ignore it." */
Rusty Russell49668682010-08-05 12:59:10 -0600356 if ((shdr->sh_flags & SHF_ALLOC)
357 && strcmp(info->secstrings + shdr->sh_name, name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return i;
Rusty Russell49668682010-08-05 12:59:10 -0600359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361}
362
Rusty Russell5e458cc2008-10-22 10:00:13 -0500363/* Find a module section, or NULL. */
Rusty Russell49668682010-08-05 12:59:10 -0600364static void *section_addr(const struct load_info *info, const char *name)
Rusty Russell5e458cc2008-10-22 10:00:13 -0500365{
366 /* Section 0 has sh_addr 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600367 return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500368}
369
370/* Find a module section, or NULL. Fill in number of "objects" in section. */
Rusty Russell49668682010-08-05 12:59:10 -0600371static void *section_objs(const struct load_info *info,
Rusty Russell5e458cc2008-10-22 10:00:13 -0500372 const char *name,
373 size_t object_size,
374 unsigned int *num)
375{
Rusty Russell49668682010-08-05 12:59:10 -0600376 unsigned int sec = find_sec(info, name);
Rusty Russell5e458cc2008-10-22 10:00:13 -0500377
378 /* Section 0 has sh_addr 0 and sh_size 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600379 *num = info->sechdrs[sec].sh_size / object_size;
380 return (void *)info->sechdrs[sec].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/* Provided by the linker */
384extern const struct kernel_symbol __start___ksymtab[];
385extern const struct kernel_symbol __stop___ksymtab[];
386extern const struct kernel_symbol __start___ksymtab_gpl[];
387extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800388extern const struct kernel_symbol __start___ksymtab_gpl_future[];
389extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000390extern const s32 __start___kcrctab[];
391extern const s32 __start___kcrctab_gpl[];
392extern const s32 __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500393#ifdef CONFIG_UNUSED_SYMBOLS
394extern const struct kernel_symbol __start___ksymtab_unused[];
395extern const struct kernel_symbol __stop___ksymtab_unused[];
396extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
397extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000398extern const s32 __start___kcrctab_unused[];
399extern const s32 __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402#ifndef CONFIG_MODVERSIONS
403#define symversion(base, idx) NULL
404#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800405#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#endif
407
Rusty Russelldafd0942008-07-22 19:24:25 -0500408static bool each_symbol_in_section(const struct symsearch *arr,
409 unsigned int arrsize,
410 struct module *owner,
411 bool (*fn)(const struct symsearch *syms,
412 struct module *owner,
Rusty Russellde4d8d52011-04-19 21:49:58 +0200413 void *data),
Rusty Russelldafd0942008-07-22 19:24:25 -0500414 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100415{
Rusty Russellde4d8d52011-04-19 21:49:58 +0200416 unsigned int j;
Rusty Russelldafd0942008-07-22 19:24:25 -0500417
418 for (j = 0; j < arrsize; j++) {
Rusty Russellde4d8d52011-04-19 21:49:58 +0200419 if (fn(&arr[j], owner, data))
420 return true;
Rusty Russelldafd0942008-07-22 19:24:25 -0500421 }
422
423 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100424}
425
Rusty Russelldafd0942008-07-22 19:24:25 -0500426/* Returns true as soon as fn returns true, otherwise false. */
Rusty Russellde4d8d52011-04-19 21:49:58 +0200427bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
428 struct module *owner,
429 void *data),
430 void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700431{
Rusty Russelldafd0942008-07-22 19:24:25 -0500432 struct module *mod;
Linus Torvalds44032e62010-08-05 12:59:05 -0600433 static const struct symsearch arr[] = {
Rusty Russelldafd0942008-07-22 19:24:25 -0500434 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
435 NOT_GPL_ONLY, false },
436 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
437 __start___kcrctab_gpl,
438 GPL_ONLY, false },
439 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
440 __start___kcrctab_gpl_future,
441 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500442#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500443 { __start___ksymtab_unused, __stop___ksymtab_unused,
444 __start___kcrctab_unused,
445 NOT_GPL_ONLY, true },
446 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
447 __start___kcrctab_unused_gpl,
448 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500449#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500450 };
451
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930452 module_assert_mutex_or_preempt();
453
Rusty Russelldafd0942008-07-22 19:24:25 -0500454 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
455 return true;
456
Andi Kleend72b3752008-08-30 10:09:00 +0200457 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500458 struct symsearch arr[] = {
459 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
460 NOT_GPL_ONLY, false },
461 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
462 mod->gpl_crcs,
463 GPL_ONLY, false },
464 { mod->gpl_future_syms,
465 mod->gpl_future_syms + mod->num_gpl_future_syms,
466 mod->gpl_future_crcs,
467 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500468#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500469 { mod->unused_syms,
470 mod->unused_syms + mod->num_unused_syms,
471 mod->unused_crcs,
472 NOT_GPL_ONLY, true },
473 { mod->unused_gpl_syms,
474 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
475 mod->unused_gpl_crcs,
476 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500477#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500478 };
479
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030480 if (mod->state == MODULE_STATE_UNFORMED)
481 continue;
482
Rusty Russelldafd0942008-07-22 19:24:25 -0500483 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
484 return true;
485 }
486 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700487}
Rusty Russellde4d8d52011-04-19 21:49:58 +0200488EXPORT_SYMBOL_GPL(each_symbol_section);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700489
Rusty Russelldafd0942008-07-22 19:24:25 -0500490struct find_symbol_arg {
491 /* Input */
492 const char *name;
493 bool gplok;
494 bool warn;
495
496 /* Output */
497 struct module *owner;
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000498 const s32 *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500499 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500500};
501
Jessica Yu2d25bc52018-11-19 17:43:58 +0100502static bool check_exported_symbol(const struct symsearch *syms,
503 struct module *owner,
504 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500505{
Rusty Russelldafd0942008-07-22 19:24:25 -0500506 struct find_symbol_arg *fsa = data;
507
Rusty Russelldafd0942008-07-22 19:24:25 -0500508 if (!fsa->gplok) {
509 if (syms->licence == GPL_ONLY)
510 return false;
511 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800512 pr_warn("Symbol %s is being used by a non-GPL module, "
513 "which will not be allowed in the future\n",
514 fsa->name);
Rusty Russelldafd0942008-07-22 19:24:25 -0500515 }
516 }
517
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500518#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500519 if (syms->unused && fsa->warn) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800520 pr_warn("Symbol %s is marked as UNUSED, however this module is "
521 "using it.\n", fsa->name);
522 pr_warn("This symbol will go away in the future.\n");
Yannick Guerrini7b63c3a2015-03-24 12:31:40 +1030523 pr_warn("Please evaluate if this is the right api to use and "
524 "if it really is, submit a report to the linux kernel "
525 "mailing list together with submitting your code for "
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800526 "inclusion.\n");
Rusty Russellad9546c2008-05-01 21:14:59 -0500527 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500528#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500529
530 fsa->owner = owner;
531 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500532 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500533 return true;
534}
535
Ard Biesheuvel7290d582018-08-21 21:56:09 -0700536static unsigned long kernel_symbol_value(const struct kernel_symbol *sym)
537{
538#ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
539 return (unsigned long)offset_to_ptr(&sym->value_offset);
540#else
541 return sym->value;
542#endif
543}
544
545static const char *kernel_symbol_name(const struct kernel_symbol *sym)
546{
547#ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
548 return offset_to_ptr(&sym->name_offset);
549#else
550 return sym->name;
551#endif
552}
553
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200554static int cmp_name(const void *va, const void *vb)
555{
556 const char *a;
557 const struct kernel_symbol *b;
558 a = va; b = vb;
Ard Biesheuvel7290d582018-08-21 21:56:09 -0700559 return strcmp(a, kernel_symbol_name(b));
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200560}
561
Jessica Yu2d25bc52018-11-19 17:43:58 +0100562static bool find_exported_symbol_in_section(const struct symsearch *syms,
563 struct module *owner,
564 void *data)
Rusty Russellde4d8d52011-04-19 21:49:58 +0200565{
566 struct find_symbol_arg *fsa = data;
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200567 struct kernel_symbol *sym;
Rusty Russellde4d8d52011-04-19 21:49:58 +0200568
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200569 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
570 sizeof(struct kernel_symbol), cmp_name);
571
Jessica Yu2d25bc52018-11-19 17:43:58 +0100572 if (sym != NULL && check_exported_symbol(syms, owner,
573 sym - syms->start, data))
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200574 return true;
575
Rusty Russellde4d8d52011-04-19 21:49:58 +0200576 return false;
577}
578
Jessica Yu2d25bc52018-11-19 17:43:58 +0100579/* Find an exported symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600580 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500581const struct kernel_symbol *find_symbol(const char *name,
582 struct module **owner,
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000583 const s32 **crc,
Tim Abbottc6b37802008-12-05 19:03:59 -0500584 bool gplok,
585 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Rusty Russelldafd0942008-07-22 19:24:25 -0500587 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Rusty Russelldafd0942008-07-22 19:24:25 -0500589 fsa.name = name;
590 fsa.gplok = gplok;
591 fsa.warn = warn;
592
Jessica Yu2d25bc52018-11-19 17:43:58 +0100593 if (each_symbol_section(find_exported_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500594 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500595 *owner = fsa.owner;
596 if (crc)
597 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500598 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500600
Jim Cromie5e124162011-12-06 12:11:31 -0700601 pr_debug("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500602 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
Tim Abbottc6b37802008-12-05 19:03:59 -0500604EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Rusty Russellfe0d34d2015-07-29 05:52:14 +0930606/*
607 * Search for module by name: must hold module_mutex (or preempt disabled
608 * for read-only access).
609 */
Mathias Krause4f6de4d52013-07-02 15:35:11 +0930610static struct module *find_module_all(const char *name, size_t len,
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030611 bool even_unformed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 struct module *mod;
614
Rusty Russellfe0d34d2015-07-29 05:52:14 +0930615 module_assert_mutex_or_preempt();
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930616
Luis R. Rodriguez93437352017-05-26 14:12:25 -0700617 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030618 if (!even_unformed && mod->state == MODULE_STATE_UNFORMED)
619 continue;
Mathias Krause4f6de4d52013-07-02 15:35:11 +0930620 if (strlen(mod->name) == len && !memcmp(mod->name, name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return mod;
622 }
623 return NULL;
624}
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030625
626struct module *find_module(const char *name)
627{
Rusty Russellfe0d34d2015-07-29 05:52:14 +0930628 module_assert_mutex();
Mathias Krause4f6de4d52013-07-02 15:35:11 +0930629 return find_module_all(name, strlen(name), false);
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030630}
Tim Abbottc6b37802008-12-05 19:03:59 -0500631EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900634
Tejun Heo259354d2010-03-10 18:56:10 +0900635static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900636{
Tejun Heo259354d2010-03-10 18:56:10 +0900637 return mod->percpu;
638}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900639
Rusty Russell9eb76d72013-07-03 10:06:29 +0930640static int percpu_modalloc(struct module *mod, struct load_info *info)
Tejun Heo259354d2010-03-10 18:56:10 +0900641{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930642 Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu];
643 unsigned long align = pcpusec->sh_addralign;
644
645 if (!pcpusec->sh_size)
646 return 0;
647
Tejun Heofbf59bc2009-02-20 16:29:08 +0900648 if (align > PAGE_SIZE) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800649 pr_warn("%s: per-cpu alignment %li > %li\n",
650 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900651 align = PAGE_SIZE;
652 }
653
Rusty Russell9eb76d72013-07-03 10:06:29 +0930654 mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align);
Tejun Heo259354d2010-03-10 18:56:10 +0900655 if (!mod->percpu) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800656 pr_warn("%s: Could not allocate %lu bytes percpu data\n",
657 mod->name, (unsigned long)pcpusec->sh_size);
Tejun Heo259354d2010-03-10 18:56:10 +0900658 return -ENOMEM;
659 }
Rusty Russell9eb76d72013-07-03 10:06:29 +0930660 mod->percpu_size = pcpusec->sh_size;
Tejun Heo259354d2010-03-10 18:56:10 +0900661 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900662}
663
Tejun Heo259354d2010-03-10 18:56:10 +0900664static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900665{
Tejun Heo259354d2010-03-10 18:56:10 +0900666 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900667}
668
Rusty Russell49668682010-08-05 12:59:10 -0600669static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900670{
Rusty Russell49668682010-08-05 12:59:10 -0600671 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900672}
673
Tejun Heo259354d2010-03-10 18:56:10 +0900674static void percpu_modcopy(struct module *mod,
675 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900676{
677 int cpu;
678
679 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900680 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900681}
682
Thomas Gleixner383776f2017-02-27 15:37:36 +0100683bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
Tejun Heo10fad5e2010-03-10 18:57:54 +0900684{
685 struct module *mod;
686 unsigned int cpu;
687
688 preempt_disable();
689
690 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030691 if (mod->state == MODULE_STATE_UNFORMED)
692 continue;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900693 if (!mod->percpu_size)
694 continue;
695 for_each_possible_cpu(cpu) {
696 void *start = per_cpu_ptr(mod->percpu, cpu);
Thomas Gleixner383776f2017-02-27 15:37:36 +0100697 void *va = (void *)addr;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900698
Thomas Gleixner383776f2017-02-27 15:37:36 +0100699 if (va >= start && va < start + mod->percpu_size) {
Peter Zijlstra8ce371f2017-03-20 12:26:55 +0100700 if (can_addr) {
Thomas Gleixner383776f2017-02-27 15:37:36 +0100701 *can_addr = (unsigned long) (va - start);
Peter Zijlstra8ce371f2017-03-20 12:26:55 +0100702 *can_addr += (unsigned long)
703 per_cpu_ptr(mod->percpu,
704 get_boot_cpu_id());
705 }
Tejun Heo10fad5e2010-03-10 18:57:54 +0900706 preempt_enable();
707 return true;
708 }
709 }
710 }
711
712 preempt_enable();
713 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700714}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Thomas Gleixner383776f2017-02-27 15:37:36 +0100716/**
717 * is_module_percpu_address - test whether address is from module static percpu
718 * @addr: address to test
719 *
720 * Test whether @addr belongs to module static percpu area.
721 *
722 * RETURNS:
723 * %true if @addr is from module static percpu area
724 */
725bool is_module_percpu_address(unsigned long addr)
726{
727 return __is_module_percpu_address(addr, NULL);
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900731
Tejun Heo259354d2010-03-10 18:56:10 +0900732static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 return NULL;
735}
Rusty Russell9eb76d72013-07-03 10:06:29 +0930736static int percpu_modalloc(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930738 /* UP modules shouldn't have this section: ENOMEM isn't quite right */
739 if (info->sechdrs[info->index.pcpu].sh_size != 0)
740 return -ENOMEM;
741 return 0;
Tejun Heo259354d2010-03-10 18:56:10 +0900742}
743static inline void percpu_modfree(struct module *mod)
744{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
Rusty Russell49668682010-08-05 12:59:10 -0600746static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 return 0;
749}
Tejun Heo259354d2010-03-10 18:56:10 +0900750static inline void percpu_modcopy(struct module *mod,
751 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 /* pcpusec should be 0, and size of that section should be 0. */
754 BUG_ON(size != 0);
755}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900756bool is_module_percpu_address(unsigned long addr)
757{
758 return false;
759}
Tejun Heo6b588c12009-02-20 16:29:07 +0900760
Thomas Gleixner383776f2017-02-27 15:37:36 +0100761bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
762{
763 return false;
764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766#endif /* CONFIG_SMP */
767
Matt Domschc988d2b2005-06-23 22:05:15 -0700768#define MODINFO_ATTR(field) \
769static void setup_modinfo_##field(struct module *mod, const char *s) \
770{ \
771 mod->field = kstrdup(s, GFP_KERNEL); \
772} \
773static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
Kay Sievers4befb022011-07-24 22:06:04 +0930774 struct module_kobject *mk, char *buffer) \
Matt Domschc988d2b2005-06-23 22:05:15 -0700775{ \
Chen Gangcc56ded2013-08-20 15:34:21 +0930776 return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field); \
Matt Domschc988d2b2005-06-23 22:05:15 -0700777} \
778static int modinfo_##field##_exists(struct module *mod) \
779{ \
780 return mod->field != NULL; \
781} \
782static void free_modinfo_##field(struct module *mod) \
783{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700784 kfree(mod->field); \
785 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700786} \
787static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900788 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700789 .show = show_modinfo_##field, \
790 .setup = setup_modinfo_##field, \
791 .test = modinfo_##field##_exists, \
792 .free = free_modinfo_##field, \
793};
794
795MODINFO_ATTR(version);
796MODINFO_ATTR(srcversion);
797
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100798static char last_unloaded_module[MODULE_NAME_LEN+1];
799
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800800#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400801
802EXPORT_TRACEPOINT_SYMBOL(module_get);
803
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030804/* MODULE_REF_BASE is the base reference count by kmodule loader. */
805#define MODULE_REF_BASE 1
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600808static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030810 /*
811 * Initialize reference counter to MODULE_REF_BASE.
812 * refcnt == 0 means module is going.
813 */
814 atomic_set(&mod->refcnt, MODULE_REF_BASE);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600815
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700816 INIT_LIST_HEAD(&mod->source_list);
817 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /* Hold reference count during initialization. */
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030820 atomic_inc(&mod->refcnt);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600821
822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825/* Does a already use b? */
826static int already_uses(struct module *a, struct module *b)
827{
828 struct module_use *use;
829
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700830 list_for_each_entry(use, &b->source_list, source_list) {
831 if (use->source == a) {
Jim Cromie5e124162011-12-06 12:11:31 -0700832 pr_debug("%s uses %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return 1;
834 }
835 }
Jim Cromie5e124162011-12-06 12:11:31 -0700836 pr_debug("%s does not use %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return 0;
838}
839
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700840/*
841 * Module a uses b
842 * - we add 'a' as a "source", 'b' as a "target" of module use
843 * - the module_use is added to the list of 'b' sources (so
844 * 'b' can walk the list to see who sourced them), and of 'a'
845 * targets (so 'a' can see what modules it targets).
846 */
847static int add_module_usage(struct module *a, struct module *b)
848{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700849 struct module_use *use;
850
Jim Cromie5e124162011-12-06 12:11:31 -0700851 pr_debug("Allocating new usage for %s.\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700852 use = kmalloc(sizeof(*use), GFP_ATOMIC);
Markus Elfring9ad04572017-10-06 16:27:26 +0200853 if (!use)
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700854 return -ENOMEM;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700855
856 use->source = a;
857 use->target = b;
858 list_add(&use->source_list, &b->source_list);
859 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700860 return 0;
861}
862
Rusty Russell75676502010-06-05 11:17:36 -0600863/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600864int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600866 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100867
Rusty Russell9bea7f22010-06-05 11:17:37 -0600868 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700869 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700870
Rusty Russell9bea7f22010-06-05 11:17:37 -0600871 /* If module isn't available, we fail. */
872 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500873 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600874 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700876 err = add_module_usage(a, b);
877 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600879 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600881 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600883EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885/* Clear the unload stuff of the module. */
886static void module_unload_free(struct module *mod)
887{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700888 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Rusty Russell75676502010-06-05 11:17:36 -0600890 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700891 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
892 struct module *i = use->target;
Jim Cromie5e124162011-12-06 12:11:31 -0700893 pr_debug("%s unusing %s\n", mod->name, i->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700894 module_put(i);
895 list_del(&use->source_list);
896 list_del(&use->target_list);
897 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
Rusty Russell75676502010-06-05 11:17:36 -0600899 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800903static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 int ret = (flags & O_TRUNC);
906 if (ret)
Rusty Russell373d4d02013-01-21 17:17:39 +1030907 add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return ret;
909}
910#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800911static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 return 0;
914}
915#endif /* CONFIG_MODULE_FORCE_UNLOAD */
916
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030917/* Try to release refcount of module, 0 means success. */
918static int try_release_module_ref(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030920 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030922 /* Try to decrement refcnt which we set at loading */
923 ret = atomic_sub_return(MODULE_REF_BASE, &mod->refcnt);
924 BUG_ON(ret < 0);
925 if (ret)
926 /* Someone can put this right now, recover with checking */
927 ret = atomic_add_unless(&mod->refcnt, MODULE_REF_BASE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030929 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
932static int try_stop_module(struct module *mod, int flags, int *forced)
933{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030934 /* If it's not unused, quit unless we're forcing. */
935 if (try_release_module_ref(mod) != 0) {
936 *forced = try_force_unload(flags);
937 if (!(*forced))
938 return -EWOULDBLOCK;
939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030941 /* Mark it as dying. */
942 mod->state = MODULE_STATE_GOING;
943
944 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Rusty Russelld5db1392015-01-22 11:13:14 +1030947/**
948 * module_refcount - return the refcount or -1 if unloading
949 *
950 * @mod: the module we're checking
951 *
952 * Returns:
953 * -1 if the module is in the process of unloading
954 * otherwise the number of references in the kernel to the module
955 */
956int module_refcount(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Rusty Russelld5db1392015-01-22 11:13:14 +1030958 return atomic_read(&mod->refcnt) - MODULE_REF_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960EXPORT_SYMBOL(module_refcount);
961
962/* This exists whether we can unload or not */
963static void free_module(struct module *mod);
964
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100965SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
966 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800969 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int ret, forced = 0;
971
Kees Cook3d433212009-04-02 15:49:29 -0700972 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800973 return -EPERM;
974
975 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
976 return -EFAULT;
977 name[MODULE_NAME_LEN-1] = '\0';
978
Richard Guy Briggsf6276ac2017-05-02 10:16:04 -0400979 audit_log_kern_module(name);
980
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200981 if (mutex_lock_interruptible(&module_mutex) != 0)
982 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 mod = find_module(name);
985 if (!mod) {
986 ret = -ENOENT;
987 goto out;
988 }
989
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700990 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 /* Other modules depend on us: get rid of them first. */
992 ret = -EWOULDBLOCK;
993 goto out;
994 }
995
996 /* Doing init or already dying? */
997 if (mod->state != MODULE_STATE_LIVE) {
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930998 /* FIXME: if (force), slam module count damn the torpedoes */
Jim Cromie5e124162011-12-06 12:11:31 -0700999 pr_debug("%s already dying\n", mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 ret = -EBUSY;
1001 goto out;
1002 }
1003
1004 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -07001005 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -08001006 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (!forced) {
1008 /* This module can't be removed */
1009 ret = -EBUSY;
1010 goto out;
1011 }
1012 }
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* Stop the machine so refcounts can't move and disable module. */
1015 ret = try_stop_module(mod, flags, &forced);
1016 if (ret != 0)
1017 goto out;
1018
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02001019 mutex_unlock(&module_mutex);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001020 /* Final destruction now no one is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02001021 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02001023 blocking_notifier_call_chain(&module_notify_list,
1024 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04001025 klp_module_going(mod);
Jessica Yu7dcd1822016-02-16 17:32:33 -05001026 ftrace_release_mod(mod);
1027
Arjan van de Ven22a9d642009-01-07 08:45:46 -08001028 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -06001029
Arjan van de Vene14af7e2008-01-25 21:08:33 +01001030 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -05001031 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Rusty Russell75676502010-06-05 11:17:36 -06001033 free_module(mod);
1034 return 0;
1035out:
Ashutosh Naik6389a382006-03-23 03:00:46 -08001036 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return ret;
1038}
1039
Jianjun Kongd1e99d72008-12-08 14:26:29 +08001040static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 struct module_use *use;
1043 int printed_something = 0;
1044
Rusty Russelld5db1392015-01-22 11:13:14 +10301045 seq_printf(m, " %i ", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Ionut Alexa6da0b562014-11-10 09:31:29 +10301047 /*
1048 * Always include a trailing , so userspace can differentiate
1049 * between this and the old multi-field proc format.
1050 */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -07001051 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -07001053 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (mod->init != NULL && mod->exit == NULL) {
1057 printed_something = 1;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301058 seq_puts(m, "[permanent],");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060
1061 if (!printed_something)
Ionut Alexa6da0b562014-11-10 09:31:29 +10301062 seq_puts(m, "-");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
1065void __symbol_put(const char *symbol)
1066{
1067 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Rusty Russell24da1cb2007-07-15 23:41:46 -07001069 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001070 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 BUG();
1072 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -07001073 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075EXPORT_SYMBOL(__symbol_put);
1076
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301077/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078void symbol_put_addr(void *addr)
1079{
Trent Piepho5e376612006-05-15 09:44:06 -07001080 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301081 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301083 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -07001084 return;
1085
Peter Zijlstra275d7d42015-08-20 10:34:59 +09301086 /*
1087 * Even though we hold a reference on the module; we still need to
1088 * disable preemption in order to safely traverse the data structure.
1089 */
1090 preempt_disable();
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301091 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -06001092 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -07001093 module_put(modaddr);
Peter Zijlstra275d7d42015-08-20 10:34:59 +09301094 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096EXPORT_SYMBOL_GPL(symbol_put_addr);
1097
1098static ssize_t show_refcnt(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301099 struct module_kobject *mk, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Rusty Russelld5db1392015-01-22 11:13:14 +10301101 return sprintf(buffer, "%i\n", module_refcount(mk->mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
Kay Sieverscca3e702012-01-13 09:32:15 +10301104static struct module_attribute modinfo_refcnt =
1105 __ATTR(refcnt, 0444, show_refcnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Steven Rostedtd53799b2012-03-26 12:50:52 +10301107void __module_get(struct module *module)
1108{
1109 if (module) {
1110 preempt_disable();
Masami Hiramatsu2f35c412014-11-10 09:29:29 +10301111 atomic_inc(&module->refcnt);
Steven Rostedtd53799b2012-03-26 12:50:52 +10301112 trace_module_get(module, _RET_IP_);
1113 preempt_enable();
1114 }
1115}
1116EXPORT_SYMBOL(__module_get);
1117
1118bool try_module_get(struct module *module)
1119{
1120 bool ret = true;
1121
1122 if (module) {
1123 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301124 /* Note: here, we can fail to get a reference */
1125 if (likely(module_is_live(module) &&
1126 atomic_inc_not_zero(&module->refcnt) != 0))
Steven Rostedtd53799b2012-03-26 12:50:52 +10301127 trace_module_get(module, _RET_IP_);
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301128 else
Steven Rostedtd53799b2012-03-26 12:50:52 +10301129 ret = false;
1130
1131 preempt_enable();
1132 }
1133 return ret;
1134}
1135EXPORT_SYMBOL(try_module_get);
1136
Al Virof6a57032006-10-18 01:47:25 -04001137void module_put(struct module *module)
1138{
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301139 int ret;
1140
Al Virof6a57032006-10-18 01:47:25 -04001141 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +09001142 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301143 ret = atomic_dec_if_positive(&module->refcnt);
1144 WARN_ON(ret < 0); /* Failed to put refcount */
Li Zefanae832d12010-03-24 10:57:43 +08001145 trace_module_put(module, _RET_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +09001146 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -04001147 }
1148}
1149EXPORT_SYMBOL(module_put);
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +08001152static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 /* We don't know the usage count, or what modules are using. */
Ionut Alexa6da0b562014-11-10 09:31:29 +10301155 seq_puts(m, " - -");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
1158static inline void module_unload_free(struct module *mod)
1159{
1160}
1161
Rusty Russell9bea7f22010-06-05 11:17:37 -06001162int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Rusty Russell9bea7f22010-06-05 11:17:37 -06001164 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
Rusty Russell9bea7f22010-06-05 11:17:37 -06001166EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001168static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001170 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172#endif /* CONFIG_MODULE_UNLOAD */
1173
Kevin Winchester53999bf2012-01-15 19:32:55 -04001174static size_t module_flags_taint(struct module *mod, char *buf)
1175{
1176 size_t l = 0;
Petr Mladek7fd83292016-09-21 13:47:22 +02001177 int i;
Kevin Winchester53999bf2012-01-15 19:32:55 -04001178
Petr Mladek7fd83292016-09-21 13:47:22 +02001179 for (i = 0; i < TAINT_FLAGS_COUNT; i++) {
1180 if (taint_flags[i].module && test_bit(i, &mod->taints))
Larry Finger5eb7c0d2017-01-01 20:25:25 -06001181 buf[l++] = taint_flags[i].c_true;
Petr Mladek7fd83292016-09-21 13:47:22 +02001182 }
1183
Kevin Winchester53999bf2012-01-15 19:32:55 -04001184 return l;
1185}
1186
Kay Sievers1f717402006-11-24 12:15:25 +01001187static ssize_t show_initstate(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301188 struct module_kobject *mk, char *buffer)
Kay Sievers1f717402006-11-24 12:15:25 +01001189{
1190 const char *state = "unknown";
1191
Kay Sievers4befb022011-07-24 22:06:04 +09301192 switch (mk->mod->state) {
Kay Sievers1f717402006-11-24 12:15:25 +01001193 case MODULE_STATE_LIVE:
1194 state = "live";
1195 break;
1196 case MODULE_STATE_COMING:
1197 state = "coming";
1198 break;
1199 case MODULE_STATE_GOING:
1200 state = "going";
1201 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301202 default:
1203 BUG();
Kay Sievers1f717402006-11-24 12:15:25 +01001204 }
1205 return sprintf(buffer, "%s\n", state);
1206}
1207
Kay Sieverscca3e702012-01-13 09:32:15 +10301208static struct module_attribute modinfo_initstate =
1209 __ATTR(initstate, 0444, show_initstate, NULL);
Kay Sievers1f717402006-11-24 12:15:25 +01001210
Kay Sievers88bfa322011-07-24 22:06:04 +09301211static ssize_t store_uevent(struct module_attribute *mattr,
1212 struct module_kobject *mk,
1213 const char *buffer, size_t count)
1214{
Peter Rajnohadf44b472018-12-05 12:27:44 +01001215 int rc;
1216
1217 rc = kobject_synth_uevent(&mk->kobj, buffer, count);
1218 return rc ? rc : count;
Kay Sievers88bfa322011-07-24 22:06:04 +09301219}
1220
Kay Sieverscca3e702012-01-13 09:32:15 +10301221struct module_attribute module_uevent =
1222 __ATTR(uevent, 0200, NULL, store_uevent);
1223
1224static ssize_t show_coresize(struct module_attribute *mattr,
1225 struct module_kobject *mk, char *buffer)
1226{
Rusty Russell7523e4d2015-11-26 09:44:08 +10301227 return sprintf(buffer, "%u\n", mk->mod->core_layout.size);
Kay Sieverscca3e702012-01-13 09:32:15 +10301228}
1229
1230static struct module_attribute modinfo_coresize =
1231 __ATTR(coresize, 0444, show_coresize, NULL);
1232
1233static ssize_t show_initsize(struct module_attribute *mattr,
1234 struct module_kobject *mk, char *buffer)
1235{
Rusty Russell7523e4d2015-11-26 09:44:08 +10301236 return sprintf(buffer, "%u\n", mk->mod->init_layout.size);
Kay Sieverscca3e702012-01-13 09:32:15 +10301237}
1238
1239static struct module_attribute modinfo_initsize =
1240 __ATTR(initsize, 0444, show_initsize, NULL);
1241
1242static ssize_t show_taint(struct module_attribute *mattr,
1243 struct module_kobject *mk, char *buffer)
1244{
1245 size_t l;
1246
1247 l = module_flags_taint(mk->mod, buffer);
1248 buffer[l++] = '\n';
1249 return l;
1250}
1251
1252static struct module_attribute modinfo_taint =
1253 __ATTR(taint, 0444, show_taint, NULL);
Kay Sievers88bfa322011-07-24 22:06:04 +09301254
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001255static struct module_attribute *modinfo_attrs[] = {
Kay Sieverscca3e702012-01-13 09:32:15 +10301256 &module_uevent,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001257 &modinfo_version,
1258 &modinfo_srcversion,
Kay Sieverscca3e702012-01-13 09:32:15 +10301259 &modinfo_initstate,
1260 &modinfo_coresize,
1261 &modinfo_initsize,
1262 &modinfo_taint,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001263#ifdef CONFIG_MODULE_UNLOAD
Kay Sieverscca3e702012-01-13 09:32:15 +10301264 &modinfo_refcnt,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001265#endif
1266 NULL,
1267};
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269static const char vermagic[] = VERMAGIC_STRING;
1270
Rusty Russellc6e665c2009-03-31 13:05:33 -06001271static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -07001272{
1273#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -07001274 if (!test_taint(TAINT_FORCED_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001275 pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
Rusty Russell373d4d02013-01-21 17:17:39 +10301276 add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds826e4502008-05-04 17:04:16 -07001277 return 0;
1278#else
1279 return -ENOEXEC;
1280#endif
1281}
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283#ifdef CONFIG_MODVERSIONS
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001284
1285static u32 resolve_rel_crc(const s32 *crc)
Rusty Russelld4703ae2009-12-15 16:28:32 -06001286{
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001287 return *(u32 *)((void *)crc + *crc);
Rusty Russelld4703ae2009-12-15 16:28:32 -06001288}
1289
Kees Cook49019422017-04-21 15:35:26 -07001290static int check_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301292 struct module *mod,
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001293 const s32 *crc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Kees Cook49019422017-04-21 15:35:26 -07001295 Elf_Shdr *sechdrs = info->sechdrs;
1296 unsigned int versindex = info->index.vers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 unsigned int i, num_versions;
1298 struct modversion_info *versions;
1299
1300 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1301 if (!crc)
1302 return 1;
1303
Rusty Russella5dd6972008-05-09 16:24:21 +10001304 /* No versions at all? modprobe --force does this. */
1305 if (versindex == 0)
1306 return try_to_force_load(mod, symname) == 0;
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 versions = (void *) sechdrs[versindex].sh_addr;
1309 num_versions = sechdrs[versindex].sh_size
1310 / sizeof(struct modversion_info);
1311
1312 for (i = 0; i < num_versions; i++) {
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001313 u32 crcval;
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (strcmp(versions[i].name, symname) != 0)
1316 continue;
1317
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001318 if (IS_ENABLED(CONFIG_MODULE_REL_CRCS))
1319 crcval = resolve_rel_crc(crc);
1320 else
1321 crcval = *crc;
1322 if (versions[i].crc == crcval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 1;
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001324 pr_debug("Found checksum %X vs module %lX\n",
1325 crcval, versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001326 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001328
Linus Torvaldsfaaae2a2016-11-29 15:20:14 -08001329 /* Broken toolchain. Warn once, then let it go.. */
Kees Cook3e2e8572017-04-21 15:35:27 -07001330 pr_warn_once("%s: no symbol version for %s\n", info->name, symname);
Linus Torvaldsfaaae2a2016-11-29 15:20:14 -08001331 return 1;
Linus Torvalds826e4502008-05-04 17:04:16 -07001332
1333bad_version:
Ionut Alexa6da0b562014-11-10 09:31:29 +10301334 pr_warn("%s: disagrees about version of symbol %s\n",
Kees Cook3e2e8572017-04-21 15:35:27 -07001335 info->name, symname);
Linus Torvalds826e4502008-05-04 17:04:16 -07001336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
1338
Kees Cook49019422017-04-21 15:35:26 -07001339static inline int check_modstruct_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 struct module *mod)
1341{
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001342 const s32 *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301344 /*
1345 * Since this should be found in kernel (which can't be removed), no
1346 * locking is necessary -- use preempt_disable() to placate lockdep.
1347 */
1348 preempt_disable();
Masahiro Yamada996302c2018-06-24 00:37:44 +09001349 if (!find_symbol("module_layout", NULL, &crc, true, false)) {
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301350 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 BUG();
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301352 }
1353 preempt_enable();
Masahiro Yamada996302c2018-06-24 00:37:44 +09001354 return check_version(info, "module_layout", mod, crc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Rusty Russell91e37a72008-05-09 16:25:28 +10001357/* First part is kernel version, which we ignore if module has crcs. */
1358static inline int same_magic(const char *amagic, const char *bmagic,
1359 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Rusty Russell91e37a72008-05-09 16:25:28 +10001361 if (has_crcs) {
1362 amagic += strcspn(amagic, " ");
1363 bmagic += strcspn(bmagic, " ");
1364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return strcmp(amagic, bmagic) == 0;
1366}
1367#else
Kees Cook49019422017-04-21 15:35:26 -07001368static inline int check_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301370 struct module *mod,
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001371 const s32 *crc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 return 1;
1374}
1375
Kees Cook49019422017-04-21 15:35:26 -07001376static inline int check_modstruct_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 struct module *mod)
1378{
1379 return 1;
1380}
1381
Rusty Russell91e37a72008-05-09 16:25:28 +10001382static inline int same_magic(const char *amagic, const char *bmagic,
1383 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 return strcmp(amagic, bmagic) == 0;
1386}
1387#endif /* CONFIG_MODVERSIONS */
1388
Rusty Russell75676502010-06-05 11:17:36 -06001389/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001390static const struct kernel_symbol *resolve_symbol(struct module *mod,
1391 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001392 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001393 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001396 const struct kernel_symbol *sym;
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001397 const s32 *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001398 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Peter Zijlstrad64810f2015-02-11 15:01:13 +10301400 /*
1401 * The module_mutex should not be a heavily contended lock;
1402 * if we get the occasional sleep here, we'll go an extra iteration
1403 * in the wait_event_interruptible(), which is harmless.
1404 */
1405 sched_annotate_sleep();
Rusty Russell75676502010-06-05 11:17:36 -06001406 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001407 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001408 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001409 if (!sym)
1410 goto unlock;
1411
Kees Cook49019422017-04-21 15:35:26 -07001412 if (!check_version(info, name, mod, crc)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001413 sym = ERR_PTR(-EINVAL);
1414 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001416
1417 err = ref_module(mod, owner);
1418 if (err) {
1419 sym = ERR_PTR(err);
1420 goto getname;
1421 }
1422
1423getname:
1424 /* We must make copy under the lock if we failed to get ref. */
1425 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1426unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001427 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001428 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Rusty Russell49668682010-08-05 12:59:10 -06001431static const struct kernel_symbol *
1432resolve_symbol_wait(struct module *mod,
1433 const struct load_info *info,
1434 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001435{
1436 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001437 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001438
1439 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001440 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1441 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001442 30 * HZ) <= 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001443 pr_warn("%s: gave up waiting for init of module %s.\n",
1444 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001445 }
1446 return ksym;
1447}
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449/*
1450 * /sys/module/foo/sections stuff
1451 * J. Corbet <corbet@lwn.net>
1452 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001453#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001454
Rusty Russell8f6d0372010-08-05 12:59:09 -06001455#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001456static inline bool sect_empty(const Elf_Shdr *sect)
1457{
1458 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1459}
1460
Ionut Alexa6da0b562014-11-10 09:31:29 +10301461struct module_sect_attr {
Rusty Russella58730c2008-03-13 09:03:44 +00001462 struct module_attribute mattr;
1463 char *name;
1464 unsigned long address;
1465};
1466
Ionut Alexa6da0b562014-11-10 09:31:29 +10301467struct module_sect_attrs {
Rusty Russella58730c2008-03-13 09:03:44 +00001468 struct attribute_group grp;
1469 unsigned int nsections;
1470 struct module_sect_attr attrs[0];
1471};
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473static ssize_t module_sect_show(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301474 struct module_kobject *mk, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 struct module_sect_attr *sattr =
1477 container_of(mattr, struct module_sect_attr, mattr);
Thomas Richterbe71eda2018-04-18 09:14:36 +02001478 return sprintf(buf, "0x%px\n", kptr_restrict < 2 ?
1479 (void *)sattr->address : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001482static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1483{
Rusty Russella58730c2008-03-13 09:03:44 +00001484 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001485
1486 for (section = 0; section < sect_attrs->nsections; section++)
1487 kfree(sect_attrs->attrs[section].name);
1488 kfree(sect_attrs);
1489}
1490
Rusty Russell8f6d0372010-08-05 12:59:09 -06001491static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
1493 unsigned int nloaded = 0, i, size[2];
1494 struct module_sect_attrs *sect_attrs;
1495 struct module_sect_attr *sattr;
1496 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001499 for (i = 0; i < info->hdr->e_shnum; i++)
1500 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 nloaded++;
1502 size[0] = ALIGN(sizeof(*sect_attrs)
1503 + nloaded * sizeof(sect_attrs->attrs[0]),
1504 sizeof(sect_attrs->grp.attrs[0]));
1505 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001506 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1507 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return;
1509
1510 /* Setup section attributes. */
1511 sect_attrs->grp.name = "sections";
1512 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1513
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001514 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 sattr = &sect_attrs->attrs[0];
1516 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001517 for (i = 0; i < info->hdr->e_shnum; i++) {
1518 Elf_Shdr *sec = &info->sechdrs[i];
1519 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001520 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001521 sattr->address = sec->sh_addr;
1522 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001523 GFP_KERNEL);
1524 if (sattr->name == NULL)
1525 goto out;
1526 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001527 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 sattr->mattr.show = module_sect_show;
1529 sattr->mattr.store = NULL;
1530 sattr->mattr.attr.name = sattr->name;
Linus Torvalds277642d2017-11-12 17:00:53 -08001531 sattr->mattr.attr.mode = S_IRUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 *(gattr++) = &(sattr++)->mattr.attr;
1533 }
1534 *gattr = NULL;
1535
1536 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1537 goto out;
1538
1539 mod->sect_attrs = sect_attrs;
1540 return;
1541 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001542 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
1545static void remove_sect_attrs(struct module *mod)
1546{
1547 if (mod->sect_attrs) {
1548 sysfs_remove_group(&mod->mkobj.kobj,
1549 &mod->sect_attrs->grp);
1550 /* We are positive that no one is using any sect attrs
1551 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001552 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 mod->sect_attrs = NULL;
1554 }
1555}
1556
Roland McGrath6d760132007-10-16 23:26:40 -07001557/*
1558 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1559 */
1560
1561struct module_notes_attrs {
1562 struct kobject *dir;
1563 unsigned int notes;
1564 struct bin_attribute attrs[0];
1565};
1566
Chris Wright2c3c8be2010-05-12 18:28:57 -07001567static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001568 struct bin_attribute *bin_attr,
1569 char *buf, loff_t pos, size_t count)
1570{
1571 /*
1572 * The caller checked the pos and count against our size.
1573 */
1574 memcpy(buf, bin_attr->private + pos, count);
1575 return count;
1576}
1577
1578static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1579 unsigned int i)
1580{
1581 if (notes_attrs->dir) {
1582 while (i-- > 0)
1583 sysfs_remove_bin_file(notes_attrs->dir,
1584 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001585 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001586 }
1587 kfree(notes_attrs);
1588}
1589
Rusty Russell8f6d0372010-08-05 12:59:09 -06001590static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001591{
1592 unsigned int notes, loaded, i;
1593 struct module_notes_attrs *notes_attrs;
1594 struct bin_attribute *nattr;
1595
Ingo Molnarea6bff32009-08-28 10:44:56 +02001596 /* failed to create section attributes, so can't create notes */
1597 if (!mod->sect_attrs)
1598 return;
1599
Roland McGrath6d760132007-10-16 23:26:40 -07001600 /* Count notes sections and allocate structures. */
1601 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001602 for (i = 0; i < info->hdr->e_shnum; i++)
1603 if (!sect_empty(&info->sechdrs[i]) &&
1604 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001605 ++notes;
1606
1607 if (notes == 0)
1608 return;
1609
Kees Cookacafe7e2018-05-08 13:45:50 -07001610 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes),
Roland McGrath6d760132007-10-16 23:26:40 -07001611 GFP_KERNEL);
1612 if (notes_attrs == NULL)
1613 return;
1614
1615 notes_attrs->notes = notes;
1616 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001617 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1618 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001619 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001620 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001621 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001622 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1623 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001624 nattr->size = info->sechdrs[i].sh_size;
1625 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001626 nattr->read = module_notes_read;
1627 ++nattr;
1628 }
1629 ++loaded;
1630 }
1631
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001632 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001633 if (!notes_attrs->dir)
1634 goto out;
1635
1636 for (i = 0; i < notes; ++i)
1637 if (sysfs_create_bin_file(notes_attrs->dir,
1638 &notes_attrs->attrs[i]))
1639 goto out;
1640
1641 mod->notes_attrs = notes_attrs;
1642 return;
1643
1644 out:
1645 free_notes_attrs(notes_attrs, i);
1646}
1647
1648static void remove_notes_attrs(struct module *mod)
1649{
1650 if (mod->notes_attrs)
1651 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1652}
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001655
Rusty Russell8f6d0372010-08-05 12:59:09 -06001656static inline void add_sect_attrs(struct module *mod,
1657 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659}
1660
1661static inline void remove_sect_attrs(struct module *mod)
1662{
1663}
Roland McGrath6d760132007-10-16 23:26:40 -07001664
Rusty Russell8f6d0372010-08-05 12:59:09 -06001665static inline void add_notes_attrs(struct module *mod,
1666 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001667{
1668}
1669
1670static inline void remove_notes_attrs(struct module *mod)
1671{
1672}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001673#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001675static void del_usage_links(struct module *mod)
1676{
1677#ifdef CONFIG_MODULE_UNLOAD
1678 struct module_use *use;
1679
Rusty Russell75676502010-06-05 11:17:36 -06001680 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001681 list_for_each_entry(use, &mod->target_list, target_list)
1682 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001683 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001684#endif
1685}
1686
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001687static int add_usage_links(struct module *mod)
1688{
1689 int ret = 0;
1690#ifdef CONFIG_MODULE_UNLOAD
1691 struct module_use *use;
1692
1693 mutex_lock(&module_mutex);
1694 list_for_each_entry(use, &mod->target_list, target_list) {
1695 ret = sysfs_create_link(use->target->holders_dir,
1696 &mod->mkobj.kobj, mod->name);
1697 if (ret)
1698 break;
1699 }
1700 mutex_unlock(&module_mutex);
1701 if (ret)
1702 del_usage_links(mod);
1703#endif
1704 return ret;
1705}
1706
Rusty Russell6407ebb22010-06-05 11:17:36 -06001707static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001708{
1709 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001710 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001711 int error = 0;
1712 int i;
1713
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001714 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1715 (ARRAY_SIZE(modinfo_attrs) + 1)),
1716 GFP_KERNEL);
1717 if (!mod->modinfo_attrs)
1718 return -ENOMEM;
1719
1720 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001721 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
Rusty Russellc75b5902016-04-12 05:03:09 +09301722 if (!attr->test || attr->test(mod)) {
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001723 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001724 sysfs_attr_init(&temp_attr->attr);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301725 error = sysfs_create_file(&mod->mkobj.kobj,
1726 &temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001727 ++temp_attr;
1728 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001729 }
1730 return error;
1731}
1732
Rusty Russell6407ebb22010-06-05 11:17:36 -06001733static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001734{
1735 struct module_attribute *attr;
1736 int i;
1737
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001738 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1739 /* pick a field to test for end of list */
1740 if (!attr->attr.name)
1741 break;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301742 sysfs_remove_file(&mod->mkobj.kobj, &attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001743 if (attr->free)
1744 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001745 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001746 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001747}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Li Zhong942e4432013-09-03 16:33:57 +09301749static void mod_kobject_put(struct module *mod)
1750{
1751 DECLARE_COMPLETION_ONSTACK(c);
1752 mod->mkobj.kobj_completion = &c;
1753 kobject_put(&mod->mkobj.kobj);
1754 wait_for_completion(&c);
1755}
1756
Rusty Russell6407ebb22010-06-05 11:17:36 -06001757static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
1759 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001760 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001762 if (!module_sysfs_initialized) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001763 pr_err("%s: module sysfs not initialized\n", mod->name);
Ed Swierk1cc5f712006-09-25 16:25:36 -07001764 err = -EINVAL;
1765 goto out;
1766 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001767
1768 kobj = kset_find_obj(module_kset, mod->name);
1769 if (kobj) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001770 pr_err("%s: module is already loaded\n", mod->name);
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001771 kobject_put(kobj);
1772 err = -EINVAL;
1773 goto out;
1774 }
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001777
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001778 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1779 mod->mkobj.kobj.kset = module_kset;
1780 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1781 "%s", mod->name);
1782 if (err)
Li Zhong942e4432013-09-03 16:33:57 +09301783 mod_kobject_put(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001784
Kay Sievers97c146ef2007-11-29 23:46:11 +01001785 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001786out:
1787 return err;
1788}
1789
Rusty Russell6407ebb22010-06-05 11:17:36 -06001790static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001791 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001792 struct kernel_param *kparam,
1793 unsigned int num_params)
1794{
1795 int err;
1796
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001797 err = mod_sysfs_init(mod);
1798 if (err)
1799 goto out;
1800
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001801 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001802 if (!mod->holders_dir) {
1803 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001804 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001805 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 err = module_param_sysfs_setup(mod, kparam, num_params);
1808 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001809 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Matt Domschc988d2b2005-06-23 22:05:15 -07001811 err = module_add_modinfo_attrs(mod);
1812 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001813 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001814
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001815 err = add_usage_links(mod);
1816 if (err)
1817 goto out_unreg_modinfo_attrs;
1818
Rusty Russell8f6d0372010-08-05 12:59:09 -06001819 add_sect_attrs(mod, info);
1820 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001821
Kay Sieverse17e0f52006-11-24 12:15:25 +01001822 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return 0;
1824
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001825out_unreg_modinfo_attrs:
1826 module_remove_modinfo_attrs(mod);
Kay Sieverse17e0f52006-11-24 12:15:25 +01001827out_unreg_param:
1828 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001829out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001830 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001831out_unreg:
Li Zhong942e4432013-09-03 16:33:57 +09301832 mod_kobject_put(mod);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001833out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 return err;
1835}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001836
1837static void mod_sysfs_fini(struct module *mod)
1838{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001839 remove_notes_attrs(mod);
1840 remove_sect_attrs(mod);
Li Zhong942e4432013-09-03 16:33:57 +09301841 mod_kobject_put(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001842}
1843
Rusty Russellcf2fde72015-06-26 06:44:38 +09301844static void init_param_lock(struct module *mod)
1845{
1846 mutex_init(&mod->param_lock);
1847}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001848#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001849
Rusty Russell8f6d0372010-08-05 12:59:09 -06001850static int mod_sysfs_setup(struct module *mod,
1851 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001852 struct kernel_param *kparam,
1853 unsigned int num_params)
1854{
1855 return 0;
1856}
1857
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001858static void mod_sysfs_fini(struct module *mod)
1859{
1860}
1861
Rusty Russell36b03602010-08-05 12:59:09 -06001862static void module_remove_modinfo_attrs(struct module *mod)
1863{
1864}
1865
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001866static void del_usage_links(struct module *mod)
1867{
1868}
1869
Rusty Russellcf2fde72015-06-26 06:44:38 +09301870static void init_param_lock(struct module *mod)
1871{
1872}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001873#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Rusty Russell36b03602010-08-05 12:59:09 -06001875static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001877 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001878 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001880 kobject_put(mod->mkobj.drivers_dir);
1881 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001882 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
Laura Abbott0f5bf6d2017-02-06 16:31:58 -08001885#ifdef CONFIG_STRICT_MODULE_RWX
matthieu castet84e1c6b2010-11-16 22:35:16 +01001886/*
1887 * LKM RO/NX protection: protect module's text/ro-data
1888 * from modification and any data from execution.
Rusty Russell85c898d2015-11-26 09:45:08 +10301889 *
1890 * General layout of module is:
Jessica Yu444d13f2016-07-27 12:06:21 +09301891 * [text] [read-only-data] [ro-after-init] [writable data]
1892 * text_size -----^ ^ ^ ^
1893 * ro_size ------------------------| | |
1894 * ro_after_init_size -----------------------------| |
1895 * size -----------------------------------------------------------|
Rusty Russell85c898d2015-11-26 09:45:08 +10301896 *
1897 * These values are always page-aligned (as is base)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001898 */
Rusty Russell85c898d2015-11-26 09:45:08 +10301899static void frob_text(const struct module_layout *layout,
1900 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001901{
Rusty Russell85c898d2015-11-26 09:45:08 +10301902 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1903 BUG_ON((unsigned long)layout->text_size & (PAGE_SIZE-1));
1904 set_memory((unsigned long)layout->base,
1905 layout->text_size >> PAGE_SHIFT);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001906}
1907
Rusty Russell85c898d2015-11-26 09:45:08 +10301908static void frob_rodata(const struct module_layout *layout,
1909 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001910{
Rusty Russell85c898d2015-11-26 09:45:08 +10301911 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1912 BUG_ON((unsigned long)layout->text_size & (PAGE_SIZE-1));
1913 BUG_ON((unsigned long)layout->ro_size & (PAGE_SIZE-1));
1914 set_memory((unsigned long)layout->base + layout->text_size,
1915 (layout->ro_size - layout->text_size) >> PAGE_SHIFT);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001916}
1917
Jessica Yu444d13f2016-07-27 12:06:21 +09301918static void frob_ro_after_init(const struct module_layout *layout,
1919 int (*set_memory)(unsigned long start, int num_pages))
1920{
1921 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1922 BUG_ON((unsigned long)layout->ro_size & (PAGE_SIZE-1));
1923 BUG_ON((unsigned long)layout->ro_after_init_size & (PAGE_SIZE-1));
1924 set_memory((unsigned long)layout->base + layout->ro_size,
1925 (layout->ro_after_init_size - layout->ro_size) >> PAGE_SHIFT);
1926}
1927
Rusty Russell85c898d2015-11-26 09:45:08 +10301928static void frob_writable_data(const struct module_layout *layout,
1929 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001930{
Rusty Russell85c898d2015-11-26 09:45:08 +10301931 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
Jessica Yu444d13f2016-07-27 12:06:21 +09301932 BUG_ON((unsigned long)layout->ro_after_init_size & (PAGE_SIZE-1));
Rusty Russell85c898d2015-11-26 09:45:08 +10301933 BUG_ON((unsigned long)layout->size & (PAGE_SIZE-1));
Jessica Yu444d13f2016-07-27 12:06:21 +09301934 set_memory((unsigned long)layout->base + layout->ro_after_init_size,
1935 (layout->size - layout->ro_after_init_size) >> PAGE_SHIFT);
Jan Glauber01526ed2011-05-19 16:55:26 -06001936}
1937
Rusty Russell85c898d2015-11-26 09:45:08 +10301938/* livepatching wants to disable read-only so it can frob module. */
1939void module_disable_ro(const struct module *mod)
Jan Glauber01526ed2011-05-19 16:55:26 -06001940{
AKASHI Takahiro39290b32016-11-14 15:15:05 +09001941 if (!rodata_enabled)
1942 return;
1943
Rusty Russell85c898d2015-11-26 09:45:08 +10301944 frob_text(&mod->core_layout, set_memory_rw);
1945 frob_rodata(&mod->core_layout, set_memory_rw);
Jessica Yu444d13f2016-07-27 12:06:21 +09301946 frob_ro_after_init(&mod->core_layout, set_memory_rw);
Rusty Russell85c898d2015-11-26 09:45:08 +10301947 frob_text(&mod->init_layout, set_memory_rw);
1948 frob_rodata(&mod->init_layout, set_memory_rw);
Josh Poimboeuf20ef10c2015-11-26 09:42:08 +10301949}
1950
Jessica Yu444d13f2016-07-27 12:06:21 +09301951void module_enable_ro(const struct module *mod, bool after_init)
Josh Poimboeuf20ef10c2015-11-26 09:42:08 +10301952{
AKASHI Takahiro39290b32016-11-14 15:15:05 +09001953 if (!rodata_enabled)
1954 return;
1955
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07001956 set_vm_flush_reset_perms(mod->core_layout.base);
1957 set_vm_flush_reset_perms(mod->init_layout.base);
Rusty Russell85c898d2015-11-26 09:45:08 +10301958 frob_text(&mod->core_layout, set_memory_ro);
Nadav Amitf2c65fb2019-04-25 17:11:31 -07001959 frob_text(&mod->core_layout, set_memory_x);
1960
Rusty Russell85c898d2015-11-26 09:45:08 +10301961 frob_rodata(&mod->core_layout, set_memory_ro);
Nadav Amitf2c65fb2019-04-25 17:11:31 -07001962
Rusty Russell85c898d2015-11-26 09:45:08 +10301963 frob_text(&mod->init_layout, set_memory_ro);
Nadav Amitf2c65fb2019-04-25 17:11:31 -07001964 frob_text(&mod->init_layout, set_memory_x);
1965
Rusty Russell85c898d2015-11-26 09:45:08 +10301966 frob_rodata(&mod->init_layout, set_memory_ro);
Jessica Yu444d13f2016-07-27 12:06:21 +09301967
1968 if (after_init)
1969 frob_ro_after_init(&mod->core_layout, set_memory_ro);
Jan Glauber01526ed2011-05-19 16:55:26 -06001970}
1971
Rusty Russell85c898d2015-11-26 09:45:08 +10301972static void module_enable_nx(const struct module *mod)
Jan Glauber01526ed2011-05-19 16:55:26 -06001973{
Rusty Russell85c898d2015-11-26 09:45:08 +10301974 frob_rodata(&mod->core_layout, set_memory_nx);
Jessica Yu444d13f2016-07-27 12:06:21 +09301975 frob_ro_after_init(&mod->core_layout, set_memory_nx);
Rusty Russell85c898d2015-11-26 09:45:08 +10301976 frob_writable_data(&mod->core_layout, set_memory_nx);
1977 frob_rodata(&mod->init_layout, set_memory_nx);
1978 frob_writable_data(&mod->init_layout, set_memory_nx);
1979}
1980
matthieu castet84e1c6b2010-11-16 22:35:16 +01001981/* Iterate through all modules and set each module's text as RW */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001982void set_all_modules_text_rw(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001983{
1984 struct module *mod;
1985
AKASHI Takahiro39290b32016-11-14 15:15:05 +09001986 if (!rodata_enabled)
1987 return;
1988
matthieu castet84e1c6b2010-11-16 22:35:16 +01001989 mutex_lock(&module_mutex);
1990 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301991 if (mod->state == MODULE_STATE_UNFORMED)
1992 continue;
Rusty Russell85c898d2015-11-26 09:45:08 +10301993
1994 frob_text(&mod->core_layout, set_memory_rw);
1995 frob_text(&mod->init_layout, set_memory_rw);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001996 }
1997 mutex_unlock(&module_mutex);
1998}
1999
2000/* Iterate through all modules and set each module's text as RO */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08002001void set_all_modules_text_ro(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01002002{
2003 struct module *mod;
2004
AKASHI Takahiro39290b32016-11-14 15:15:05 +09002005 if (!rodata_enabled)
2006 return;
2007
matthieu castet84e1c6b2010-11-16 22:35:16 +01002008 mutex_lock(&module_mutex);
2009 list_for_each_entry_rcu(mod, &modules, list) {
Aaron Tomlin905dd707f2016-10-27 10:36:06 +01002010 /*
2011 * Ignore going modules since it's possible that ro
2012 * protection has already been disabled, otherwise we'll
2013 * run into protection faults at module deallocation.
2014 */
2015 if (mod->state == MODULE_STATE_UNFORMED ||
2016 mod->state == MODULE_STATE_GOING)
Rusty Russell0d21b0e2013-01-12 11:38:44 +10302017 continue;
Rusty Russell85c898d2015-11-26 09:45:08 +10302018
2019 frob_text(&mod->core_layout, set_memory_ro);
2020 frob_text(&mod->init_layout, set_memory_ro);
matthieu castet84e1c6b2010-11-16 22:35:16 +01002021 }
2022 mutex_unlock(&module_mutex);
2023}
2024#else
Rusty Russell85c898d2015-11-26 09:45:08 +10302025static void module_enable_nx(const struct module *mod) { }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002026#endif
2027
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002028#ifdef CONFIG_LIVEPATCH
2029/*
2030 * Persist Elf information about a module. Copy the Elf header,
2031 * section header table, section string table, and symtab section
2032 * index from info to mod->klp_info.
2033 */
2034static int copy_module_elf(struct module *mod, struct load_info *info)
2035{
2036 unsigned int size, symndx;
2037 int ret;
2038
2039 size = sizeof(*mod->klp_info);
2040 mod->klp_info = kmalloc(size, GFP_KERNEL);
2041 if (mod->klp_info == NULL)
2042 return -ENOMEM;
2043
2044 /* Elf header */
2045 size = sizeof(mod->klp_info->hdr);
2046 memcpy(&mod->klp_info->hdr, info->hdr, size);
2047
2048 /* Elf section header table */
2049 size = sizeof(*info->sechdrs) * info->hdr->e_shnum;
zhong jiang9be936f2018-08-01 00:56:17 +08002050 mod->klp_info->sechdrs = kmemdup(info->sechdrs, size, GFP_KERNEL);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002051 if (mod->klp_info->sechdrs == NULL) {
2052 ret = -ENOMEM;
2053 goto free_info;
2054 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002055
2056 /* Elf section name string table */
2057 size = info->sechdrs[info->hdr->e_shstrndx].sh_size;
zhong jiang9be936f2018-08-01 00:56:17 +08002058 mod->klp_info->secstrings = kmemdup(info->secstrings, size, GFP_KERNEL);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002059 if (mod->klp_info->secstrings == NULL) {
2060 ret = -ENOMEM;
2061 goto free_sechdrs;
2062 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002063
2064 /* Elf symbol section index */
2065 symndx = info->index.sym;
2066 mod->klp_info->symndx = symndx;
2067
2068 /*
2069 * For livepatch modules, core_kallsyms.symtab is a complete
2070 * copy of the original symbol table. Adjust sh_addr to point
2071 * to core_kallsyms.symtab since the copy of the symtab in module
2072 * init memory is freed at the end of do_init_module().
2073 */
2074 mod->klp_info->sechdrs[symndx].sh_addr = \
2075 (unsigned long) mod->core_kallsyms.symtab;
2076
2077 return 0;
2078
2079free_sechdrs:
2080 kfree(mod->klp_info->sechdrs);
2081free_info:
2082 kfree(mod->klp_info);
2083 return ret;
2084}
2085
2086static void free_module_elf(struct module *mod)
2087{
2088 kfree(mod->klp_info->sechdrs);
2089 kfree(mod->klp_info->secstrings);
2090 kfree(mod->klp_info);
2091}
2092#else /* !CONFIG_LIVEPATCH */
2093static int copy_module_elf(struct module *mod, struct load_info *info)
2094{
2095 return 0;
2096}
2097
2098static void free_module_elf(struct module *mod)
2099{
2100}
2101#endif /* CONFIG_LIVEPATCH */
2102
Rusty Russellbe1f2212015-01-20 09:07:05 +10302103void __weak module_memfree(void *module_region)
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002104{
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07002105 /*
2106 * This memory may be RO, and freeing RO memory in an interrupt is not
2107 * supported by vmalloc.
2108 */
2109 WARN_ON(in_interrupt());
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002110 vfree(module_region);
2111}
2112
2113void __weak module_arch_cleanup(struct module *mod)
2114{
2115}
2116
Rusty Russelld453cde2015-01-20 09:07:04 +10302117void __weak module_arch_freeing_init(struct module *mod)
2118{
2119}
2120
Rusty Russell75676502010-06-05 11:17:36 -06002121/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122static void free_module(struct module *mod)
2123{
Li Zefan7ead8b82009-08-17 16:56:28 +08002124 trace_module_free(mod);
2125
Rusty Russell36b03602010-08-05 12:59:09 -06002126 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Rusty Russell944a1fa2013-04-17 13:20:03 +09302128 /* We leave it in list to prevent duplicate loads, but make sure
2129 * that noone uses it while it's being deconstructed. */
Prarit Bhargavad3051b42014-10-14 02:51:39 +10302130 mutex_lock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09302131 mod->state = MODULE_STATE_UNFORMED;
Prarit Bhargavad3051b42014-10-14 02:51:39 +10302132 mutex_unlock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09302133
Jason Baronb82bab4b2010-07-27 13:18:01 -07002134 /* Remove dynamic debug info */
2135 ddebug_remove_module(mod->name);
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 /* Arch-specific cleanup. */
2138 module_arch_cleanup(mod);
2139
2140 /* Module unload stuff */
2141 module_unload_free(mod);
2142
Rusty Russelle180a6b2009-03-31 13:05:29 -06002143 /* Free any allocated parameters. */
2144 destroy_params(mod->kp, mod->num_kp);
2145
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002146 if (is_livepatch_module(mod))
2147 free_module_elf(mod);
2148
Rusty Russell944a1fa2013-04-17 13:20:03 +09302149 /* Now we can delete it from the lists */
2150 mutex_lock(&module_mutex);
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10302151 /* Unlink carefully: kallsyms could be walking list. */
2152 list_del_rcu(&mod->list);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09302153 mod_tree_remove(mod);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10302154 /* Remove this module from bug list, this uses list_del_rcu */
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10302155 module_bug_cleanup(mod);
Peter Zijlstra0be964b2015-05-27 11:09:35 +09302156 /* Wait for RCU-sched synchronizing before releasing mod->list and buglist. */
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08002157 synchronize_rcu();
Rusty Russell944a1fa2013-04-17 13:20:03 +09302158 mutex_unlock(&module_mutex);
2159
Rusty Russell85c898d2015-11-26 09:45:08 +10302160 /* This may be empty, but that's OK */
Rusty Russelld453cde2015-01-20 09:07:04 +10302161 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10302162 module_memfree(mod->init_layout.base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09002164 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06002165
Peter Zijlstra35a93932015-02-26 16:23:11 +01002166 /* Free lock-classes; relies on the preceding sync_rcu(). */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302167 lockdep_free_key_range(mod->core_layout.base, mod->core_layout.size);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 /* Finally, free the core (containing the module structure) */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302170 module_memfree(mod->core_layout.base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171}
2172
2173void *__symbol_get(const char *symbol)
2174{
2175 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05002176 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Rusty Russell24da1cb2007-07-15 23:41:46 -07002178 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05002179 sym = find_symbol(symbol, &owner, NULL, true, true);
2180 if (sym && strong_try_module_get(owner))
2181 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07002182 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Ard Biesheuvel7290d582018-08-21 21:56:09 -07002184 return sym ? (void *)kernel_symbol_value(sym) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185}
2186EXPORT_SYMBOL_GPL(__symbol_get);
2187
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002188/*
2189 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02002190 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06002191 *
2192 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002193 */
Jessica Yu2d25bc52018-11-19 17:43:58 +01002194static int verify_exported_symbols(struct module *mod)
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002195{
Rusty Russellb2111042008-05-01 21:15:00 -05002196 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002197 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05002198 const struct kernel_symbol *s;
2199 struct {
2200 const struct kernel_symbol *sym;
2201 unsigned int num;
2202 } arr[] = {
2203 { mod->syms, mod->num_syms },
2204 { mod->gpl_syms, mod->num_gpl_syms },
2205 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05002206#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05002207 { mod->unused_syms, mod->num_unused_syms },
2208 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05002209#endif
Rusty Russellb2111042008-05-01 21:15:00 -05002210 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002211
Rusty Russellb2111042008-05-01 21:15:00 -05002212 for (i = 0; i < ARRAY_SIZE(arr); i++) {
2213 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Ard Biesheuvel7290d582018-08-21 21:56:09 -07002214 if (find_symbol(kernel_symbol_name(s), &owner, NULL,
2215 true, false)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002216 pr_err("%s: exports duplicate symbol %s"
Rusty Russellb2111042008-05-01 21:15:00 -05002217 " (owned by %s)\n",
Ard Biesheuvel7290d582018-08-21 21:56:09 -07002218 mod->name, kernel_symbol_name(s),
2219 module_name(owner));
Rusty Russellb2111042008-05-01 21:15:00 -05002220 return -ENOEXEC;
2221 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002222 }
Rusty Russellb2111042008-05-01 21:15:00 -05002223 }
2224 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002225}
2226
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08002227/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06002228static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
Rusty Russell49668682010-08-05 12:59:10 -06002230 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
2231 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06002233 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05002235 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Rusty Russell49668682010-08-05 12:59:10 -06002237 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
2238 const char *name = info->strtab + sym[i].st_name;
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 switch (sym[i].st_shndx) {
2241 case SHN_COMMON:
Joe Mario80375982014-02-08 09:01:09 +01002242 /* Ignore common symbols */
2243 if (!strncmp(name, "__gnu_lto", 9))
2244 break;
2245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 /* We compiled with -fno-common. These are not
2247 supposed to happen. */
Jim Cromie5e124162011-12-06 12:11:31 -07002248 pr_debug("Common symbol: %s\n", name);
Ionut Alexa6da0b562014-11-10 09:31:29 +10302249 pr_warn("%s: please compile with -fno-common\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 mod->name);
2251 ret = -ENOEXEC;
2252 break;
2253
2254 case SHN_ABS:
2255 /* Don't need to do anything */
Jim Cromie5e124162011-12-06 12:11:31 -07002256 pr_debug("Absolute symbol: 0x%08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 (long)sym[i].st_value);
2258 break;
2259
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002260 case SHN_LIVEPATCH:
2261 /* Livepatch symbols are resolved by livepatch */
2262 break;
2263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06002265 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06002267 if (ksym && !IS_ERR(ksym)) {
Ard Biesheuvel7290d582018-08-21 21:56:09 -07002268 sym[i].st_value = kernel_symbol_value(ksym);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 break;
Tim Abbott414fd312008-12-05 19:03:56 -05002270 }
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06002273 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 break;
2275
Rusty Russell9bea7f22010-06-05 11:17:37 -06002276 ret = PTR_ERR(ksym) ?: -ENOENT;
Jason A. Donenfeld62267e02018-06-22 17:38:50 +02002277 pr_warn("%s: Unknown symbol %s (err %d)\n",
2278 mod->name, name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 break;
2280
2281 default:
2282 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06002283 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09002284 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 else
Rusty Russell49668682010-08-05 12:59:10 -06002286 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 sym[i].st_value += secbase;
2288 break;
2289 }
2290 }
2291
2292 return ret;
2293}
2294
Rusty Russell49668682010-08-05 12:59:10 -06002295static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06002296{
2297 unsigned int i;
2298 int err = 0;
2299
2300 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06002301 for (i = 1; i < info->hdr->e_shnum; i++) {
2302 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06002303
2304 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06002305 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06002306 continue;
2307
2308 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06002309 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06002310 continue;
2311
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002312 /* Livepatch relocation sections are applied by livepatch */
2313 if (info->sechdrs[i].sh_flags & SHF_RELA_LIVEPATCH)
2314 continue;
2315
Rusty Russell49668682010-08-05 12:59:10 -06002316 if (info->sechdrs[i].sh_type == SHT_REL)
2317 err = apply_relocate(info->sechdrs, info->strtab,
2318 info->index.sym, i, mod);
2319 else if (info->sechdrs[i].sh_type == SHT_RELA)
2320 err = apply_relocate_add(info->sechdrs, info->strtab,
2321 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002322 if (err < 0)
2323 break;
2324 }
2325 return err;
2326}
2327
Helge Deller088af9a2008-12-31 12:31:18 +01002328/* Additional bytes needed by arch in front of individual sections */
2329unsigned int __weak arch_mod_section_prepend(struct module *mod,
2330 unsigned int section)
2331{
2332 /* default implementation just returns zero */
2333 return 0;
2334}
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01002337static long get_offset(struct module *mod, unsigned int *size,
2338 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
2340 long ret;
2341
Helge Deller088af9a2008-12-31 12:31:18 +01002342 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2344 *size = ret + sechdr->sh_size;
2345 return ret;
2346}
2347
2348/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2349 might -- code, read-only data, read-write data, small data. Tally
2350 sizes, and place the offsets into sh_entsize fields: high bit means it
2351 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06002352static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353{
2354 static unsigned long const masks[][2] = {
2355 /* NOTE: all executable code must be the first section
2356 * in this array; otherwise modify the text_size
2357 * finder in the two loops below */
2358 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2359 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
Jessica Yu444d13f2016-07-27 12:06:21 +09302360 { SHF_RO_AFTER_INIT | SHF_ALLOC, ARCH_SHF_SMALL },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2362 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2363 };
2364 unsigned int m, i;
2365
Rusty Russell49668682010-08-05 12:59:10 -06002366 for (i = 0; i < info->hdr->e_shnum; i++)
2367 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Jim Cromie5e124162011-12-06 12:11:31 -07002369 pr_debug("Core section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002371 for (i = 0; i < info->hdr->e_shnum; ++i) {
2372 Elf_Shdr *s = &info->sechdrs[i];
2373 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2376 || (s->sh_flags & masks[m][1])
2377 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002378 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 continue;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302380 s->sh_entsize = get_offset(mod, &mod->core_layout.size, s, i);
Jim Cromie5e124162011-12-06 12:11:31 -07002381 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002383 switch (m) {
2384 case 0: /* executable */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302385 mod->core_layout.size = debug_align(mod->core_layout.size);
2386 mod->core_layout.text_size = mod->core_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002387 break;
2388 case 1: /* RO: text and ro-data */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302389 mod->core_layout.size = debug_align(mod->core_layout.size);
2390 mod->core_layout.ro_size = mod->core_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002391 break;
Jessica Yu444d13f2016-07-27 12:06:21 +09302392 case 2: /* RO after init */
2393 mod->core_layout.size = debug_align(mod->core_layout.size);
2394 mod->core_layout.ro_after_init_size = mod->core_layout.size;
2395 break;
2396 case 4: /* whole core */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302397 mod->core_layout.size = debug_align(mod->core_layout.size);
matthieu castet84e1c6b2010-11-16 22:35:16 +01002398 break;
2399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 }
2401
Jim Cromie5e124162011-12-06 12:11:31 -07002402 pr_debug("Init section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002404 for (i = 0; i < info->hdr->e_shnum; ++i) {
2405 Elf_Shdr *s = &info->sechdrs[i];
2406 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2409 || (s->sh_flags & masks[m][1])
2410 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002411 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 continue;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302413 s->sh_entsize = (get_offset(mod, &mod->init_layout.size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 | INIT_OFFSET_MASK);
Jim Cromie5e124162011-12-06 12:11:31 -07002415 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002417 switch (m) {
2418 case 0: /* executable */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302419 mod->init_layout.size = debug_align(mod->init_layout.size);
2420 mod->init_layout.text_size = mod->init_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002421 break;
2422 case 1: /* RO: text and ro-data */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302423 mod->init_layout.size = debug_align(mod->init_layout.size);
2424 mod->init_layout.ro_size = mod->init_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002425 break;
Jessica Yu444d13f2016-07-27 12:06:21 +09302426 case 2:
2427 /*
2428 * RO after init doesn't apply to init_layout (only
2429 * core_layout), so it just takes the value of ro_size.
2430 */
2431 mod->init_layout.ro_after_init_size = mod->init_layout.ro_size;
2432 break;
2433 case 4: /* whole init */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302434 mod->init_layout.size = debug_align(mod->init_layout.size);
matthieu castet84e1c6b2010-11-16 22:35:16 +01002435 break;
2436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 }
2438}
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440static void set_license(struct module *mod, const char *license)
2441{
2442 if (!license)
2443 license = "unspecified";
2444
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002445 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07002446 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002447 pr_warn("%s: module license '%s' taints kernel.\n",
2448 mod->name, license);
Rusty Russell373d4d02013-01-21 17:17:39 +10302449 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2450 LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 }
2452}
2453
2454/* Parse tag=value strings from .modinfo section */
2455static char *next_string(char *string, unsigned long *secsize)
2456{
2457 /* Skip non-zero chars */
2458 while (string[0]) {
2459 string++;
2460 if ((*secsize)-- <= 1)
2461 return NULL;
2462 }
2463
2464 /* Skip any zero padding. */
2465 while (!string[0]) {
2466 string++;
2467 if ((*secsize)-- <= 1)
2468 return NULL;
2469 }
2470 return string;
2471}
2472
Rusty Russell49668682010-08-05 12:59:10 -06002473static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
2475 char *p;
2476 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06002477 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2478 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002480 /*
2481 * get_modinfo() calls made before rewrite_section_headers()
2482 * must use sh_offset, as sh_addr isn't set!
2483 */
2484 for (p = (char *)info->hdr + infosec->sh_offset; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2486 return p + taglen + 1;
2487 }
2488 return NULL;
2489}
2490
Rusty Russell49668682010-08-05 12:59:10 -06002491static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07002492{
2493 struct module_attribute *attr;
2494 int i;
2495
2496 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2497 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06002498 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07002499 }
2500}
Matt Domschc988d2b2005-06-23 22:05:15 -07002501
Rusty Russella263f7762009-09-25 00:32:58 -06002502static void free_modinfo(struct module *mod)
2503{
2504 struct module_attribute *attr;
2505 int i;
2506
2507 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2508 if (attr->free)
2509 attr->free(mod);
2510 }
2511}
2512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01002514
Jessica Yu2d25bc52018-11-19 17:43:58 +01002515/* Lookup exported symbol in given range of kernel_symbols */
2516static const struct kernel_symbol *lookup_exported_symbol(const char *name,
2517 const struct kernel_symbol *start,
2518 const struct kernel_symbol *stop)
WANG Cong15bba372008-07-24 15:41:48 +01002519{
Alessio Igor Bogani9d634872011-05-18 22:35:59 +02002520 return bsearch(name, start, stop - start,
2521 sizeof(struct kernel_symbol), cmp_name);
WANG Cong15bba372008-07-24 15:41:48 +01002522}
2523
Tim Abbottca4787b2009-01-05 08:40:10 -06002524static int is_exported(const char *name, unsigned long value,
2525 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
Tim Abbottca4787b2009-01-05 08:40:10 -06002527 const struct kernel_symbol *ks;
2528 if (!mod)
Jessica Yu2d25bc52018-11-19 17:43:58 +01002529 ks = lookup_exported_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01002530 else
Jessica Yu2d25bc52018-11-19 17:43:58 +01002531 ks = lookup_exported_symbol(name, mod->syms, mod->syms + mod->num_syms);
2532
Ard Biesheuvel7290d582018-08-21 21:56:09 -07002533 return ks != NULL && kernel_symbol_value(ks) == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534}
2535
2536/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06002537static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
Rusty Russelleded41c2010-08-05 12:59:07 -06002539 const Elf_Shdr *sechdrs = info->sechdrs;
2540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2542 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2543 return 'v';
2544 else
2545 return 'w';
2546 }
2547 if (sym->st_shndx == SHN_UNDEF)
2548 return 'U';
Miroslav Benese0224412015-11-26 13:18:06 +10302549 if (sym->st_shndx == SHN_ABS || sym->st_shndx == info->index.pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 return 'a';
2551 if (sym->st_shndx >= SHN_LORESERVE)
2552 return '?';
2553 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2554 return 't';
2555 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2556 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2557 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2558 return 'r';
2559 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2560 return 'g';
2561 else
2562 return 'd';
2563 }
2564 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2565 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2566 return 's';
2567 else
2568 return 'b';
2569 }
Rusty Russelleded41c2010-08-05 12:59:07 -06002570 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2571 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06002573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 return '?';
2575}
2576
Jan Beulich4a496222009-07-06 14:50:42 +01002577static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
Miroslav Benese0224412015-11-26 13:18:06 +10302578 unsigned int shnum, unsigned int pcpundx)
Jan Beulich4a496222009-07-06 14:50:42 +01002579{
2580 const Elf_Shdr *sec;
2581
2582 if (src->st_shndx == SHN_UNDEF
2583 || src->st_shndx >= shnum
2584 || !src->st_name)
2585 return false;
2586
Miroslav Benese0224412015-11-26 13:18:06 +10302587#ifdef CONFIG_KALLSYMS_ALL
2588 if (src->st_shndx == pcpundx)
2589 return true;
2590#endif
2591
Jan Beulich4a496222009-07-06 14:50:42 +01002592 sec = sechdrs + src->st_shndx;
2593 if (!(sec->sh_flags & SHF_ALLOC)
2594#ifndef CONFIG_KALLSYMS_ALL
2595 || !(sec->sh_flags & SHF_EXECINSTR)
2596#endif
2597 || (sec->sh_entsize & INIT_OFFSET_MASK))
2598 return false;
2599
2600 return true;
2601}
2602
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302603/*
2604 * We only allocate and copy the strings needed by the parts of symtab
2605 * we keep. This is simple, but has the effect of making multiple
2606 * copies of duplicates. We could be more sophisticated, see
2607 * linux-kernel thread starting with
2608 * <73defb5e4bca04a6431392cc341112b1@localhost>.
2609 */
Rusty Russell49668682010-08-05 12:59:10 -06002610static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002611{
Rusty Russell49668682010-08-05 12:59:10 -06002612 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2613 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01002614 const Elf_Sym *src;
Satoru Takeuchi54523ec2012-12-05 12:29:04 +10302615 unsigned int i, nsrc, ndst, strtab_size = 0;
Jan Beulich4a496222009-07-06 14:50:42 +01002616
2617 /* Put symbol section at end of init part of module. */
2618 symsect->sh_flags |= SHF_ALLOC;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302619 symsect->sh_entsize = get_offset(mod, &mod->init_layout.size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06002620 info->index.sym) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002621 pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002622
Rusty Russell49668682010-08-05 12:59:10 -06002623 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002624 nsrc = symsect->sh_size / sizeof(*src);
Kevin Cernekee70b1e9162011-11-12 19:08:55 -08002625
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302626 /* Compute total space required for the core symbols' strtab. */
Rusty Russell59ef28b2012-10-25 10:49:25 +10302627 for (ndst = i = 0; i < nsrc; i++) {
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002628 if (i == 0 || is_livepatch_module(mod) ||
Miroslav Benese0224412015-11-26 13:18:06 +10302629 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum,
2630 info->index.pcpu)) {
Rusty Russell59ef28b2012-10-25 10:49:25 +10302631 strtab_size += strlen(&info->strtab[src[i].st_name])+1;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302632 ndst++;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002633 }
Rusty Russell59ef28b2012-10-25 10:49:25 +10302634 }
Jan Beulich4a496222009-07-06 14:50:42 +01002635
2636 /* Append room for core symbols at end of core part. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302637 info->symoffs = ALIGN(mod->core_layout.size, symsect->sh_addralign ?: 1);
2638 info->stroffs = mod->core_layout.size = info->symoffs + ndst * sizeof(Elf_Sym);
2639 mod->core_layout.size += strtab_size;
2640 mod->core_layout.size = debug_align(mod->core_layout.size);
Jan Beulich4a496222009-07-06 14:50:42 +01002641
Jan Beulich554bdfe2009-07-06 14:51:44 +01002642 /* Put string table section at end of init part of module. */
2643 strsect->sh_flags |= SHF_ALLOC;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302644 strsect->sh_entsize = get_offset(mod, &mod->init_layout.size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06002645 info->index.str) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002646 pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
Rusty Russell82440622016-02-03 16:55:26 +10302647
2648 /* We'll tack temporary mod_kallsyms on the end. */
2649 mod->init_layout.size = ALIGN(mod->init_layout.size,
2650 __alignof__(struct mod_kallsyms));
2651 info->mod_kallsyms_init_off = mod->init_layout.size;
2652 mod->init_layout.size += sizeof(struct mod_kallsyms);
2653 mod->init_layout.size = debug_align(mod->init_layout.size);
Jan Beulich4a496222009-07-06 14:50:42 +01002654}
2655
Rusty Russell82440622016-02-03 16:55:26 +10302656/*
2657 * We use the full symtab and strtab which layout_symtab arranged to
2658 * be appended to the init section. Later we switch to the cut-down
2659 * core-only ones.
2660 */
Rusty Russell811d66a2010-08-05 12:59:12 -06002661static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
Jan Beulich4a496222009-07-06 14:50:42 +01002663 unsigned int i, ndst;
2664 const Elf_Sym *src;
2665 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002666 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002667 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
Rusty Russell82440622016-02-03 16:55:26 +10302669 /* Set up to point into init section. */
2670 mod->kallsyms = mod->init_layout.base + info->mod_kallsyms_init_off;
2671
2672 mod->kallsyms->symtab = (void *)symsec->sh_addr;
2673 mod->kallsyms->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002674 /* Make sure we get permanent strtab: don't use info->strtab. */
Rusty Russell82440622016-02-03 16:55:26 +10302675 mod->kallsyms->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 /* Set types up while we still have access to sections. */
Rusty Russell82440622016-02-03 16:55:26 +10302678 for (i = 0; i < mod->kallsyms->num_symtab; i++)
Vincent Whitchurch5439c982018-12-14 17:05:54 +01002679 mod->kallsyms->symtab[i].st_size
Rusty Russell82440622016-02-03 16:55:26 +10302680 = elf_type(&mod->kallsyms->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002681
Rusty Russell82440622016-02-03 16:55:26 +10302682 /* Now populate the cut down core kallsyms for after init. */
2683 mod->core_kallsyms.symtab = dst = mod->core_layout.base + info->symoffs;
2684 mod->core_kallsyms.strtab = s = mod->core_layout.base + info->stroffs;
2685 src = mod->kallsyms->symtab;
2686 for (ndst = i = 0; i < mod->kallsyms->num_symtab; i++) {
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002687 if (i == 0 || is_livepatch_module(mod) ||
Miroslav Benese0224412015-11-26 13:18:06 +10302688 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum,
2689 info->index.pcpu)) {
Rusty Russell59ef28b2012-10-25 10:49:25 +10302690 dst[ndst] = src[i];
Rusty Russell82440622016-02-03 16:55:26 +10302691 dst[ndst++].st_name = s - mod->core_kallsyms.strtab;
2692 s += strlcpy(s, &mod->kallsyms->strtab[src[i].st_name],
Rusty Russell59ef28b2012-10-25 10:49:25 +10302693 KSYM_NAME_LEN) + 1;
2694 }
Jan Beulich4a496222009-07-06 14:50:42 +01002695 }
Rusty Russell82440622016-02-03 16:55:26 +10302696 mod->core_kallsyms.num_symtab = ndst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}
2698#else
Rusty Russell49668682010-08-05 12:59:10 -06002699static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002700{
2701}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002702
Michał Mirosławabbce902010-09-20 01:58:08 +02002703static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
2705}
2706#endif /* CONFIG_KALLSYMS */
2707
Zhou Chengming52796312017-07-07 11:15:58 +08002708static void dynamic_debug_setup(struct module *mod, struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002709{
Rusty Russell811d66a2010-08-05 12:59:12 -06002710 if (!debug)
2711 return;
Rasmus Villemoes513770f2019-03-07 16:27:48 -08002712 ddebug_add_module(debug, num, mod->name);
Rusty Russell5e458cc2008-10-22 10:00:13 -05002713}
Jason Baron346e15b2008-08-12 16:46:19 -04002714
Zhou Chengming52796312017-07-07 11:15:58 +08002715static void dynamic_debug_remove(struct module *mod, struct _ddebug *debug)
Yehuda Sadehff49d742010-07-03 13:07:35 +10002716{
2717 if (debug)
Zhou Chengming52796312017-07-07 11:15:58 +08002718 ddebug_remove_module(mod->name);
Yehuda Sadehff49d742010-07-03 13:07:35 +10002719}
2720
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002721void * __weak module_alloc(unsigned long size)
2722{
Rusty Russell82fab442012-12-11 09:38:33 +10302723 return vmalloc_exec(size);
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002724}
2725
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002726#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002727static void kmemleak_load_module(const struct module *mod,
2728 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002729{
2730 unsigned int i;
2731
2732 /* only scan the sections containing data */
Catalin Marinasc017b4be32009-10-28 13:33:09 +00002733 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002734
Rusty Russell49668682010-08-05 12:59:10 -06002735 for (i = 1; i < info->hdr->e_shnum; i++) {
Steven Rostedt06c94942013-05-15 20:33:01 +01002736 /* Scan all writable sections that's not executable */
2737 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
2738 !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
2739 (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002740 continue;
2741
Rusty Russell49668682010-08-05 12:59:10 -06002742 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2743 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002744 }
2745}
2746#else
Rusty Russell49668682010-08-05 12:59:10 -06002747static inline void kmemleak_load_module(const struct module *mod,
2748 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002749{
2750}
2751#endif
2752
Rusty Russell106a4ee2012-09-26 10:09:40 +01002753#ifdef CONFIG_MODULE_SIG
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302754static int module_sig_check(struct load_info *info, int flags)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002755{
2756 int err = -ENOKEY;
Kees Cook34e11692012-10-16 07:31:07 +10302757 const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
2758 const void *mod = info->hdr;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002759
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302760 /*
2761 * Require flags == 0, as a module with version information
2762 * removed is no longer the module that was signed
2763 */
2764 if (flags == 0 &&
2765 info->len > markerlen &&
Kees Cook34e11692012-10-16 07:31:07 +10302766 memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
David Howellscaabe242012-10-20 01:19:29 +01002767 /* We truncate the module to discard the signature */
Kees Cook34e11692012-10-16 07:31:07 +10302768 info->len -= markerlen;
Jessica Yuf314dfe2018-06-29 16:37:08 +02002769 err = mod_verify_sig(mod, info);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002770 }
2771
2772 if (!err) {
2773 info->sig_ok = true;
2774 return 0;
2775 }
2776
2777 /* Not having a signature is only an error if we're strict. */
Jia Zhang2c8fd262018-04-11 11:53:33 +08002778 if (err == -ENOKEY && !is_module_sig_enforced())
Rusty Russell106a4ee2012-09-26 10:09:40 +01002779 err = 0;
2780
2781 return err;
2782}
2783#else /* !CONFIG_MODULE_SIG */
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302784static int module_sig_check(struct load_info *info, int flags)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002785{
2786 return 0;
2787}
2788#endif /* !CONFIG_MODULE_SIG */
2789
Kees Cook34e11692012-10-16 07:31:07 +10302790/* Sanity checks against invalid binaries, wrong arch, weird elf version. */
2791static int elf_header_check(struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002792{
Kees Cook34e11692012-10-16 07:31:07 +10302793 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002794 return -ENOEXEC;
2795
Kees Cook34e11692012-10-16 07:31:07 +10302796 if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2797 || info->hdr->e_type != ET_REL
2798 || !elf_check_arch(info->hdr)
2799 || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2800 return -ENOEXEC;
2801
2802 if (info->hdr->e_shoff >= info->len
2803 || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2804 info->len - info->hdr->e_shoff))
2805 return -ENOEXEC;
2806
2807 return 0;
2808}
2809
Linus Torvalds3afe9f82015-04-07 10:33:49 -07002810#define COPY_CHUNK_SIZE (16*PAGE_SIZE)
2811
2812static int copy_chunked_from_user(void *dst, const void __user *usrc, unsigned long len)
2813{
2814 do {
2815 unsigned long n = min(len, COPY_CHUNK_SIZE);
2816
2817 if (copy_from_user(dst, usrc, n) != 0)
2818 return -EFAULT;
2819 cond_resched();
2820 dst += n;
2821 usrc += n;
2822 len -= n;
2823 } while (len);
2824 return 0;
2825}
2826
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002827#ifdef CONFIG_LIVEPATCH
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05002828static int check_modinfo_livepatch(struct module *mod, struct load_info *info)
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002829{
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05002830 if (get_modinfo(info, "livepatch")) {
2831 mod->klp = true;
2832 add_taint_module(mod, TAINT_LIVEPATCH, LOCKDEP_STILL_OK);
Joe Lawrence7598d162017-01-12 11:57:44 -05002833 pr_notice_once("%s: tainting kernel with TAINT_LIVEPATCH\n",
2834 mod->name);
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05002835 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002836
2837 return 0;
2838}
2839#else /* !CONFIG_LIVEPATCH */
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05002840static int check_modinfo_livepatch(struct module *mod, struct load_info *info)
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002841{
2842 if (get_modinfo(info, "livepatch")) {
2843 pr_err("%s: module is marked as livepatch module, but livepatch support is disabled",
2844 mod->name);
2845 return -ENOEXEC;
2846 }
2847
2848 return 0;
2849}
2850#endif /* CONFIG_LIVEPATCH */
2851
Andi Kleencaf75012018-01-25 15:50:28 -08002852static void check_modinfo_retpoline(struct module *mod, struct load_info *info)
2853{
2854 if (retpoline_module_ok(get_modinfo(info, "retpoline")))
2855 return;
2856
2857 pr_warn("%s: loading module not compiled with retpoline compiler.\n",
2858 mod->name);
2859}
2860
Kees Cook34e11692012-10-16 07:31:07 +10302861/* Sets info->hdr and info->len. */
2862static int copy_module_from_user(const void __user *umod, unsigned long len,
2863 struct load_info *info)
2864{
Kees Cook2e72d512012-10-16 07:32:07 +10302865 int err;
2866
Kees Cook34e11692012-10-16 07:31:07 +10302867 info->len = len;
2868 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002869 return -ENOEXEC;
2870
Mimi Zoharc77b8cd2018-07-13 14:06:02 -04002871 err = security_kernel_load_data(LOADING_MODULE);
Kees Cook2e72d512012-10-16 07:32:07 +10302872 if (err)
2873 return err;
2874
Rusty Russell40dd2562010-08-05 12:59:03 -06002875 /* Suck in entire file: we'll want most of it. */
Kirill A. Shutemovcc9e6052015-03-24 12:31:40 +10302876 info->hdr = __vmalloc(info->len,
Michal Hocko19809c22017-05-08 15:57:44 -07002877 GFP_KERNEL | __GFP_NOWARN, PAGE_KERNEL);
Kees Cook34e11692012-10-16 07:31:07 +10302878 if (!info->hdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06002879 return -ENOMEM;
2880
Linus Torvalds3afe9f82015-04-07 10:33:49 -07002881 if (copy_chunked_from_user(info->hdr, umod, info->len) != 0) {
Kees Cook34e11692012-10-16 07:31:07 +10302882 vfree(info->hdr);
2883 return -EFAULT;
Rusty Russell40dd2562010-08-05 12:59:03 -06002884 }
2885
Rusty Russell40dd2562010-08-05 12:59:03 -06002886 return 0;
Kees Cook34e11692012-10-16 07:31:07 +10302887}
Rusty Russell40dd2562010-08-05 12:59:03 -06002888
Rusty Russelld9131882010-08-05 12:59:08 -06002889static void free_copy(struct load_info *info)
2890{
Rusty Russelld9131882010-08-05 12:59:08 -06002891 vfree(info->hdr);
2892}
2893
Rusty Russell2f3238a2012-10-22 18:09:41 +10302894static int rewrite_section_headers(struct load_info *info, int flags)
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002895{
2896 unsigned int i;
2897
2898 /* This should always be true, but let's be sure. */
2899 info->sechdrs[0].sh_addr = 0;
2900
2901 for (i = 1; i < info->hdr->e_shnum; i++) {
2902 Elf_Shdr *shdr = &info->sechdrs[i];
2903 if (shdr->sh_type != SHT_NOBITS
2904 && info->len < shdr->sh_offset + shdr->sh_size) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002905 pr_err("Module len %lu truncated\n", info->len);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002906 return -ENOEXEC;
2907 }
2908
2909 /* Mark all sections sh_addr with their address in the
2910 temporary image. */
2911 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2912
2913#ifndef CONFIG_MODULE_UNLOAD
2914 /* Don't load .exit sections */
2915 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2916 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2917#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002918 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002919
2920 /* Track but don't keep modinfo and version sections. */
Rusty Russelld6df72a2010-08-05 12:59:07 -06002921 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Kees Cook3e2e8572017-04-21 15:35:27 -07002922 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2923
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002924 return 0;
2925}
2926
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002927/*
2928 * Set up our basic convenience variables (pointers to section headers,
2929 * search for module section index etc), and do some basic section
2930 * verification.
2931 *
Jessica Yu81a0abd2018-06-22 13:59:29 +02002932 * Set info->mod to the temporary copy of the module in info->hdr. The final one
2933 * will be allocated in move_module().
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002934 */
Jessica Yu81a0abd2018-06-22 13:59:29 +02002935static int setup_load_info(struct load_info *info, int flags)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002936{
2937 unsigned int i;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002938
2939 /* Set up the convenience variables */
2940 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002941 info->secstrings = (void *)info->hdr
2942 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002943
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002944 /* Try to find a name early so we can log errors with a module name */
2945 info->index.info = find_sec(info, ".modinfo");
2946 if (!info->index.info)
2947 info->name = "(missing .modinfo section)";
2948 else
2949 info->name = get_modinfo(info, "name");
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002950
2951 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002952 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002953 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2954 info->index.sym = i;
2955 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002956 info->strtab = (char *)info->hdr
2957 + info->sechdrs[info->index.str].sh_offset;
2958 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002959 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002960 }
2961
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002962 if (info->index.sym == 0) {
2963 pr_warn("%s: module has no symbols (stripped?)\n", info->name);
2964 return -ENOEXEC;
2965 }
2966
Rusty Russell49668682010-08-05 12:59:10 -06002967 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002968 if (!info->index.mod) {
Kees Cook3e2e8572017-04-21 15:35:27 -07002969 pr_warn("%s: No module found in object\n",
2970 info->name ?: "(missing .modinfo name field)");
Jessica Yu81a0abd2018-06-22 13:59:29 +02002971 return -ENOEXEC;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002972 }
2973 /* This is temporary: point mod into copy of data. */
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002974 info->mod = (void *)info->hdr + info->sechdrs[info->index.mod].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002975
Kees Cook3e2e8572017-04-21 15:35:27 -07002976 /*
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002977 * If we didn't load the .modinfo 'name' field earlier, fall back to
Kees Cook3e2e8572017-04-21 15:35:27 -07002978 * on-disk struct mod 'name' field.
2979 */
2980 if (!info->name)
Jessica Yu81a0abd2018-06-22 13:59:29 +02002981 info->name = info->mod->name;
Kees Cook3e2e8572017-04-21 15:35:27 -07002982
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002983 if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
2984 info->index.vers = 0; /* Pretend no __versions section! */
2985 else
2986 info->index.vers = find_sec(info, "__versions");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002987
Rusty Russell49668682010-08-05 12:59:10 -06002988 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002989
Jessica Yu81a0abd2018-06-22 13:59:29 +02002990 return 0;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002991}
2992
Rusty Russell2f3238a2012-10-22 18:09:41 +10302993static int check_modinfo(struct module *mod, struct load_info *info, int flags)
Rusty Russell40dd2562010-08-05 12:59:03 -06002994{
Rusty Russell49668682010-08-05 12:59:10 -06002995 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002996 int err;
2997
Rusty Russell2f3238a2012-10-22 18:09:41 +10302998 if (flags & MODULE_INIT_IGNORE_VERMAGIC)
2999 modmagic = NULL;
3000
Rusty Russell40dd2562010-08-05 12:59:03 -06003001 /* This is allowed: modprobe --force will invalidate it. */
3002 if (!modmagic) {
3003 err = try_to_force_load(mod, "bad vermagic");
3004 if (err)
3005 return err;
Rusty Russell49668682010-08-05 12:59:10 -06003006 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003007 pr_err("%s: version magic '%s' should be '%s'\n",
Kees Cook3e2e8572017-04-21 15:35:27 -07003008 info->name, modmagic, vermagic);
Rusty Russell40dd2562010-08-05 12:59:03 -06003009 return -ENOEXEC;
3010 }
3011
Libor Pechacek3205c362016-04-13 11:06:12 +09303012 if (!get_modinfo(info, "intree")) {
3013 if (!test_taint(TAINT_OOT_MODULE))
3014 pr_warn("%s: loading out-of-tree module taints kernel.\n",
3015 mod->name);
Rusty Russell373d4d02013-01-21 17:17:39 +10303016 add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
Libor Pechacek3205c362016-04-13 11:06:12 +09303017 }
Ben Hutchings2449b8b2011-10-24 15:12:28 +02003018
Andi Kleencaf75012018-01-25 15:50:28 -08003019 check_modinfo_retpoline(mod, info);
3020
Rusty Russell49668682010-08-05 12:59:10 -06003021 if (get_modinfo(info, "staging")) {
Rusty Russell373d4d02013-01-21 17:17:39 +10303022 add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003023 pr_warn("%s: module is from the staging directory, the quality "
3024 "is unknown, you have been warned.\n", mod->name);
Rusty Russell40dd2562010-08-05 12:59:03 -06003025 }
Rusty Russell22e268e2010-08-05 12:59:05 -06003026
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05003027 err = check_modinfo_livepatch(mod, info);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003028 if (err)
3029 return err;
3030
Rusty Russell22e268e2010-08-05 12:59:05 -06003031 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06003032 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06003033
Rusty Russell40dd2562010-08-05 12:59:03 -06003034 return 0;
3035}
3036
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303037static int find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003038{
Rusty Russell49668682010-08-05 12:59:10 -06003039 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003040 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06003041 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003042 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003043 mod->crcs = section_addr(info, "__kcrctab");
3044 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003045 sizeof(*mod->gpl_syms),
3046 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003047 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
3048 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003049 "__ksymtab_gpl_future",
3050 sizeof(*mod->gpl_future_syms),
3051 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003052 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003053
3054#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06003055 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003056 sizeof(*mod->unused_syms),
3057 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003058 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
3059 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003060 sizeof(*mod->unused_gpl_syms),
3061 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003062 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003063#endif
3064#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06003065 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003066 sizeof(*mod->ctors), &mod->num_ctors);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303067 if (!mod->ctors)
3068 mod->ctors = section_objs(info, ".init_array",
3069 sizeof(*mod->ctors), &mod->num_ctors);
3070 else if (find_sec(info, ".init_array")) {
3071 /*
3072 * This shouldn't happen with same compiler and binutils
3073 * building all parts of the module.
3074 */
Ionut Alexa6da0b562014-11-10 09:31:29 +10303075 pr_warn("%s: has both .ctors and .init_array.\n",
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303076 mod->name);
3077 return -EINVAL;
3078 }
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003079#endif
3080
3081#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -05003082 mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
3083 sizeof(*mod->tracepoints_ptrs),
3084 &mod->num_tracepoints);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003085#endif
Matt Mullinsa38d1102018-12-12 16:42:37 -08003086#ifdef CONFIG_BPF_EVENTS
3087 mod->bpf_raw_events = section_objs(info, "__bpf_raw_tp_map",
3088 sizeof(*mod->bpf_raw_events),
3089 &mod->num_bpf_raw_events);
3090#endif
Masahiro Yamadae9666d12018-12-31 00:14:15 +09003091#ifdef CONFIG_JUMP_LABEL
Jason Baronbf5438fc2010-09-17 11:09:00 -04003092 mod->jump_entries = section_objs(info, "__jump_table",
3093 sizeof(*mod->jump_entries),
3094 &mod->num_jump_entries);
3095#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003096#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06003097 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003098 sizeof(*mod->trace_events),
3099 &mod->num_trace_events);
Jeremy Linton99be6472017-05-31 16:56:44 -05003100 mod->trace_evals = section_objs(info, "_ftrace_eval_map",
3101 sizeof(*mod->trace_evals),
3102 &mod->num_trace_evals);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003103#endif
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05003104#ifdef CONFIG_TRACING
3105 mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
3106 sizeof(*mod->trace_bprintk_fmt_start),
3107 &mod->num_trace_bprintk_fmt);
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05003108#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003109#ifdef CONFIG_FTRACE_MCOUNT_RECORD
3110 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06003111 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003112 sizeof(*mod->ftrace_callsites),
3113 &mod->num_ftrace_callsites);
3114#endif
Masami Hiramatsu540adea2018-01-13 02:55:03 +09003115#ifdef CONFIG_FUNCTION_ERROR_INJECTION
3116 mod->ei_funcs = section_objs(info, "_error_injection_whitelist",
3117 sizeof(*mod->ei_funcs),
3118 &mod->num_ei_funcs);
Josef Bacik92ace992017-12-11 11:36:46 -05003119#endif
Rusty Russell811d66a2010-08-05 12:59:12 -06003120 mod->extable = section_objs(info, "__ex_table",
3121 sizeof(*mod->extable), &mod->num_exentries);
3122
Rusty Russell49668682010-08-05 12:59:10 -06003123 if (section_addr(info, "__obsparm"))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003124 pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06003125
3126 info->debug = section_objs(info, "__verbose",
3127 sizeof(*info->debug), &info->num_debug);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303128
3129 return 0;
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003130}
3131
Rusty Russell49668682010-08-05 12:59:10 -06003132static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003133{
3134 int i;
3135 void *ptr;
3136
3137 /* Do the allocs. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10303138 ptr = module_alloc(mod->core_layout.size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003139 /*
3140 * The pointer to this block is stored in the module structure
3141 * which is inside the block. Just mark it as not being a
3142 * leak.
3143 */
3144 kmemleak_not_leak(ptr);
3145 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06003146 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003147
Rusty Russell7523e4d2015-11-26 09:44:08 +10303148 memset(ptr, 0, mod->core_layout.size);
3149 mod->core_layout.base = ptr;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003150
Rusty Russell7523e4d2015-11-26 09:44:08 +10303151 if (mod->init_layout.size) {
3152 ptr = module_alloc(mod->init_layout.size);
Rusty Russell82fab442012-12-11 09:38:33 +10303153 /*
3154 * The pointer to this block is stored in the module structure
3155 * which is inside the block. This block doesn't need to be
3156 * scanned as it contains data and code that will be freed
3157 * after the module is initialized.
3158 */
3159 kmemleak_ignore(ptr);
3160 if (!ptr) {
Rusty Russell7523e4d2015-11-26 09:44:08 +10303161 module_memfree(mod->core_layout.base);
Rusty Russell82fab442012-12-11 09:38:33 +10303162 return -ENOMEM;
3163 }
Rusty Russell7523e4d2015-11-26 09:44:08 +10303164 memset(ptr, 0, mod->init_layout.size);
3165 mod->init_layout.base = ptr;
Rusty Russell82fab442012-12-11 09:38:33 +10303166 } else
Rusty Russell7523e4d2015-11-26 09:44:08 +10303167 mod->init_layout.base = NULL;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003168
3169 /* Transfer each section which specifies SHF_ALLOC */
Jim Cromie5e124162011-12-06 12:11:31 -07003170 pr_debug("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06003171 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003172 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06003173 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003174
Rusty Russell49668682010-08-05 12:59:10 -06003175 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003176 continue;
3177
Rusty Russell49668682010-08-05 12:59:10 -06003178 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Rusty Russell7523e4d2015-11-26 09:44:08 +10303179 dest = mod->init_layout.base
Rusty Russell49668682010-08-05 12:59:10 -06003180 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003181 else
Rusty Russell7523e4d2015-11-26 09:44:08 +10303182 dest = mod->core_layout.base + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003183
Rusty Russell49668682010-08-05 12:59:10 -06003184 if (shdr->sh_type != SHT_NOBITS)
3185 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003186 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06003187 shdr->sh_addr = (unsigned long)dest;
Jim Cromie5e124162011-12-06 12:11:31 -07003188 pr_debug("\t0x%lx %s\n",
3189 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003190 }
Rusty Russelld9131882010-08-05 12:59:08 -06003191
3192 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003193}
3194
Rusty Russell49668682010-08-05 12:59:10 -06003195static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06003196{
Libor Pechacek3205c362016-04-13 11:06:12 +09303197 int prev_taint = test_taint(TAINT_PROPRIETARY_MODULE);
3198
Rusty Russell22e268e2010-08-05 12:59:05 -06003199 /*
3200 * ndiswrapper is under GPL by itself, but loads proprietary modules.
3201 * Don't use add_taint_module(), as it would prevent ndiswrapper from
3202 * using GPL-only symbols it needs.
3203 */
3204 if (strcmp(mod->name, "ndiswrapper") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303205 add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06003206
3207 /* driverloader was caught wrongly pretending to be under GPL */
3208 if (strcmp(mod->name, "driverloader") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303209 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
3210 LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06003211
Matthew Garrettc99af372012-06-22 13:49:31 -04003212 /* lve claims to be GPL but upstream won't provide source */
3213 if (strcmp(mod->name, "lve") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303214 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
3215 LOCKDEP_NOW_UNRELIABLE);
Matthew Garrettc99af372012-06-22 13:49:31 -04003216
Libor Pechacek3205c362016-04-13 11:06:12 +09303217 if (!prev_taint && test_taint(TAINT_PROPRIETARY_MODULE))
3218 pr_warn("%s: module license taints kernel.\n", mod->name);
3219
Rusty Russell22e268e2010-08-05 12:59:05 -06003220#ifdef CONFIG_MODVERSIONS
3221 if ((mod->num_syms && !mod->crcs)
3222 || (mod->num_gpl_syms && !mod->gpl_crcs)
3223 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
3224#ifdef CONFIG_UNUSED_SYMBOLS
3225 || (mod->num_unused_syms && !mod->unused_crcs)
3226 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
3227#endif
3228 ) {
3229 return try_to_force_load(mod,
3230 "no versions for exported symbols");
3231 }
3232#endif
3233 return 0;
3234}
3235
3236static void flush_module_icache(const struct module *mod)
3237{
3238 mm_segment_t old_fs;
3239
3240 /* flush the icache in correct context */
3241 old_fs = get_fs();
3242 set_fs(KERNEL_DS);
3243
3244 /*
3245 * Flush the instruction cache, since we've played with text.
3246 * Do it before processing of module parameters, so the module
3247 * can provide parameter accessor functions of its own.
3248 */
Rusty Russell7523e4d2015-11-26 09:44:08 +10303249 if (mod->init_layout.base)
3250 flush_icache_range((unsigned long)mod->init_layout.base,
3251 (unsigned long)mod->init_layout.base
3252 + mod->init_layout.size);
3253 flush_icache_range((unsigned long)mod->core_layout.base,
3254 (unsigned long)mod->core_layout.base + mod->core_layout.size);
Rusty Russell22e268e2010-08-05 12:59:05 -06003255
3256 set_fs(old_fs);
3257}
3258
Jonas Bonn74e08fc2011-06-30 21:22:11 +02003259int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
3260 Elf_Shdr *sechdrs,
3261 char *secstrings,
3262 struct module *mod)
3263{
3264 return 0;
3265}
3266
Prarit Bhargavabe7de5f2016-07-21 15:37:56 +09303267/* module_blacklist is a comma-separated list of module names */
3268static char *module_blacklist;
Luis R. Rodriguez96b5b192017-06-28 18:32:31 -07003269static bool blacklisted(const char *module_name)
Prarit Bhargavabe7de5f2016-07-21 15:37:56 +09303270{
3271 const char *p;
3272 size_t len;
3273
3274 if (!module_blacklist)
3275 return false;
3276
3277 for (p = module_blacklist; *p; p += len) {
3278 len = strcspn(p, ",");
3279 if (strlen(module_name) == len && !memcmp(module_name, p, len))
3280 return true;
3281 if (p[len] == ',')
3282 len++;
3283 }
3284 return false;
3285}
3286core_param(module_blacklist, module_blacklist, charp, 0400);
3287
Rusty Russell2f3238a2012-10-22 18:09:41 +10303288static struct module *layout_and_allocate(struct load_info *info, int flags)
Rusty Russelld9131882010-08-05 12:59:08 -06003289{
Rusty Russelld9131882010-08-05 12:59:08 -06003290 struct module *mod;
Jessica Yu444d13f2016-07-27 12:06:21 +09303291 unsigned int ndx;
Rusty Russelld9131882010-08-05 12:59:08 -06003292 int err;
3293
Jessica Yu81a0abd2018-06-22 13:59:29 +02003294 err = check_modinfo(info->mod, info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06003295 if (err)
3296 return ERR_PTR(err);
3297
3298 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06003299 err = module_frob_arch_sections(info->hdr, info->sechdrs,
Jessica Yu81a0abd2018-06-22 13:59:29 +02003300 info->secstrings, info->mod);
Rusty Russelld9131882010-08-05 12:59:08 -06003301 if (err < 0)
Rusty Russell8d8022e2013-07-03 10:06:28 +09303302 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06003303
Rusty Russell8d8022e2013-07-03 10:06:28 +09303304 /* We will do a special allocation for per-cpu sections later. */
3305 info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06003306
Jessica Yu444d13f2016-07-27 12:06:21 +09303307 /*
3308 * Mark ro_after_init section with SHF_RO_AFTER_INIT so that
3309 * layout_sections() can put it in the right place.
3310 * Note: ro_after_init sections also have SHF_{WRITE,ALLOC} set.
3311 */
3312 ndx = find_sec(info, ".data..ro_after_init");
3313 if (ndx)
3314 info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
Ard Biesheuvele8722672018-09-18 23:51:43 -07003315 /*
3316 * Mark the __jump_table section as ro_after_init as well: these data
3317 * structures are never modified, with the exception of entries that
3318 * refer to code in the __init section, which are annotated as such
3319 * at module load time.
3320 */
3321 ndx = find_sec(info, "__jump_table");
3322 if (ndx)
3323 info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
Jessica Yu444d13f2016-07-27 12:06:21 +09303324
Rusty Russelld9131882010-08-05 12:59:08 -06003325 /* Determine total sizes, and put offsets in sh_entsize. For now
3326 this is done generically; there doesn't appear to be any
3327 special cases for the architectures. */
Jessica Yu81a0abd2018-06-22 13:59:29 +02003328 layout_sections(info->mod, info);
3329 layout_symtab(info->mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003330
3331 /* Allocate and move to the final place */
Jessica Yu81a0abd2018-06-22 13:59:29 +02003332 err = move_module(info->mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003333 if (err)
Rusty Russell8d8022e2013-07-03 10:06:28 +09303334 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06003335
3336 /* Module has been copied to its final place now: return it. */
3337 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06003338 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003339 return mod;
Rusty Russelld9131882010-08-05 12:59:08 -06003340}
3341
3342/* mod is no longer valid after this! */
3343static void module_deallocate(struct module *mod, struct load_info *info)
3344{
Rusty Russelld9131882010-08-05 12:59:08 -06003345 percpu_modfree(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10303346 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10303347 module_memfree(mod->init_layout.base);
3348 module_memfree(mod->core_layout.base);
Rusty Russelld9131882010-08-05 12:59:08 -06003349}
3350
Jonas Bonn74e08fc2011-06-30 21:22:11 +02003351int __weak module_finalize(const Elf_Ehdr *hdr,
3352 const Elf_Shdr *sechdrs,
3353 struct module *me)
3354{
3355 return 0;
3356}
3357
Rusty Russell811d66a2010-08-05 12:59:12 -06003358static int post_relocation(struct module *mod, const struct load_info *info)
3359{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003360 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06003361 sort_extable(mod->extable, mod->extable + mod->num_exentries);
3362
3363 /* Copy relocated percpu area over. */
3364 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
3365 info->sechdrs[info->index.pcpu].sh_size);
3366
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003367 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06003368 add_kallsyms(mod, info);
3369
3370 /* Arch-specific module finalizing. */
3371 return module_finalize(info->hdr, info->sechdrs, mod);
3372}
3373
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303374/* Is this module of this name done loading? No locks held. */
3375static bool finished_loading(const char *name)
3376{
3377 struct module *mod;
3378 bool ret;
3379
Peter Zijlstra9cc019b2015-02-11 15:01:13 +10303380 /*
3381 * The module_mutex should not be a heavily contended lock;
3382 * if we get the occasional sleep here, we'll go an extra iteration
3383 * in the wait_event_interruptible(), which is harmless.
3384 */
3385 sched_annotate_sleep();
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303386 mutex_lock(&module_mutex);
Mathias Krause4f6de4d52013-07-02 15:35:11 +09303387 mod = find_module_all(name, strlen(name), true);
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303388 ret = !mod || mod->state == MODULE_STATE_LIVE
3389 || mod->state == MODULE_STATE_GOING;
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303390 mutex_unlock(&module_mutex);
3391
3392 return ret;
3393}
3394
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003395/* Call module constructors. */
3396static void do_mod_ctors(struct module *mod)
3397{
3398#ifdef CONFIG_CONSTRUCTORS
3399 unsigned long i;
3400
3401 for (i = 0; i < mod->num_ctors; i++)
3402 mod->ctors[i]();
3403#endif
3404}
3405
Rusty Russellc7496372015-01-20 09:07:05 +10303406/* For freeing module_init on success, in case kallsyms traversing */
3407struct mod_initfree {
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003408 struct llist_node node;
Rusty Russellc7496372015-01-20 09:07:05 +10303409 void *module_init;
3410};
3411
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003412static void do_free_init(struct work_struct *w)
Rusty Russellc7496372015-01-20 09:07:05 +10303413{
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003414 struct llist_node *pos, *n, *list;
3415 struct mod_initfree *initfree;
3416
3417 list = llist_del_all(&init_free_list);
3418
3419 synchronize_rcu();
3420
3421 llist_for_each_safe(pos, n, list) {
3422 initfree = container_of(pos, struct mod_initfree, node);
3423 module_memfree(initfree->module_init);
3424 kfree(initfree);
3425 }
Rusty Russellc7496372015-01-20 09:07:05 +10303426}
3427
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003428static int __init modules_wq_init(void)
3429{
3430 INIT_WORK(&init_free_wq, do_free_init);
3431 init_llist_head(&init_free_list);
3432 return 0;
3433}
3434module_init(modules_wq_init);
3435
Jan Kiszkabe02a182015-02-17 13:46:50 -08003436/*
3437 * This is where the real work happens.
3438 *
3439 * Keep it uninlined to provide a reliable breakpoint target, e.g. for the gdb
3440 * helper command 'lx-symbols'.
3441 */
3442static noinline int do_init_module(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 int ret = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303445 struct mod_initfree *freeinit;
3446
3447 freeinit = kmalloc(sizeof(*freeinit), GFP_KERNEL);
3448 if (!freeinit) {
3449 ret = -ENOMEM;
3450 goto fail;
3451 }
Rusty Russell7523e4d2015-11-26 09:44:08 +10303452 freeinit->module_init = mod->init_layout.base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
Tejun Heo774a1222013-01-15 18:52:51 -08003454 /*
3455 * We want to find out whether @mod uses async during init. Clear
3456 * PF_USED_ASYNC. async_schedule*() will set it.
3457 */
3458 current->flags &= ~PF_USED_ASYNC;
3459
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003460 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 /* Start the module */
3462 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07003463 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 if (ret < 0) {
Rusty Russellc7496372015-01-20 09:07:05 +10303465 goto fail_free_freeinit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003467 if (ret > 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003468 pr_warn("%s: '%s'->init suspiciously returned %d, it should "
3469 "follow 0/-E convention\n"
3470 "%s: loading module anyway...\n",
3471 __func__, mod->name, ret, __func__);
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003472 dump_stack();
3473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Rusty Russell6f139092012-09-28 14:31:03 +09303475 /* Now it's a first class citizen! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 mod->state = MODULE_STATE_LIVE;
Masami Hiramatsu0deddf42009-01-06 14:41:54 -08003477 blocking_notifier_call_chain(&module_notify_list,
3478 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07003479
Tejun Heo774a1222013-01-15 18:52:51 -08003480 /*
3481 * We need to finish all async code before the module init sequence
3482 * is done. This has potential to deadlock. For example, a newly
3483 * detected block device can trigger request_module() of the
3484 * default iosched from async probing task. Once userland helper
3485 * reaches here, async_synchronize_full() will wait on the async
3486 * task waiting on request_module() and deadlock.
3487 *
3488 * This deadlock is avoided by perfomring async_synchronize_full()
3489 * iff module init queued any async jobs. This isn't a full
3490 * solution as it will deadlock the same if module loading from
3491 * async jobs nests more than once; however, due to the various
3492 * constraints, this hack seems to be the best option for now.
3493 * Please refer to the following thread for details.
3494 *
3495 * http://thread.gmane.org/gmane.linux.kernel/1420814
3496 */
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003497 if (!mod->async_probe_requested && (current->flags & PF_USED_ASYNC))
Tejun Heo774a1222013-01-15 18:52:51 -08003498 async_synchronize_full();
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07003499
Steven Rostedt (VMware)aba4b5c2017-09-01 08:35:38 -04003500 ftrace_free_mem(mod, mod->init_layout.base, mod->init_layout.base +
Steven Rostedt (VMware)3e234282017-03-03 18:00:22 -05003501 mod->init_layout.size);
Rusty Russell6c5db222008-03-10 11:43:52 -07003502 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 /* Drop initial reference. */
3504 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06003505 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01003506#ifdef CONFIG_KALLSYMS
Rusty Russell82440622016-02-03 16:55:26 +10303507 /* Switch to core kallsyms now init is done: kallsyms may be walking! */
3508 rcu_assign_pointer(mod->kallsyms, &mod->core_kallsyms);
Jan Beulich4a496222009-07-06 14:50:42 +01003509#endif
Jessica Yu444d13f2016-07-27 12:06:21 +09303510 module_enable_ro(mod, true);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09303511 mod_tree_remove_init(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10303512 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10303513 mod->init_layout.base = NULL;
3514 mod->init_layout.size = 0;
3515 mod->init_layout.ro_size = 0;
Jessica Yu444d13f2016-07-27 12:06:21 +09303516 mod->init_layout.ro_after_init_size = 0;
Rusty Russell7523e4d2015-11-26 09:44:08 +10303517 mod->init_layout.text_size = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303518 /*
3519 * We want to free module_init, but be aware that kallsyms may be
Peter Zijlstra0be964b2015-05-27 11:09:35 +09303520 * walking this with preempt disabled. In all the failure paths, we
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08003521 * call synchronize_rcu(), but we don't want to slow down the success
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003522 * path. module_memfree() cannot be called in an interrupt, so do the
3523 * work and call synchronize_rcu() in a work queue.
3524 *
Jeffrey Hugoae646f02018-05-11 16:01:42 -07003525 * Note that module_alloc() on most architectures creates W+X page
3526 * mappings which won't be cleaned up until do_free_init() runs. Any
3527 * code such as mark_rodata_ro() which depends on those mappings to
3528 * be cleaned up needs to sync with the queued work - ie
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08003529 * rcu_barrier()
Rusty Russellc7496372015-01-20 09:07:05 +10303530 */
Rick Edgecombe1a7b7d92019-04-25 17:11:37 -07003531 if (llist_add(&freeinit->node, &init_free_list))
3532 schedule_work(&init_free_wq);
3533
Ashutosh Naik6389a382006-03-23 03:00:46 -08003534 mutex_unlock(&module_mutex);
Rusty Russell6f139092012-09-28 14:31:03 +09303535 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
3537 return 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303538
3539fail_free_freeinit:
3540 kfree(freeinit);
3541fail:
3542 /* Try to protect us from buggy refcounters. */
3543 mod->state = MODULE_STATE_GOING;
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08003544 synchronize_rcu();
Rusty Russellc7496372015-01-20 09:07:05 +10303545 module_put(mod);
3546 blocking_notifier_call_chain(&module_notify_list,
3547 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04003548 klp_module_going(mod);
Jessica Yu7dcd1822016-02-16 17:32:33 -05003549 ftrace_release_mod(mod);
Rusty Russellc7496372015-01-20 09:07:05 +10303550 free_module(mod);
3551 wake_up_all(&module_wq);
3552 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553}
3554
Kees Cook34e11692012-10-16 07:31:07 +10303555static int may_init_module(void)
3556{
3557 if (!capable(CAP_SYS_MODULE) || modules_disabled)
3558 return -EPERM;
3559
3560 return 0;
3561}
3562
Rusty Russella3535c72013-01-21 17:18:59 +10303563/*
3564 * We try to place it in the list now to make sure it's unique before
3565 * we dedicate too many resources. In particular, temporary percpu
3566 * memory exhaustion.
3567 */
3568static int add_unformed_module(struct module *mod)
3569{
3570 int err;
3571 struct module *old;
3572
3573 mod->state = MODULE_STATE_UNFORMED;
3574
3575again:
3576 mutex_lock(&module_mutex);
Mathias Krause4f6de4d52013-07-02 15:35:11 +09303577 old = find_module_all(mod->name, strlen(mod->name), true);
3578 if (old != NULL) {
Rusty Russella3535c72013-01-21 17:18:59 +10303579 if (old->state == MODULE_STATE_COMING
3580 || old->state == MODULE_STATE_UNFORMED) {
3581 /* Wait in case it fails to load. */
3582 mutex_unlock(&module_mutex);
Peter Zijlstra9cc019b2015-02-11 15:01:13 +10303583 err = wait_event_interruptible(module_wq,
3584 finished_loading(mod->name));
Rusty Russella3535c72013-01-21 17:18:59 +10303585 if (err)
3586 goto out_unlocked;
3587 goto again;
3588 }
3589 err = -EEXIST;
3590 goto out;
3591 }
Peter Zijlstra4f6665462015-05-27 11:09:38 +09303592 mod_update_bounds(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303593 list_add_rcu(&mod->list, &modules);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09303594 mod_tree_insert(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303595 err = 0;
3596
3597out:
3598 mutex_unlock(&module_mutex);
3599out_unlocked:
3600 return err;
3601}
3602
3603static int complete_formation(struct module *mod, struct load_info *info)
3604{
3605 int err;
3606
3607 mutex_lock(&module_mutex);
3608
3609 /* Find duplicate symbols (must be called under lock). */
Jessica Yu2d25bc52018-11-19 17:43:58 +01003610 err = verify_exported_symbols(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303611 if (err < 0)
3612 goto out;
3613
3614 /* This relies on module_mutex for list integrity. */
3615 module_bug_finalize(info->hdr, info->sechdrs, mod);
3616
Jessica Yu444d13f2016-07-27 12:06:21 +09303617 module_enable_ro(mod, false);
Rusty Russell85c898d2015-11-26 09:45:08 +10303618 module_enable_nx(mod);
Rusty Russell49822232014-05-14 10:54:19 +09303619
Rusty Russella3535c72013-01-21 17:18:59 +10303620 /* Mark state as coming so strong_try_module_get() ignores us,
3621 * but kallsyms etc. can see us. */
3622 mod->state = MODULE_STATE_COMING;
Rusty Russell49822232014-05-14 10:54:19 +09303623 mutex_unlock(&module_mutex);
3624
Rusty Russell49822232014-05-14 10:54:19 +09303625 return 0;
Rusty Russella3535c72013-01-21 17:18:59 +10303626
3627out:
3628 mutex_unlock(&module_mutex);
3629 return err;
3630}
3631
Jessica Yu4c973d12016-03-16 20:55:38 -04003632static int prepare_coming_module(struct module *mod)
3633{
Jessica Yu7e545d62016-03-16 20:55:39 -04003634 int err;
3635
Jessica Yu4c973d12016-03-16 20:55:38 -04003636 ftrace_module_enable(mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04003637 err = klp_module_coming(mod);
3638 if (err)
3639 return err;
3640
Jessica Yu4c973d12016-03-16 20:55:38 -04003641 blocking_notifier_call_chain(&module_notify_list,
3642 MODULE_STATE_COMING, mod);
3643 return 0;
3644}
3645
Luis R. Rodriguezecc86172015-03-30 16:20:03 -07003646static int unknown_module_param_cb(char *param, char *val, const char *modname,
3647 void *arg)
Rusty Russell54041d82013-07-02 15:35:12 +09303648{
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003649 struct module *mod = arg;
3650 int ret;
3651
3652 if (strcmp(param, "async_probe") == 0) {
3653 mod->async_probe_requested = true;
3654 return 0;
3655 }
3656
Ionut Alexa6da0b562014-11-10 09:31:29 +10303657 /* Check for magic 'dyndbg' arg */
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003658 ret = ddebug_dyndbg_module_param_cb(param, val, modname);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003659 if (ret != 0)
3660 pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
Rusty Russell54041d82013-07-02 15:35:12 +09303661 return 0;
3662}
3663
Kees Cook34e11692012-10-16 07:31:07 +10303664/* Allocate and load the module: note that size of section 0 is always
3665 zero, and we rely on this for optional sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303666static int load_module(struct load_info *info, const char __user *uargs,
3667 int flags)
Kees Cook34e11692012-10-16 07:31:07 +10303668{
Rusty Russella3535c72013-01-21 17:18:59 +10303669 struct module *mod;
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003670 long err = 0;
Rusty Russell51e158c2014-04-28 11:34:33 +09303671 char *after_dashes;
Kees Cook34e11692012-10-16 07:31:07 +10303672
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003673 err = elf_header_check(info);
3674 if (err)
3675 goto free_copy;
3676
3677 err = setup_load_info(info, flags);
3678 if (err)
3679 goto free_copy;
3680
3681 if (blacklisted(info->name)) {
3682 err = -EPERM;
3683 goto free_copy;
3684 }
3685
Ben Hutchingsbca014c2016-04-28 09:24:01 +09303686 err = module_sig_check(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303687 if (err)
3688 goto free_copy;
3689
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003690 err = rewrite_section_headers(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303691 if (err)
3692 goto free_copy;
3693
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003694 /* Check module struct version now, before we try to use module. */
3695 if (!check_modstruct_version(info, info->mod)) {
3696 err = -ENOEXEC;
3697 goto free_copy;
3698 }
3699
Kees Cook34e11692012-10-16 07:31:07 +10303700 /* Figure out module layout, and allocate all the memory. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303701 mod = layout_and_allocate(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303702 if (IS_ERR(mod)) {
3703 err = PTR_ERR(mod);
3704 goto free_copy;
3705 }
3706
Richard Guy Briggsca86cad2017-02-04 13:10:38 -05003707 audit_log_kern_module(mod->name);
3708
Rusty Russella3535c72013-01-21 17:18:59 +10303709 /* Reserve our place in the list. */
3710 err = add_unformed_module(mod);
3711 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303712 goto free_module;
Rusty Russell1fb93412013-01-12 13:27:34 +10303713
Kees Cook34e11692012-10-16 07:31:07 +10303714#ifdef CONFIG_MODULE_SIG
3715 mod->sig_ok = info->sig_ok;
Rusty Russell64748a22013-01-21 17:03:02 +10303716 if (!mod->sig_ok) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003717 pr_notice_once("%s: module verification failed: signature "
Marcel Holtmannab92ebb2015-02-06 15:09:57 +10303718 "and/or required key missing - tainting "
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003719 "kernel\n", mod->name);
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10303720 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
Rusty Russell64748a22013-01-21 17:03:02 +10303721 }
Kees Cook34e11692012-10-16 07:31:07 +10303722#endif
3723
Rusty Russell8d8022e2013-07-03 10:06:28 +09303724 /* To avoid stressing percpu allocator, do this once we're unique. */
Rusty Russell9eb76d72013-07-03 10:06:29 +09303725 err = percpu_modalloc(mod, info);
Rusty Russell8d8022e2013-07-03 10:06:28 +09303726 if (err)
3727 goto unlink_mod;
3728
Kees Cook34e11692012-10-16 07:31:07 +10303729 /* Now module is in final location, initialize linked lists, etc. */
3730 err = module_unload_init(mod);
3731 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303732 goto unlink_mod;
Kees Cook34e11692012-10-16 07:31:07 +10303733
Rusty Russellcf2fde72015-06-26 06:44:38 +09303734 init_param_lock(mod);
Dan Streetmanb51d23e2015-06-17 06:18:52 +09303735
Kees Cook34e11692012-10-16 07:31:07 +10303736 /* Now we've got everything in the final locations, we can
3737 * find optional sections. */
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303738 err = find_module_sections(mod, info);
3739 if (err)
3740 goto free_unload;
Kees Cook34e11692012-10-16 07:31:07 +10303741
3742 err = check_module_license_and_versions(mod);
3743 if (err)
3744 goto free_unload;
3745
3746 /* Set up MODINFO_ATTR fields */
3747 setup_modinfo(mod, info);
3748
3749 /* Fix up syms, so that st_value is a pointer to location. */
3750 err = simplify_symbols(mod, info);
3751 if (err < 0)
3752 goto free_modinfo;
3753
3754 err = apply_relocations(mod, info);
3755 if (err < 0)
3756 goto free_modinfo;
3757
3758 err = post_relocation(mod, info);
3759 if (err < 0)
3760 goto free_modinfo;
3761
3762 flush_module_icache(mod);
3763
3764 /* Now copy in args */
3765 mod->args = strndup_user(uargs, ~0UL >> 1);
3766 if (IS_ERR(mod->args)) {
3767 err = PTR_ERR(mod->args);
3768 goto free_arch_cleanup;
3769 }
3770
Zhou Chengming52796312017-07-07 11:15:58 +08003771 dynamic_debug_setup(mod, info->debug, info->num_debug);
Kees Cook34e11692012-10-16 07:31:07 +10303772
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04003773 /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
3774 ftrace_module_init(mod);
3775
Rusty Russella3535c72013-01-21 17:18:59 +10303776 /* Finally it's fully formed, ready to start executing. */
3777 err = complete_formation(mod, info);
3778 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303779 goto ddebug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303780
Jessica Yu4c973d12016-03-16 20:55:38 -04003781 err = prepare_coming_module(mod);
3782 if (err)
3783 goto bug_cleanup;
3784
Kees Cook34e11692012-10-16 07:31:07 +10303785 /* Module is ready to execute: parsing args may do that. */
Rusty Russell51e158c2014-04-28 11:34:33 +09303786 after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
Luis R. Rodriguez4355efb2016-02-03 16:55:26 +10303787 -32768, 32767, mod,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -07003788 unknown_module_param_cb);
Rusty Russell51e158c2014-04-28 11:34:33 +09303789 if (IS_ERR(after_dashes)) {
3790 err = PTR_ERR(after_dashes);
Jessica Yu4c973d12016-03-16 20:55:38 -04003791 goto coming_cleanup;
Rusty Russell51e158c2014-04-28 11:34:33 +09303792 } else if (after_dashes) {
3793 pr_warn("%s: parameters '%s' after `--' ignored\n",
3794 mod->name, after_dashes);
3795 }
Kees Cook34e11692012-10-16 07:31:07 +10303796
Richard Guy Briggsca86cad2017-02-04 13:10:38 -05003797 /* Link in to sysfs. */
Kees Cook34e11692012-10-16 07:31:07 +10303798 err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
3799 if (err < 0)
Jessica Yu4c973d12016-03-16 20:55:38 -04003800 goto coming_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303801
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003802 if (is_livepatch_module(mod)) {
3803 err = copy_module_elf(mod, info);
3804 if (err < 0)
3805 goto sysfs_cleanup;
3806 }
3807
Kees Cook34e11692012-10-16 07:31:07 +10303808 /* Get rid of temporary copy. */
3809 free_copy(info);
3810
3811 /* Done! */
3812 trace_module_load(mod);
3813
3814 return do_init_module(mod);
3815
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003816 sysfs_cleanup:
3817 mod_sysfs_teardown(mod);
Jessica Yu4c973d12016-03-16 20:55:38 -04003818 coming_cleanup:
Aaron Tomlin885a78d2016-10-20 17:18:12 +01003819 mod->state = MODULE_STATE_GOING;
Luis R. Rodrigueza5544882017-02-10 14:06:22 -08003820 destroy_params(mod->kp, mod->num_kp);
Jessica Yu4c973d12016-03-16 20:55:38 -04003821 blocking_notifier_call_chain(&module_notify_list,
3822 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04003823 klp_module_going(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303824 bug_cleanup:
3825 /* module_bug_cleanup needs module_mutex protection */
Kees Cook34e11692012-10-16 07:31:07 +10303826 mutex_lock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303827 module_bug_cleanup(mod);
Linus Torvaldsee61abb2013-01-20 20:22:58 -08003828 mutex_unlock(&module_mutex);
Andy Lutomirskiff7e0052014-08-16 04:13:37 +09303829
Rusty Russella3535c72013-01-21 17:18:59 +10303830 ddebug_cleanup:
Namit Gupta1323eac2018-01-08 10:41:21 +05303831 ftrace_release_mod(mod);
Zhou Chengming52796312017-07-07 11:15:58 +08003832 dynamic_debug_remove(mod, info->debug);
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08003833 synchronize_rcu();
Kees Cook34e11692012-10-16 07:31:07 +10303834 kfree(mod->args);
3835 free_arch_cleanup:
3836 module_arch_cleanup(mod);
3837 free_modinfo:
3838 free_modinfo(mod);
3839 free_unload:
3840 module_unload_free(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303841 unlink_mod:
3842 mutex_lock(&module_mutex);
3843 /* Unlink carefully: kallsyms could be walking list. */
3844 list_del_rcu(&mod->list);
Peter Zijlstra758556b2015-07-09 06:48:06 +09303845 mod_tree_remove(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303846 wake_up_all(&module_wq);
Peter Zijlstra0be964b2015-05-27 11:09:35 +09303847 /* Wait for RCU-sched synchronizing before releasing mod->list. */
Paul E. McKenneycb2f5532018-11-06 19:17:01 -08003848 synchronize_rcu();
Rusty Russell1fb93412013-01-12 13:27:34 +10303849 mutex_unlock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303850 free_module:
Peter Zijlstra35a93932015-02-26 16:23:11 +01003851 /* Free lock-classes; relies on the preceding sync_rcu() */
Rusty Russell7523e4d2015-11-26 09:44:08 +10303852 lockdep_free_key_range(mod->core_layout.base, mod->core_layout.size);
Peter Zijlstra35a93932015-02-26 16:23:11 +01003853
Kees Cook34e11692012-10-16 07:31:07 +10303854 module_deallocate(mod, info);
3855 free_copy:
3856 free_copy(info);
3857 return err;
3858}
3859
3860SYSCALL_DEFINE3(init_module, void __user *, umod,
3861 unsigned long, len, const char __user *, uargs)
3862{
3863 int err;
3864 struct load_info info = { };
3865
3866 err = may_init_module();
3867 if (err)
3868 return err;
3869
3870 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3871 umod, len, uargs);
3872
3873 err = copy_module_from_user(umod, len, &info);
3874 if (err)
3875 return err;
3876
Rusty Russell2f3238a2012-10-22 18:09:41 +10303877 return load_module(&info, uargs, 0);
Kees Cook34e11692012-10-16 07:31:07 +10303878}
3879
Rusty Russell2f3238a2012-10-22 18:09:41 +10303880SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
Kees Cook34e11692012-10-16 07:31:07 +10303881{
Kees Cook34e11692012-10-16 07:31:07 +10303882 struct load_info info = { };
Mimi Zohara1db7422015-12-30 07:35:30 -05003883 loff_t size;
3884 void *hdr;
3885 int err;
Kees Cook34e11692012-10-16 07:31:07 +10303886
3887 err = may_init_module();
3888 if (err)
3889 return err;
3890
Rusty Russell2f3238a2012-10-22 18:09:41 +10303891 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3892
3893 if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
3894 |MODULE_INIT_IGNORE_VERMAGIC))
3895 return -EINVAL;
Kees Cook34e11692012-10-16 07:31:07 +10303896
Mimi Zohara1db7422015-12-30 07:35:30 -05003897 err = kernel_read_file_from_fd(fd, &hdr, &size, INT_MAX,
3898 READING_MODULE);
Kees Cook34e11692012-10-16 07:31:07 +10303899 if (err)
3900 return err;
Mimi Zohara1db7422015-12-30 07:35:30 -05003901 info.hdr = hdr;
3902 info.len = size;
Kees Cook34e11692012-10-16 07:31:07 +10303903
Rusty Russell2f3238a2012-10-22 18:09:41 +10303904 return load_module(&info, uargs, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303905}
3906
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907static inline int within(unsigned long addr, void *start, unsigned long size)
3908{
3909 return ((void *)addr >= start && (void *)addr < start + size);
3910}
3911
3912#ifdef CONFIG_KALLSYMS
3913/*
3914 * This ignores the intensely annoying "mapping symbols" found
3915 * in ARM ELF files: $a, $t and $d.
3916 */
3917static inline int is_arm_mapping_symbol(const char *str)
3918{
Russell King2e3a10a2014-07-27 07:29:01 +09303919 if (str[0] == '.' && str[1] == 'L')
3920 return true;
Kyle McMartin6c34f1f2014-09-16 22:37:18 +01003921 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 && (str[2] == '\0' || str[2] == '.');
3923}
3924
Jessica Yu2d25bc52018-11-19 17:43:58 +01003925static const char *kallsyms_symbol_name(struct mod_kallsyms *kallsyms, unsigned int symnum)
Rusty Russell2e7bac52016-02-03 16:55:26 +10303926{
Rusty Russell82440622016-02-03 16:55:26 +10303927 return kallsyms->strtab + kallsyms->symtab[symnum].st_name;
Rusty Russell2e7bac52016-02-03 16:55:26 +10303928}
3929
Jessica Yu2d25bc52018-11-19 17:43:58 +01003930/*
3931 * Given a module and address, find the corresponding symbol and return its name
3932 * while providing its size and offset if needed.
3933 */
3934static const char *find_kallsyms_symbol(struct module *mod,
3935 unsigned long addr,
3936 unsigned long *size,
3937 unsigned long *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938{
3939 unsigned int i, best = 0;
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01003940 unsigned long nextval, bestval;
Rusty Russell82440622016-02-03 16:55:26 +10303941 struct mod_kallsyms *kallsyms = rcu_dereference_sched(mod->kallsyms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
3943 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003944 if (within_module_init(addr, mod))
Rusty Russell7523e4d2015-11-26 09:44:08 +10303945 nextval = (unsigned long)mod->init_layout.base+mod->init_layout.text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003946 else
Rusty Russell7523e4d2015-11-26 09:44:08 +10303947 nextval = (unsigned long)mod->core_layout.base+mod->core_layout.text_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01003949 bestval = kallsyms_symbol_value(&kallsyms->symtab[best]);
3950
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003951 /* Scan for closest preceding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07003952 starts real symbols at 1). */
Rusty Russell82440622016-02-03 16:55:26 +10303953 for (i = 1; i < kallsyms->num_symtab; i++) {
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01003954 const Elf_Sym *sym = &kallsyms->symtab[i];
3955 unsigned long thisval = kallsyms_symbol_value(sym);
3956
3957 if (sym->st_shndx == SHN_UNDEF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 continue;
3959
3960 /* We ignore unnamed symbols: they're uninformative
3961 * and inserted at a whim. */
Jessica Yu2d25bc52018-11-19 17:43:58 +01003962 if (*kallsyms_symbol_name(kallsyms, i) == '\0'
3963 || is_arm_mapping_symbol(kallsyms_symbol_name(kallsyms, i)))
Rusty Russell2e7bac52016-02-03 16:55:26 +10303964 continue;
3965
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01003966 if (thisval <= addr && thisval > bestval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 best = i;
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01003968 bestval = thisval;
3969 }
3970 if (thisval > addr && thisval < nextval)
3971 nextval = thisval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 }
3973
3974 if (!best)
3975 return NULL;
3976
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003977 if (size)
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01003978 *size = nextval - bestval;
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003979 if (offset)
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01003980 *offset = addr - bestval;
Jessica Yu2d25bc52018-11-19 17:43:58 +01003981
3982 return kallsyms_symbol_name(kallsyms, best);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983}
3984
Sergey Senozhatskyb865ea62017-11-10 08:48:25 +09003985void * __weak dereference_module_function_descriptor(struct module *mod,
3986 void *ptr)
3987{
3988 return ptr;
3989}
3990
Rusty Russell6dd06c92008-01-29 17:13:22 -05003991/* For kallsyms to ask for address resolution. NULL means not found. Careful
3992 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003993const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05003994 unsigned long *size,
3995 unsigned long *offset,
3996 char **modname,
3997 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998{
Rusty Russellcb2a5202008-01-14 00:55:03 -08003999 const char *ret = NULL;
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09304000 struct module *mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Rusty Russellcb2a5202008-01-14 00:55:03 -08004002 preempt_disable();
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09304003 mod = __module_address(addr);
4004 if (mod) {
4005 if (modname)
4006 *modname = mod->name;
Jessica Yu2d25bc52018-11-19 17:43:58 +01004007
4008 ret = find_kallsyms_symbol(mod, addr, size, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05004010 /* Make a copy in here where it's safe */
4011 if (ret) {
4012 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
4013 ret = namebuf;
4014 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08004015 preempt_enable();
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09304016
Andrew Morton92dfc9d2008-02-08 04:18:43 -08004017 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018}
4019
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004020int lookup_module_symbol_name(unsigned long addr, char *symname)
4021{
4022 struct module *mod;
4023
Rusty Russellcb2a5202008-01-14 00:55:03 -08004024 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02004025 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304026 if (mod->state == MODULE_STATE_UNFORMED)
4027 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09304028 if (within_module(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004029 const char *sym;
4030
Jessica Yu2d25bc52018-11-19 17:43:58 +01004031 sym = find_kallsyms_symbol(mod, addr, NULL, NULL);
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004032 if (!sym)
4033 goto out;
Jessica Yu2d25bc52018-11-19 17:43:58 +01004034
Tejun Heo9281ace2007-07-17 04:03:51 -07004035 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08004036 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004037 return 0;
4038 }
4039 }
4040out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08004041 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07004042 return -ERANGE;
4043}
4044
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004045int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
4046 unsigned long *offset, char *modname, char *name)
4047{
4048 struct module *mod;
4049
Rusty Russellcb2a5202008-01-14 00:55:03 -08004050 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02004051 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304052 if (mod->state == MODULE_STATE_UNFORMED)
4053 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09304054 if (within_module(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004055 const char *sym;
4056
Jessica Yu2d25bc52018-11-19 17:43:58 +01004057 sym = find_kallsyms_symbol(mod, addr, size, offset);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004058 if (!sym)
4059 goto out;
4060 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07004061 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004062 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07004063 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08004064 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004065 return 0;
4066 }
4067 }
4068out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08004069 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004070 return -ERANGE;
4071}
4072
Alexey Dobriyanea078902007-05-08 00:28:39 -07004073int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
4074 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075{
4076 struct module *mod;
4077
Rusty Russellcb2a5202008-01-14 00:55:03 -08004078 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02004079 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell82440622016-02-03 16:55:26 +10304080 struct mod_kallsyms *kallsyms;
4081
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304082 if (mod->state == MODULE_STATE_UNFORMED)
4083 continue;
Rusty Russell82440622016-02-03 16:55:26 +10304084 kallsyms = rcu_dereference_sched(mod->kallsyms);
4085 if (symnum < kallsyms->num_symtab) {
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004086 const Elf_Sym *sym = &kallsyms->symtab[symnum];
4087
4088 *value = kallsyms_symbol_value(sym);
4089 *type = sym->st_size;
Jessica Yu2d25bc52018-11-19 17:43:58 +01004090 strlcpy(name, kallsyms_symbol_name(kallsyms, symnum), KSYM_NAME_LEN);
Tejun Heo9281ace2007-07-17 04:03:51 -07004091 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06004092 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08004093 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07004094 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 }
Rusty Russell82440622016-02-03 16:55:26 +10304096 symnum -= kallsyms->num_symtab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08004098 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07004099 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100}
4101
Jessica Yu2d25bc52018-11-19 17:43:58 +01004102/* Given a module and name of symbol, find and return the symbol's value */
4103static unsigned long find_kallsyms_symbol_value(struct module *mod, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104{
4105 unsigned int i;
Rusty Russell82440622016-02-03 16:55:26 +10304106 struct mod_kallsyms *kallsyms = rcu_dereference_sched(mod->kallsyms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004108 for (i = 0; i < kallsyms->num_symtab; i++) {
4109 const Elf_Sym *sym = &kallsyms->symtab[i];
4110
Jessica Yu2d25bc52018-11-19 17:43:58 +01004111 if (strcmp(name, kallsyms_symbol_name(kallsyms, i)) == 0 &&
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004112 sym->st_shndx != SHN_UNDEF)
4113 return kallsyms_symbol_value(sym);
4114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 return 0;
4116}
4117
4118/* Look for this name: can be of form module:name. */
4119unsigned long module_kallsyms_lookup_name(const char *name)
4120{
4121 struct module *mod;
4122 char *colon;
4123 unsigned long ret = 0;
4124
4125 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08004126 preempt_disable();
Naveen N. Rao17586182017-04-23 22:53:43 +05304127 if ((colon = strnchr(name, MODULE_NAME_LEN, ':')) != NULL) {
Mathias Krause4f6de4d52013-07-02 15:35:11 +09304128 if ((mod = find_module_all(name, colon - name, false)) != NULL)
Jessica Yu2d25bc52018-11-19 17:43:58 +01004129 ret = find_kallsyms_symbol_value(mod, colon+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 } else {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304131 list_for_each_entry_rcu(mod, &modules, list) {
4132 if (mod->state == MODULE_STATE_UNFORMED)
4133 continue;
Jessica Yu2d25bc52018-11-19 17:43:58 +01004134 if ((ret = find_kallsyms_symbol_value(mod, name)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08004138 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 return ret;
4140}
Anders Kaseorg75a66612008-12-05 19:03:58 -05004141
4142int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
4143 struct module *, unsigned long),
4144 void *data)
4145{
4146 struct module *mod;
4147 unsigned int i;
4148 int ret;
4149
Peter Zijlstra0be964b2015-05-27 11:09:35 +09304150 module_assert_mutex();
4151
Anders Kaseorg75a66612008-12-05 19:03:58 -05004152 list_for_each_entry(mod, &modules, list) {
Rusty Russell82440622016-02-03 16:55:26 +10304153 /* We hold module_mutex: no need for rcu_dereference_sched */
4154 struct mod_kallsyms *kallsyms = mod->kallsyms;
4155
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304156 if (mod->state == MODULE_STATE_UNFORMED)
4157 continue;
Rusty Russell82440622016-02-03 16:55:26 +10304158 for (i = 0; i < kallsyms->num_symtab; i++) {
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004159 const Elf_Sym *sym = &kallsyms->symtab[i];
Jessica Yu9f2d1e62018-06-05 10:22:52 +02004160
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004161 if (sym->st_shndx == SHN_UNDEF)
Jessica Yu9f2d1e62018-06-05 10:22:52 +02004162 continue;
4163
Jessica Yu2d25bc52018-11-19 17:43:58 +01004164 ret = fn(data, kallsyms_symbol_name(kallsyms, i),
Vincent Whitchurch93d77e72018-12-14 17:05:55 +01004165 mod, kallsyms_symbol_value(sym));
Anders Kaseorg75a66612008-12-05 19:03:58 -05004166 if (ret != 0)
4167 return ret;
4168 }
4169 }
4170 return 0;
4171}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172#endif /* CONFIG_KALLSYMS */
4173
Petr Mladek7fd83292016-09-21 13:47:22 +02004174/* Maximum number of characters written by module_flags() */
4175#define MODULE_FLAGS_BUF_SIZE (TAINT_FLAGS_COUNT + 4)
4176
4177/* Keep in sync with MODULE_FLAGS_BUF_SIZE !!! */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004178static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004179{
4180 int bx = 0;
4181
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304182 BUG_ON(mod->state == MODULE_STATE_UNFORMED);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004183 if (mod->taints ||
4184 mod->state == MODULE_STATE_GOING ||
4185 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004186 buf[bx++] = '(';
Kay Sieverscca3e702012-01-13 09:32:15 +10304187 bx += module_flags_taint(mod, buf + bx);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004188 /* Show a - for module-is-being-unloaded */
4189 if (mod->state == MODULE_STATE_GOING)
4190 buf[bx++] = '-';
4191 /* Show a + for module-is-being-loaded */
4192 if (mod->state == MODULE_STATE_COMING)
4193 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004194 buf[bx++] = ')';
4195 }
4196 buf[bx] = '\0';
4197
4198 return buf;
4199}
4200
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004201#ifdef CONFIG_PROC_FS
4202/* Called by the /proc file system to return a list of modules. */
4203static void *m_start(struct seq_file *m, loff_t *pos)
4204{
4205 mutex_lock(&module_mutex);
4206 return seq_list_start(&modules, *pos);
4207}
4208
4209static void *m_next(struct seq_file *m, void *p, loff_t *pos)
4210{
4211 return seq_list_next(p, &modules, pos);
4212}
4213
4214static void m_stop(struct seq_file *m, void *p)
4215{
4216 mutex_unlock(&module_mutex);
4217}
4218
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219static int m_show(struct seq_file *m, void *p)
4220{
4221 struct module *mod = list_entry(p, struct module, list);
Petr Mladek7fd83292016-09-21 13:47:22 +02004222 char buf[MODULE_FLAGS_BUF_SIZE];
Linus Torvalds668533d2017-11-29 10:30:13 -08004223 void *value;
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004224
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304225 /* We always ignore unformed modules. */
4226 if (mod->state == MODULE_STATE_UNFORMED)
4227 return 0;
4228
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05004229 seq_printf(m, "%s %u",
Rusty Russell7523e4d2015-11-26 09:44:08 +10304230 mod->name, mod->init_layout.size + mod->core_layout.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 print_unload_info(m, mod);
4232
4233 /* Informative for users. */
4234 seq_printf(m, " %s",
Ionut Alexa6da0b562014-11-10 09:31:29 +10304235 mod->state == MODULE_STATE_GOING ? "Unloading" :
4236 mod->state == MODULE_STATE_COMING ? "Loading" :
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 "Live");
4238 /* Used by oprofile and other similar tools. */
Linus Torvalds668533d2017-11-29 10:30:13 -08004239 value = m->private ? NULL : mod->core_layout.base;
4240 seq_printf(m, " 0x%px", value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004242 /* Taints info */
4243 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004244 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004245
Ionut Alexa6da0b562014-11-10 09:31:29 +10304246 seq_puts(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 return 0;
4248}
4249
4250/* Format: modulename size refcount deps address
4251
4252 Where refcount is a number or -, and deps is a comma-separated list
4253 of depends or -.
4254*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004255static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 .start = m_start,
4257 .next = m_next,
4258 .stop = m_stop,
4259 .show = m_show
4260};
4261
Linus Torvalds516fb7f2017-11-12 18:44:23 -08004262/*
4263 * This also sets the "private" pointer to non-NULL if the
4264 * kernel pointers should be hidden (so you can just test
4265 * "m->private" to see if you should keep the values private).
4266 *
4267 * We use the same logic as for /proc/kallsyms.
4268 */
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004269static int modules_open(struct inode *inode, struct file *file)
4270{
Linus Torvalds516fb7f2017-11-12 18:44:23 -08004271 int err = seq_open(file, &modules_op);
4272
4273 if (!err) {
4274 struct seq_file *m = file->private_data;
4275 m->private = kallsyms_show_value() ? NULL : (void *)8ul;
4276 }
4277
Leon Yu3f553b32018-03-06 23:16:24 +08004278 return err;
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004279}
4280
4281static const struct file_operations proc_modules_operations = {
4282 .open = modules_open,
4283 .read = seq_read,
4284 .llseek = seq_lseek,
4285 .release = seq_release,
4286};
4287
4288static int __init proc_modules_init(void)
4289{
4290 proc_create("modules", 0, NULL, &proc_modules_operations);
4291 return 0;
4292}
4293module_init(proc_modules_init);
4294#endif
4295
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296/* Given an address, look for it in the module exception tables. */
4297const struct exception_table_entry *search_module_extables(unsigned long addr)
4298{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 const struct exception_table_entry *e = NULL;
4300 struct module *mod;
4301
Rusty Russell24da1cb2007-07-15 23:41:46 -07004302 preempt_disable();
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004303 mod = __module_address(addr);
4304 if (!mod)
4305 goto out;
Daniel Walker22a8bde2007-10-18 03:06:07 -07004306
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004307 if (!mod->num_exentries)
4308 goto out;
4309
4310 e = search_extable(mod->extable,
Thomas Meyera94c33d2017-07-10 15:51:58 -07004311 mod->num_exentries,
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004312 addr);
4313out:
Rusty Russell24da1cb2007-07-15 23:41:46 -07004314 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004316 /*
4317 * Now, if we found one, we are running inside it now, hence
4318 * we cannot unload the module, hence no refcnt needed.
4319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 return e;
4321}
4322
Ingo Molnar4d435f92006-07-03 00:24:24 -07004323/*
Rusty Russelle6104992009-03-31 13:05:31 -06004324 * is_module_address - is this address inside a module?
4325 * @addr: the address to check.
4326 *
4327 * See is_module_text_address() if you simply want to see if the address
4328 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07004329 */
Rusty Russelle6104992009-03-31 13:05:31 -06004330bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07004331{
Rusty Russelle6104992009-03-31 13:05:31 -06004332 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07004333
Rusty Russell24da1cb2007-07-15 23:41:46 -07004334 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06004335 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07004336 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07004337
Rusty Russelle6104992009-03-31 13:05:31 -06004338 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07004339}
4340
Rusty Russelle6104992009-03-31 13:05:31 -06004341/*
4342 * __module_address - get the module which contains an address.
4343 * @addr: the address.
4344 *
4345 * Must be called with preempt disabled or module mutex held so that
4346 * module doesn't get freed during this.
4347 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07004348struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349{
4350 struct module *mod;
4351
Rusty Russell3a642e92008-07-22 19:24:28 -05004352 if (addr < module_addr_min || addr > module_addr_max)
4353 return NULL;
4354
Peter Zijlstra0be964b2015-05-27 11:09:35 +09304355 module_assert_mutex_or_preempt();
4356
Peter Zijlstra6c9692e2015-05-27 11:09:37 +09304357 mod = mod_find(addr);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304358 if (mod) {
4359 BUG_ON(!within_module(addr, mod));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304360 if (mod->state == MODULE_STATE_UNFORMED)
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304361 mod = NULL;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304362 }
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304363 return mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364}
Tim Abbottc6b37802008-12-05 19:03:59 -05004365EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366
Rusty Russelle6104992009-03-31 13:05:31 -06004367/*
4368 * is_module_text_address - is this address inside module code?
4369 * @addr: the address to check.
4370 *
4371 * See is_module_address() if you simply want to see if the address is
4372 * anywhere in a module. See kernel_text_address() for testing if an
4373 * address corresponds to kernel or module code.
4374 */
4375bool is_module_text_address(unsigned long addr)
4376{
4377 bool ret;
4378
4379 preempt_disable();
4380 ret = __module_text_address(addr) != NULL;
4381 preempt_enable();
4382
4383 return ret;
4384}
4385
4386/*
4387 * __module_text_address - get the module whose code contains an address.
4388 * @addr: the address.
4389 *
4390 * Must be called with preempt disabled or module mutex held so that
4391 * module doesn't get freed during this.
4392 */
4393struct module *__module_text_address(unsigned long addr)
4394{
4395 struct module *mod = __module_address(addr);
4396 if (mod) {
4397 /* Make sure it's within the text section. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10304398 if (!within(addr, mod->init_layout.base, mod->init_layout.text_size)
4399 && !within(addr, mod->core_layout.base, mod->core_layout.text_size))
Rusty Russelle6104992009-03-31 13:05:31 -06004400 mod = NULL;
4401 }
4402 return mod;
4403}
Tim Abbottc6b37802008-12-05 19:03:59 -05004404EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06004405
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406/* Don't grab lock, we're oopsing. */
4407void print_modules(void)
4408{
4409 struct module *mod;
Petr Mladek7fd83292016-09-21 13:47:22 +02004410 char buf[MODULE_FLAGS_BUF_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Linus Torvaldsb2311252009-06-16 11:07:14 -07004412 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02004413 /* Most callers should already have preempt disabled, but make sure */
4414 preempt_disable();
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304415 list_for_each_entry_rcu(mod, &modules, list) {
4416 if (mod->state == MODULE_STATE_UNFORMED)
4417 continue;
Jiri Slaby27bba4d2014-02-03 11:13:13 +10304418 pr_cont(" %s%s", mod->name, module_flags(mod, buf));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304419 }
Andi Kleend72b3752008-08-30 10:09:00 +02004420 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01004421 if (last_unloaded_module[0])
Jiri Slaby27bba4d2014-02-03 11:13:13 +10304422 pr_cont(" [last unloaded: %s]", last_unloaded_module);
4423 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424}
4425
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06004427/* Generate the signature for all relevant module structures here.
4428 * If these change, we don't want to try to parse the module. */
4429void module_layout(struct module *mod,
4430 struct modversion_info *ver,
4431 struct kernel_param *kp,
4432 struct kernel_symbol *ks,
Mathieu Desnoyers65498642011-01-26 17:26:22 -05004433 struct tracepoint * const *tp)
Rusty Russell8c8ef422009-03-31 13:05:34 -06004434{
4435}
4436EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437#endif