]>
Commit | Line | Data |
---|---|---|
f71d20e9 | 1 | /* |
1da177e4 LT |
2 | Copyright (C) 2002 Richard Henderson |
3 | Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM. | |
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 | */ | |
1da177e4 LT |
19 | #include <linux/module.h> |
20 | #include <linux/moduleloader.h> | |
6d723736 | 21 | #include <linux/ftrace_event.h> |
1da177e4 | 22 | #include <linux/init.h> |
ae84e324 | 23 | #include <linux/kallsyms.h> |
3b5d5c6b | 24 | #include <linux/fs.h> |
6d760133 | 25 | #include <linux/sysfs.h> |
9f158333 | 26 | #include <linux/kernel.h> |
1da177e4 LT |
27 | #include <linux/slab.h> |
28 | #include <linux/vmalloc.h> | |
29 | #include <linux/elf.h> | |
3b5d5c6b | 30 | #include <linux/proc_fs.h> |
1da177e4 LT |
31 | #include <linux/seq_file.h> |
32 | #include <linux/syscalls.h> | |
33 | #include <linux/fcntl.h> | |
34 | #include <linux/rcupdate.h> | |
c59ede7b | 35 | #include <linux/capability.h> |
1da177e4 LT |
36 | #include <linux/cpu.h> |
37 | #include <linux/moduleparam.h> | |
38 | #include <linux/errno.h> | |
39 | #include <linux/err.h> | |
40 | #include <linux/vermagic.h> | |
41 | #include <linux/notifier.h> | |
f6a57033 | 42 | #include <linux/sched.h> |
1da177e4 LT |
43 | #include <linux/stop_machine.h> |
44 | #include <linux/device.h> | |
c988d2b2 | 45 | #include <linux/string.h> |
97d1f15b | 46 | #include <linux/mutex.h> |
d72b3751 | 47 | #include <linux/rculist.h> |
1da177e4 | 48 | #include <asm/uaccess.h> |
1da177e4 | 49 | #include <asm/cacheflush.h> |
b817f6fe | 50 | #include <linux/license.h> |
6d762394 | 51 | #include <asm/sections.h> |
97e1c18e | 52 | #include <linux/tracepoint.h> |
90d595fe | 53 | #include <linux/ftrace.h> |
22a9d645 | 54 | #include <linux/async.h> |
fbf59bc9 | 55 | #include <linux/percpu.h> |
4f2294b6 | 56 | #include <linux/kmemleak.h> |
1da177e4 LT |
57 | |
58 | #if 0 | |
59 | #define DEBUGP printk | |
60 | #else | |
61 | #define DEBUGP(fmt , a...) | |
62 | #endif | |
63 | ||
64 | #ifndef ARCH_SHF_SMALL | |
65 | #define ARCH_SHF_SMALL 0 | |
66 | #endif | |
67 | ||
68 | /* If this is set, the section belongs in the init part of the module */ | |
69 | #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1)) | |
70 | ||
24da1cbf | 71 | /* List of modules, protected by module_mutex or preempt_disable |
d72b3751 | 72 | * (delete uses stop_machine/add uses RCU list operations). */ |
c6b37801 TA |
73 | DEFINE_MUTEX(module_mutex); |
74 | EXPORT_SYMBOL_GPL(module_mutex); | |
1da177e4 LT |
75 | static LIST_HEAD(modules); |
76 | ||
19e4529e SR |
77 | /* Block module loading/unloading? */ |
78 | int modules_disabled = 0; | |
79 | ||
c9a3ba55 RR |
80 | /* Waiting for a module to finish initializing? */ |
81 | static DECLARE_WAIT_QUEUE_HEAD(module_wq); | |
82 | ||
e041c683 | 83 | static BLOCKING_NOTIFIER_HEAD(module_notify_list); |
1da177e4 | 84 | |
e610499e | 85 | /* Bounds of module allocation, for speeding __module_address */ |
3a642e99 RR |
86 | static unsigned long module_addr_min = -1UL, module_addr_max = 0; |
87 | ||
1da177e4 LT |
88 | int register_module_notifier(struct notifier_block * nb) |
89 | { | |
e041c683 | 90 | return blocking_notifier_chain_register(&module_notify_list, nb); |
1da177e4 LT |
91 | } |
92 | EXPORT_SYMBOL(register_module_notifier); | |
93 | ||
94 | int unregister_module_notifier(struct notifier_block * nb) | |
95 | { | |
e041c683 | 96 | return blocking_notifier_chain_unregister(&module_notify_list, nb); |
1da177e4 LT |
97 | } |
98 | EXPORT_SYMBOL(unregister_module_notifier); | |
99 | ||
9a4b9708 ML |
100 | /* We require a truly strong try_module_get(): 0 means failure due to |
101 | ongoing or failed initialization etc. */ | |
1da177e4 LT |
102 | static inline int strong_try_module_get(struct module *mod) |
103 | { | |
104 | if (mod && mod->state == MODULE_STATE_COMING) | |
c9a3ba55 RR |
105 | return -EBUSY; |
106 | if (try_module_get(mod)) | |
1da177e4 | 107 | return 0; |
c9a3ba55 RR |
108 | else |
109 | return -ENOENT; | |
1da177e4 LT |
110 | } |
111 | ||
fa3ba2e8 FM |
112 | static inline void add_taint_module(struct module *mod, unsigned flag) |
113 | { | |
114 | add_taint(flag); | |
25ddbb18 | 115 | mod->taints |= (1U << flag); |
fa3ba2e8 FM |
116 | } |
117 | ||
02a3e59a RD |
118 | /* |
119 | * A thread that wants to hold a reference to a module only while it | |
120 | * is running can call this to safely exit. nfsd and lockd use this. | |
1da177e4 LT |
121 | */ |
122 | void __module_put_and_exit(struct module *mod, long code) | |
123 | { | |
124 | module_put(mod); | |
125 | do_exit(code); | |
126 | } | |
127 | EXPORT_SYMBOL(__module_put_and_exit); | |
22a8bdeb | 128 | |
1da177e4 LT |
129 | /* Find a module section: 0 means not found. */ |
130 | static unsigned int find_sec(Elf_Ehdr *hdr, | |
131 | Elf_Shdr *sechdrs, | |
132 | const char *secstrings, | |
133 | const char *name) | |
134 | { | |
135 | unsigned int i; | |
136 | ||
137 | for (i = 1; i < hdr->e_shnum; i++) | |
138 | /* Alloc bit cleared means "ignore it." */ | |
139 | if ((sechdrs[i].sh_flags & SHF_ALLOC) | |
140 | && strcmp(secstrings+sechdrs[i].sh_name, name) == 0) | |
141 | return i; | |
142 | return 0; | |
143 | } | |
144 | ||
5e458cc0 RR |
145 | /* Find a module section, or NULL. */ |
146 | static void *section_addr(Elf_Ehdr *hdr, Elf_Shdr *shdrs, | |
147 | const char *secstrings, const char *name) | |
148 | { | |
149 | /* Section 0 has sh_addr 0. */ | |
150 | return (void *)shdrs[find_sec(hdr, shdrs, secstrings, name)].sh_addr; | |
151 | } | |
152 | ||
153 | /* Find a module section, or NULL. Fill in number of "objects" in section. */ | |
154 | static void *section_objs(Elf_Ehdr *hdr, | |
155 | Elf_Shdr *sechdrs, | |
156 | const char *secstrings, | |
157 | const char *name, | |
158 | size_t object_size, | |
159 | unsigned int *num) | |
160 | { | |
161 | unsigned int sec = find_sec(hdr, sechdrs, secstrings, name); | |
162 | ||
163 | /* Section 0 has sh_addr 0 and sh_size 0. */ | |
164 | *num = sechdrs[sec].sh_size / object_size; | |
165 | return (void *)sechdrs[sec].sh_addr; | |
166 | } | |
167 | ||
1da177e4 LT |
168 | /* Provided by the linker */ |
169 | extern const struct kernel_symbol __start___ksymtab[]; | |
170 | extern const struct kernel_symbol __stop___ksymtab[]; | |
171 | extern const struct kernel_symbol __start___ksymtab_gpl[]; | |
172 | extern const struct kernel_symbol __stop___ksymtab_gpl[]; | |
9f28bb7e GKH |
173 | extern const struct kernel_symbol __start___ksymtab_gpl_future[]; |
174 | extern const struct kernel_symbol __stop___ksymtab_gpl_future[]; | |
f71d20e9 AV |
175 | extern const struct kernel_symbol __start___ksymtab_gpl_future[]; |
176 | extern const struct kernel_symbol __stop___ksymtab_gpl_future[]; | |
1da177e4 LT |
177 | extern const unsigned long __start___kcrctab[]; |
178 | extern const unsigned long __start___kcrctab_gpl[]; | |
9f28bb7e | 179 | extern const unsigned long __start___kcrctab_gpl_future[]; |
f7f5b675 DV |
180 | #ifdef CONFIG_UNUSED_SYMBOLS |
181 | extern const struct kernel_symbol __start___ksymtab_unused[]; | |
182 | extern const struct kernel_symbol __stop___ksymtab_unused[]; | |
183 | extern const struct kernel_symbol __start___ksymtab_unused_gpl[]; | |
184 | extern const struct kernel_symbol __stop___ksymtab_unused_gpl[]; | |
f71d20e9 AV |
185 | extern const unsigned long __start___kcrctab_unused[]; |
186 | extern const unsigned long __start___kcrctab_unused_gpl[]; | |
f7f5b675 | 187 | #endif |
1da177e4 LT |
188 | |
189 | #ifndef CONFIG_MODVERSIONS | |
190 | #define symversion(base, idx) NULL | |
191 | #else | |
f83ca9fe | 192 | #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL) |
1da177e4 LT |
193 | #endif |
194 | ||
dafd0940 RR |
195 | static bool each_symbol_in_section(const struct symsearch *arr, |
196 | unsigned int arrsize, | |
197 | struct module *owner, | |
198 | bool (*fn)(const struct symsearch *syms, | |
199 | struct module *owner, | |
200 | unsigned int symnum, void *data), | |
201 | void *data) | |
ad9546c9 | 202 | { |
dafd0940 | 203 | unsigned int i, j; |
ad9546c9 | 204 | |
dafd0940 RR |
205 | for (j = 0; j < arrsize; j++) { |
206 | for (i = 0; i < arr[j].stop - arr[j].start; i++) | |
207 | if (fn(&arr[j], owner, i, data)) | |
208 | return true; | |
f71d20e9 | 209 | } |
dafd0940 RR |
210 | |
211 | return false; | |
ad9546c9 RR |
212 | } |
213 | ||
dafd0940 | 214 | /* Returns true as soon as fn returns true, otherwise false. */ |
c6b37801 TA |
215 | bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner, |
216 | unsigned int symnum, void *data), void *data) | |
ad9546c9 RR |
217 | { |
218 | struct module *mod; | |
ad9546c9 RR |
219 | const struct symsearch arr[] = { |
220 | { __start___ksymtab, __stop___ksymtab, __start___kcrctab, | |
dafd0940 | 221 | NOT_GPL_ONLY, false }, |
ad9546c9 | 222 | { __start___ksymtab_gpl, __stop___ksymtab_gpl, |
dafd0940 RR |
223 | __start___kcrctab_gpl, |
224 | GPL_ONLY, false }, | |
ad9546c9 | 225 | { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future, |
dafd0940 RR |
226 | __start___kcrctab_gpl_future, |
227 | WILL_BE_GPL_ONLY, false }, | |
f7f5b675 | 228 | #ifdef CONFIG_UNUSED_SYMBOLS |
ad9546c9 | 229 | { __start___ksymtab_unused, __stop___ksymtab_unused, |
dafd0940 RR |
230 | __start___kcrctab_unused, |
231 | NOT_GPL_ONLY, true }, | |
ad9546c9 | 232 | { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl, |
dafd0940 RR |
233 | __start___kcrctab_unused_gpl, |
234 | GPL_ONLY, true }, | |
f7f5b675 | 235 | #endif |
ad9546c9 | 236 | }; |
f71d20e9 | 237 | |
dafd0940 RR |
238 | if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data)) |
239 | return true; | |
f71d20e9 | 240 | |
d72b3751 | 241 | list_for_each_entry_rcu(mod, &modules, list) { |
ad9546c9 RR |
242 | struct symsearch arr[] = { |
243 | { mod->syms, mod->syms + mod->num_syms, mod->crcs, | |
dafd0940 | 244 | NOT_GPL_ONLY, false }, |
ad9546c9 | 245 | { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms, |
dafd0940 RR |
246 | mod->gpl_crcs, |
247 | GPL_ONLY, false }, | |
ad9546c9 RR |
248 | { mod->gpl_future_syms, |
249 | mod->gpl_future_syms + mod->num_gpl_future_syms, | |
dafd0940 RR |
250 | mod->gpl_future_crcs, |
251 | WILL_BE_GPL_ONLY, false }, | |
f7f5b675 | 252 | #ifdef CONFIG_UNUSED_SYMBOLS |
ad9546c9 RR |
253 | { mod->unused_syms, |
254 | mod->unused_syms + mod->num_unused_syms, | |
dafd0940 RR |
255 | mod->unused_crcs, |
256 | NOT_GPL_ONLY, true }, | |
ad9546c9 RR |
257 | { mod->unused_gpl_syms, |
258 | mod->unused_gpl_syms + mod->num_unused_gpl_syms, | |
dafd0940 RR |
259 | mod->unused_gpl_crcs, |
260 | GPL_ONLY, true }, | |
f7f5b675 | 261 | #endif |
ad9546c9 RR |
262 | }; |
263 | ||
dafd0940 RR |
264 | if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data)) |
265 | return true; | |
266 | } | |
267 | return false; | |
268 | } | |
c6b37801 | 269 | EXPORT_SYMBOL_GPL(each_symbol); |
dafd0940 RR |
270 | |
271 | struct find_symbol_arg { | |
272 | /* Input */ | |
273 | const char *name; | |
274 | bool gplok; | |
275 | bool warn; | |
276 | ||
277 | /* Output */ | |
278 | struct module *owner; | |
279 | const unsigned long *crc; | |
414fd31b | 280 | const struct kernel_symbol *sym; |
dafd0940 RR |
281 | }; |
282 | ||
283 | static bool find_symbol_in_section(const struct symsearch *syms, | |
284 | struct module *owner, | |
285 | unsigned int symnum, void *data) | |
286 | { | |
287 | struct find_symbol_arg *fsa = data; | |
288 | ||
289 | if (strcmp(syms->start[symnum].name, fsa->name) != 0) | |
290 | return false; | |
291 | ||
292 | if (!fsa->gplok) { | |
293 | if (syms->licence == GPL_ONLY) | |
294 | return false; | |
295 | if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) { | |
296 | printk(KERN_WARNING "Symbol %s is being used " | |
297 | "by a non-GPL module, which will not " | |
298 | "be allowed in the future\n", fsa->name); | |
299 | printk(KERN_WARNING "Please see the file " | |
300 | "Documentation/feature-removal-schedule.txt " | |
301 | "in the kernel source tree for more details.\n"); | |
9f28bb7e | 302 | } |
1da177e4 | 303 | } |
ad9546c9 | 304 | |
f7f5b675 | 305 | #ifdef CONFIG_UNUSED_SYMBOLS |
dafd0940 RR |
306 | if (syms->unused && fsa->warn) { |
307 | printk(KERN_WARNING "Symbol %s is marked as UNUSED, " | |
308 | "however this module is using it.\n", fsa->name); | |
309 | printk(KERN_WARNING | |
310 | "This symbol will go away in the future.\n"); | |
311 | printk(KERN_WARNING | |
312 | "Please evalute if this is the right api to use and if " | |
313 | "it really is, submit a report the linux kernel " | |
314 | "mailinglist together with submitting your code for " | |
315 | "inclusion.\n"); | |
316 | } | |
f7f5b675 | 317 | #endif |
dafd0940 RR |
318 | |
319 | fsa->owner = owner; | |
320 | fsa->crc = symversion(syms->crcs, symnum); | |
414fd31b | 321 | fsa->sym = &syms->start[symnum]; |
dafd0940 RR |
322 | return true; |
323 | } | |
324 | ||
414fd31b TA |
325 | /* Find a symbol and return it, along with, (optional) crc and |
326 | * (optional) module which owns it */ | |
c6b37801 TA |
327 | const struct kernel_symbol *find_symbol(const char *name, |
328 | struct module **owner, | |
329 | const unsigned long **crc, | |
330 | bool gplok, | |
331 | bool warn) | |
dafd0940 RR |
332 | { |
333 | struct find_symbol_arg fsa; | |
334 | ||
335 | fsa.name = name; | |
336 | fsa.gplok = gplok; | |
337 | fsa.warn = warn; | |
338 | ||
339 | if (each_symbol(find_symbol_in_section, &fsa)) { | |
340 | if (owner) | |
341 | *owner = fsa.owner; | |
342 | if (crc) | |
343 | *crc = fsa.crc; | |
414fd31b | 344 | return fsa.sym; |
dafd0940 RR |
345 | } |
346 | ||
1da177e4 | 347 | DEBUGP("Failed to find symbol %s\n", name); |
414fd31b | 348 | return NULL; |
1da177e4 | 349 | } |
c6b37801 | 350 | EXPORT_SYMBOL_GPL(find_symbol); |
1da177e4 | 351 | |
1da177e4 | 352 | /* Search for module by name: must hold module_mutex. */ |
c6b37801 | 353 | struct module *find_module(const char *name) |
1da177e4 LT |
354 | { |
355 | struct module *mod; | |
356 | ||
357 | list_for_each_entry(mod, &modules, list) { | |
358 | if (strcmp(mod->name, name) == 0) | |
359 | return mod; | |
360 | } | |
361 | return NULL; | |
362 | } | |
c6b37801 | 363 | EXPORT_SYMBOL_GPL(find_module); |
1da177e4 LT |
364 | |
365 | #ifdef CONFIG_SMP | |
fbf59bc9 TH |
366 | |
367 | #ifdef CONFIG_HAVE_DYNAMIC_PER_CPU_AREA | |
368 | ||
369 | static void *percpu_modalloc(unsigned long size, unsigned long align, | |
370 | const char *name) | |
371 | { | |
372 | void *ptr; | |
373 | ||
374 | if (align > PAGE_SIZE) { | |
375 | printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n", | |
376 | name, align, PAGE_SIZE); | |
377 | align = PAGE_SIZE; | |
378 | } | |
379 | ||
edcb4639 | 380 | ptr = __alloc_reserved_percpu(size, align); |
fbf59bc9 TH |
381 | if (!ptr) |
382 | printk(KERN_WARNING | |
383 | "Could not allocate %lu bytes percpu data\n", size); | |
384 | return ptr; | |
385 | } | |
386 | ||
387 | static void percpu_modfree(void *freeme) | |
388 | { | |
389 | free_percpu(freeme); | |
390 | } | |
391 | ||
392 | #else /* ... !CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */ | |
393 | ||
1da177e4 LT |
394 | /* Number of blocks used and allocated. */ |
395 | static unsigned int pcpu_num_used, pcpu_num_allocated; | |
396 | /* Size of each block. -ve means used. */ | |
397 | static int *pcpu_size; | |
398 | ||
399 | static int split_block(unsigned int i, unsigned short size) | |
400 | { | |
401 | /* Reallocation required? */ | |
402 | if (pcpu_num_used + 1 > pcpu_num_allocated) { | |
6d4f9c55 PE |
403 | int *new; |
404 | ||
405 | new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2, | |
406 | GFP_KERNEL); | |
1da177e4 LT |
407 | if (!new) |
408 | return 0; | |
409 | ||
1da177e4 | 410 | pcpu_num_allocated *= 2; |
1da177e4 LT |
411 | pcpu_size = new; |
412 | } | |
413 | ||
414 | /* Insert a new subblock */ | |
415 | memmove(&pcpu_size[i+1], &pcpu_size[i], | |
416 | sizeof(pcpu_size[0]) * (pcpu_num_used - i)); | |
417 | pcpu_num_used++; | |
418 | ||
419 | pcpu_size[i+1] -= size; | |
420 | pcpu_size[i] = size; | |
421 | return 1; | |
422 | } | |
423 | ||
424 | static inline unsigned int block_size(int val) | |
425 | { | |
426 | if (val < 0) | |
427 | return -val; | |
428 | return val; | |
429 | } | |
430 | ||
842bbaaa RR |
431 | static void *percpu_modalloc(unsigned long size, unsigned long align, |
432 | const char *name) | |
1da177e4 LT |
433 | { |
434 | unsigned long extra; | |
435 | unsigned int i; | |
436 | void *ptr; | |
4f2294b6 | 437 | int cpu; |
1da177e4 | 438 | |
b6e3590f JF |
439 | if (align > PAGE_SIZE) { |
440 | printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n", | |
441 | name, align, PAGE_SIZE); | |
442 | align = PAGE_SIZE; | |
842bbaaa | 443 | } |
1da177e4 LT |
444 | |
445 | ptr = __per_cpu_start; | |
446 | for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) { | |
447 | /* Extra for alignment requirement. */ | |
448 | extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr; | |
449 | BUG_ON(i == 0 && extra != 0); | |
450 | ||
451 | if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size) | |
452 | continue; | |
453 | ||
454 | /* Transfer extra to previous block. */ | |
455 | if (pcpu_size[i-1] < 0) | |
456 | pcpu_size[i-1] -= extra; | |
457 | else | |
458 | pcpu_size[i-1] += extra; | |
459 | pcpu_size[i] -= extra; | |
460 | ptr += extra; | |
461 | ||
462 | /* Split block if warranted */ | |
463 | if (pcpu_size[i] - size > sizeof(unsigned long)) | |
464 | if (!split_block(i, size)) | |
465 | return NULL; | |
466 | ||
4f2294b6 CM |
467 | /* add the per-cpu scanning areas */ |
468 | for_each_possible_cpu(cpu) | |
469 | kmemleak_alloc(ptr + per_cpu_offset(cpu), size, 0, | |
470 | GFP_KERNEL); | |
471 | ||
1da177e4 LT |
472 | /* Mark allocated */ |
473 | pcpu_size[i] = -pcpu_size[i]; | |
474 | return ptr; | |
475 | } | |
476 | ||
477 | printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n", | |
478 | size); | |
479 | return NULL; | |
480 | } | |
481 | ||
482 | static void percpu_modfree(void *freeme) | |
483 | { | |
484 | unsigned int i; | |
485 | void *ptr = __per_cpu_start + block_size(pcpu_size[0]); | |
4f2294b6 | 486 | int cpu; |
1da177e4 LT |
487 | |
488 | /* First entry is core kernel percpu data. */ | |
489 | for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) { | |
490 | if (ptr == freeme) { | |
491 | pcpu_size[i] = -pcpu_size[i]; | |
492 | goto free; | |
493 | } | |
494 | } | |
495 | BUG(); | |
496 | ||
497 | free: | |
4f2294b6 CM |
498 | /* remove the per-cpu scanning areas */ |
499 | for_each_possible_cpu(cpu) | |
500 | kmemleak_free(freeme + per_cpu_offset(cpu)); | |
501 | ||
1da177e4 LT |
502 | /* Merge with previous? */ |
503 | if (pcpu_size[i-1] >= 0) { | |
504 | pcpu_size[i-1] += pcpu_size[i]; | |
505 | pcpu_num_used--; | |
506 | memmove(&pcpu_size[i], &pcpu_size[i+1], | |
507 | (pcpu_num_used - i) * sizeof(pcpu_size[0])); | |
508 | i--; | |
509 | } | |
510 | /* Merge with next? */ | |
511 | if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) { | |
512 | pcpu_size[i] += pcpu_size[i+1]; | |
513 | pcpu_num_used--; | |
514 | memmove(&pcpu_size[i+1], &pcpu_size[i+2], | |
515 | (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0])); | |
516 | } | |
517 | } | |
518 | ||
1da177e4 LT |
519 | static int percpu_modinit(void) |
520 | { | |
521 | pcpu_num_used = 2; | |
522 | pcpu_num_allocated = 2; | |
523 | pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated, | |
524 | GFP_KERNEL); | |
525 | /* Static in-kernel percpu data (used). */ | |
b00742d3 | 526 | pcpu_size[0] = -(__per_cpu_end-__per_cpu_start); |
1da177e4 LT |
527 | /* Free room. */ |
528 | pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0]; | |
529 | if (pcpu_size[1] < 0) { | |
530 | printk(KERN_ERR "No per-cpu room for modules.\n"); | |
531 | pcpu_num_used = 1; | |
532 | } | |
533 | ||
534 | return 0; | |
22a8bdeb | 535 | } |
1da177e4 | 536 | __initcall(percpu_modinit); |
6b588c18 | 537 | |
fbf59bc9 TH |
538 | #endif /* CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */ |
539 | ||
6b588c18 TH |
540 | static unsigned int find_pcpusec(Elf_Ehdr *hdr, |
541 | Elf_Shdr *sechdrs, | |
542 | const char *secstrings) | |
543 | { | |
544 | return find_sec(hdr, sechdrs, secstrings, ".data.percpu"); | |
545 | } | |
546 | ||
547 | static void percpu_modcopy(void *pcpudest, const void *from, unsigned long size) | |
548 | { | |
549 | int cpu; | |
550 | ||
551 | for_each_possible_cpu(cpu) | |
552 | memcpy(pcpudest + per_cpu_offset(cpu), from, size); | |
553 | } | |
554 | ||
1da177e4 | 555 | #else /* ... !CONFIG_SMP */ |
6b588c18 | 556 | |
842bbaaa RR |
557 | static inline void *percpu_modalloc(unsigned long size, unsigned long align, |
558 | const char *name) | |
1da177e4 LT |
559 | { |
560 | return NULL; | |
561 | } | |
562 | static inline void percpu_modfree(void *pcpuptr) | |
563 | { | |
564 | BUG(); | |
565 | } | |
566 | static inline unsigned int find_pcpusec(Elf_Ehdr *hdr, | |
567 | Elf_Shdr *sechdrs, | |
568 | const char *secstrings) | |
569 | { | |
570 | return 0; | |
571 | } | |
572 | static inline void percpu_modcopy(void *pcpudst, const void *src, | |
573 | unsigned long size) | |
574 | { | |
575 | /* pcpusec should be 0, and size of that section should be 0. */ | |
576 | BUG_ON(size != 0); | |
577 | } | |
6b588c18 | 578 | |
1da177e4 LT |
579 | #endif /* CONFIG_SMP */ |
580 | ||
c988d2b2 MD |
581 | #define MODINFO_ATTR(field) \ |
582 | static void setup_modinfo_##field(struct module *mod, const char *s) \ | |
583 | { \ | |
584 | mod->field = kstrdup(s, GFP_KERNEL); \ | |
585 | } \ | |
586 | static ssize_t show_modinfo_##field(struct module_attribute *mattr, \ | |
587 | struct module *mod, char *buffer) \ | |
588 | { \ | |
589 | return sprintf(buffer, "%s\n", mod->field); \ | |
590 | } \ | |
591 | static int modinfo_##field##_exists(struct module *mod) \ | |
592 | { \ | |
593 | return mod->field != NULL; \ | |
594 | } \ | |
595 | static void free_modinfo_##field(struct module *mod) \ | |
596 | { \ | |
22a8bdeb DW |
597 | kfree(mod->field); \ |
598 | mod->field = NULL; \ | |
c988d2b2 MD |
599 | } \ |
600 | static struct module_attribute modinfo_##field = { \ | |
7b595756 | 601 | .attr = { .name = __stringify(field), .mode = 0444 }, \ |
c988d2b2 MD |
602 | .show = show_modinfo_##field, \ |
603 | .setup = setup_modinfo_##field, \ | |
604 | .test = modinfo_##field##_exists, \ | |
605 | .free = free_modinfo_##field, \ | |
606 | }; | |
607 | ||
608 | MODINFO_ATTR(version); | |
609 | MODINFO_ATTR(srcversion); | |
610 | ||
e14af7ee AV |
611 | static char last_unloaded_module[MODULE_NAME_LEN+1]; |
612 | ||
03e88ae1 | 613 | #ifdef CONFIG_MODULE_UNLOAD |
1da177e4 LT |
614 | /* Init the unload section of the module. */ |
615 | static void module_unload_init(struct module *mod) | |
616 | { | |
720eba31 | 617 | int cpu; |
1da177e4 LT |
618 | |
619 | INIT_LIST_HEAD(&mod->modules_which_use_me); | |
720eba31 ED |
620 | for_each_possible_cpu(cpu) |
621 | local_set(__module_ref_addr(mod, cpu), 0); | |
1da177e4 | 622 | /* Hold reference count during initialization. */ |
720eba31 | 623 | local_set(__module_ref_addr(mod, raw_smp_processor_id()), 1); |
1da177e4 LT |
624 | /* Backwards compatibility macros put refcount during init. */ |
625 | mod->waiter = current; | |
626 | } | |
627 | ||
628 | /* modules using other modules */ | |
629 | struct module_use | |
630 | { | |
631 | struct list_head list; | |
632 | struct module *module_which_uses; | |
633 | }; | |
634 | ||
635 | /* Does a already use b? */ | |
636 | static int already_uses(struct module *a, struct module *b) | |
637 | { | |
638 | struct module_use *use; | |
639 | ||
640 | list_for_each_entry(use, &b->modules_which_use_me, list) { | |
641 | if (use->module_which_uses == a) { | |
642 | DEBUGP("%s uses %s!\n", a->name, b->name); | |
643 | return 1; | |
644 | } | |
645 | } | |
646 | DEBUGP("%s does not use %s!\n", a->name, b->name); | |
647 | return 0; | |
648 | } | |
649 | ||
650 | /* Module a uses b */ | |
c6b37801 | 651 | int use_module(struct module *a, struct module *b) |
1da177e4 LT |
652 | { |
653 | struct module_use *use; | |
c9a3ba55 | 654 | int no_warn, err; |
270a6c4c | 655 | |
1da177e4 LT |
656 | if (b == NULL || already_uses(a, b)) return 1; |
657 | ||
c9a3ba55 RR |
658 | /* If we're interrupted or time out, we fail. */ |
659 | if (wait_event_interruptible_timeout( | |
660 | module_wq, (err = strong_try_module_get(b)) != -EBUSY, | |
661 | 30 * HZ) <= 0) { | |
662 | printk("%s: gave up waiting for init of module %s.\n", | |
663 | a->name, b->name); | |
664 | return 0; | |
665 | } | |
666 | ||
667 | /* If strong_try_module_get() returned a different error, we fail. */ | |
668 | if (err) | |
1da177e4 LT |
669 | return 0; |
670 | ||
671 | DEBUGP("Allocating new usage for %s.\n", a->name); | |
672 | use = kmalloc(sizeof(*use), GFP_ATOMIC); | |
673 | if (!use) { | |
674 | printk("%s: out of memory loading\n", a->name); | |
675 | module_put(b); | |
676 | return 0; | |
677 | } | |
678 | ||
679 | use->module_which_uses = a; | |
680 | list_add(&use->list, &b->modules_which_use_me); | |
270a6c4c | 681 | no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name); |
1da177e4 LT |
682 | return 1; |
683 | } | |
c6b37801 | 684 | EXPORT_SYMBOL_GPL(use_module); |
1da177e4 LT |
685 | |
686 | /* Clear the unload stuff of the module. */ | |
687 | static void module_unload_free(struct module *mod) | |
688 | { | |
689 | struct module *i; | |
690 | ||
691 | list_for_each_entry(i, &modules, list) { | |
692 | struct module_use *use; | |
693 | ||
694 | list_for_each_entry(use, &i->modules_which_use_me, list) { | |
695 | if (use->module_which_uses == mod) { | |
696 | DEBUGP("%s unusing %s\n", mod->name, i->name); | |
697 | module_put(i); | |
698 | list_del(&use->list); | |
699 | kfree(use); | |
270a6c4c | 700 | sysfs_remove_link(i->holders_dir, mod->name); |
1da177e4 LT |
701 | /* There can be at most one match. */ |
702 | break; | |
703 | } | |
704 | } | |
705 | } | |
706 | } | |
707 | ||
708 | #ifdef CONFIG_MODULE_FORCE_UNLOAD | |
fb169793 | 709 | static inline int try_force_unload(unsigned int flags) |
1da177e4 LT |
710 | { |
711 | int ret = (flags & O_TRUNC); | |
712 | if (ret) | |
fb169793 | 713 | add_taint(TAINT_FORCED_RMMOD); |
1da177e4 LT |
714 | return ret; |
715 | } | |
716 | #else | |
fb169793 | 717 | static inline int try_force_unload(unsigned int flags) |
1da177e4 LT |
718 | { |
719 | return 0; | |
720 | } | |
721 | #endif /* CONFIG_MODULE_FORCE_UNLOAD */ | |
722 | ||
723 | struct stopref | |
724 | { | |
725 | struct module *mod; | |
726 | int flags; | |
727 | int *forced; | |
728 | }; | |
729 | ||
730 | /* Whole machine is stopped with interrupts off when this runs. */ | |
731 | static int __try_stop_module(void *_sref) | |
732 | { | |
733 | struct stopref *sref = _sref; | |
734 | ||
da39ba5e RR |
735 | /* If it's not unused, quit unless we're forcing. */ |
736 | if (module_refcount(sref->mod) != 0) { | |
fb169793 | 737 | if (!(*sref->forced = try_force_unload(sref->flags))) |
1da177e4 LT |
738 | return -EWOULDBLOCK; |
739 | } | |
740 | ||
741 | /* Mark it as dying. */ | |
742 | sref->mod->state = MODULE_STATE_GOING; | |
743 | return 0; | |
744 | } | |
745 | ||
746 | static int try_stop_module(struct module *mod, int flags, int *forced) | |
747 | { | |
da39ba5e RR |
748 | if (flags & O_NONBLOCK) { |
749 | struct stopref sref = { mod, flags, forced }; | |
1da177e4 | 750 | |
9b1a4d38 | 751 | return stop_machine(__try_stop_module, &sref, NULL); |
da39ba5e RR |
752 | } else { |
753 | /* We don't need to stop the machine for this. */ | |
754 | mod->state = MODULE_STATE_GOING; | |
755 | synchronize_sched(); | |
756 | return 0; | |
757 | } | |
1da177e4 LT |
758 | } |
759 | ||
760 | unsigned int module_refcount(struct module *mod) | |
761 | { | |
720eba31 ED |
762 | unsigned int total = 0; |
763 | int cpu; | |
1da177e4 | 764 | |
720eba31 ED |
765 | for_each_possible_cpu(cpu) |
766 | total += local_read(__module_ref_addr(mod, cpu)); | |
1da177e4 LT |
767 | return total; |
768 | } | |
769 | EXPORT_SYMBOL(module_refcount); | |
770 | ||
771 | /* This exists whether we can unload or not */ | |
772 | static void free_module(struct module *mod); | |
773 | ||
774 | static void wait_for_zero_refcount(struct module *mod) | |
775 | { | |
a6550207 | 776 | /* Since we might sleep for some time, release the mutex first */ |
6389a385 | 777 | mutex_unlock(&module_mutex); |
1da177e4 LT |
778 | for (;;) { |
779 | DEBUGP("Looking at refcount...\n"); | |
780 | set_current_state(TASK_UNINTERRUPTIBLE); | |
781 | if (module_refcount(mod) == 0) | |
782 | break; | |
783 | schedule(); | |
784 | } | |
785 | current->state = TASK_RUNNING; | |
6389a385 | 786 | mutex_lock(&module_mutex); |
1da177e4 LT |
787 | } |
788 | ||
17da2bd9 HC |
789 | SYSCALL_DEFINE2(delete_module, const char __user *, name_user, |
790 | unsigned int, flags) | |
1da177e4 LT |
791 | { |
792 | struct module *mod; | |
dfff0a06 | 793 | char name[MODULE_NAME_LEN]; |
1da177e4 LT |
794 | int ret, forced = 0; |
795 | ||
3d43321b | 796 | if (!capable(CAP_SYS_MODULE) || modules_disabled) |
dfff0a06 GKH |
797 | return -EPERM; |
798 | ||
799 | if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0) | |
800 | return -EFAULT; | |
801 | name[MODULE_NAME_LEN-1] = '\0'; | |
802 | ||
9e01892c HC |
803 | /* Create stop_machine threads since free_module relies on |
804 | * a non-failing stop_machine call. */ | |
805 | ret = stop_machine_create(); | |
806 | if (ret) | |
807 | return ret; | |
808 | ||
809 | if (mutex_lock_interruptible(&module_mutex) != 0) { | |
810 | ret = -EINTR; | |
811 | goto out_stop; | |
812 | } | |
1da177e4 LT |
813 | |
814 | mod = find_module(name); | |
815 | if (!mod) { | |
816 | ret = -ENOENT; | |
817 | goto out; | |
818 | } | |
819 | ||
820 | if (!list_empty(&mod->modules_which_use_me)) { | |
821 | /* Other modules depend on us: get rid of them first. */ | |
822 | ret = -EWOULDBLOCK; | |
823 | goto out; | |
824 | } | |
825 | ||
826 | /* Doing init or already dying? */ | |
827 | if (mod->state != MODULE_STATE_LIVE) { | |
828 | /* FIXME: if (force), slam module count and wake up | |
829 | waiter --RR */ | |
830 | DEBUGP("%s already dying\n", mod->name); | |
831 | ret = -EBUSY; | |
832 | goto out; | |
833 | } | |
834 | ||
835 | /* If it has an init func, it must have an exit func to unload */ | |
af49d924 | 836 | if (mod->init && !mod->exit) { |
fb169793 | 837 | forced = try_force_unload(flags); |
1da177e4 LT |
838 | if (!forced) { |
839 | /* This module can't be removed */ | |
840 | ret = -EBUSY; | |
841 | goto out; | |
842 | } | |
843 | } | |
844 | ||
845 | /* Set this up before setting mod->state */ | |
846 | mod->waiter = current; | |
847 | ||
848 | /* Stop the machine so refcounts can't move and disable module. */ | |
849 | ret = try_stop_module(mod, flags, &forced); | |
850 | if (ret != 0) | |
851 | goto out; | |
852 | ||
853 | /* Never wait if forced. */ | |
854 | if (!forced && module_refcount(mod) != 0) | |
855 | wait_for_zero_refcount(mod); | |
856 | ||
df4b565e | 857 | mutex_unlock(&module_mutex); |
1da177e4 | 858 | /* Final destruction now noone is using it. */ |
df4b565e | 859 | if (mod->exit != NULL) |
1da177e4 | 860 | mod->exit(); |
df4b565e PO |
861 | blocking_notifier_call_chain(&module_notify_list, |
862 | MODULE_STATE_GOING, mod); | |
22a9d645 | 863 | async_synchronize_full(); |
df4b565e | 864 | mutex_lock(&module_mutex); |
e14af7ee | 865 | /* Store the name of the last unloaded module for diagnostic purposes */ |
efa5345e | 866 | strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module)); |
e9d376f0 | 867 | ddebug_remove_module(mod->name); |
1da177e4 LT |
868 | free_module(mod); |
869 | ||
870 | out: | |
6389a385 | 871 | mutex_unlock(&module_mutex); |
9e01892c HC |
872 | out_stop: |
873 | stop_machine_destroy(); | |
1da177e4 LT |
874 | return ret; |
875 | } | |
876 | ||
d1e99d7a | 877 | static inline void print_unload_info(struct seq_file *m, struct module *mod) |
1da177e4 LT |
878 | { |
879 | struct module_use *use; | |
880 | int printed_something = 0; | |
881 | ||
882 | seq_printf(m, " %u ", module_refcount(mod)); | |
883 | ||
884 | /* Always include a trailing , so userspace can differentiate | |
885 | between this and the old multi-field proc format. */ | |
886 | list_for_each_entry(use, &mod->modules_which_use_me, list) { | |
887 | printed_something = 1; | |
888 | seq_printf(m, "%s,", use->module_which_uses->name); | |
889 | } | |
890 | ||
1da177e4 LT |
891 | if (mod->init != NULL && mod->exit == NULL) { |
892 | printed_something = 1; | |
893 | seq_printf(m, "[permanent],"); | |
894 | } | |
895 | ||
896 | if (!printed_something) | |
897 | seq_printf(m, "-"); | |
898 | } | |
899 | ||
900 | void __symbol_put(const char *symbol) | |
901 | { | |
902 | struct module *owner; | |
1da177e4 | 903 | |
24da1cbf | 904 | preempt_disable(); |
414fd31b | 905 | if (!find_symbol(symbol, &owner, NULL, true, false)) |
1da177e4 LT |
906 | BUG(); |
907 | module_put(owner); | |
24da1cbf | 908 | preempt_enable(); |
1da177e4 LT |
909 | } |
910 | EXPORT_SYMBOL(__symbol_put); | |
911 | ||
7d1d16e4 | 912 | /* Note this assumes addr is a function, which it currently always is. */ |
1da177e4 LT |
913 | void symbol_put_addr(void *addr) |
914 | { | |
5e376613 | 915 | struct module *modaddr; |
7d1d16e4 | 916 | unsigned long a = (unsigned long)dereference_function_descriptor(addr); |
1da177e4 | 917 | |
7d1d16e4 | 918 | if (core_kernel_text(a)) |
5e376613 | 919 | return; |
1da177e4 | 920 | |
a6e6abd5 RR |
921 | /* module_text_address is safe here: we're supposed to have reference |
922 | * to module from symbol_get, so it can't go away. */ | |
7d1d16e4 | 923 | modaddr = __module_text_address(a); |
a6e6abd5 | 924 | BUG_ON(!modaddr); |
5e376613 | 925 | module_put(modaddr); |
1da177e4 LT |
926 | } |
927 | EXPORT_SYMBOL_GPL(symbol_put_addr); | |
928 | ||
929 | static ssize_t show_refcnt(struct module_attribute *mattr, | |
930 | struct module *mod, char *buffer) | |
931 | { | |
256e2fdf | 932 | return sprintf(buffer, "%u\n", module_refcount(mod)); |
1da177e4 LT |
933 | } |
934 | ||
935 | static struct module_attribute refcnt = { | |
7b595756 | 936 | .attr = { .name = "refcnt", .mode = 0444 }, |
1da177e4 LT |
937 | .show = show_refcnt, |
938 | }; | |
939 | ||
f6a57033 AV |
940 | void module_put(struct module *module) |
941 | { | |
942 | if (module) { | |
943 | unsigned int cpu = get_cpu(); | |
720eba31 | 944 | local_dec(__module_ref_addr(module, cpu)); |
f6a57033 AV |
945 | /* Maybe they're waiting for us to drop reference? */ |
946 | if (unlikely(!module_is_live(module))) | |
947 | wake_up_process(module->waiter); | |
948 | put_cpu(); | |
949 | } | |
950 | } | |
951 | EXPORT_SYMBOL(module_put); | |
952 | ||
1da177e4 | 953 | #else /* !CONFIG_MODULE_UNLOAD */ |
d1e99d7a | 954 | static inline void print_unload_info(struct seq_file *m, struct module *mod) |
1da177e4 LT |
955 | { |
956 | /* We don't know the usage count, or what modules are using. */ | |
957 | seq_printf(m, " - -"); | |
958 | } | |
959 | ||
960 | static inline void module_unload_free(struct module *mod) | |
961 | { | |
962 | } | |
963 | ||
c6b37801 | 964 | int use_module(struct module *a, struct module *b) |
1da177e4 | 965 | { |
c9a3ba55 | 966 | return strong_try_module_get(b) == 0; |
1da177e4 | 967 | } |
c6b37801 | 968 | EXPORT_SYMBOL_GPL(use_module); |
1da177e4 LT |
969 | |
970 | static inline void module_unload_init(struct module *mod) | |
971 | { | |
972 | } | |
973 | #endif /* CONFIG_MODULE_UNLOAD */ | |
974 | ||
1f71740a KS |
975 | static ssize_t show_initstate(struct module_attribute *mattr, |
976 | struct module *mod, char *buffer) | |
977 | { | |
978 | const char *state = "unknown"; | |
979 | ||
980 | switch (mod->state) { | |
981 | case MODULE_STATE_LIVE: | |
982 | state = "live"; | |
983 | break; | |
984 | case MODULE_STATE_COMING: | |
985 | state = "coming"; | |
986 | break; | |
987 | case MODULE_STATE_GOING: | |
988 | state = "going"; | |
989 | break; | |
990 | } | |
991 | return sprintf(buffer, "%s\n", state); | |
992 | } | |
993 | ||
994 | static struct module_attribute initstate = { | |
7b595756 | 995 | .attr = { .name = "initstate", .mode = 0444 }, |
1f71740a KS |
996 | .show = show_initstate, |
997 | }; | |
998 | ||
03e88ae1 GKH |
999 | static struct module_attribute *modinfo_attrs[] = { |
1000 | &modinfo_version, | |
1001 | &modinfo_srcversion, | |
1f71740a | 1002 | &initstate, |
03e88ae1 GKH |
1003 | #ifdef CONFIG_MODULE_UNLOAD |
1004 | &refcnt, | |
1005 | #endif | |
1006 | NULL, | |
1007 | }; | |
1008 | ||
1da177e4 LT |
1009 | static const char vermagic[] = VERMAGIC_STRING; |
1010 | ||
c6e665c8 | 1011 | static int try_to_force_load(struct module *mod, const char *reason) |
826e4506 LT |
1012 | { |
1013 | #ifdef CONFIG_MODULE_FORCE_LOAD | |
25ddbb18 | 1014 | if (!test_taint(TAINT_FORCED_MODULE)) |
c6e665c8 RR |
1015 | printk(KERN_WARNING "%s: %s: kernel tainted.\n", |
1016 | mod->name, reason); | |
826e4506 LT |
1017 | add_taint_module(mod, TAINT_FORCED_MODULE); |
1018 | return 0; | |
1019 | #else | |
1020 | return -ENOEXEC; | |
1021 | #endif | |
1022 | } | |
1023 | ||
1da177e4 LT |
1024 | #ifdef CONFIG_MODVERSIONS |
1025 | static int check_version(Elf_Shdr *sechdrs, | |
1026 | unsigned int versindex, | |
1027 | const char *symname, | |
1028 | struct module *mod, | |
1029 | const unsigned long *crc) | |
1030 | { | |
1031 | unsigned int i, num_versions; | |
1032 | struct modversion_info *versions; | |
1033 | ||
1034 | /* Exporting module didn't supply crcs? OK, we're already tainted. */ | |
1035 | if (!crc) | |
1036 | return 1; | |
1037 | ||
a5dd6970 RR |
1038 | /* No versions at all? modprobe --force does this. */ |
1039 | if (versindex == 0) | |
1040 | return try_to_force_load(mod, symname) == 0; | |
1041 | ||
1da177e4 LT |
1042 | versions = (void *) sechdrs[versindex].sh_addr; |
1043 | num_versions = sechdrs[versindex].sh_size | |
1044 | / sizeof(struct modversion_info); | |
1045 | ||
1046 | for (i = 0; i < num_versions; i++) { | |
1047 | if (strcmp(versions[i].name, symname) != 0) | |
1048 | continue; | |
1049 | ||
1050 | if (versions[i].crc == *crc) | |
1051 | return 1; | |
1da177e4 LT |
1052 | DEBUGP("Found checksum %lX vs module %lX\n", |
1053 | *crc, versions[i].crc); | |
826e4506 | 1054 | goto bad_version; |
1da177e4 | 1055 | } |
826e4506 | 1056 | |
a5dd6970 RR |
1057 | printk(KERN_WARNING "%s: no symbol version for %s\n", |
1058 | mod->name, symname); | |
1059 | return 0; | |
826e4506 LT |
1060 | |
1061 | bad_version: | |
1062 | printk("%s: disagrees about version of symbol %s\n", | |
1063 | mod->name, symname); | |
1064 | return 0; | |
1da177e4 LT |
1065 | } |
1066 | ||
1067 | static inline int check_modstruct_version(Elf_Shdr *sechdrs, | |
1068 | unsigned int versindex, | |
1069 | struct module *mod) | |
1070 | { | |
1071 | const unsigned long *crc; | |
1da177e4 | 1072 | |
6560dc16 MF |
1073 | if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL, |
1074 | &crc, true, false)) | |
1da177e4 | 1075 | BUG(); |
8c8ef42a | 1076 | return check_version(sechdrs, versindex, "module_layout", mod, crc); |
1da177e4 LT |
1077 | } |
1078 | ||
91e37a79 RR |
1079 | /* First part is kernel version, which we ignore if module has crcs. */ |
1080 | static inline int same_magic(const char *amagic, const char *bmagic, | |
1081 | bool has_crcs) | |
1da177e4 | 1082 | { |
91e37a79 RR |
1083 | if (has_crcs) { |
1084 | amagic += strcspn(amagic, " "); | |
1085 | bmagic += strcspn(bmagic, " "); | |
1086 | } | |
1da177e4 LT |
1087 | return strcmp(amagic, bmagic) == 0; |
1088 | } | |
1089 | #else | |
1090 | static inline int check_version(Elf_Shdr *sechdrs, | |
1091 | unsigned int versindex, | |
1092 | const char *symname, | |
1093 | struct module *mod, | |
1094 | const unsigned long *crc) | |
1095 | { | |
1096 | return 1; | |
1097 | } | |
1098 | ||
1099 | static inline int check_modstruct_version(Elf_Shdr *sechdrs, | |
1100 | unsigned int versindex, | |
1101 | struct module *mod) | |
1102 | { | |
1103 | return 1; | |
1104 | } | |
1105 | ||
91e37a79 RR |
1106 | static inline int same_magic(const char *amagic, const char *bmagic, |
1107 | bool has_crcs) | |
1da177e4 LT |
1108 | { |
1109 | return strcmp(amagic, bmagic) == 0; | |
1110 | } | |
1111 | #endif /* CONFIG_MODVERSIONS */ | |
1112 | ||
1113 | /* Resolve a symbol for this module. I.e. if we find one, record usage. | |
1114 | Must be holding module_mutex. */ | |
414fd31b TA |
1115 | static const struct kernel_symbol *resolve_symbol(Elf_Shdr *sechdrs, |
1116 | unsigned int versindex, | |
1117 | const char *name, | |
1118 | struct module *mod) | |
1da177e4 LT |
1119 | { |
1120 | struct module *owner; | |
414fd31b | 1121 | const struct kernel_symbol *sym; |
1da177e4 LT |
1122 | const unsigned long *crc; |
1123 | ||
414fd31b | 1124 | sym = find_symbol(name, &owner, &crc, |
25ddbb18 | 1125 | !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true); |
414fd31b TA |
1126 | /* use_module can fail due to OOM, |
1127 | or module initialization or unloading */ | |
1128 | if (sym) { | |
1da177e4 LT |
1129 | if (!check_version(sechdrs, versindex, name, mod, crc) || |
1130 | !use_module(mod, owner)) | |
414fd31b | 1131 | sym = NULL; |
1da177e4 | 1132 | } |
414fd31b | 1133 | return sym; |
1da177e4 LT |
1134 | } |
1135 | ||
1da177e4 LT |
1136 | /* |
1137 | * /sys/module/foo/sections stuff | |
1138 | * J. Corbet <[email protected]> | |
1139 | */ | |
120fc3d7 | 1140 | #if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS) |
a58730c4 RR |
1141 | struct module_sect_attr |
1142 | { | |
1143 | struct module_attribute mattr; | |
1144 | char *name; | |
1145 | unsigned long address; | |
1146 | }; | |
1147 | ||
1148 | struct module_sect_attrs | |
1149 | { | |
1150 | struct attribute_group grp; | |
1151 | unsigned int nsections; | |
1152 | struct module_sect_attr attrs[0]; | |
1153 | }; | |
1154 | ||
1da177e4 LT |
1155 | static ssize_t module_sect_show(struct module_attribute *mattr, |
1156 | struct module *mod, char *buf) | |
1157 | { | |
1158 | struct module_sect_attr *sattr = | |
1159 | container_of(mattr, struct module_sect_attr, mattr); | |
1160 | return sprintf(buf, "0x%lx\n", sattr->address); | |
1161 | } | |
1162 | ||
04b1db9f IN |
1163 | static void free_sect_attrs(struct module_sect_attrs *sect_attrs) |
1164 | { | |
a58730c4 | 1165 | unsigned int section; |
04b1db9f IN |
1166 | |
1167 | for (section = 0; section < sect_attrs->nsections; section++) | |
1168 | kfree(sect_attrs->attrs[section].name); | |
1169 | kfree(sect_attrs); | |
1170 | } | |
1171 | ||
1da177e4 LT |
1172 | static void add_sect_attrs(struct module *mod, unsigned int nsect, |
1173 | char *secstrings, Elf_Shdr *sechdrs) | |
1174 | { | |
1175 | unsigned int nloaded = 0, i, size[2]; | |
1176 | struct module_sect_attrs *sect_attrs; | |
1177 | struct module_sect_attr *sattr; | |
1178 | struct attribute **gattr; | |
22a8bdeb | 1179 | |
1da177e4 LT |
1180 | /* Count loaded sections and allocate structures */ |
1181 | for (i = 0; i < nsect; i++) | |
1182 | if (sechdrs[i].sh_flags & SHF_ALLOC) | |
1183 | nloaded++; | |
1184 | size[0] = ALIGN(sizeof(*sect_attrs) | |
1185 | + nloaded * sizeof(sect_attrs->attrs[0]), | |
1186 | sizeof(sect_attrs->grp.attrs[0])); | |
1187 | size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]); | |
04b1db9f IN |
1188 | sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL); |
1189 | if (sect_attrs == NULL) | |
1da177e4 LT |
1190 | return; |
1191 | ||
1192 | /* Setup section attributes. */ | |
1193 | sect_attrs->grp.name = "sections"; | |
1194 | sect_attrs->grp.attrs = (void *)sect_attrs + size[0]; | |
1195 | ||
04b1db9f | 1196 | sect_attrs->nsections = 0; |
1da177e4 LT |
1197 | sattr = §_attrs->attrs[0]; |
1198 | gattr = §_attrs->grp.attrs[0]; | |
1199 | for (i = 0; i < nsect; i++) { | |
1200 | if (! (sechdrs[i].sh_flags & SHF_ALLOC)) | |
1201 | continue; | |
1202 | sattr->address = sechdrs[i].sh_addr; | |
04b1db9f IN |
1203 | sattr->name = kstrdup(secstrings + sechdrs[i].sh_name, |
1204 | GFP_KERNEL); | |
1205 | if (sattr->name == NULL) | |
1206 | goto out; | |
1207 | sect_attrs->nsections++; | |
1da177e4 LT |
1208 | sattr->mattr.show = module_sect_show; |
1209 | sattr->mattr.store = NULL; | |
1210 | sattr->mattr.attr.name = sattr->name; | |
1da177e4 LT |
1211 | sattr->mattr.attr.mode = S_IRUGO; |
1212 | *(gattr++) = &(sattr++)->mattr.attr; | |
1213 | } | |
1214 | *gattr = NULL; | |
1215 | ||
1216 | if (sysfs_create_group(&mod->mkobj.kobj, §_attrs->grp)) | |
1217 | goto out; | |
1218 | ||
1219 | mod->sect_attrs = sect_attrs; | |
1220 | return; | |
1221 | out: | |
04b1db9f | 1222 | free_sect_attrs(sect_attrs); |
1da177e4 LT |
1223 | } |
1224 | ||
1225 | static void remove_sect_attrs(struct module *mod) | |
1226 | { | |
1227 | if (mod->sect_attrs) { | |
1228 | sysfs_remove_group(&mod->mkobj.kobj, | |
1229 | &mod->sect_attrs->grp); | |
1230 | /* We are positive that no one is using any sect attrs | |
1231 | * at this point. Deallocate immediately. */ | |
04b1db9f | 1232 | free_sect_attrs(mod->sect_attrs); |
1da177e4 LT |
1233 | mod->sect_attrs = NULL; |
1234 | } | |
1235 | } | |
1236 | ||
6d760133 RM |
1237 | /* |
1238 | * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections. | |
1239 | */ | |
1240 | ||
1241 | struct module_notes_attrs { | |
1242 | struct kobject *dir; | |
1243 | unsigned int notes; | |
1244 | struct bin_attribute attrs[0]; | |
1245 | }; | |
1246 | ||
1247 | static ssize_t module_notes_read(struct kobject *kobj, | |
1248 | struct bin_attribute *bin_attr, | |
1249 | char *buf, loff_t pos, size_t count) | |
1250 | { | |
1251 | /* | |
1252 | * The caller checked the pos and count against our size. | |
1253 | */ | |
1254 | memcpy(buf, bin_attr->private + pos, count); | |
1255 | return count; | |
1256 | } | |
1257 | ||
1258 | static void free_notes_attrs(struct module_notes_attrs *notes_attrs, | |
1259 | unsigned int i) | |
1260 | { | |
1261 | if (notes_attrs->dir) { | |
1262 | while (i-- > 0) | |
1263 | sysfs_remove_bin_file(notes_attrs->dir, | |
1264 | ¬es_attrs->attrs[i]); | |
e9432093 | 1265 | kobject_put(notes_attrs->dir); |
6d760133 RM |
1266 | } |
1267 | kfree(notes_attrs); | |
1268 | } | |
1269 | ||
1270 | static void add_notes_attrs(struct module *mod, unsigned int nsect, | |
1271 | char *secstrings, Elf_Shdr *sechdrs) | |
1272 | { | |
1273 | unsigned int notes, loaded, i; | |
1274 | struct module_notes_attrs *notes_attrs; | |
1275 | struct bin_attribute *nattr; | |
1276 | ||
1277 | /* Count notes sections and allocate structures. */ | |
1278 | notes = 0; | |
1279 | for (i = 0; i < nsect; i++) | |
1280 | if ((sechdrs[i].sh_flags & SHF_ALLOC) && | |
1281 | (sechdrs[i].sh_type == SHT_NOTE)) | |
1282 | ++notes; | |
1283 | ||
1284 | if (notes == 0) | |
1285 | return; | |
1286 | ||
1287 | notes_attrs = kzalloc(sizeof(*notes_attrs) | |
1288 | + notes * sizeof(notes_attrs->attrs[0]), | |
1289 | GFP_KERNEL); | |
1290 | if (notes_attrs == NULL) | |
1291 | return; | |
1292 | ||
1293 | notes_attrs->notes = notes; | |
1294 | nattr = ¬es_attrs->attrs[0]; | |
1295 | for (loaded = i = 0; i < nsect; ++i) { | |
1296 | if (!(sechdrs[i].sh_flags & SHF_ALLOC)) | |
1297 | continue; | |
1298 | if (sechdrs[i].sh_type == SHT_NOTE) { | |
1299 | nattr->attr.name = mod->sect_attrs->attrs[loaded].name; | |
1300 | nattr->attr.mode = S_IRUGO; | |
1301 | nattr->size = sechdrs[i].sh_size; | |
1302 | nattr->private = (void *) sechdrs[i].sh_addr; | |
1303 | nattr->read = module_notes_read; | |
1304 | ++nattr; | |
1305 | } | |
1306 | ++loaded; | |
1307 | } | |
1308 | ||
4ff6abff | 1309 | notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj); |
6d760133 RM |
1310 | if (!notes_attrs->dir) |
1311 | goto out; | |
1312 | ||
1313 | for (i = 0; i < notes; ++i) | |
1314 | if (sysfs_create_bin_file(notes_attrs->dir, | |
1315 | ¬es_attrs->attrs[i])) | |
1316 | goto out; | |
1317 | ||
1318 | mod->notes_attrs = notes_attrs; | |
1319 | return; | |
1320 | ||
1321 | out: | |
1322 | free_notes_attrs(notes_attrs, i); | |
1323 | } | |
1324 | ||
1325 | static void remove_notes_attrs(struct module *mod) | |
1326 | { | |
1327 | if (mod->notes_attrs) | |
1328 | free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes); | |
1329 | } | |
1330 | ||
1da177e4 | 1331 | #else |
04b1db9f | 1332 | |
1da177e4 LT |
1333 | static inline void add_sect_attrs(struct module *mod, unsigned int nsect, |
1334 | char *sectstrings, Elf_Shdr *sechdrs) | |
1335 | { | |
1336 | } | |
1337 | ||
1338 | static inline void remove_sect_attrs(struct module *mod) | |
1339 | { | |
1340 | } | |
6d760133 RM |
1341 | |
1342 | static inline void add_notes_attrs(struct module *mod, unsigned int nsect, | |
1343 | char *sectstrings, Elf_Shdr *sechdrs) | |
1344 | { | |
1345 | } | |
1346 | ||
1347 | static inline void remove_notes_attrs(struct module *mod) | |
1348 | { | |
1349 | } | |
120fc3d7 | 1350 | #endif |
1da177e4 | 1351 | |
ef665c1a RD |
1352 | #ifdef CONFIG_SYSFS |
1353 | int module_add_modinfo_attrs(struct module *mod) | |
c988d2b2 MD |
1354 | { |
1355 | struct module_attribute *attr; | |
03e88ae1 | 1356 | struct module_attribute *temp_attr; |
c988d2b2 MD |
1357 | int error = 0; |
1358 | int i; | |
1359 | ||
03e88ae1 GKH |
1360 | mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) * |
1361 | (ARRAY_SIZE(modinfo_attrs) + 1)), | |
1362 | GFP_KERNEL); | |
1363 | if (!mod->modinfo_attrs) | |
1364 | return -ENOMEM; | |
1365 | ||
1366 | temp_attr = mod->modinfo_attrs; | |
c988d2b2 MD |
1367 | for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) { |
1368 | if (!attr->test || | |
03e88ae1 GKH |
1369 | (attr->test && attr->test(mod))) { |
1370 | memcpy(temp_attr, attr, sizeof(*temp_attr)); | |
03e88ae1 GKH |
1371 | error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr); |
1372 | ++temp_attr; | |
1373 | } | |
c988d2b2 MD |
1374 | } |
1375 | return error; | |
1376 | } | |
1377 | ||
ef665c1a | 1378 | void module_remove_modinfo_attrs(struct module *mod) |
c988d2b2 MD |
1379 | { |
1380 | struct module_attribute *attr; | |
1381 | int i; | |
1382 | ||
03e88ae1 GKH |
1383 | for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) { |
1384 | /* pick a field to test for end of list */ | |
1385 | if (!attr->attr.name) | |
1386 | break; | |
c988d2b2 | 1387 | sysfs_remove_file(&mod->mkobj.kobj,&attr->attr); |
03e88ae1 GKH |
1388 | if (attr->free) |
1389 | attr->free(mod); | |
c988d2b2 | 1390 | } |
03e88ae1 | 1391 | kfree(mod->modinfo_attrs); |
c988d2b2 | 1392 | } |
1da177e4 | 1393 | |
ef665c1a | 1394 | int mod_sysfs_init(struct module *mod) |
1da177e4 LT |
1395 | { |
1396 | int err; | |
6494a93d | 1397 | struct kobject *kobj; |
1da177e4 | 1398 | |
823bccfc GKH |
1399 | if (!module_sysfs_initialized) { |
1400 | printk(KERN_ERR "%s: module sysfs not initialized\n", | |
1cc5f714 ES |
1401 | mod->name); |
1402 | err = -EINVAL; | |
1403 | goto out; | |
1404 | } | |
6494a93d GKH |
1405 | |
1406 | kobj = kset_find_obj(module_kset, mod->name); | |
1407 | if (kobj) { | |
1408 | printk(KERN_ERR "%s: module is already loaded\n", mod->name); | |
1409 | kobject_put(kobj); | |
1410 | err = -EINVAL; | |
1411 | goto out; | |
1412 | } | |
1413 | ||
1da177e4 | 1414 | mod->mkobj.mod = mod; |
e17e0f51 | 1415 | |
ac3c8141 GKH |
1416 | memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj)); |
1417 | mod->mkobj.kobj.kset = module_kset; | |
1418 | err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL, | |
1419 | "%s", mod->name); | |
1420 | if (err) | |
1421 | kobject_put(&mod->mkobj.kobj); | |
270a6c4c | 1422 | |
97c146ef | 1423 | /* delay uevent until full sysfs population */ |
270a6c4c KS |
1424 | out: |
1425 | return err; | |
1426 | } | |
1427 | ||
ef665c1a | 1428 | int mod_sysfs_setup(struct module *mod, |
270a6c4c KS |
1429 | struct kernel_param *kparam, |
1430 | unsigned int num_params) | |
1431 | { | |
1432 | int err; | |
1433 | ||
4ff6abff | 1434 | mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj); |
240936e1 AM |
1435 | if (!mod->holders_dir) { |
1436 | err = -ENOMEM; | |
270a6c4c | 1437 | goto out_unreg; |
240936e1 | 1438 | } |
270a6c4c | 1439 | |
1da177e4 LT |
1440 | err = module_param_sysfs_setup(mod, kparam, num_params); |
1441 | if (err) | |
270a6c4c | 1442 | goto out_unreg_holders; |
1da177e4 | 1443 | |
c988d2b2 MD |
1444 | err = module_add_modinfo_attrs(mod); |
1445 | if (err) | |
e17e0f51 | 1446 | goto out_unreg_param; |
c988d2b2 | 1447 | |
e17e0f51 | 1448 | kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD); |
1da177e4 LT |
1449 | return 0; |
1450 | ||
e17e0f51 KS |
1451 | out_unreg_param: |
1452 | module_param_sysfs_remove(mod); | |
270a6c4c | 1453 | out_unreg_holders: |
78a2d906 | 1454 | kobject_put(mod->holders_dir); |
270a6c4c | 1455 | out_unreg: |
e17e0f51 | 1456 | kobject_put(&mod->mkobj.kobj); |
1da177e4 LT |
1457 | return err; |
1458 | } | |
34e4e2fe DL |
1459 | |
1460 | static void mod_sysfs_fini(struct module *mod) | |
1461 | { | |
1462 | kobject_put(&mod->mkobj.kobj); | |
1463 | } | |
1464 | ||
1465 | #else /* CONFIG_SYSFS */ | |
1466 | ||
1467 | static void mod_sysfs_fini(struct module *mod) | |
1468 | { | |
1469 | } | |
1470 | ||
1471 | #endif /* CONFIG_SYSFS */ | |
1da177e4 LT |
1472 | |
1473 | static void mod_kobject_remove(struct module *mod) | |
1474 | { | |
c988d2b2 | 1475 | module_remove_modinfo_attrs(mod); |
1da177e4 | 1476 | module_param_sysfs_remove(mod); |
78a2d906 GKH |
1477 | kobject_put(mod->mkobj.drivers_dir); |
1478 | kobject_put(mod->holders_dir); | |
34e4e2fe | 1479 | mod_sysfs_fini(mod); |
1da177e4 LT |
1480 | } |
1481 | ||
1482 | /* | |
1483 | * unlink the module with the whole machine is stopped with interrupts off | |
1484 | * - this defends against kallsyms not taking locks | |
1485 | */ | |
1486 | static int __unlink_module(void *_mod) | |
1487 | { | |
1488 | struct module *mod = _mod; | |
1489 | list_del(&mod->list); | |
1490 | return 0; | |
1491 | } | |
1492 | ||
02a3e59a | 1493 | /* Free a module, remove from lists, etc (must hold module_mutex). */ |
1da177e4 LT |
1494 | static void free_module(struct module *mod) |
1495 | { | |
1496 | /* Delete from various lists */ | |
9b1a4d38 | 1497 | stop_machine(__unlink_module, mod, NULL); |
6d760133 | 1498 | remove_notes_attrs(mod); |
1da177e4 LT |
1499 | remove_sect_attrs(mod); |
1500 | mod_kobject_remove(mod); | |
1501 | ||
1502 | /* Arch-specific cleanup. */ | |
1503 | module_arch_cleanup(mod); | |
1504 | ||
1505 | /* Module unload stuff */ | |
1506 | module_unload_free(mod); | |
1507 | ||
e180a6b7 RR |
1508 | /* Free any allocated parameters. */ |
1509 | destroy_params(mod->kp, mod->num_kp); | |
1510 | ||
1da177e4 LT |
1511 | /* This may be NULL, but that's OK */ |
1512 | module_free(mod, mod->module_init); | |
1513 | kfree(mod->args); | |
1514 | if (mod->percpu) | |
1515 | percpu_modfree(mod->percpu); | |
720eba31 ED |
1516 | #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP) |
1517 | if (mod->refptr) | |
1518 | percpu_modfree(mod->refptr); | |
1519 | #endif | |
fbb9ce95 IM |
1520 | /* Free lock-classes: */ |
1521 | lockdep_free_key_range(mod->module_core, mod->core_size); | |
1522 | ||
1da177e4 LT |
1523 | /* Finally, free the core (containing the module structure) */ |
1524 | module_free(mod, mod->module_core); | |
1525 | } | |
1526 | ||
1527 | void *__symbol_get(const char *symbol) | |
1528 | { | |
1529 | struct module *owner; | |
414fd31b | 1530 | const struct kernel_symbol *sym; |
1da177e4 | 1531 | |
24da1cbf | 1532 | preempt_disable(); |
414fd31b TA |
1533 | sym = find_symbol(symbol, &owner, NULL, true, true); |
1534 | if (sym && strong_try_module_get(owner)) | |
1535 | sym = NULL; | |
24da1cbf | 1536 | preempt_enable(); |
1da177e4 | 1537 | |
414fd31b | 1538 | return sym ? (void *)sym->value : NULL; |
1da177e4 LT |
1539 | } |
1540 | EXPORT_SYMBOL_GPL(__symbol_get); | |
1541 | ||
eea8b54d AN |
1542 | /* |
1543 | * Ensure that an exported symbol [global namespace] does not already exist | |
02a3e59a | 1544 | * in the kernel or in some other module's exported symbol table. |
eea8b54d AN |
1545 | */ |
1546 | static int verify_export_symbols(struct module *mod) | |
1547 | { | |
b211104d | 1548 | unsigned int i; |
eea8b54d | 1549 | struct module *owner; |
b211104d RR |
1550 | const struct kernel_symbol *s; |
1551 | struct { | |
1552 | const struct kernel_symbol *sym; | |
1553 | unsigned int num; | |
1554 | } arr[] = { | |
1555 | { mod->syms, mod->num_syms }, | |
1556 | { mod->gpl_syms, mod->num_gpl_syms }, | |
1557 | { mod->gpl_future_syms, mod->num_gpl_future_syms }, | |
f7f5b675 | 1558 | #ifdef CONFIG_UNUSED_SYMBOLS |
b211104d RR |
1559 | { mod->unused_syms, mod->num_unused_syms }, |
1560 | { mod->unused_gpl_syms, mod->num_unused_gpl_syms }, | |
f7f5b675 | 1561 | #endif |
b211104d | 1562 | }; |
eea8b54d | 1563 | |
b211104d RR |
1564 | for (i = 0; i < ARRAY_SIZE(arr); i++) { |
1565 | for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) { | |
414fd31b | 1566 | if (find_symbol(s->name, &owner, NULL, true, false)) { |
b211104d RR |
1567 | printk(KERN_ERR |
1568 | "%s: exports duplicate symbol %s" | |
1569 | " (owned by %s)\n", | |
1570 | mod->name, s->name, module_name(owner)); | |
1571 | return -ENOEXEC; | |
1572 | } | |
eea8b54d | 1573 | } |
b211104d RR |
1574 | } |
1575 | return 0; | |
eea8b54d AN |
1576 | } |
1577 | ||
9a4b9708 | 1578 | /* Change all symbols so that st_value encodes the pointer directly. */ |
1da177e4 LT |
1579 | static int simplify_symbols(Elf_Shdr *sechdrs, |
1580 | unsigned int symindex, | |
1581 | const char *strtab, | |
1582 | unsigned int versindex, | |
1583 | unsigned int pcpuindex, | |
1584 | struct module *mod) | |
1585 | { | |
1586 | Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr; | |
1587 | unsigned long secbase; | |
1588 | unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym); | |
1589 | int ret = 0; | |
414fd31b | 1590 | const struct kernel_symbol *ksym; |
1da177e4 LT |
1591 | |
1592 | for (i = 1; i < n; i++) { | |
1593 | switch (sym[i].st_shndx) { | |
1594 | case SHN_COMMON: | |
1595 | /* We compiled with -fno-common. These are not | |
1596 | supposed to happen. */ | |
1597 | DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name); | |
1598 | printk("%s: please compile with -fno-common\n", | |
1599 | mod->name); | |
1600 | ret = -ENOEXEC; | |
1601 | break; | |
1602 | ||
1603 | case SHN_ABS: | |
1604 | /* Don't need to do anything */ | |
1605 | DEBUGP("Absolute symbol: 0x%08lx\n", | |
1606 | (long)sym[i].st_value); | |
1607 | break; | |
1608 | ||
1609 | case SHN_UNDEF: | |
414fd31b TA |
1610 | ksym = resolve_symbol(sechdrs, versindex, |
1611 | strtab + sym[i].st_name, mod); | |
1da177e4 | 1612 | /* Ok if resolved. */ |
414fd31b TA |
1613 | if (ksym) { |
1614 | sym[i].st_value = ksym->value; | |
1da177e4 | 1615 | break; |
414fd31b TA |
1616 | } |
1617 | ||
1da177e4 LT |
1618 | /* Ok if weak. */ |
1619 | if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK) | |
1620 | break; | |
1621 | ||
1622 | printk(KERN_WARNING "%s: Unknown symbol %s\n", | |
1623 | mod->name, strtab + sym[i].st_name); | |
1624 | ret = -ENOENT; | |
1625 | break; | |
1626 | ||
1627 | default: | |
1628 | /* Divert to percpu allocation if a percpu var. */ | |
1629 | if (sym[i].st_shndx == pcpuindex) | |
1630 | secbase = (unsigned long)mod->percpu; | |
1631 | else | |
1632 | secbase = sechdrs[sym[i].st_shndx].sh_addr; | |
1633 | sym[i].st_value += secbase; | |
1634 | break; | |
1635 | } | |
1636 | } | |
1637 | ||
1638 | return ret; | |
1639 | } | |
1640 | ||
088af9a6 HD |
1641 | /* Additional bytes needed by arch in front of individual sections */ |
1642 | unsigned int __weak arch_mod_section_prepend(struct module *mod, | |
1643 | unsigned int section) | |
1644 | { | |
1645 | /* default implementation just returns zero */ | |
1646 | return 0; | |
1647 | } | |
1648 | ||
1da177e4 | 1649 | /* Update size with this section: return offset. */ |
088af9a6 HD |
1650 | static long get_offset(struct module *mod, unsigned int *size, |
1651 | Elf_Shdr *sechdr, unsigned int section) | |
1da177e4 LT |
1652 | { |
1653 | long ret; | |
1654 | ||
088af9a6 | 1655 | *size += arch_mod_section_prepend(mod, section); |
1da177e4 LT |
1656 | ret = ALIGN(*size, sechdr->sh_addralign ?: 1); |
1657 | *size = ret + sechdr->sh_size; | |
1658 | return ret; | |
1659 | } | |
1660 | ||
1661 | /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld | |
1662 | might -- code, read-only data, read-write data, small data. Tally | |
1663 | sizes, and place the offsets into sh_entsize fields: high bit means it | |
1664 | belongs in init. */ | |
1665 | static void layout_sections(struct module *mod, | |
1666 | const Elf_Ehdr *hdr, | |
1667 | Elf_Shdr *sechdrs, | |
1668 | const char *secstrings) | |
1669 | { | |
1670 | static unsigned long const masks[][2] = { | |
1671 | /* NOTE: all executable code must be the first section | |
1672 | * in this array; otherwise modify the text_size | |
1673 | * finder in the two loops below */ | |
1674 | { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL }, | |
1675 | { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL }, | |
1676 | { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL }, | |
1677 | { ARCH_SHF_SMALL | SHF_ALLOC, 0 } | |
1678 | }; | |
1679 | unsigned int m, i; | |
1680 | ||
1681 | for (i = 0; i < hdr->e_shnum; i++) | |
1682 | sechdrs[i].sh_entsize = ~0UL; | |
1683 | ||
1684 | DEBUGP("Core section allocation order:\n"); | |
1685 | for (m = 0; m < ARRAY_SIZE(masks); ++m) { | |
1686 | for (i = 0; i < hdr->e_shnum; ++i) { | |
1687 | Elf_Shdr *s = &sechdrs[i]; | |
1688 | ||
1689 | if ((s->sh_flags & masks[m][0]) != masks[m][0] | |
1690 | || (s->sh_flags & masks[m][1]) | |
1691 | || s->sh_entsize != ~0UL | |
49502677 | 1692 | || strstarts(secstrings + s->sh_name, ".init")) |
1da177e4 | 1693 | continue; |
088af9a6 | 1694 | s->sh_entsize = get_offset(mod, &mod->core_size, s, i); |
1da177e4 LT |
1695 | DEBUGP("\t%s\n", secstrings + s->sh_name); |
1696 | } | |
1697 | if (m == 0) | |
1698 | mod->core_text_size = mod->core_size; | |
1699 | } | |
1700 | ||
1701 | DEBUGP("Init section allocation order:\n"); | |
1702 | for (m = 0; m < ARRAY_SIZE(masks); ++m) { | |
1703 | for (i = 0; i < hdr->e_shnum; ++i) { | |
1704 | Elf_Shdr *s = &sechdrs[i]; | |
1705 | ||
1706 | if ((s->sh_flags & masks[m][0]) != masks[m][0] | |
1707 | || (s->sh_flags & masks[m][1]) | |
1708 | || s->sh_entsize != ~0UL | |
49502677 | 1709 | || !strstarts(secstrings + s->sh_name, ".init")) |
1da177e4 | 1710 | continue; |
088af9a6 | 1711 | s->sh_entsize = (get_offset(mod, &mod->init_size, s, i) |
1da177e4 LT |
1712 | | INIT_OFFSET_MASK); |
1713 | DEBUGP("\t%s\n", secstrings + s->sh_name); | |
1714 | } | |
1715 | if (m == 0) | |
1716 | mod->init_text_size = mod->init_size; | |
1717 | } | |
1718 | } | |
1719 | ||
1da177e4 LT |
1720 | static void set_license(struct module *mod, const char *license) |
1721 | { | |
1722 | if (!license) | |
1723 | license = "unspecified"; | |
1724 | ||
fa3ba2e8 | 1725 | if (!license_is_gpl_compatible(license)) { |
25ddbb18 | 1726 | if (!test_taint(TAINT_PROPRIETARY_MODULE)) |
1d4d2627 | 1727 | printk(KERN_WARNING "%s: module license '%s' taints " |
fa3ba2e8 FM |
1728 | "kernel.\n", mod->name, license); |
1729 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE); | |
1da177e4 LT |
1730 | } |
1731 | } | |
1732 | ||
1733 | /* Parse tag=value strings from .modinfo section */ | |
1734 | static char *next_string(char *string, unsigned long *secsize) | |
1735 | { | |
1736 | /* Skip non-zero chars */ | |
1737 | while (string[0]) { | |
1738 | string++; | |
1739 | if ((*secsize)-- <= 1) | |
1740 | return NULL; | |
1741 | } | |
1742 | ||
1743 | /* Skip any zero padding. */ | |
1744 | while (!string[0]) { | |
1745 | string++; | |
1746 | if ((*secsize)-- <= 1) | |
1747 | return NULL; | |
1748 | } | |
1749 | return string; | |
1750 | } | |
1751 | ||
1752 | static char *get_modinfo(Elf_Shdr *sechdrs, | |
1753 | unsigned int info, | |
1754 | const char *tag) | |
1755 | { | |
1756 | char *p; | |
1757 | unsigned int taglen = strlen(tag); | |
1758 | unsigned long size = sechdrs[info].sh_size; | |
1759 | ||
1760 | for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) { | |
1761 | if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') | |
1762 | return p + taglen + 1; | |
1763 | } | |
1764 | return NULL; | |
1765 | } | |
1766 | ||
c988d2b2 MD |
1767 | static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs, |
1768 | unsigned int infoindex) | |
1769 | { | |
1770 | struct module_attribute *attr; | |
1771 | int i; | |
1772 | ||
1773 | for (i = 0; (attr = modinfo_attrs[i]); i++) { | |
1774 | if (attr->setup) | |
1775 | attr->setup(mod, | |
1776 | get_modinfo(sechdrs, | |
1777 | infoindex, | |
1778 | attr->attr.name)); | |
1779 | } | |
1780 | } | |
c988d2b2 | 1781 | |
1da177e4 | 1782 | #ifdef CONFIG_KALLSYMS |
15bba37d WC |
1783 | |
1784 | /* lookup symbol in given range of kernel_symbols */ | |
1785 | static const struct kernel_symbol *lookup_symbol(const char *name, | |
1786 | const struct kernel_symbol *start, | |
1787 | const struct kernel_symbol *stop) | |
1788 | { | |
1789 | const struct kernel_symbol *ks = start; | |
1790 | for (; ks < stop; ks++) | |
1791 | if (strcmp(ks->name, name) == 0) | |
1792 | return ks; | |
1793 | return NULL; | |
1794 | } | |
1795 | ||
ca4787b7 TA |
1796 | static int is_exported(const char *name, unsigned long value, |
1797 | const struct module *mod) | |
1da177e4 | 1798 | { |
ca4787b7 TA |
1799 | const struct kernel_symbol *ks; |
1800 | if (!mod) | |
1801 | ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab); | |
3fd6805f | 1802 | else |
ca4787b7 TA |
1803 | ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms); |
1804 | return ks != NULL && ks->value == value; | |
1da177e4 LT |
1805 | } |
1806 | ||
1807 | /* As per nm */ | |
1808 | static char elf_type(const Elf_Sym *sym, | |
1809 | Elf_Shdr *sechdrs, | |
1810 | const char *secstrings, | |
1811 | struct module *mod) | |
1812 | { | |
1813 | if (ELF_ST_BIND(sym->st_info) == STB_WEAK) { | |
1814 | if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT) | |
1815 | return 'v'; | |
1816 | else | |
1817 | return 'w'; | |
1818 | } | |
1819 | if (sym->st_shndx == SHN_UNDEF) | |
1820 | return 'U'; | |
1821 | if (sym->st_shndx == SHN_ABS) | |
1822 | return 'a'; | |
1823 | if (sym->st_shndx >= SHN_LORESERVE) | |
1824 | return '?'; | |
1825 | if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR) | |
1826 | return 't'; | |
1827 | if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC | |
1828 | && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) { | |
1829 | if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE)) | |
1830 | return 'r'; | |
1831 | else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL) | |
1832 | return 'g'; | |
1833 | else | |
1834 | return 'd'; | |
1835 | } | |
1836 | if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) { | |
1837 | if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL) | |
1838 | return 's'; | |
1839 | else | |
1840 | return 'b'; | |
1841 | } | |
49502677 | 1842 | if (strstarts(secstrings + sechdrs[sym->st_shndx].sh_name, ".debug")) |
1da177e4 LT |
1843 | return 'n'; |
1844 | return '?'; | |
1845 | } | |
1846 | ||
1847 | static void add_kallsyms(struct module *mod, | |
1848 | Elf_Shdr *sechdrs, | |
1849 | unsigned int symindex, | |
1850 | unsigned int strindex, | |
1851 | const char *secstrings) | |
1852 | { | |
1853 | unsigned int i; | |
1854 | ||
1855 | mod->symtab = (void *)sechdrs[symindex].sh_addr; | |
1856 | mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym); | |
1857 | mod->strtab = (void *)sechdrs[strindex].sh_addr; | |
1858 | ||
1859 | /* Set types up while we still have access to sections. */ | |
1860 | for (i = 0; i < mod->num_symtab; i++) | |
1861 | mod->symtab[i].st_info | |
1862 | = elf_type(&mod->symtab[i], sechdrs, secstrings, mod); | |
1863 | } | |
1864 | #else | |
1865 | static inline void add_kallsyms(struct module *mod, | |
1866 | Elf_Shdr *sechdrs, | |
1867 | unsigned int symindex, | |
1868 | unsigned int strindex, | |
1869 | const char *secstrings) | |
1870 | { | |
1871 | } | |
1872 | #endif /* CONFIG_KALLSYMS */ | |
1873 | ||
e9d376f0 | 1874 | static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num) |
346e15be | 1875 | { |
e9d376f0 JB |
1876 | #ifdef CONFIG_DYNAMIC_DEBUG |
1877 | if (ddebug_add_module(debug, num, debug->modname)) | |
1878 | printk(KERN_ERR "dynamic debug error adding module: %s\n", | |
1879 | debug->modname); | |
1880 | #endif | |
5e458cc0 | 1881 | } |
346e15be | 1882 | |
3a642e99 RR |
1883 | static void *module_alloc_update_bounds(unsigned long size) |
1884 | { | |
1885 | void *ret = module_alloc(size); | |
1886 | ||
1887 | if (ret) { | |
1888 | /* Update module bounds. */ | |
1889 | if ((unsigned long)ret < module_addr_min) | |
1890 | module_addr_min = (unsigned long)ret; | |
1891 | if ((unsigned long)ret + size > module_addr_max) | |
1892 | module_addr_max = (unsigned long)ret + size; | |
1893 | } | |
1894 | return ret; | |
1895 | } | |
1896 | ||
4f2294b6 CM |
1897 | #ifdef CONFIG_DEBUG_KMEMLEAK |
1898 | static void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr, | |
1899 | Elf_Shdr *sechdrs, char *secstrings) | |
1900 | { | |
1901 | unsigned int i; | |
1902 | ||
1903 | /* only scan the sections containing data */ | |
1904 | kmemleak_scan_area(mod->module_core, (unsigned long)mod - | |
1905 | (unsigned long)mod->module_core, | |
1906 | sizeof(struct module), GFP_KERNEL); | |
1907 | ||
1908 | for (i = 1; i < hdr->e_shnum; i++) { | |
1909 | if (!(sechdrs[i].sh_flags & SHF_ALLOC)) | |
1910 | continue; | |
1911 | if (strncmp(secstrings + sechdrs[i].sh_name, ".data", 5) != 0 | |
1912 | && strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) != 0) | |
1913 | continue; | |
1914 | ||
1915 | kmemleak_scan_area(mod->module_core, sechdrs[i].sh_addr - | |
1916 | (unsigned long)mod->module_core, | |
1917 | sechdrs[i].sh_size, GFP_KERNEL); | |
1918 | } | |
1919 | } | |
1920 | #else | |
1921 | static inline void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr, | |
1922 | Elf_Shdr *sechdrs, char *secstrings) | |
1923 | { | |
1924 | } | |
1925 | #endif | |
1926 | ||
1da177e4 LT |
1927 | /* Allocate and load the module: note that size of section 0 is always |
1928 | zero, and we rely on this for optional sections. */ | |
ffb4ba76 | 1929 | static noinline struct module *load_module(void __user *umod, |
1da177e4 LT |
1930 | unsigned long len, |
1931 | const char __user *uargs) | |
1932 | { | |
1933 | Elf_Ehdr *hdr; | |
1934 | Elf_Shdr *sechdrs; | |
1935 | char *secstrings, *args, *modmagic, *strtab = NULL; | |
061b1bd3 | 1936 | char *staging; |
84860f99 AM |
1937 | unsigned int i; |
1938 | unsigned int symindex = 0; | |
1939 | unsigned int strindex = 0; | |
5e458cc0 | 1940 | unsigned int modindex, versindex, infoindex, pcpuindex; |
1da177e4 LT |
1941 | struct module *mod; |
1942 | long err = 0; | |
1943 | void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */ | |
378bac82 | 1944 | mm_segment_t old_fs; |
1da177e4 LT |
1945 | |
1946 | DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n", | |
1947 | umod, len, uargs); | |
1948 | if (len < sizeof(*hdr)) | |
1949 | return ERR_PTR(-ENOEXEC); | |
1950 | ||
1951 | /* Suck in entire file: we'll want most of it. */ | |
1952 | /* vmalloc barfs on "unusual" numbers. Check here */ | |
1953 | if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL) | |
1954 | return ERR_PTR(-ENOMEM); | |
9e01892c | 1955 | |
1da177e4 LT |
1956 | if (copy_from_user(hdr, umod, len) != 0) { |
1957 | err = -EFAULT; | |
1958 | goto free_hdr; | |
1959 | } | |
1960 | ||
1961 | /* Sanity checks against insmoding binaries or wrong arch, | |
1962 | weird elf version */ | |
c4ea6fcf | 1963 | if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0 |
1da177e4 LT |
1964 | || hdr->e_type != ET_REL |
1965 | || !elf_check_arch(hdr) | |
1966 | || hdr->e_shentsize != sizeof(*sechdrs)) { | |
1967 | err = -ENOEXEC; | |
1968 | goto free_hdr; | |
1969 | } | |
1970 | ||
1971 | if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr)) | |
1972 | goto truncated; | |
1973 | ||
1974 | /* Convenience variables */ | |
1975 | sechdrs = (void *)hdr + hdr->e_shoff; | |
1976 | secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; | |
1977 | sechdrs[0].sh_addr = 0; | |
1978 | ||
1979 | for (i = 1; i < hdr->e_shnum; i++) { | |
1980 | if (sechdrs[i].sh_type != SHT_NOBITS | |
1981 | && len < sechdrs[i].sh_offset + sechdrs[i].sh_size) | |
1982 | goto truncated; | |
1983 | ||
1984 | /* Mark all sections sh_addr with their address in the | |
1985 | temporary image. */ | |
1986 | sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset; | |
1987 | ||
1988 | /* Internal symbols and strings. */ | |
1989 | if (sechdrs[i].sh_type == SHT_SYMTAB) { | |
1990 | symindex = i; | |
1991 | strindex = sechdrs[i].sh_link; | |
1992 | strtab = (char *)hdr + sechdrs[strindex].sh_offset; | |
1993 | } | |
1994 | #ifndef CONFIG_MODULE_UNLOAD | |
1995 | /* Don't load .exit sections */ | |
49502677 | 1996 | if (strstarts(secstrings+sechdrs[i].sh_name, ".exit")) |
1da177e4 LT |
1997 | sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC; |
1998 | #endif | |
1999 | } | |
2000 | ||
2001 | modindex = find_sec(hdr, sechdrs, secstrings, | |
2002 | ".gnu.linkonce.this_module"); | |
2003 | if (!modindex) { | |
2004 | printk(KERN_WARNING "No module found in object\n"); | |
2005 | err = -ENOEXEC; | |
2006 | goto free_hdr; | |
2007 | } | |
5e458cc0 | 2008 | /* This is temporary: point mod into copy of data. */ |
1da177e4 LT |
2009 | mod = (void *)sechdrs[modindex].sh_addr; |
2010 | ||
2011 | if (symindex == 0) { | |
2012 | printk(KERN_WARNING "%s: module has no symbols (stripped?)\n", | |
2013 | mod->name); | |
2014 | err = -ENOEXEC; | |
2015 | goto free_hdr; | |
2016 | } | |
2017 | ||
1da177e4 LT |
2018 | versindex = find_sec(hdr, sechdrs, secstrings, "__versions"); |
2019 | infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo"); | |
2020 | pcpuindex = find_pcpusec(hdr, sechdrs, secstrings); | |
2021 | ||
ea01e798 | 2022 | /* Don't keep modinfo and version sections. */ |
1da177e4 | 2023 | sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC; |
ea01e798 | 2024 | sechdrs[versindex].sh_flags &= ~(unsigned long)SHF_ALLOC; |
1da177e4 LT |
2025 | #ifdef CONFIG_KALLSYMS |
2026 | /* Keep symbol and string tables for decoding later. */ | |
2027 | sechdrs[symindex].sh_flags |= SHF_ALLOC; | |
2028 | sechdrs[strindex].sh_flags |= SHF_ALLOC; | |
2029 | #endif | |
2030 | ||
2031 | /* Check module struct version now, before we try to use module. */ | |
2032 | if (!check_modstruct_version(sechdrs, versindex, mod)) { | |
2033 | err = -ENOEXEC; | |
2034 | goto free_hdr; | |
2035 | } | |
2036 | ||
2037 | modmagic = get_modinfo(sechdrs, infoindex, "vermagic"); | |
2038 | /* This is allowed: modprobe --force will invalidate it. */ | |
2039 | if (!modmagic) { | |
c6e665c8 | 2040 | err = try_to_force_load(mod, "bad vermagic"); |
826e4506 LT |
2041 | if (err) |
2042 | goto free_hdr; | |
91e37a79 | 2043 | } else if (!same_magic(modmagic, vermagic, versindex)) { |
1da177e4 LT |
2044 | printk(KERN_ERR "%s: version magic '%s' should be '%s'\n", |
2045 | mod->name, modmagic, vermagic); | |
2046 | err = -ENOEXEC; | |
2047 | goto free_hdr; | |
2048 | } | |
2049 | ||
061b1bd3 GKH |
2050 | staging = get_modinfo(sechdrs, infoindex, "staging"); |
2051 | if (staging) { | |
2052 | add_taint_module(mod, TAINT_CRAP); | |
2053 | printk(KERN_WARNING "%s: module is from the staging directory," | |
2054 | " the quality is unknown, you have been warned.\n", | |
2055 | mod->name); | |
2056 | } | |
2057 | ||
1da177e4 | 2058 | /* Now copy in args */ |
24277dda DA |
2059 | args = strndup_user(uargs, ~0UL >> 1); |
2060 | if (IS_ERR(args)) { | |
2061 | err = PTR_ERR(args); | |
1da177e4 LT |
2062 | goto free_hdr; |
2063 | } | |
8e08b756 | 2064 | |
1da177e4 LT |
2065 | if (find_module(mod->name)) { |
2066 | err = -EEXIST; | |
2067 | goto free_mod; | |
2068 | } | |
2069 | ||
2070 | mod->state = MODULE_STATE_COMING; | |
2071 | ||
2072 | /* Allow arches to frob section contents and sizes. */ | |
2073 | err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod); | |
2074 | if (err < 0) | |
2075 | goto free_mod; | |
2076 | ||
2077 | if (pcpuindex) { | |
2078 | /* We have a special allocation for this section. */ | |
2079 | percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size, | |
842bbaaa RR |
2080 | sechdrs[pcpuindex].sh_addralign, |
2081 | mod->name); | |
1da177e4 LT |
2082 | if (!percpu) { |
2083 | err = -ENOMEM; | |
6e2b7574 | 2084 | goto free_mod; |
1da177e4 LT |
2085 | } |
2086 | sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC; | |
2087 | mod->percpu = percpu; | |
2088 | } | |
2089 | ||
2090 | /* Determine total sizes, and put offsets in sh_entsize. For now | |
2091 | this is done generically; there doesn't appear to be any | |
2092 | special cases for the architectures. */ | |
2093 | layout_sections(mod, hdr, sechdrs, secstrings); | |
2094 | ||
2095 | /* Do the allocs. */ | |
3a642e99 | 2096 | ptr = module_alloc_update_bounds(mod->core_size); |
4f2294b6 CM |
2097 | /* |
2098 | * The pointer to this block is stored in the module structure | |
2099 | * which is inside the block. Just mark it as not being a | |
2100 | * leak. | |
2101 | */ | |
2102 | kmemleak_not_leak(ptr); | |
1da177e4 LT |
2103 | if (!ptr) { |
2104 | err = -ENOMEM; | |
2105 | goto free_percpu; | |
2106 | } | |
2107 | memset(ptr, 0, mod->core_size); | |
2108 | mod->module_core = ptr; | |
2109 | ||
3a642e99 | 2110 | ptr = module_alloc_update_bounds(mod->init_size); |
4f2294b6 CM |
2111 | /* |
2112 | * The pointer to this block is stored in the module structure | |
2113 | * which is inside the block. This block doesn't need to be | |
2114 | * scanned as it contains data and code that will be freed | |
2115 | * after the module is initialized. | |
2116 | */ | |
2117 | kmemleak_ignore(ptr); | |
1da177e4 LT |
2118 | if (!ptr && mod->init_size) { |
2119 | err = -ENOMEM; | |
2120 | goto free_core; | |
2121 | } | |
2122 | memset(ptr, 0, mod->init_size); | |
2123 | mod->module_init = ptr; | |
2124 | ||
2125 | /* Transfer each section which specifies SHF_ALLOC */ | |
2126 | DEBUGP("final section addresses:\n"); | |
2127 | for (i = 0; i < hdr->e_shnum; i++) { | |
2128 | void *dest; | |
2129 | ||
2130 | if (!(sechdrs[i].sh_flags & SHF_ALLOC)) | |
2131 | continue; | |
2132 | ||
2133 | if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK) | |
2134 | dest = mod->module_init | |
2135 | + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK); | |
2136 | else | |
2137 | dest = mod->module_core + sechdrs[i].sh_entsize; | |
2138 | ||
2139 | if (sechdrs[i].sh_type != SHT_NOBITS) | |
2140 | memcpy(dest, (void *)sechdrs[i].sh_addr, | |
2141 | sechdrs[i].sh_size); | |
2142 | /* Update sh_addr to point to copy in image. */ | |
2143 | sechdrs[i].sh_addr = (unsigned long)dest; | |
2144 | DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name); | |
2145 | } | |
2146 | /* Module has been moved. */ | |
2147 | mod = (void *)sechdrs[modindex].sh_addr; | |
4f2294b6 | 2148 | kmemleak_load_module(mod, hdr, sechdrs, secstrings); |
1da177e4 | 2149 | |
6e2b7574 MH |
2150 | #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP) |
2151 | mod->refptr = percpu_modalloc(sizeof(local_t), __alignof__(local_t), | |
2152 | mod->name); | |
2153 | if (!mod->refptr) { | |
2154 | err = -ENOMEM; | |
2155 | goto free_init; | |
2156 | } | |
2157 | #endif | |
1da177e4 LT |
2158 | /* Now we've moved module, initialize linked lists, etc. */ |
2159 | module_unload_init(mod); | |
2160 | ||
97c146ef | 2161 | /* add kobject, so we can reference it. */ |
d58ae678 AM |
2162 | err = mod_sysfs_init(mod); |
2163 | if (err) | |
97c146ef | 2164 | goto free_unload; |
270a6c4c | 2165 | |
1da177e4 LT |
2166 | /* Set up license info based on the info section */ |
2167 | set_license(mod, get_modinfo(sechdrs, infoindex, "license")); | |
2168 | ||
9b37ccfc PR |
2169 | /* |
2170 | * ndiswrapper is under GPL by itself, but loads proprietary modules. | |
2171 | * Don't use add_taint_module(), as it would prevent ndiswrapper from | |
2172 | * using GPL-only symbols it needs. | |
2173 | */ | |
fa3ba2e8 | 2174 | if (strcmp(mod->name, "ndiswrapper") == 0) |
9b37ccfc PR |
2175 | add_taint(TAINT_PROPRIETARY_MODULE); |
2176 | ||
2177 | /* driverloader was caught wrongly pretending to be under GPL */ | |
fa3ba2e8 FM |
2178 | if (strcmp(mod->name, "driverloader") == 0) |
2179 | add_taint_module(mod, TAINT_PROPRIETARY_MODULE); | |
9841d61d | 2180 | |
c988d2b2 MD |
2181 | /* Set up MODINFO_ATTR fields */ |
2182 | setup_modinfo(mod, sechdrs, infoindex); | |
c988d2b2 | 2183 | |
1da177e4 LT |
2184 | /* Fix up syms, so that st_value is a pointer to location. */ |
2185 | err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex, | |
2186 | mod); | |
2187 | if (err < 0) | |
2188 | goto cleanup; | |
2189 | ||
5e458cc0 RR |
2190 | /* Now we've got everything in the final locations, we can |
2191 | * find optional sections. */ | |
e180a6b7 RR |
2192 | mod->kp = section_objs(hdr, sechdrs, secstrings, "__param", |
2193 | sizeof(*mod->kp), &mod->num_kp); | |
5e458cc0 RR |
2194 | mod->syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab", |
2195 | sizeof(*mod->syms), &mod->num_syms); | |
2196 | mod->crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab"); | |
2197 | mod->gpl_syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab_gpl", | |
2198 | sizeof(*mod->gpl_syms), | |
2199 | &mod->num_gpl_syms); | |
2200 | mod->gpl_crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab_gpl"); | |
2201 | mod->gpl_future_syms = section_objs(hdr, sechdrs, secstrings, | |
2202 | "__ksymtab_gpl_future", | |
2203 | sizeof(*mod->gpl_future_syms), | |
2204 | &mod->num_gpl_future_syms); | |
2205 | mod->gpl_future_crcs = section_addr(hdr, sechdrs, secstrings, | |
2206 | "__kcrctab_gpl_future"); | |
1da177e4 | 2207 | |
f7f5b675 | 2208 | #ifdef CONFIG_UNUSED_SYMBOLS |
5e458cc0 RR |
2209 | mod->unused_syms = section_objs(hdr, sechdrs, secstrings, |
2210 | "__ksymtab_unused", | |
2211 | sizeof(*mod->unused_syms), | |
2212 | &mod->num_unused_syms); | |
2213 | mod->unused_crcs = section_addr(hdr, sechdrs, secstrings, | |
2214 | "__kcrctab_unused"); | |
2215 | mod->unused_gpl_syms = section_objs(hdr, sechdrs, secstrings, | |
2216 | "__ksymtab_unused_gpl", | |
2217 | sizeof(*mod->unused_gpl_syms), | |
2218 | &mod->num_unused_gpl_syms); | |
2219 | mod->unused_gpl_crcs = section_addr(hdr, sechdrs, secstrings, | |
2220 | "__kcrctab_unused_gpl"); | |
2221 | #endif | |
b99b87f7 PO |
2222 | #ifdef CONFIG_CONSTRUCTORS |
2223 | mod->ctors = section_objs(hdr, sechdrs, secstrings, ".ctors", | |
2224 | sizeof(*mod->ctors), &mod->num_ctors); | |
2225 | #endif | |
5e458cc0 RR |
2226 | |
2227 | #ifdef CONFIG_MARKERS | |
2228 | mod->markers = section_objs(hdr, sechdrs, secstrings, "__markers", | |
2229 | sizeof(*mod->markers), &mod->num_markers); | |
2230 | #endif | |
2231 | #ifdef CONFIG_TRACEPOINTS | |
2232 | mod->tracepoints = section_objs(hdr, sechdrs, secstrings, | |
2233 | "__tracepoints", | |
2234 | sizeof(*mod->tracepoints), | |
2235 | &mod->num_tracepoints); | |
f7f5b675 | 2236 | #endif |
6d723736 SR |
2237 | #ifdef CONFIG_EVENT_TRACING |
2238 | mod->trace_events = section_objs(hdr, sechdrs, secstrings, | |
2239 | "_ftrace_events", | |
2240 | sizeof(*mod->trace_events), | |
2241 | &mod->num_trace_events); | |
2242 | #endif | |
93eb677d SR |
2243 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
2244 | /* sechdrs[0].sh_size is always zero */ | |
2245 | mod->ftrace_callsites = section_objs(hdr, sechdrs, secstrings, | |
2246 | "__mcount_loc", | |
2247 | sizeof(*mod->ftrace_callsites), | |
2248 | &mod->num_ftrace_callsites); | |
2249 | #endif | |
1da177e4 | 2250 | #ifdef CONFIG_MODVERSIONS |
5e458cc0 RR |
2251 | if ((mod->num_syms && !mod->crcs) |
2252 | || (mod->num_gpl_syms && !mod->gpl_crcs) | |
2253 | || (mod->num_gpl_future_syms && !mod->gpl_future_crcs) | |
f7f5b675 | 2254 | #ifdef CONFIG_UNUSED_SYMBOLS |
5e458cc0 RR |
2255 | || (mod->num_unused_syms && !mod->unused_crcs) |
2256 | || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs) | |
f7f5b675 DV |
2257 | #endif |
2258 | ) { | |
c6e665c8 RR |
2259 | err = try_to_force_load(mod, |
2260 | "no versions for exported symbols"); | |
826e4506 LT |
2261 | if (err) |
2262 | goto cleanup; | |
1da177e4 LT |
2263 | } |
2264 | #endif | |
2265 | ||
2266 | /* Now do relocations. */ | |
2267 | for (i = 1; i < hdr->e_shnum; i++) { | |
2268 | const char *strtab = (char *)sechdrs[strindex].sh_addr; | |
2269 | unsigned int info = sechdrs[i].sh_info; | |
2270 | ||
2271 | /* Not a valid relocation section? */ | |
2272 | if (info >= hdr->e_shnum) | |
2273 | continue; | |
2274 | ||
2275 | /* Don't bother with non-allocated sections */ | |
2276 | if (!(sechdrs[info].sh_flags & SHF_ALLOC)) | |
2277 | continue; | |
2278 | ||
2279 | if (sechdrs[i].sh_type == SHT_REL) | |
2280 | err = apply_relocate(sechdrs, strtab, symindex, i,mod); | |
2281 | else if (sechdrs[i].sh_type == SHT_RELA) | |
2282 | err = apply_relocate_add(sechdrs, strtab, symindex, i, | |
2283 | mod); | |
2284 | if (err < 0) | |
2285 | goto cleanup; | |
2286 | } | |
2287 | ||
eea8b54d AN |
2288 | /* Find duplicate symbols */ |
2289 | err = verify_export_symbols(mod); | |
eea8b54d AN |
2290 | if (err < 0) |
2291 | goto cleanup; | |
2292 | ||
1da177e4 | 2293 | /* Set up and sort exception table */ |
5e458cc0 RR |
2294 | mod->extable = section_objs(hdr, sechdrs, secstrings, "__ex_table", |
2295 | sizeof(*mod->extable), &mod->num_exentries); | |
2296 | sort_extable(mod->extable, mod->extable + mod->num_exentries); | |
1da177e4 LT |
2297 | |
2298 | /* Finally, copy percpu area over. */ | |
2299 | percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr, | |
2300 | sechdrs[pcpuindex].sh_size); | |
2301 | ||
2302 | add_kallsyms(mod, sechdrs, symindex, strindex, secstrings); | |
2303 | ||
97e1c18e | 2304 | if (!mod->taints) { |
e9d376f0 | 2305 | struct _ddebug *debug; |
5e458cc0 RR |
2306 | unsigned int num_debug; |
2307 | ||
5e458cc0 RR |
2308 | debug = section_objs(hdr, sechdrs, secstrings, "__verbose", |
2309 | sizeof(*debug), &num_debug); | |
e9d376f0 JB |
2310 | if (debug) |
2311 | dynamic_debug_setup(debug, num_debug); | |
97e1c18e | 2312 | } |
90d595fe | 2313 | |
1da177e4 LT |
2314 | err = module_finalize(hdr, sechdrs, mod); |
2315 | if (err < 0) | |
2316 | goto cleanup; | |
2317 | ||
378bac82 TK |
2318 | /* flush the icache in correct context */ |
2319 | old_fs = get_fs(); | |
2320 | set_fs(KERNEL_DS); | |
2321 | ||
2322 | /* | |
2323 | * Flush the instruction cache, since we've played with text. | |
2324 | * Do it before processing of module parameters, so the module | |
2325 | * can provide parameter accessor functions of its own. | |
2326 | */ | |
2327 | if (mod->module_init) | |
2328 | flush_icache_range((unsigned long)mod->module_init, | |
2329 | (unsigned long)mod->module_init | |
2330 | + mod->init_size); | |
2331 | flush_icache_range((unsigned long)mod->module_core, | |
2332 | (unsigned long)mod->module_core + mod->core_size); | |
2333 | ||
2334 | set_fs(old_fs); | |
2335 | ||
1da177e4 | 2336 | mod->args = args; |
5e458cc0 | 2337 | if (section_addr(hdr, sechdrs, secstrings, "__obsparm")) |
8d3b33f6 RR |
2338 | printk(KERN_WARNING "%s: Ignoring obsolete parameters\n", |
2339 | mod->name); | |
2340 | ||
bb9d3d56 | 2341 | /* Now sew it into the lists so we can get lockdep and oops |
d72b3751 AK |
2342 | * info during argument parsing. Noone should access us, since |
2343 | * strong_try_module_get() will fail. | |
2344 | * lockdep/oops can run asynchronous, so use the RCU list insertion | |
2345 | * function to insert in a way safe to concurrent readers. | |
2346 | * The mutex protects against concurrent writers. | |
2347 | */ | |
2348 | list_add_rcu(&mod->list, &modules); | |
bb9d3d56 | 2349 | |
e180a6b7 | 2350 | err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL); |
1da177e4 | 2351 | if (err < 0) |
bb9d3d56 | 2352 | goto unlink; |
1da177e4 | 2353 | |
e180a6b7 | 2354 | err = mod_sysfs_setup(mod, mod->kp, mod->num_kp); |
1da177e4 | 2355 | if (err < 0) |
bb9d3d56 | 2356 | goto unlink; |
1da177e4 | 2357 | add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs); |
1b364bf4 JB |
2358 | if (mod->sect_attrs) |
2359 | add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs); | |
1da177e4 LT |
2360 | |
2361 | /* Get rid of temporary copy */ | |
2362 | vfree(hdr); | |
2363 | ||
2364 | /* Done! */ | |
2365 | return mod; | |
2366 | ||
bb9d3d56 | 2367 | unlink: |
e91defa2 RR |
2368 | /* Unlink carefully: kallsyms could be walking list. */ |
2369 | list_del_rcu(&mod->list); | |
2370 | synchronize_sched(); | |
1da177e4 LT |
2371 | module_arch_cleanup(mod); |
2372 | cleanup: | |
97c146ef KS |
2373 | kobject_del(&mod->mkobj.kobj); |
2374 | kobject_put(&mod->mkobj.kobj); | |
2375 | free_unload: | |
1da177e4 | 2376 | module_unload_free(mod); |
6e2b7574 | 2377 | #if defined(CONFIG_MODULE_UNLOAD) && defined(CONFIG_SMP) |
b10153fe | 2378 | free_init: |
6e2b7574 MH |
2379 | percpu_modfree(mod->refptr); |
2380 | #endif | |
1da177e4 LT |
2381 | module_free(mod, mod->module_init); |
2382 | free_core: | |
2383 | module_free(mod, mod->module_core); | |
6e2b7574 | 2384 | /* mod will be freed with core. Don't access it beyond this line! */ |
1da177e4 LT |
2385 | free_percpu: |
2386 | if (percpu) | |
2387 | percpu_modfree(percpu); | |
2388 | free_mod: | |
2389 | kfree(args); | |
2390 | free_hdr: | |
2391 | vfree(hdr); | |
6fe2e70b | 2392 | return ERR_PTR(err); |
1da177e4 LT |
2393 | |
2394 | truncated: | |
2395 | printk(KERN_ERR "Module len %lu truncated\n", len); | |
2396 | err = -ENOEXEC; | |
2397 | goto free_hdr; | |
2398 | } | |
2399 | ||
b99b87f7 PO |
2400 | /* Call module constructors. */ |
2401 | static void do_mod_ctors(struct module *mod) | |
2402 | { | |
2403 | #ifdef CONFIG_CONSTRUCTORS | |
2404 | unsigned long i; | |
2405 | ||
2406 | for (i = 0; i < mod->num_ctors; i++) | |
2407 | mod->ctors[i](); | |
2408 | #endif | |
2409 | } | |
2410 | ||
1da177e4 | 2411 | /* This is where the real work happens */ |
17da2bd9 HC |
2412 | SYSCALL_DEFINE3(init_module, void __user *, umod, |
2413 | unsigned long, len, const char __user *, uargs) | |
1da177e4 LT |
2414 | { |
2415 | struct module *mod; | |
2416 | int ret = 0; | |
2417 | ||
2418 | /* Must have permission */ | |
3d43321b | 2419 | if (!capable(CAP_SYS_MODULE) || modules_disabled) |
1da177e4 LT |
2420 | return -EPERM; |
2421 | ||
2422 | /* Only one module load at a time, please */ | |
6389a385 | 2423 | if (mutex_lock_interruptible(&module_mutex) != 0) |
1da177e4 LT |
2424 | return -EINTR; |
2425 | ||
2426 | /* Do all the hard work */ | |
2427 | mod = load_module(umod, len, uargs); | |
2428 | if (IS_ERR(mod)) { | |
6389a385 | 2429 | mutex_unlock(&module_mutex); |
1da177e4 LT |
2430 | return PTR_ERR(mod); |
2431 | } | |
2432 | ||
1da177e4 | 2433 | /* Drop lock so they can recurse */ |
6389a385 | 2434 | mutex_unlock(&module_mutex); |
1da177e4 | 2435 | |
e041c683 AS |
2436 | blocking_notifier_call_chain(&module_notify_list, |
2437 | MODULE_STATE_COMING, mod); | |
1da177e4 | 2438 | |
b99b87f7 | 2439 | do_mod_ctors(mod); |
1da177e4 LT |
2440 | /* Start the module */ |
2441 | if (mod->init != NULL) | |
59f9415f | 2442 | ret = do_one_initcall(mod->init); |
1da177e4 LT |
2443 | if (ret < 0) { |
2444 | /* Init routine failed: abort. Try to protect us from | |
2445 | buggy refcounters. */ | |
2446 | mod->state = MODULE_STATE_GOING; | |
fbd568a3 | 2447 | synchronize_sched(); |
af49d924 | 2448 | module_put(mod); |
df4b565e PO |
2449 | blocking_notifier_call_chain(&module_notify_list, |
2450 | MODULE_STATE_GOING, mod); | |
af49d924 RR |
2451 | mutex_lock(&module_mutex); |
2452 | free_module(mod); | |
2453 | mutex_unlock(&module_mutex); | |
c9a3ba55 | 2454 | wake_up(&module_wq); |
1da177e4 LT |
2455 | return ret; |
2456 | } | |
e24e2e64 | 2457 | if (ret > 0) { |
ad361c98 JP |
2458 | printk(KERN_WARNING |
2459 | "%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n" | |
2460 | "%s: loading module anyway...\n", | |
e24e2e64 AD |
2461 | __func__, mod->name, ret, |
2462 | __func__); | |
2463 | dump_stack(); | |
2464 | } | |
1da177e4 | 2465 | |
6c5db22d | 2466 | /* Now it's a first class citizen! Wake up anyone waiting for it. */ |
1da177e4 | 2467 | mod->state = MODULE_STATE_LIVE; |
6c5db22d | 2468 | wake_up(&module_wq); |
0deddf43 MH |
2469 | blocking_notifier_call_chain(&module_notify_list, |
2470 | MODULE_STATE_LIVE, mod); | |
6c5db22d | 2471 | |
d6de2c80 LT |
2472 | /* We need to finish all async code before the module init sequence is done */ |
2473 | async_synchronize_full(); | |
2474 | ||
6c5db22d | 2475 | mutex_lock(&module_mutex); |
1da177e4 LT |
2476 | /* Drop initial reference. */ |
2477 | module_put(mod); | |
ad6561df | 2478 | trim_init_extable(mod); |
1da177e4 LT |
2479 | module_free(mod, mod->module_init); |
2480 | mod->module_init = NULL; | |
2481 | mod->init_size = 0; | |
2482 | mod->init_text_size = 0; | |
6389a385 | 2483 | mutex_unlock(&module_mutex); |
1da177e4 LT |
2484 | |
2485 | return 0; | |
2486 | } | |
2487 | ||
2488 | static inline int within(unsigned long addr, void *start, unsigned long size) | |
2489 | { | |
2490 | return ((void *)addr >= start && (void *)addr < start + size); | |
2491 | } | |
2492 | ||
2493 | #ifdef CONFIG_KALLSYMS | |
2494 | /* | |
2495 | * This ignores the intensely annoying "mapping symbols" found | |
2496 | * in ARM ELF files: $a, $t and $d. | |
2497 | */ | |
2498 | static inline int is_arm_mapping_symbol(const char *str) | |
2499 | { | |
22a8bdeb | 2500 | return str[0] == '$' && strchr("atd", str[1]) |
1da177e4 LT |
2501 | && (str[2] == '\0' || str[2] == '.'); |
2502 | } | |
2503 | ||
2504 | static const char *get_ksymbol(struct module *mod, | |
2505 | unsigned long addr, | |
2506 | unsigned long *size, | |
2507 | unsigned long *offset) | |
2508 | { | |
2509 | unsigned int i, best = 0; | |
2510 | unsigned long nextval; | |
2511 | ||
2512 | /* At worse, next value is at end of module */ | |
a06f6211 | 2513 | if (within_module_init(addr, mod)) |
1da177e4 | 2514 | nextval = (unsigned long)mod->module_init+mod->init_text_size; |
22a8bdeb | 2515 | else |
1da177e4 LT |
2516 | nextval = (unsigned long)mod->module_core+mod->core_text_size; |
2517 | ||
2518 | /* Scan for closest preceeding symbol, and next symbol. (ELF | |
22a8bdeb | 2519 | starts real symbols at 1). */ |
1da177e4 LT |
2520 | for (i = 1; i < mod->num_symtab; i++) { |
2521 | if (mod->symtab[i].st_shndx == SHN_UNDEF) | |
2522 | continue; | |
2523 | ||
2524 | /* We ignore unnamed symbols: they're uninformative | |
2525 | * and inserted at a whim. */ | |
2526 | if (mod->symtab[i].st_value <= addr | |
2527 | && mod->symtab[i].st_value > mod->symtab[best].st_value | |
2528 | && *(mod->strtab + mod->symtab[i].st_name) != '\0' | |
2529 | && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name)) | |
2530 | best = i; | |
2531 | if (mod->symtab[i].st_value > addr | |
2532 | && mod->symtab[i].st_value < nextval | |
2533 | && *(mod->strtab + mod->symtab[i].st_name) != '\0' | |
2534 | && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name)) | |
2535 | nextval = mod->symtab[i].st_value; | |
2536 | } | |
2537 | ||
2538 | if (!best) | |
2539 | return NULL; | |
2540 | ||
ffb45122 AD |
2541 | if (size) |
2542 | *size = nextval - mod->symtab[best].st_value; | |
2543 | if (offset) | |
2544 | *offset = addr - mod->symtab[best].st_value; | |
1da177e4 LT |
2545 | return mod->strtab + mod->symtab[best].st_name; |
2546 | } | |
2547 | ||
6dd06c9f RR |
2548 | /* For kallsyms to ask for address resolution. NULL means not found. Careful |
2549 | * not to lock to avoid deadlock on oopses, simply disable preemption. */ | |
92dfc9dc | 2550 | const char *module_address_lookup(unsigned long addr, |
6dd06c9f RR |
2551 | unsigned long *size, |
2552 | unsigned long *offset, | |
2553 | char **modname, | |
2554 | char *namebuf) | |
1da177e4 LT |
2555 | { |
2556 | struct module *mod; | |
cb2a5205 | 2557 | const char *ret = NULL; |
1da177e4 | 2558 | |
cb2a5205 | 2559 | preempt_disable(); |
d72b3751 | 2560 | list_for_each_entry_rcu(mod, &modules, list) { |
a06f6211 MH |
2561 | if (within_module_init(addr, mod) || |
2562 | within_module_core(addr, mod)) { | |
ffc50891 FBH |
2563 | if (modname) |
2564 | *modname = mod->name; | |
cb2a5205 RR |
2565 | ret = get_ksymbol(mod, addr, size, offset); |
2566 | break; | |
1da177e4 LT |
2567 | } |
2568 | } | |
6dd06c9f RR |
2569 | /* Make a copy in here where it's safe */ |
2570 | if (ret) { | |
2571 | strncpy(namebuf, ret, KSYM_NAME_LEN - 1); | |
2572 | ret = namebuf; | |
2573 | } | |
cb2a5205 | 2574 | preempt_enable(); |
92dfc9dc | 2575 | return ret; |
1da177e4 LT |
2576 | } |
2577 | ||
9d65cb4a AD |
2578 | int lookup_module_symbol_name(unsigned long addr, char *symname) |
2579 | { | |
2580 | struct module *mod; | |
2581 | ||
cb2a5205 | 2582 | preempt_disable(); |
d72b3751 | 2583 | list_for_each_entry_rcu(mod, &modules, list) { |
a06f6211 MH |
2584 | if (within_module_init(addr, mod) || |
2585 | within_module_core(addr, mod)) { | |
9d65cb4a AD |
2586 | const char *sym; |
2587 | ||
2588 | sym = get_ksymbol(mod, addr, NULL, NULL); | |
2589 | if (!sym) | |
2590 | goto out; | |
9281acea | 2591 | strlcpy(symname, sym, KSYM_NAME_LEN); |
cb2a5205 | 2592 | preempt_enable(); |
9d65cb4a AD |
2593 | return 0; |
2594 | } | |
2595 | } | |
2596 | out: | |
cb2a5205 | 2597 | preempt_enable(); |
9d65cb4a AD |
2598 | return -ERANGE; |
2599 | } | |
2600 | ||
a5c43dae AD |
2601 | int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size, |
2602 | unsigned long *offset, char *modname, char *name) | |
2603 | { | |
2604 | struct module *mod; | |
2605 | ||
cb2a5205 | 2606 | preempt_disable(); |
d72b3751 | 2607 | list_for_each_entry_rcu(mod, &modules, list) { |
a06f6211 MH |
2608 | if (within_module_init(addr, mod) || |
2609 | within_module_core(addr, mod)) { | |
a5c43dae AD |
2610 | const char *sym; |
2611 | ||
2612 | sym = get_ksymbol(mod, addr, size, offset); | |
2613 | if (!sym) | |
2614 | goto out; | |
2615 | if (modname) | |
9281acea | 2616 | strlcpy(modname, mod->name, MODULE_NAME_LEN); |
a5c43dae | 2617 | if (name) |
9281acea | 2618 | strlcpy(name, sym, KSYM_NAME_LEN); |
cb2a5205 | 2619 | preempt_enable(); |
a5c43dae AD |
2620 | return 0; |
2621 | } | |
2622 | } | |
2623 | out: | |
cb2a5205 | 2624 | preempt_enable(); |
a5c43dae AD |
2625 | return -ERANGE; |
2626 | } | |
2627 | ||
ea07890a AD |
2628 | int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type, |
2629 | char *name, char *module_name, int *exported) | |
1da177e4 LT |
2630 | { |
2631 | struct module *mod; | |
2632 | ||
cb2a5205 | 2633 | preempt_disable(); |
d72b3751 | 2634 | list_for_each_entry_rcu(mod, &modules, list) { |
1da177e4 LT |
2635 | if (symnum < mod->num_symtab) { |
2636 | *value = mod->symtab[symnum].st_value; | |
2637 | *type = mod->symtab[symnum].st_info; | |
098c5eea | 2638 | strlcpy(name, mod->strtab + mod->symtab[symnum].st_name, |
9281acea TH |
2639 | KSYM_NAME_LEN); |
2640 | strlcpy(module_name, mod->name, MODULE_NAME_LEN); | |
ca4787b7 | 2641 | *exported = is_exported(name, *value, mod); |
cb2a5205 | 2642 | preempt_enable(); |
ea07890a | 2643 | return 0; |
1da177e4 LT |
2644 | } |
2645 | symnum -= mod->num_symtab; | |
2646 | } | |
cb2a5205 | 2647 | preempt_enable(); |
ea07890a | 2648 | return -ERANGE; |
1da177e4 LT |
2649 | } |
2650 | ||
2651 | static unsigned long mod_find_symname(struct module *mod, const char *name) | |
2652 | { | |
2653 | unsigned int i; | |
2654 | ||
2655 | for (i = 0; i < mod->num_symtab; i++) | |
54e8ce46 KO |
2656 | if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 && |
2657 | mod->symtab[i].st_info != 'U') | |
1da177e4 LT |
2658 | return mod->symtab[i].st_value; |
2659 | return 0; | |
2660 | } | |
2661 | ||
2662 | /* Look for this name: can be of form module:name. */ | |
2663 | unsigned long module_kallsyms_lookup_name(const char *name) | |
2664 | { | |
2665 | struct module *mod; | |
2666 | char *colon; | |
2667 | unsigned long ret = 0; | |
2668 | ||
2669 | /* Don't lock: we're in enough trouble already. */ | |
cb2a5205 | 2670 | preempt_disable(); |
1da177e4 LT |
2671 | if ((colon = strchr(name, ':')) != NULL) { |
2672 | *colon = '\0'; | |
2673 | if ((mod = find_module(name)) != NULL) | |
2674 | ret = mod_find_symname(mod, colon+1); | |
2675 | *colon = ':'; | |
2676 | } else { | |
d72b3751 | 2677 | list_for_each_entry_rcu(mod, &modules, list) |
1da177e4 LT |
2678 | if ((ret = mod_find_symname(mod, name)) != 0) |
2679 | break; | |
2680 | } | |
cb2a5205 | 2681 | preempt_enable(); |
1da177e4 LT |
2682 | return ret; |
2683 | } | |
75a66614 AK |
2684 | |
2685 | int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *, | |
2686 | struct module *, unsigned long), | |
2687 | void *data) | |
2688 | { | |
2689 | struct module *mod; | |
2690 | unsigned int i; | |
2691 | int ret; | |
2692 | ||
2693 | list_for_each_entry(mod, &modules, list) { | |
2694 | for (i = 0; i < mod->num_symtab; i++) { | |
2695 | ret = fn(data, mod->strtab + mod->symtab[i].st_name, | |
2696 | mod, mod->symtab[i].st_value); | |
2697 | if (ret != 0) | |
2698 | return ret; | |
2699 | } | |
2700 | } | |
2701 | return 0; | |
2702 | } | |
1da177e4 LT |
2703 | #endif /* CONFIG_KALLSYMS */ |
2704 | ||
21aa9280 | 2705 | static char *module_flags(struct module *mod, char *buf) |
fa3ba2e8 FM |
2706 | { |
2707 | int bx = 0; | |
2708 | ||
21aa9280 AV |
2709 | if (mod->taints || |
2710 | mod->state == MODULE_STATE_GOING || | |
2711 | mod->state == MODULE_STATE_COMING) { | |
fa3ba2e8 | 2712 | buf[bx++] = '('; |
25ddbb18 | 2713 | if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE)) |
fa3ba2e8 | 2714 | buf[bx++] = 'P'; |
25ddbb18 | 2715 | if (mod->taints & (1 << TAINT_FORCED_MODULE)) |
fa3ba2e8 | 2716 | buf[bx++] = 'F'; |
26e9a397 | 2717 | if (mod->taints & (1 << TAINT_CRAP)) |
061b1bd3 | 2718 | buf[bx++] = 'C'; |
fa3ba2e8 FM |
2719 | /* |
2720 | * TAINT_FORCED_RMMOD: could be added. | |
2721 | * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't | |
2722 | * apply to modules. | |
2723 | */ | |
21aa9280 AV |
2724 | |
2725 | /* Show a - for module-is-being-unloaded */ | |
2726 | if (mod->state == MODULE_STATE_GOING) | |
2727 | buf[bx++] = '-'; | |
2728 | /* Show a + for module-is-being-loaded */ | |
2729 | if (mod->state == MODULE_STATE_COMING) | |
2730 | buf[bx++] = '+'; | |
fa3ba2e8 FM |
2731 | buf[bx++] = ')'; |
2732 | } | |
2733 | buf[bx] = '\0'; | |
2734 | ||
2735 | return buf; | |
2736 | } | |
2737 | ||
3b5d5c6b AD |
2738 | #ifdef CONFIG_PROC_FS |
2739 | /* Called by the /proc file system to return a list of modules. */ | |
2740 | static void *m_start(struct seq_file *m, loff_t *pos) | |
2741 | { | |
2742 | mutex_lock(&module_mutex); | |
2743 | return seq_list_start(&modules, *pos); | |
2744 | } | |
2745 | ||
2746 | static void *m_next(struct seq_file *m, void *p, loff_t *pos) | |
2747 | { | |
2748 | return seq_list_next(p, &modules, pos); | |
2749 | } | |
2750 | ||
2751 | static void m_stop(struct seq_file *m, void *p) | |
2752 | { | |
2753 | mutex_unlock(&module_mutex); | |
2754 | } | |
2755 | ||
1da177e4 LT |
2756 | static int m_show(struct seq_file *m, void *p) |
2757 | { | |
2758 | struct module *mod = list_entry(p, struct module, list); | |
fa3ba2e8 FM |
2759 | char buf[8]; |
2760 | ||
2f0f2a33 | 2761 | seq_printf(m, "%s %u", |
1da177e4 LT |
2762 | mod->name, mod->init_size + mod->core_size); |
2763 | print_unload_info(m, mod); | |
2764 | ||
2765 | /* Informative for users. */ | |
2766 | seq_printf(m, " %s", | |
2767 | mod->state == MODULE_STATE_GOING ? "Unloading": | |
2768 | mod->state == MODULE_STATE_COMING ? "Loading": | |
2769 | "Live"); | |
2770 | /* Used by oprofile and other similar tools. */ | |
2771 | seq_printf(m, " 0x%p", mod->module_core); | |
2772 | ||
fa3ba2e8 FM |
2773 | /* Taints info */ |
2774 | if (mod->taints) | |
21aa9280 | 2775 | seq_printf(m, " %s", module_flags(mod, buf)); |
fa3ba2e8 | 2776 | |
1da177e4 LT |
2777 | seq_printf(m, "\n"); |
2778 | return 0; | |
2779 | } | |
2780 | ||
2781 | /* Format: modulename size refcount deps address | |
2782 | ||
2783 | Where refcount is a number or -, and deps is a comma-separated list | |
2784 | of depends or -. | |
2785 | */ | |
3b5d5c6b | 2786 | static const struct seq_operations modules_op = { |
1da177e4 LT |
2787 | .start = m_start, |
2788 | .next = m_next, | |
2789 | .stop = m_stop, | |
2790 | .show = m_show | |
2791 | }; | |
2792 | ||
3b5d5c6b AD |
2793 | static int modules_open(struct inode *inode, struct file *file) |
2794 | { | |
2795 | return seq_open(file, &modules_op); | |
2796 | } | |
2797 | ||
2798 | static const struct file_operations proc_modules_operations = { | |
2799 | .open = modules_open, | |
2800 | .read = seq_read, | |
2801 | .llseek = seq_lseek, | |
2802 | .release = seq_release, | |
2803 | }; | |
2804 | ||
2805 | static int __init proc_modules_init(void) | |
2806 | { | |
2807 | proc_create("modules", 0, NULL, &proc_modules_operations); | |
2808 | return 0; | |
2809 | } | |
2810 | module_init(proc_modules_init); | |
2811 | #endif | |
2812 | ||
1da177e4 LT |
2813 | /* Given an address, look for it in the module exception tables. */ |
2814 | const struct exception_table_entry *search_module_extables(unsigned long addr) | |
2815 | { | |
1da177e4 LT |
2816 | const struct exception_table_entry *e = NULL; |
2817 | struct module *mod; | |
2818 | ||
24da1cbf | 2819 | preempt_disable(); |
d72b3751 | 2820 | list_for_each_entry_rcu(mod, &modules, list) { |
1da177e4 LT |
2821 | if (mod->num_exentries == 0) |
2822 | continue; | |
22a8bdeb | 2823 | |
1da177e4 LT |
2824 | e = search_extable(mod->extable, |
2825 | mod->extable + mod->num_exentries - 1, | |
2826 | addr); | |
2827 | if (e) | |
2828 | break; | |
2829 | } | |
24da1cbf | 2830 | preempt_enable(); |
1da177e4 LT |
2831 | |
2832 | /* Now, if we found one, we are running inside it now, hence | |
22a8bdeb | 2833 | we cannot unload the module, hence no refcnt needed. */ |
1da177e4 LT |
2834 | return e; |
2835 | } | |
2836 | ||
4d435f9d | 2837 | /* |
e610499e RR |
2838 | * is_module_address - is this address inside a module? |
2839 | * @addr: the address to check. | |
2840 | * | |
2841 | * See is_module_text_address() if you simply want to see if the address | |
2842 | * is code (not data). | |
4d435f9d | 2843 | */ |
e610499e | 2844 | bool is_module_address(unsigned long addr) |
4d435f9d | 2845 | { |
e610499e | 2846 | bool ret; |
4d435f9d | 2847 | |
24da1cbf | 2848 | preempt_disable(); |
e610499e | 2849 | ret = __module_address(addr) != NULL; |
24da1cbf | 2850 | preempt_enable(); |
4d435f9d | 2851 | |
e610499e | 2852 | return ret; |
4d435f9d IM |
2853 | } |
2854 | ||
e610499e RR |
2855 | /* |
2856 | * __module_address - get the module which contains an address. | |
2857 | * @addr: the address. | |
2858 | * | |
2859 | * Must be called with preempt disabled or module mutex held so that | |
2860 | * module doesn't get freed during this. | |
2861 | */ | |
714f83d5 | 2862 | struct module *__module_address(unsigned long addr) |
1da177e4 LT |
2863 | { |
2864 | struct module *mod; | |
2865 | ||
3a642e99 RR |
2866 | if (addr < module_addr_min || addr > module_addr_max) |
2867 | return NULL; | |
2868 | ||
d72b3751 | 2869 | list_for_each_entry_rcu(mod, &modules, list) |
e610499e RR |
2870 | if (within_module_core(addr, mod) |
2871 | || within_module_init(addr, mod)) | |
1da177e4 LT |
2872 | return mod; |
2873 | return NULL; | |
2874 | } | |
c6b37801 | 2875 | EXPORT_SYMBOL_GPL(__module_address); |
1da177e4 | 2876 | |
e610499e RR |
2877 | /* |
2878 | * is_module_text_address - is this address inside module code? | |
2879 | * @addr: the address to check. | |
2880 | * | |
2881 | * See is_module_address() if you simply want to see if the address is | |
2882 | * anywhere in a module. See kernel_text_address() for testing if an | |
2883 | * address corresponds to kernel or module code. | |
2884 | */ | |
2885 | bool is_module_text_address(unsigned long addr) | |
2886 | { | |
2887 | bool ret; | |
2888 | ||
2889 | preempt_disable(); | |
2890 | ret = __module_text_address(addr) != NULL; | |
2891 | preempt_enable(); | |
2892 | ||
2893 | return ret; | |
2894 | } | |
2895 | ||
2896 | /* | |
2897 | * __module_text_address - get the module whose code contains an address. | |
2898 | * @addr: the address. | |
2899 | * | |
2900 | * Must be called with preempt disabled or module mutex held so that | |
2901 | * module doesn't get freed during this. | |
2902 | */ | |
2903 | struct module *__module_text_address(unsigned long addr) | |
2904 | { | |
2905 | struct module *mod = __module_address(addr); | |
2906 | if (mod) { | |
2907 | /* Make sure it's within the text section. */ | |
2908 | if (!within(addr, mod->module_init, mod->init_text_size) | |
2909 | && !within(addr, mod->module_core, mod->core_text_size)) | |
2910 | mod = NULL; | |
2911 | } | |
2912 | return mod; | |
2913 | } | |
c6b37801 | 2914 | EXPORT_SYMBOL_GPL(__module_text_address); |
e610499e | 2915 | |
1da177e4 LT |
2916 | /* Don't grab lock, we're oopsing. */ |
2917 | void print_modules(void) | |
2918 | { | |
2919 | struct module *mod; | |
2bc2d61a | 2920 | char buf[8]; |
1da177e4 | 2921 | |
b231125a | 2922 | printk(KERN_DEFAULT "Modules linked in:"); |
d72b3751 AK |
2923 | /* Most callers should already have preempt disabled, but make sure */ |
2924 | preempt_disable(); | |
2925 | list_for_each_entry_rcu(mod, &modules, list) | |
21aa9280 | 2926 | printk(" %s%s", mod->name, module_flags(mod, buf)); |
d72b3751 | 2927 | preempt_enable(); |
e14af7ee AV |
2928 | if (last_unloaded_module[0]) |
2929 | printk(" [last unloaded: %s]", last_unloaded_module); | |
1da177e4 LT |
2930 | printk("\n"); |
2931 | } | |
2932 | ||
1da177e4 | 2933 | #ifdef CONFIG_MODVERSIONS |
8c8ef42a RR |
2934 | /* Generate the signature for all relevant module structures here. |
2935 | * If these change, we don't want to try to parse the module. */ | |
2936 | void module_layout(struct module *mod, | |
2937 | struct modversion_info *ver, | |
2938 | struct kernel_param *kp, | |
2939 | struct kernel_symbol *ks, | |
2940 | struct marker *marker, | |
2941 | struct tracepoint *tp) | |
2942 | { | |
2943 | } | |
2944 | EXPORT_SYMBOL(module_layout); | |
1da177e4 | 2945 | #endif |
8256e47c MD |
2946 | |
2947 | #ifdef CONFIG_MARKERS | |
fb40bd78 | 2948 | void module_update_markers(void) |
8256e47c MD |
2949 | { |
2950 | struct module *mod; | |
2951 | ||
2952 | mutex_lock(&module_mutex); | |
2953 | list_for_each_entry(mod, &modules, list) | |
2954 | if (!mod->taints) | |
2955 | marker_update_probe_range(mod->markers, | |
fb40bd78 | 2956 | mod->markers + mod->num_markers); |
8256e47c MD |
2957 | mutex_unlock(&module_mutex); |
2958 | } | |
2959 | #endif | |
97e1c18e MD |
2960 | |
2961 | #ifdef CONFIG_TRACEPOINTS | |
2962 | void module_update_tracepoints(void) | |
2963 | { | |
2964 | struct module *mod; | |
2965 | ||
2966 | mutex_lock(&module_mutex); | |
2967 | list_for_each_entry(mod, &modules, list) | |
2968 | if (!mod->taints) | |
2969 | tracepoint_update_probe_range(mod->tracepoints, | |
2970 | mod->tracepoints + mod->num_tracepoints); | |
2971 | mutex_unlock(&module_mutex); | |
2972 | } | |
2973 | ||
2974 | /* | |
2975 | * Returns 0 if current not found. | |
2976 | * Returns 1 if current found. | |
2977 | */ | |
2978 | int module_get_iter_tracepoints(struct tracepoint_iter *iter) | |
2979 | { | |
2980 | struct module *iter_mod; | |
2981 | int found = 0; | |
2982 | ||
2983 | mutex_lock(&module_mutex); | |
2984 | list_for_each_entry(iter_mod, &modules, list) { | |
2985 | if (!iter_mod->taints) { | |
2986 | /* | |
2987 | * Sorted module list | |
2988 | */ | |
2989 | if (iter_mod < iter->module) | |
2990 | continue; | |
2991 | else if (iter_mod > iter->module) | |
2992 | iter->tracepoint = NULL; | |
2993 | found = tracepoint_get_iter_range(&iter->tracepoint, | |
2994 | iter_mod->tracepoints, | |
2995 | iter_mod->tracepoints | |
2996 | + iter_mod->num_tracepoints); | |
2997 | if (found) { | |
2998 | iter->module = iter_mod; | |
2999 | break; | |
3000 | } | |
3001 | } | |
3002 | } | |
3003 | mutex_unlock(&module_mutex); | |
3004 | return found; | |
3005 | } | |
3006 | #endif |