]>
Commit | Line | Data |
---|---|---|
f71d20e9 | 1 | /* |
1da177e4 | 2 | Copyright (C) 2002 Richard Henderson |
51f3d0f4 | 3 | Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM. |
1da177e4 LT |
4 | |
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 | */ | |
9984de1a | 19 | #include <linux/export.h> |
1da177e4 | 20 | #include <linux/moduleloader.h> |
6d723736 | 21 | #include <linux/ftrace_event.h> |
1da177e4 | 22 | #include <linux/init.h> |
ae84e324 | 23 | #include <linux/kallsyms.h> |
34e1169d | 24 | #include <linux/file.h> |
3b5d5c6b | 25 | #include <linux/fs.h> |
6d760133 | 26 | #include <linux/sysfs.h> |
9f158333 | 27 | #include <linux/kernel.h> |
1da177e4 LT |
28 | #include <linux/slab.h> |
29 | #include <linux/vmalloc.h> | |
30 | #include <linux/elf.h> | |
3b5d5c6b | 31 | #include <linux/proc_fs.h> |
1da177e4 LT |
32 | #include <linux/seq_file.h> |
33 | #include <linux/syscalls.h> | |
34 | #include <linux/fcntl.h> | |
35 | #include <linux/rcupdate.h> | |
c59ede7b | 36 | #include <linux/capability.h> |
1da177e4 LT |
37 | #include <linux/cpu.h> |
38 | #include <linux/moduleparam.h> | |
39 | #include <linux/errno.h> | |
40 | #include <linux/err.h> | |
41 | #include <linux/vermagic.h> | |
42 | #include <linux/notifier.h> | |
f6a57033 | 43 | #include <linux/sched.h> |
1da177e4 LT |
44 | #include <linux/stop_machine.h> |
45 | #include <linux/device.h> | |
c988d2b2 | 46 | #include <linux/string.h> |
97d1f15b | 47 | #include <linux/mutex.h> |
d72b3751 | 48 | #include <linux/rculist.h> |
1da177e4 | 49 | #include <asm/uaccess.h> |
1da177e4 | 50 | #include <asm/cacheflush.h> |
eb8cdec4 | 51 | #include <asm/mmu_context.h> |
b817f6fe | 52 | #include <linux/license.h> |
6d762394 | 53 | #include <asm/sections.h> |
97e1c18e | 54 | #include <linux/tracepoint.h> |
90d595fe | 55 | #include <linux/ftrace.h> |
22a9d645 | 56 | #include <linux/async.h> |
fbf59bc9 | 57 | #include <linux/percpu.h> |
4f2294b6 | 58 | #include <linux/kmemleak.h> |
bf5438fc | 59 | #include <linux/jump_label.h> |
84e1c6bb | 60 | #include <linux/pfn.h> |
403ed278 | 61 | #include <linux/bsearch.h> |
1d0059f3 | 62 | #include <linux/fips.h> |
2f3238ae | 63 | #include <uapi/linux/module.h> |
106a4ee2 | 64 | #include "module-internal.h" |
1da177e4 | 65 | |
7ead8b83 LZ |
66 | #define CREATE_TRACE_POINTS |
67 | #include <trace/events/module.h> | |
68 | ||
1da177e4 LT |
69 | #ifndef ARCH_SHF_SMALL |
70 | #define ARCH_SHF_SMALL 0 | |
71 | #endif | |
72 | ||
84e1c6bb MC |
73 | /* |
74 | * Modules' sections will be aligned on page boundaries | |
75 | * to ensure complete separation of code and data, but | |
76 | * only when CONFIG_DEBUG_SET_MODULE_RONX=y | |
77 | */ | |
78 | #ifdef CONFIG_DEBUG_SET_MODULE_RONX | |
79 | # define debug_align(X) ALIGN(X, PAGE_SIZE) | |
80 | #else | |
81 | # define debug_align(X) (X) | |
82 | #endif | |
83 | ||
84 | /* | |
85 | * Given BASE and SIZE this macro calculates the number of pages the | |
86 | * memory regions occupies | |
87 | */ | |
88 | #define MOD_NUMBER_OF_PAGES(BASE, SIZE) (((SIZE) > 0) ? \ | |
89 | (PFN_DOWN((unsigned long)(BASE) + (SIZE) - 1) - \ | |
90 | PFN_DOWN((unsigned long)BASE) + 1) \ | |
91 | : (0UL)) | |
92 | ||
1da177e4 LT |
93 | /* If this is set, the section belongs in the init part of the module */ |
94 | #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1)) | |
95 | ||
75676500 RR |
96 | /* |
97 | * Mutex protects: | |
98 | * 1) List of modules (also safely readable with preempt_disable), | |
99 | * 2) module_use links, | |
100 | * 3) module_addr_min/module_addr_max. | |
d72b3751 | 101 | * (delete uses stop_machine/add uses RCU list operations). */ |
c6b37801 TA |
102 | DEFINE_MUTEX(module_mutex); |
103 | EXPORT_SYMBOL_GPL(module_mutex); | |
1da177e4 | 104 | static LIST_HEAD(modules); |
67fc4e0c JW |
105 | #ifdef CONFIG_KGDB_KDB |
106 | struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */ | |
107 | #endif /* CONFIG_KGDB_KDB */ | |
108 | ||
106a4ee2 RR |
109 | #ifdef CONFIG_MODULE_SIG |
110 | #ifdef CONFIG_MODULE_SIG_FORCE | |
111 | static bool sig_enforce = true; | |
112 | #else | |
113 | static bool sig_enforce = false; | |
114 | ||
115 | static int param_set_bool_enable_only(const char *val, | |
116 | const struct kernel_param *kp) | |
117 | { | |
118 | int err; | |
119 | bool test; | |
120 | struct kernel_param dummy_kp = *kp; | |
121 | ||
122 | dummy_kp.arg = &test; | |
123 | ||
124 | err = param_set_bool(val, &dummy_kp); | |
125 | if (err) | |
126 | return err; | |
127 | ||
128 | /* Don't let them unset it once it's set! */ | |
129 | if (!test && sig_enforce) | |
130 | return -EROFS; | |
131 | ||
132 | if (test) | |
133 | sig_enforce = true; | |
134 | return 0; | |
135 | } | |
136 | ||
137 | static const struct kernel_param_ops param_ops_bool_enable_only = { | |
138 | .set = param_set_bool_enable_only, | |
139 | .get = param_get_bool, | |
140 | }; | |
141 | #define param_check_bool_enable_only param_check_bool | |
142 | ||
143 | module_param(sig_enforce, bool_enable_only, 0644); | |
144 | #endif /* !CONFIG_MODULE_SIG_FORCE */ | |
145 | #endif /* CONFIG_MODULE_SIG */ | |
1da177e4 | 146 | |
19e4529e SR |
147 | /* Block module loading/unloading? */ |
148 | int modules_disabled = 0; | |
02608bef | 149 | core_param(nomodule, modules_disabled, bint, 0); |
19e4529e | 150 | |
c9a3ba55 RR |
151 | /* Waiting for a module to finish initializing? */ |
152 | static DECLARE_WAIT_QUEUE_HEAD(module_wq); | |
153 | ||
e041c683 | 154 | static BLOCKING_NOTIFIER_HEAD(module_notify_list); |
1da177e4 | 155 | |
75676500 RR |
156 | /* Bounds of module allocation, for speeding __module_address. |
157 | * Protected by module_mutex. */ | |
3a642e99 RR |
158 | static unsigned long module_addr_min = -1UL, module_addr_max = 0; |
159 | ||
1da177e4 LT |
160 | int register_module_notifier(struct notifier_block * nb) |
161 | { | |
e041c683 | 162 | return blocking_notifier_chain_register(&module_notify_list, nb); |
1da177e4 LT |
163 | } |
164 | EXPORT_SYMBOL(register_module_notifier); | |
165 | ||
166 | int unregister_module_notifier(struct notifier_block * nb) | |
167 | { | |
e041c683 | 168 | return blocking_notifier_chain_unregister(&module_notify_list, nb); |
1da177e4 LT |
169 | } |
170 | EXPORT_SYMBOL(unregister_module_notifier); | |
171 | ||
eded41c1 RR |
172 | struct load_info { |
173 | Elf_Ehdr *hdr; | |
174 | unsigned long len; | |
175 | Elf_Shdr *sechdrs; | |
6526c534 | 176 | char *secstrings, *strtab; |
d913188c | 177 | unsigned long symoffs, stroffs; |
811d66a0 RR |
178 | struct _ddebug *debug; |
179 | unsigned int num_debug; | |
106a4ee2 | 180 | bool sig_ok; |
eded41c1 RR |
181 | struct { |
182 | unsigned int sym, str, mod, vers, info, pcpu; | |
183 | } index; | |
184 | }; | |
185 | ||
9a4b9708 ML |
186 | /* We require a truly strong try_module_get(): 0 means failure due to |
187 | ongoing or failed initialization etc. */ | |
1da177e4 LT |
188 | static inline int strong_try_module_get(struct module *mod) |
189 | { | |
190 | if (mod && mod->state == MODULE_STATE_COMING) | |
c9a3ba55 RR |
191 | return -EBUSY; |
192 | if (try_module_get(mod)) | |
1da177e4 | 193 | return 0; |
c9a3ba55 RR |
194 | else |
195 | return -ENOENT; | |
1da177e4 LT |
196 | } |
197 | ||
fa3ba2e8 FM |
198 | static inline void add_taint_module(struct module *mod, unsigned flag) |
199 | { | |
200 | add_taint(flag); | |
25ddbb18 | 201 | mod->taints |= (1U << flag); |
fa3ba2e8 FM |
202 | } |
203 | ||
02a3e59a RD |
204 | /* |
205 | * A thread that wants to hold a reference to a module only while it | |
206 | * is running can call this to safely exit. nfsd and lockd use this. | |
1da177e4 LT |
207 | */ |
208 | void __module_put_and_exit(struct module *mod, long code) | |
209 | { | |
210 | module_put(mod); | |
211 | do_exit(code); | |
212 | } | |
213 | EXPORT_SYMBOL(__module_put_and_exit); | |
22a8bdeb | 214 | |
1da177e4 | 215 | /* Find a module section: 0 means not found. */ |
49668688 | 216 | static unsigned int find_sec(const struct load_info *info, const char *name) |
1da177e4 LT |
217 | { |
218 | unsigned int i; | |
219 | ||
49668688 RR |
220 | for (i = 1; i < info->hdr->e_shnum; i++) { |
221 | Elf_Shdr *shdr = &info->sechdrs[i]; | |
1da177e4 | 222 | /* Alloc bit cleared means "ignore it." */ |
49668688 RR |
223 | if ((shdr->sh_flags & SHF_ALLOC) |
224 | && strcmp(info->secstrings + shdr->sh_name, name) == 0) | |
1da177e4 | 225 | return i; |
49668688 | 226 | } |
1da177e4 LT |
227 | return 0; |
228 | } | |
229 | ||
5e458cc0 | 230 | /* Find a module section, or NULL. */ |
49668688 | 231 | static void *section_addr(const struct load_info *info, const char *name) |
5e458cc0 RR |
232 | { |
233 | /* Section 0 has sh_addr 0. */ | |
49668688 | 234 | return (void *)info->sechdrs[find_sec(info, name)].sh_addr; |
5e458cc0 RR |
235 | } |
236 | ||
237 | /* Find a module section, or NULL. Fill in number of "objects" in section. */ | |
49668688 | 238 | static void *section_objs(const struct load_info *info, |
5e458cc0 RR |
239 | const char *name, |
240 | size_t object_size, | |
241 | unsigned int *num) | |
242 | { | |
49668688 | 243 | unsigned int sec = find_sec(info, name); |
5e458cc0 RR |
244 | |
245 | /* Section 0 has sh_addr 0 and sh_size 0. */ | |
49668688 RR |
246 | *num = info->sechdrs[sec].sh_size / object_size; |
247 | return (void *)info->sechdrs[sec].sh_addr; | |
5e458cc0 RR |
248 | } |
249 | ||
1da177e4 LT |
250 | /* Provided by the linker */ |
251 | extern const struct kernel_symbol __start___ksymtab[]; | |
252 | extern const struct kernel_symbol __stop___ksymtab[]; | |
253 | extern const struct kernel_symbol __start___ksymtab_gpl[]; | |
254 | extern const struct kernel_symbol __stop___ksymtab_gpl[]; | |
9f28bb7e GKH |
255 | extern const struct kernel_symbol __start___ksymtab_gpl_future[]; |
256 | extern const struct kernel_symbol __stop___ksymtab_gpl_future[]; | |
1da177e4 LT |
257 | extern const unsigned long __start___kcrctab[]; |
258 | extern const unsigned long __start___kcrctab_gpl[]; | |
9f28bb7e | 259 | extern const unsigned long __start___kcrctab_gpl_future[]; |
f7f5b675 DV |
260 | #ifdef CONFIG_UNUSED_SYMBOLS |
261 | extern const struct kernel_symbol __start___ksymtab_unused[]; | |
262 | extern const struct kernel_symbol __stop___ksymtab_unused[]; | |
263 | extern const struct kernel_symbol __start___ksymtab_unused_gpl[]; | |
264 | extern const struct kernel_symbol __stop___ksymtab_unused_gpl[]; | |
f71d20e9 AV |
265 | extern const unsigned long __start___kcrctab_unused[]; |
266 | extern const unsigned long __start___kcrctab_unused_gpl[]; | |
f7f5b675 | 267 | #endif |
1da177e4 LT |
268 | |
269 | #ifndef CONFIG_MODVERSIONS | |
270 | #define symversion(base, idx) NULL | |
271 | #else | |
f83ca9fe | 272 | #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL) |
1da177e4 LT |
273 | #endif |
274 | ||
dafd0940 RR |
275 | static bool each_symbol_in_section(const struct symsearch *arr, |
276 | unsigned int arrsize, | |
277 | struct module *owner, | |
278 | bool (*fn)(const struct symsearch *syms, | |
279 | struct module *owner, | |
de4d8d53 | 280 | void *data), |
dafd0940 | 281 | void *data) |
ad9546c9 | 282 | { |
de4d8d53 | 283 | unsigned int j; |
ad9546c9 | 284 | |
dafd0940 | 285 | for (j = 0; j < arrsize; j++) { |
de4d8d53 RR |
286 | if (fn(&arr[j], owner, data)) |
287 | return true; | |
f71d20e9 | 288 | } |
dafd0940 RR |
289 | |
290 | return false; | |
ad9546c9 RR |
291 | } |
292 | ||
dafd0940 | 293 | /* Returns true as soon as fn returns true, otherwise false. */ |
de4d8d53 RR |
294 | bool each_symbol_section(bool (*fn)(const struct symsearch *arr, |
295 | struct module *owner, | |
296 | void *data), | |
297 | void *data) | |
ad9546c9 RR |
298 | { |
299 | struct module *mod; | |
44032e63 | 300 | static const struct symsearch arr[] = { |
ad9546c9 | 301 | { __start___ksymtab, __stop___ksymtab, __start___kcrctab, |
dafd0940 | 302 | NOT_GPL_ONLY, false }, |
ad9546c9 | 303 | { __start___ksymtab_gpl, __stop___ksymtab_gpl, |
dafd0940 RR |
304 | __start___kcrctab_gpl, |
305 | GPL_ONLY, false }, | |
ad9546c9 | 306 | { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future, |
dafd0940 RR |
307 | __start___kcrctab_gpl_future, |
308 | WILL_BE_GPL_ONLY, false }, | |
f7f5b675 | 309 | #ifdef CONFIG_UNUSED_SYMBOLS |
ad9546c9 | 310 | { __start___ksymtab_unused, __stop___ksymtab_unused, |
dafd0940 RR |
311 | __start___kcrctab_unused, |
312 | NOT_GPL_ONLY, true }, | |
ad9546c9 | 313 | { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl, |
dafd0940 RR |
314 | __start___kcrctab_unused_gpl, |
315 | GPL_ONLY, true }, | |
f7f5b675 | 316 | #endif |
ad9546c9 | 317 | }; |
f71d20e9 | 318 | |
dafd0940 RR |
319 | if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data)) |
320 | return true; | |
f71d20e9 | 321 | |
d72b3751 | 322 | list_for_each_entry_rcu(mod, &modules, list) { |
ad9546c9 RR |
323 | struct symsearch arr[] = { |
324 | { mod->syms, mod->syms + mod->num_syms, mod->crcs, | |
dafd0940 | 325 | NOT_GPL_ONLY, false }, |
ad9546c9 | 326 | { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms, |
dafd0940 RR |
327 | mod->gpl_crcs, |
328 | GPL_ONLY, false }, | |
ad9546c9 RR |
329 | { mod->gpl_future_syms, |
330 | mod->gpl_future_syms + mod->num_gpl_future_syms, | |
dafd0940 RR |
331 | mod->gpl_future_crcs, |
332 | WILL_BE_GPL_ONLY, false }, | |
f7f5b675 | 333 | #ifdef CONFIG_UNUSED_SYMBOLS |
ad9546c9 RR |
334 | { mod->unused_syms, |
335 | mod->unused_syms + mod->num_unused_syms, | |
dafd0940 RR |
336 | mod->unused_crcs, |
337 | NOT_GPL_ONLY, true }, | |
ad9546c9 RR |
338 | { mod->unused_gpl_syms, |
339 | mod->unused_gpl_syms + mod->num_unused_gpl_syms, | |
dafd0940 RR |
340 | mod->unused_gpl_crcs, |
341 | GPL_ONLY, true }, | |
f7f5b675 | 342 | #endif |
ad9546c9 RR |
343 | }; |
344 | ||
dafd0940 RR |
345 | if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data)) |
346 | return true; | |
347 | } | |
348 | return false; | |
349 | } | |
de4d8d53 | 350 | EXPORT_SYMBOL_GPL(each_symbol_section); |
dafd0940 RR |
351 | |
352 | struct find_symbol_arg { | |
353 | /* Input */ | |
354 | const char *name; | |
355 | bool gplok; | |
356 | bool warn; | |
357 | ||
358 | /* Output */ | |
359 | struct module *owner; | |
360 | const unsigned long *crc; | |
414fd31b | 361 | const struct kernel_symbol *sym; |
dafd0940 RR |
362 | }; |
363 | ||
de4d8d53 RR |
364 | static bool check_symbol(const struct symsearch *syms, |
365 | struct module *owner, | |
366 | unsigned int symnum, void *data) | |
dafd0940 RR |
367 | { |
368 | struct find_symbol_arg *fsa = data; | |
369 | ||
dafd0940 RR |
370 | if (!fsa->gplok) { |
371 | if (syms->licence == GPL_ONLY) | |
372 | return false; | |
373 | if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) { | |
374 | printk(KERN_WARNING "Symbol %s is being used " | |
375 | "by a non-GPL module, which will not " | |
376 | "be allowed in the future\n", fsa->name); | |
377 | printk(KERN_WARNING "Please see the file " | |
378 | "Documentation/feature-removal-schedule.txt " | |
379 | "in the kernel source tree for more details.\n"); | |
9f28bb7e | 380 | } |
1da177e4 | 381 | } |
ad9546c9 | 382 | |
f7f5b675 | 383 | #ifdef CONFIG_UNUSED_SYMBOLS |
dafd0940 RR |
384 | if (syms->unused && fsa->warn) { |
385 | printk(KERN_WARNING "Symbol %s is marked as UNUSED, " | |
386 | "however this module is using it.\n", fsa->name); | |
387 | printk(KERN_WARNING | |
388 | "This symbol will go away in the future.\n"); | |
389 | printk(KERN_WARNING | |
390 | "Please evalute if this is the right api to use and if " | |
391 | "it really is, submit a report the linux kernel " | |
392 | "mailinglist together with submitting your code for " | |
393 | "inclusion.\n"); | |
394 | } | |
f7f5b675 | 395 | #endif |
dafd0940 RR |
396 | |
397 | fsa->owner = owner; | |
398 | fsa->crc = symversion(syms->crcs, symnum); | |
414fd31b | 399 | fsa->sym = &syms->start[symnum]; |
dafd0940 RR |
400 | return true; |
401 | } | |
402 | ||
403ed278 AIB |
403 | static int cmp_name(const void *va, const void *vb) |
404 | { | |
405 | const char *a; | |
406 | const struct kernel_symbol *b; | |
407 | a = va; b = vb; | |
408 | return strcmp(a, b->name); | |
409 | } | |
410 | ||
de4d8d53 RR |
411 | static bool find_symbol_in_section(const struct symsearch *syms, |
412 | struct module *owner, | |
413 | void *data) | |
414 | { | |
415 | struct find_symbol_arg *fsa = data; | |
403ed278 AIB |
416 | struct kernel_symbol *sym; |
417 | ||
418 | sym = bsearch(fsa->name, syms->start, syms->stop - syms->start, | |
419 | sizeof(struct kernel_symbol), cmp_name); | |
420 | ||
421 | if (sym != NULL && check_symbol(syms, owner, sym - syms->start, data)) | |
422 | return true; | |
de4d8d53 | 423 | |
de4d8d53 RR |
424 | return false; |
425 | } | |
426 | ||
414fd31b | 427 | /* Find a symbol and return it, along with, (optional) crc and |
75676500 | 428 | * (optional) module which owns it. Needs preempt disabled or module_mutex. */ |
c6b37801 TA |
429 | const struct kernel_symbol *find_symbol(const char *name, |
430 | struct module **owner, | |
431 | const unsigned long **crc, | |
432 | bool gplok, | |
433 | bool warn) | |
dafd0940 RR |
434 | { |
435 | struct find_symbol_arg fsa; | |
436 | ||
437 | fsa.name = name; | |
438 | fsa.gplok = gplok; | |
439 | fsa.warn = warn; | |
440 | ||
de4d8d53 | 441 | if (each_symbol_section(find_symbol_in_section, &fsa)) { |
dafd0940 RR |
442 | if (owner) |
443 | *owner = fsa.owner; | |
444 | if (crc) | |
445 | *crc = fsa.crc; | |
414fd31b | 446 | return fsa.sym; |
dafd0940 RR |
447 | } |
448 | ||
5e124169 | 449 | pr_debug("Failed to find symbol %s\n", name); |
414fd31b | 450 | return NULL; |
1da177e4 | 451 | } |
c6b37801 | 452 | EXPORT_SYMBOL_GPL(find_symbol); |
1da177e4 | 453 | |
1da177e4 | 454 | /* Search for module by name: must hold module_mutex. */ |
c6b37801 | 455 | struct module *find_module(const char *name) |
1da177e4 LT |
456 | { |
457 | struct module *mod; | |
458 | ||
459 | list_for_each_entry(mod, &modules, list) { | |
460 | if (strcmp(mod->name, name) == 0) | |
461 | return mod; | |
462 | } | |
463 | return NULL; | |
464 | } | |
c6b37801 | 465 | EXPORT_SYMBOL_GPL(find_module); |
1da177e4 LT |
466 | |
467 | #ifdef CONFIG_SMP | |
fbf59bc9 | 468 | |
259354de | 469 | static inline void __percpu *mod_percpu(struct module *mod) |
fbf59bc9 | 470 | { |
259354de TH |
471 | return mod->percpu; |
472 | } | |
fbf59bc9 | 473 | |
259354de TH |
474 | static int percpu_modalloc(struct module *mod, |
475 | unsigned long size, unsigned long align) | |
476 | { | |
fbf59bc9 TH |
477 | if (align > PAGE_SIZE) { |
478 | printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n", | |
259354de | 479 | mod->name, align, PAGE_SIZE); |
fbf59bc9 TH |
480 | align = PAGE_SIZE; |
481 | } | |
482 | ||
259354de TH |
483 | mod->percpu = __alloc_reserved_percpu(size, align); |
484 | if (!mod->percpu) { | |
fbf59bc9 | 485 | printk(KERN_WARNING |
d913188c RR |
486 | "%s: Could not allocate %lu bytes percpu data\n", |
487 | mod->name, size); | |
259354de TH |
488 | return -ENOMEM; |
489 | } | |
490 | mod->percpu_size = size; | |
491 | return 0; | |
fbf59bc9 TH |
492 | } |
493 | ||
259354de | 494 | static void percpu_modfree(struct module *mod) |
fbf59bc9 | 495 | { |
259354de | 496 | free_percpu(mod->percpu); |
fbf59bc9 TH |
497 | } |
498 | ||
49668688 | 499 | static unsigned int find_pcpusec(struct load_info *info) |
6b588c18 | 500 | { |
49668688 | 501 | return find_sec(info, ".data..percpu"); |
6b588c18 TH |
502 | } |
503 | ||
259354de TH |
504 | static void percpu_modcopy(struct module *mod, |
505 | const void *from, unsigned long size) | |
6b588c18 TH |
506 | { |
507 | int cpu; | |
508 | ||
509 | for_each_possible_cpu(cpu) | |
259354de | 510 | memcpy(per_cpu_ptr(mod->percpu, cpu), from, size); |
6b588c18 TH |
511 | } |
512 | ||
10fad5e4 TH |
513 | /** |
514 | * is_module_percpu_address - test whether address is from module static percpu | |
515 | * @addr: address to test | |
516 | * | |
517 | * Test whether @addr belongs to module static percpu area. | |
518 | * | |
519 | * RETURNS: | |
520 | * %true if @addr is from module static percpu area | |
521 | */ | |
522 | bool is_module_percpu_address(unsigned long addr) | |
523 | { | |
524 | struct module *mod; | |
525 | unsigned int cpu; | |
526 | ||
527 | preempt_disable(); | |
528 | ||
529 | list_for_each_entry_rcu(mod, &modules, list) { | |
530 | if (!mod->percpu_size) | |
531 | continue; | |
532 | for_each_possible_cpu(cpu) { | |
533 | void *start = per_cpu_ptr(mod->percpu, cpu); | |
534 | ||
535 | if ((void *)addr >= start && | |
536 | (void *)addr < start + mod->percpu_size) { | |
537 | preempt_enable(); | |
538 | return true; | |
539 | } | |
540 | } | |
541 | } | |
542 | ||
543 | preempt_enable(); | |
544 | return false; | |
6b588c18 TH |
545 | } |
546 | ||
1da177e4 | 547 | #else /* ... !CONFIG_SMP */ |
6b588c18 | 548 | |
259354de | 549 | static inline void __percpu *mod_percpu(struct module *mod) |
1da177e4 LT |
550 | { |
551 | return NULL; | |
552 | } | |
259354de TH |
553 | static inline int percpu_modalloc(struct module *mod, |
554 | unsigned long size, unsigned long align) | |
555 | { | |
556 | return -ENOMEM; | |
557 | } | |
558 | static inline void percpu_modfree(struct module *mod) | |
1da177e4 | 559 | { |
1da177e4 | 560 | } |
49668688 | 561 | static unsigned int find_pcpusec(struct load_info *info) |
1da177e4 LT |
562 | { |
563 | return 0; | |
564 | } | |
259354de TH |
565 | static inline void percpu_modcopy(struct module *mod, |
566 | const void *from, unsigned long size) | |
1da177e4 LT |
567 | { |
568 | /* pcpusec should be 0, and size of that section should be 0. */ | |
569 | BUG_ON(size != 0); | |
570 | } | |
10fad5e4 TH |
571 | bool is_module_percpu_address(unsigned long addr) |
572 | { | |
573 | return false; | |
574 | } | |
6b588c18 | 575 | |
1da177e4 LT |
576 | #endif /* CONFIG_SMP */ |
577 | ||
c988d2b2 MD |
578 | #define MODINFO_ATTR(field) \ |
579 | static void setup_modinfo_##field(struct module *mod, const char *s) \ | |
580 | { \ | |
581 | mod->field = kstrdup(s, GFP_KERNEL); \ | |
582 | } \ | |
583 | static ssize_t show_modinfo_##field(struct module_attribute *mattr, \ | |
4befb026 | 584 | struct module_kobject *mk, char *buffer) \ |
c988d2b2 | 585 | { \ |
4befb026 | 586 | return sprintf(buffer, "%s\n", mk->mod->field); \ |
c988d2b2 MD |
587 | } \ |
588 | static int modinfo_##field##_exists(struct module *mod) \ | |
589 | { \ | |
590 | return mod->field != NULL; \ | |
591 | } \ | |
592 | static void free_modinfo_##field(struct module *mod) \ | |
593 | { \ | |
22a8bdeb DW |
594 | kfree(mod->field); \ |
595 | mod->field = NULL; \ | |
c988d2b2 MD |
596 | } \ |
597 | static struct module_attribute modinfo_##field = { \ | |
7b595756 | 598 | .attr = { .name = __stringify(field), .mode = 0444 }, \ |
c988d2b2 MD |
599 | .show = show_modinfo_##field, \ |
600 | .setup = setup_modinfo_##field, \ | |
601 | .test = modinfo_##field##_exists, \ | |
602 | .free = free_modinfo_##field, \ | |
603 | }; | |
604 | ||
605 | MODINFO_ATTR(version); | |
606 | MODINFO_ATTR(srcversion); | |
607 | ||
e14af7ee AV |
608 | static char last_unloaded_module[MODULE_NAME_LEN+1]; |
609 | ||
03e88ae1 | 610 | #ifdef CONFIG_MODULE_UNLOAD |
eb0c5377 SR |
611 | |
612 | EXPORT_TRACEPOINT_SYMBOL(module_get); | |
613 | ||
1da177e4 | 614 | /* Init the unload section of the module. */ |
9f85a4bb | 615 | static int module_unload_init(struct module *mod) |
1da177e4 | 616 | { |
9f85a4bb RR |
617 | mod->refptr = alloc_percpu(struct module_ref); |
618 | if (!mod->refptr) | |
619 | return -ENOMEM; | |
620 | ||
2c02dfe7 LT |
621 | INIT_LIST_HEAD(&mod->source_list); |
622 | INIT_LIST_HEAD(&mod->target_list); | |
e1783a24 | 623 | |
1da177e4 | 624 | /* Hold reference count during initialization. */ |
5fbfb18d | 625 | __this_cpu_write(mod->refptr->incs, 1); |
1da177e4 LT |
626 | /* Backwards compatibility macros put refcount during init. */ |
627 | mod->waiter = current; | |
9f85a4bb RR |
628 | |
629 | return 0; | |
1da177e4 LT |
630 | } |
631 | ||
1da177e4 LT |
632 | /* Does a already use b? */ |
633 | static int already_uses(struct module *a, struct module *b) | |
634 | { | |
635 | struct module_use *use; | |
636 | ||
2c02dfe7 LT |
637 | list_for_each_entry(use, &b->source_list, source_list) { |
638 | if (use->source == a) { | |
5e124169 | 639 | pr_debug("%s uses %s!\n", a->name, b->name); |
1da177e4 LT |
640 | return 1; |
641 | } | |
642 | } | |
5e124169 | 643 | pr_debug("%s does not use %s!\n", a->name, b->name); |
1da177e4 LT |
644 | return 0; |
645 | } | |
646 | ||
2c02dfe7 LT |
647 | /* |
648 | * Module a uses b | |
649 | * - we add 'a' as a "source", 'b' as a "target" of module use | |
650 | * - the module_use is added to the list of 'b' sources (so | |
651 | * 'b' can walk the list to see who sourced them), and of 'a' | |
652 | * targets (so 'a' can see what modules it targets). | |
653 | */ | |
654 | static int add_module_usage(struct module *a, struct module *b) | |
655 | { | |
2c02dfe7 LT |
656 | struct module_use *use; |
657 | ||
5e124169 | 658 | pr_debug("Allocating new usage for %s.\n", a->name); |
2c02dfe7 LT |
659 | use = kmalloc(sizeof(*use), GFP_ATOMIC); |
660 | if (!use) { | |
661 | printk(KERN_WARNING "%s: out of memory loading\n", a->name); | |
662 | return -ENOMEM; | |
663 | } | |
664 | ||
665 | use->source = a; | |
666 | use->target = b; | |
667 | list_add(&use->source_list, &b->source_list); | |
668 | list_add(&use->target_list, &a->target_list); | |
2c02dfe7 LT |
669 | return 0; |
670 | } | |
671 | ||
75676500 | 672 | /* Module a uses b: caller needs module_mutex() */ |
9bea7f23 | 673 | int ref_module(struct module *a, struct module *b) |
1da177e4 | 674 | { |
c8e21ced | 675 | int err; |
270a6c4c | 676 | |
9bea7f23 | 677 | if (b == NULL || already_uses(a, b)) |
218ce735 | 678 | return 0; |
218ce735 | 679 | |
9bea7f23 RR |
680 | /* If module isn't available, we fail. */ |
681 | err = strong_try_module_get(b); | |
c9a3ba55 | 682 | if (err) |
9bea7f23 | 683 | return err; |
1da177e4 | 684 | |
2c02dfe7 LT |
685 | err = add_module_usage(a, b); |
686 | if (err) { | |
1da177e4 | 687 | module_put(b); |
9bea7f23 | 688 | return err; |
1da177e4 | 689 | } |
9bea7f23 | 690 | return 0; |
1da177e4 | 691 | } |
9bea7f23 | 692 | EXPORT_SYMBOL_GPL(ref_module); |
1da177e4 LT |
693 | |
694 | /* Clear the unload stuff of the module. */ | |
695 | static void module_unload_free(struct module *mod) | |
696 | { | |
2c02dfe7 | 697 | struct module_use *use, *tmp; |
1da177e4 | 698 | |
75676500 | 699 | mutex_lock(&module_mutex); |
2c02dfe7 LT |
700 | list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) { |
701 | struct module *i = use->target; | |
5e124169 | 702 | pr_debug("%s unusing %s\n", mod->name, i->name); |
2c02dfe7 LT |
703 | module_put(i); |
704 | list_del(&use->source_list); | |
705 | list_del(&use->target_list); | |
706 | kfree(use); | |
1da177e4 | 707 | } |
75676500 | 708 | mutex_unlock(&module_mutex); |
9f85a4bb RR |
709 | |
710 | free_percpu(mod->refptr); | |
1da177e4 LT |
711 | } |
712 | ||
713 | #ifdef CONFIG_MODULE_FORCE_UNLOAD | |
fb169793 | 714 | static inline int try_force_unload(unsigned int flags) |
1da177e4 LT |
715 | { |
716 | int ret = (flags & O_TRUNC); | |
717 | if (ret) | |
fb169793 | 718 | add_taint(TAINT_FORCED_RMMOD); |
1da177e4 LT |
719 | return ret; |
720 | } | |
721 | #else | |
fb169793 | 722 | static inline int try_force_unload(unsigned int flags) |
1da177e4 LT |
723 | { |
724 | return 0; | |
725 | } | |
726 | #endif /* CONFIG_MODULE_FORCE_UNLOAD */ | |
727 | ||
728 | struct stopref | |
729 | { | |
730 | struct module *mod; | |
731 | int flags; | |
732 | int *forced; | |
733 | }; | |
734 | ||
735 | /* Whole machine is stopped with interrupts off when this runs. */ | |
736 | static int __try_stop_module(void *_sref) | |
737 | { | |
738 | struct stopref *sref = _sref; | |
739 | ||
da39ba5e RR |
740 | /* If it's not unused, quit unless we're forcing. */ |
741 | if (module_refcount(sref->mod) != 0) { | |
fb169793 | 742 | if (!(*sref->forced = try_force_unload(sref->flags))) |
1da177e4 LT |
743 | return -EWOULDBLOCK; |
744 | } | |
745 | ||
746 | /* Mark it as dying. */ | |
747 | sref->mod->state = MODULE_STATE_GOING; | |
748 | return 0; | |
749 | } | |
750 | ||
751 | static int try_stop_module(struct module *mod, int flags, int *forced) | |
752 | { | |
da39ba5e RR |
753 | if (flags & O_NONBLOCK) { |
754 | struct stopref sref = { mod, flags, forced }; | |
1da177e4 | 755 | |
9b1a4d38 | 756 | return stop_machine(__try_stop_module, &sref, NULL); |
da39ba5e RR |
757 | } else { |
758 | /* We don't need to stop the machine for this. */ | |
759 | mod->state = MODULE_STATE_GOING; | |
760 | synchronize_sched(); | |
761 | return 0; | |
762 | } | |
1da177e4 LT |
763 | } |
764 | ||
bd77c047 | 765 | unsigned long module_refcount(struct module *mod) |
1da177e4 | 766 | { |
bd77c047 | 767 | unsigned long incs = 0, decs = 0; |
720eba31 | 768 | int cpu; |
1da177e4 | 769 | |
720eba31 | 770 | for_each_possible_cpu(cpu) |
5fbfb18d NP |
771 | decs += per_cpu_ptr(mod->refptr, cpu)->decs; |
772 | /* | |
773 | * ensure the incs are added up after the decs. | |
774 | * module_put ensures incs are visible before decs with smp_wmb. | |
775 | * | |
776 | * This 2-count scheme avoids the situation where the refcount | |
777 | * for CPU0 is read, then CPU0 increments the module refcount, | |
778 | * then CPU1 drops that refcount, then the refcount for CPU1 is | |
779 | * read. We would record a decrement but not its corresponding | |
780 | * increment so we would see a low count (disaster). | |
781 | * | |
782 | * Rare situation? But module_refcount can be preempted, and we | |
783 | * might be tallying up 4096+ CPUs. So it is not impossible. | |
784 | */ | |
785 | smp_rmb(); | |
786 | for_each_possible_cpu(cpu) | |
787 | incs += per_cpu_ptr(mod->refptr, cpu)->incs; | |
788 | return incs - decs; | |
1da177e4 LT |
789 | } |
790 | EXPORT_SYMBOL(module_refcount); | |
791 | ||
792 | /* This exists whether we can unload or not */ | |
793 | static void free_module(struct module *mod); | |
794 | ||
795 | static void wait_for_zero_refcount(struct module *mod) | |
796 | { | |
a6550207 | 797 | /* Since we might sleep for some time, release the mutex first */ |
6389a385 | 798 | mutex_unlock(&module_mutex); |
1da177e4 | 799 | for (;;) { |
5e124169 | 800 | pr_debug("Looking at refcount...\n"); |
1da177e4 LT |
801 | set_current_state(TASK_UNINTERRUPTIBLE); |
802 | if (module_refcount(mod) == 0) | |
803 | break; | |
804 | schedule(); | |
805 | } | |
806 | current->state = TASK_RUNNING; | |
6389a385 | 807 | mutex_lock(&module_mutex); |
1da177e4 LT |
808 | } |
809 | ||
17da2bd9 HC |
810 | SYSCALL_DEFINE2(delete_module, const char __user *, name_user, |
811 | unsigned int, flags) | |
1da177e4 LT |
812 | { |
813 | struct module *mod; | |
dfff0a06 | 814 | char name[MODULE_NAME_LEN]; |
1da177e4 LT |
815 | int ret, forced = 0; |
816 | ||
3d43321b | 817 | if (!capable(CAP_SYS_MODULE) || modules_disabled) |
dfff0a06 GKH |
818 | return -EPERM; |
819 | ||
820 | if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0) | |
821 | return -EFAULT; | |
822 | name[MODULE_NAME_LEN-1] = '\0'; | |
823 | ||
3fc1f1e2 TH |
824 | if (mutex_lock_interruptible(&module_mutex) != 0) |
825 | return -EINTR; | |
1da177e4 LT |
826 | |
827 | mod = find_module(name); | |
828 | if (!mod) { | |
829 | ret = -ENOENT; | |
830 | goto out; | |
831 | } | |
832 | ||
2c02dfe7 | 833 | if (!list_empty(&mod->source_list)) { |
1da177e4 LT |
834 | /* Other modules depend on us: get rid of them first. */ |
835 | ret = -EWOULDBLOCK; | |
836 | goto out; | |
837 | } | |
838 | ||
839 | /* Doing init or already dying? */ | |
840 | if (mod->state != MODULE_STATE_LIVE) { | |
841 | /* FIXME: if (force), slam module count and wake up | |
842 | waiter --RR */ | |
5e124169 | 843 | pr_debug("%s already dying\n", mod->name); |
1da177e4 LT |
844 | ret = -EBUSY; |
845 | goto out; | |
846 | } | |
847 | ||
848 | /* If it has an init func, it must have an exit func to unload */ | |
af49d924 | 849 | if (mod->init && !mod->exit) { |
fb169793 | 850 | forced = try_force_unload(flags); |
1da177e4 LT |
851 | if (!forced) { |
852 | /* This module can't be removed */ | |
853 | ret = -EBUSY; | |
854 | goto out; | |
855 | } | |
856 | } | |
857 | ||
858 | /* Set this up before setting mod->state */ | |
859 | mod->waiter = current; | |
860 | ||
861 | /* Stop the machine so refcounts can't move and disable module. */ | |
862 | ret = try_stop_module(mod, flags, &forced); | |
863 | if (ret != 0) | |
864 | goto out; | |
865 | ||
866 | /* Never wait if forced. */ | |
867 | if (!forced && module_refcount(mod) != 0) | |
868 | wait_for_zero_refcount(mod); | |
869 | ||
df4b565e | 870 | mutex_unlock(&module_mutex); |
25985edc | 871 | /* Final destruction now no one is using it. */ |
df4b565e | 872 | if (mod->exit != NULL) |
1da177e4 | 873 | mod->exit(); |
df4b565e PO |
874 | blocking_notifier_call_chain(&module_notify_list, |
875 | MODULE_STATE_GOING, mod); | |
22a9d645 | 876 | async_synchronize_full(); |
75676500 | 877 | |
e14af7ee | 878 | /* Store the name of the last unloaded module for diagnostic purposes */ |
efa5345e | 879 | strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module)); |
1da177e4 | 880 | |
75676500 RR |
881 | free_module(mod); |
882 | return 0; | |
883 | out: | |
6389a385 | 884 | mutex_unlock(&module_mutex); |
1da177e4 LT |
885 | return ret; |
886 | } | |
887 | ||
d1e99d7a | 888 | static inline void print_unload_info(struct seq_file *m, struct module *mod) |
1da177e4 LT |
889 | { |
890 | struct module_use *use; | |
891 | int printed_something = 0; | |
892 | ||
bd77c047 | 893 | seq_printf(m, " %lu ", module_refcount(mod)); |
1da177e4 LT |
894 | |
895 | /* Always include a trailing , so userspace can differentiate | |
896 | between this and the old multi-field proc format. */ | |
2c02dfe7 | 897 | list_for_each_entry(use, &mod->source_list, source_list) { |
1da177e4 | 898 | printed_something = 1; |
2c02dfe7 | 899 | seq_printf(m, "%s,", use->source->name); |
1da177e4 LT |
900 | } |
901 | ||
1da177e4 LT |
902 | if (mod->init != NULL && mod->exit == NULL) { |
903 | printed_something = 1; | |
904 | seq_printf(m, "[permanent],"); | |
905 | } | |
906 | ||
907 | if (!printed_something) | |
908 | seq_printf(m, "-"); | |
909 | } | |
910 | ||
911 | void __symbol_put(const char *symbol) | |
912 | { | |
913 | struct module *owner; | |
1da177e4 | 914 | |
24da1cbf | 915 | preempt_disable(); |
414fd31b | 916 | if (!find_symbol(symbol, &owner, NULL, true, false)) |
1da177e4 LT |
917 | BUG(); |
918 | module_put(owner); | |
24da1cbf | 919 | preempt_enable(); |
1da177e4 LT |
920 | } |
921 | EXPORT_SYMBOL(__symbol_put); | |
922 | ||
7d1d16e4 | 923 | /* Note this assumes addr is a function, which it currently always is. */ |
1da177e4 LT |
924 | void symbol_put_addr(void *addr) |
925 | { | |
5e376613 | 926 | struct module *modaddr; |
7d1d16e4 | 927 | unsigned long a = (unsigned long)dereference_function_descriptor(addr); |
1da177e4 | 928 | |
7d1d16e4 | 929 | if (core_kernel_text(a)) |
5e376613 | 930 | return; |
1da177e4 | 931 | |
a6e6abd5 RR |
932 | /* module_text_address is safe here: we're supposed to have reference |
933 | * to module from symbol_get, so it can't go away. */ | |
7d1d16e4 | 934 | modaddr = __module_text_address(a); |
a6e6abd5 | 935 | BUG_ON(!modaddr); |
5e376613 | 936 | module_put(modaddr); |
1da177e4 LT |
937 | } |
938 | EXPORT_SYMBOL_GPL(symbol_put_addr); | |
939 | ||
940 | static ssize_t show_refcnt(struct module_attribute *mattr, | |
4befb026 | 941 | struct module_kobject *mk, char *buffer) |
1da177e4 | 942 | { |
bd77c047 | 943 | return sprintf(buffer, "%lu\n", module_refcount(mk->mod)); |
1da177e4 LT |
944 | } |
945 | ||
cca3e707 KS |
946 | static struct module_attribute modinfo_refcnt = |
947 | __ATTR(refcnt, 0444, show_refcnt, NULL); | |
1da177e4 | 948 | |
d53799be SR |
949 | void __module_get(struct module *module) |
950 | { | |
951 | if (module) { | |
952 | preempt_disable(); | |
953 | __this_cpu_inc(module->refptr->incs); | |
954 | trace_module_get(module, _RET_IP_); | |
955 | preempt_enable(); | |
956 | } | |
957 | } | |
958 | EXPORT_SYMBOL(__module_get); | |
959 | ||
960 | bool try_module_get(struct module *module) | |
961 | { | |
962 | bool ret = true; | |
963 | ||
964 | if (module) { | |
965 | preempt_disable(); | |
966 | ||
967 | if (likely(module_is_live(module))) { | |
968 | __this_cpu_inc(module->refptr->incs); | |
969 | trace_module_get(module, _RET_IP_); | |
970 | } else | |
971 | ret = false; | |
972 | ||
973 | preempt_enable(); | |
974 | } | |
975 | return ret; | |
976 | } | |
977 | EXPORT_SYMBOL(try_module_get); | |
978 | ||
f6a57033 AV |
979 | void module_put(struct module *module) |
980 | { | |
981 | if (module) { | |
e1783a24 | 982 | preempt_disable(); |
5fbfb18d NP |
983 | smp_wmb(); /* see comment in module_refcount */ |
984 | __this_cpu_inc(module->refptr->decs); | |
e1783a24 | 985 | |
ae832d1e | 986 | trace_module_put(module, _RET_IP_); |
f6a57033 AV |
987 | /* Maybe they're waiting for us to drop reference? */ |
988 | if (unlikely(!module_is_live(module))) | |
989 | wake_up_process(module->waiter); | |
e1783a24 | 990 | preempt_enable(); |
f6a57033 AV |
991 | } |
992 | } | |
993 | EXPORT_SYMBOL(module_put); | |
994 | ||
1da177e4 | 995 | #else /* !CONFIG_MODULE_UNLOAD */ |
d1e99d7a | 996 | static inline void print_unload_info(struct seq_file *m, struct module *mod) |
1da177e4 LT |
997 | { |
998 | /* We don't know the usage count, or what modules are using. */ | |
999 | seq_printf(m, " - -"); | |
1000 | } | |
1001 | ||
1002 | static inline void module_unload_free(struct module *mod) | |
1003 | { | |
1004 | } | |
1005 | ||
9bea7f23 | 1006 | int ref_module(struct module *a, struct module *b) |
1da177e4 | 1007 | { |
9bea7f23 | 1008 | return strong_try_module_get(b); |
1da177e4 | 1009 | } |
9bea7f23 | 1010 | EXPORT_SYMBOL_GPL(ref_module); |
1da177e4 | 1011 | |
9f85a4bb | 1012 | static inline int module_unload_init(struct module *mod) |
1da177e4 | 1013 | { |
9f85a4bb | 1014 | return 0; |
1da177e4 LT |
1015 | } |
1016 | #endif /* CONFIG_MODULE_UNLOAD */ | |
1017 | ||
53999bf3 KW |
1018 | static size_t module_flags_taint(struct module *mod, char *buf) |
1019 | { | |
1020 | size_t l = 0; | |
1021 | ||
1022 | if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE)) | |
1023 | buf[l++] = 'P'; | |
1024 | if (mod->taints & (1 << TAINT_OOT_MODULE)) | |
1025 | buf[l++] = 'O'; | |
1026 | if (mod->taints & (1 << TAINT_FORCED_MODULE)) | |
1027 | buf[l++] = 'F'; | |
1028 | if (mod->taints & (1 << TAINT_CRAP)) | |
1029 | buf[l++] = 'C'; | |
1030 | /* | |
1031 | * TAINT_FORCED_RMMOD: could be added. | |
1032 | * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't | |
1033 | * apply to modules. | |
1034 | */ | |
1035 | return l; | |
1036 | } | |
1037 | ||
1f71740a | 1038 | static ssize_t show_initstate(struct module_attribute *mattr, |
4befb026 | 1039 | struct module_kobject *mk, char *buffer) |
1f71740a KS |
1040 | { |
1041 | const char *state = "unknown"; | |
1042 | ||
4befb026 | 1043 | switch (mk->mod->state) { |
1f71740a KS |
1044 | case MODULE_STATE_LIVE: |
1045 | state = "live"; | |
1046 | break; | |
1047 | case MODULE_STATE_COMING: | |
1048 | state = "coming"; | |
1049 | break; | |
1050 | case MODULE_STATE_GOING: | |
1051 | state = "going"; | |
1052 | break; | |
1053 | } | |
1054 | return sprintf(buffer, "%s\n", state); | |
1055 | } | |
1056 | ||
cca3e707 KS |
1057 | static struct module_attribute modinfo_initstate = |
1058 | __ATTR(initstate, 0444, show_initstate, NULL); | |
1f71740a | 1059 | |
88bfa324 KS |
1060 | static ssize_t store_uevent(struct module_attribute *mattr, |
1061 | struct module_kobject *mk, | |
1062 | const char *buffer, size_t count) | |
1063 | { | |
1064 | enum kobject_action action; | |
1065 | ||
1066 | if (kobject_action_type(buffer, count, &action) == 0) | |
1067 | kobject_uevent(&mk->kobj, action); | |
1068 | return count; | |
1069 | } | |
1070 | ||
cca3e707 KS |
1071 | struct module_attribute module_uevent = |
1072 | __ATTR(uevent, 0200, NULL, store_uevent); | |
1073 | ||
1074 | static ssize_t show_coresize(struct module_attribute *mattr, | |
1075 | struct module_kobject *mk, char *buffer) | |
1076 | { | |
1077 | return sprintf(buffer, "%u\n", mk->mod->core_size); | |
1078 | } | |
1079 | ||
1080 | static struct module_attribute modinfo_coresize = | |
1081 | __ATTR(coresize, 0444, show_coresize, NULL); | |
1082 | ||
1083 | static ssize_t show_initsize(struct module_attribute *mattr, | |
1084 | struct module_kobject *mk, char *buffer) | |
1085 | { | |
1086 | return sprintf(buffer, "%u\n", mk->mod->init_size); | |
1087 | } | |
1088 | ||
1089 | static struct module_attribute modinfo_initsize = | |
1090 | __ATTR(initsize, 0444, show_initsize, NULL); | |
1091 | ||
1092 | static ssize_t show_taint(struct module_attribute *mattr, | |
1093 | struct module_kobject *mk, char *buffer) | |
1094 | { | |
1095 | size_t l; | |
1096 | ||
1097 | l = module_flags_taint(mk->mod, buffer); | |
1098 | buffer[l++] = '\n'; | |
1099 | return l; | |
1100 | } | |
1101 | ||
1102 | static struct module_attribute modinfo_taint = | |
1103 | __ATTR(taint, 0444, show_taint, NULL); | |
88bfa324 | 1104 | |
03e88ae1 | 1105 | static struct module_attribute *modinfo_attrs[] = { |
cca3e707 | 1106 | &module_uevent, |
03e88ae1 GKH |
1107 | &modinfo_version, |
1108 | &modinfo_srcversion, | |
cca3e707 KS |
1109 | &modinfo_initstate, |
1110 | &modinfo_coresize, | |
1111 | &modinfo_initsize, | |
1112 | &modinfo_taint, | |
03e88ae1 | 1113 | #ifdef CONFIG_MODULE_UNLOAD |
cca3e707 | 1114 | &modinfo_refcnt, |
03e88ae1 GKH |
1115 | #endif |
1116 | NULL, | |
1117 | }; | |
1118 | ||
1da177e4 LT |
1119 | static const char vermagic[] = VERMAGIC_STRING; |
1120 | ||
c6e665c8 | 1121 | static int try_to_force_load(struct module *mod, const char *reason) |
826e4506 LT |
1122 | { |
1123 | #ifdef CONFIG_MODULE_FORCE_LOAD | |
25ddbb18 | 1124 | if (!test_taint(TAINT_FORCED_MODULE)) |
c6e665c8 RR |
1125 | printk(KERN_WARNING "%s: %s: kernel tainted.\n", |
1126 | mod->name, reason); | |
826e4506 LT |
1127 | add_taint_module(mod, TAINT_FORCED_MODULE); |
1128 | return 0; | |
1129 | #else | |
1130 | return -ENOEXEC; | |
1131 | #endif | |
1132 | } | |
1133 | ||
1da177e4 | 1134 | #ifdef CONFIG_MODVERSIONS |
d4703aef RR |
1135 | /* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */ |
1136 | static unsigned long maybe_relocated(unsigned long crc, | |
1137 | const struct module *crc_owner) | |
1138 | { | |
1139 | #ifdef ARCH_RELOCATES_KCRCTAB | |
1140 | if (crc_owner == NULL) | |
1141 | return crc - (unsigned long)reloc_start; | |
1142 | #endif | |
1143 | return crc; | |
1144 | } | |
1145 | ||
1da177e4 LT |
1146 | static int check_version(Elf_Shdr *sechdrs, |
1147 | unsigned int versindex, | |
1148 | const char *symname, | |
1149 | struct module *mod, | |
d4703aef RR |
1150 | const unsigned long *crc, |
1151 | const struct module *crc_owner) | |
1da177e4 LT |
1152 | { |
1153 | unsigned int i, num_versions; | |
1154 | struct modversion_info *versions; | |
1155 | ||
1156 | /* Exporting module didn't supply crcs? OK, we're already tainted. */ | |
1157 | if (!crc) | |
1158 | return 1; | |
1159 | ||
a5dd6970 RR |
1160 | /* No versions at all? modprobe --force does this. */ |
1161 | if (versindex == 0) | |
1162 | return try_to_force_load(mod, symname) == 0; | |
1163 | ||
1da177e4 LT |
1164 | versions = (void *) sechdrs[versindex].sh_addr; |
1165 | num_versions = sechdrs[versindex].sh_size | |
1166 | / sizeof(struct modversion_info); | |
1167 | ||
1168 | for (i = 0; i < num_versions; i++) { | |
1169 | if (strcmp(versions[i].name, symname) != 0) | |
1170 | continue; | |
1171 | ||
d4703aef | 1172 | if (versions[i].crc == maybe_relocated(*crc, crc_owner)) |
1da177e4 | 1173 | return 1; |
5e124169 | 1174 | pr_debug("Found checksum %lX vs module %lX\n", |
d4703aef | 1175 | maybe_relocated(*crc, crc_owner), versions[i].crc); |
826e4506 | 1176 | goto bad_version; |
1da177e4 | 1177 | } |
826e4506 | 1178 | |
a5dd6970 RR |
1179 | printk(KERN_WARNING "%s: no symbol version for %s\n", |
1180 | mod->name, symname); | |
1181 | return 0; | |
826e4506 LT |
1182 | |
1183 | bad_version: | |
1184 | printk("%s: disagrees about version of symbol %s\n", | |
1185 | mod->name, symname); | |
1186 | return 0; | |
1da177e4 LT |
1187 | } |
1188 | ||
1189 | static inline int check_modstruct_version(Elf_Shdr *sechdrs, | |
1190 | unsigned int versindex, | |
1191 | struct module *mod) | |
1192 | { | |
1193 | const unsigned long *crc; | |
1da177e4 | 1194 | |
75676500 RR |
1195 | /* Since this should be found in kernel (which can't be removed), |
1196 | * no locking is necessary. */ | |
6560dc16 MF |
1197 | if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL, |
1198 | &crc, true, false)) | |
1da177e4 | 1199 | BUG(); |
d4703aef RR |
1200 | return check_version(sechdrs, versindex, "module_layout", mod, crc, |
1201 | NULL); | |
1da177e4 LT |
1202 | } |
1203 | ||
91e37a79 RR |
1204 | /* First part is kernel version, which we ignore if module has crcs. */ |
1205 | static inline int same_magic(const char *amagic, const char *bmagic, | |
1206 | bool has_crcs) | |
1da177e4 | 1207 | { |
91e37a79 RR |
1208 | if (has_crcs) { |
1209 | amagic += strcspn(amagic, " "); | |
1210 | bmagic += strcspn(bmagic, " "); | |
1211 | } | |
1da177e4 LT |
1212 | return strcmp(amagic, bmagic) == 0; |
1213 | } | |
1214 | #else | |
1215 | static inline int check_version(Elf_Shdr *sechdrs, | |
1216 | unsigned int versindex, | |
1217 | const char *symname, | |
1218 | struct module *mod, | |
d4703aef RR |
1219 | const unsigned long *crc, |
1220 | const struct module *crc_owner) | |
1da177e4 LT |
1221 | { |
1222 | return 1; | |
1223 | } | |
1224 | ||
1225 | static inline int check_modstruct_version(Elf_Shdr *sechdrs, | |
1226 | unsigned int versindex, | |
1227 | struct module *mod) | |
1228 | { | |
1229 | return 1; | |
1230 | } | |
1231 | ||
91e37a79 RR |
1232 | static inline int same_magic(const char *amagic, const char *bmagic, |
1233 | bool has_crcs) | |
1da177e4 LT |
1234 | { |
1235 | return strcmp(amagic, bmagic) == 0; | |
1236 | } | |
1237 | #endif /* CONFIG_MODVERSIONS */ | |
1238 | ||
75676500 | 1239 | /* Resolve a symbol for this module. I.e. if we find one, record usage. */ |
49668688 RR |
1240 | static const struct kernel_symbol *resolve_symbol(struct module *mod, |
1241 | const struct load_info *info, | |
414fd31b | 1242 | const char *name, |
9bea7f23 | 1243 | char ownername[]) |
1da177e4 LT |
1244 | { |
1245 | struct module *owner; | |
414fd31b | 1246 | const struct kernel_symbol *sym; |
1da177e4 | 1247 | const unsigned long *crc; |
9bea7f23 | 1248 | int err; |
1da177e4 | 1249 | |
75676500 | 1250 | mutex_lock(&module_mutex); |
414fd31b | 1251 | sym = find_symbol(name, &owner, &crc, |
25ddbb18 | 1252 | !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true); |
9bea7f23 RR |
1253 | if (!sym) |
1254 | goto unlock; | |
1255 | ||
49668688 RR |
1256 | if (!check_version(info->sechdrs, info->index.vers, name, mod, crc, |
1257 | owner)) { | |
9bea7f23 RR |
1258 | sym = ERR_PTR(-EINVAL); |
1259 | goto getname; | |
1da177e4 | 1260 | } |
9bea7f23 RR |
1261 | |
1262 | err = ref_module(mod, owner); | |
1263 | if (err) { | |
1264 | sym = ERR_PTR(err); | |
1265 | goto getname; | |
1266 | } | |
1267 | ||
1268 | getname: | |
1269 | /* We must make copy under the lock if we failed to get ref. */ | |
1270 | strncpy(ownername, module_name(owner), MODULE_NAME_LEN); | |
1271 | unlock: | |
75676500 | 1272 | mutex_unlock(&module_mutex); |
218ce735 | 1273 | return sym; |
1da177e4 LT |
1274 | } |
1275 | ||
49668688 RR |
1276 | static const struct kernel_symbol * |
1277 | resolve_symbol_wait(struct module *mod, | |
1278 | const struct load_info *info, | |
1279 | const char *name) | |
9bea7f23 RR |
1280 | { |
1281 | const struct kernel_symbol *ksym; | |
49668688 | 1282 | char owner[MODULE_NAME_LEN]; |
9bea7f23 RR |
1283 | |
1284 | if (wait_event_interruptible_timeout(module_wq, | |
49668688 RR |
1285 | !IS_ERR(ksym = resolve_symbol(mod, info, name, owner)) |
1286 | || PTR_ERR(ksym) != -EBUSY, | |
9bea7f23 RR |
1287 | 30 * HZ) <= 0) { |
1288 | printk(KERN_WARNING "%s: gave up waiting for init of module %s.\n", | |
49668688 | 1289 | mod->name, owner); |
9bea7f23 RR |
1290 | } |
1291 | return ksym; | |
1292 | } | |
1293 | ||
1da177e4 LT |
1294 | /* |
1295 | * /sys/module/foo/sections stuff | |
1296 | * J. Corbet <[email protected]> | |
1297 | */ | |
8f6d0378 | 1298 | #ifdef CONFIG_SYSFS |
10b465aa | 1299 | |
8f6d0378 | 1300 | #ifdef CONFIG_KALLSYMS |
10b465aa BH |
1301 | static inline bool sect_empty(const Elf_Shdr *sect) |
1302 | { | |
1303 | return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0; | |
1304 | } | |
1305 | ||
a58730c4 RR |
1306 | struct module_sect_attr |
1307 | { | |
1308 | struct module_attribute mattr; | |
1309 | char *name; | |
1310 | unsigned long address; | |
1311 | }; | |
1312 | ||
1313 | struct module_sect_attrs | |
1314 | { | |
1315 | struct attribute_group grp; | |
1316 | unsigned int nsections; | |
1317 | struct module_sect_attr attrs[0]; | |
1318 | }; | |
1319 | ||
1da177e4 | 1320 | static ssize_t module_sect_show(struct module_attribute *mattr, |
4befb026 | 1321 | struct module_kobject *mk, char *buf) |
1da177e4 LT |
1322 | { |
1323 | struct module_sect_attr *sattr = | |
1324 | container_of(mattr, struct module_sect_attr, mattr); | |
9f36e2c4 | 1325 | return sprintf(buf, "0x%pK\n", (void *)sattr->address); |
1da177e4 LT |
1326 | } |
1327 | ||
04b1db9f IN |
1328 | static void free_sect_attrs(struct module_sect_attrs *sect_attrs) |
1329 | { | |
a58730c4 | 1330 | unsigned int section; |
04b1db9f IN |
1331 | |
1332 | for (section = 0; section < sect_attrs->nsections; section++) | |
1333 | kfree(sect_attrs->attrs[section].name); | |
1334 | kfree(sect_attrs); | |
1335 | } | |
1336 | ||
8f6d0378 | 1337 | static void add_sect_attrs(struct module *mod, const struct load_info *info) |
1da177e4 LT |
1338 | { |
1339 | unsigned int nloaded = 0, i, size[2]; | |
1340 | struct module_sect_attrs *sect_attrs; | |
1341 | struct module_sect_attr *sattr; | |
1342 | struct attribute **gattr; | |
22a8bdeb | 1343 | |
1da177e4 | 1344 | /* Count loaded sections and allocate structures */ |
8f6d0378 RR |
1345 | for (i = 0; i < info->hdr->e_shnum; i++) |
1346 | if (!sect_empty(&info->sechdrs[i])) | |
1da177e4 LT |
1347 | nloaded++; |
1348 | size[0] = ALIGN(sizeof(*sect_attrs) | |
1349 | + nloaded * sizeof(sect_attrs->attrs[0]), | |
1350 | sizeof(sect_attrs->grp.attrs[0])); | |
1351 | size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]); | |
04b1db9f IN |
1352 | sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL); |
1353 | if (sect_attrs == NULL) | |
1da177e4 LT |
1354 | return; |
1355 | ||
1356 | /* Setup section attributes. */ | |
1357 | sect_attrs->grp.name = "sections"; | |
1358 | sect_attrs->grp.attrs = (void *)sect_attrs + size[0]; | |
1359 | ||
04b1db9f | 1360 | sect_attrs->nsections = 0; |
1da177e4 LT |
1361 | sattr = §_attrs->attrs[0]; |
1362 | gattr = §_attrs->grp.attrs[0]; | |
8f6d0378 RR |
1363 | for (i = 0; i < info->hdr->e_shnum; i++) { |
1364 | Elf_Shdr *sec = &info->sechdrs[i]; | |
1365 | if (sect_empty(sec)) | |
35dead42 | 1366 | continue; |
8f6d0378 RR |
1367 | sattr->address = sec->sh_addr; |
1368 | sattr->name = kstrdup(info->secstrings + sec->sh_name, | |
04b1db9f IN |
1369 | GFP_KERNEL); |
1370 | if (sattr->name == NULL) | |
1371 | goto out; | |
1372 | sect_attrs->nsections++; | |
361795b1 | 1373 | sysfs_attr_init(&sattr->mattr.attr); |
1da177e4 LT |
1374 | sattr->mattr.show = module_sect_show; |
1375 | sattr->mattr.store = NULL; | |
1376 | sattr->mattr.attr.name = sattr->name; | |
1da177e4 LT |
1377 | sattr->mattr.attr.mode = S_IRUGO; |
1378 | *(gattr++) = &(sattr++)->mattr.attr; | |
1379 | } | |
1380 | *gattr = NULL; | |
1381 | ||
1382 | if (sysfs_create_group(&mod->mkobj.kobj, §_attrs->grp)) | |
1383 | goto out; | |
1384 | ||
1385 | mod->sect_attrs = sect_attrs; | |
1386 | return; | |
1387 | out: | |
04b1db9f | 1388 | free_sect_attrs(sect_attrs); |
1da177e4 LT |
1389 | } |
1390 | ||
1391 | static void remove_sect_attrs(struct module *mod) | |
1392 | { | |
1393 | if (mod->sect_attrs) { | |
1394 | sysfs_remove_group(&mod->mkobj.kobj, | |
1395 | &mod->sect_attrs->grp); | |
1396 | /* We are positive that no one is using any sect attrs | |
1397 | * at this point. Deallocate immediately. */ | |
04b1db9f | 1398 | free_sect_attrs(mod->sect_attrs); |
1da177e4 LT |
1399 | mod->sect_attrs = NULL; |
1400 | } | |
1401 | } | |
1402 | ||
6d760133 RM |
1403 | /* |
1404 | * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections. | |
1405 | */ | |
1406 | ||
1407 | struct module_notes_attrs { | |
1408 | struct kobject *dir; | |
1409 | unsigned int notes; | |
1410 | struct bin_attribute attrs[0]; | |
1411 | }; | |
1412 | ||
2c3c8bea | 1413 | static ssize_t module_notes_read(struct file *filp, struct kobject *kobj, |
6d760133 RM |
1414 | struct bin_attribute *bin_attr, |
1415 | char *buf, loff_t pos, size_t count) | |
1416 | { | |
1417 | /* | |
1418 | * The caller checked the pos and count against our size. | |
1419 | */ | |
1420 | memcpy(buf, bin_attr->private + pos, count); | |
1421 | return count; | |
1422 | } | |
1423 | ||
1424 | static void free_notes_attrs(struct module_notes_attrs *notes_attrs, | |
1425 | unsigned int i) | |
1426 | { | |
1427 | if (notes_attrs->dir) { | |
1428 | while (i-- > 0) | |
1429 | sysfs_remove_bin_file(notes_attrs->dir, | |
1430 | ¬es_attrs->attrs[i]); | |
e9432093 | 1431 | kobject_put(notes_attrs->dir); |
6d760133 RM |
1432 | } |
1433 | kfree(notes_attrs); | |
1434 | } | |
1435 | ||
8f6d0378 | 1436 | static void add_notes_attrs(struct module *mod, const struct load_info *info) |
6d760133 RM |
1437 | { |
1438 | unsigned int notes, loaded, i; | |
1439 | struct module_notes_attrs *notes_attrs; | |
1440 | struct bin_attribute *nattr; | |
1441 | ||
ea6bff36 IM |
1442 | /* failed to create section attributes, so can't create notes */ |
1443 | if (!mod->sect_attrs) | |
1444 | return; | |
1445 | ||
6d760133 RM |
1446 | /* Count notes sections and allocate structures. */ |
1447 | notes = 0; | |
8f6d0378 RR |
1448 | for (i = 0; i < info->hdr->e_shnum; i++) |
1449 | if (!sect_empty(&info->sechdrs[i]) && | |
1450 | (info->sechdrs[i].sh_type == SHT_NOTE)) | |
6d760133 RM |
1451 | ++notes; |
1452 | ||
1453 | if (notes == 0) | |
1454 | return; | |
1455 | ||
1456 | notes_attrs = kzalloc(sizeof(*notes_attrs) | |
1457 | + notes * sizeof(notes_attrs->attrs[0]), | |
1458 | GFP_KERNEL); | |
1459 | if (notes_attrs == NULL) | |
1460 | return; | |
1461 | ||
1462 | notes_attrs->notes = notes; | |
1463 | nattr = ¬es_attrs->attrs[0]; | |
8f6d0378 RR |
1464 | for (loaded = i = 0; i < info->hdr->e_shnum; ++i) { |
1465 | if (sect_empty(&info->sechdrs[i])) | |
6d760133 | 1466 | continue; |
8f6d0378 | 1467 | if (info->sechdrs[i].sh_type == SHT_NOTE) { |
361795b1 | 1468 | sysfs_bin_attr_init(nattr); |
6d760133 RM |
1469 | nattr->attr.name = mod->sect_attrs->attrs[loaded].name; |
1470 | nattr->attr.mode = S_IRUGO; | |
8f6d0378 RR |
1471 | nattr->size = info->sechdrs[i].sh_size; |
1472 | nattr->private = (void *) info->sechdrs[i].sh_addr; | |
6d760133 RM |
1473 | nattr->read = module_notes_read; |
1474 | ++nattr; | |
1475 | } | |
1476 | ++loaded; | |
1477 | } | |
1478 | ||
4ff6abff | 1479 | notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj); |
6d760133 RM |
1480 | if (!notes_attrs->dir) |
1481 | goto out; | |
1482 | ||
1483 | for (i = 0; i < notes; ++i) | |
1484 | if (sysfs_create_bin_file(notes_attrs->dir, | |
1485 | ¬es_attrs->attrs[i])) | |
1486 | goto out; | |
1487 | ||
1488 | mod->notes_attrs = notes_attrs; | |
1489 | return; | |
1490 | ||
1491 | out: | |
1492 | free_notes_attrs(notes_attrs, i); | |
1493 | } | |
1494 | ||
1495 | static void remove_notes_attrs(struct module *mod) | |
1496 | { | |
1497 | if (mod->notes_attrs) | |
1498 | free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes); | |
1499 | } | |
1500 | ||
1da177e4 | 1501 | #else |
04b1db9f | 1502 | |
8f6d0378 RR |
1503 | static inline void add_sect_attrs(struct module *mod, |
1504 | const struct load_info *info) | |
1da177e4 LT |
1505 | { |
1506 | } | |
1507 | ||
1508 | static inline void remove_sect_attrs(struct module *mod) | |
1509 | { | |
1510 | } | |
6d760133 | 1511 | |
8f6d0378 RR |
1512 | static inline void add_notes_attrs(struct module *mod, |
1513 | const struct load_info *info) | |
6d760133 RM |
1514 | { |
1515 | } | |
1516 | ||
1517 | static inline void remove_notes_attrs(struct module *mod) | |
1518 | { | |
1519 | } | |
8f6d0378 | 1520 | #endif /* CONFIG_KALLSYMS */ |
1da177e4 | 1521 | |
80a3d1bb RR |
1522 | static void add_usage_links(struct module *mod) |
1523 | { | |
1524 | #ifdef CONFIG_MODULE_UNLOAD | |
1525 | struct module_use *use; | |
1526 | int nowarn; | |
1527 | ||
75676500 | 1528 | mutex_lock(&module_mutex); |
80a3d1bb RR |
1529 | list_for_each_entry(use, &mod->target_list, target_list) { |
1530 | nowarn = sysfs_create_link(use->target->holders_dir, | |
1531 | &mod->mkobj.kobj, mod->name); | |
1532 | } | |
75676500 | 1533 | mutex_unlock(&module_mutex); |
80a3d1bb RR |
1534 | #endif |
1535 | } | |
1536 | ||
1537 | static void del_usage_links(struct module *mod) | |
1538 | { | |
1539 | #ifdef CONFIG_MODULE_UNLOAD | |
1540 | struct module_use *use; | |
1541 | ||
75676500 | 1542 | mutex_lock(&module_mutex); |
80a3d1bb RR |
1543 | list_for_each_entry(use, &mod->target_list, target_list) |
1544 | sysfs_remove_link(use->target->holders_dir, mod->name); | |
75676500 | 1545 | mutex_unlock(&module_mutex); |
80a3d1bb RR |
1546 | #endif |
1547 | } | |
1548 | ||
6407ebb2 | 1549 | static int module_add_modinfo_attrs(struct module *mod) |
c988d2b2 MD |
1550 | { |
1551 | struct module_attribute *attr; | |
03e88ae1 | 1552 | struct module_attribute *temp_attr; |
c988d2b2 MD |
1553 | int error = 0; |
1554 | int i; | |
1555 | ||
03e88ae1 GKH |
1556 | mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) * |
1557 | (ARRAY_SIZE(modinfo_attrs) + 1)), | |
1558 | GFP_KERNEL); | |
1559 | if (!mod->modinfo_attrs) | |
1560 | return -ENOMEM; | |
1561 | ||
1562 | temp_attr = mod->modinfo_attrs; | |
c988d2b2 MD |
1563 | for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) { |
1564 | if (!attr->test || | |
03e88ae1 GKH |
1565 | (attr->test && attr->test(mod))) { |
1566 | memcpy(temp_attr, attr, sizeof(*temp_attr)); | |
361795b1 | 1567 | sysfs_attr_init(&temp_attr->attr); |
03e88ae1 GKH |
1568 | error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr); |
1569 | ++temp_attr; | |
1570 | } | |
c988d2b2 MD |
1571 | } |
1572 | return error; | |
1573 | } | |
1574 | ||
6407ebb2 | 1575 | static void module_remove_modinfo_attrs(struct module *mod) |
c988d2b2 MD |
1576 | { |
1577 | struct module_attribute *attr; | |
1578 | int i; | |
1579 | ||
03e88ae1 GKH |
1580 | for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) { |
1581 | /* pick a field to test for end of list */ | |
1582 | if (!attr->attr.name) | |
1583 | break; | |
c988d2b2 | 1584 | sysfs_remove_file(&mod->mkobj.kobj,&attr->attr); |
03e88ae1 GKH |
1585 | if (attr->free) |
1586 | attr->free(mod); | |
c988d2b2 | 1587 | } |
03e88ae1 | 1588 | kfree(mod->modinfo_attrs); |
c988d2b2 | 1589 | } |
1da177e4 | 1590 | |
6407ebb2 | 1591 | static int mod_sysfs_init(struct module *mod) |
1da177e4 LT |
1592 | { |
1593 | int err; | |
6494a93d | 1594 | struct kobject *kobj; |
1da177e4 | 1595 | |
823bccfc GKH |
1596 | if (!module_sysfs_initialized) { |
1597 | printk(KERN_ERR "%s: module sysfs not initialized\n", | |
1cc5f714 ES |
1598 | mod->name); |
1599 | err = -EINVAL; | |
1600 | goto out; | |
1601 | } | |
6494a93d GKH |
1602 | |
1603 | kobj = kset_find_obj(module_kset, mod->name); | |
1604 | if (kobj) { | |
1605 | printk(KERN_ERR "%s: module is already loaded\n", mod->name); | |
1606 | kobject_put(kobj); | |
1607 | err = -EINVAL; | |
1608 | goto out; | |
1609 | } | |
1610 | ||
1da177e4 | 1611 | mod->mkobj.mod = mod; |
e17e0f51 | 1612 | |
ac3c8141 GKH |
1613 | memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj)); |
1614 | mod->mkobj.kobj.kset = module_kset; | |
1615 | err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL, | |
1616 | "%s", mod->name); | |
1617 | if (err) | |
1618 | kobject_put(&mod->mkobj.kobj); | |
270a6c4c | 1619 | |
97c146ef | 1620 | /* delay uevent until full sysfs population */ |
270a6c4c KS |
1621 | out: |
1622 | return err; | |
1623 | } | |
1624 | ||
6407ebb2 | 1625 | static int mod_sysfs_setup(struct module *mod, |
8f6d0378 | 1626 | const struct load_info *info, |
270a6c4c KS |
1627 | struct kernel_param *kparam, |
1628 | unsigned int num_params) | |
1629 | { | |
1630 | int err; | |
1631 | ||
80a3d1bb RR |
1632 | err = mod_sysfs_init(mod); |
1633 | if (err) | |
1634 | goto out; | |
1635 | ||
4ff6abff | 1636 | mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj); |
240936e1 AM |
1637 | if (!mod->holders_dir) { |
1638 | err = -ENOMEM; | |
270a6c4c | 1639 | goto out_unreg; |
240936e1 | 1640 | } |
270a6c4c | 1641 | |
1da177e4 LT |
1642 | err = module_param_sysfs_setup(mod, kparam, num_params); |
1643 | if (err) | |
270a6c4c | 1644 | goto out_unreg_holders; |
1da177e4 | 1645 | |
c988d2b2 MD |
1646 | err = module_add_modinfo_attrs(mod); |
1647 | if (err) | |
e17e0f51 | 1648 | goto out_unreg_param; |
c988d2b2 | 1649 | |
80a3d1bb | 1650 | add_usage_links(mod); |
8f6d0378 RR |
1651 | add_sect_attrs(mod, info); |
1652 | add_notes_attrs(mod, info); | |
80a3d1bb | 1653 | |
e17e0f51 | 1654 | kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD); |
1da177e4 LT |
1655 | return 0; |
1656 | ||
e17e0f51 KS |
1657 | out_unreg_param: |
1658 | module_param_sysfs_remove(mod); | |
270a6c4c | 1659 | out_unreg_holders: |
78a2d906 | 1660 | kobject_put(mod->holders_dir); |
270a6c4c | 1661 | out_unreg: |
e17e0f51 | 1662 | kobject_put(&mod->mkobj.kobj); |
80a3d1bb | 1663 | out: |
1da177e4 LT |
1664 | return err; |
1665 | } | |
34e4e2fe DL |
1666 | |
1667 | static void mod_sysfs_fini(struct module *mod) | |
1668 | { | |
8f6d0378 RR |
1669 | remove_notes_attrs(mod); |
1670 | remove_sect_attrs(mod); | |
34e4e2fe DL |
1671 | kobject_put(&mod->mkobj.kobj); |
1672 | } | |
1673 | ||
8f6d0378 | 1674 | #else /* !CONFIG_SYSFS */ |
34e4e2fe | 1675 | |
8f6d0378 RR |
1676 | static int mod_sysfs_setup(struct module *mod, |
1677 | const struct load_info *info, | |
6407ebb2 RR |
1678 | struct kernel_param *kparam, |
1679 | unsigned int num_params) | |
1680 | { | |
1681 | return 0; | |
1682 | } | |
1683 | ||
34e4e2fe DL |
1684 | static void mod_sysfs_fini(struct module *mod) |
1685 | { | |
1686 | } | |
1687 | ||
36b0360d RR |
1688 | static void module_remove_modinfo_attrs(struct module *mod) |
1689 | { | |
1690 | } | |
1691 | ||
80a3d1bb RR |
1692 | static void del_usage_links(struct module *mod) |
1693 | { | |
1694 | } | |
1695 | ||
34e4e2fe | 1696 | #endif /* CONFIG_SYSFS */ |
1da177e4 | 1697 | |
36b0360d | 1698 | static void mod_sysfs_teardown(struct module *mod) |
1da177e4 | 1699 | { |
80a3d1bb | 1700 | del_usage_links(mod); |
c988d2b2 | 1701 | module_remove_modinfo_attrs(mod); |
1da177e4 | 1702 | module_param_sysfs_remove(mod); |
78a2d906 GKH |
1703 | kobject_put(mod->mkobj.drivers_dir); |
1704 | kobject_put(mod->holders_dir); | |
34e4e2fe | 1705 | mod_sysfs_fini(mod); |
1da177e4 LT |
1706 | } |
1707 | ||
1708 | /* | |
1709 | * unlink the module with the whole machine is stopped with interrupts off | |
1710 | * - this defends against kallsyms not taking locks | |
1711 | */ | |
1712 | static int __unlink_module(void *_mod) | |
1713 | { | |
1714 | struct module *mod = _mod; | |
1715 | list_del(&mod->list); | |
5336377d | 1716 | module_bug_cleanup(mod); |
1da177e4 LT |
1717 | return 0; |
1718 | } | |
1719 | ||
84e1c6bb MC |
1720 | #ifdef CONFIG_DEBUG_SET_MODULE_RONX |
1721 | /* | |
1722 | * LKM RO/NX protection: protect module's text/ro-data | |
1723 | * from modification and any data from execution. | |
1724 | */ | |
1725 | void set_page_attributes(void *start, void *end, int (*set)(unsigned long start, int num_pages)) | |
1726 | { | |
1727 | unsigned long begin_pfn = PFN_DOWN((unsigned long)start); | |
1728 | unsigned long end_pfn = PFN_DOWN((unsigned long)end); | |
1729 | ||
1730 | if (end_pfn > begin_pfn) | |
1731 | set(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn); | |
1732 | } | |
1733 | ||
1734 | static void set_section_ro_nx(void *base, | |
1735 | unsigned long text_size, | |
1736 | unsigned long ro_size, | |
1737 | unsigned long total_size) | |
1738 | { | |
1739 | /* begin and end PFNs of the current subsection */ | |
1740 | unsigned long begin_pfn; | |
1741 | unsigned long end_pfn; | |
1742 | ||
1743 | /* | |
1744 | * Set RO for module text and RO-data: | |
1745 | * - Always protect first page. | |
1746 | * - Do not protect last partial page. | |
1747 | */ | |
1748 | if (ro_size > 0) | |
1749 | set_page_attributes(base, base + ro_size, set_memory_ro); | |
1750 | ||
1751 | /* | |
1752 | * Set NX permissions for module data: | |
1753 | * - Do not protect first partial page. | |
1754 | * - Always protect last page. | |
1755 | */ | |
1756 | if (total_size > text_size) { | |
1757 | begin_pfn = PFN_UP((unsigned long)base + text_size); | |
1758 | end_pfn = PFN_UP((unsigned long)base + total_size); | |
1759 | if (end_pfn > begin_pfn) | |
1760 | set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn); | |
1761 | } | |
1762 | } | |
1763 | ||
01526ed0 JG |
1764 | static void unset_module_core_ro_nx(struct module *mod) |
1765 | { | |
1766 | set_page_attributes(mod->module_core + mod->core_text_size, | |
1767 | mod->module_core + mod->core_size, | |
1768 | set_memory_x); | |
1769 | set_page_attributes(mod->module_core, | |
1770 | mod->module_core + mod->core_ro_size, | |
1771 | set_memory_rw); | |
1772 | } | |
1773 | ||
1774 | static void unset_module_init_ro_nx(struct module *mod) | |
1775 | { | |
1776 | set_page_attributes(mod->module_init + mod->init_text_size, | |
1777 | mod->module_init + mod->init_size, | |
1778 | set_memory_x); | |
1779 | set_page_attributes(mod->module_init, | |
1780 | mod->module_init + mod->init_ro_size, | |
1781 | set_memory_rw); | |
84e1c6bb MC |
1782 | } |
1783 | ||
1784 | /* Iterate through all modules and set each module's text as RW */ | |
5d05c708 | 1785 | void set_all_modules_text_rw(void) |
84e1c6bb MC |
1786 | { |
1787 | struct module *mod; | |
1788 | ||
1789 | mutex_lock(&module_mutex); | |
1790 | list_for_each_entry_rcu(mod, &modules, list) { | |
1791 | if ((mod->module_core) && (mod->core_text_size)) { | |
1792 | set_page_attributes(mod->module_core, | |
1793 | mod->module_core + mod->core_text_size, | |
1794 | set_memory_rw); | |
1795 | } | |
1796 | if ((mod->module_init) && (mod->init_text_size)) { | |
1797 | set_page_attributes(mod->module_init, | |
1798 | mod->module_init + mod->init_text_size, | |
1799 | set_memory_rw); | |
1800 | } | |
1801 | } | |
1802 | mutex_unlock(&module_mutex); | |
1803 | } | |
1804 | ||
1805 | /* Iterate through all modules and set each module's text as RO */ | |
5d05c708 | 1806 | void set_all_modules_text_ro(void) |
84e1c6bb MC |
1807 | { |
1808 | struct module *mod; | |
1809 | ||
1810 | mutex_lock(&module_mutex); | |
1811 | list_for_each_entry_rcu(mod, &modules, list) { | |
1812 | if ((mod->module_core) && (mod->core_text_size)) { | |
1813 | set_page_attributes(mod->module_core, | |
1814 | mod->module_core + mod->core_text_size, | |
1815 | set_memory_ro); | |
1816 | } | |
1817 | if ((mod->module_init) && (mod->init_text_size)) { | |
1818 | set_page_attributes(mod->module_init, | |
1819 | mod->module_init + mod->init_text_size, | |
1820 | set_memory_ro); | |
1821 | } | |
1822 | } | |
1823 | mutex_unlock(&module_mutex); | |
1824 | } | |
1825 | #else | |
1826 | static inline void set_section_ro_nx(void *base, unsigned long text_size, unsigned long ro_size, unsigned long total_size) { } | |
01526ed0 JG |
1827 | static void unset_module_core_ro_nx(struct module *mod) { } |
1828 | static void unset_module_init_ro_nx(struct module *mod) { } | |
84e1c6bb MC |
1829 | #endif |
1830 | ||
74e08fcf JB |
1831 | void __weak module_free(struct module *mod, void *module_region) |
1832 | { | |
1833 | vfree(module_region); | |
1834 | } | |
1835 | ||
1836 | void __weak module_arch_cleanup(struct module *mod) | |
1837 | { | |
1838 | } | |
1839 | ||
75676500 | 1840 | /* Free a module, remove from lists, etc. */ |
1da177e4 LT |
1841 | static void free_module(struct module *mod) |
1842 | { | |
7ead8b83 LZ |
1843 | trace_module_free(mod); |
1844 | ||
1da177e4 | 1845 | /* Delete from various lists */ |
75676500 | 1846 | mutex_lock(&module_mutex); |
9b1a4d38 | 1847 | stop_machine(__unlink_module, mod, NULL); |
75676500 | 1848 | mutex_unlock(&module_mutex); |
36b0360d | 1849 | mod_sysfs_teardown(mod); |
1da177e4 | 1850 | |
b82bab4b JB |
1851 | /* Remove dynamic debug info */ |
1852 | ddebug_remove_module(mod->name); | |
1853 | ||
1da177e4 LT |
1854 | /* Arch-specific cleanup. */ |
1855 | module_arch_cleanup(mod); | |
1856 | ||
1857 | /* Module unload stuff */ | |
1858 | module_unload_free(mod); | |
1859 | ||
e180a6b7 RR |
1860 | /* Free any allocated parameters. */ |
1861 | destroy_params(mod->kp, mod->num_kp); | |
1862 | ||
1da177e4 | 1863 | /* This may be NULL, but that's OK */ |
01526ed0 | 1864 | unset_module_init_ro_nx(mod); |
1da177e4 LT |
1865 | module_free(mod, mod->module_init); |
1866 | kfree(mod->args); | |
259354de | 1867 | percpu_modfree(mod); |
9f85a4bb | 1868 | |
fbb9ce95 IM |
1869 | /* Free lock-classes: */ |
1870 | lockdep_free_key_range(mod->module_core, mod->core_size); | |
1871 | ||
1da177e4 | 1872 | /* Finally, free the core (containing the module structure) */ |
01526ed0 | 1873 | unset_module_core_ro_nx(mod); |
1da177e4 | 1874 | module_free(mod, mod->module_core); |
eb8cdec4 BS |
1875 | |
1876 | #ifdef CONFIG_MPU | |
1877 | update_protections(current->mm); | |
1878 | #endif | |
1da177e4 LT |
1879 | } |
1880 | ||
1881 | void *__symbol_get(const char *symbol) | |
1882 | { | |
1883 | struct module *owner; | |
414fd31b | 1884 | const struct kernel_symbol *sym; |
1da177e4 | 1885 | |
24da1cbf | 1886 | preempt_disable(); |
414fd31b TA |
1887 | sym = find_symbol(symbol, &owner, NULL, true, true); |
1888 | if (sym && strong_try_module_get(owner)) | |
1889 | sym = NULL; | |
24da1cbf | 1890 | preempt_enable(); |
1da177e4 | 1891 | |
414fd31b | 1892 | return sym ? (void *)sym->value : NULL; |
1da177e4 LT |
1893 | } |
1894 | EXPORT_SYMBOL_GPL(__symbol_get); | |
1895 | ||
eea8b54d AN |
1896 | /* |
1897 | * Ensure that an exported symbol [global namespace] does not already exist | |
02a3e59a | 1898 | * in the kernel or in some other module's exported symbol table. |
be593f4c RR |
1899 | * |
1900 | * You must hold the module_mutex. | |
eea8b54d AN |
1901 | */ |
1902 | static int verify_export_symbols(struct module *mod) | |
1903 | { | |
b211104d | 1904 | unsigned int i; |
eea8b54d | 1905 | struct module *owner; |
b211104d RR |
1906 | const struct kernel_symbol *s; |
1907 | struct { | |
1908 | const struct kernel_symbol *sym; | |
1909 | unsigned int num; | |
1910 | } arr[] = { | |
1911 | { mod->syms, mod->num_syms }, | |
1912 | { mod->gpl_syms, mod->num_gpl_syms }, | |
1913 | { mod->gpl_future_syms, mod->num_gpl_future_syms }, | |
f7f5b675 | 1914 | #ifdef CONFIG_UNUSED_SYMBOLS |
b211104d RR |
1915 | { mod->unused_syms, mod->num_unused_syms }, |
1916 | { mod->unused_gpl_syms, mod->num_unused_gpl_syms }, | |
f7f5b675 | 1917 | #endif |
b211104d | 1918 | }; |
eea8b54d | 1919 | |
b211104d RR |
1920 | for (i = 0; i < ARRAY_SIZE(arr); i++) { |
1921 | for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) { | |
be593f4c | 1922 | if (find_symbol(s->name, &owner, NULL, true, false)) { |
b211104d RR |
1923 | printk(KERN_ERR |
1924 | "%s: exports duplicate symbol %s" | |
1925 | " (owned by %s)\n", | |
1926 | mod->name, s->name, module_name(owner)); | |
1927 | return -ENOEXEC; | |
1928 | } | |
eea8b54d | 1929 | } |
b211104d RR |
1930 | } |
1931 | return 0; | |
eea8b54d AN |
1932 | } |
1933 | ||
9a4b9708 | 1934 | /* Change all symbols so that st_value encodes the pointer directly. */ |
49668688 RR |
1935 | static int simplify_symbols(struct module *mod, const struct load_info *info) |
1936 | { | |
1937 | Elf_Shdr *symsec = &info->sechdrs[info->index.sym]; | |
1938 | Elf_Sym *sym = (void *)symsec->sh_addr; | |
1da177e4 | 1939 | unsigned long secbase; |
49668688 | 1940 | unsigned int i; |
1da177e4 | 1941 | int ret = 0; |
414fd31b | 1942 | const struct kernel_symbol *ksym; |
1da177e4 | 1943 | |
49668688 RR |
1944 | for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) { |
1945 | const char *name = info->strtab + sym[i].st_name; | |
1946 | ||
1da177e4 LT |
1947 | switch (sym[i].st_shndx) { |
1948 | case SHN_COMMON: | |
1949 | /* We compiled with -fno-common. These are not | |
1950 | supposed to happen. */ | |
5e124169 | 1951 | pr_debug("Common symbol: %s\n", name); |
1da177e4 LT |
1952 | printk("%s: please compile with -fno-common\n", |
1953 | mod->name); | |
1954 | ret = -ENOEXEC; | |
1955 | break; | |
1956 | ||
1957 | case SHN_ABS: | |
1958 | /* Don't need to do anything */ | |
5e124169 | 1959 | pr_debug("Absolute symbol: 0x%08lx\n", |
1da177e4 LT |
1960 | (long)sym[i].st_value); |
1961 | break; | |
1962 | ||
1963 | case SHN_UNDEF: | |
49668688 | 1964 | ksym = resolve_symbol_wait(mod, info, name); |
1da177e4 | 1965 | /* Ok if resolved. */ |
9bea7f23 | 1966 | if (ksym && !IS_ERR(ksym)) { |
414fd31b | 1967 | sym[i].st_value = ksym->value; |
1da177e4 | 1968 | break; |
414fd31b TA |
1969 | } |
1970 | ||
1da177e4 | 1971 | /* Ok if weak. */ |
9bea7f23 | 1972 | if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK) |
1da177e4 LT |
1973 | break; |
1974 | ||
9bea7f23 | 1975 | printk(KERN_WARNING "%s: Unknown symbol %s (err %li)\n", |
49668688 | 1976 | mod->name, name, PTR_ERR(ksym)); |
9bea7f23 | 1977 | ret = PTR_ERR(ksym) ?: -ENOENT; |
1da177e4 LT |
1978 | break; |
1979 | ||
1980 | default: | |
1981 | /* Divert to percpu allocation if a percpu var. */ | |
49668688 | 1982 | if (sym[i].st_shndx == info->index.pcpu) |
259354de | 1983 | secbase = (unsigned long)mod_percpu(mod); |
1da177e4 | 1984 | else |
49668688 | 1985 | secbase = info->sechdrs[sym[i].st_shndx].sh_addr; |
1da177e4 LT |
1986 | sym[i].st_value += secbase; |
1987 | break; | |
1988 | } | |
1989 | } | |
1990 | ||
1991 | return ret; | |
1992 | } | |
1993 | ||
49668688 | 1994 | static int apply_relocations(struct module *mod, const struct load_info *info) |
22e268eb RR |
1995 | { |
1996 | unsigned int i; | |
1997 | int err = 0; | |
1998 | ||
1999 | /* Now do relocations. */ | |
49668688 RR |
2000 | for (i = 1; i < info->hdr->e_shnum; i++) { |
2001 | unsigned int infosec = info->sechdrs[i].sh_info; | |
22e268eb RR |
2002 | |
2003 | /* Not a valid relocation section? */ | |
49668688 | 2004 | if (infosec >= info->hdr->e_shnum) |
22e268eb RR |
2005 | continue; |
2006 | ||
2007 | /* Don't bother with non-allocated sections */ | |
49668688 | 2008 | if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC)) |
22e268eb RR |
2009 | continue; |
2010 | ||
49668688 RR |
2011 | if (info->sechdrs[i].sh_type == SHT_REL) |
2012 | err = apply_relocate(info->sechdrs, info->strtab, | |
2013 | info->index.sym, i, mod); | |
2014 | else if (info->sechdrs[i].sh_type == SHT_RELA) | |
2015 | err = apply_relocate_add(info->sechdrs, info->strtab, | |
2016 | info->index.sym, i, mod); | |
22e268eb RR |
2017 | if (err < 0) |
2018 | break; | |
2019 | } | |
2020 | return err; | |
2021 | } | |
2022 | ||
088af9a6 HD |
2023 | /* Additional bytes needed by arch in front of individual sections */ |
2024 | unsigned int __weak arch_mod_section_prepend(struct module *mod, | |
2025 | unsigned int section) | |
2026 | { | |
2027 | /* default implementation just returns zero */ | |
2028 | return 0; | |
2029 | } | |
2030 | ||
1da177e4 | 2031 | /* Update size with this section: return offset. */ |
088af9a6 HD |
2032 | static long get_offset(struct module *mod, unsigned int *size, |
2033 | Elf_Shdr *sechdr, unsigned int section) | |
1da177e4 LT |
2034 | { |
2035 | long ret; | |
2036 | ||
088af9a6 | 2037 | *size += arch_mod_section_prepend(mod, section); |
1da177e4 LT |
2038 | ret = ALIGN(*size, sechdr->sh_addralign ?: 1); |
2039 | *size = ret + sechdr->sh_size; | |
2040 | return ret; | |
2041 | } | |
2042 | ||
2043 | /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld | |
2044 | might -- code, read-only data, read-write data, small data. Tally | |
2045 | sizes, and place the offsets into sh_entsize fields: high bit means it | |
2046 | belongs in init. */ | |
49668688 | 2047 | static void layout_sections(struct module *mod, struct load_info *info) |
1da177e4 LT |
2048 | { |
2049 | static unsigned long const masks[][2] = { | |
2050 | /* NOTE: all executable code must be the first section | |
2051 | * in this array; otherwise modify the text_size | |
2052 | * finder in the two loops below */ | |
2053 | { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL }, | |
2054 | { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL }, | |
2055 | { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL }, | |
2056 | { ARCH_SHF_SMALL | SHF_ALLOC, 0 } | |
2057 | }; | |
2058 | unsigned int m, i; | |
2059 | ||
49668688 RR |
2060 | for (i = 0; i < info->hdr->e_shnum; i++) |
2061 | info->sechdrs[i].sh_entsize = ~0UL; | |
1da177e4 | 2062 | |
5e124169 | 2063 | pr_debug("Core section allocation order:\n"); |
1da177e4 | 2064 | for (m = 0; m < ARRAY_SIZE(masks); ++m) { |
49668688 RR |
2065 | for (i = 0; i < info->hdr->e_shnum; ++i) { |
2066 | Elf_Shdr *s = &info->sechdrs[i]; | |
2067 | const char *sname = info->secstrings + s->sh_name; | |
1da177e4 LT |
2068 | |
2069 | if ((s->sh_flags & masks[m][0]) != masks[m][0] | |
2070 | || (s->sh_flags & masks[m][1]) | |
2071 | || s->sh_entsize != ~0UL | |
49668688 | 2072 | || strstarts(sname, ".init")) |
1da177e4 | 2073 | continue; |
088af9a6 | 2074 | s->sh_entsize = get_offset(mod, &mod->core_size, s, i); |
5e124169 | 2075 | pr_debug("\t%s\n", sname); |
1da177e4 | 2076 | } |
84e1c6bb MC |
2077 | switch (m) { |
2078 | case 0: /* executable */ | |
2079 | mod->core_size = debug_align(mod->core_size); | |
1da177e4 | 2080 | mod->core_text_size = mod->core_size; |
84e1c6bb MC |
2081 | break; |
2082 | case 1: /* RO: text and ro-data */ | |
2083 | mod->core_size = debug_align(mod->core_size); | |
2084 | mod->core_ro_size = mod->core_size; | |
2085 | break; | |
2086 | case 3: /* whole core */ | |
2087 | mod->core_size = debug_align(mod->core_size); | |
2088 | break; | |
2089 | } | |
1da177e4 LT |
2090 | } |
2091 | ||
5e124169 | 2092 | pr_debug("Init section allocation order:\n"); |
1da177e4 | 2093 | for (m = 0; m < ARRAY_SIZE(masks); ++m) { |
49668688 RR |
2094 | for (i = 0; i < info->hdr->e_shnum; ++i) { |
2095 | Elf_Shdr *s = &info->sechdrs[i]; | |
2096 | const char *sname = info->secstrings + s->sh_name; | |
1da177e4 LT |
2097 | |
2098 | if ((s->sh_flags & masks[m][0]) != masks[m][0] | |
2099 | || (s->sh_flags & masks[m][1]) | |
2100 | || s->sh_entsize != ~0UL | |
49668688 | 2101 | || !strstarts(sname, ".init")) |
1da177e4 | 2102 | continue; |
088af9a6 | 2103 | s->sh_entsize = (get_offset(mod, &mod->init_size, s, i) |
1da177e4 | 2104 | | INIT_OFFSET_MASK); |
5e124169 | 2105 | pr_debug("\t%s\n", sname); |
1da177e4 | 2106 | } |
84e1c6bb MC |
2107 | switch (m) { |
2108 | case 0: /* executable */ | |
2109 | mod->init_size = debug_align(mod->init_size); | |
1da177e4 | 2110 | mod->init_text_size = mod->init_size; |
84e1c6bb MC |
2111 | break; |
2112 | case 1: /* RO: text and ro-data */ | |
2113 | mod->init_size = debug_align(mod->init_size); | |
2114 | mod->init_ro_size = mod->init_size; | |
2115 | break; | |
2116 | case 3: /* whole init */ | |
2117 | mod->init_size = debug_align(mod->init_size); | |
2118 | break; | |
2119 | } | |
1da177e4 LT |
2120 | } |
2121 | } | |
2122 | ||
1da177e4 LT |
2123 | static void set_license(struct module *mod, const char *license) |
2124 | { | |
2125 | if (!license) | |
2126 | license = "unspecified"; | |
2127 | ||
fa3ba2e8 | 2128 | if (!license_is_gpl_compatible(license)) { |
25ddbb18 | 2129 | if (!test_taint(TAINT_PROPRIETARY_MODULE)) |
1d4d2627 | 2130 | printk(KERN_WARNING "%s: module license '%s' taints " |
fa3ba2e8 FM |
2131 | "kernel.\n", mod->name, license); |
2132 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE); | |
1da177e4 LT |
2133 | } |
2134 | } | |
2135 | ||
2136 | /* Parse tag=value strings from .modinfo section */ | |
2137 | static char *next_string(char *string, unsigned long *secsize) | |
2138 | { | |
2139 | /* Skip non-zero chars */ | |
2140 | while (string[0]) { | |
2141 | string++; | |
2142 | if ((*secsize)-- <= 1) | |
2143 | return NULL; | |
2144 | } | |
2145 | ||
2146 | /* Skip any zero padding. */ | |
2147 | while (!string[0]) { | |
2148 | string++; | |
2149 | if ((*secsize)-- <= 1) | |
2150 | return NULL; | |
2151 | } | |
2152 | return string; | |
2153 | } | |
2154 | ||
49668688 | 2155 | static char *get_modinfo(struct load_info *info, const char *tag) |
1da177e4 LT |
2156 | { |
2157 | char *p; | |
2158 | unsigned int taglen = strlen(tag); | |
49668688 RR |
2159 | Elf_Shdr *infosec = &info->sechdrs[info->index.info]; |
2160 | unsigned long size = infosec->sh_size; | |
1da177e4 | 2161 | |
49668688 | 2162 | for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) { |
1da177e4 LT |
2163 | if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') |
2164 | return p + taglen + 1; | |
2165 | } | |
2166 | return NULL; | |
2167 | } | |
2168 | ||
49668688 | 2169 | static void setup_modinfo(struct module *mod, struct load_info *info) |
c988d2b2 MD |
2170 | { |
2171 | struct module_attribute *attr; | |
2172 | int i; | |
2173 | ||
2174 | for (i = 0; (attr = modinfo_attrs[i]); i++) { | |
2175 | if (attr->setup) | |
49668688 | 2176 | attr->setup(mod, get_modinfo(info, attr->attr.name)); |
c988d2b2 MD |
2177 | } |
2178 | } | |
c988d2b2 | 2179 | |
a263f776 RR |
2180 | static void free_modinfo(struct module *mod) |
2181 | { | |
2182 | struct module_attribute *attr; | |
2183 | int i; | |
2184 | ||
2185 | for (i = 0; (attr = modinfo_attrs[i]); i++) { | |
2186 | if (attr->free) | |
2187 | attr->free(mod); | |
2188 | } | |
2189 | } | |
2190 | ||
1da177e4 | 2191 | #ifdef CONFIG_KALLSYMS |
15bba37d WC |
2192 | |
2193 | /* lookup symbol in given range of kernel_symbols */ | |
2194 | static const struct kernel_symbol *lookup_symbol(const char *name, | |
2195 | const struct kernel_symbol *start, | |
2196 | const struct kernel_symbol *stop) | |
2197 | { | |
9d63487f AIB |
2198 | return bsearch(name, start, stop - start, |
2199 | sizeof(struct kernel_symbol), cmp_name); | |
15bba37d WC |
2200 | } |
2201 | ||
ca4787b7 TA |
2202 | static int is_exported(const char *name, unsigned long value, |
2203 | const struct module *mod) | |
1da177e4 | 2204 | { |
ca4787b7 TA |
2205 | const struct kernel_symbol *ks; |
2206 | if (!mod) | |
2207 | ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab); | |
3fd6805f | 2208 | else |
ca4787b7 TA |
2209 | ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms); |
2210 | return ks != NULL && ks->value == value; | |
1da177e4 LT |
2211 | } |
2212 | ||
2213 | /* As per nm */ | |
eded41c1 | 2214 | static char elf_type(const Elf_Sym *sym, const struct load_info *info) |
1da177e4 | 2215 | { |
eded41c1 RR |
2216 | const Elf_Shdr *sechdrs = info->sechdrs; |
2217 | ||
1da177e4 LT |
2218 | if (ELF_ST_BIND(sym->st_info) == STB_WEAK) { |
2219 | if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT) | |
2220 | return 'v'; | |
2221 | else | |
2222 | return 'w'; | |
2223 | } | |
2224 | if (sym->st_shndx == SHN_UNDEF) | |
2225 | return 'U'; | |
2226 | if (sym->st_shndx == SHN_ABS) | |
2227 | return 'a'; | |
2228 | if (sym->st_shndx >= SHN_LORESERVE) | |
2229 | return '?'; | |
2230 | if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR) | |
2231 | return 't'; | |
2232 | if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC | |
2233 | && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) { | |
2234 | if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE)) | |
2235 | return 'r'; | |
2236 | else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL) | |
2237 | return 'g'; | |
2238 | else | |
2239 | return 'd'; | |
2240 | } | |
2241 | if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) { | |
2242 | if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL) | |
2243 | return 's'; | |
2244 | else | |
2245 | return 'b'; | |
2246 | } | |
eded41c1 RR |
2247 | if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name, |
2248 | ".debug")) { | |
1da177e4 | 2249 | return 'n'; |
eded41c1 | 2250 | } |
1da177e4 LT |
2251 | return '?'; |
2252 | } | |
2253 | ||
4a496226 JB |
2254 | static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs, |
2255 | unsigned int shnum) | |
2256 | { | |
2257 | const Elf_Shdr *sec; | |
2258 | ||
2259 | if (src->st_shndx == SHN_UNDEF | |
2260 | || src->st_shndx >= shnum | |
2261 | || !src->st_name) | |
2262 | return false; | |
2263 | ||
2264 | sec = sechdrs + src->st_shndx; | |
2265 | if (!(sec->sh_flags & SHF_ALLOC) | |
2266 | #ifndef CONFIG_KALLSYMS_ALL | |
2267 | || !(sec->sh_flags & SHF_EXECINSTR) | |
2268 | #endif | |
2269 | || (sec->sh_entsize & INIT_OFFSET_MASK)) | |
2270 | return false; | |
2271 | ||
2272 | return true; | |
2273 | } | |
2274 | ||
48fd1188 KC |
2275 | /* |
2276 | * We only allocate and copy the strings needed by the parts of symtab | |
2277 | * we keep. This is simple, but has the effect of making multiple | |
2278 | * copies of duplicates. We could be more sophisticated, see | |
2279 | * linux-kernel thread starting with | |
2280 | * <73defb5e4bca04a6431392cc341112b1@localhost>. | |
2281 | */ | |
49668688 | 2282 | static void layout_symtab(struct module *mod, struct load_info *info) |
4a496226 | 2283 | { |
49668688 RR |
2284 | Elf_Shdr *symsect = info->sechdrs + info->index.sym; |
2285 | Elf_Shdr *strsect = info->sechdrs + info->index.str; | |
4a496226 | 2286 | const Elf_Sym *src; |
48fd1188 | 2287 | unsigned int i, nsrc, ndst, strtab_size; |
4a496226 JB |
2288 | |
2289 | /* Put symbol section at end of init part of module. */ | |
2290 | symsect->sh_flags |= SHF_ALLOC; | |
2291 | symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect, | |
49668688 | 2292 | info->index.sym) | INIT_OFFSET_MASK; |
5e124169 | 2293 | pr_debug("\t%s\n", info->secstrings + symsect->sh_name); |
4a496226 | 2294 | |
49668688 | 2295 | src = (void *)info->hdr + symsect->sh_offset; |
4a496226 | 2296 | nsrc = symsect->sh_size / sizeof(*src); |
70b1e916 | 2297 | |
59ef28b1 RR |
2298 | /* strtab always starts with a nul, so offset 0 is the empty string. */ |
2299 | strtab_size = 1; | |
2300 | ||
48fd1188 | 2301 | /* Compute total space required for the core symbols' strtab. */ |
59ef28b1 RR |
2302 | for (ndst = i = 0; i < nsrc; i++) { |
2303 | if (i == 0 || | |
2304 | is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) { | |
2305 | strtab_size += strlen(&info->strtab[src[i].st_name])+1; | |
48fd1188 | 2306 | ndst++; |
554bdfe5 | 2307 | } |
59ef28b1 | 2308 | } |
4a496226 JB |
2309 | |
2310 | /* Append room for core symbols at end of core part. */ | |
49668688 | 2311 | info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1); |
48fd1188 KC |
2312 | info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym); |
2313 | mod->core_size += strtab_size; | |
4a496226 | 2314 | |
554bdfe5 JB |
2315 | /* Put string table section at end of init part of module. */ |
2316 | strsect->sh_flags |= SHF_ALLOC; | |
2317 | strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect, | |
49668688 | 2318 | info->index.str) | INIT_OFFSET_MASK; |
5e124169 | 2319 | pr_debug("\t%s\n", info->secstrings + strsect->sh_name); |
4a496226 JB |
2320 | } |
2321 | ||
811d66a0 | 2322 | static void add_kallsyms(struct module *mod, const struct load_info *info) |
1da177e4 | 2323 | { |
4a496226 JB |
2324 | unsigned int i, ndst; |
2325 | const Elf_Sym *src; | |
2326 | Elf_Sym *dst; | |
554bdfe5 | 2327 | char *s; |
eded41c1 | 2328 | Elf_Shdr *symsec = &info->sechdrs[info->index.sym]; |
1da177e4 | 2329 | |
eded41c1 RR |
2330 | mod->symtab = (void *)symsec->sh_addr; |
2331 | mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym); | |
511ca6ae RR |
2332 | /* Make sure we get permanent strtab: don't use info->strtab. */ |
2333 | mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr; | |
1da177e4 LT |
2334 | |
2335 | /* Set types up while we still have access to sections. */ | |
2336 | for (i = 0; i < mod->num_symtab; i++) | |
eded41c1 | 2337 | mod->symtab[i].st_info = elf_type(&mod->symtab[i], info); |
4a496226 | 2338 | |
d913188c | 2339 | mod->core_symtab = dst = mod->module_core + info->symoffs; |
48fd1188 | 2340 | mod->core_strtab = s = mod->module_core + info->stroffs; |
4a496226 | 2341 | src = mod->symtab; |
48fd1188 | 2342 | *s++ = 0; |
59ef28b1 RR |
2343 | for (ndst = i = 0; i < mod->num_symtab; i++) { |
2344 | if (i == 0 || | |
2345 | is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) { | |
2346 | dst[ndst] = src[i]; | |
2347 | dst[ndst++].st_name = s - mod->core_strtab; | |
2348 | s += strlcpy(s, &mod->strtab[src[i].st_name], | |
2349 | KSYM_NAME_LEN) + 1; | |
2350 | } | |
4a496226 JB |
2351 | } |
2352 | mod->core_num_syms = ndst; | |
1da177e4 LT |
2353 | } |
2354 | #else | |
49668688 | 2355 | static inline void layout_symtab(struct module *mod, struct load_info *info) |
4a496226 JB |
2356 | { |
2357 | } | |
3ae91c21 | 2358 | |
abbce906 | 2359 | static void add_kallsyms(struct module *mod, const struct load_info *info) |
1da177e4 LT |
2360 | { |
2361 | } | |
2362 | #endif /* CONFIG_KALLSYMS */ | |
2363 | ||
e9d376f0 | 2364 | static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num) |
346e15be | 2365 | { |
811d66a0 RR |
2366 | if (!debug) |
2367 | return; | |
e9d376f0 JB |
2368 | #ifdef CONFIG_DYNAMIC_DEBUG |
2369 | if (ddebug_add_module(debug, num, debug->modname)) | |
2370 | printk(KERN_ERR "dynamic debug error adding module: %s\n", | |
2371 | debug->modname); | |
2372 | #endif | |
5e458cc0 | 2373 | } |
346e15be | 2374 | |
ff49d74a YS |
2375 | static void dynamic_debug_remove(struct _ddebug *debug) |
2376 | { | |
2377 | if (debug) | |
2378 | ddebug_remove_module(debug->modname); | |
2379 | } | |
2380 | ||
74e08fcf JB |
2381 | void * __weak module_alloc(unsigned long size) |
2382 | { | |
2383 | return size == 0 ? NULL : vmalloc_exec(size); | |
2384 | } | |
2385 | ||
3a642e99 RR |
2386 | static void *module_alloc_update_bounds(unsigned long size) |
2387 | { | |
2388 | void *ret = module_alloc(size); | |
2389 | ||
2390 | if (ret) { | |
75676500 | 2391 | mutex_lock(&module_mutex); |
3a642e99 RR |
2392 | /* Update module bounds. */ |
2393 | if ((unsigned long)ret < module_addr_min) | |
2394 | module_addr_min = (unsigned long)ret; | |
2395 | if ((unsigned long)ret + size > module_addr_max) | |
2396 | module_addr_max = (unsigned long)ret + size; | |
75676500 | 2397 | mutex_unlock(&module_mutex); |
3a642e99 RR |
2398 | } |
2399 | return ret; | |
2400 | } | |
2401 | ||
4f2294b6 | 2402 | #ifdef CONFIG_DEBUG_KMEMLEAK |
49668688 RR |
2403 | static void kmemleak_load_module(const struct module *mod, |
2404 | const struct load_info *info) | |
4f2294b6 CM |
2405 | { |
2406 | unsigned int i; | |
2407 | ||
2408 | /* only scan the sections containing data */ | |
c017b4be | 2409 | kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL); |
4f2294b6 | 2410 | |
49668688 RR |
2411 | for (i = 1; i < info->hdr->e_shnum; i++) { |
2412 | const char *name = info->secstrings + info->sechdrs[i].sh_name; | |
2413 | if (!(info->sechdrs[i].sh_flags & SHF_ALLOC)) | |
4f2294b6 | 2414 | continue; |
49668688 | 2415 | if (!strstarts(name, ".data") && !strstarts(name, ".bss")) |
4f2294b6 CM |
2416 | continue; |
2417 | ||
49668688 RR |
2418 | kmemleak_scan_area((void *)info->sechdrs[i].sh_addr, |
2419 | info->sechdrs[i].sh_size, GFP_KERNEL); | |
4f2294b6 CM |
2420 | } |
2421 | } | |
2422 | #else | |
49668688 RR |
2423 | static inline void kmemleak_load_module(const struct module *mod, |
2424 | const struct load_info *info) | |
4f2294b6 CM |
2425 | { |
2426 | } | |
2427 | #endif | |
2428 | ||
106a4ee2 | 2429 | #ifdef CONFIG_MODULE_SIG |
34e1169d | 2430 | static int module_sig_check(struct load_info *info) |
106a4ee2 RR |
2431 | { |
2432 | int err = -ENOKEY; | |
34e1169d KC |
2433 | const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1; |
2434 | const void *mod = info->hdr; | |
caabe240 | 2435 | |
34e1169d KC |
2436 | if (info->len > markerlen && |
2437 | memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) { | |
caabe240 | 2438 | /* We truncate the module to discard the signature */ |
34e1169d KC |
2439 | info->len -= markerlen; |
2440 | err = mod_verify_sig(mod, &info->len); | |
106a4ee2 RR |
2441 | } |
2442 | ||
2443 | if (!err) { | |
2444 | info->sig_ok = true; | |
2445 | return 0; | |
2446 | } | |
2447 | ||
2448 | /* Not having a signature is only an error if we're strict. */ | |
1d0059f3 DH |
2449 | if (err < 0 && fips_enabled) |
2450 | panic("Module verification failed with error %d in FIPS mode\n", | |
2451 | err); | |
106a4ee2 RR |
2452 | if (err == -ENOKEY && !sig_enforce) |
2453 | err = 0; | |
2454 | ||
2455 | return err; | |
2456 | } | |
2457 | #else /* !CONFIG_MODULE_SIG */ | |
34e1169d | 2458 | static int module_sig_check(struct load_info *info) |
106a4ee2 RR |
2459 | { |
2460 | return 0; | |
2461 | } | |
2462 | #endif /* !CONFIG_MODULE_SIG */ | |
2463 | ||
34e1169d KC |
2464 | /* Sanity checks against invalid binaries, wrong arch, weird elf version. */ |
2465 | static int elf_header_check(struct load_info *info) | |
40dd2560 | 2466 | { |
34e1169d KC |
2467 | if (info->len < sizeof(*(info->hdr))) |
2468 | return -ENOEXEC; | |
2469 | ||
2470 | if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0 | |
2471 | || info->hdr->e_type != ET_REL | |
2472 | || !elf_check_arch(info->hdr) | |
2473 | || info->hdr->e_shentsize != sizeof(Elf_Shdr)) | |
2474 | return -ENOEXEC; | |
2475 | ||
2476 | if (info->hdr->e_shoff >= info->len | |
2477 | || (info->hdr->e_shnum * sizeof(Elf_Shdr) > | |
2478 | info->len - info->hdr->e_shoff)) | |
2479 | return -ENOEXEC; | |
40dd2560 | 2480 | |
34e1169d KC |
2481 | return 0; |
2482 | } | |
2483 | ||
2484 | /* Sets info->hdr and info->len. */ | |
2485 | static int copy_module_from_user(const void __user *umod, unsigned long len, | |
2486 | struct load_info *info) | |
2487 | { | |
2488 | info->len = len; | |
2489 | if (info->len < sizeof(*(info->hdr))) | |
40dd2560 RR |
2490 | return -ENOEXEC; |
2491 | ||
2492 | /* Suck in entire file: we'll want most of it. */ | |
34e1169d KC |
2493 | info->hdr = vmalloc(info->len); |
2494 | if (!info->hdr) | |
40dd2560 RR |
2495 | return -ENOMEM; |
2496 | ||
34e1169d KC |
2497 | if (copy_from_user(info->hdr, umod, info->len) != 0) { |
2498 | vfree(info->hdr); | |
2499 | return -EFAULT; | |
40dd2560 RR |
2500 | } |
2501 | ||
34e1169d KC |
2502 | return 0; |
2503 | } | |
2504 | ||
2505 | /* Sets info->hdr and info->len. */ | |
2506 | static int copy_module_from_fd(int fd, struct load_info *info) | |
2507 | { | |
2508 | struct file *file; | |
2509 | int err; | |
2510 | struct kstat stat; | |
2511 | loff_t pos; | |
2512 | ssize_t bytes = 0; | |
2513 | ||
2514 | file = fget(fd); | |
2515 | if (!file) | |
2516 | return -ENOEXEC; | |
2517 | ||
2518 | err = vfs_getattr(file->f_vfsmnt, file->f_dentry, &stat); | |
106a4ee2 | 2519 | if (err) |
34e1169d | 2520 | goto out; |
106a4ee2 | 2521 | |
34e1169d KC |
2522 | if (stat.size > INT_MAX) { |
2523 | err = -EFBIG; | |
2524 | goto out; | |
40dd2560 | 2525 | } |
34e1169d KC |
2526 | info->hdr = vmalloc(stat.size); |
2527 | if (!info->hdr) { | |
2528 | err = -ENOMEM; | |
2529 | goto out; | |
40dd2560 | 2530 | } |
d913188c | 2531 | |
34e1169d KC |
2532 | pos = 0; |
2533 | while (pos < stat.size) { | |
2534 | bytes = kernel_read(file, pos, (char *)(info->hdr) + pos, | |
2535 | stat.size - pos); | |
2536 | if (bytes < 0) { | |
2537 | vfree(info->hdr); | |
2538 | err = bytes; | |
2539 | goto out; | |
2540 | } | |
2541 | if (bytes == 0) | |
2542 | break; | |
2543 | pos += bytes; | |
2544 | } | |
2545 | info->len = pos; | |
40dd2560 | 2546 | |
34e1169d KC |
2547 | out: |
2548 | fput(file); | |
40dd2560 RR |
2549 | return err; |
2550 | } | |
2551 | ||
d913188c RR |
2552 | static void free_copy(struct load_info *info) |
2553 | { | |
d913188c RR |
2554 | vfree(info->hdr); |
2555 | } | |
2556 | ||
2f3238ae | 2557 | static int rewrite_section_headers(struct load_info *info, int flags) |
8b5f61a7 RR |
2558 | { |
2559 | unsigned int i; | |
2560 | ||
2561 | /* This should always be true, but let's be sure. */ | |
2562 | info->sechdrs[0].sh_addr = 0; | |
2563 | ||
2564 | for (i = 1; i < info->hdr->e_shnum; i++) { | |
2565 | Elf_Shdr *shdr = &info->sechdrs[i]; | |
2566 | if (shdr->sh_type != SHT_NOBITS | |
2567 | && info->len < shdr->sh_offset + shdr->sh_size) { | |
2568 | printk(KERN_ERR "Module len %lu truncated\n", | |
2569 | info->len); | |
2570 | return -ENOEXEC; | |
2571 | } | |
2572 | ||
2573 | /* Mark all sections sh_addr with their address in the | |
2574 | temporary image. */ | |
2575 | shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset; | |
2576 | ||
2577 | #ifndef CONFIG_MODULE_UNLOAD | |
2578 | /* Don't load .exit sections */ | |
2579 | if (strstarts(info->secstrings+shdr->sh_name, ".exit")) | |
2580 | shdr->sh_flags &= ~(unsigned long)SHF_ALLOC; | |
2581 | #endif | |
8b5f61a7 | 2582 | } |
d6df72a0 RR |
2583 | |
2584 | /* Track but don't keep modinfo and version sections. */ | |
2f3238ae RR |
2585 | if (flags & MODULE_INIT_IGNORE_MODVERSIONS) |
2586 | info->index.vers = 0; /* Pretend no __versions section! */ | |
2587 | else | |
2588 | info->index.vers = find_sec(info, "__versions"); | |
49668688 | 2589 | info->index.info = find_sec(info, ".modinfo"); |
d6df72a0 RR |
2590 | info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC; |
2591 | info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC; | |
8b5f61a7 RR |
2592 | return 0; |
2593 | } | |
2594 | ||
3264d3f9 LT |
2595 | /* |
2596 | * Set up our basic convenience variables (pointers to section headers, | |
2597 | * search for module section index etc), and do some basic section | |
2598 | * verification. | |
2599 | * | |
2600 | * Return the temporary module pointer (we'll replace it with the final | |
2601 | * one when we move the module sections around). | |
2602 | */ | |
2f3238ae | 2603 | static struct module *setup_load_info(struct load_info *info, int flags) |
3264d3f9 LT |
2604 | { |
2605 | unsigned int i; | |
8b5f61a7 | 2606 | int err; |
3264d3f9 LT |
2607 | struct module *mod; |
2608 | ||
2609 | /* Set up the convenience variables */ | |
2610 | info->sechdrs = (void *)info->hdr + info->hdr->e_shoff; | |
8b5f61a7 RR |
2611 | info->secstrings = (void *)info->hdr |
2612 | + info->sechdrs[info->hdr->e_shstrndx].sh_offset; | |
3264d3f9 | 2613 | |
2f3238ae | 2614 | err = rewrite_section_headers(info, flags); |
8b5f61a7 RR |
2615 | if (err) |
2616 | return ERR_PTR(err); | |
3264d3f9 | 2617 | |
8b5f61a7 RR |
2618 | /* Find internal symbols and strings. */ |
2619 | for (i = 1; i < info->hdr->e_shnum; i++) { | |
3264d3f9 LT |
2620 | if (info->sechdrs[i].sh_type == SHT_SYMTAB) { |
2621 | info->index.sym = i; | |
2622 | info->index.str = info->sechdrs[i].sh_link; | |
8b5f61a7 RR |
2623 | info->strtab = (char *)info->hdr |
2624 | + info->sechdrs[info->index.str].sh_offset; | |
2625 | break; | |
3264d3f9 | 2626 | } |
3264d3f9 LT |
2627 | } |
2628 | ||
49668688 | 2629 | info->index.mod = find_sec(info, ".gnu.linkonce.this_module"); |
3264d3f9 LT |
2630 | if (!info->index.mod) { |
2631 | printk(KERN_WARNING "No module found in object\n"); | |
2632 | return ERR_PTR(-ENOEXEC); | |
2633 | } | |
2634 | /* This is temporary: point mod into copy of data. */ | |
2635 | mod = (void *)info->sechdrs[info->index.mod].sh_addr; | |
2636 | ||
2637 | if (info->index.sym == 0) { | |
2638 | printk(KERN_WARNING "%s: module has no symbols (stripped?)\n", | |
2639 | mod->name); | |
2640 | return ERR_PTR(-ENOEXEC); | |
2641 | } | |
2642 | ||
49668688 | 2643 | info->index.pcpu = find_pcpusec(info); |
3264d3f9 | 2644 | |
3264d3f9 LT |
2645 | /* Check module struct version now, before we try to use module. */ |
2646 | if (!check_modstruct_version(info->sechdrs, info->index.vers, mod)) | |
2647 | return ERR_PTR(-ENOEXEC); | |
2648 | ||
2649 | return mod; | |
3264d3f9 LT |
2650 | } |
2651 | ||
2f3238ae | 2652 | static int check_modinfo(struct module *mod, struct load_info *info, int flags) |
40dd2560 | 2653 | { |
49668688 | 2654 | const char *modmagic = get_modinfo(info, "vermagic"); |
40dd2560 RR |
2655 | int err; |
2656 | ||
2f3238ae RR |
2657 | if (flags & MODULE_INIT_IGNORE_VERMAGIC) |
2658 | modmagic = NULL; | |
2659 | ||
40dd2560 RR |
2660 | /* This is allowed: modprobe --force will invalidate it. */ |
2661 | if (!modmagic) { | |
2662 | err = try_to_force_load(mod, "bad vermagic"); | |
2663 | if (err) | |
2664 | return err; | |
49668688 | 2665 | } else if (!same_magic(modmagic, vermagic, info->index.vers)) { |
40dd2560 RR |
2666 | printk(KERN_ERR "%s: version magic '%s' should be '%s'\n", |
2667 | mod->name, modmagic, vermagic); | |
2668 | return -ENOEXEC; | |
2669 | } | |
2670 | ||
2449b8ba BH |
2671 | if (!get_modinfo(info, "intree")) |
2672 | add_taint_module(mod, TAINT_OOT_MODULE); | |
2673 | ||
49668688 | 2674 | if (get_modinfo(info, "staging")) { |
40dd2560 RR |
2675 | add_taint_module(mod, TAINT_CRAP); |
2676 | printk(KERN_WARNING "%s: module is from the staging directory," | |
2677 | " the quality is unknown, you have been warned.\n", | |
2678 | mod->name); | |
2679 | } | |
22e268eb RR |
2680 | |
2681 | /* Set up license info based on the info section */ | |
49668688 | 2682 | set_license(mod, get_modinfo(info, "license")); |
22e268eb | 2683 | |
40dd2560 RR |
2684 | return 0; |
2685 | } | |
2686 | ||
811d66a0 | 2687 | static void find_module_sections(struct module *mod, struct load_info *info) |
f91a13bb | 2688 | { |
49668688 | 2689 | mod->kp = section_objs(info, "__param", |
f91a13bb | 2690 | sizeof(*mod->kp), &mod->num_kp); |
49668688 | 2691 | mod->syms = section_objs(info, "__ksymtab", |
f91a13bb | 2692 | sizeof(*mod->syms), &mod->num_syms); |
49668688 RR |
2693 | mod->crcs = section_addr(info, "__kcrctab"); |
2694 | mod->gpl_syms = section_objs(info, "__ksymtab_gpl", | |
f91a13bb LT |
2695 | sizeof(*mod->gpl_syms), |
2696 | &mod->num_gpl_syms); | |
49668688 RR |
2697 | mod->gpl_crcs = section_addr(info, "__kcrctab_gpl"); |
2698 | mod->gpl_future_syms = section_objs(info, | |
f91a13bb LT |
2699 | "__ksymtab_gpl_future", |
2700 | sizeof(*mod->gpl_future_syms), | |
2701 | &mod->num_gpl_future_syms); | |
49668688 | 2702 | mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future"); |
f91a13bb LT |
2703 | |
2704 | #ifdef CONFIG_UNUSED_SYMBOLS | |
49668688 | 2705 | mod->unused_syms = section_objs(info, "__ksymtab_unused", |
f91a13bb LT |
2706 | sizeof(*mod->unused_syms), |
2707 | &mod->num_unused_syms); | |
49668688 RR |
2708 | mod->unused_crcs = section_addr(info, "__kcrctab_unused"); |
2709 | mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl", | |
f91a13bb LT |
2710 | sizeof(*mod->unused_gpl_syms), |
2711 | &mod->num_unused_gpl_syms); | |
49668688 | 2712 | mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl"); |
f91a13bb LT |
2713 | #endif |
2714 | #ifdef CONFIG_CONSTRUCTORS | |
49668688 | 2715 | mod->ctors = section_objs(info, ".ctors", |
f91a13bb LT |
2716 | sizeof(*mod->ctors), &mod->num_ctors); |
2717 | #endif | |
2718 | ||
2719 | #ifdef CONFIG_TRACEPOINTS | |
65498646 MD |
2720 | mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs", |
2721 | sizeof(*mod->tracepoints_ptrs), | |
2722 | &mod->num_tracepoints); | |
f91a13bb | 2723 | #endif |
bf5438fc JB |
2724 | #ifdef HAVE_JUMP_LABEL |
2725 | mod->jump_entries = section_objs(info, "__jump_table", | |
2726 | sizeof(*mod->jump_entries), | |
2727 | &mod->num_jump_entries); | |
2728 | #endif | |
f91a13bb | 2729 | #ifdef CONFIG_EVENT_TRACING |
49668688 | 2730 | mod->trace_events = section_objs(info, "_ftrace_events", |
f91a13bb LT |
2731 | sizeof(*mod->trace_events), |
2732 | &mod->num_trace_events); | |
2733 | /* | |
2734 | * This section contains pointers to allocated objects in the trace | |
2735 | * code and not scanning it leads to false positives. | |
2736 | */ | |
2737 | kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) * | |
2738 | mod->num_trace_events, GFP_KERNEL); | |
2739 | #endif | |
13b9b6e7 SR |
2740 | #ifdef CONFIG_TRACING |
2741 | mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt", | |
2742 | sizeof(*mod->trace_bprintk_fmt_start), | |
2743 | &mod->num_trace_bprintk_fmt); | |
2744 | /* | |
2745 | * This section contains pointers to allocated objects in the trace | |
2746 | * code and not scanning it leads to false positives. | |
2747 | */ | |
2748 | kmemleak_scan_area(mod->trace_bprintk_fmt_start, | |
2749 | sizeof(*mod->trace_bprintk_fmt_start) * | |
2750 | mod->num_trace_bprintk_fmt, GFP_KERNEL); | |
2751 | #endif | |
f91a13bb LT |
2752 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
2753 | /* sechdrs[0].sh_size is always zero */ | |
49668688 | 2754 | mod->ftrace_callsites = section_objs(info, "__mcount_loc", |
f91a13bb LT |
2755 | sizeof(*mod->ftrace_callsites), |
2756 | &mod->num_ftrace_callsites); | |
2757 | #endif | |
22e268eb | 2758 | |
811d66a0 RR |
2759 | mod->extable = section_objs(info, "__ex_table", |
2760 | sizeof(*mod->extable), &mod->num_exentries); | |
2761 | ||
49668688 | 2762 | if (section_addr(info, "__obsparm")) |
22e268eb RR |
2763 | printk(KERN_WARNING "%s: Ignoring obsolete parameters\n", |
2764 | mod->name); | |
811d66a0 RR |
2765 | |
2766 | info->debug = section_objs(info, "__verbose", | |
2767 | sizeof(*info->debug), &info->num_debug); | |
f91a13bb LT |
2768 | } |
2769 | ||
49668688 | 2770 | static int move_module(struct module *mod, struct load_info *info) |
65b8a9b4 LT |
2771 | { |
2772 | int i; | |
2773 | void *ptr; | |
2774 | ||
2775 | /* Do the allocs. */ | |
2776 | ptr = module_alloc_update_bounds(mod->core_size); | |
2777 | /* | |
2778 | * The pointer to this block is stored in the module structure | |
2779 | * which is inside the block. Just mark it as not being a | |
2780 | * leak. | |
2781 | */ | |
2782 | kmemleak_not_leak(ptr); | |
2783 | if (!ptr) | |
d913188c | 2784 | return -ENOMEM; |
65b8a9b4 LT |
2785 | |
2786 | memset(ptr, 0, mod->core_size); | |
2787 | mod->module_core = ptr; | |
2788 | ||
2789 | ptr = module_alloc_update_bounds(mod->init_size); | |
2790 | /* | |
2791 | * The pointer to this block is stored in the module structure | |
2792 | * which is inside the block. This block doesn't need to be | |
2793 | * scanned as it contains data and code that will be freed | |
2794 | * after the module is initialized. | |
2795 | */ | |
2796 | kmemleak_ignore(ptr); | |
2797 | if (!ptr && mod->init_size) { | |
2798 | module_free(mod, mod->module_core); | |
d913188c | 2799 | return -ENOMEM; |
65b8a9b4 LT |
2800 | } |
2801 | memset(ptr, 0, mod->init_size); | |
2802 | mod->module_init = ptr; | |
2803 | ||
2804 | /* Transfer each section which specifies SHF_ALLOC */ | |
5e124169 | 2805 | pr_debug("final section addresses:\n"); |
49668688 | 2806 | for (i = 0; i < info->hdr->e_shnum; i++) { |
65b8a9b4 | 2807 | void *dest; |
49668688 | 2808 | Elf_Shdr *shdr = &info->sechdrs[i]; |
65b8a9b4 | 2809 | |
49668688 | 2810 | if (!(shdr->sh_flags & SHF_ALLOC)) |
65b8a9b4 LT |
2811 | continue; |
2812 | ||
49668688 | 2813 | if (shdr->sh_entsize & INIT_OFFSET_MASK) |
65b8a9b4 | 2814 | dest = mod->module_init |
49668688 | 2815 | + (shdr->sh_entsize & ~INIT_OFFSET_MASK); |
65b8a9b4 | 2816 | else |
49668688 | 2817 | dest = mod->module_core + shdr->sh_entsize; |
65b8a9b4 | 2818 | |
49668688 RR |
2819 | if (shdr->sh_type != SHT_NOBITS) |
2820 | memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size); | |
65b8a9b4 | 2821 | /* Update sh_addr to point to copy in image. */ |
49668688 | 2822 | shdr->sh_addr = (unsigned long)dest; |
5e124169 JC |
2823 | pr_debug("\t0x%lx %s\n", |
2824 | (long)shdr->sh_addr, info->secstrings + shdr->sh_name); | |
65b8a9b4 | 2825 | } |
d913188c RR |
2826 | |
2827 | return 0; | |
65b8a9b4 LT |
2828 | } |
2829 | ||
49668688 | 2830 | static int check_module_license_and_versions(struct module *mod) |
22e268eb RR |
2831 | { |
2832 | /* | |
2833 | * ndiswrapper is under GPL by itself, but loads proprietary modules. | |
2834 | * Don't use add_taint_module(), as it would prevent ndiswrapper from | |
2835 | * using GPL-only symbols it needs. | |
2836 | */ | |
2837 | if (strcmp(mod->name, "ndiswrapper") == 0) | |
2838 | add_taint(TAINT_PROPRIETARY_MODULE); | |
2839 | ||
2840 | /* driverloader was caught wrongly pretending to be under GPL */ | |
2841 | if (strcmp(mod->name, "driverloader") == 0) | |
2842 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE); | |
2843 | ||
c99af375 MG |
2844 | /* lve claims to be GPL but upstream won't provide source */ |
2845 | if (strcmp(mod->name, "lve") == 0) | |
2846 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE); | |
2847 | ||
22e268eb RR |
2848 | #ifdef CONFIG_MODVERSIONS |
2849 | if ((mod->num_syms && !mod->crcs) | |
2850 | || (mod->num_gpl_syms && !mod->gpl_crcs) | |
2851 | || (mod->num_gpl_future_syms && !mod->gpl_future_crcs) | |
2852 | #ifdef CONFIG_UNUSED_SYMBOLS | |
2853 | || (mod->num_unused_syms && !mod->unused_crcs) | |
2854 | || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs) | |
2855 | #endif | |
2856 | ) { | |
2857 | return try_to_force_load(mod, | |
2858 | "no versions for exported symbols"); | |
2859 | } | |
2860 | #endif | |
2861 | return 0; | |
2862 | } | |
2863 | ||
2864 | static void flush_module_icache(const struct module *mod) | |
2865 | { | |
2866 | mm_segment_t old_fs; | |
2867 | ||
2868 | /* flush the icache in correct context */ | |
2869 | old_fs = get_fs(); | |
2870 | set_fs(KERNEL_DS); | |
2871 | ||
2872 | /* | |
2873 | * Flush the instruction cache, since we've played with text. | |
2874 | * Do it before processing of module parameters, so the module | |
2875 | * can provide parameter accessor functions of its own. | |
2876 | */ | |
2877 | if (mod->module_init) | |
2878 | flush_icache_range((unsigned long)mod->module_init, | |
2879 | (unsigned long)mod->module_init | |
2880 | + mod->init_size); | |
2881 | flush_icache_range((unsigned long)mod->module_core, | |
2882 | (unsigned long)mod->module_core + mod->core_size); | |
2883 | ||
2884 | set_fs(old_fs); | |
2885 | } | |
2886 | ||
74e08fcf JB |
2887 | int __weak module_frob_arch_sections(Elf_Ehdr *hdr, |
2888 | Elf_Shdr *sechdrs, | |
2889 | char *secstrings, | |
2890 | struct module *mod) | |
2891 | { | |
2892 | return 0; | |
2893 | } | |
2894 | ||
2f3238ae | 2895 | static struct module *layout_and_allocate(struct load_info *info, int flags) |
1da177e4 | 2896 | { |
d913188c | 2897 | /* Module within temporary copy. */ |
1da177e4 | 2898 | struct module *mod; |
49668688 | 2899 | Elf_Shdr *pcpusec; |
d913188c | 2900 | int err; |
3ae91c21 | 2901 | |
2f3238ae | 2902 | mod = setup_load_info(info, flags); |
d913188c RR |
2903 | if (IS_ERR(mod)) |
2904 | return mod; | |
1da177e4 | 2905 | |
2f3238ae | 2906 | err = check_modinfo(mod, info, flags); |
40dd2560 RR |
2907 | if (err) |
2908 | return ERR_PTR(err); | |
1da177e4 | 2909 | |
1da177e4 | 2910 | /* Allow arches to frob section contents and sizes. */ |
49668688 RR |
2911 | err = module_frob_arch_sections(info->hdr, info->sechdrs, |
2912 | info->secstrings, mod); | |
1da177e4 | 2913 | if (err < 0) |
6526c534 | 2914 | goto out; |
1da177e4 | 2915 | |
49668688 RR |
2916 | pcpusec = &info->sechdrs[info->index.pcpu]; |
2917 | if (pcpusec->sh_size) { | |
1da177e4 | 2918 | /* We have a special allocation for this section. */ |
49668688 RR |
2919 | err = percpu_modalloc(mod, |
2920 | pcpusec->sh_size, pcpusec->sh_addralign); | |
259354de | 2921 | if (err) |
6526c534 | 2922 | goto out; |
49668688 | 2923 | pcpusec->sh_flags &= ~(unsigned long)SHF_ALLOC; |
1da177e4 LT |
2924 | } |
2925 | ||
2926 | /* Determine total sizes, and put offsets in sh_entsize. For now | |
2927 | this is done generically; there doesn't appear to be any | |
2928 | special cases for the architectures. */ | |
49668688 | 2929 | layout_sections(mod, info); |
49668688 | 2930 | layout_symtab(mod, info); |
1da177e4 | 2931 | |
65b8a9b4 | 2932 | /* Allocate and move to the final place */ |
49668688 | 2933 | err = move_module(mod, info); |
d913188c | 2934 | if (err) |
48fd1188 | 2935 | goto free_percpu; |
d913188c RR |
2936 | |
2937 | /* Module has been copied to its final place now: return it. */ | |
2938 | mod = (void *)info->sechdrs[info->index.mod].sh_addr; | |
49668688 | 2939 | kmemleak_load_module(mod, info); |
d913188c RR |
2940 | return mod; |
2941 | ||
d913188c RR |
2942 | free_percpu: |
2943 | percpu_modfree(mod); | |
6526c534 | 2944 | out: |
d913188c RR |
2945 | return ERR_PTR(err); |
2946 | } | |
2947 | ||
2948 | /* mod is no longer valid after this! */ | |
2949 | static void module_deallocate(struct module *mod, struct load_info *info) | |
2950 | { | |
d913188c RR |
2951 | percpu_modfree(mod); |
2952 | module_free(mod, mod->module_init); | |
2953 | module_free(mod, mod->module_core); | |
2954 | } | |
2955 | ||
74e08fcf JB |
2956 | int __weak module_finalize(const Elf_Ehdr *hdr, |
2957 | const Elf_Shdr *sechdrs, | |
2958 | struct module *me) | |
2959 | { | |
2960 | return 0; | |
2961 | } | |
2962 | ||
811d66a0 RR |
2963 | static int post_relocation(struct module *mod, const struct load_info *info) |
2964 | { | |
51f3d0f4 | 2965 | /* Sort exception table now relocations are done. */ |
811d66a0 RR |
2966 | sort_extable(mod->extable, mod->extable + mod->num_exentries); |
2967 | ||
2968 | /* Copy relocated percpu area over. */ | |
2969 | percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr, | |
2970 | info->sechdrs[info->index.pcpu].sh_size); | |
2971 | ||
51f3d0f4 | 2972 | /* Setup kallsyms-specific fields. */ |
811d66a0 RR |
2973 | add_kallsyms(mod, info); |
2974 | ||
2975 | /* Arch-specific module finalizing. */ | |
2976 | return module_finalize(info->hdr, info->sechdrs, mod); | |
2977 | } | |
2978 | ||
9bb9c3be RR |
2979 | /* Is this module of this name done loading? No locks held. */ |
2980 | static bool finished_loading(const char *name) | |
2981 | { | |
2982 | struct module *mod; | |
2983 | bool ret; | |
2984 | ||
2985 | mutex_lock(&module_mutex); | |
2986 | mod = find_module(name); | |
2987 | ret = !mod || mod->state != MODULE_STATE_COMING; | |
2988 | mutex_unlock(&module_mutex); | |
2989 | ||
2990 | return ret; | |
2991 | } | |
2992 | ||
34e1169d KC |
2993 | /* Call module constructors. */ |
2994 | static void do_mod_ctors(struct module *mod) | |
2995 | { | |
2996 | #ifdef CONFIG_CONSTRUCTORS | |
2997 | unsigned long i; | |
2998 | ||
2999 | for (i = 0; i < mod->num_ctors; i++) | |
3000 | mod->ctors[i](); | |
3001 | #endif | |
3002 | } | |
3003 | ||
3004 | /* This is where the real work happens */ | |
3005 | static int do_init_module(struct module *mod) | |
3006 | { | |
3007 | int ret = 0; | |
3008 | ||
3009 | blocking_notifier_call_chain(&module_notify_list, | |
3010 | MODULE_STATE_COMING, mod); | |
3011 | ||
3012 | /* Set RO and NX regions for core */ | |
3013 | set_section_ro_nx(mod->module_core, | |
3014 | mod->core_text_size, | |
3015 | mod->core_ro_size, | |
3016 | mod->core_size); | |
3017 | ||
3018 | /* Set RO and NX regions for init */ | |
3019 | set_section_ro_nx(mod->module_init, | |
3020 | mod->init_text_size, | |
3021 | mod->init_ro_size, | |
3022 | mod->init_size); | |
3023 | ||
3024 | do_mod_ctors(mod); | |
3025 | /* Start the module */ | |
3026 | if (mod->init != NULL) | |
3027 | ret = do_one_initcall(mod->init); | |
3028 | if (ret < 0) { | |
3029 | /* Init routine failed: abort. Try to protect us from | |
3030 | buggy refcounters. */ | |
3031 | mod->state = MODULE_STATE_GOING; | |
3032 | synchronize_sched(); | |
3033 | module_put(mod); | |
3034 | blocking_notifier_call_chain(&module_notify_list, | |
3035 | MODULE_STATE_GOING, mod); | |
3036 | free_module(mod); | |
3037 | wake_up_all(&module_wq); | |
3038 | return ret; | |
3039 | } | |
3040 | if (ret > 0) { | |
3041 | printk(KERN_WARNING | |
3042 | "%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n" | |
3043 | "%s: loading module anyway...\n", | |
3044 | __func__, mod->name, ret, | |
3045 | __func__); | |
3046 | dump_stack(); | |
3047 | } | |
3048 | ||
3049 | /* Now it's a first class citizen! */ | |
3050 | mod->state = MODULE_STATE_LIVE; | |
3051 | blocking_notifier_call_chain(&module_notify_list, | |
3052 | MODULE_STATE_LIVE, mod); | |
3053 | ||
3054 | /* We need to finish all async code before the module init sequence is done */ | |
3055 | async_synchronize_full(); | |
3056 | ||
3057 | mutex_lock(&module_mutex); | |
3058 | /* Drop initial reference. */ | |
3059 | module_put(mod); | |
3060 | trim_init_extable(mod); | |
3061 | #ifdef CONFIG_KALLSYMS | |
3062 | mod->num_symtab = mod->core_num_syms; | |
3063 | mod->symtab = mod->core_symtab; | |
3064 | mod->strtab = mod->core_strtab; | |
3065 | #endif | |
3066 | unset_module_init_ro_nx(mod); | |
3067 | module_free(mod, mod->module_init); | |
3068 | mod->module_init = NULL; | |
3069 | mod->init_size = 0; | |
3070 | mod->init_ro_size = 0; | |
3071 | mod->init_text_size = 0; | |
3072 | mutex_unlock(&module_mutex); | |
3073 | wake_up_all(&module_wq); | |
3074 | ||
3075 | return 0; | |
3076 | } | |
3077 | ||
3078 | static int may_init_module(void) | |
3079 | { | |
3080 | if (!capable(CAP_SYS_MODULE) || modules_disabled) | |
3081 | return -EPERM; | |
3082 | ||
3083 | return 0; | |
3084 | } | |
3085 | ||
d913188c RR |
3086 | /* Allocate and load the module: note that size of section 0 is always |
3087 | zero, and we rely on this for optional sections. */ | |
2f3238ae RR |
3088 | static int load_module(struct load_info *info, const char __user *uargs, |
3089 | int flags) | |
d913188c | 3090 | { |
9bb9c3be | 3091 | struct module *mod, *old; |
d913188c | 3092 | long err; |
d913188c | 3093 | |
34e1169d KC |
3094 | err = module_sig_check(info); |
3095 | if (err) | |
3096 | goto free_copy; | |
d913188c | 3097 | |
34e1169d | 3098 | err = elf_header_check(info); |
d913188c | 3099 | if (err) |
34e1169d | 3100 | goto free_copy; |
d913188c RR |
3101 | |
3102 | /* Figure out module layout, and allocate all the memory. */ | |
2f3238ae | 3103 | mod = layout_and_allocate(info, flags); |
65b8a9b4 LT |
3104 | if (IS_ERR(mod)) { |
3105 | err = PTR_ERR(mod); | |
d913188c | 3106 | goto free_copy; |
1da177e4 | 3107 | } |
1da177e4 | 3108 | |
106a4ee2 | 3109 | #ifdef CONFIG_MODULE_SIG |
34e1169d | 3110 | mod->sig_ok = info->sig_ok; |
106a4ee2 RR |
3111 | if (!mod->sig_ok) |
3112 | add_taint_module(mod, TAINT_FORCED_MODULE); | |
3113 | #endif | |
3114 | ||
49668688 | 3115 | /* Now module is in final location, initialize linked lists, etc. */ |
9f85a4bb RR |
3116 | err = module_unload_init(mod); |
3117 | if (err) | |
d913188c | 3118 | goto free_module; |
1da177e4 | 3119 | |
22e268eb RR |
3120 | /* Now we've got everything in the final locations, we can |
3121 | * find optional sections. */ | |
34e1169d | 3122 | find_module_sections(mod, info); |
9b37ccfc | 3123 | |
49668688 | 3124 | err = check_module_license_and_versions(mod); |
22e268eb RR |
3125 | if (err) |
3126 | goto free_unload; | |
9841d61d | 3127 | |
c988d2b2 | 3128 | /* Set up MODINFO_ATTR fields */ |
34e1169d | 3129 | setup_modinfo(mod, info); |
c988d2b2 | 3130 | |
1da177e4 | 3131 | /* Fix up syms, so that st_value is a pointer to location. */ |
34e1169d | 3132 | err = simplify_symbols(mod, info); |
1da177e4 | 3133 | if (err < 0) |
d913188c | 3134 | goto free_modinfo; |
1da177e4 | 3135 | |
34e1169d | 3136 | err = apply_relocations(mod, info); |
22e268eb | 3137 | if (err < 0) |
d913188c | 3138 | goto free_modinfo; |
1da177e4 | 3139 | |
34e1169d | 3140 | err = post_relocation(mod, info); |
1da177e4 | 3141 | if (err < 0) |
d913188c | 3142 | goto free_modinfo; |
1da177e4 | 3143 | |
22e268eb | 3144 | flush_module_icache(mod); |
378bac82 | 3145 | |
6526c534 RR |
3146 | /* Now copy in args */ |
3147 | mod->args = strndup_user(uargs, ~0UL >> 1); | |
3148 | if (IS_ERR(mod->args)) { | |
3149 | err = PTR_ERR(mod->args); | |
3150 | goto free_arch_cleanup; | |
3151 | } | |
8d3b33f6 | 3152 | |
51f3d0f4 | 3153 | /* Mark state as coming so strong_try_module_get() ignores us. */ |
d913188c RR |
3154 | mod->state = MODULE_STATE_COMING; |
3155 | ||
bb9d3d56 | 3156 | /* Now sew it into the lists so we can get lockdep and oops |
25985edc | 3157 | * info during argument parsing. No one should access us, since |
d72b3751 AK |
3158 | * strong_try_module_get() will fail. |
3159 | * lockdep/oops can run asynchronous, so use the RCU list insertion | |
3160 | * function to insert in a way safe to concurrent readers. | |
3161 | * The mutex protects against concurrent writers. | |
3162 | */ | |
9bb9c3be | 3163 | again: |
75676500 | 3164 | mutex_lock(&module_mutex); |
9bb9c3be RR |
3165 | if ((old = find_module(mod->name)) != NULL) { |
3166 | if (old->state == MODULE_STATE_COMING) { | |
3167 | /* Wait in case it fails to load. */ | |
3168 | mutex_unlock(&module_mutex); | |
3169 | err = wait_event_interruptible(module_wq, | |
3170 | finished_loading(mod->name)); | |
3171 | if (err) | |
3172 | goto free_arch_cleanup; | |
3173 | goto again; | |
3174 | } | |
3bafeb62 | 3175 | err = -EEXIST; |
be593f4c | 3176 | goto unlock; |
3bafeb62 LT |
3177 | } |
3178 | ||
811d66a0 | 3179 | /* This has to be done once we're sure module name is unique. */ |
34e1169d | 3180 | dynamic_debug_setup(info->debug, info->num_debug); |
ff49d74a | 3181 | |
be593f4c RR |
3182 | /* Find duplicate symbols */ |
3183 | err = verify_export_symbols(mod); | |
3184 | if (err < 0) | |
ff49d74a | 3185 | goto ddebug; |
be593f4c | 3186 | |
34e1169d | 3187 | module_bug_finalize(info->hdr, info->sechdrs, mod); |
d72b3751 | 3188 | list_add_rcu(&mod->list, &modules); |
75676500 | 3189 | mutex_unlock(&module_mutex); |
bb9d3d56 | 3190 | |
51f3d0f4 | 3191 | /* Module is ready to execute: parsing args may do that. */ |
026cee00 | 3192 | err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, |
b48420c1 | 3193 | -32768, 32767, &ddebug_dyndbg_module_param_cb); |
1da177e4 | 3194 | if (err < 0) |
bb9d3d56 | 3195 | goto unlink; |
1da177e4 | 3196 | |
51f3d0f4 | 3197 | /* Link in to syfs. */ |
34e1169d | 3198 | err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp); |
1da177e4 | 3199 | if (err < 0) |
bb9d3d56 | 3200 | goto unlink; |
80a3d1bb | 3201 | |
48fd1188 | 3202 | /* Get rid of temporary copy. */ |
34e1169d | 3203 | free_copy(info); |
1da177e4 LT |
3204 | |
3205 | /* Done! */ | |
51f3d0f4 | 3206 | trace_module_load(mod); |
34e1169d KC |
3207 | |
3208 | return do_init_module(mod); | |
1da177e4 | 3209 | |
bb9d3d56 | 3210 | unlink: |
75676500 | 3211 | mutex_lock(&module_mutex); |
e91defa2 RR |
3212 | /* Unlink carefully: kallsyms could be walking list. */ |
3213 | list_del_rcu(&mod->list); | |
5336377d | 3214 | module_bug_cleanup(mod); |
6f13909f | 3215 | wake_up_all(&module_wq); |
ff49d74a | 3216 | ddebug: |
34e1169d | 3217 | dynamic_debug_remove(info->debug); |
be593f4c | 3218 | unlock: |
75676500 | 3219 | mutex_unlock(&module_mutex); |
e91defa2 | 3220 | synchronize_sched(); |
6526c534 RR |
3221 | kfree(mod->args); |
3222 | free_arch_cleanup: | |
1da177e4 | 3223 | module_arch_cleanup(mod); |
d913188c | 3224 | free_modinfo: |
a263f776 | 3225 | free_modinfo(mod); |
22e268eb | 3226 | free_unload: |
1da177e4 | 3227 | module_unload_free(mod); |
d913188c | 3228 | free_module: |
34e1169d | 3229 | module_deallocate(mod, info); |
d913188c | 3230 | free_copy: |
34e1169d KC |
3231 | free_copy(info); |
3232 | return err; | |
b99b87f7 PO |
3233 | } |
3234 | ||
17da2bd9 HC |
3235 | SYSCALL_DEFINE3(init_module, void __user *, umod, |
3236 | unsigned long, len, const char __user *, uargs) | |
1da177e4 | 3237 | { |
34e1169d KC |
3238 | int err; |
3239 | struct load_info info = { }; | |
1da177e4 | 3240 | |
34e1169d KC |
3241 | err = may_init_module(); |
3242 | if (err) | |
3243 | return err; | |
1da177e4 | 3244 | |
34e1169d KC |
3245 | pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n", |
3246 | umod, len, uargs); | |
1da177e4 | 3247 | |
34e1169d KC |
3248 | err = copy_module_from_user(umod, len, &info); |
3249 | if (err) | |
3250 | return err; | |
94462ad3 | 3251 | |
2f3238ae | 3252 | return load_module(&info, uargs, 0); |
34e1169d | 3253 | } |
94462ad3 | 3254 | |
2f3238ae | 3255 | SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags) |
34e1169d KC |
3256 | { |
3257 | int err; | |
3258 | struct load_info info = { }; | |
1da177e4 | 3259 | |
34e1169d KC |
3260 | err = may_init_module(); |
3261 | if (err) | |
3262 | return err; | |
6c5db22d | 3263 | |
2f3238ae RR |
3264 | pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags); |
3265 | ||
3266 | if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS | |
3267 | |MODULE_INIT_IGNORE_VERMAGIC)) | |
3268 | return -EINVAL; | |
d6de2c80 | 3269 | |
34e1169d KC |
3270 | err = copy_module_from_fd(fd, &info); |
3271 | if (err) | |
3272 | return err; | |
1da177e4 | 3273 | |
2f3238ae | 3274 | return load_module(&info, uargs, flags); |
1da177e4 LT |
3275 | } |
3276 | ||
3277 | static inline int within(unsigned long addr, void *start, unsigned long size) | |
3278 | { | |
3279 | return ((void *)addr >= start && (void *)addr < start + size); | |
3280 | } | |
3281 | ||
3282 | #ifdef CONFIG_KALLSYMS | |
3283 | /* | |
3284 | * This ignores the intensely annoying "mapping symbols" found | |
3285 | * in ARM ELF files: $a, $t and $d. | |
3286 | */ | |
3287 | static inline int is_arm_mapping_symbol(const char *str) | |
3288 | { | |
22a8bdeb | 3289 | return str[0] == '$' && strchr("atd", str[1]) |
1da177e4 LT |
3290 | && (str[2] == '\0' || str[2] == '.'); |
3291 | } | |
3292 | ||
3293 | static const char *get_ksymbol(struct module *mod, | |
3294 | unsigned long addr, | |
3295 | unsigned long *size, | |
3296 | unsigned long *offset) | |
3297 | { | |
3298 | unsigned int i, best = 0; | |
3299 | unsigned long nextval; | |
3300 | ||
3301 | /* At worse, next value is at end of module */ | |
a06f6211 | 3302 | if (within_module_init(addr, mod)) |
1da177e4 | 3303 | nextval = (unsigned long)mod->module_init+mod->init_text_size; |
22a8bdeb | 3304 | else |
1da177e4 LT |
3305 | nextval = (unsigned long)mod->module_core+mod->core_text_size; |
3306 | ||
25985edc | 3307 | /* Scan for closest preceding symbol, and next symbol. (ELF |
22a8bdeb | 3308 | starts real symbols at 1). */ |
1da177e4 LT |
3309 | for (i = 1; i < mod->num_symtab; i++) { |
3310 | if (mod->symtab[i].st_shndx == SHN_UNDEF) | |
3311 | continue; | |
3312 | ||
3313 | /* We ignore unnamed symbols: they're uninformative | |
3314 | * and inserted at a whim. */ | |
3315 | if (mod->symtab[i].st_value <= addr | |
3316 | && mod->symtab[i].st_value > mod->symtab[best].st_value | |
3317 | && *(mod->strtab + mod->symtab[i].st_name) != '\0' | |
3318 | && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name)) | |
3319 | best = i; | |
3320 | if (mod->symtab[i].st_value > addr | |
3321 | && mod->symtab[i].st_value < nextval | |
3322 | && *(mod->strtab + mod->symtab[i].st_name) != '\0' | |
3323 | && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name)) | |
3324 | nextval = mod->symtab[i].st_value; | |
3325 | } | |
3326 | ||
3327 | if (!best) | |
3328 | return NULL; | |
3329 | ||
ffb45122 AD |
3330 | if (size) |
3331 | *size = nextval - mod->symtab[best].st_value; | |
3332 | if (offset) | |
3333 | *offset = addr - mod->symtab[best].st_value; | |
1da177e4 LT |
3334 | return mod->strtab + mod->symtab[best].st_name; |
3335 | } | |
3336 | ||
6dd06c9f RR |
3337 | /* For kallsyms to ask for address resolution. NULL means not found. Careful |
3338 | * not to lock to avoid deadlock on oopses, simply disable preemption. */ | |
92dfc9dc | 3339 | const char *module_address_lookup(unsigned long addr, |
6dd06c9f RR |
3340 | unsigned long *size, |
3341 | unsigned long *offset, | |
3342 | char **modname, | |
3343 | char *namebuf) | |
1da177e4 LT |
3344 | { |
3345 | struct module *mod; | |
cb2a5205 | 3346 | const char *ret = NULL; |
1da177e4 | 3347 | |
cb2a5205 | 3348 | preempt_disable(); |
d72b3751 | 3349 | list_for_each_entry_rcu(mod, &modules, list) { |
a06f6211 MH |
3350 | if (within_module_init(addr, mod) || |
3351 | within_module_core(addr, mod)) { | |
ffc50891 FBH |
3352 | if (modname) |
3353 | *modname = mod->name; | |
cb2a5205 RR |
3354 | ret = get_ksymbol(mod, addr, size, offset); |
3355 | break; | |
1da177e4 LT |
3356 | } |
3357 | } | |
6dd06c9f RR |
3358 | /* Make a copy in here where it's safe */ |
3359 | if (ret) { | |
3360 | strncpy(namebuf, ret, KSYM_NAME_LEN - 1); | |
3361 | ret = namebuf; | |
3362 | } | |
cb2a5205 | 3363 | preempt_enable(); |
92dfc9dc | 3364 | return ret; |
1da177e4 LT |
3365 | } |
3366 | ||
9d65cb4a AD |
3367 | int lookup_module_symbol_name(unsigned long addr, char *symname) |
3368 | { | |
3369 | struct module *mod; | |
3370 | ||
cb2a5205 | 3371 | preempt_disable(); |
d72b3751 | 3372 | list_for_each_entry_rcu(mod, &modules, list) { |
a06f6211 MH |
3373 | if (within_module_init(addr, mod) || |
3374 | within_module_core(addr, mod)) { | |
9d65cb4a AD |
3375 | const char *sym; |
3376 | ||
3377 | sym = get_ksymbol(mod, addr, NULL, NULL); | |
3378 | if (!sym) | |
3379 | goto out; | |
9281acea | 3380 | strlcpy(symname, sym, KSYM_NAME_LEN); |
cb2a5205 | 3381 | preempt_enable(); |
9d65cb4a AD |
3382 | return 0; |
3383 | } | |
3384 | } | |
3385 | out: | |
cb2a5205 | 3386 | preempt_enable(); |
9d65cb4a AD |
3387 | return -ERANGE; |
3388 | } | |
3389 | ||
a5c43dae AD |
3390 | int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, |
3391 | unsigned long *offset, char *modname, char *name) | |
3392 | { | |
3393 | struct module *mod; | |
3394 | ||
cb2a5205 | 3395 | preempt_disable(); |
d72b3751 | 3396 | list_for_each_entry_rcu(mod, &modules, list) { |
a06f6211 MH |
3397 | if (within_module_init(addr, mod) || |
3398 | within_module_core(addr, mod)) { | |
a5c43dae AD |
3399 | const char *sym; |
3400 | ||
3401 | sym = get_ksymbol(mod, addr, size, offset); | |
3402 | if (!sym) | |
3403 | goto out; | |
3404 | if (modname) | |
9281acea | 3405 | strlcpy(modname, mod->name, MODULE_NAME_LEN); |
a5c43dae | 3406 | if (name) |
9281acea | 3407 | strlcpy(name, sym, KSYM_NAME_LEN); |
cb2a5205 | 3408 | preempt_enable(); |
a5c43dae AD |
3409 | return 0; |
3410 | } | |
3411 | } | |
3412 | out: | |
cb2a5205 | 3413 | preempt_enable(); |
a5c43dae AD |
3414 | return -ERANGE; |
3415 | } | |
3416 | ||
ea07890a AD |
3417 | int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type, |
3418 | char *name, char *module_name, int *exported) | |
1da177e4 LT |
3419 | { |
3420 | struct module *mod; | |
3421 | ||
cb2a5205 | 3422 | preempt_disable(); |
d72b3751 | 3423 | list_for_each_entry_rcu(mod, &modules, list) { |
1da177e4 LT |
3424 | if (symnum < mod->num_symtab) { |
3425 | *value = mod->symtab[symnum].st_value; | |
3426 | *type = mod->symtab[symnum].st_info; | |
098c5eea | 3427 | strlcpy(name, mod->strtab + mod->symtab[symnum].st_name, |
9281acea TH |
3428 | KSYM_NAME_LEN); |
3429 | strlcpy(module_name, mod->name, MODULE_NAME_LEN); | |
ca4787b7 | 3430 | *exported = is_exported(name, *value, mod); |
cb2a5205 | 3431 | preempt_enable(); |
ea07890a | 3432 | return 0; |
1da177e4 LT |
3433 | } |
3434 | symnum -= mod->num_symtab; | |
3435 | } | |
cb2a5205 | 3436 | preempt_enable(); |
ea07890a | 3437 | return -ERANGE; |
1da177e4 LT |
3438 | } |
3439 | ||
3440 | static unsigned long mod_find_symname(struct module *mod, const char *name) | |
3441 | { | |
3442 | unsigned int i; | |
3443 | ||
3444 | for (i = 0; i < mod->num_symtab; i++) | |
54e8ce46 KO |
3445 | if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 && |
3446 | mod->symtab[i].st_info != 'U') | |
1da177e4 LT |
3447 | return mod->symtab[i].st_value; |
3448 | return 0; | |
3449 | } | |
3450 | ||
3451 | /* Look for this name: can be of form module:name. */ | |
3452 | unsigned long module_kallsyms_lookup_name(const char *name) | |
3453 | { | |
3454 | struct module *mod; | |
3455 | char *colon; | |
3456 | unsigned long ret = 0; | |
3457 | ||
3458 | /* Don't lock: we're in enough trouble already. */ | |
cb2a5205 | 3459 | preempt_disable(); |
1da177e4 LT |
3460 | if ((colon = strchr(name, ':')) != NULL) { |
3461 | *colon = '\0'; | |
3462 | if ((mod = find_module(name)) != NULL) | |
3463 | ret = mod_find_symname(mod, colon+1); | |
3464 | *colon = ':'; | |
3465 | } else { | |
d72b3751 | 3466 | list_for_each_entry_rcu(mod, &modules, list) |
1da177e4 LT |
3467 | if ((ret = mod_find_symname(mod, name)) != 0) |
3468 | break; | |
3469 | } | |
cb2a5205 | 3470 | preempt_enable(); |
1da177e4 LT |
3471 | return ret; |
3472 | } | |
75a66614 AK |
3473 | |
3474 | int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *, | |
3475 | struct module *, unsigned long), | |
3476 | void *data) | |
3477 | { | |
3478 | struct module *mod; | |
3479 | unsigned int i; | |
3480 | int ret; | |
3481 | ||
3482 | list_for_each_entry(mod, &modules, list) { | |
3483 | for (i = 0; i < mod->num_symtab; i++) { | |
3484 | ret = fn(data, mod->strtab + mod->symtab[i].st_name, | |
3485 | mod, mod->symtab[i].st_value); | |
3486 | if (ret != 0) | |
3487 | return ret; | |
3488 | } | |
3489 | } | |
3490 | return 0; | |
3491 | } | |
1da177e4 LT |
3492 | #endif /* CONFIG_KALLSYMS */ |
3493 | ||
21aa9280 | 3494 | static char *module_flags(struct module *mod, char *buf) |
fa3ba2e8 FM |
3495 | { |
3496 | int bx = 0; | |
3497 | ||
21aa9280 AV |
3498 | if (mod->taints || |
3499 | mod->state == MODULE_STATE_GOING || | |
3500 | mod->state == MODULE_STATE_COMING) { | |
fa3ba2e8 | 3501 | buf[bx++] = '('; |
cca3e707 | 3502 | bx += module_flags_taint(mod, buf + bx); |
21aa9280 AV |
3503 | /* Show a - for module-is-being-unloaded */ |
3504 | if (mod->state == MODULE_STATE_GOING) | |
3505 | buf[bx++] = '-'; | |
3506 | /* Show a + for module-is-being-loaded */ | |
3507 | if (mod->state == MODULE_STATE_COMING) | |
3508 | buf[bx++] = '+'; | |
fa3ba2e8 FM |
3509 | buf[bx++] = ')'; |
3510 | } | |
3511 | buf[bx] = '\0'; | |
3512 | ||
3513 | return buf; | |
3514 | } | |
3515 | ||
3b5d5c6b AD |
3516 | #ifdef CONFIG_PROC_FS |
3517 | /* Called by the /proc file system to return a list of modules. */ | |
3518 | static void *m_start(struct seq_file *m, loff_t *pos) | |
3519 | { | |
3520 | mutex_lock(&module_mutex); | |
3521 | return seq_list_start(&modules, *pos); | |
3522 | } | |
3523 | ||
3524 | static void *m_next(struct seq_file *m, void *p, loff_t *pos) | |
3525 | { | |
3526 | return seq_list_next(p, &modules, pos); | |
3527 | } | |
3528 | ||
3529 | static void m_stop(struct seq_file *m, void *p) | |
3530 | { | |
3531 | mutex_unlock(&module_mutex); | |
3532 | } | |
3533 | ||
1da177e4 LT |
3534 | static int m_show(struct seq_file *m, void *p) |
3535 | { | |
3536 | struct module *mod = list_entry(p, struct module, list); | |
fa3ba2e8 FM |
3537 | char buf[8]; |
3538 | ||
2f0f2a33 | 3539 | seq_printf(m, "%s %u", |
1da177e4 LT |
3540 | mod->name, mod->init_size + mod->core_size); |
3541 | print_unload_info(m, mod); | |
3542 | ||
3543 | /* Informative for users. */ | |
3544 | seq_printf(m, " %s", | |
3545 | mod->state == MODULE_STATE_GOING ? "Unloading": | |
3546 | mod->state == MODULE_STATE_COMING ? "Loading": | |
3547 | "Live"); | |
3548 | /* Used by oprofile and other similar tools. */ | |
9f36e2c4 | 3549 | seq_printf(m, " 0x%pK", mod->module_core); |
1da177e4 | 3550 | |
fa3ba2e8 FM |
3551 | /* Taints info */ |
3552 | if (mod->taints) | |
21aa9280 | 3553 | seq_printf(m, " %s", module_flags(mod, buf)); |
fa3ba2e8 | 3554 | |
1da177e4 LT |
3555 | seq_printf(m, "\n"); |
3556 | return 0; | |
3557 | } | |
3558 | ||
3559 | /* Format: modulename size refcount deps address | |
3560 | ||
3561 | Where refcount is a number or -, and deps is a comma-separated list | |
3562 | of depends or -. | |
3563 | */ | |
3b5d5c6b | 3564 | static const struct seq_operations modules_op = { |
1da177e4 LT |
3565 | .start = m_start, |
3566 | .next = m_next, | |
3567 | .stop = m_stop, | |
3568 | .show = m_show | |
3569 | }; | |
3570 | ||
3b5d5c6b AD |
3571 | static int modules_open(struct inode *inode, struct file *file) |
3572 | { | |
3573 | return seq_open(file, &modules_op); | |
3574 | } | |
3575 | ||
3576 | static const struct file_operations proc_modules_operations = { | |
3577 | .open = modules_open, | |
3578 | .read = seq_read, | |
3579 | .llseek = seq_lseek, | |
3580 | .release = seq_release, | |
3581 | }; | |
3582 | ||
3583 | static int __init proc_modules_init(void) | |
3584 | { | |
3585 | proc_create("modules", 0, NULL, &proc_modules_operations); | |
3586 | return 0; | |
3587 | } | |
3588 | module_init(proc_modules_init); | |
3589 | #endif | |
3590 | ||
1da177e4 LT |
3591 | /* Given an address, look for it in the module exception tables. */ |
3592 | const struct exception_table_entry *search_module_extables(unsigned long addr) | |
3593 | { | |
1da177e4 LT |
3594 | const struct exception_table_entry *e = NULL; |
3595 | struct module *mod; | |
3596 | ||
24da1cbf | 3597 | preempt_disable(); |
d72b3751 | 3598 | list_for_each_entry_rcu(mod, &modules, list) { |
1da177e4 LT |
3599 | if (mod->num_exentries == 0) |
3600 | continue; | |
22a8bdeb | 3601 | |
1da177e4 LT |
3602 | e = search_extable(mod->extable, |
3603 | mod->extable + mod->num_exentries - 1, | |
3604 | addr); | |
3605 | if (e) | |
3606 | break; | |
3607 | } | |
24da1cbf | 3608 | preempt_enable(); |
1da177e4 LT |
3609 | |
3610 | /* Now, if we found one, we are running inside it now, hence | |
22a8bdeb | 3611 | we cannot unload the module, hence no refcnt needed. */ |
1da177e4 LT |
3612 | return e; |
3613 | } | |
3614 | ||
4d435f9d | 3615 | /* |
e610499e RR |
3616 | * is_module_address - is this address inside a module? |
3617 | * @addr: the address to check. | |
3618 | * | |
3619 | * See is_module_text_address() if you simply want to see if the address | |
3620 | * is code (not data). | |
4d435f9d | 3621 | */ |
e610499e | 3622 | bool is_module_address(unsigned long addr) |
4d435f9d | 3623 | { |
e610499e | 3624 | bool ret; |
4d435f9d | 3625 | |
24da1cbf | 3626 | preempt_disable(); |
e610499e | 3627 | ret = __module_address(addr) != NULL; |
24da1cbf | 3628 | preempt_enable(); |
4d435f9d | 3629 | |
e610499e | 3630 | return ret; |
4d435f9d IM |
3631 | } |
3632 | ||
e610499e RR |
3633 | /* |
3634 | * __module_address - get the module which contains an address. | |
3635 | * @addr: the address. | |
3636 | * | |
3637 | * Must be called with preempt disabled or module mutex held so that | |
3638 | * module doesn't get freed during this. | |
3639 | */ | |
714f83d5 | 3640 | struct module *__module_address(unsigned long addr) |
1da177e4 LT |
3641 | { |
3642 | struct module *mod; | |
3643 | ||
3a642e99 RR |
3644 | if (addr < module_addr_min || addr > module_addr_max) |
3645 | return NULL; | |
3646 | ||
d72b3751 | 3647 | list_for_each_entry_rcu(mod, &modules, list) |
e610499e RR |
3648 | if (within_module_core(addr, mod) |
3649 | || within_module_init(addr, mod)) | |
1da177e4 LT |
3650 | return mod; |
3651 | return NULL; | |
3652 | } | |
c6b37801 | 3653 | EXPORT_SYMBOL_GPL(__module_address); |
1da177e4 | 3654 | |
e610499e RR |
3655 | /* |
3656 | * is_module_text_address - is this address inside module code? | |
3657 | * @addr: the address to check. | |
3658 | * | |
3659 | * See is_module_address() if you simply want to see if the address is | |
3660 | * anywhere in a module. See kernel_text_address() for testing if an | |
3661 | * address corresponds to kernel or module code. | |
3662 | */ | |
3663 | bool is_module_text_address(unsigned long addr) | |
3664 | { | |
3665 | bool ret; | |
3666 | ||
3667 | preempt_disable(); | |
3668 | ret = __module_text_address(addr) != NULL; | |
3669 | preempt_enable(); | |
3670 | ||
3671 | return ret; | |
3672 | } | |
3673 | ||
3674 | /* | |
3675 | * __module_text_address - get the module whose code contains an address. | |
3676 | * @addr: the address. | |
3677 | * | |
3678 | * Must be called with preempt disabled or module mutex held so that | |
3679 | * module doesn't get freed during this. | |
3680 | */ | |
3681 | struct module *__module_text_address(unsigned long addr) | |
3682 | { | |
3683 | struct module *mod = __module_address(addr); | |
3684 | if (mod) { | |
3685 | /* Make sure it's within the text section. */ | |
3686 | if (!within(addr, mod->module_init, mod->init_text_size) | |
3687 | && !within(addr, mod->module_core, mod->core_text_size)) | |
3688 | mod = NULL; | |
3689 | } | |
3690 | return mod; | |
3691 | } | |
c6b37801 | 3692 | EXPORT_SYMBOL_GPL(__module_text_address); |
e610499e | 3693 | |
1da177e4 LT |
3694 | /* Don't grab lock, we're oopsing. */ |
3695 | void print_modules(void) | |
3696 | { | |
3697 | struct module *mod; | |
2bc2d61a | 3698 | char buf[8]; |
1da177e4 | 3699 | |
b231125a | 3700 | printk(KERN_DEFAULT "Modules linked in:"); |
d72b3751 AK |
3701 | /* Most callers should already have preempt disabled, but make sure */ |
3702 | preempt_disable(); | |
3703 | list_for_each_entry_rcu(mod, &modules, list) | |
21aa9280 | 3704 | printk(" %s%s", mod->name, module_flags(mod, buf)); |
d72b3751 | 3705 | preempt_enable(); |
e14af7ee AV |
3706 | if (last_unloaded_module[0]) |
3707 | printk(" [last unloaded: %s]", last_unloaded_module); | |
1da177e4 LT |
3708 | printk("\n"); |
3709 | } | |
3710 | ||
1da177e4 | 3711 | #ifdef CONFIG_MODVERSIONS |
8c8ef42a RR |
3712 | /* Generate the signature for all relevant module structures here. |
3713 | * If these change, we don't want to try to parse the module. */ | |
3714 | void module_layout(struct module *mod, | |
3715 | struct modversion_info *ver, | |
3716 | struct kernel_param *kp, | |
3717 | struct kernel_symbol *ks, | |
65498646 | 3718 | struct tracepoint * const *tp) |
8c8ef42a RR |
3719 | { |
3720 | } | |
3721 | EXPORT_SYMBOL(module_layout); | |
1da177e4 | 3722 | #endif |