blob: b046a32520d83aeeed519a72ae61972b4cc9870c [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
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930101#ifdef CONFIG_MODULES_TREE_LOOKUP
102
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930103/*
104 * Use a latched RB-tree for __module_address(); this allows us to use
105 * RCU-sched lookups of the address from any context.
106 *
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930107 * This is conditional on PERF_EVENTS || TRACING because those can really hit
108 * __module_address() hard by doing a lot of stack unwinding; potentially from
109 * NMI context.
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930110 */
111
112static __always_inline unsigned long __mod_tree_val(struct latch_tree_node *n)
113{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030114 struct module_layout *layout = container_of(n, struct module_layout, mtn.node);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930115
Rusty Russell7523e4d2015-11-26 09:44:08 +1030116 return (unsigned long)layout->base;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930117}
118
119static __always_inline unsigned long __mod_tree_size(struct latch_tree_node *n)
120{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030121 struct module_layout *layout = container_of(n, struct module_layout, mtn.node);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930122
Rusty Russell7523e4d2015-11-26 09:44:08 +1030123 return (unsigned long)layout->size;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930124}
125
126static __always_inline bool
127mod_tree_less(struct latch_tree_node *a, struct latch_tree_node *b)
128{
129 return __mod_tree_val(a) < __mod_tree_val(b);
130}
131
132static __always_inline int
133mod_tree_comp(void *key, struct latch_tree_node *n)
134{
135 unsigned long val = (unsigned long)key;
136 unsigned long start, end;
137
138 start = __mod_tree_val(n);
139 if (val < start)
140 return -1;
141
142 end = start + __mod_tree_size(n);
143 if (val >= end)
144 return 1;
145
146 return 0;
147}
148
149static const struct latch_tree_ops mod_tree_ops = {
150 .less = mod_tree_less,
151 .comp = mod_tree_comp,
152};
153
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930154static struct mod_tree_root {
155 struct latch_tree_root root;
156 unsigned long addr_min;
157 unsigned long addr_max;
158} mod_tree __cacheline_aligned = {
159 .addr_min = -1UL,
160};
161
162#define module_addr_min mod_tree.addr_min
163#define module_addr_max mod_tree.addr_max
164
165static noinline void __mod_tree_insert(struct mod_tree_node *node)
166{
167 latch_tree_insert(&node->node, &mod_tree.root, &mod_tree_ops);
168}
169
170static void __mod_tree_remove(struct mod_tree_node *node)
171{
172 latch_tree_erase(&node->node, &mod_tree.root, &mod_tree_ops);
173}
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930174
175/*
176 * These modifications: insert, remove_init and remove; are serialized by the
177 * module_mutex.
178 */
179static void mod_tree_insert(struct module *mod)
180{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030181 mod->core_layout.mtn.mod = mod;
182 mod->init_layout.mtn.mod = mod;
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930183
Rusty Russell7523e4d2015-11-26 09:44:08 +1030184 __mod_tree_insert(&mod->core_layout.mtn);
185 if (mod->init_layout.size)
186 __mod_tree_insert(&mod->init_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930187}
188
189static void mod_tree_remove_init(struct module *mod)
190{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030191 if (mod->init_layout.size)
192 __mod_tree_remove(&mod->init_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930193}
194
195static void mod_tree_remove(struct module *mod)
196{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030197 __mod_tree_remove(&mod->core_layout.mtn);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930198 mod_tree_remove_init(mod);
199}
200
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930201static struct module *mod_find(unsigned long addr)
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930202{
203 struct latch_tree_node *ltn;
204
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930205 ltn = latch_tree_find((void *)addr, &mod_tree.root, &mod_tree_ops);
Peter Zijlstra93c2e102015-05-27 11:09:37 +0930206 if (!ltn)
207 return NULL;
208
209 return container_of(ltn, struct mod_tree_node, node)->mod;
210}
211
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930212#else /* MODULES_TREE_LOOKUP */
213
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930214static unsigned long module_addr_min = -1UL, module_addr_max = 0;
215
Peter Zijlstra6c9692e2015-05-27 11:09:37 +0930216static void mod_tree_insert(struct module *mod) { }
217static void mod_tree_remove_init(struct module *mod) { }
218static void mod_tree_remove(struct module *mod) { }
219
220static struct module *mod_find(unsigned long addr)
221{
222 struct module *mod;
223
224 list_for_each_entry_rcu(mod, &modules, list) {
225 if (within_module(addr, mod))
226 return mod;
227 }
228
229 return NULL;
230}
231
232#endif /* MODULES_TREE_LOOKUP */
233
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930234/*
235 * Bounds of module text, for speeding up __module_address.
236 * Protected by module_mutex.
237 */
238static void __mod_update_bounds(void *base, unsigned int size)
239{
240 unsigned long min = (unsigned long)base;
241 unsigned long max = min + size;
242
243 if (min < module_addr_min)
244 module_addr_min = min;
245 if (max > module_addr_max)
246 module_addr_max = max;
247}
248
249static void mod_update_bounds(struct module *mod)
250{
Rusty Russell7523e4d2015-11-26 09:44:08 +1030251 __mod_update_bounds(mod->core_layout.base, mod->core_layout.size);
252 if (mod->init_layout.size)
253 __mod_update_bounds(mod->init_layout.base, mod->init_layout.size);
Peter Zijlstra4f6665462015-05-27 11:09:38 +0930254}
255
Jason Wessel67fc4e02010-05-20 21:04:21 -0500256#ifdef CONFIG_KGDB_KDB
257struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
258#endif /* CONFIG_KGDB_KDB */
259
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930260static void module_assert_mutex(void)
Rusty Russell106a4ee2012-09-26 10:09:40 +0100261{
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930262 lockdep_assert_held(&module_mutex);
Rusty Russell106a4ee2012-09-26 10:09:40 +0100263}
264
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930265static void module_assert_mutex_or_preempt(void)
266{
267#ifdef CONFIG_LOCKDEP
268 if (unlikely(!debug_locks))
269 return;
Rusty Russell106a4ee2012-09-26 10:09:40 +0100270
Steven Rostedt95025142016-07-19 05:59:24 +0930271 WARN_ON_ONCE(!rcu_read_lock_sched_held() &&
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930272 !lockdep_is_held(&module_mutex));
273#endif
274}
275
Luis R. Rodriguez6727bb92015-05-27 11:09:39 +0930276static bool sig_enforce = IS_ENABLED(CONFIG_MODULE_SIG_FORCE);
Rusty Russell106a4ee2012-09-26 10:09:40 +0100277module_param(sig_enforce, bool_enable_only, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Bruno E. O. Meneguelefda784e2017-10-24 15:37:00 -0200279/*
280 * Export sig_enforce kernel cmdline parameter to allow other subsystems rely
281 * on that instead of directly to CONFIG_MODULE_SIG_FORCE config.
282 */
283bool is_module_sig_enforced(void)
284{
285 return sig_enforce;
286}
287EXPORT_SYMBOL(is_module_sig_enforced);
288
Stephen Rothwell19e45292009-04-14 17:27:18 +1000289/* Block module loading/unloading? */
290int modules_disabled = 0;
Dave Young02608be2012-02-01 10:33:14 +0800291core_param(nomodule, modules_disabled, bint, 0);
Stephen Rothwell19e45292009-04-14 17:27:18 +1000292
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500293/* Waiting for a module to finish initializing? */
294static DECLARE_WAIT_QUEUE_HEAD(module_wq);
295
Alan Sterne041c682006-03-27 01:16:30 -0800296static BLOCKING_NOTIFIER_HEAD(module_notify_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Ionut Alexa6da0b562014-11-10 09:31:29 +1030298int register_module_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Alan Sterne041c682006-03-27 01:16:30 -0800300 return blocking_notifier_chain_register(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302EXPORT_SYMBOL(register_module_notifier);
303
Ionut Alexa6da0b562014-11-10 09:31:29 +1030304int unregister_module_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Alan Sterne041c682006-03-27 01:16:30 -0800306 return blocking_notifier_chain_unregister(&module_notify_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308EXPORT_SYMBOL(unregister_module_notifier);
309
Miroslav Benes71d9f502016-11-16 16:45:48 +0100310/*
311 * We require a truly strong try_module_get(): 0 means success.
312 * Otherwise an error is returned due to ongoing or failed
313 * initialization etc.
314 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315static inline int strong_try_module_get(struct module *mod)
316{
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030317 BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (mod && mod->state == MODULE_STATE_COMING)
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500319 return -EBUSY;
320 if (try_module_get(mod))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return 0;
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500322 else
323 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Rusty Russell373d4d02013-01-21 17:17:39 +1030326static inline void add_taint_module(struct module *mod, unsigned flag,
327 enum lockdep_ok lockdep_ok)
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700328{
Rusty Russell373d4d02013-01-21 17:17:39 +1030329 add_taint(flag, lockdep_ok);
Petr Mladek7fd83292016-09-21 13:47:22 +0200330 set_bit(flag, &mod->taints);
Florin Malitafa3ba2e82006-10-11 01:21:48 -0700331}
332
Robert P. J. Day02a3e592007-05-09 07:26:28 +0200333/*
334 * A thread that wants to hold a reference to a module only while it
335 * is running can call this to safely exit. nfsd and lockd use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
Jiri Kosinabf262dc2016-04-12 05:02:09 +0930337void __noreturn __module_put_and_exit(struct module *mod, long code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 module_put(mod);
340 do_exit(code);
341}
342EXPORT_SYMBOL(__module_put_and_exit);
Daniel Walker22a8bde2007-10-18 03:06:07 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/* Find a module section: 0 means not found. */
Rusty Russell49668682010-08-05 12:59:10 -0600345static unsigned int find_sec(const struct load_info *info, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 unsigned int i;
348
Rusty Russell49668682010-08-05 12:59:10 -0600349 for (i = 1; i < info->hdr->e_shnum; i++) {
350 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* Alloc bit cleared means "ignore it." */
Rusty Russell49668682010-08-05 12:59:10 -0600352 if ((shdr->sh_flags & SHF_ALLOC)
353 && strcmp(info->secstrings + shdr->sh_name, name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return i;
Rusty Russell49668682010-08-05 12:59:10 -0600355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return 0;
357}
358
Rusty Russell5e458cc2008-10-22 10:00:13 -0500359/* Find a module section, or NULL. */
Rusty Russell49668682010-08-05 12:59:10 -0600360static void *section_addr(const struct load_info *info, const char *name)
Rusty Russell5e458cc2008-10-22 10:00:13 -0500361{
362 /* Section 0 has sh_addr 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600363 return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500364}
365
366/* Find a module section, or NULL. Fill in number of "objects" in section. */
Rusty Russell49668682010-08-05 12:59:10 -0600367static void *section_objs(const struct load_info *info,
Rusty Russell5e458cc2008-10-22 10:00:13 -0500368 const char *name,
369 size_t object_size,
370 unsigned int *num)
371{
Rusty Russell49668682010-08-05 12:59:10 -0600372 unsigned int sec = find_sec(info, name);
Rusty Russell5e458cc2008-10-22 10:00:13 -0500373
374 /* Section 0 has sh_addr 0 and sh_size 0. */
Rusty Russell49668682010-08-05 12:59:10 -0600375 *num = info->sechdrs[sec].sh_size / object_size;
376 return (void *)info->sechdrs[sec].sh_addr;
Rusty Russell5e458cc2008-10-22 10:00:13 -0500377}
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/* Provided by the linker */
380extern const struct kernel_symbol __start___ksymtab[];
381extern const struct kernel_symbol __stop___ksymtab[];
382extern const struct kernel_symbol __start___ksymtab_gpl[];
383extern const struct kernel_symbol __stop___ksymtab_gpl[];
Greg Kroah-Hartman9f28bb72006-03-20 13:17:13 -0800384extern const struct kernel_symbol __start___ksymtab_gpl_future[];
385extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000386extern const s32 __start___kcrctab[];
387extern const s32 __start___kcrctab_gpl[];
388extern const s32 __start___kcrctab_gpl_future[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500389#ifdef CONFIG_UNUSED_SYMBOLS
390extern const struct kernel_symbol __start___ksymtab_unused[];
391extern const struct kernel_symbol __stop___ksymtab_unused[];
392extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
393extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000394extern const s32 __start___kcrctab_unused[];
395extern const s32 __start___kcrctab_unused_gpl[];
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500396#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398#ifndef CONFIG_MODVERSIONS
399#define symversion(base, idx) NULL
400#else
Andrew Mortonf83ca9f2006-03-28 01:56:20 -0800401#define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402#endif
403
Rusty Russelldafd0942008-07-22 19:24:25 -0500404static bool each_symbol_in_section(const struct symsearch *arr,
405 unsigned int arrsize,
406 struct module *owner,
407 bool (*fn)(const struct symsearch *syms,
408 struct module *owner,
Rusty Russellde4d8d52011-04-19 21:49:58 +0200409 void *data),
Rusty Russelldafd0942008-07-22 19:24:25 -0500410 void *data)
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100411{
Rusty Russellde4d8d52011-04-19 21:49:58 +0200412 unsigned int j;
Rusty Russelldafd0942008-07-22 19:24:25 -0500413
414 for (j = 0; j < arrsize; j++) {
Rusty Russellde4d8d52011-04-19 21:49:58 +0200415 if (fn(&arr[j], owner, data))
416 return true;
Rusty Russelldafd0942008-07-22 19:24:25 -0500417 }
418
419 return false;
Sam Ravnborg3fd68052006-02-08 21:16:45 +0100420}
421
Rusty Russelldafd0942008-07-22 19:24:25 -0500422/* Returns true as soon as fn returns true, otherwise false. */
Rusty Russellde4d8d52011-04-19 21:49:58 +0200423bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
424 struct module *owner,
425 void *data),
426 void *data)
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700427{
Rusty Russelldafd0942008-07-22 19:24:25 -0500428 struct module *mod;
Linus Torvalds44032e62010-08-05 12:59:05 -0600429 static const struct symsearch arr[] = {
Rusty Russelldafd0942008-07-22 19:24:25 -0500430 { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
431 NOT_GPL_ONLY, false },
432 { __start___ksymtab_gpl, __stop___ksymtab_gpl,
433 __start___kcrctab_gpl,
434 GPL_ONLY, false },
435 { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
436 __start___kcrctab_gpl_future,
437 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500438#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500439 { __start___ksymtab_unused, __stop___ksymtab_unused,
440 __start___kcrctab_unused,
441 NOT_GPL_ONLY, true },
442 { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
443 __start___kcrctab_unused_gpl,
444 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500445#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500446 };
447
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930448 module_assert_mutex_or_preempt();
449
Rusty Russelldafd0942008-07-22 19:24:25 -0500450 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
451 return true;
452
Andi Kleend72b3752008-08-30 10:09:00 +0200453 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russelldafd0942008-07-22 19:24:25 -0500454 struct symsearch arr[] = {
455 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
456 NOT_GPL_ONLY, false },
457 { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
458 mod->gpl_crcs,
459 GPL_ONLY, false },
460 { mod->gpl_future_syms,
461 mod->gpl_future_syms + mod->num_gpl_future_syms,
462 mod->gpl_future_crcs,
463 WILL_BE_GPL_ONLY, false },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500464#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500465 { mod->unused_syms,
466 mod->unused_syms + mod->num_unused_syms,
467 mod->unused_crcs,
468 NOT_GPL_ONLY, true },
469 { mod->unused_gpl_syms,
470 mod->unused_gpl_syms + mod->num_unused_gpl_syms,
471 mod->unused_gpl_crcs,
472 GPL_ONLY, true },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500473#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500474 };
475
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030476 if (mod->state == MODULE_STATE_UNFORMED)
477 continue;
478
Rusty Russelldafd0942008-07-22 19:24:25 -0500479 if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
480 return true;
481 }
482 return false;
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700483}
Rusty Russellde4d8d52011-04-19 21:49:58 +0200484EXPORT_SYMBOL_GPL(each_symbol_section);
Arjan van de Venf71d20e2006-06-28 04:26:45 -0700485
Rusty Russelldafd0942008-07-22 19:24:25 -0500486struct find_symbol_arg {
487 /* Input */
488 const char *name;
489 bool gplok;
490 bool warn;
491
492 /* Output */
493 struct module *owner;
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000494 const s32 *crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500495 const struct kernel_symbol *sym;
Rusty Russelldafd0942008-07-22 19:24:25 -0500496};
497
Rusty Russellde4d8d52011-04-19 21:49:58 +0200498static bool check_symbol(const struct symsearch *syms,
499 struct module *owner,
500 unsigned int symnum, void *data)
Rusty Russellad9546c2008-05-01 21:14:59 -0500501{
Rusty Russelldafd0942008-07-22 19:24:25 -0500502 struct find_symbol_arg *fsa = data;
503
Rusty Russelldafd0942008-07-22 19:24:25 -0500504 if (!fsa->gplok) {
505 if (syms->licence == GPL_ONLY)
506 return false;
507 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800508 pr_warn("Symbol %s is being used by a non-GPL module, "
509 "which will not be allowed in the future\n",
510 fsa->name);
Rusty Russelldafd0942008-07-22 19:24:25 -0500511 }
512 }
513
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500514#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russelldafd0942008-07-22 19:24:25 -0500515 if (syms->unused && fsa->warn) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800516 pr_warn("Symbol %s is marked as UNUSED, however this module is "
517 "using it.\n", fsa->name);
518 pr_warn("This symbol will go away in the future.\n");
Yannick Guerrini7b63c3a2015-03-24 12:31:40 +1030519 pr_warn("Please evaluate if this is the right api to use and "
520 "if it really is, submit a report to the linux kernel "
521 "mailing list together with submitting your code for "
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800522 "inclusion.\n");
Rusty Russellad9546c2008-05-01 21:14:59 -0500523 }
Denys Vlasenkof7f5b672008-07-22 19:24:26 -0500524#endif
Rusty Russelldafd0942008-07-22 19:24:25 -0500525
526 fsa->owner = owner;
527 fsa->crc = symversion(syms->crcs, symnum);
Tim Abbott414fd312008-12-05 19:03:56 -0500528 fsa->sym = &syms->start[symnum];
Rusty Russellad9546c2008-05-01 21:14:59 -0500529 return true;
530}
531
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200532static int cmp_name(const void *va, const void *vb)
533{
534 const char *a;
535 const struct kernel_symbol *b;
536 a = va; b = vb;
537 return strcmp(a, b->name);
538}
539
Rusty Russellde4d8d52011-04-19 21:49:58 +0200540static bool find_symbol_in_section(const struct symsearch *syms,
541 struct module *owner,
542 void *data)
543{
544 struct find_symbol_arg *fsa = data;
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200545 struct kernel_symbol *sym;
Rusty Russellde4d8d52011-04-19 21:49:58 +0200546
Alessio Igor Bogani403ed272011-04-20 11:10:52 +0200547 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
548 sizeof(struct kernel_symbol), cmp_name);
549
550 if (sym != NULL && check_symbol(syms, owner, sym - syms->start, data))
551 return true;
552
Rusty Russellde4d8d52011-04-19 21:49:58 +0200553 return false;
554}
555
Tim Abbott414fd312008-12-05 19:03:56 -0500556/* Find a symbol and return it, along with, (optional) crc and
Rusty Russell75676502010-06-05 11:17:36 -0600557 * (optional) module which owns it. Needs preempt disabled or module_mutex. */
Tim Abbottc6b37802008-12-05 19:03:59 -0500558const struct kernel_symbol *find_symbol(const char *name,
559 struct module **owner,
Ard Biesheuvel71810db2017-02-03 09:54:06 +0000560 const s32 **crc,
Tim Abbottc6b37802008-12-05 19:03:59 -0500561 bool gplok,
562 bool warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Rusty Russelldafd0942008-07-22 19:24:25 -0500564 struct find_symbol_arg fsa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Rusty Russelldafd0942008-07-22 19:24:25 -0500566 fsa.name = name;
567 fsa.gplok = gplok;
568 fsa.warn = warn;
569
Rusty Russellde4d8d52011-04-19 21:49:58 +0200570 if (each_symbol_section(find_symbol_in_section, &fsa)) {
Rusty Russellad9546c2008-05-01 21:14:59 -0500571 if (owner)
Rusty Russelldafd0942008-07-22 19:24:25 -0500572 *owner = fsa.owner;
573 if (crc)
574 *crc = fsa.crc;
Tim Abbott414fd312008-12-05 19:03:56 -0500575 return fsa.sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
Rusty Russellad9546c2008-05-01 21:14:59 -0500577
Jim Cromie5e124162011-12-06 12:11:31 -0700578 pr_debug("Failed to find symbol %s\n", name);
Tim Abbott414fd312008-12-05 19:03:56 -0500579 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
Tim Abbottc6b37802008-12-05 19:03:59 -0500581EXPORT_SYMBOL_GPL(find_symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Rusty Russellfe0d34d2015-07-29 05:52:14 +0930583/*
584 * Search for module by name: must hold module_mutex (or preempt disabled
585 * for read-only access).
586 */
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930587static struct module *find_module_all(const char *name, size_t len,
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030588 bool even_unformed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 struct module *mod;
591
Rusty Russellfe0d34d2015-07-29 05:52:14 +0930592 module_assert_mutex_or_preempt();
Peter Zijlstra0be964b2015-05-27 11:09:35 +0930593
Luis R. Rodriguez93437352017-05-26 14:12:25 -0700594 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030595 if (!even_unformed && mod->state == MODULE_STATE_UNFORMED)
596 continue;
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930597 if (strlen(mod->name) == len && !memcmp(mod->name, name, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return mod;
599 }
600 return NULL;
601}
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030602
603struct module *find_module(const char *name)
604{
Rusty Russellfe0d34d2015-07-29 05:52:14 +0930605 module_assert_mutex();
Mathias Krause4f6de4d2013-07-02 15:35:11 +0930606 return find_module_all(name, strlen(name), false);
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030607}
Tim Abbottc6b37802008-12-05 19:03:59 -0500608EXPORT_SYMBOL_GPL(find_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900611
Tejun Heo259354d2010-03-10 18:56:10 +0900612static inline void __percpu *mod_percpu(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900613{
Tejun Heo259354d2010-03-10 18:56:10 +0900614 return mod->percpu;
615}
Tejun Heofbf59bc2009-02-20 16:29:08 +0900616
Rusty Russell9eb76d72013-07-03 10:06:29 +0930617static int percpu_modalloc(struct module *mod, struct load_info *info)
Tejun Heo259354d2010-03-10 18:56:10 +0900618{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930619 Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu];
620 unsigned long align = pcpusec->sh_addralign;
621
622 if (!pcpusec->sh_size)
623 return 0;
624
Tejun Heofbf59bc2009-02-20 16:29:08 +0900625 if (align > PAGE_SIZE) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800626 pr_warn("%s: per-cpu alignment %li > %li\n",
627 mod->name, align, PAGE_SIZE);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900628 align = PAGE_SIZE;
629 }
630
Rusty Russell9eb76d72013-07-03 10:06:29 +0930631 mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align);
Tejun Heo259354d2010-03-10 18:56:10 +0900632 if (!mod->percpu) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -0800633 pr_warn("%s: Could not allocate %lu bytes percpu data\n",
634 mod->name, (unsigned long)pcpusec->sh_size);
Tejun Heo259354d2010-03-10 18:56:10 +0900635 return -ENOMEM;
636 }
Rusty Russell9eb76d72013-07-03 10:06:29 +0930637 mod->percpu_size = pcpusec->sh_size;
Tejun Heo259354d2010-03-10 18:56:10 +0900638 return 0;
Tejun Heofbf59bc2009-02-20 16:29:08 +0900639}
640
Tejun Heo259354d2010-03-10 18:56:10 +0900641static void percpu_modfree(struct module *mod)
Tejun Heofbf59bc2009-02-20 16:29:08 +0900642{
Tejun Heo259354d2010-03-10 18:56:10 +0900643 free_percpu(mod->percpu);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900644}
645
Rusty Russell49668682010-08-05 12:59:10 -0600646static unsigned int find_pcpusec(struct load_info *info)
Tejun Heo6b588c12009-02-20 16:29:07 +0900647{
Rusty Russell49668682010-08-05 12:59:10 -0600648 return find_sec(info, ".data..percpu");
Tejun Heo6b588c12009-02-20 16:29:07 +0900649}
650
Tejun Heo259354d2010-03-10 18:56:10 +0900651static void percpu_modcopy(struct module *mod,
652 const void *from, unsigned long size)
Tejun Heo6b588c12009-02-20 16:29:07 +0900653{
654 int cpu;
655
656 for_each_possible_cpu(cpu)
Tejun Heo259354d2010-03-10 18:56:10 +0900657 memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
Tejun Heo6b588c12009-02-20 16:29:07 +0900658}
659
Thomas Gleixner383776f2017-02-27 15:37:36 +0100660bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
Tejun Heo10fad5e2010-03-10 18:57:54 +0900661{
662 struct module *mod;
663 unsigned int cpu;
664
665 preempt_disable();
666
667 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +1030668 if (mod->state == MODULE_STATE_UNFORMED)
669 continue;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900670 if (!mod->percpu_size)
671 continue;
672 for_each_possible_cpu(cpu) {
673 void *start = per_cpu_ptr(mod->percpu, cpu);
Thomas Gleixner383776f2017-02-27 15:37:36 +0100674 void *va = (void *)addr;
Tejun Heo10fad5e2010-03-10 18:57:54 +0900675
Thomas Gleixner383776f2017-02-27 15:37:36 +0100676 if (va >= start && va < start + mod->percpu_size) {
Peter Zijlstra8ce371f2017-03-20 12:26:55 +0100677 if (can_addr) {
Thomas Gleixner383776f2017-02-27 15:37:36 +0100678 *can_addr = (unsigned long) (va - start);
Peter Zijlstra8ce371f2017-03-20 12:26:55 +0100679 *can_addr += (unsigned long)
680 per_cpu_ptr(mod->percpu,
681 get_boot_cpu_id());
682 }
Tejun Heo10fad5e2010-03-10 18:57:54 +0900683 preempt_enable();
684 return true;
685 }
686 }
687 }
688
689 preempt_enable();
690 return false;
Daniel Walker22a8bde2007-10-18 03:06:07 -0700691}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Thomas Gleixner383776f2017-02-27 15:37:36 +0100693/**
694 * is_module_percpu_address - test whether address is from module static percpu
695 * @addr: address to test
696 *
697 * Test whether @addr belongs to module static percpu area.
698 *
699 * RETURNS:
700 * %true if @addr is from module static percpu area
701 */
702bool is_module_percpu_address(unsigned long addr)
703{
704 return __is_module_percpu_address(addr, NULL);
705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707#else /* ... !CONFIG_SMP */
Tejun Heo6b588c12009-02-20 16:29:07 +0900708
Tejun Heo259354d2010-03-10 18:56:10 +0900709static inline void __percpu *mod_percpu(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 return NULL;
712}
Rusty Russell9eb76d72013-07-03 10:06:29 +0930713static int percpu_modalloc(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Rusty Russell9eb76d72013-07-03 10:06:29 +0930715 /* UP modules shouldn't have this section: ENOMEM isn't quite right */
716 if (info->sechdrs[info->index.pcpu].sh_size != 0)
717 return -ENOMEM;
718 return 0;
Tejun Heo259354d2010-03-10 18:56:10 +0900719}
720static inline void percpu_modfree(struct module *mod)
721{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
Rusty Russell49668682010-08-05 12:59:10 -0600723static unsigned int find_pcpusec(struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 return 0;
726}
Tejun Heo259354d2010-03-10 18:56:10 +0900727static inline void percpu_modcopy(struct module *mod,
728 const void *from, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 /* pcpusec should be 0, and size of that section should be 0. */
731 BUG_ON(size != 0);
732}
Tejun Heo10fad5e2010-03-10 18:57:54 +0900733bool is_module_percpu_address(unsigned long addr)
734{
735 return false;
736}
Tejun Heo6b588c12009-02-20 16:29:07 +0900737
Thomas Gleixner383776f2017-02-27 15:37:36 +0100738bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
739{
740 return false;
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743#endif /* CONFIG_SMP */
744
Matt Domschc988d2b2005-06-23 22:05:15 -0700745#define MODINFO_ATTR(field) \
746static void setup_modinfo_##field(struct module *mod, const char *s) \
747{ \
748 mod->field = kstrdup(s, GFP_KERNEL); \
749} \
750static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
Kay Sievers4befb022011-07-24 22:06:04 +0930751 struct module_kobject *mk, char *buffer) \
Matt Domschc988d2b2005-06-23 22:05:15 -0700752{ \
Chen Gangcc56ded2013-08-20 15:34:21 +0930753 return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field); \
Matt Domschc988d2b2005-06-23 22:05:15 -0700754} \
755static int modinfo_##field##_exists(struct module *mod) \
756{ \
757 return mod->field != NULL; \
758} \
759static void free_modinfo_##field(struct module *mod) \
760{ \
Daniel Walker22a8bde2007-10-18 03:06:07 -0700761 kfree(mod->field); \
762 mod->field = NULL; \
Matt Domschc988d2b2005-06-23 22:05:15 -0700763} \
764static struct module_attribute modinfo_##field = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900765 .attr = { .name = __stringify(field), .mode = 0444 }, \
Matt Domschc988d2b2005-06-23 22:05:15 -0700766 .show = show_modinfo_##field, \
767 .setup = setup_modinfo_##field, \
768 .test = modinfo_##field##_exists, \
769 .free = free_modinfo_##field, \
770};
771
772MODINFO_ATTR(version);
773MODINFO_ATTR(srcversion);
774
Arjan van de Vene14af7e2008-01-25 21:08:33 +0100775static char last_unloaded_module[MODULE_NAME_LEN+1];
776
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -0800777#ifdef CONFIG_MODULE_UNLOAD
Steven Rostedteb0c5372010-03-29 14:25:18 -0400778
779EXPORT_TRACEPOINT_SYMBOL(module_get);
780
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030781/* MODULE_REF_BASE is the base reference count by kmodule loader. */
782#define MODULE_REF_BASE 1
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784/* Init the unload section of the module. */
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600785static int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030787 /*
788 * Initialize reference counter to MODULE_REF_BASE.
789 * refcnt == 0 means module is going.
790 */
791 atomic_set(&mod->refcnt, MODULE_REF_BASE);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600792
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700793 INIT_LIST_HEAD(&mod->source_list);
794 INIT_LIST_HEAD(&mod->target_list);
Christoph Lametere1783a22010-01-05 15:34:50 +0900795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /* Hold reference count during initialization. */
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030797 atomic_inc(&mod->refcnt);
Rusty Russell9f85a4b2010-08-05 12:59:04 -0600798
799 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802/* Does a already use b? */
803static int already_uses(struct module *a, struct module *b)
804{
805 struct module_use *use;
806
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700807 list_for_each_entry(use, &b->source_list, source_list) {
808 if (use->source == a) {
Jim Cromie5e124162011-12-06 12:11:31 -0700809 pr_debug("%s uses %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return 1;
811 }
812 }
Jim Cromie5e124162011-12-06 12:11:31 -0700813 pr_debug("%s does not use %s!\n", a->name, b->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return 0;
815}
816
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700817/*
818 * Module a uses b
819 * - we add 'a' as a "source", 'b' as a "target" of module use
820 * - the module_use is added to the list of 'b' sources (so
821 * 'b' can walk the list to see who sourced them), and of 'a'
822 * targets (so 'a' can see what modules it targets).
823 */
824static int add_module_usage(struct module *a, struct module *b)
825{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700826 struct module_use *use;
827
Jim Cromie5e124162011-12-06 12:11:31 -0700828 pr_debug("Allocating new usage for %s.\n", a->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700829 use = kmalloc(sizeof(*use), GFP_ATOMIC);
Markus Elfring9ad04572017-10-06 16:27:26 +0200830 if (!use)
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700831 return -ENOMEM;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700832
833 use->source = a;
834 use->target = b;
835 list_add(&use->source_list, &b->source_list);
836 list_add(&use->target_list, &a->target_list);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700837 return 0;
838}
839
Rusty Russell75676502010-06-05 11:17:36 -0600840/* Module a uses b: caller needs module_mutex() */
Rusty Russell9bea7f22010-06-05 11:17:37 -0600841int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Rusty Russellc8e21ce2010-06-05 11:17:35 -0600843 int err;
Kay Sievers270a6c42007-01-18 13:26:15 +0100844
Rusty Russell9bea7f22010-06-05 11:17:37 -0600845 if (b == NULL || already_uses(a, b))
Linus Torvalds218ce732010-05-25 16:48:30 -0700846 return 0;
Linus Torvalds218ce732010-05-25 16:48:30 -0700847
Rusty Russell9bea7f22010-06-05 11:17:37 -0600848 /* If module isn't available, we fail. */
849 err = strong_try_module_get(b);
Rusty Russellc9a3ba52008-01-29 17:13:18 -0500850 if (err)
Rusty Russell9bea7f22010-06-05 11:17:37 -0600851 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700853 err = add_module_usage(a, b);
854 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 module_put(b);
Rusty Russell9bea7f22010-06-05 11:17:37 -0600856 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Rusty Russell9bea7f22010-06-05 11:17:37 -0600858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
Rusty Russell9bea7f22010-06-05 11:17:37 -0600860EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862/* Clear the unload stuff of the module. */
863static void module_unload_free(struct module *mod)
864{
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700865 struct module_use *use, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Rusty Russell75676502010-06-05 11:17:36 -0600867 mutex_lock(&module_mutex);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700868 list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
869 struct module *i = use->target;
Jim Cromie5e124162011-12-06 12:11:31 -0700870 pr_debug("%s unusing %s\n", mod->name, i->name);
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700871 module_put(i);
872 list_del(&use->source_list);
873 list_del(&use->target_list);
874 kfree(use);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
Rusty Russell75676502010-06-05 11:17:36 -0600876 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879#ifdef CONFIG_MODULE_FORCE_UNLOAD
Akinobu Mitafb169792006-01-08 01:04:29 -0800880static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 int ret = (flags & O_TRUNC);
883 if (ret)
Rusty Russell373d4d02013-01-21 17:17:39 +1030884 add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return ret;
886}
887#else
Akinobu Mitafb169792006-01-08 01:04:29 -0800888static inline int try_force_unload(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 return 0;
891}
892#endif /* CONFIG_MODULE_FORCE_UNLOAD */
893
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030894/* Try to release refcount of module, 0 means success. */
895static int try_release_module_ref(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030897 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030899 /* Try to decrement refcnt which we set at loading */
900 ret = atomic_sub_return(MODULE_REF_BASE, &mod->refcnt);
901 BUG_ON(ret < 0);
902 if (ret)
903 /* Someone can put this right now, recover with checking */
904 ret = atomic_add_unless(&mod->refcnt, MODULE_REF_BASE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030906 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
909static int try_stop_module(struct module *mod, int flags, int *forced)
910{
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030911 /* If it's not unused, quit unless we're forcing. */
912 if (try_release_module_ref(mod) != 0) {
913 *forced = try_force_unload(flags);
914 if (!(*forced))
915 return -EWOULDBLOCK;
916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Masami Hiramatsue513cc12014-11-10 09:30:29 +1030918 /* Mark it as dying. */
919 mod->state = MODULE_STATE_GOING;
920
921 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Rusty Russelld5db1392015-01-22 11:13:14 +1030924/**
925 * module_refcount - return the refcount or -1 if unloading
926 *
927 * @mod: the module we're checking
928 *
929 * Returns:
930 * -1 if the module is in the process of unloading
931 * otherwise the number of references in the kernel to the module
932 */
933int module_refcount(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Rusty Russelld5db1392015-01-22 11:13:14 +1030935 return atomic_read(&mod->refcnt) - MODULE_REF_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937EXPORT_SYMBOL(module_refcount);
938
939/* This exists whether we can unload or not */
940static void free_module(struct module *mod);
941
Heiko Carstens17da2bd2009-01-14 14:14:10 +0100942SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
943 unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
945 struct module *mod;
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800946 char name[MODULE_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 int ret, forced = 0;
948
Kees Cook3d433212009-04-02 15:49:29 -0700949 if (!capable(CAP_SYS_MODULE) || modules_disabled)
Greg Kroah-Hartmandfff0a02007-02-23 14:54:57 -0800950 return -EPERM;
951
952 if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
953 return -EFAULT;
954 name[MODULE_NAME_LEN-1] = '\0';
955
Richard Guy Briggsf6276ac2017-05-02 10:16:04 -0400956 audit_log_kern_module(name);
957
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200958 if (mutex_lock_interruptible(&module_mutex) != 0)
959 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 mod = find_module(name);
962 if (!mod) {
963 ret = -ENOENT;
964 goto out;
965 }
966
Linus Torvalds2c02dfe2010-05-31 12:19:37 -0700967 if (!list_empty(&mod->source_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /* Other modules depend on us: get rid of them first. */
969 ret = -EWOULDBLOCK;
970 goto out;
971 }
972
973 /* Doing init or already dying? */
974 if (mod->state != MODULE_STATE_LIVE) {
Rusty Russell3f2b9c92013-09-17 05:48:51 +0930975 /* FIXME: if (force), slam module count damn the torpedoes */
Jim Cromie5e124162011-12-06 12:11:31 -0700976 pr_debug("%s already dying\n", mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 ret = -EBUSY;
978 goto out;
979 }
980
981 /* If it has an init func, it must have an exit func to unload */
Rusty Russellaf49d922007-10-16 23:26:27 -0700982 if (mod->init && !mod->exit) {
Akinobu Mitafb169792006-01-08 01:04:29 -0800983 forced = try_force_unload(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!forced) {
985 /* This module can't be removed */
986 ret = -EBUSY;
987 goto out;
988 }
989 }
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 /* Stop the machine so refcounts can't move and disable module. */
992 ret = try_stop_module(mod, flags, &forced);
993 if (ret != 0)
994 goto out;
995
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200996 mutex_unlock(&module_mutex);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300997 /* Final destruction now no one is using it. */
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +0200998 if (mod->exit != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 mod->exit();
Peter Oberparleiterdf4b5652008-04-21 14:34:31 +02001000 blocking_notifier_call_chain(&module_notify_list,
1001 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04001002 klp_module_going(mod);
Jessica Yu7dcd1822016-02-16 17:32:33 -05001003 ftrace_release_mod(mod);
1004
Arjan van de Ven22a9d642009-01-07 08:45:46 -08001005 async_synchronize_full();
Rusty Russell75676502010-06-05 11:17:36 -06001006
Arjan van de Vene14af7e2008-01-25 21:08:33 +01001007 /* Store the name of the last unloaded module for diagnostic purposes */
Rusty Russellefa53452008-01-29 17:13:20 -05001008 strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Rusty Russell75676502010-06-05 11:17:36 -06001010 free_module(mod);
1011 return 0;
1012out:
Ashutosh Naik6389a382006-03-23 03:00:46 -08001013 mutex_unlock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return ret;
1015}
1016
Jianjun Kongd1e99d72008-12-08 14:26:29 +08001017static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 struct module_use *use;
1020 int printed_something = 0;
1021
Rusty Russelld5db1392015-01-22 11:13:14 +10301022 seq_printf(m, " %i ", module_refcount(mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Ionut Alexa6da0b562014-11-10 09:31:29 +10301024 /*
1025 * Always include a trailing , so userspace can differentiate
1026 * between this and the old multi-field proc format.
1027 */
Linus Torvalds2c02dfe2010-05-31 12:19:37 -07001028 list_for_each_entry(use, &mod->source_list, source_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 printed_something = 1;
Linus Torvalds2c02dfe2010-05-31 12:19:37 -07001030 seq_printf(m, "%s,", use->source->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (mod->init != NULL && mod->exit == NULL) {
1034 printed_something = 1;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301035 seq_puts(m, "[permanent],");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
1038 if (!printed_something)
Ionut Alexa6da0b562014-11-10 09:31:29 +10301039 seq_puts(m, "-");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042void __symbol_put(const char *symbol)
1043{
1044 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Rusty Russell24da1cb2007-07-15 23:41:46 -07001046 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05001047 if (!find_symbol(symbol, &owner, NULL, true, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 BUG();
1049 module_put(owner);
Rusty Russell24da1cb2007-07-15 23:41:46 -07001050 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052EXPORT_SYMBOL(__symbol_put);
1053
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301054/* Note this assumes addr is a function, which it currently always is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055void symbol_put_addr(void *addr)
1056{
Trent Piepho5e376612006-05-15 09:44:06 -07001057 struct module *modaddr;
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301058 unsigned long a = (unsigned long)dereference_function_descriptor(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301060 if (core_kernel_text(a))
Trent Piepho5e376612006-05-15 09:44:06 -07001061 return;
1062
Peter Zijlstra275d7d42015-08-20 10:34:59 +09301063 /*
1064 * Even though we hold a reference on the module; we still need to
1065 * disable preemption in order to safely traverse the data structure.
1066 */
1067 preempt_disable();
Rusty Russell7d1d16e2009-08-26 22:02:54 +09301068 modaddr = __module_text_address(a);
Rusty Russella6e6abd2009-03-31 13:05:31 -06001069 BUG_ON(!modaddr);
Trent Piepho5e376612006-05-15 09:44:06 -07001070 module_put(modaddr);
Peter Zijlstra275d7d42015-08-20 10:34:59 +09301071 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
1073EXPORT_SYMBOL_GPL(symbol_put_addr);
1074
1075static ssize_t show_refcnt(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301076 struct module_kobject *mk, char *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Rusty Russelld5db1392015-01-22 11:13:14 +10301078 return sprintf(buffer, "%i\n", module_refcount(mk->mod));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
Kay Sieverscca3e702012-01-13 09:32:15 +10301081static struct module_attribute modinfo_refcnt =
1082 __ATTR(refcnt, 0444, show_refcnt, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Steven Rostedtd53799b2012-03-26 12:50:52 +10301084void __module_get(struct module *module)
1085{
1086 if (module) {
1087 preempt_disable();
Masami Hiramatsu2f35c412014-11-10 09:29:29 +10301088 atomic_inc(&module->refcnt);
Steven Rostedtd53799b2012-03-26 12:50:52 +10301089 trace_module_get(module, _RET_IP_);
1090 preempt_enable();
1091 }
1092}
1093EXPORT_SYMBOL(__module_get);
1094
1095bool try_module_get(struct module *module)
1096{
1097 bool ret = true;
1098
1099 if (module) {
1100 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301101 /* Note: here, we can fail to get a reference */
1102 if (likely(module_is_live(module) &&
1103 atomic_inc_not_zero(&module->refcnt) != 0))
Steven Rostedtd53799b2012-03-26 12:50:52 +10301104 trace_module_get(module, _RET_IP_);
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301105 else
Steven Rostedtd53799b2012-03-26 12:50:52 +10301106 ret = false;
1107
1108 preempt_enable();
1109 }
1110 return ret;
1111}
1112EXPORT_SYMBOL(try_module_get);
1113
Al Virof6a57032006-10-18 01:47:25 -04001114void module_put(struct module *module)
1115{
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301116 int ret;
1117
Al Virof6a57032006-10-18 01:47:25 -04001118 if (module) {
Christoph Lametere1783a22010-01-05 15:34:50 +09001119 preempt_disable();
Masami Hiramatsue513cc12014-11-10 09:30:29 +10301120 ret = atomic_dec_if_positive(&module->refcnt);
1121 WARN_ON(ret < 0); /* Failed to put refcount */
Li Zefanae832d12010-03-24 10:57:43 +08001122 trace_module_put(module, _RET_IP_);
Christoph Lametere1783a22010-01-05 15:34:50 +09001123 preempt_enable();
Al Virof6a57032006-10-18 01:47:25 -04001124 }
1125}
1126EXPORT_SYMBOL(module_put);
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128#else /* !CONFIG_MODULE_UNLOAD */
Jianjun Kongd1e99d72008-12-08 14:26:29 +08001129static inline void print_unload_info(struct seq_file *m, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 /* We don't know the usage count, or what modules are using. */
Ionut Alexa6da0b562014-11-10 09:31:29 +10301132 seq_puts(m, " - -");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
1135static inline void module_unload_free(struct module *mod)
1136{
1137}
1138
Rusty Russell9bea7f22010-06-05 11:17:37 -06001139int ref_module(struct module *a, struct module *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Rusty Russell9bea7f22010-06-05 11:17:37 -06001141 return strong_try_module_get(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
Rusty Russell9bea7f22010-06-05 11:17:37 -06001143EXPORT_SYMBOL_GPL(ref_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001145static inline int module_unload_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Rusty Russell9f85a4b2010-08-05 12:59:04 -06001147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
1149#endif /* CONFIG_MODULE_UNLOAD */
1150
Kevin Winchester53999bf2012-01-15 19:32:55 -04001151static size_t module_flags_taint(struct module *mod, char *buf)
1152{
1153 size_t l = 0;
Petr Mladek7fd83292016-09-21 13:47:22 +02001154 int i;
Kevin Winchester53999bf2012-01-15 19:32:55 -04001155
Petr Mladek7fd83292016-09-21 13:47:22 +02001156 for (i = 0; i < TAINT_FLAGS_COUNT; i++) {
1157 if (taint_flags[i].module && test_bit(i, &mod->taints))
Larry Finger5eb7c0d2017-01-01 20:25:25 -06001158 buf[l++] = taint_flags[i].c_true;
Petr Mladek7fd83292016-09-21 13:47:22 +02001159 }
1160
Kevin Winchester53999bf2012-01-15 19:32:55 -04001161 return l;
1162}
1163
Kay Sievers1f717402006-11-24 12:15:25 +01001164static ssize_t show_initstate(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301165 struct module_kobject *mk, char *buffer)
Kay Sievers1f717402006-11-24 12:15:25 +01001166{
1167 const char *state = "unknown";
1168
Kay Sievers4befb022011-07-24 22:06:04 +09301169 switch (mk->mod->state) {
Kay Sievers1f717402006-11-24 12:15:25 +01001170 case MODULE_STATE_LIVE:
1171 state = "live";
1172 break;
1173 case MODULE_STATE_COMING:
1174 state = "coming";
1175 break;
1176 case MODULE_STATE_GOING:
1177 state = "going";
1178 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301179 default:
1180 BUG();
Kay Sievers1f717402006-11-24 12:15:25 +01001181 }
1182 return sprintf(buffer, "%s\n", state);
1183}
1184
Kay Sieverscca3e702012-01-13 09:32:15 +10301185static struct module_attribute modinfo_initstate =
1186 __ATTR(initstate, 0444, show_initstate, NULL);
Kay Sievers1f717402006-11-24 12:15:25 +01001187
Kay Sievers88bfa322011-07-24 22:06:04 +09301188static ssize_t store_uevent(struct module_attribute *mattr,
1189 struct module_kobject *mk,
1190 const char *buffer, size_t count)
1191{
Peter Rajnohaf36776f2017-05-09 15:22:30 +02001192 kobject_synth_uevent(&mk->kobj, buffer, count);
Kay Sievers88bfa322011-07-24 22:06:04 +09301193 return count;
1194}
1195
Kay Sieverscca3e702012-01-13 09:32:15 +10301196struct module_attribute module_uevent =
1197 __ATTR(uevent, 0200, NULL, store_uevent);
1198
1199static ssize_t show_coresize(struct module_attribute *mattr,
1200 struct module_kobject *mk, char *buffer)
1201{
Rusty Russell7523e4d2015-11-26 09:44:08 +10301202 return sprintf(buffer, "%u\n", mk->mod->core_layout.size);
Kay Sieverscca3e702012-01-13 09:32:15 +10301203}
1204
1205static struct module_attribute modinfo_coresize =
1206 __ATTR(coresize, 0444, show_coresize, NULL);
1207
1208static ssize_t show_initsize(struct module_attribute *mattr,
1209 struct module_kobject *mk, char *buffer)
1210{
Rusty Russell7523e4d2015-11-26 09:44:08 +10301211 return sprintf(buffer, "%u\n", mk->mod->init_layout.size);
Kay Sieverscca3e702012-01-13 09:32:15 +10301212}
1213
1214static struct module_attribute modinfo_initsize =
1215 __ATTR(initsize, 0444, show_initsize, NULL);
1216
1217static ssize_t show_taint(struct module_attribute *mattr,
1218 struct module_kobject *mk, char *buffer)
1219{
1220 size_t l;
1221
1222 l = module_flags_taint(mk->mod, buffer);
1223 buffer[l++] = '\n';
1224 return l;
1225}
1226
1227static struct module_attribute modinfo_taint =
1228 __ATTR(taint, 0444, show_taint, NULL);
Kay Sievers88bfa322011-07-24 22:06:04 +09301229
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001230static struct module_attribute *modinfo_attrs[] = {
Kay Sieverscca3e702012-01-13 09:32:15 +10301231 &module_uevent,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001232 &modinfo_version,
1233 &modinfo_srcversion,
Kay Sieverscca3e702012-01-13 09:32:15 +10301234 &modinfo_initstate,
1235 &modinfo_coresize,
1236 &modinfo_initsize,
1237 &modinfo_taint,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001238#ifdef CONFIG_MODULE_UNLOAD
Kay Sieverscca3e702012-01-13 09:32:15 +10301239 &modinfo_refcnt,
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001240#endif
1241 NULL,
1242};
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244static const char vermagic[] = VERMAGIC_STRING;
1245
Rusty Russellc6e665c2009-03-31 13:05:33 -06001246static int try_to_force_load(struct module *mod, const char *reason)
Linus Torvalds826e4502008-05-04 17:04:16 -07001247{
1248#ifdef CONFIG_MODULE_FORCE_LOAD
Andi Kleen25ddbb12008-10-15 22:01:41 -07001249 if (!test_taint(TAINT_FORCED_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001250 pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
Rusty Russell373d4d02013-01-21 17:17:39 +10301251 add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds826e4502008-05-04 17:04:16 -07001252 return 0;
1253#else
1254 return -ENOEXEC;
1255#endif
1256}
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258#ifdef CONFIG_MODVERSIONS
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001259
1260static u32 resolve_rel_crc(const s32 *crc)
Rusty Russelld4703ae2009-12-15 16:28:32 -06001261{
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001262 return *(u32 *)((void *)crc + *crc);
Rusty Russelld4703ae2009-12-15 16:28:32 -06001263}
1264
Kees Cook49019422017-04-21 15:35:26 -07001265static int check_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301267 struct module *mod,
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001268 const s32 *crc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Kees Cook49019422017-04-21 15:35:26 -07001270 Elf_Shdr *sechdrs = info->sechdrs;
1271 unsigned int versindex = info->index.vers;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 unsigned int i, num_versions;
1273 struct modversion_info *versions;
1274
1275 /* Exporting module didn't supply crcs? OK, we're already tainted. */
1276 if (!crc)
1277 return 1;
1278
Rusty Russella5dd6972008-05-09 16:24:21 +10001279 /* No versions at all? modprobe --force does this. */
1280 if (versindex == 0)
1281 return try_to_force_load(mod, symname) == 0;
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 versions = (void *) sechdrs[versindex].sh_addr;
1284 num_versions = sechdrs[versindex].sh_size
1285 / sizeof(struct modversion_info);
1286
1287 for (i = 0; i < num_versions; i++) {
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001288 u32 crcval;
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (strcmp(versions[i].name, symname) != 0)
1291 continue;
1292
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001293 if (IS_ENABLED(CONFIG_MODULE_REL_CRCS))
1294 crcval = resolve_rel_crc(crc);
1295 else
1296 crcval = *crc;
1297 if (versions[i].crc == crcval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return 1;
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001299 pr_debug("Found checksum %X vs module %lX\n",
1300 crcval, versions[i].crc);
Linus Torvalds826e4502008-05-04 17:04:16 -07001301 goto bad_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
Linus Torvalds826e4502008-05-04 17:04:16 -07001303
Linus Torvaldsfaaae2a2016-11-29 15:20:14 -08001304 /* Broken toolchain. Warn once, then let it go.. */
Kees Cook3e2e8572017-04-21 15:35:27 -07001305 pr_warn_once("%s: no symbol version for %s\n", info->name, symname);
Linus Torvaldsfaaae2a2016-11-29 15:20:14 -08001306 return 1;
Linus Torvalds826e4502008-05-04 17:04:16 -07001307
1308bad_version:
Ionut Alexa6da0b562014-11-10 09:31:29 +10301309 pr_warn("%s: disagrees about version of symbol %s\n",
Kees Cook3e2e8572017-04-21 15:35:27 -07001310 info->name, symname);
Linus Torvalds826e4502008-05-04 17:04:16 -07001311 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
1313
Kees Cook49019422017-04-21 15:35:26 -07001314static inline int check_modstruct_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 struct module *mod)
1316{
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001317 const s32 *crc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301319 /*
1320 * Since this should be found in kernel (which can't be removed), no
1321 * locking is necessary -- use preempt_disable() to placate lockdep.
1322 */
1323 preempt_disable();
Masahiro Yamada996302c2018-06-24 00:37:44 +09001324 if (!find_symbol("module_layout", NULL, &crc, true, false)) {
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301325 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 BUG();
Peter Zijlstra926a59b2015-05-27 11:09:35 +09301327 }
1328 preempt_enable();
Masahiro Yamada996302c2018-06-24 00:37:44 +09001329 return check_version(info, "module_layout", mod, crc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Rusty Russell91e37a72008-05-09 16:25:28 +10001332/* First part is kernel version, which we ignore if module has crcs. */
1333static inline int same_magic(const char *amagic, const char *bmagic,
1334 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
Rusty Russell91e37a72008-05-09 16:25:28 +10001336 if (has_crcs) {
1337 amagic += strcspn(amagic, " ");
1338 bmagic += strcspn(bmagic, " ");
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return strcmp(amagic, bmagic) == 0;
1341}
1342#else
Kees Cook49019422017-04-21 15:35:26 -07001343static inline int check_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 const char *symname,
Ionut Alexa6da0b562014-11-10 09:31:29 +10301345 struct module *mod,
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001346 const s32 *crc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 return 1;
1349}
1350
Kees Cook49019422017-04-21 15:35:26 -07001351static inline int check_modstruct_version(const struct load_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 struct module *mod)
1353{
1354 return 1;
1355}
1356
Rusty Russell91e37a72008-05-09 16:25:28 +10001357static inline int same_magic(const char *amagic, const char *bmagic,
1358 bool has_crcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 return strcmp(amagic, bmagic) == 0;
1361}
1362#endif /* CONFIG_MODVERSIONS */
1363
Rusty Russell75676502010-06-05 11:17:36 -06001364/* Resolve a symbol for this module. I.e. if we find one, record usage. */
Rusty Russell49668682010-08-05 12:59:10 -06001365static const struct kernel_symbol *resolve_symbol(struct module *mod,
1366 const struct load_info *info,
Tim Abbott414fd312008-12-05 19:03:56 -05001367 const char *name,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001368 char ownername[])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05001371 const struct kernel_symbol *sym;
Ard Biesheuvel71810db2017-02-03 09:54:06 +00001372 const s32 *crc;
Rusty Russell9bea7f22010-06-05 11:17:37 -06001373 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Peter Zijlstrad64810f2015-02-11 15:01:13 +10301375 /*
1376 * The module_mutex should not be a heavily contended lock;
1377 * if we get the occasional sleep here, we'll go an extra iteration
1378 * in the wait_event_interruptible(), which is harmless.
1379 */
1380 sched_annotate_sleep();
Rusty Russell75676502010-06-05 11:17:36 -06001381 mutex_lock(&module_mutex);
Tim Abbott414fd312008-12-05 19:03:56 -05001382 sym = find_symbol(name, &owner, &crc,
Andi Kleen25ddbb12008-10-15 22:01:41 -07001383 !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001384 if (!sym)
1385 goto unlock;
1386
Kees Cook49019422017-04-21 15:35:26 -07001387 if (!check_version(info, name, mod, crc)) {
Rusty Russell9bea7f22010-06-05 11:17:37 -06001388 sym = ERR_PTR(-EINVAL);
1389 goto getname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
Rusty Russell9bea7f22010-06-05 11:17:37 -06001391
1392 err = ref_module(mod, owner);
1393 if (err) {
1394 sym = ERR_PTR(err);
1395 goto getname;
1396 }
1397
1398getname:
1399 /* We must make copy under the lock if we failed to get ref. */
1400 strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
1401unlock:
Rusty Russell75676502010-06-05 11:17:36 -06001402 mutex_unlock(&module_mutex);
Linus Torvalds218ce732010-05-25 16:48:30 -07001403 return sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
Rusty Russell49668682010-08-05 12:59:10 -06001406static const struct kernel_symbol *
1407resolve_symbol_wait(struct module *mod,
1408 const struct load_info *info,
1409 const char *name)
Rusty Russell9bea7f22010-06-05 11:17:37 -06001410{
1411 const struct kernel_symbol *ksym;
Rusty Russell49668682010-08-05 12:59:10 -06001412 char owner[MODULE_NAME_LEN];
Rusty Russell9bea7f22010-06-05 11:17:37 -06001413
1414 if (wait_event_interruptible_timeout(module_wq,
Rusty Russell49668682010-08-05 12:59:10 -06001415 !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
1416 || PTR_ERR(ksym) != -EBUSY,
Rusty Russell9bea7f22010-06-05 11:17:37 -06001417 30 * HZ) <= 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001418 pr_warn("%s: gave up waiting for init of module %s.\n",
1419 mod->name, owner);
Rusty Russell9bea7f22010-06-05 11:17:37 -06001420 }
1421 return ksym;
1422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424/*
1425 * /sys/module/foo/sections stuff
1426 * J. Corbet <corbet@lwn.net>
1427 */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001428#ifdef CONFIG_SYSFS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001429
Rusty Russell8f6d0372010-08-05 12:59:09 -06001430#ifdef CONFIG_KALLSYMS
Ben Hutchings10b465a2009-12-19 14:43:01 +00001431static inline bool sect_empty(const Elf_Shdr *sect)
1432{
1433 return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
1434}
1435
Ionut Alexa6da0b562014-11-10 09:31:29 +10301436struct module_sect_attr {
Rusty Russella58730c2008-03-13 09:03:44 +00001437 struct module_attribute mattr;
1438 char *name;
1439 unsigned long address;
1440};
1441
Ionut Alexa6da0b562014-11-10 09:31:29 +10301442struct module_sect_attrs {
Rusty Russella58730c2008-03-13 09:03:44 +00001443 struct attribute_group grp;
1444 unsigned int nsections;
1445 struct module_sect_attr attrs[0];
1446};
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448static ssize_t module_sect_show(struct module_attribute *mattr,
Kay Sievers4befb022011-07-24 22:06:04 +09301449 struct module_kobject *mk, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
1451 struct module_sect_attr *sattr =
1452 container_of(mattr, struct module_sect_attr, mattr);
Thomas Richterbe71eda2018-04-18 09:14:36 +02001453 return sprintf(buf, "0x%px\n", kptr_restrict < 2 ?
1454 (void *)sattr->address : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001457static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
1458{
Rusty Russella58730c2008-03-13 09:03:44 +00001459 unsigned int section;
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001460
1461 for (section = 0; section < sect_attrs->nsections; section++)
1462 kfree(sect_attrs->attrs[section].name);
1463 kfree(sect_attrs);
1464}
1465
Rusty Russell8f6d0372010-08-05 12:59:09 -06001466static void add_sect_attrs(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
1468 unsigned int nloaded = 0, i, size[2];
1469 struct module_sect_attrs *sect_attrs;
1470 struct module_sect_attr *sattr;
1471 struct attribute **gattr;
Daniel Walker22a8bde2007-10-18 03:06:07 -07001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 /* Count loaded sections and allocate structures */
Rusty Russell8f6d0372010-08-05 12:59:09 -06001474 for (i = 0; i < info->hdr->e_shnum; i++)
1475 if (!sect_empty(&info->sechdrs[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 nloaded++;
1477 size[0] = ALIGN(sizeof(*sect_attrs)
1478 + nloaded * sizeof(sect_attrs->attrs[0]),
1479 sizeof(sect_attrs->grp.attrs[0]));
1480 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001481 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
1482 if (sect_attrs == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return;
1484
1485 /* Setup section attributes. */
1486 sect_attrs->grp.name = "sections";
1487 sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
1488
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001489 sect_attrs->nsections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 sattr = &sect_attrs->attrs[0];
1491 gattr = &sect_attrs->grp.attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001492 for (i = 0; i < info->hdr->e_shnum; i++) {
1493 Elf_Shdr *sec = &info->sechdrs[i];
1494 if (sect_empty(sec))
Helge Deller35dead42009-12-03 00:29:15 +01001495 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001496 sattr->address = sec->sh_addr;
1497 sattr->name = kstrdup(info->secstrings + sec->sh_name,
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001498 GFP_KERNEL);
1499 if (sattr->name == NULL)
1500 goto out;
1501 sect_attrs->nsections++;
Eric W. Biederman361795b2010-02-12 13:41:56 -08001502 sysfs_attr_init(&sattr->mattr.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 sattr->mattr.show = module_sect_show;
1504 sattr->mattr.store = NULL;
1505 sattr->mattr.attr.name = sattr->name;
Linus Torvalds277642d2017-11-12 17:00:53 -08001506 sattr->mattr.attr.mode = S_IRUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 *(gattr++) = &(sattr++)->mattr.attr;
1508 }
1509 *gattr = NULL;
1510
1511 if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
1512 goto out;
1513
1514 mod->sect_attrs = sect_attrs;
1515 return;
1516 out:
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001517 free_sect_attrs(sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
1519
1520static void remove_sect_attrs(struct module *mod)
1521{
1522 if (mod->sect_attrs) {
1523 sysfs_remove_group(&mod->mkobj.kobj,
1524 &mod->sect_attrs->grp);
1525 /* We are positive that no one is using any sect attrs
1526 * at this point. Deallocate immediately. */
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001527 free_sect_attrs(mod->sect_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 mod->sect_attrs = NULL;
1529 }
1530}
1531
Roland McGrath6d760132007-10-16 23:26:40 -07001532/*
1533 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
1534 */
1535
1536struct module_notes_attrs {
1537 struct kobject *dir;
1538 unsigned int notes;
1539 struct bin_attribute attrs[0];
1540};
1541
Chris Wright2c3c8be2010-05-12 18:28:57 -07001542static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
Roland McGrath6d760132007-10-16 23:26:40 -07001543 struct bin_attribute *bin_attr,
1544 char *buf, loff_t pos, size_t count)
1545{
1546 /*
1547 * The caller checked the pos and count against our size.
1548 */
1549 memcpy(buf, bin_attr->private + pos, count);
1550 return count;
1551}
1552
1553static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
1554 unsigned int i)
1555{
1556 if (notes_attrs->dir) {
1557 while (i-- > 0)
1558 sysfs_remove_bin_file(notes_attrs->dir,
1559 &notes_attrs->attrs[i]);
Alexey Dobriyane9432092008-09-23 23:51:11 +04001560 kobject_put(notes_attrs->dir);
Roland McGrath6d760132007-10-16 23:26:40 -07001561 }
1562 kfree(notes_attrs);
1563}
1564
Rusty Russell8f6d0372010-08-05 12:59:09 -06001565static void add_notes_attrs(struct module *mod, const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001566{
1567 unsigned int notes, loaded, i;
1568 struct module_notes_attrs *notes_attrs;
1569 struct bin_attribute *nattr;
1570
Ingo Molnarea6bff32009-08-28 10:44:56 +02001571 /* failed to create section attributes, so can't create notes */
1572 if (!mod->sect_attrs)
1573 return;
1574
Roland McGrath6d760132007-10-16 23:26:40 -07001575 /* Count notes sections and allocate structures. */
1576 notes = 0;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001577 for (i = 0; i < info->hdr->e_shnum; i++)
1578 if (!sect_empty(&info->sechdrs[i]) &&
1579 (info->sechdrs[i].sh_type == SHT_NOTE))
Roland McGrath6d760132007-10-16 23:26:40 -07001580 ++notes;
1581
1582 if (notes == 0)
1583 return;
1584
Kees Cookacafe7e2018-05-08 13:45:50 -07001585 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes),
Roland McGrath6d760132007-10-16 23:26:40 -07001586 GFP_KERNEL);
1587 if (notes_attrs == NULL)
1588 return;
1589
1590 notes_attrs->notes = notes;
1591 nattr = &notes_attrs->attrs[0];
Rusty Russell8f6d0372010-08-05 12:59:09 -06001592 for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
1593 if (sect_empty(&info->sechdrs[i]))
Roland McGrath6d760132007-10-16 23:26:40 -07001594 continue;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001595 if (info->sechdrs[i].sh_type == SHT_NOTE) {
Eric W. Biederman361795b2010-02-12 13:41:56 -08001596 sysfs_bin_attr_init(nattr);
Roland McGrath6d760132007-10-16 23:26:40 -07001597 nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
1598 nattr->attr.mode = S_IRUGO;
Rusty Russell8f6d0372010-08-05 12:59:09 -06001599 nattr->size = info->sechdrs[i].sh_size;
1600 nattr->private = (void *) info->sechdrs[i].sh_addr;
Roland McGrath6d760132007-10-16 23:26:40 -07001601 nattr->read = module_notes_read;
1602 ++nattr;
1603 }
1604 ++loaded;
1605 }
1606
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001607 notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
Roland McGrath6d760132007-10-16 23:26:40 -07001608 if (!notes_attrs->dir)
1609 goto out;
1610
1611 for (i = 0; i < notes; ++i)
1612 if (sysfs_create_bin_file(notes_attrs->dir,
1613 &notes_attrs->attrs[i]))
1614 goto out;
1615
1616 mod->notes_attrs = notes_attrs;
1617 return;
1618
1619 out:
1620 free_notes_attrs(notes_attrs, i);
1621}
1622
1623static void remove_notes_attrs(struct module *mod)
1624{
1625 if (mod->notes_attrs)
1626 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
1627}
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629#else
Ian S. Nelson04b1db92006-09-29 02:01:31 -07001630
Rusty Russell8f6d0372010-08-05 12:59:09 -06001631static inline void add_sect_attrs(struct module *mod,
1632 const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
1634}
1635
1636static inline void remove_sect_attrs(struct module *mod)
1637{
1638}
Roland McGrath6d760132007-10-16 23:26:40 -07001639
Rusty Russell8f6d0372010-08-05 12:59:09 -06001640static inline void add_notes_attrs(struct module *mod,
1641 const struct load_info *info)
Roland McGrath6d760132007-10-16 23:26:40 -07001642{
1643}
1644
1645static inline void remove_notes_attrs(struct module *mod)
1646{
1647}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001648#endif /* CONFIG_KALLSYMS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001650static void del_usage_links(struct module *mod)
1651{
1652#ifdef CONFIG_MODULE_UNLOAD
1653 struct module_use *use;
1654
Rusty Russell75676502010-06-05 11:17:36 -06001655 mutex_lock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001656 list_for_each_entry(use, &mod->target_list, target_list)
1657 sysfs_remove_link(use->target->holders_dir, mod->name);
Rusty Russell75676502010-06-05 11:17:36 -06001658 mutex_unlock(&module_mutex);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001659#endif
1660}
1661
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001662static int add_usage_links(struct module *mod)
1663{
1664 int ret = 0;
1665#ifdef CONFIG_MODULE_UNLOAD
1666 struct module_use *use;
1667
1668 mutex_lock(&module_mutex);
1669 list_for_each_entry(use, &mod->target_list, target_list) {
1670 ret = sysfs_create_link(use->target->holders_dir,
1671 &mod->mkobj.kobj, mod->name);
1672 if (ret)
1673 break;
1674 }
1675 mutex_unlock(&module_mutex);
1676 if (ret)
1677 del_usage_links(mod);
1678#endif
1679 return ret;
1680}
1681
Rusty Russell6407ebb22010-06-05 11:17:36 -06001682static int module_add_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001683{
1684 struct module_attribute *attr;
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001685 struct module_attribute *temp_attr;
Matt Domschc988d2b2005-06-23 22:05:15 -07001686 int error = 0;
1687 int i;
1688
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001689 mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
1690 (ARRAY_SIZE(modinfo_attrs) + 1)),
1691 GFP_KERNEL);
1692 if (!mod->modinfo_attrs)
1693 return -ENOMEM;
1694
1695 temp_attr = mod->modinfo_attrs;
Matt Domschc988d2b2005-06-23 22:05:15 -07001696 for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
Rusty Russellc75b5902016-04-12 05:03:09 +09301697 if (!attr->test || attr->test(mod)) {
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001698 memcpy(temp_attr, attr, sizeof(*temp_attr));
Eric W. Biederman361795b2010-02-12 13:41:56 -08001699 sysfs_attr_init(&temp_attr->attr);
Ionut Alexa6da0b562014-11-10 09:31:29 +10301700 error = sysfs_create_file(&mod->mkobj.kobj,
1701 &temp_attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001702 ++temp_attr;
1703 }
Matt Domschc988d2b2005-06-23 22:05:15 -07001704 }
1705 return error;
1706}
1707
Rusty Russell6407ebb22010-06-05 11:17:36 -06001708static void module_remove_modinfo_attrs(struct module *mod)
Matt Domschc988d2b2005-06-23 22:05:15 -07001709{
1710 struct module_attribute *attr;
1711 int i;
1712
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001713 for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
1714 /* pick a field to test for end of list */
1715 if (!attr->attr.name)
1716 break;
Ionut Alexa6da0b562014-11-10 09:31:29 +10301717 sysfs_remove_file(&mod->mkobj.kobj, &attr->attr);
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001718 if (attr->free)
1719 attr->free(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001720 }
Greg Kroah-Hartman03e88ae12006-02-16 13:50:23 -08001721 kfree(mod->modinfo_attrs);
Matt Domschc988d2b2005-06-23 22:05:15 -07001722}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Li Zhong942e4432013-09-03 16:33:57 +09301724static void mod_kobject_put(struct module *mod)
1725{
1726 DECLARE_COMPLETION_ONSTACK(c);
1727 mod->mkobj.kobj_completion = &c;
1728 kobject_put(&mod->mkobj.kobj);
1729 wait_for_completion(&c);
1730}
1731
Rusty Russell6407ebb22010-06-05 11:17:36 -06001732static int mod_sysfs_init(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
1734 int err;
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001735 struct kobject *kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -07001737 if (!module_sysfs_initialized) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001738 pr_err("%s: module sysfs not initialized\n", mod->name);
Ed Swierk1cc5f712006-09-25 16:25:36 -07001739 err = -EINVAL;
1740 goto out;
1741 }
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001742
1743 kobj = kset_find_obj(module_kset, mod->name);
1744 if (kobj) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08001745 pr_err("%s: module is already loaded\n", mod->name);
Greg Kroah-Hartman6494a932008-01-27 15:38:40 -08001746 kobject_put(kobj);
1747 err = -EINVAL;
1748 goto out;
1749 }
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 mod->mkobj.mod = mod;
Kay Sieverse17e0f52006-11-24 12:15:25 +01001752
Greg Kroah-Hartmanac3c8142007-12-17 23:05:35 -07001753 memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
1754 mod->mkobj.kobj.kset = module_kset;
1755 err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
1756 "%s", mod->name);
1757 if (err)
Li Zhong942e4432013-09-03 16:33:57 +09301758 mod_kobject_put(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001759
Kay Sievers97c146ef2007-11-29 23:46:11 +01001760 /* delay uevent until full sysfs population */
Kay Sievers270a6c42007-01-18 13:26:15 +01001761out:
1762 return err;
1763}
1764
Rusty Russell6407ebb22010-06-05 11:17:36 -06001765static int mod_sysfs_setup(struct module *mod,
Rusty Russell8f6d0372010-08-05 12:59:09 -06001766 const struct load_info *info,
Kay Sievers270a6c42007-01-18 13:26:15 +01001767 struct kernel_param *kparam,
1768 unsigned int num_params)
1769{
1770 int err;
1771
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001772 err = mod_sysfs_init(mod);
1773 if (err)
1774 goto out;
1775
Greg Kroah-Hartman4ff6abf2007-11-05 22:24:43 -08001776 mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
Akinobu Mita240936e2007-04-26 00:12:09 -07001777 if (!mod->holders_dir) {
1778 err = -ENOMEM;
Kay Sievers270a6c42007-01-18 13:26:15 +01001779 goto out_unreg;
Akinobu Mita240936e2007-04-26 00:12:09 -07001780 }
Kay Sievers270a6c42007-01-18 13:26:15 +01001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 err = module_param_sysfs_setup(mod, kparam, num_params);
1783 if (err)
Kay Sievers270a6c42007-01-18 13:26:15 +01001784 goto out_unreg_holders;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Matt Domschc988d2b2005-06-23 22:05:15 -07001786 err = module_add_modinfo_attrs(mod);
1787 if (err)
Kay Sieverse17e0f52006-11-24 12:15:25 +01001788 goto out_unreg_param;
Matt Domschc988d2b2005-06-23 22:05:15 -07001789
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001790 err = add_usage_links(mod);
1791 if (err)
1792 goto out_unreg_modinfo_attrs;
1793
Rusty Russell8f6d0372010-08-05 12:59:09 -06001794 add_sect_attrs(mod, info);
1795 add_notes_attrs(mod, info);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001796
Kay Sieverse17e0f52006-11-24 12:15:25 +01001797 kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return 0;
1799
Corentin Labbe1ba5c082017-06-06 14:17:39 +02001800out_unreg_modinfo_attrs:
1801 module_remove_modinfo_attrs(mod);
Kay Sieverse17e0f52006-11-24 12:15:25 +01001802out_unreg_param:
1803 module_param_sysfs_remove(mod);
Kay Sievers270a6c42007-01-18 13:26:15 +01001804out_unreg_holders:
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001805 kobject_put(mod->holders_dir);
Kay Sievers270a6c42007-01-18 13:26:15 +01001806out_unreg:
Li Zhong942e4432013-09-03 16:33:57 +09301807 mod_kobject_put(mod);
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001808out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return err;
1810}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001811
1812static void mod_sysfs_fini(struct module *mod)
1813{
Rusty Russell8f6d0372010-08-05 12:59:09 -06001814 remove_notes_attrs(mod);
1815 remove_sect_attrs(mod);
Li Zhong942e4432013-09-03 16:33:57 +09301816 mod_kobject_put(mod);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001817}
1818
Rusty Russellcf2fde72015-06-26 06:44:38 +09301819static void init_param_lock(struct module *mod)
1820{
1821 mutex_init(&mod->param_lock);
1822}
Rusty Russell8f6d0372010-08-05 12:59:09 -06001823#else /* !CONFIG_SYSFS */
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001824
Rusty Russell8f6d0372010-08-05 12:59:09 -06001825static int mod_sysfs_setup(struct module *mod,
1826 const struct load_info *info,
Rusty Russell6407ebb22010-06-05 11:17:36 -06001827 struct kernel_param *kparam,
1828 unsigned int num_params)
1829{
1830 return 0;
1831}
1832
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001833static void mod_sysfs_fini(struct module *mod)
1834{
1835}
1836
Rusty Russell36b03602010-08-05 12:59:09 -06001837static void module_remove_modinfo_attrs(struct module *mod)
1838{
1839}
1840
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001841static void del_usage_links(struct module *mod)
1842{
1843}
1844
Rusty Russellcf2fde72015-06-26 06:44:38 +09301845static void init_param_lock(struct module *mod)
1846{
1847}
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001848#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Rusty Russell36b03602010-08-05 12:59:09 -06001850static void mod_sysfs_teardown(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Rusty Russell80a3d1b2010-06-05 11:17:36 -06001852 del_usage_links(mod);
Matt Domschc988d2b2005-06-23 22:05:15 -07001853 module_remove_modinfo_attrs(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 module_param_sysfs_remove(mod);
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -08001855 kobject_put(mod->mkobj.drivers_dir);
1856 kobject_put(mod->holders_dir);
Denis V. Lunev34e4e2f2008-05-20 13:59:48 +04001857 mod_sysfs_fini(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Laura Abbott0f5bf6d2017-02-06 16:31:58 -08001860#ifdef CONFIG_STRICT_MODULE_RWX
matthieu castet84e1c6b2010-11-16 22:35:16 +01001861/*
1862 * LKM RO/NX protection: protect module's text/ro-data
1863 * from modification and any data from execution.
Rusty Russell85c898d2015-11-26 09:45:08 +10301864 *
1865 * General layout of module is:
Jessica Yu444d13f2016-07-27 12:06:21 +09301866 * [text] [read-only-data] [ro-after-init] [writable data]
1867 * text_size -----^ ^ ^ ^
1868 * ro_size ------------------------| | |
1869 * ro_after_init_size -----------------------------| |
1870 * size -----------------------------------------------------------|
Rusty Russell85c898d2015-11-26 09:45:08 +10301871 *
1872 * These values are always page-aligned (as is base)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001873 */
Rusty Russell85c898d2015-11-26 09:45:08 +10301874static void frob_text(const struct module_layout *layout,
1875 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001876{
Rusty Russell85c898d2015-11-26 09:45:08 +10301877 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1878 BUG_ON((unsigned long)layout->text_size & (PAGE_SIZE-1));
1879 set_memory((unsigned long)layout->base,
1880 layout->text_size >> PAGE_SHIFT);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001881}
1882
Rusty Russell85c898d2015-11-26 09:45:08 +10301883static void frob_rodata(const struct module_layout *layout,
1884 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001885{
Rusty Russell85c898d2015-11-26 09:45:08 +10301886 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1887 BUG_ON((unsigned long)layout->text_size & (PAGE_SIZE-1));
1888 BUG_ON((unsigned long)layout->ro_size & (PAGE_SIZE-1));
1889 set_memory((unsigned long)layout->base + layout->text_size,
1890 (layout->ro_size - layout->text_size) >> PAGE_SHIFT);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001891}
1892
Jessica Yu444d13f2016-07-27 12:06:21 +09301893static void frob_ro_after_init(const struct module_layout *layout,
1894 int (*set_memory)(unsigned long start, int num_pages))
1895{
1896 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
1897 BUG_ON((unsigned long)layout->ro_size & (PAGE_SIZE-1));
1898 BUG_ON((unsigned long)layout->ro_after_init_size & (PAGE_SIZE-1));
1899 set_memory((unsigned long)layout->base + layout->ro_size,
1900 (layout->ro_after_init_size - layout->ro_size) >> PAGE_SHIFT);
1901}
1902
Rusty Russell85c898d2015-11-26 09:45:08 +10301903static void frob_writable_data(const struct module_layout *layout,
1904 int (*set_memory)(unsigned long start, int num_pages))
matthieu castet84e1c6b2010-11-16 22:35:16 +01001905{
Rusty Russell85c898d2015-11-26 09:45:08 +10301906 BUG_ON((unsigned long)layout->base & (PAGE_SIZE-1));
Jessica Yu444d13f2016-07-27 12:06:21 +09301907 BUG_ON((unsigned long)layout->ro_after_init_size & (PAGE_SIZE-1));
Rusty Russell85c898d2015-11-26 09:45:08 +10301908 BUG_ON((unsigned long)layout->size & (PAGE_SIZE-1));
Jessica Yu444d13f2016-07-27 12:06:21 +09301909 set_memory((unsigned long)layout->base + layout->ro_after_init_size,
1910 (layout->size - layout->ro_after_init_size) >> PAGE_SHIFT);
Jan Glauber01526ed2011-05-19 16:55:26 -06001911}
1912
Rusty Russell85c898d2015-11-26 09:45:08 +10301913/* livepatching wants to disable read-only so it can frob module. */
1914void module_disable_ro(const struct module *mod)
Jan Glauber01526ed2011-05-19 16:55:26 -06001915{
AKASHI Takahiro39290b32016-11-14 15:15:05 +09001916 if (!rodata_enabled)
1917 return;
1918
Rusty Russell85c898d2015-11-26 09:45:08 +10301919 frob_text(&mod->core_layout, set_memory_rw);
1920 frob_rodata(&mod->core_layout, set_memory_rw);
Jessica Yu444d13f2016-07-27 12:06:21 +09301921 frob_ro_after_init(&mod->core_layout, set_memory_rw);
Rusty Russell85c898d2015-11-26 09:45:08 +10301922 frob_text(&mod->init_layout, set_memory_rw);
1923 frob_rodata(&mod->init_layout, set_memory_rw);
Josh Poimboeuf20ef10c2015-11-26 09:42:08 +10301924}
1925
Jessica Yu444d13f2016-07-27 12:06:21 +09301926void module_enable_ro(const struct module *mod, bool after_init)
Josh Poimboeuf20ef10c2015-11-26 09:42:08 +10301927{
AKASHI Takahiro39290b32016-11-14 15:15:05 +09001928 if (!rodata_enabled)
1929 return;
1930
Rusty Russell85c898d2015-11-26 09:45:08 +10301931 frob_text(&mod->core_layout, set_memory_ro);
1932 frob_rodata(&mod->core_layout, set_memory_ro);
1933 frob_text(&mod->init_layout, set_memory_ro);
1934 frob_rodata(&mod->init_layout, set_memory_ro);
Jessica Yu444d13f2016-07-27 12:06:21 +09301935
1936 if (after_init)
1937 frob_ro_after_init(&mod->core_layout, set_memory_ro);
Jan Glauber01526ed2011-05-19 16:55:26 -06001938}
1939
Rusty Russell85c898d2015-11-26 09:45:08 +10301940static void module_enable_nx(const struct module *mod)
Jan Glauber01526ed2011-05-19 16:55:26 -06001941{
Rusty Russell85c898d2015-11-26 09:45:08 +10301942 frob_rodata(&mod->core_layout, set_memory_nx);
Jessica Yu444d13f2016-07-27 12:06:21 +09301943 frob_ro_after_init(&mod->core_layout, set_memory_nx);
Rusty Russell85c898d2015-11-26 09:45:08 +10301944 frob_writable_data(&mod->core_layout, set_memory_nx);
1945 frob_rodata(&mod->init_layout, set_memory_nx);
1946 frob_writable_data(&mod->init_layout, set_memory_nx);
1947}
1948
1949static void module_disable_nx(const struct module *mod)
1950{
1951 frob_rodata(&mod->core_layout, set_memory_x);
Jessica Yu444d13f2016-07-27 12:06:21 +09301952 frob_ro_after_init(&mod->core_layout, set_memory_x);
Rusty Russell85c898d2015-11-26 09:45:08 +10301953 frob_writable_data(&mod->core_layout, set_memory_x);
1954 frob_rodata(&mod->init_layout, set_memory_x);
1955 frob_writable_data(&mod->init_layout, set_memory_x);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001956}
1957
1958/* Iterate through all modules and set each module's text as RW */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001959void set_all_modules_text_rw(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001960{
1961 struct module *mod;
1962
AKASHI Takahiro39290b32016-11-14 15:15:05 +09001963 if (!rodata_enabled)
1964 return;
1965
matthieu castet84e1c6b2010-11-16 22:35:16 +01001966 mutex_lock(&module_mutex);
1967 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301968 if (mod->state == MODULE_STATE_UNFORMED)
1969 continue;
Rusty Russell85c898d2015-11-26 09:45:08 +10301970
1971 frob_text(&mod->core_layout, set_memory_rw);
1972 frob_text(&mod->init_layout, set_memory_rw);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001973 }
1974 mutex_unlock(&module_mutex);
1975}
1976
1977/* Iterate through all modules and set each module's text as RO */
Daniel J Blueman5d05c702011-03-08 22:01:47 +08001978void set_all_modules_text_ro(void)
matthieu castet84e1c6b2010-11-16 22:35:16 +01001979{
1980 struct module *mod;
1981
AKASHI Takahiro39290b32016-11-14 15:15:05 +09001982 if (!rodata_enabled)
1983 return;
1984
matthieu castet84e1c6b2010-11-16 22:35:16 +01001985 mutex_lock(&module_mutex);
1986 list_for_each_entry_rcu(mod, &modules, list) {
Aaron Tomlin905dd707f2016-10-27 10:36:06 +01001987 /*
1988 * Ignore going modules since it's possible that ro
1989 * protection has already been disabled, otherwise we'll
1990 * run into protection faults at module deallocation.
1991 */
1992 if (mod->state == MODULE_STATE_UNFORMED ||
1993 mod->state == MODULE_STATE_GOING)
Rusty Russell0d21b0e2013-01-12 11:38:44 +10301994 continue;
Rusty Russell85c898d2015-11-26 09:45:08 +10301995
1996 frob_text(&mod->core_layout, set_memory_ro);
1997 frob_text(&mod->init_layout, set_memory_ro);
matthieu castet84e1c6b2010-11-16 22:35:16 +01001998 }
1999 mutex_unlock(&module_mutex);
2000}
Rusty Russell85c898d2015-11-26 09:45:08 +10302001
2002static void disable_ro_nx(const struct module_layout *layout)
2003{
AKASHI Takahiro39290b32016-11-14 15:15:05 +09002004 if (rodata_enabled) {
2005 frob_text(layout, set_memory_rw);
2006 frob_rodata(layout, set_memory_rw);
2007 frob_ro_after_init(layout, set_memory_rw);
2008 }
Rusty Russell85c898d2015-11-26 09:45:08 +10302009 frob_rodata(layout, set_memory_x);
Jessica Yu444d13f2016-07-27 12:06:21 +09302010 frob_ro_after_init(layout, set_memory_x);
Rusty Russell85c898d2015-11-26 09:45:08 +10302011 frob_writable_data(layout, set_memory_x);
2012}
2013
matthieu castet84e1c6b2010-11-16 22:35:16 +01002014#else
Rusty Russell85c898d2015-11-26 09:45:08 +10302015static void disable_ro_nx(const struct module_layout *layout) { }
2016static void module_enable_nx(const struct module *mod) { }
2017static void module_disable_nx(const struct module *mod) { }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002018#endif
2019
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002020#ifdef CONFIG_LIVEPATCH
2021/*
2022 * Persist Elf information about a module. Copy the Elf header,
2023 * section header table, section string table, and symtab section
2024 * index from info to mod->klp_info.
2025 */
2026static int copy_module_elf(struct module *mod, struct load_info *info)
2027{
2028 unsigned int size, symndx;
2029 int ret;
2030
2031 size = sizeof(*mod->klp_info);
2032 mod->klp_info = kmalloc(size, GFP_KERNEL);
2033 if (mod->klp_info == NULL)
2034 return -ENOMEM;
2035
2036 /* Elf header */
2037 size = sizeof(mod->klp_info->hdr);
2038 memcpy(&mod->klp_info->hdr, info->hdr, size);
2039
2040 /* Elf section header table */
2041 size = sizeof(*info->sechdrs) * info->hdr->e_shnum;
zhong jiang9be936f2018-08-01 00:56:17 +08002042 mod->klp_info->sechdrs = kmemdup(info->sechdrs, size, GFP_KERNEL);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002043 if (mod->klp_info->sechdrs == NULL) {
2044 ret = -ENOMEM;
2045 goto free_info;
2046 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002047
2048 /* Elf section name string table */
2049 size = info->sechdrs[info->hdr->e_shstrndx].sh_size;
zhong jiang9be936f2018-08-01 00:56:17 +08002050 mod->klp_info->secstrings = kmemdup(info->secstrings, size, GFP_KERNEL);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002051 if (mod->klp_info->secstrings == NULL) {
2052 ret = -ENOMEM;
2053 goto free_sechdrs;
2054 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002055
2056 /* Elf symbol section index */
2057 symndx = info->index.sym;
2058 mod->klp_info->symndx = symndx;
2059
2060 /*
2061 * For livepatch modules, core_kallsyms.symtab is a complete
2062 * copy of the original symbol table. Adjust sh_addr to point
2063 * to core_kallsyms.symtab since the copy of the symtab in module
2064 * init memory is freed at the end of do_init_module().
2065 */
2066 mod->klp_info->sechdrs[symndx].sh_addr = \
2067 (unsigned long) mod->core_kallsyms.symtab;
2068
2069 return 0;
2070
2071free_sechdrs:
2072 kfree(mod->klp_info->sechdrs);
2073free_info:
2074 kfree(mod->klp_info);
2075 return ret;
2076}
2077
2078static void free_module_elf(struct module *mod)
2079{
2080 kfree(mod->klp_info->sechdrs);
2081 kfree(mod->klp_info->secstrings);
2082 kfree(mod->klp_info);
2083}
2084#else /* !CONFIG_LIVEPATCH */
2085static int copy_module_elf(struct module *mod, struct load_info *info)
2086{
2087 return 0;
2088}
2089
2090static void free_module_elf(struct module *mod)
2091{
2092}
2093#endif /* CONFIG_LIVEPATCH */
2094
Rusty Russellbe1f2212015-01-20 09:07:05 +10302095void __weak module_memfree(void *module_region)
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002096{
2097 vfree(module_region);
2098}
2099
2100void __weak module_arch_cleanup(struct module *mod)
2101{
2102}
2103
Rusty Russelld453cde2015-01-20 09:07:04 +10302104void __weak module_arch_freeing_init(struct module *mod)
2105{
2106}
2107
Rusty Russell75676502010-06-05 11:17:36 -06002108/* Free a module, remove from lists, etc. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109static void free_module(struct module *mod)
2110{
Li Zefan7ead8b82009-08-17 16:56:28 +08002111 trace_module_free(mod);
2112
Rusty Russell36b03602010-08-05 12:59:09 -06002113 mod_sysfs_teardown(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Rusty Russell944a1fa2013-04-17 13:20:03 +09302115 /* We leave it in list to prevent duplicate loads, but make sure
2116 * that noone uses it while it's being deconstructed. */
Prarit Bhargavad3051b42014-10-14 02:51:39 +10302117 mutex_lock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09302118 mod->state = MODULE_STATE_UNFORMED;
Prarit Bhargavad3051b42014-10-14 02:51:39 +10302119 mutex_unlock(&module_mutex);
Rusty Russell944a1fa2013-04-17 13:20:03 +09302120
Jason Baronb82bab4b2010-07-27 13:18:01 -07002121 /* Remove dynamic debug info */
2122 ddebug_remove_module(mod->name);
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /* Arch-specific cleanup. */
2125 module_arch_cleanup(mod);
2126
2127 /* Module unload stuff */
2128 module_unload_free(mod);
2129
Rusty Russelle180a6b2009-03-31 13:05:29 -06002130 /* Free any allocated parameters. */
2131 destroy_params(mod->kp, mod->num_kp);
2132
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002133 if (is_livepatch_module(mod))
2134 free_module_elf(mod);
2135
Rusty Russell944a1fa2013-04-17 13:20:03 +09302136 /* Now we can delete it from the lists */
2137 mutex_lock(&module_mutex);
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10302138 /* Unlink carefully: kallsyms could be walking list. */
2139 list_del_rcu(&mod->list);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09302140 mod_tree_remove(mod);
Masami Hiramatsu0286b5e2014-11-10 09:28:29 +10302141 /* Remove this module from bug list, this uses list_del_rcu */
Masami Hiramatsu461e34a2014-11-10 09:27:29 +10302142 module_bug_cleanup(mod);
Peter Zijlstra0be964b2015-05-27 11:09:35 +09302143 /* Wait for RCU-sched synchronizing before releasing mod->list and buglist. */
2144 synchronize_sched();
Rusty Russell944a1fa2013-04-17 13:20:03 +09302145 mutex_unlock(&module_mutex);
2146
Rusty Russell85c898d2015-11-26 09:45:08 +10302147 /* This may be empty, but that's OK */
2148 disable_ro_nx(&mod->init_layout);
Rusty Russelld453cde2015-01-20 09:07:04 +10302149 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10302150 module_memfree(mod->init_layout.base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 kfree(mod->args);
Tejun Heo259354d2010-03-10 18:56:10 +09002152 percpu_modfree(mod);
Rusty Russell9f85a4b2010-08-05 12:59:04 -06002153
Peter Zijlstra35a93932015-02-26 16:23:11 +01002154 /* Free lock-classes; relies on the preceding sync_rcu(). */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302155 lockdep_free_key_range(mod->core_layout.base, mod->core_layout.size);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 /* Finally, free the core (containing the module structure) */
Rusty Russell85c898d2015-11-26 09:45:08 +10302158 disable_ro_nx(&mod->core_layout);
Rusty Russell7523e4d2015-11-26 09:44:08 +10302159 module_memfree(mod->core_layout.base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
2162void *__symbol_get(const char *symbol)
2163{
2164 struct module *owner;
Tim Abbott414fd312008-12-05 19:03:56 -05002165 const struct kernel_symbol *sym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Rusty Russell24da1cb2007-07-15 23:41:46 -07002167 preempt_disable();
Tim Abbott414fd312008-12-05 19:03:56 -05002168 sym = find_symbol(symbol, &owner, NULL, true, true);
2169 if (sym && strong_try_module_get(owner))
2170 sym = NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07002171 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Tim Abbott414fd312008-12-05 19:03:56 -05002173 return sym ? (void *)sym->value : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175EXPORT_SYMBOL_GPL(__symbol_get);
2176
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002177/*
2178 * Ensure that an exported symbol [global namespace] does not already exist
Robert P. J. Day02a3e592007-05-09 07:26:28 +02002179 * in the kernel or in some other module's exported symbol table.
Rusty Russellbe593f42010-06-05 11:17:37 -06002180 *
2181 * You must hold the module_mutex.
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002182 */
2183static int verify_export_symbols(struct module *mod)
2184{
Rusty Russellb2111042008-05-01 21:15:00 -05002185 unsigned int i;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002186 struct module *owner;
Rusty Russellb2111042008-05-01 21:15:00 -05002187 const struct kernel_symbol *s;
2188 struct {
2189 const struct kernel_symbol *sym;
2190 unsigned int num;
2191 } arr[] = {
2192 { mod->syms, mod->num_syms },
2193 { mod->gpl_syms, mod->num_gpl_syms },
2194 { mod->gpl_future_syms, mod->num_gpl_future_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05002195#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russellb2111042008-05-01 21:15:00 -05002196 { mod->unused_syms, mod->num_unused_syms },
2197 { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
Denys Vlasenkof7f5b672008-07-22 19:24:26 -05002198#endif
Rusty Russellb2111042008-05-01 21:15:00 -05002199 };
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002200
Rusty Russellb2111042008-05-01 21:15:00 -05002201 for (i = 0; i < ARRAY_SIZE(arr); i++) {
2202 for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
Rusty Russellbe593f42010-06-05 11:17:37 -06002203 if (find_symbol(s->name, &owner, NULL, true, false)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002204 pr_err("%s: exports duplicate symbol %s"
Rusty Russellb2111042008-05-01 21:15:00 -05002205 " (owned by %s)\n",
2206 mod->name, s->name, module_name(owner));
2207 return -ENOEXEC;
2208 }
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002209 }
Rusty Russellb2111042008-05-01 21:15:00 -05002210 }
2211 return 0;
Ashutosh Naikeea8b542006-01-08 01:04:25 -08002212}
2213
Matti Linnanvuori9a4b9702007-11-08 08:37:38 -08002214/* Change all symbols so that st_value encodes the pointer directly. */
Rusty Russell49668682010-08-05 12:59:10 -06002215static int simplify_symbols(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
Rusty Russell49668682010-08-05 12:59:10 -06002217 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
2218 Elf_Sym *sym = (void *)symsec->sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 unsigned long secbase;
Rusty Russell49668682010-08-05 12:59:10 -06002220 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 int ret = 0;
Tim Abbott414fd312008-12-05 19:03:56 -05002222 const struct kernel_symbol *ksym;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Rusty Russell49668682010-08-05 12:59:10 -06002224 for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
2225 const char *name = info->strtab + sym[i].st_name;
2226
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 switch (sym[i].st_shndx) {
2228 case SHN_COMMON:
Joe Mario80375982014-02-08 09:01:09 +01002229 /* Ignore common symbols */
2230 if (!strncmp(name, "__gnu_lto", 9))
2231 break;
2232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 /* We compiled with -fno-common. These are not
2234 supposed to happen. */
Jim Cromie5e124162011-12-06 12:11:31 -07002235 pr_debug("Common symbol: %s\n", name);
Ionut Alexa6da0b562014-11-10 09:31:29 +10302236 pr_warn("%s: please compile with -fno-common\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 mod->name);
2238 ret = -ENOEXEC;
2239 break;
2240
2241 case SHN_ABS:
2242 /* Don't need to do anything */
Jim Cromie5e124162011-12-06 12:11:31 -07002243 pr_debug("Absolute symbol: 0x%08lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 (long)sym[i].st_value);
2245 break;
2246
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002247 case SHN_LIVEPATCH:
2248 /* Livepatch symbols are resolved by livepatch */
2249 break;
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 case SHN_UNDEF:
Rusty Russell49668682010-08-05 12:59:10 -06002252 ksym = resolve_symbol_wait(mod, info, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 /* Ok if resolved. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06002254 if (ksym && !IS_ERR(ksym)) {
Tim Abbott414fd312008-12-05 19:03:56 -05002255 sym[i].st_value = ksym->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 break;
Tim Abbott414fd312008-12-05 19:03:56 -05002257 }
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 /* Ok if weak. */
Rusty Russell9bea7f22010-06-05 11:17:37 -06002260 if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 break;
2262
Rusty Russell9bea7f22010-06-05 11:17:37 -06002263 ret = PTR_ERR(ksym) ?: -ENOENT;
Jason A. Donenfeld62267e02018-06-22 17:38:50 +02002264 pr_warn("%s: Unknown symbol %s (err %d)\n",
2265 mod->name, name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 break;
2267
2268 default:
2269 /* Divert to percpu allocation if a percpu var. */
Rusty Russell49668682010-08-05 12:59:10 -06002270 if (sym[i].st_shndx == info->index.pcpu)
Tejun Heo259354d2010-03-10 18:56:10 +09002271 secbase = (unsigned long)mod_percpu(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 else
Rusty Russell49668682010-08-05 12:59:10 -06002273 secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 sym[i].st_value += secbase;
2275 break;
2276 }
2277 }
2278
2279 return ret;
2280}
2281
Rusty Russell49668682010-08-05 12:59:10 -06002282static int apply_relocations(struct module *mod, const struct load_info *info)
Rusty Russell22e268e2010-08-05 12:59:05 -06002283{
2284 unsigned int i;
2285 int err = 0;
2286
2287 /* Now do relocations. */
Rusty Russell49668682010-08-05 12:59:10 -06002288 for (i = 1; i < info->hdr->e_shnum; i++) {
2289 unsigned int infosec = info->sechdrs[i].sh_info;
Rusty Russell22e268e2010-08-05 12:59:05 -06002290
2291 /* Not a valid relocation section? */
Rusty Russell49668682010-08-05 12:59:10 -06002292 if (infosec >= info->hdr->e_shnum)
Rusty Russell22e268e2010-08-05 12:59:05 -06002293 continue;
2294
2295 /* Don't bother with non-allocated sections */
Rusty Russell49668682010-08-05 12:59:10 -06002296 if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
Rusty Russell22e268e2010-08-05 12:59:05 -06002297 continue;
2298
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002299 /* Livepatch relocation sections are applied by livepatch */
2300 if (info->sechdrs[i].sh_flags & SHF_RELA_LIVEPATCH)
2301 continue;
2302
Rusty Russell49668682010-08-05 12:59:10 -06002303 if (info->sechdrs[i].sh_type == SHT_REL)
2304 err = apply_relocate(info->sechdrs, info->strtab,
2305 info->index.sym, i, mod);
2306 else if (info->sechdrs[i].sh_type == SHT_RELA)
2307 err = apply_relocate_add(info->sechdrs, info->strtab,
2308 info->index.sym, i, mod);
Rusty Russell22e268e2010-08-05 12:59:05 -06002309 if (err < 0)
2310 break;
2311 }
2312 return err;
2313}
2314
Helge Deller088af9a2008-12-31 12:31:18 +01002315/* Additional bytes needed by arch in front of individual sections */
2316unsigned int __weak arch_mod_section_prepend(struct module *mod,
2317 unsigned int section)
2318{
2319 /* default implementation just returns zero */
2320 return 0;
2321}
2322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323/* Update size with this section: return offset. */
Helge Deller088af9a2008-12-31 12:31:18 +01002324static long get_offset(struct module *mod, unsigned int *size,
2325 Elf_Shdr *sechdr, unsigned int section)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326{
2327 long ret;
2328
Helge Deller088af9a2008-12-31 12:31:18 +01002329 *size += arch_mod_section_prepend(mod, section);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
2331 *size = ret + sechdr->sh_size;
2332 return ret;
2333}
2334
2335/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
2336 might -- code, read-only data, read-write data, small data. Tally
2337 sizes, and place the offsets into sh_entsize fields: high bit means it
2338 belongs in init. */
Rusty Russell49668682010-08-05 12:59:10 -06002339static void layout_sections(struct module *mod, struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340{
2341 static unsigned long const masks[][2] = {
2342 /* NOTE: all executable code must be the first section
2343 * in this array; otherwise modify the text_size
2344 * finder in the two loops below */
2345 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
2346 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
Jessica Yu444d13f2016-07-27 12:06:21 +09302347 { SHF_RO_AFTER_INIT | SHF_ALLOC, ARCH_SHF_SMALL },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
2349 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
2350 };
2351 unsigned int m, i;
2352
Rusty Russell49668682010-08-05 12:59:10 -06002353 for (i = 0; i < info->hdr->e_shnum; i++)
2354 info->sechdrs[i].sh_entsize = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Jim Cromie5e124162011-12-06 12:11:31 -07002356 pr_debug("Core section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002358 for (i = 0; i < info->hdr->e_shnum; ++i) {
2359 Elf_Shdr *s = &info->sechdrs[i];
2360 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2363 || (s->sh_flags & masks[m][1])
2364 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002365 || strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 continue;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302367 s->sh_entsize = get_offset(mod, &mod->core_layout.size, s, i);
Jim Cromie5e124162011-12-06 12:11:31 -07002368 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002370 switch (m) {
2371 case 0: /* executable */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302372 mod->core_layout.size = debug_align(mod->core_layout.size);
2373 mod->core_layout.text_size = mod->core_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002374 break;
2375 case 1: /* RO: text and ro-data */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302376 mod->core_layout.size = debug_align(mod->core_layout.size);
2377 mod->core_layout.ro_size = mod->core_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002378 break;
Jessica Yu444d13f2016-07-27 12:06:21 +09302379 case 2: /* RO after init */
2380 mod->core_layout.size = debug_align(mod->core_layout.size);
2381 mod->core_layout.ro_after_init_size = mod->core_layout.size;
2382 break;
2383 case 4: /* whole core */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302384 mod->core_layout.size = debug_align(mod->core_layout.size);
matthieu castet84e1c6b2010-11-16 22:35:16 +01002385 break;
2386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 }
2388
Jim Cromie5e124162011-12-06 12:11:31 -07002389 pr_debug("Init section allocation order:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 for (m = 0; m < ARRAY_SIZE(masks); ++m) {
Rusty Russell49668682010-08-05 12:59:10 -06002391 for (i = 0; i < info->hdr->e_shnum; ++i) {
2392 Elf_Shdr *s = &info->sechdrs[i];
2393 const char *sname = info->secstrings + s->sh_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 if ((s->sh_flags & masks[m][0]) != masks[m][0]
2396 || (s->sh_flags & masks[m][1])
2397 || s->sh_entsize != ~0UL
Rusty Russell49668682010-08-05 12:59:10 -06002398 || !strstarts(sname, ".init"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 continue;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302400 s->sh_entsize = (get_offset(mod, &mod->init_layout.size, s, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 | INIT_OFFSET_MASK);
Jim Cromie5e124162011-12-06 12:11:31 -07002402 pr_debug("\t%s\n", sname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 }
matthieu castet84e1c6b2010-11-16 22:35:16 +01002404 switch (m) {
2405 case 0: /* executable */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302406 mod->init_layout.size = debug_align(mod->init_layout.size);
2407 mod->init_layout.text_size = mod->init_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002408 break;
2409 case 1: /* RO: text and ro-data */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302410 mod->init_layout.size = debug_align(mod->init_layout.size);
2411 mod->init_layout.ro_size = mod->init_layout.size;
matthieu castet84e1c6b2010-11-16 22:35:16 +01002412 break;
Jessica Yu444d13f2016-07-27 12:06:21 +09302413 case 2:
2414 /*
2415 * RO after init doesn't apply to init_layout (only
2416 * core_layout), so it just takes the value of ro_size.
2417 */
2418 mod->init_layout.ro_after_init_size = mod->init_layout.ro_size;
2419 break;
2420 case 4: /* whole init */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302421 mod->init_layout.size = debug_align(mod->init_layout.size);
matthieu castet84e1c6b2010-11-16 22:35:16 +01002422 break;
2423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 }
2425}
2426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427static void set_license(struct module *mod, const char *license)
2428{
2429 if (!license)
2430 license = "unspecified";
2431
Florin Malitafa3ba2e82006-10-11 01:21:48 -07002432 if (!license_is_gpl_compatible(license)) {
Andi Kleen25ddbb12008-10-15 22:01:41 -07002433 if (!test_taint(TAINT_PROPRIETARY_MODULE))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002434 pr_warn("%s: module license '%s' taints kernel.\n",
2435 mod->name, license);
Rusty Russell373d4d02013-01-21 17:17:39 +10302436 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
2437 LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 }
2439}
2440
2441/* Parse tag=value strings from .modinfo section */
2442static char *next_string(char *string, unsigned long *secsize)
2443{
2444 /* Skip non-zero chars */
2445 while (string[0]) {
2446 string++;
2447 if ((*secsize)-- <= 1)
2448 return NULL;
2449 }
2450
2451 /* Skip any zero padding. */
2452 while (!string[0]) {
2453 string++;
2454 if ((*secsize)-- <= 1)
2455 return NULL;
2456 }
2457 return string;
2458}
2459
Rusty Russell49668682010-08-05 12:59:10 -06002460static char *get_modinfo(struct load_info *info, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
2462 char *p;
2463 unsigned int taglen = strlen(tag);
Rusty Russell49668682010-08-05 12:59:10 -06002464 Elf_Shdr *infosec = &info->sechdrs[info->index.info];
2465 unsigned long size = infosec->sh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002467 /*
2468 * get_modinfo() calls made before rewrite_section_headers()
2469 * must use sh_offset, as sh_addr isn't set!
2470 */
2471 for (p = (char *)info->hdr + infosec->sh_offset; p; p = next_string(p, &size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
2473 return p + taglen + 1;
2474 }
2475 return NULL;
2476}
2477
Rusty Russell49668682010-08-05 12:59:10 -06002478static void setup_modinfo(struct module *mod, struct load_info *info)
Matt Domschc988d2b2005-06-23 22:05:15 -07002479{
2480 struct module_attribute *attr;
2481 int i;
2482
2483 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2484 if (attr->setup)
Rusty Russell49668682010-08-05 12:59:10 -06002485 attr->setup(mod, get_modinfo(info, attr->attr.name));
Matt Domschc988d2b2005-06-23 22:05:15 -07002486 }
2487}
Matt Domschc988d2b2005-06-23 22:05:15 -07002488
Rusty Russella263f7762009-09-25 00:32:58 -06002489static void free_modinfo(struct module *mod)
2490{
2491 struct module_attribute *attr;
2492 int i;
2493
2494 for (i = 0; (attr = modinfo_attrs[i]); i++) {
2495 if (attr->free)
2496 attr->free(mod);
2497 }
2498}
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500#ifdef CONFIG_KALLSYMS
WANG Cong15bba372008-07-24 15:41:48 +01002501
2502/* lookup symbol in given range of kernel_symbols */
2503static const struct kernel_symbol *lookup_symbol(const char *name,
2504 const struct kernel_symbol *start,
2505 const struct kernel_symbol *stop)
2506{
Alessio Igor Bogani9d634872011-05-18 22:35:59 +02002507 return bsearch(name, start, stop - start,
2508 sizeof(struct kernel_symbol), cmp_name);
WANG Cong15bba372008-07-24 15:41:48 +01002509}
2510
Tim Abbottca4787b2009-01-05 08:40:10 -06002511static int is_exported(const char *name, unsigned long value,
2512 const struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
Tim Abbottca4787b2009-01-05 08:40:10 -06002514 const struct kernel_symbol *ks;
2515 if (!mod)
2516 ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
Sam Ravnborg3fd68052006-02-08 21:16:45 +01002517 else
Tim Abbottca4787b2009-01-05 08:40:10 -06002518 ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
2519 return ks != NULL && ks->value == value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
2521
2522/* As per nm */
Rusty Russelleded41c2010-08-05 12:59:07 -06002523static char elf_type(const Elf_Sym *sym, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Rusty Russelleded41c2010-08-05 12:59:07 -06002525 const Elf_Shdr *sechdrs = info->sechdrs;
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
2528 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
2529 return 'v';
2530 else
2531 return 'w';
2532 }
2533 if (sym->st_shndx == SHN_UNDEF)
2534 return 'U';
Miroslav Benese0224412015-11-26 13:18:06 +10302535 if (sym->st_shndx == SHN_ABS || sym->st_shndx == info->index.pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return 'a';
2537 if (sym->st_shndx >= SHN_LORESERVE)
2538 return '?';
2539 if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
2540 return 't';
2541 if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
2542 && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
2543 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
2544 return 'r';
2545 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2546 return 'g';
2547 else
2548 return 'd';
2549 }
2550 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
2551 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
2552 return 's';
2553 else
2554 return 'b';
2555 }
Rusty Russelleded41c2010-08-05 12:59:07 -06002556 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
2557 ".debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 return 'n';
Rusty Russelleded41c2010-08-05 12:59:07 -06002559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 return '?';
2561}
2562
Jan Beulich4a496222009-07-06 14:50:42 +01002563static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
Miroslav Benese0224412015-11-26 13:18:06 +10302564 unsigned int shnum, unsigned int pcpundx)
Jan Beulich4a496222009-07-06 14:50:42 +01002565{
2566 const Elf_Shdr *sec;
2567
2568 if (src->st_shndx == SHN_UNDEF
2569 || src->st_shndx >= shnum
2570 || !src->st_name)
2571 return false;
2572
Miroslav Benese0224412015-11-26 13:18:06 +10302573#ifdef CONFIG_KALLSYMS_ALL
2574 if (src->st_shndx == pcpundx)
2575 return true;
2576#endif
2577
Jan Beulich4a496222009-07-06 14:50:42 +01002578 sec = sechdrs + src->st_shndx;
2579 if (!(sec->sh_flags & SHF_ALLOC)
2580#ifndef CONFIG_KALLSYMS_ALL
2581 || !(sec->sh_flags & SHF_EXECINSTR)
2582#endif
2583 || (sec->sh_entsize & INIT_OFFSET_MASK))
2584 return false;
2585
2586 return true;
2587}
2588
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302589/*
2590 * We only allocate and copy the strings needed by the parts of symtab
2591 * we keep. This is simple, but has the effect of making multiple
2592 * copies of duplicates. We could be more sophisticated, see
2593 * linux-kernel thread starting with
2594 * <73defb5e4bca04a6431392cc341112b1@localhost>.
2595 */
Rusty Russell49668682010-08-05 12:59:10 -06002596static void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002597{
Rusty Russell49668682010-08-05 12:59:10 -06002598 Elf_Shdr *symsect = info->sechdrs + info->index.sym;
2599 Elf_Shdr *strsect = info->sechdrs + info->index.str;
Jan Beulich4a496222009-07-06 14:50:42 +01002600 const Elf_Sym *src;
Satoru Takeuchi54523ec2012-12-05 12:29:04 +10302601 unsigned int i, nsrc, ndst, strtab_size = 0;
Jan Beulich4a496222009-07-06 14:50:42 +01002602
2603 /* Put symbol section at end of init part of module. */
2604 symsect->sh_flags |= SHF_ALLOC;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302605 symsect->sh_entsize = get_offset(mod, &mod->init_layout.size, symsect,
Rusty Russell49668682010-08-05 12:59:10 -06002606 info->index.sym) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002607 pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
Jan Beulich4a496222009-07-06 14:50:42 +01002608
Rusty Russell49668682010-08-05 12:59:10 -06002609 src = (void *)info->hdr + symsect->sh_offset;
Jan Beulich4a496222009-07-06 14:50:42 +01002610 nsrc = symsect->sh_size / sizeof(*src);
Kevin Cernekee70b1e9162011-11-12 19:08:55 -08002611
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302612 /* Compute total space required for the core symbols' strtab. */
Rusty Russell59ef28b2012-10-25 10:49:25 +10302613 for (ndst = i = 0; i < nsrc; i++) {
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002614 if (i == 0 || is_livepatch_module(mod) ||
Miroslav Benese0224412015-11-26 13:18:06 +10302615 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum,
2616 info->index.pcpu)) {
Rusty Russell59ef28b2012-10-25 10:49:25 +10302617 strtab_size += strlen(&info->strtab[src[i].st_name])+1;
Kevin Cernekee48fd1182012-01-13 09:32:14 +10302618 ndst++;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002619 }
Rusty Russell59ef28b2012-10-25 10:49:25 +10302620 }
Jan Beulich4a496222009-07-06 14:50:42 +01002621
2622 /* Append room for core symbols at end of core part. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10302623 info->symoffs = ALIGN(mod->core_layout.size, symsect->sh_addralign ?: 1);
2624 info->stroffs = mod->core_layout.size = info->symoffs + ndst * sizeof(Elf_Sym);
2625 mod->core_layout.size += strtab_size;
2626 mod->core_layout.size = debug_align(mod->core_layout.size);
Jan Beulich4a496222009-07-06 14:50:42 +01002627
Jan Beulich554bdfe2009-07-06 14:51:44 +01002628 /* Put string table section at end of init part of module. */
2629 strsect->sh_flags |= SHF_ALLOC;
Rusty Russell7523e4d2015-11-26 09:44:08 +10302630 strsect->sh_entsize = get_offset(mod, &mod->init_layout.size, strsect,
Rusty Russell49668682010-08-05 12:59:10 -06002631 info->index.str) | INIT_OFFSET_MASK;
Jim Cromie5e124162011-12-06 12:11:31 -07002632 pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
Rusty Russell82440622016-02-03 16:55:26 +10302633
2634 /* We'll tack temporary mod_kallsyms on the end. */
2635 mod->init_layout.size = ALIGN(mod->init_layout.size,
2636 __alignof__(struct mod_kallsyms));
2637 info->mod_kallsyms_init_off = mod->init_layout.size;
2638 mod->init_layout.size += sizeof(struct mod_kallsyms);
2639 mod->init_layout.size = debug_align(mod->init_layout.size);
Jan Beulich4a496222009-07-06 14:50:42 +01002640}
2641
Rusty Russell82440622016-02-03 16:55:26 +10302642/*
2643 * We use the full symtab and strtab which layout_symtab arranged to
2644 * be appended to the init section. Later we switch to the cut-down
2645 * core-only ones.
2646 */
Rusty Russell811d66a2010-08-05 12:59:12 -06002647static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648{
Jan Beulich4a496222009-07-06 14:50:42 +01002649 unsigned int i, ndst;
2650 const Elf_Sym *src;
2651 Elf_Sym *dst;
Jan Beulich554bdfe2009-07-06 14:51:44 +01002652 char *s;
Rusty Russelleded41c2010-08-05 12:59:07 -06002653 Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Rusty Russell82440622016-02-03 16:55:26 +10302655 /* Set up to point into init section. */
2656 mod->kallsyms = mod->init_layout.base + info->mod_kallsyms_init_off;
2657
2658 mod->kallsyms->symtab = (void *)symsec->sh_addr;
2659 mod->kallsyms->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
Rusty Russell511ca6a2010-08-05 12:59:08 -06002660 /* Make sure we get permanent strtab: don't use info->strtab. */
Rusty Russell82440622016-02-03 16:55:26 +10302661 mod->kallsyms->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 /* Set types up while we still have access to sections. */
Rusty Russell82440622016-02-03 16:55:26 +10302664 for (i = 0; i < mod->kallsyms->num_symtab; i++)
2665 mod->kallsyms->symtab[i].st_info
2666 = elf_type(&mod->kallsyms->symtab[i], info);
Jan Beulich4a496222009-07-06 14:50:42 +01002667
Rusty Russell82440622016-02-03 16:55:26 +10302668 /* Now populate the cut down core kallsyms for after init. */
2669 mod->core_kallsyms.symtab = dst = mod->core_layout.base + info->symoffs;
2670 mod->core_kallsyms.strtab = s = mod->core_layout.base + info->stroffs;
2671 src = mod->kallsyms->symtab;
2672 for (ndst = i = 0; i < mod->kallsyms->num_symtab; i++) {
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002673 if (i == 0 || is_livepatch_module(mod) ||
Miroslav Benese0224412015-11-26 13:18:06 +10302674 is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum,
2675 info->index.pcpu)) {
Rusty Russell59ef28b2012-10-25 10:49:25 +10302676 dst[ndst] = src[i];
Rusty Russell82440622016-02-03 16:55:26 +10302677 dst[ndst++].st_name = s - mod->core_kallsyms.strtab;
2678 s += strlcpy(s, &mod->kallsyms->strtab[src[i].st_name],
Rusty Russell59ef28b2012-10-25 10:49:25 +10302679 KSYM_NAME_LEN) + 1;
2680 }
Jan Beulich4a496222009-07-06 14:50:42 +01002681 }
Rusty Russell82440622016-02-03 16:55:26 +10302682 mod->core_kallsyms.num_symtab = ndst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683}
2684#else
Rusty Russell49668682010-08-05 12:59:10 -06002685static inline void layout_symtab(struct module *mod, struct load_info *info)
Jan Beulich4a496222009-07-06 14:50:42 +01002686{
2687}
Paul Mundt3ae91c22009-10-01 15:43:54 -07002688
Michał Mirosławabbce902010-09-20 01:58:08 +02002689static void add_kallsyms(struct module *mod, const struct load_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
2691}
2692#endif /* CONFIG_KALLSYMS */
2693
Zhou Chengming52796312017-07-07 11:15:58 +08002694static void dynamic_debug_setup(struct module *mod, struct _ddebug *debug, unsigned int num)
Rusty Russell5e458cc2008-10-22 10:00:13 -05002695{
Rusty Russell811d66a2010-08-05 12:59:12 -06002696 if (!debug)
2697 return;
Jason Barone9d376f2009-02-05 11:51:38 -05002698#ifdef CONFIG_DYNAMIC_DEBUG
Zhou Chengming52796312017-07-07 11:15:58 +08002699 if (ddebug_add_module(debug, num, mod->name))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002700 pr_err("dynamic debug error adding module: %s\n",
2701 debug->modname);
Jason Barone9d376f2009-02-05 11:51:38 -05002702#endif
Rusty Russell5e458cc2008-10-22 10:00:13 -05002703}
Jason Baron346e15b2008-08-12 16:46:19 -04002704
Zhou Chengming52796312017-07-07 11:15:58 +08002705static void dynamic_debug_remove(struct module *mod, struct _ddebug *debug)
Yehuda Sadehff49d742010-07-03 13:07:35 +10002706{
2707 if (debug)
Zhou Chengming52796312017-07-07 11:15:58 +08002708 ddebug_remove_module(mod->name);
Yehuda Sadehff49d742010-07-03 13:07:35 +10002709}
2710
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002711void * __weak module_alloc(unsigned long size)
2712{
Rusty Russell82fab442012-12-11 09:38:33 +10302713 return vmalloc_exec(size);
Jonas Bonn74e08fc2011-06-30 21:22:11 +02002714}
2715
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002716#ifdef CONFIG_DEBUG_KMEMLEAK
Rusty Russell49668682010-08-05 12:59:10 -06002717static void kmemleak_load_module(const struct module *mod,
2718 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002719{
2720 unsigned int i;
2721
2722 /* only scan the sections containing data */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002723 kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002724
Rusty Russell49668682010-08-05 12:59:10 -06002725 for (i = 1; i < info->hdr->e_shnum; i++) {
Steven Rostedt06c94942013-05-15 20:33:01 +01002726 /* Scan all writable sections that's not executable */
2727 if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
2728 !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
2729 (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002730 continue;
2731
Rusty Russell49668682010-08-05 12:59:10 -06002732 kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
2733 info->sechdrs[i].sh_size, GFP_KERNEL);
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002734 }
2735}
2736#else
Rusty Russell49668682010-08-05 12:59:10 -06002737static inline void kmemleak_load_module(const struct module *mod,
2738 const struct load_info *info)
Catalin Marinas4f2294b2009-06-11 13:23:20 +01002739{
2740}
2741#endif
2742
Rusty Russell106a4ee2012-09-26 10:09:40 +01002743#ifdef CONFIG_MODULE_SIG
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302744static int module_sig_check(struct load_info *info, int flags)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002745{
2746 int err = -ENOKEY;
Kees Cook34e11692012-10-16 07:31:07 +10302747 const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
2748 const void *mod = info->hdr;
Rusty Russell106a4ee2012-09-26 10:09:40 +01002749
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302750 /*
2751 * Require flags == 0, as a module with version information
2752 * removed is no longer the module that was signed
2753 */
2754 if (flags == 0 &&
2755 info->len > markerlen &&
Kees Cook34e11692012-10-16 07:31:07 +10302756 memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
David Howellscaabe242012-10-20 01:19:29 +01002757 /* We truncate the module to discard the signature */
Kees Cook34e11692012-10-16 07:31:07 +10302758 info->len -= markerlen;
Jessica Yuf314dfe2018-06-29 16:37:08 +02002759 err = mod_verify_sig(mod, info);
Rusty Russell106a4ee2012-09-26 10:09:40 +01002760 }
2761
2762 if (!err) {
2763 info->sig_ok = true;
2764 return 0;
2765 }
2766
2767 /* Not having a signature is only an error if we're strict. */
Jia Zhang2c8fd262018-04-11 11:53:33 +08002768 if (err == -ENOKEY && !is_module_sig_enforced())
Rusty Russell106a4ee2012-09-26 10:09:40 +01002769 err = 0;
2770
2771 return err;
2772}
2773#else /* !CONFIG_MODULE_SIG */
Ben Hutchingsbca014c2016-04-28 09:24:01 +09302774static int module_sig_check(struct load_info *info, int flags)
Rusty Russell106a4ee2012-09-26 10:09:40 +01002775{
2776 return 0;
2777}
2778#endif /* !CONFIG_MODULE_SIG */
2779
Kees Cook34e11692012-10-16 07:31:07 +10302780/* Sanity checks against invalid binaries, wrong arch, weird elf version. */
2781static int elf_header_check(struct load_info *info)
Rusty Russell40dd2562010-08-05 12:59:03 -06002782{
Kees Cook34e11692012-10-16 07:31:07 +10302783 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002784 return -ENOEXEC;
2785
Kees Cook34e11692012-10-16 07:31:07 +10302786 if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
2787 || info->hdr->e_type != ET_REL
2788 || !elf_check_arch(info->hdr)
2789 || info->hdr->e_shentsize != sizeof(Elf_Shdr))
2790 return -ENOEXEC;
2791
2792 if (info->hdr->e_shoff >= info->len
2793 || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
2794 info->len - info->hdr->e_shoff))
2795 return -ENOEXEC;
2796
2797 return 0;
2798}
2799
Linus Torvalds3afe9f82015-04-07 10:33:49 -07002800#define COPY_CHUNK_SIZE (16*PAGE_SIZE)
2801
2802static int copy_chunked_from_user(void *dst, const void __user *usrc, unsigned long len)
2803{
2804 do {
2805 unsigned long n = min(len, COPY_CHUNK_SIZE);
2806
2807 if (copy_from_user(dst, usrc, n) != 0)
2808 return -EFAULT;
2809 cond_resched();
2810 dst += n;
2811 usrc += n;
2812 len -= n;
2813 } while (len);
2814 return 0;
2815}
2816
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002817#ifdef CONFIG_LIVEPATCH
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05002818static int check_modinfo_livepatch(struct module *mod, struct load_info *info)
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002819{
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05002820 if (get_modinfo(info, "livepatch")) {
2821 mod->klp = true;
2822 add_taint_module(mod, TAINT_LIVEPATCH, LOCKDEP_STILL_OK);
Joe Lawrence7598d162017-01-12 11:57:44 -05002823 pr_notice_once("%s: tainting kernel with TAINT_LIVEPATCH\n",
2824 mod->name);
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05002825 }
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002826
2827 return 0;
2828}
2829#else /* !CONFIG_LIVEPATCH */
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05002830static int check_modinfo_livepatch(struct module *mod, struct load_info *info)
Jessica Yu1ce15ef2016-03-22 20:03:16 -04002831{
2832 if (get_modinfo(info, "livepatch")) {
2833 pr_err("%s: module is marked as livepatch module, but livepatch support is disabled",
2834 mod->name);
2835 return -ENOEXEC;
2836 }
2837
2838 return 0;
2839}
2840#endif /* CONFIG_LIVEPATCH */
2841
Andi Kleencaf75012018-01-25 15:50:28 -08002842static void check_modinfo_retpoline(struct module *mod, struct load_info *info)
2843{
2844 if (retpoline_module_ok(get_modinfo(info, "retpoline")))
2845 return;
2846
2847 pr_warn("%s: loading module not compiled with retpoline compiler.\n",
2848 mod->name);
2849}
2850
Kees Cook34e11692012-10-16 07:31:07 +10302851/* Sets info->hdr and info->len. */
2852static int copy_module_from_user(const void __user *umod, unsigned long len,
2853 struct load_info *info)
2854{
Kees Cook2e72d512012-10-16 07:32:07 +10302855 int err;
2856
Kees Cook34e11692012-10-16 07:31:07 +10302857 info->len = len;
2858 if (info->len < sizeof(*(info->hdr)))
Rusty Russell40dd2562010-08-05 12:59:03 -06002859 return -ENOEXEC;
2860
Mimi Zoharc77b8cd2018-07-13 14:06:02 -04002861 err = security_kernel_load_data(LOADING_MODULE);
Kees Cook2e72d512012-10-16 07:32:07 +10302862 if (err)
2863 return err;
2864
Rusty Russell40dd2562010-08-05 12:59:03 -06002865 /* Suck in entire file: we'll want most of it. */
Kirill A. Shutemovcc9e6052015-03-24 12:31:40 +10302866 info->hdr = __vmalloc(info->len,
Michal Hocko19809c22017-05-08 15:57:44 -07002867 GFP_KERNEL | __GFP_NOWARN, PAGE_KERNEL);
Kees Cook34e11692012-10-16 07:31:07 +10302868 if (!info->hdr)
Rusty Russell40dd2562010-08-05 12:59:03 -06002869 return -ENOMEM;
2870
Linus Torvalds3afe9f82015-04-07 10:33:49 -07002871 if (copy_chunked_from_user(info->hdr, umod, info->len) != 0) {
Kees Cook34e11692012-10-16 07:31:07 +10302872 vfree(info->hdr);
2873 return -EFAULT;
Rusty Russell40dd2562010-08-05 12:59:03 -06002874 }
2875
Rusty Russell40dd2562010-08-05 12:59:03 -06002876 return 0;
Kees Cook34e11692012-10-16 07:31:07 +10302877}
Rusty Russell40dd2562010-08-05 12:59:03 -06002878
Rusty Russelld9131882010-08-05 12:59:08 -06002879static void free_copy(struct load_info *info)
2880{
Rusty Russelld9131882010-08-05 12:59:08 -06002881 vfree(info->hdr);
2882}
2883
Rusty Russell2f3238a2012-10-22 18:09:41 +10302884static int rewrite_section_headers(struct load_info *info, int flags)
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002885{
2886 unsigned int i;
2887
2888 /* This should always be true, but let's be sure. */
2889 info->sechdrs[0].sh_addr = 0;
2890
2891 for (i = 1; i < info->hdr->e_shnum; i++) {
2892 Elf_Shdr *shdr = &info->sechdrs[i];
2893 if (shdr->sh_type != SHT_NOBITS
2894 && info->len < shdr->sh_offset + shdr->sh_size) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002895 pr_err("Module len %lu truncated\n", info->len);
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002896 return -ENOEXEC;
2897 }
2898
2899 /* Mark all sections sh_addr with their address in the
2900 temporary image. */
2901 shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
2902
2903#ifndef CONFIG_MODULE_UNLOAD
2904 /* Don't load .exit sections */
2905 if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
2906 shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
2907#endif
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002908 }
Rusty Russelld6df72a2010-08-05 12:59:07 -06002909
2910 /* Track but don't keep modinfo and version sections. */
Rusty Russelld6df72a2010-08-05 12:59:07 -06002911 info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
Kees Cook3e2e8572017-04-21 15:35:27 -07002912 info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
2913
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002914 return 0;
2915}
2916
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002917/*
2918 * Set up our basic convenience variables (pointers to section headers,
2919 * search for module section index etc), and do some basic section
2920 * verification.
2921 *
Jessica Yu81a0abd2018-06-22 13:59:29 +02002922 * Set info->mod to the temporary copy of the module in info->hdr. The final one
2923 * will be allocated in move_module().
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002924 */
Jessica Yu81a0abd2018-06-22 13:59:29 +02002925static int setup_load_info(struct load_info *info, int flags)
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002926{
2927 unsigned int i;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002928
2929 /* Set up the convenience variables */
2930 info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002931 info->secstrings = (void *)info->hdr
2932 + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002933
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002934 /* Try to find a name early so we can log errors with a module name */
2935 info->index.info = find_sec(info, ".modinfo");
2936 if (!info->index.info)
2937 info->name = "(missing .modinfo section)";
2938 else
2939 info->name = get_modinfo(info, "name");
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002940
2941 /* Find internal symbols and strings. */
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002942 for (i = 1; i < info->hdr->e_shnum; i++) {
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002943 if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
2944 info->index.sym = i;
2945 info->index.str = info->sechdrs[i].sh_link;
Rusty Russell8b5f61a2010-08-05 12:59:06 -06002946 info->strtab = (char *)info->hdr
2947 + info->sechdrs[info->index.str].sh_offset;
2948 break;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002949 }
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002950 }
2951
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002952 if (info->index.sym == 0) {
2953 pr_warn("%s: module has no symbols (stripped?)\n", info->name);
2954 return -ENOEXEC;
2955 }
2956
Rusty Russell49668682010-08-05 12:59:10 -06002957 info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002958 if (!info->index.mod) {
Kees Cook3e2e8572017-04-21 15:35:27 -07002959 pr_warn("%s: No module found in object\n",
2960 info->name ?: "(missing .modinfo name field)");
Jessica Yu81a0abd2018-06-22 13:59:29 +02002961 return -ENOEXEC;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002962 }
2963 /* This is temporary: point mod into copy of data. */
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002964 info->mod = (void *)info->hdr + info->sechdrs[info->index.mod].sh_offset;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002965
Kees Cook3e2e8572017-04-21 15:35:27 -07002966 /*
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002967 * If we didn't load the .modinfo 'name' field earlier, fall back to
Kees Cook3e2e8572017-04-21 15:35:27 -07002968 * on-disk struct mod 'name' field.
2969 */
2970 if (!info->name)
Jessica Yu81a0abd2018-06-22 13:59:29 +02002971 info->name = info->mod->name;
Kees Cook3e2e8572017-04-21 15:35:27 -07002972
Jessica Yu5fdc7db2018-06-22 14:00:01 +02002973 if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
2974 info->index.vers = 0; /* Pretend no __versions section! */
2975 else
2976 info->index.vers = find_sec(info, "__versions");
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002977
Rusty Russell49668682010-08-05 12:59:10 -06002978 info->index.pcpu = find_pcpusec(info);
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002979
Jessica Yu81a0abd2018-06-22 13:59:29 +02002980 return 0;
Linus Torvalds3264d3f2010-06-02 11:01:06 -07002981}
2982
Rusty Russell2f3238a2012-10-22 18:09:41 +10302983static int check_modinfo(struct module *mod, struct load_info *info, int flags)
Rusty Russell40dd2562010-08-05 12:59:03 -06002984{
Rusty Russell49668682010-08-05 12:59:10 -06002985 const char *modmagic = get_modinfo(info, "vermagic");
Rusty Russell40dd2562010-08-05 12:59:03 -06002986 int err;
2987
Rusty Russell2f3238a2012-10-22 18:09:41 +10302988 if (flags & MODULE_INIT_IGNORE_VERMAGIC)
2989 modmagic = NULL;
2990
Rusty Russell40dd2562010-08-05 12:59:03 -06002991 /* This is allowed: modprobe --force will invalidate it. */
2992 if (!modmagic) {
2993 err = try_to_force_load(mod, "bad vermagic");
2994 if (err)
2995 return err;
Rusty Russell49668682010-08-05 12:59:10 -06002996 } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08002997 pr_err("%s: version magic '%s' should be '%s'\n",
Kees Cook3e2e8572017-04-21 15:35:27 -07002998 info->name, modmagic, vermagic);
Rusty Russell40dd2562010-08-05 12:59:03 -06002999 return -ENOEXEC;
3000 }
3001
Libor Pechacek3205c362016-04-13 11:06:12 +09303002 if (!get_modinfo(info, "intree")) {
3003 if (!test_taint(TAINT_OOT_MODULE))
3004 pr_warn("%s: loading out-of-tree module taints kernel.\n",
3005 mod->name);
Rusty Russell373d4d02013-01-21 17:17:39 +10303006 add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
Libor Pechacek3205c362016-04-13 11:06:12 +09303007 }
Ben Hutchings2449b8b2011-10-24 15:12:28 +02003008
Andi Kleencaf75012018-01-25 15:50:28 -08003009 check_modinfo_retpoline(mod, info);
3010
Rusty Russell49668682010-08-05 12:59:10 -06003011 if (get_modinfo(info, "staging")) {
Rusty Russell373d4d02013-01-21 17:17:39 +10303012 add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003013 pr_warn("%s: module is from the staging directory, the quality "
3014 "is unknown, you have been warned.\n", mod->name);
Rusty Russell40dd2562010-08-05 12:59:03 -06003015 }
Rusty Russell22e268e2010-08-05 12:59:05 -06003016
Josh Poimboeuf2992ef22016-08-25 10:04:45 -05003017 err = check_modinfo_livepatch(mod, info);
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003018 if (err)
3019 return err;
3020
Rusty Russell22e268e2010-08-05 12:59:05 -06003021 /* Set up license info based on the info section */
Rusty Russell49668682010-08-05 12:59:10 -06003022 set_license(mod, get_modinfo(info, "license"));
Rusty Russell22e268e2010-08-05 12:59:05 -06003023
Rusty Russell40dd2562010-08-05 12:59:03 -06003024 return 0;
3025}
3026
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303027static int find_module_sections(struct module *mod, struct load_info *info)
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003028{
Rusty Russell49668682010-08-05 12:59:10 -06003029 mod->kp = section_objs(info, "__param",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003030 sizeof(*mod->kp), &mod->num_kp);
Rusty Russell49668682010-08-05 12:59:10 -06003031 mod->syms = section_objs(info, "__ksymtab",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003032 sizeof(*mod->syms), &mod->num_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003033 mod->crcs = section_addr(info, "__kcrctab");
3034 mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003035 sizeof(*mod->gpl_syms),
3036 &mod->num_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003037 mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
3038 mod->gpl_future_syms = section_objs(info,
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003039 "__ksymtab_gpl_future",
3040 sizeof(*mod->gpl_future_syms),
3041 &mod->num_gpl_future_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003042 mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003043
3044#ifdef CONFIG_UNUSED_SYMBOLS
Rusty Russell49668682010-08-05 12:59:10 -06003045 mod->unused_syms = section_objs(info, "__ksymtab_unused",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003046 sizeof(*mod->unused_syms),
3047 &mod->num_unused_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003048 mod->unused_crcs = section_addr(info, "__kcrctab_unused");
3049 mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003050 sizeof(*mod->unused_gpl_syms),
3051 &mod->num_unused_gpl_syms);
Rusty Russell49668682010-08-05 12:59:10 -06003052 mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003053#endif
3054#ifdef CONFIG_CONSTRUCTORS
Rusty Russell49668682010-08-05 12:59:10 -06003055 mod->ctors = section_objs(info, ".ctors",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003056 sizeof(*mod->ctors), &mod->num_ctors);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303057 if (!mod->ctors)
3058 mod->ctors = section_objs(info, ".init_array",
3059 sizeof(*mod->ctors), &mod->num_ctors);
3060 else if (find_sec(info, ".init_array")) {
3061 /*
3062 * This shouldn't happen with same compiler and binutils
3063 * building all parts of the module.
3064 */
Ionut Alexa6da0b562014-11-10 09:31:29 +10303065 pr_warn("%s: has both .ctors and .init_array.\n",
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303066 mod->name);
3067 return -EINVAL;
3068 }
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003069#endif
3070
3071#ifdef CONFIG_TRACEPOINTS
Mathieu Desnoyers65498642011-01-26 17:26:22 -05003072 mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
3073 sizeof(*mod->tracepoints_ptrs),
3074 &mod->num_tracepoints);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003075#endif
Jason Baronbf5438fc2010-09-17 11:09:00 -04003076#ifdef HAVE_JUMP_LABEL
3077 mod->jump_entries = section_objs(info, "__jump_table",
3078 sizeof(*mod->jump_entries),
3079 &mod->num_jump_entries);
3080#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003081#ifdef CONFIG_EVENT_TRACING
Rusty Russell49668682010-08-05 12:59:10 -06003082 mod->trace_events = section_objs(info, "_ftrace_events",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003083 sizeof(*mod->trace_events),
3084 &mod->num_trace_events);
Jeremy Linton99be6472017-05-31 16:56:44 -05003085 mod->trace_evals = section_objs(info, "_ftrace_eval_map",
3086 sizeof(*mod->trace_evals),
3087 &mod->num_trace_evals);
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003088#endif
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05003089#ifdef CONFIG_TRACING
3090 mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
3091 sizeof(*mod->trace_bprintk_fmt_start),
3092 &mod->num_trace_bprintk_fmt);
Steven Rostedt13b9b6e2010-11-10 22:19:24 -05003093#endif
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003094#ifdef CONFIG_FTRACE_MCOUNT_RECORD
3095 /* sechdrs[0].sh_size is always zero */
Rusty Russell49668682010-08-05 12:59:10 -06003096 mod->ftrace_callsites = section_objs(info, "__mcount_loc",
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003097 sizeof(*mod->ftrace_callsites),
3098 &mod->num_ftrace_callsites);
3099#endif
Masami Hiramatsu540adea2018-01-13 02:55:03 +09003100#ifdef CONFIG_FUNCTION_ERROR_INJECTION
3101 mod->ei_funcs = section_objs(info, "_error_injection_whitelist",
3102 sizeof(*mod->ei_funcs),
3103 &mod->num_ei_funcs);
Josef Bacik92ace992017-12-11 11:36:46 -05003104#endif
Rusty Russell811d66a2010-08-05 12:59:12 -06003105 mod->extable = section_objs(info, "__ex_table",
3106 sizeof(*mod->extable), &mod->num_exentries);
3107
Rusty Russell49668682010-08-05 12:59:10 -06003108 if (section_addr(info, "__obsparm"))
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003109 pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
Rusty Russell811d66a2010-08-05 12:59:12 -06003110
3111 info->debug = section_objs(info, "__verbose",
3112 sizeof(*info->debug), &info->num_debug);
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303113
3114 return 0;
Linus Torvaldsf91a13b2010-08-05 12:59:02 -06003115}
3116
Rusty Russell49668682010-08-05 12:59:10 -06003117static int move_module(struct module *mod, struct load_info *info)
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003118{
3119 int i;
3120 void *ptr;
3121
3122 /* Do the allocs. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10303123 ptr = module_alloc(mod->core_layout.size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003124 /*
3125 * The pointer to this block is stored in the module structure
3126 * which is inside the block. Just mark it as not being a
3127 * leak.
3128 */
3129 kmemleak_not_leak(ptr);
3130 if (!ptr)
Rusty Russelld9131882010-08-05 12:59:08 -06003131 return -ENOMEM;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003132
Rusty Russell7523e4d2015-11-26 09:44:08 +10303133 memset(ptr, 0, mod->core_layout.size);
3134 mod->core_layout.base = ptr;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003135
Rusty Russell7523e4d2015-11-26 09:44:08 +10303136 if (mod->init_layout.size) {
3137 ptr = module_alloc(mod->init_layout.size);
Rusty Russell82fab442012-12-11 09:38:33 +10303138 /*
3139 * The pointer to this block is stored in the module structure
3140 * which is inside the block. This block doesn't need to be
3141 * scanned as it contains data and code that will be freed
3142 * after the module is initialized.
3143 */
3144 kmemleak_ignore(ptr);
3145 if (!ptr) {
Rusty Russell7523e4d2015-11-26 09:44:08 +10303146 module_memfree(mod->core_layout.base);
Rusty Russell82fab442012-12-11 09:38:33 +10303147 return -ENOMEM;
3148 }
Rusty Russell7523e4d2015-11-26 09:44:08 +10303149 memset(ptr, 0, mod->init_layout.size);
3150 mod->init_layout.base = ptr;
Rusty Russell82fab442012-12-11 09:38:33 +10303151 } else
Rusty Russell7523e4d2015-11-26 09:44:08 +10303152 mod->init_layout.base = NULL;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003153
3154 /* Transfer each section which specifies SHF_ALLOC */
Jim Cromie5e124162011-12-06 12:11:31 -07003155 pr_debug("final section addresses:\n");
Rusty Russell49668682010-08-05 12:59:10 -06003156 for (i = 0; i < info->hdr->e_shnum; i++) {
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003157 void *dest;
Rusty Russell49668682010-08-05 12:59:10 -06003158 Elf_Shdr *shdr = &info->sechdrs[i];
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003159
Rusty Russell49668682010-08-05 12:59:10 -06003160 if (!(shdr->sh_flags & SHF_ALLOC))
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003161 continue;
3162
Rusty Russell49668682010-08-05 12:59:10 -06003163 if (shdr->sh_entsize & INIT_OFFSET_MASK)
Rusty Russell7523e4d2015-11-26 09:44:08 +10303164 dest = mod->init_layout.base
Rusty Russell49668682010-08-05 12:59:10 -06003165 + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003166 else
Rusty Russell7523e4d2015-11-26 09:44:08 +10303167 dest = mod->core_layout.base + shdr->sh_entsize;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003168
Rusty Russell49668682010-08-05 12:59:10 -06003169 if (shdr->sh_type != SHT_NOBITS)
3170 memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003171 /* Update sh_addr to point to copy in image. */
Rusty Russell49668682010-08-05 12:59:10 -06003172 shdr->sh_addr = (unsigned long)dest;
Jim Cromie5e124162011-12-06 12:11:31 -07003173 pr_debug("\t0x%lx %s\n",
3174 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003175 }
Rusty Russelld9131882010-08-05 12:59:08 -06003176
3177 return 0;
Linus Torvalds65b8a9b2010-08-05 12:59:02 -06003178}
3179
Rusty Russell49668682010-08-05 12:59:10 -06003180static int check_module_license_and_versions(struct module *mod)
Rusty Russell22e268e2010-08-05 12:59:05 -06003181{
Libor Pechacek3205c362016-04-13 11:06:12 +09303182 int prev_taint = test_taint(TAINT_PROPRIETARY_MODULE);
3183
Rusty Russell22e268e2010-08-05 12:59:05 -06003184 /*
3185 * ndiswrapper is under GPL by itself, but loads proprietary modules.
3186 * Don't use add_taint_module(), as it would prevent ndiswrapper from
3187 * using GPL-only symbols it needs.
3188 */
3189 if (strcmp(mod->name, "ndiswrapper") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303190 add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06003191
3192 /* driverloader was caught wrongly pretending to be under GPL */
3193 if (strcmp(mod->name, "driverloader") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303194 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
3195 LOCKDEP_NOW_UNRELIABLE);
Rusty Russell22e268e2010-08-05 12:59:05 -06003196
Matthew Garrettc99af372012-06-22 13:49:31 -04003197 /* lve claims to be GPL but upstream won't provide source */
3198 if (strcmp(mod->name, "lve") == 0)
Rusty Russell373d4d02013-01-21 17:17:39 +10303199 add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
3200 LOCKDEP_NOW_UNRELIABLE);
Matthew Garrettc99af372012-06-22 13:49:31 -04003201
Libor Pechacek3205c362016-04-13 11:06:12 +09303202 if (!prev_taint && test_taint(TAINT_PROPRIETARY_MODULE))
3203 pr_warn("%s: module license taints kernel.\n", mod->name);
3204
Rusty Russell22e268e2010-08-05 12:59:05 -06003205#ifdef CONFIG_MODVERSIONS
3206 if ((mod->num_syms && !mod->crcs)
3207 || (mod->num_gpl_syms && !mod->gpl_crcs)
3208 || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
3209#ifdef CONFIG_UNUSED_SYMBOLS
3210 || (mod->num_unused_syms && !mod->unused_crcs)
3211 || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
3212#endif
3213 ) {
3214 return try_to_force_load(mod,
3215 "no versions for exported symbols");
3216 }
3217#endif
3218 return 0;
3219}
3220
3221static void flush_module_icache(const struct module *mod)
3222{
3223 mm_segment_t old_fs;
3224
3225 /* flush the icache in correct context */
3226 old_fs = get_fs();
3227 set_fs(KERNEL_DS);
3228
3229 /*
3230 * Flush the instruction cache, since we've played with text.
3231 * Do it before processing of module parameters, so the module
3232 * can provide parameter accessor functions of its own.
3233 */
Rusty Russell7523e4d2015-11-26 09:44:08 +10303234 if (mod->init_layout.base)
3235 flush_icache_range((unsigned long)mod->init_layout.base,
3236 (unsigned long)mod->init_layout.base
3237 + mod->init_layout.size);
3238 flush_icache_range((unsigned long)mod->core_layout.base,
3239 (unsigned long)mod->core_layout.base + mod->core_layout.size);
Rusty Russell22e268e2010-08-05 12:59:05 -06003240
3241 set_fs(old_fs);
3242}
3243
Jonas Bonn74e08fc2011-06-30 21:22:11 +02003244int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
3245 Elf_Shdr *sechdrs,
3246 char *secstrings,
3247 struct module *mod)
3248{
3249 return 0;
3250}
3251
Prarit Bhargavabe7de5f2016-07-21 15:37:56 +09303252/* module_blacklist is a comma-separated list of module names */
3253static char *module_blacklist;
Luis R. Rodriguez96b5b192017-06-28 18:32:31 -07003254static bool blacklisted(const char *module_name)
Prarit Bhargavabe7de5f2016-07-21 15:37:56 +09303255{
3256 const char *p;
3257 size_t len;
3258
3259 if (!module_blacklist)
3260 return false;
3261
3262 for (p = module_blacklist; *p; p += len) {
3263 len = strcspn(p, ",");
3264 if (strlen(module_name) == len && !memcmp(module_name, p, len))
3265 return true;
3266 if (p[len] == ',')
3267 len++;
3268 }
3269 return false;
3270}
3271core_param(module_blacklist, module_blacklist, charp, 0400);
3272
Rusty Russell2f3238a2012-10-22 18:09:41 +10303273static struct module *layout_and_allocate(struct load_info *info, int flags)
Rusty Russelld9131882010-08-05 12:59:08 -06003274{
Rusty Russelld9131882010-08-05 12:59:08 -06003275 struct module *mod;
Jessica Yu444d13f2016-07-27 12:06:21 +09303276 unsigned int ndx;
Rusty Russelld9131882010-08-05 12:59:08 -06003277 int err;
3278
Jessica Yu81a0abd2018-06-22 13:59:29 +02003279 err = check_modinfo(info->mod, info, flags);
Rusty Russelld9131882010-08-05 12:59:08 -06003280 if (err)
3281 return ERR_PTR(err);
3282
3283 /* Allow arches to frob section contents and sizes. */
Rusty Russell49668682010-08-05 12:59:10 -06003284 err = module_frob_arch_sections(info->hdr, info->sechdrs,
Jessica Yu81a0abd2018-06-22 13:59:29 +02003285 info->secstrings, info->mod);
Rusty Russelld9131882010-08-05 12:59:08 -06003286 if (err < 0)
Rusty Russell8d8022e2013-07-03 10:06:28 +09303287 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06003288
Rusty Russell8d8022e2013-07-03 10:06:28 +09303289 /* We will do a special allocation for per-cpu sections later. */
3290 info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
Rusty Russelld9131882010-08-05 12:59:08 -06003291
Jessica Yu444d13f2016-07-27 12:06:21 +09303292 /*
3293 * Mark ro_after_init section with SHF_RO_AFTER_INIT so that
3294 * layout_sections() can put it in the right place.
3295 * Note: ro_after_init sections also have SHF_{WRITE,ALLOC} set.
3296 */
3297 ndx = find_sec(info, ".data..ro_after_init");
3298 if (ndx)
3299 info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
3300
Rusty Russelld9131882010-08-05 12:59:08 -06003301 /* Determine total sizes, and put offsets in sh_entsize. For now
3302 this is done generically; there doesn't appear to be any
3303 special cases for the architectures. */
Jessica Yu81a0abd2018-06-22 13:59:29 +02003304 layout_sections(info->mod, info);
3305 layout_symtab(info->mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003306
3307 /* Allocate and move to the final place */
Jessica Yu81a0abd2018-06-22 13:59:29 +02003308 err = move_module(info->mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003309 if (err)
Rusty Russell8d8022e2013-07-03 10:06:28 +09303310 return ERR_PTR(err);
Rusty Russelld9131882010-08-05 12:59:08 -06003311
3312 /* Module has been copied to its final place now: return it. */
3313 mod = (void *)info->sechdrs[info->index.mod].sh_addr;
Rusty Russell49668682010-08-05 12:59:10 -06003314 kmemleak_load_module(mod, info);
Rusty Russelld9131882010-08-05 12:59:08 -06003315 return mod;
Rusty Russelld9131882010-08-05 12:59:08 -06003316}
3317
3318/* mod is no longer valid after this! */
3319static void module_deallocate(struct module *mod, struct load_info *info)
3320{
Rusty Russelld9131882010-08-05 12:59:08 -06003321 percpu_modfree(mod);
Rusty Russelld453cde2015-01-20 09:07:04 +10303322 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10303323 module_memfree(mod->init_layout.base);
3324 module_memfree(mod->core_layout.base);
Rusty Russelld9131882010-08-05 12:59:08 -06003325}
3326
Jonas Bonn74e08fc2011-06-30 21:22:11 +02003327int __weak module_finalize(const Elf_Ehdr *hdr,
3328 const Elf_Shdr *sechdrs,
3329 struct module *me)
3330{
3331 return 0;
3332}
3333
Rusty Russell811d66a2010-08-05 12:59:12 -06003334static int post_relocation(struct module *mod, const struct load_info *info)
3335{
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003336 /* Sort exception table now relocations are done. */
Rusty Russell811d66a2010-08-05 12:59:12 -06003337 sort_extable(mod->extable, mod->extable + mod->num_exentries);
3338
3339 /* Copy relocated percpu area over. */
3340 percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
3341 info->sechdrs[info->index.pcpu].sh_size);
3342
Rusty Russell51f3d0f2010-08-05 12:59:13 -06003343 /* Setup kallsyms-specific fields. */
Rusty Russell811d66a2010-08-05 12:59:12 -06003344 add_kallsyms(mod, info);
3345
3346 /* Arch-specific module finalizing. */
3347 return module_finalize(info->hdr, info->sechdrs, mod);
3348}
3349
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303350/* Is this module of this name done loading? No locks held. */
3351static bool finished_loading(const char *name)
3352{
3353 struct module *mod;
3354 bool ret;
3355
Peter Zijlstra9cc019b2015-02-11 15:01:13 +10303356 /*
3357 * The module_mutex should not be a heavily contended lock;
3358 * if we get the occasional sleep here, we'll go an extra iteration
3359 * in the wait_event_interruptible(), which is harmless.
3360 */
3361 sched_annotate_sleep();
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303362 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303363 mod = find_module_all(name, strlen(name), true);
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303364 ret = !mod || mod->state == MODULE_STATE_LIVE
3365 || mod->state == MODULE_STATE_GOING;
Rusty Russell9bb9c3b2012-09-28 14:31:03 +09303366 mutex_unlock(&module_mutex);
3367
3368 return ret;
3369}
3370
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003371/* Call module constructors. */
3372static void do_mod_ctors(struct module *mod)
3373{
3374#ifdef CONFIG_CONSTRUCTORS
3375 unsigned long i;
3376
3377 for (i = 0; i < mod->num_ctors; i++)
3378 mod->ctors[i]();
3379#endif
3380}
3381
Rusty Russellc7496372015-01-20 09:07:05 +10303382/* For freeing module_init on success, in case kallsyms traversing */
3383struct mod_initfree {
3384 struct rcu_head rcu;
3385 void *module_init;
3386};
3387
3388static void do_free_init(struct rcu_head *head)
3389{
3390 struct mod_initfree *m = container_of(head, struct mod_initfree, rcu);
3391 module_memfree(m->module_init);
3392 kfree(m);
3393}
3394
Jan Kiszkabe02a182015-02-17 13:46:50 -08003395/*
3396 * This is where the real work happens.
3397 *
3398 * Keep it uninlined to provide a reliable breakpoint target, e.g. for the gdb
3399 * helper command 'lx-symbols'.
3400 */
3401static noinline int do_init_module(struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 int ret = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303404 struct mod_initfree *freeinit;
3405
3406 freeinit = kmalloc(sizeof(*freeinit), GFP_KERNEL);
3407 if (!freeinit) {
3408 ret = -ENOMEM;
3409 goto fail;
3410 }
Rusty Russell7523e4d2015-11-26 09:44:08 +10303411 freeinit->module_init = mod->init_layout.base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
Tejun Heo774a1222013-01-15 18:52:51 -08003413 /*
3414 * We want to find out whether @mod uses async during init. Clear
3415 * PF_USED_ASYNC. async_schedule*() will set it.
3416 */
3417 current->flags &= ~PF_USED_ASYNC;
3418
Peter Oberparleiterb99b87f2009-06-17 16:28:03 -07003419 do_mod_ctors(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 /* Start the module */
3421 if (mod->init != NULL)
Arjan van de Ven59f94152008-07-30 12:49:02 -07003422 ret = do_one_initcall(mod->init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 if (ret < 0) {
Rusty Russellc7496372015-01-20 09:07:05 +10303424 goto fail_free_freeinit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 }
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003426 if (ret > 0) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003427 pr_warn("%s: '%s'->init suspiciously returned %d, it should "
3428 "follow 0/-E convention\n"
3429 "%s: loading module anyway...\n",
3430 __func__, mod->name, ret, __func__);
Alexey Dobriyane24e2e62008-03-10 11:43:53 -07003431 dump_stack();
3432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Rusty Russell6f139092012-09-28 14:31:03 +09303434 /* Now it's a first class citizen! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 mod->state = MODULE_STATE_LIVE;
Masami Hiramatsu0deddf42009-01-06 14:41:54 -08003436 blocking_notifier_call_chain(&module_notify_list,
3437 MODULE_STATE_LIVE, mod);
Rusty Russell6c5db222008-03-10 11:43:52 -07003438
Tejun Heo774a1222013-01-15 18:52:51 -08003439 /*
3440 * We need to finish all async code before the module init sequence
3441 * is done. This has potential to deadlock. For example, a newly
3442 * detected block device can trigger request_module() of the
3443 * default iosched from async probing task. Once userland helper
3444 * reaches here, async_synchronize_full() will wait on the async
3445 * task waiting on request_module() and deadlock.
3446 *
3447 * This deadlock is avoided by perfomring async_synchronize_full()
3448 * iff module init queued any async jobs. This isn't a full
3449 * solution as it will deadlock the same if module loading from
3450 * async jobs nests more than once; however, due to the various
3451 * constraints, this hack seems to be the best option for now.
3452 * Please refer to the following thread for details.
3453 *
3454 * http://thread.gmane.org/gmane.linux.kernel/1420814
3455 */
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003456 if (!mod->async_probe_requested && (current->flags & PF_USED_ASYNC))
Tejun Heo774a1222013-01-15 18:52:51 -08003457 async_synchronize_full();
Linus Torvaldsd6de2c82009-04-10 12:17:41 -07003458
Steven Rostedt (VMware)aba4b5c2017-09-01 08:35:38 -04003459 ftrace_free_mem(mod, mod->init_layout.base, mod->init_layout.base +
Steven Rostedt (VMware)3e234282017-03-03 18:00:22 -05003460 mod->init_layout.size);
Rusty Russell6c5db222008-03-10 11:43:52 -07003461 mutex_lock(&module_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 /* Drop initial reference. */
3463 module_put(mod);
Rusty Russellad6561d2009-06-12 21:47:03 -06003464 trim_init_extable(mod);
Jan Beulich4a496222009-07-06 14:50:42 +01003465#ifdef CONFIG_KALLSYMS
Rusty Russell82440622016-02-03 16:55:26 +10303466 /* Switch to core kallsyms now init is done: kallsyms may be walking! */
3467 rcu_assign_pointer(mod->kallsyms, &mod->core_kallsyms);
Jan Beulich4a496222009-07-06 14:50:42 +01003468#endif
Jessica Yu444d13f2016-07-27 12:06:21 +09303469 module_enable_ro(mod, true);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09303470 mod_tree_remove_init(mod);
Rusty Russell85c898d2015-11-26 09:45:08 +10303471 disable_ro_nx(&mod->init_layout);
Rusty Russelld453cde2015-01-20 09:07:04 +10303472 module_arch_freeing_init(mod);
Rusty Russell7523e4d2015-11-26 09:44:08 +10303473 mod->init_layout.base = NULL;
3474 mod->init_layout.size = 0;
3475 mod->init_layout.ro_size = 0;
Jessica Yu444d13f2016-07-27 12:06:21 +09303476 mod->init_layout.ro_after_init_size = 0;
Rusty Russell7523e4d2015-11-26 09:44:08 +10303477 mod->init_layout.text_size = 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303478 /*
3479 * We want to free module_init, but be aware that kallsyms may be
Peter Zijlstra0be964b2015-05-27 11:09:35 +09303480 * walking this with preempt disabled. In all the failure paths, we
3481 * call synchronize_sched(), but we don't want to slow down the success
3482 * path, so use actual RCU here.
Jeffrey Hugoae646f02018-05-11 16:01:42 -07003483 * Note that module_alloc() on most architectures creates W+X page
3484 * mappings which won't be cleaned up until do_free_init() runs. Any
3485 * code such as mark_rodata_ro() which depends on those mappings to
3486 * be cleaned up needs to sync with the queued work - ie
3487 * rcu_barrier_sched()
Rusty Russellc7496372015-01-20 09:07:05 +10303488 */
Peter Zijlstra0be964b2015-05-27 11:09:35 +09303489 call_rcu_sched(&freeinit->rcu, do_free_init);
Ashutosh Naik6389a382006-03-23 03:00:46 -08003490 mutex_unlock(&module_mutex);
Rusty Russell6f139092012-09-28 14:31:03 +09303491 wake_up_all(&module_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
3493 return 0;
Rusty Russellc7496372015-01-20 09:07:05 +10303494
3495fail_free_freeinit:
3496 kfree(freeinit);
3497fail:
3498 /* Try to protect us from buggy refcounters. */
3499 mod->state = MODULE_STATE_GOING;
3500 synchronize_sched();
3501 module_put(mod);
3502 blocking_notifier_call_chain(&module_notify_list,
3503 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04003504 klp_module_going(mod);
Jessica Yu7dcd1822016-02-16 17:32:33 -05003505 ftrace_release_mod(mod);
Rusty Russellc7496372015-01-20 09:07:05 +10303506 free_module(mod);
3507 wake_up_all(&module_wq);
3508 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509}
3510
Kees Cook34e11692012-10-16 07:31:07 +10303511static int may_init_module(void)
3512{
3513 if (!capable(CAP_SYS_MODULE) || modules_disabled)
3514 return -EPERM;
3515
3516 return 0;
3517}
3518
Rusty Russella3535c72013-01-21 17:18:59 +10303519/*
3520 * We try to place it in the list now to make sure it's unique before
3521 * we dedicate too many resources. In particular, temporary percpu
3522 * memory exhaustion.
3523 */
3524static int add_unformed_module(struct module *mod)
3525{
3526 int err;
3527 struct module *old;
3528
3529 mod->state = MODULE_STATE_UNFORMED;
3530
3531again:
3532 mutex_lock(&module_mutex);
Mathias Krause4f6de4d2013-07-02 15:35:11 +09303533 old = find_module_all(mod->name, strlen(mod->name), true);
3534 if (old != NULL) {
Rusty Russella3535c72013-01-21 17:18:59 +10303535 if (old->state == MODULE_STATE_COMING
3536 || old->state == MODULE_STATE_UNFORMED) {
3537 /* Wait in case it fails to load. */
3538 mutex_unlock(&module_mutex);
Peter Zijlstra9cc019b2015-02-11 15:01:13 +10303539 err = wait_event_interruptible(module_wq,
3540 finished_loading(mod->name));
Rusty Russella3535c72013-01-21 17:18:59 +10303541 if (err)
3542 goto out_unlocked;
3543 goto again;
3544 }
3545 err = -EEXIST;
3546 goto out;
3547 }
Peter Zijlstra4f6665462015-05-27 11:09:38 +09303548 mod_update_bounds(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303549 list_add_rcu(&mod->list, &modules);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09303550 mod_tree_insert(mod);
Rusty Russella3535c72013-01-21 17:18:59 +10303551 err = 0;
3552
3553out:
3554 mutex_unlock(&module_mutex);
3555out_unlocked:
3556 return err;
3557}
3558
3559static int complete_formation(struct module *mod, struct load_info *info)
3560{
3561 int err;
3562
3563 mutex_lock(&module_mutex);
3564
3565 /* Find duplicate symbols (must be called under lock). */
3566 err = verify_export_symbols(mod);
3567 if (err < 0)
3568 goto out;
3569
3570 /* This relies on module_mutex for list integrity. */
3571 module_bug_finalize(info->hdr, info->sechdrs, mod);
3572
Jessica Yu444d13f2016-07-27 12:06:21 +09303573 module_enable_ro(mod, false);
Rusty Russell85c898d2015-11-26 09:45:08 +10303574 module_enable_nx(mod);
Rusty Russell49822232014-05-14 10:54:19 +09303575
Rusty Russella3535c72013-01-21 17:18:59 +10303576 /* Mark state as coming so strong_try_module_get() ignores us,
3577 * but kallsyms etc. can see us. */
3578 mod->state = MODULE_STATE_COMING;
Rusty Russell49822232014-05-14 10:54:19 +09303579 mutex_unlock(&module_mutex);
3580
Rusty Russell49822232014-05-14 10:54:19 +09303581 return 0;
Rusty Russella3535c72013-01-21 17:18:59 +10303582
3583out:
3584 mutex_unlock(&module_mutex);
3585 return err;
3586}
3587
Jessica Yu4c973d12016-03-16 20:55:38 -04003588static int prepare_coming_module(struct module *mod)
3589{
Jessica Yu7e545d62016-03-16 20:55:39 -04003590 int err;
3591
Jessica Yu4c973d12016-03-16 20:55:38 -04003592 ftrace_module_enable(mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04003593 err = klp_module_coming(mod);
3594 if (err)
3595 return err;
3596
Jessica Yu4c973d12016-03-16 20:55:38 -04003597 blocking_notifier_call_chain(&module_notify_list,
3598 MODULE_STATE_COMING, mod);
3599 return 0;
3600}
3601
Luis R. Rodriguezecc86172015-03-30 16:20:03 -07003602static int unknown_module_param_cb(char *param, char *val, const char *modname,
3603 void *arg)
Rusty Russell54041d82013-07-02 15:35:12 +09303604{
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003605 struct module *mod = arg;
3606 int ret;
3607
3608 if (strcmp(param, "async_probe") == 0) {
3609 mod->async_probe_requested = true;
3610 return 0;
3611 }
3612
Ionut Alexa6da0b562014-11-10 09:31:29 +10303613 /* Check for magic 'dyndbg' arg */
Luis R. Rodriguezf2411da2015-03-30 16:20:05 -07003614 ret = ddebug_dyndbg_module_param_cb(param, val, modname);
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003615 if (ret != 0)
3616 pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
Rusty Russell54041d82013-07-02 15:35:12 +09303617 return 0;
3618}
3619
Kees Cook34e11692012-10-16 07:31:07 +10303620/* Allocate and load the module: note that size of section 0 is always
3621 zero, and we rely on this for optional sections. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303622static int load_module(struct load_info *info, const char __user *uargs,
3623 int flags)
Kees Cook34e11692012-10-16 07:31:07 +10303624{
Rusty Russella3535c72013-01-21 17:18:59 +10303625 struct module *mod;
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003626 long err = 0;
Rusty Russell51e158c2014-04-28 11:34:33 +09303627 char *after_dashes;
Kees Cook34e11692012-10-16 07:31:07 +10303628
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003629 err = elf_header_check(info);
3630 if (err)
3631 goto free_copy;
3632
3633 err = setup_load_info(info, flags);
3634 if (err)
3635 goto free_copy;
3636
3637 if (blacklisted(info->name)) {
3638 err = -EPERM;
3639 goto free_copy;
3640 }
3641
Ben Hutchingsbca014c2016-04-28 09:24:01 +09303642 err = module_sig_check(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303643 if (err)
3644 goto free_copy;
3645
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003646 err = rewrite_section_headers(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303647 if (err)
3648 goto free_copy;
3649
Jessica Yu5fdc7db2018-06-22 14:00:01 +02003650 /* Check module struct version now, before we try to use module. */
3651 if (!check_modstruct_version(info, info->mod)) {
3652 err = -ENOEXEC;
3653 goto free_copy;
3654 }
3655
Kees Cook34e11692012-10-16 07:31:07 +10303656 /* Figure out module layout, and allocate all the memory. */
Rusty Russell2f3238a2012-10-22 18:09:41 +10303657 mod = layout_and_allocate(info, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303658 if (IS_ERR(mod)) {
3659 err = PTR_ERR(mod);
3660 goto free_copy;
3661 }
3662
Richard Guy Briggsca86cad2017-02-04 13:10:38 -05003663 audit_log_kern_module(mod->name);
3664
Rusty Russella3535c72013-01-21 17:18:59 +10303665 /* Reserve our place in the list. */
3666 err = add_unformed_module(mod);
3667 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303668 goto free_module;
Rusty Russell1fb93412013-01-12 13:27:34 +10303669
Kees Cook34e11692012-10-16 07:31:07 +10303670#ifdef CONFIG_MODULE_SIG
3671 mod->sig_ok = info->sig_ok;
Rusty Russell64748a22013-01-21 17:03:02 +10303672 if (!mod->sig_ok) {
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003673 pr_notice_once("%s: module verification failed: signature "
Marcel Holtmannab92ebb2015-02-06 15:09:57 +10303674 "and/or required key missing - tainting "
Andrew Mortonbddb12b2013-11-12 15:11:28 -08003675 "kernel\n", mod->name);
Mathieu Desnoyers66cc69e2014-03-13 12:11:30 +10303676 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
Rusty Russell64748a22013-01-21 17:03:02 +10303677 }
Kees Cook34e11692012-10-16 07:31:07 +10303678#endif
3679
Rusty Russell8d8022e2013-07-03 10:06:28 +09303680 /* To avoid stressing percpu allocator, do this once we're unique. */
Rusty Russell9eb76d72013-07-03 10:06:29 +09303681 err = percpu_modalloc(mod, info);
Rusty Russell8d8022e2013-07-03 10:06:28 +09303682 if (err)
3683 goto unlink_mod;
3684
Kees Cook34e11692012-10-16 07:31:07 +10303685 /* Now module is in final location, initialize linked lists, etc. */
3686 err = module_unload_init(mod);
3687 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303688 goto unlink_mod;
Kees Cook34e11692012-10-16 07:31:07 +10303689
Rusty Russellcf2fde72015-06-26 06:44:38 +09303690 init_param_lock(mod);
Dan Streetmanb51d23e2015-06-17 06:18:52 +09303691
Kees Cook34e11692012-10-16 07:31:07 +10303692 /* Now we've got everything in the final locations, we can
3693 * find optional sections. */
Frantisek Hrbataeb3057d2013-10-14 18:08:46 +10303694 err = find_module_sections(mod, info);
3695 if (err)
3696 goto free_unload;
Kees Cook34e11692012-10-16 07:31:07 +10303697
3698 err = check_module_license_and_versions(mod);
3699 if (err)
3700 goto free_unload;
3701
3702 /* Set up MODINFO_ATTR fields */
3703 setup_modinfo(mod, info);
3704
3705 /* Fix up syms, so that st_value is a pointer to location. */
3706 err = simplify_symbols(mod, info);
3707 if (err < 0)
3708 goto free_modinfo;
3709
3710 err = apply_relocations(mod, info);
3711 if (err < 0)
3712 goto free_modinfo;
3713
3714 err = post_relocation(mod, info);
3715 if (err < 0)
3716 goto free_modinfo;
3717
3718 flush_module_icache(mod);
3719
3720 /* Now copy in args */
3721 mod->args = strndup_user(uargs, ~0UL >> 1);
3722 if (IS_ERR(mod->args)) {
3723 err = PTR_ERR(mod->args);
3724 goto free_arch_cleanup;
3725 }
3726
Zhou Chengming52796312017-07-07 11:15:58 +08003727 dynamic_debug_setup(mod, info->debug, info->num_debug);
Kees Cook34e11692012-10-16 07:31:07 +10303728
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04003729 /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
3730 ftrace_module_init(mod);
3731
Rusty Russella3535c72013-01-21 17:18:59 +10303732 /* Finally it's fully formed, ready to start executing. */
3733 err = complete_formation(mod, info);
3734 if (err)
Rusty Russell1fb93412013-01-12 13:27:34 +10303735 goto ddebug_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303736
Jessica Yu4c973d12016-03-16 20:55:38 -04003737 err = prepare_coming_module(mod);
3738 if (err)
3739 goto bug_cleanup;
3740
Kees Cook34e11692012-10-16 07:31:07 +10303741 /* Module is ready to execute: parsing args may do that. */
Rusty Russell51e158c2014-04-28 11:34:33 +09303742 after_dashes = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
Luis R. Rodriguez4355efb2016-02-03 16:55:26 +10303743 -32768, 32767, mod,
Luis R. Rodriguezecc86172015-03-30 16:20:03 -07003744 unknown_module_param_cb);
Rusty Russell51e158c2014-04-28 11:34:33 +09303745 if (IS_ERR(after_dashes)) {
3746 err = PTR_ERR(after_dashes);
Jessica Yu4c973d12016-03-16 20:55:38 -04003747 goto coming_cleanup;
Rusty Russell51e158c2014-04-28 11:34:33 +09303748 } else if (after_dashes) {
3749 pr_warn("%s: parameters '%s' after `--' ignored\n",
3750 mod->name, after_dashes);
3751 }
Kees Cook34e11692012-10-16 07:31:07 +10303752
Richard Guy Briggsca86cad2017-02-04 13:10:38 -05003753 /* Link in to sysfs. */
Kees Cook34e11692012-10-16 07:31:07 +10303754 err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
3755 if (err < 0)
Jessica Yu4c973d12016-03-16 20:55:38 -04003756 goto coming_cleanup;
Kees Cook34e11692012-10-16 07:31:07 +10303757
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003758 if (is_livepatch_module(mod)) {
3759 err = copy_module_elf(mod, info);
3760 if (err < 0)
3761 goto sysfs_cleanup;
3762 }
3763
Kees Cook34e11692012-10-16 07:31:07 +10303764 /* Get rid of temporary copy. */
3765 free_copy(info);
3766
3767 /* Done! */
3768 trace_module_load(mod);
3769
3770 return do_init_module(mod);
3771
Jessica Yu1ce15ef2016-03-22 20:03:16 -04003772 sysfs_cleanup:
3773 mod_sysfs_teardown(mod);
Jessica Yu4c973d12016-03-16 20:55:38 -04003774 coming_cleanup:
Aaron Tomlin885a78d2016-10-20 17:18:12 +01003775 mod->state = MODULE_STATE_GOING;
Luis R. Rodrigueza5544882017-02-10 14:06:22 -08003776 destroy_params(mod->kp, mod->num_kp);
Jessica Yu4c973d12016-03-16 20:55:38 -04003777 blocking_notifier_call_chain(&module_notify_list,
3778 MODULE_STATE_GOING, mod);
Jessica Yu7e545d62016-03-16 20:55:39 -04003779 klp_module_going(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303780 bug_cleanup:
3781 /* module_bug_cleanup needs module_mutex protection */
Kees Cook34e11692012-10-16 07:31:07 +10303782 mutex_lock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303783 module_bug_cleanup(mod);
Linus Torvaldsee61abb2013-01-20 20:22:58 -08003784 mutex_unlock(&module_mutex);
Andy Lutomirskiff7e0052014-08-16 04:13:37 +09303785
3786 /* we can't deallocate the module until we clear memory protection */
Rusty Russell85c898d2015-11-26 09:45:08 +10303787 module_disable_ro(mod);
3788 module_disable_nx(mod);
Andy Lutomirskiff7e0052014-08-16 04:13:37 +09303789
Rusty Russella3535c72013-01-21 17:18:59 +10303790 ddebug_cleanup:
Namit Gupta1323eac2018-01-08 10:41:21 +05303791 ftrace_release_mod(mod);
Zhou Chengming52796312017-07-07 11:15:58 +08003792 dynamic_debug_remove(mod, info->debug);
Kees Cook34e11692012-10-16 07:31:07 +10303793 synchronize_sched();
3794 kfree(mod->args);
3795 free_arch_cleanup:
3796 module_arch_cleanup(mod);
3797 free_modinfo:
3798 free_modinfo(mod);
3799 free_unload:
3800 module_unload_free(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303801 unlink_mod:
3802 mutex_lock(&module_mutex);
3803 /* Unlink carefully: kallsyms could be walking list. */
3804 list_del_rcu(&mod->list);
Peter Zijlstra758556b2015-07-09 06:48:06 +09303805 mod_tree_remove(mod);
Rusty Russell1fb93412013-01-12 13:27:34 +10303806 wake_up_all(&module_wq);
Peter Zijlstra0be964b2015-05-27 11:09:35 +09303807 /* Wait for RCU-sched synchronizing before releasing mod->list. */
3808 synchronize_sched();
Rusty Russell1fb93412013-01-12 13:27:34 +10303809 mutex_unlock(&module_mutex);
Kees Cook34e11692012-10-16 07:31:07 +10303810 free_module:
Peter Zijlstra35a93932015-02-26 16:23:11 +01003811 /* Free lock-classes; relies on the preceding sync_rcu() */
Rusty Russell7523e4d2015-11-26 09:44:08 +10303812 lockdep_free_key_range(mod->core_layout.base, mod->core_layout.size);
Peter Zijlstra35a93932015-02-26 16:23:11 +01003813
Kees Cook34e11692012-10-16 07:31:07 +10303814 module_deallocate(mod, info);
3815 free_copy:
3816 free_copy(info);
3817 return err;
3818}
3819
3820SYSCALL_DEFINE3(init_module, void __user *, umod,
3821 unsigned long, len, const char __user *, uargs)
3822{
3823 int err;
3824 struct load_info info = { };
3825
3826 err = may_init_module();
3827 if (err)
3828 return err;
3829
3830 pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
3831 umod, len, uargs);
3832
3833 err = copy_module_from_user(umod, len, &info);
3834 if (err)
3835 return err;
3836
Rusty Russell2f3238a2012-10-22 18:09:41 +10303837 return load_module(&info, uargs, 0);
Kees Cook34e11692012-10-16 07:31:07 +10303838}
3839
Rusty Russell2f3238a2012-10-22 18:09:41 +10303840SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
Kees Cook34e11692012-10-16 07:31:07 +10303841{
Kees Cook34e11692012-10-16 07:31:07 +10303842 struct load_info info = { };
Mimi Zohara1db7422015-12-30 07:35:30 -05003843 loff_t size;
3844 void *hdr;
3845 int err;
Kees Cook34e11692012-10-16 07:31:07 +10303846
3847 err = may_init_module();
3848 if (err)
3849 return err;
3850
Rusty Russell2f3238a2012-10-22 18:09:41 +10303851 pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
3852
3853 if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
3854 |MODULE_INIT_IGNORE_VERMAGIC))
3855 return -EINVAL;
Kees Cook34e11692012-10-16 07:31:07 +10303856
Mimi Zohara1db7422015-12-30 07:35:30 -05003857 err = kernel_read_file_from_fd(fd, &hdr, &size, INT_MAX,
3858 READING_MODULE);
Kees Cook34e11692012-10-16 07:31:07 +10303859 if (err)
3860 return err;
Mimi Zohara1db7422015-12-30 07:35:30 -05003861 info.hdr = hdr;
3862 info.len = size;
Kees Cook34e11692012-10-16 07:31:07 +10303863
Rusty Russell2f3238a2012-10-22 18:09:41 +10303864 return load_module(&info, uargs, flags);
Kees Cook34e11692012-10-16 07:31:07 +10303865}
3866
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867static inline int within(unsigned long addr, void *start, unsigned long size)
3868{
3869 return ((void *)addr >= start && (void *)addr < start + size);
3870}
3871
3872#ifdef CONFIG_KALLSYMS
3873/*
3874 * This ignores the intensely annoying "mapping symbols" found
3875 * in ARM ELF files: $a, $t and $d.
3876 */
3877static inline int is_arm_mapping_symbol(const char *str)
3878{
Russell King2e3a10a2014-07-27 07:29:01 +09303879 if (str[0] == '.' && str[1] == 'L')
3880 return true;
Kyle McMartin6c34f1f2014-09-16 22:37:18 +01003881 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 && (str[2] == '\0' || str[2] == '.');
3883}
3884
Rusty Russell82440622016-02-03 16:55:26 +10303885static const char *symname(struct mod_kallsyms *kallsyms, unsigned int symnum)
Rusty Russell2e7bac52016-02-03 16:55:26 +10303886{
Rusty Russell82440622016-02-03 16:55:26 +10303887 return kallsyms->strtab + kallsyms->symtab[symnum].st_name;
Rusty Russell2e7bac52016-02-03 16:55:26 +10303888}
3889
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890static const char *get_ksymbol(struct module *mod,
3891 unsigned long addr,
3892 unsigned long *size,
3893 unsigned long *offset)
3894{
3895 unsigned int i, best = 0;
3896 unsigned long nextval;
Rusty Russell82440622016-02-03 16:55:26 +10303897 struct mod_kallsyms *kallsyms = rcu_dereference_sched(mod->kallsyms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
3899 /* At worse, next value is at end of module */
Masami Hiramatsua06f6212009-01-06 14:41:49 -08003900 if (within_module_init(addr, mod))
Rusty Russell7523e4d2015-11-26 09:44:08 +10303901 nextval = (unsigned long)mod->init_layout.base+mod->init_layout.text_size;
Daniel Walker22a8bde2007-10-18 03:06:07 -07003902 else
Rusty Russell7523e4d2015-11-26 09:44:08 +10303903 nextval = (unsigned long)mod->core_layout.base+mod->core_layout.text_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003905 /* Scan for closest preceding symbol, and next symbol. (ELF
Daniel Walker22a8bde2007-10-18 03:06:07 -07003906 starts real symbols at 1). */
Rusty Russell82440622016-02-03 16:55:26 +10303907 for (i = 1; i < kallsyms->num_symtab; i++) {
3908 if (kallsyms->symtab[i].st_shndx == SHN_UNDEF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 continue;
3910
3911 /* We ignore unnamed symbols: they're uninformative
3912 * and inserted at a whim. */
Rusty Russell82440622016-02-03 16:55:26 +10303913 if (*symname(kallsyms, i) == '\0'
3914 || is_arm_mapping_symbol(symname(kallsyms, i)))
Rusty Russell2e7bac52016-02-03 16:55:26 +10303915 continue;
3916
Rusty Russell82440622016-02-03 16:55:26 +10303917 if (kallsyms->symtab[i].st_value <= addr
3918 && kallsyms->symtab[i].st_value > kallsyms->symtab[best].st_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 best = i;
Rusty Russell82440622016-02-03 16:55:26 +10303920 if (kallsyms->symtab[i].st_value > addr
3921 && kallsyms->symtab[i].st_value < nextval)
3922 nextval = kallsyms->symtab[i].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 }
3924
3925 if (!best)
3926 return NULL;
3927
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003928 if (size)
Rusty Russell82440622016-02-03 16:55:26 +10303929 *size = nextval - kallsyms->symtab[best].st_value;
Alexey Dobriyanffb45122007-05-08 00:28:41 -07003930 if (offset)
Rusty Russell82440622016-02-03 16:55:26 +10303931 *offset = addr - kallsyms->symtab[best].st_value;
3932 return symname(kallsyms, best);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933}
3934
Sergey Senozhatskyb865ea62017-11-10 08:48:25 +09003935void * __weak dereference_module_function_descriptor(struct module *mod,
3936 void *ptr)
3937{
3938 return ptr;
3939}
3940
Rusty Russell6dd06c92008-01-29 17:13:22 -05003941/* For kallsyms to ask for address resolution. NULL means not found. Careful
3942 * not to lock to avoid deadlock on oopses, simply disable preemption. */
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003943const char *module_address_lookup(unsigned long addr,
Rusty Russell6dd06c92008-01-29 17:13:22 -05003944 unsigned long *size,
3945 unsigned long *offset,
3946 char **modname,
3947 char *namebuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948{
Rusty Russellcb2a5202008-01-14 00:55:03 -08003949 const char *ret = NULL;
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09303950 struct module *mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Rusty Russellcb2a5202008-01-14 00:55:03 -08003952 preempt_disable();
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09303953 mod = __module_address(addr);
3954 if (mod) {
3955 if (modname)
3956 *modname = mod->name;
3957 ret = get_ksymbol(mod, addr, size, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 }
Rusty Russell6dd06c92008-01-29 17:13:22 -05003959 /* Make a copy in here where it's safe */
3960 if (ret) {
3961 strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
3962 ret = namebuf;
3963 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08003964 preempt_enable();
Peter Zijlstrab7df4d12015-05-27 11:09:37 +09303965
Andrew Morton92dfc9d2008-02-08 04:18:43 -08003966 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967}
3968
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003969int lookup_module_symbol_name(unsigned long addr, char *symname)
3970{
3971 struct module *mod;
3972
Rusty Russellcb2a5202008-01-14 00:55:03 -08003973 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003974 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10303975 if (mod->state == MODULE_STATE_UNFORMED)
3976 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09303977 if (within_module(addr, mod)) {
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003978 const char *sym;
3979
3980 sym = get_ksymbol(mod, addr, NULL, NULL);
3981 if (!sym)
3982 goto out;
Tejun Heo9281ace2007-07-17 04:03:51 -07003983 strlcpy(symname, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08003984 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003985 return 0;
3986 }
3987 }
3988out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08003989 preempt_enable();
Alexey Dobriyan9d65cb42007-05-08 00:28:43 -07003990 return -ERANGE;
3991}
3992
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07003993int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
3994 unsigned long *offset, char *modname, char *name)
3995{
3996 struct module *mod;
3997
Rusty Russellcb2a5202008-01-14 00:55:03 -08003998 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02003999 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304000 if (mod->state == MODULE_STATE_UNFORMED)
4001 continue;
Petr Mladek9b20a352014-07-27 07:24:01 +09304002 if (within_module(addr, mod)) {
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004003 const char *sym;
4004
4005 sym = get_ksymbol(mod, addr, size, offset);
4006 if (!sym)
4007 goto out;
4008 if (modname)
Tejun Heo9281ace2007-07-17 04:03:51 -07004009 strlcpy(modname, mod->name, MODULE_NAME_LEN);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004010 if (name)
Tejun Heo9281ace2007-07-17 04:03:51 -07004011 strlcpy(name, sym, KSYM_NAME_LEN);
Rusty Russellcb2a5202008-01-14 00:55:03 -08004012 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004013 return 0;
4014 }
4015 }
4016out:
Rusty Russellcb2a5202008-01-14 00:55:03 -08004017 preempt_enable();
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004018 return -ERANGE;
4019}
4020
Alexey Dobriyanea078902007-05-08 00:28:39 -07004021int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
4022 char *name, char *module_name, int *exported)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023{
4024 struct module *mod;
4025
Rusty Russellcb2a5202008-01-14 00:55:03 -08004026 preempt_disable();
Andi Kleend72b3752008-08-30 10:09:00 +02004027 list_for_each_entry_rcu(mod, &modules, list) {
Rusty Russell82440622016-02-03 16:55:26 +10304028 struct mod_kallsyms *kallsyms;
4029
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304030 if (mod->state == MODULE_STATE_UNFORMED)
4031 continue;
Rusty Russell82440622016-02-03 16:55:26 +10304032 kallsyms = rcu_dereference_sched(mod->kallsyms);
4033 if (symnum < kallsyms->num_symtab) {
4034 *value = kallsyms->symtab[symnum].st_value;
4035 *type = kallsyms->symtab[symnum].st_info;
4036 strlcpy(name, symname(kallsyms, symnum), KSYM_NAME_LEN);
Tejun Heo9281ace2007-07-17 04:03:51 -07004037 strlcpy(module_name, mod->name, MODULE_NAME_LEN);
Tim Abbottca4787b2009-01-05 08:40:10 -06004038 *exported = is_exported(name, *value, mod);
Rusty Russellcb2a5202008-01-14 00:55:03 -08004039 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07004040 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 }
Rusty Russell82440622016-02-03 16:55:26 +10304042 symnum -= kallsyms->num_symtab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08004044 preempt_enable();
Alexey Dobriyanea078902007-05-08 00:28:39 -07004045 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046}
4047
4048static unsigned long mod_find_symname(struct module *mod, const char *name)
4049{
4050 unsigned int i;
Rusty Russell82440622016-02-03 16:55:26 +10304051 struct mod_kallsyms *kallsyms = rcu_dereference_sched(mod->kallsyms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052
Rusty Russell82440622016-02-03 16:55:26 +10304053 for (i = 0; i < kallsyms->num_symtab; i++)
4054 if (strcmp(name, symname(kallsyms, i)) == 0 &&
Jessica Yu9f2d1e62018-06-05 10:22:52 +02004055 kallsyms->symtab[i].st_shndx != SHN_UNDEF)
Rusty Russell82440622016-02-03 16:55:26 +10304056 return kallsyms->symtab[i].st_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 return 0;
4058}
4059
4060/* Look for this name: can be of form module:name. */
4061unsigned long module_kallsyms_lookup_name(const char *name)
4062{
4063 struct module *mod;
4064 char *colon;
4065 unsigned long ret = 0;
4066
4067 /* Don't lock: we're in enough trouble already. */
Rusty Russellcb2a5202008-01-14 00:55:03 -08004068 preempt_disable();
Naveen N. Rao17586182017-04-23 22:53:43 +05304069 if ((colon = strnchr(name, MODULE_NAME_LEN, ':')) != NULL) {
Mathias Krause4f6de4d2013-07-02 15:35:11 +09304070 if ((mod = find_module_all(name, colon - name, false)) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 ret = mod_find_symname(mod, colon+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 } else {
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304073 list_for_each_entry_rcu(mod, &modules, list) {
4074 if (mod->state == MODULE_STATE_UNFORMED)
4075 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 if ((ret = mod_find_symname(mod, name)) != 0)
4077 break;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 }
Rusty Russellcb2a5202008-01-14 00:55:03 -08004080 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 return ret;
4082}
Anders Kaseorg75a66612008-12-05 19:03:58 -05004083
4084int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
4085 struct module *, unsigned long),
4086 void *data)
4087{
4088 struct module *mod;
4089 unsigned int i;
4090 int ret;
4091
Peter Zijlstra0be964b2015-05-27 11:09:35 +09304092 module_assert_mutex();
4093
Anders Kaseorg75a66612008-12-05 19:03:58 -05004094 list_for_each_entry(mod, &modules, list) {
Rusty Russell82440622016-02-03 16:55:26 +10304095 /* We hold module_mutex: no need for rcu_dereference_sched */
4096 struct mod_kallsyms *kallsyms = mod->kallsyms;
4097
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304098 if (mod->state == MODULE_STATE_UNFORMED)
4099 continue;
Rusty Russell82440622016-02-03 16:55:26 +10304100 for (i = 0; i < kallsyms->num_symtab; i++) {
Jessica Yu9f2d1e62018-06-05 10:22:52 +02004101
4102 if (kallsyms->symtab[i].st_shndx == SHN_UNDEF)
4103 continue;
4104
Rusty Russell82440622016-02-03 16:55:26 +10304105 ret = fn(data, symname(kallsyms, i),
4106 mod, kallsyms->symtab[i].st_value);
Anders Kaseorg75a66612008-12-05 19:03:58 -05004107 if (ret != 0)
4108 return ret;
4109 }
4110 }
4111 return 0;
4112}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113#endif /* CONFIG_KALLSYMS */
4114
Petr Mladek7fd83292016-09-21 13:47:22 +02004115/* Maximum number of characters written by module_flags() */
4116#define MODULE_FLAGS_BUF_SIZE (TAINT_FLAGS_COUNT + 4)
4117
4118/* Keep in sync with MODULE_FLAGS_BUF_SIZE !!! */
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004119static char *module_flags(struct module *mod, char *buf)
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004120{
4121 int bx = 0;
4122
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304123 BUG_ON(mod->state == MODULE_STATE_UNFORMED);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004124 if (mod->taints ||
4125 mod->state == MODULE_STATE_GOING ||
4126 mod->state == MODULE_STATE_COMING) {
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004127 buf[bx++] = '(';
Kay Sieverscca3e702012-01-13 09:32:15 +10304128 bx += module_flags_taint(mod, buf + bx);
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004129 /* Show a - for module-is-being-unloaded */
4130 if (mod->state == MODULE_STATE_GOING)
4131 buf[bx++] = '-';
4132 /* Show a + for module-is-being-loaded */
4133 if (mod->state == MODULE_STATE_COMING)
4134 buf[bx++] = '+';
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004135 buf[bx++] = ')';
4136 }
4137 buf[bx] = '\0';
4138
4139 return buf;
4140}
4141
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004142#ifdef CONFIG_PROC_FS
4143/* Called by the /proc file system to return a list of modules. */
4144static void *m_start(struct seq_file *m, loff_t *pos)
4145{
4146 mutex_lock(&module_mutex);
4147 return seq_list_start(&modules, *pos);
4148}
4149
4150static void *m_next(struct seq_file *m, void *p, loff_t *pos)
4151{
4152 return seq_list_next(p, &modules, pos);
4153}
4154
4155static void m_stop(struct seq_file *m, void *p)
4156{
4157 mutex_unlock(&module_mutex);
4158}
4159
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160static int m_show(struct seq_file *m, void *p)
4161{
4162 struct module *mod = list_entry(p, struct module, list);
Petr Mladek7fd83292016-09-21 13:47:22 +02004163 char buf[MODULE_FLAGS_BUF_SIZE];
Linus Torvalds668533d2017-11-29 10:30:13 -08004164 void *value;
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004165
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304166 /* We always ignore unformed modules. */
4167 if (mod->state == MODULE_STATE_UNFORMED)
4168 return 0;
4169
Denys Vlasenko2f0f2a32008-07-22 19:24:27 -05004170 seq_printf(m, "%s %u",
Rusty Russell7523e4d2015-11-26 09:44:08 +10304171 mod->name, mod->init_layout.size + mod->core_layout.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 print_unload_info(m, mod);
4173
4174 /* Informative for users. */
4175 seq_printf(m, " %s",
Ionut Alexa6da0b562014-11-10 09:31:29 +10304176 mod->state == MODULE_STATE_GOING ? "Unloading" :
4177 mod->state == MODULE_STATE_COMING ? "Loading" :
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 "Live");
4179 /* Used by oprofile and other similar tools. */
Linus Torvalds668533d2017-11-29 10:30:13 -08004180 value = m->private ? NULL : mod->core_layout.base;
4181 seq_printf(m, " 0x%px", value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004183 /* Taints info */
4184 if (mod->taints)
Arjan van de Ven21aa9282008-01-25 21:08:33 +01004185 seq_printf(m, " %s", module_flags(mod, buf));
Florin Malitafa3ba2e82006-10-11 01:21:48 -07004186
Ionut Alexa6da0b562014-11-10 09:31:29 +10304187 seq_puts(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 return 0;
4189}
4190
4191/* Format: modulename size refcount deps address
4192
4193 Where refcount is a number or -, and deps is a comma-separated list
4194 of depends or -.
4195*/
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004196static const struct seq_operations modules_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 .start = m_start,
4198 .next = m_next,
4199 .stop = m_stop,
4200 .show = m_show
4201};
4202
Linus Torvalds516fb7f2017-11-12 18:44:23 -08004203/*
4204 * This also sets the "private" pointer to non-NULL if the
4205 * kernel pointers should be hidden (so you can just test
4206 * "m->private" to see if you should keep the values private).
4207 *
4208 * We use the same logic as for /proc/kallsyms.
4209 */
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004210static int modules_open(struct inode *inode, struct file *file)
4211{
Linus Torvalds516fb7f2017-11-12 18:44:23 -08004212 int err = seq_open(file, &modules_op);
4213
4214 if (!err) {
4215 struct seq_file *m = file->private_data;
4216 m->private = kallsyms_show_value() ? NULL : (void *)8ul;
4217 }
4218
Leon Yu3f553b32018-03-06 23:16:24 +08004219 return err;
Alexey Dobriyan3b5d5c62008-10-06 13:19:27 +04004220}
4221
4222static const struct file_operations proc_modules_operations = {
4223 .open = modules_open,
4224 .read = seq_read,
4225 .llseek = seq_lseek,
4226 .release = seq_release,
4227};
4228
4229static int __init proc_modules_init(void)
4230{
4231 proc_create("modules", 0, NULL, &proc_modules_operations);
4232 return 0;
4233}
4234module_init(proc_modules_init);
4235#endif
4236
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237/* Given an address, look for it in the module exception tables. */
4238const struct exception_table_entry *search_module_extables(unsigned long addr)
4239{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 const struct exception_table_entry *e = NULL;
4241 struct module *mod;
4242
Rusty Russell24da1cb2007-07-15 23:41:46 -07004243 preempt_disable();
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004244 mod = __module_address(addr);
4245 if (!mod)
4246 goto out;
Daniel Walker22a8bde2007-10-18 03:06:07 -07004247
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004248 if (!mod->num_exentries)
4249 goto out;
4250
4251 e = search_extable(mod->extable,
Thomas Meyera94c33d2017-07-10 15:51:58 -07004252 mod->num_exentries,
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004253 addr);
4254out:
Rusty Russell24da1cb2007-07-15 23:41:46 -07004255 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Peter Zijlstra5ff22642017-02-08 15:48:01 +01004257 /*
4258 * Now, if we found one, we are running inside it now, hence
4259 * we cannot unload the module, hence no refcnt needed.
4260 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 return e;
4262}
4263
Ingo Molnar4d435f92006-07-03 00:24:24 -07004264/*
Rusty Russelle6104992009-03-31 13:05:31 -06004265 * is_module_address - is this address inside a module?
4266 * @addr: the address to check.
4267 *
4268 * See is_module_text_address() if you simply want to see if the address
4269 * is code (not data).
Ingo Molnar4d435f92006-07-03 00:24:24 -07004270 */
Rusty Russelle6104992009-03-31 13:05:31 -06004271bool is_module_address(unsigned long addr)
Ingo Molnar4d435f92006-07-03 00:24:24 -07004272{
Rusty Russelle6104992009-03-31 13:05:31 -06004273 bool ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07004274
Rusty Russell24da1cb2007-07-15 23:41:46 -07004275 preempt_disable();
Rusty Russelle6104992009-03-31 13:05:31 -06004276 ret = __module_address(addr) != NULL;
Rusty Russell24da1cb2007-07-15 23:41:46 -07004277 preempt_enable();
Ingo Molnar4d435f92006-07-03 00:24:24 -07004278
Rusty Russelle6104992009-03-31 13:05:31 -06004279 return ret;
Ingo Molnar4d435f92006-07-03 00:24:24 -07004280}
4281
Rusty Russelle6104992009-03-31 13:05:31 -06004282/*
4283 * __module_address - get the module which contains an address.
4284 * @addr: the address.
4285 *
4286 * Must be called with preempt disabled or module mutex held so that
4287 * module doesn't get freed during this.
4288 */
Linus Torvalds714f83d2009-04-05 11:04:19 -07004289struct module *__module_address(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290{
4291 struct module *mod;
4292
Rusty Russell3a642e92008-07-22 19:24:28 -05004293 if (addr < module_addr_min || addr > module_addr_max)
4294 return NULL;
4295
Peter Zijlstra0be964b2015-05-27 11:09:35 +09304296 module_assert_mutex_or_preempt();
4297
Peter Zijlstra6c9692e2015-05-27 11:09:37 +09304298 mod = mod_find(addr);
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304299 if (mod) {
4300 BUG_ON(!within_module(addr, mod));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304301 if (mod->state == MODULE_STATE_UNFORMED)
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304302 mod = NULL;
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304303 }
Peter Zijlstra93c2e102015-05-27 11:09:37 +09304304 return mod;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305}
Tim Abbottc6b37802008-12-05 19:03:59 -05004306EXPORT_SYMBOL_GPL(__module_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
Rusty Russelle6104992009-03-31 13:05:31 -06004308/*
4309 * is_module_text_address - is this address inside module code?
4310 * @addr: the address to check.
4311 *
4312 * See is_module_address() if you simply want to see if the address is
4313 * anywhere in a module. See kernel_text_address() for testing if an
4314 * address corresponds to kernel or module code.
4315 */
4316bool is_module_text_address(unsigned long addr)
4317{
4318 bool ret;
4319
4320 preempt_disable();
4321 ret = __module_text_address(addr) != NULL;
4322 preempt_enable();
4323
4324 return ret;
4325}
4326
4327/*
4328 * __module_text_address - get the module whose code contains an address.
4329 * @addr: the address.
4330 *
4331 * Must be called with preempt disabled or module mutex held so that
4332 * module doesn't get freed during this.
4333 */
4334struct module *__module_text_address(unsigned long addr)
4335{
4336 struct module *mod = __module_address(addr);
4337 if (mod) {
4338 /* Make sure it's within the text section. */
Rusty Russell7523e4d2015-11-26 09:44:08 +10304339 if (!within(addr, mod->init_layout.base, mod->init_layout.text_size)
4340 && !within(addr, mod->core_layout.base, mod->core_layout.text_size))
Rusty Russelle6104992009-03-31 13:05:31 -06004341 mod = NULL;
4342 }
4343 return mod;
4344}
Tim Abbottc6b37802008-12-05 19:03:59 -05004345EXPORT_SYMBOL_GPL(__module_text_address);
Rusty Russelle6104992009-03-31 13:05:31 -06004346
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347/* Don't grab lock, we're oopsing. */
4348void print_modules(void)
4349{
4350 struct module *mod;
Petr Mladek7fd83292016-09-21 13:47:22 +02004351 char buf[MODULE_FLAGS_BUF_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352
Linus Torvaldsb2311252009-06-16 11:07:14 -07004353 printk(KERN_DEFAULT "Modules linked in:");
Andi Kleend72b3752008-08-30 10:09:00 +02004354 /* Most callers should already have preempt disabled, but make sure */
4355 preempt_disable();
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304356 list_for_each_entry_rcu(mod, &modules, list) {
4357 if (mod->state == MODULE_STATE_UNFORMED)
4358 continue;
Jiri Slaby27bba4d2014-02-03 11:13:13 +10304359 pr_cont(" %s%s", mod->name, module_flags(mod, buf));
Rusty Russell0d21b0e2013-01-12 11:38:44 +10304360 }
Andi Kleend72b3752008-08-30 10:09:00 +02004361 preempt_enable();
Arjan van de Vene14af7e2008-01-25 21:08:33 +01004362 if (last_unloaded_module[0])
Jiri Slaby27bba4d2014-02-03 11:13:13 +10304363 pr_cont(" [last unloaded: %s]", last_unloaded_module);
4364 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365}
4366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367#ifdef CONFIG_MODVERSIONS
Rusty Russell8c8ef422009-03-31 13:05:34 -06004368/* Generate the signature for all relevant module structures here.
4369 * If these change, we don't want to try to parse the module. */
4370void module_layout(struct module *mod,
4371 struct modversion_info *ver,
4372 struct kernel_param *kp,
4373 struct kernel_symbol *ks,
Mathieu Desnoyers65498642011-01-26 17:26:22 -05004374 struct tracepoint * const *tp)
Rusty Russell8c8ef422009-03-31 13:05:34 -06004375{
4376}
4377EXPORT_SYMBOL(module_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378#endif