patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / kernel / module.c
1 /* Rewritten by Rusty Russell, on the backs of many others...
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 */
19 #include <linux/config.h>
20 #include <linux/module.h>
21 #include <linux/moduleloader.h>
22 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/vmalloc.h>
25 #include <linux/elf.h>
26 #include <linux/seq_file.h>
27 #include <linux/syscalls.h>
28 #include <linux/fcntl.h>
29 #include <linux/rcupdate.h>
30 #include <linux/cpu.h>
31 #include <linux/moduleparam.h>
32 #include <linux/errno.h>
33 #include <linux/err.h>
34 #include <linux/vermagic.h>
35 #include <linux/notifier.h>
36 #include <linux/stop_machine.h>
37 #include <asm/uaccess.h>
38 #include <asm/semaphore.h>
39 #include <asm/pgalloc.h>
40 #include <asm/cacheflush.h>
41
42 #if 0
43 #define DEBUGP printk
44 #else
45 #define DEBUGP(fmt , a...)
46 #endif
47
48 #ifndef ARCH_SHF_SMALL
49 #define ARCH_SHF_SMALL 0
50 #endif
51
52 /* If this is set, the section belongs in the init part of the module */
53 #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
54
55 #define symbol_is(literal, string)                              \
56         (strcmp(MODULE_SYMBOL_PREFIX literal, (string)) == 0)
57
58 /* Protects module list */
59 static spinlock_t modlist_lock = SPIN_LOCK_UNLOCKED;
60
61 /* List of modules, protected by module_mutex AND modlist_lock */
62 static DECLARE_MUTEX(module_mutex);
63 static LIST_HEAD(modules);
64
65 static DECLARE_MUTEX(notify_mutex);
66 static struct notifier_block * module_notify_list;
67
68 int register_module_notifier(struct notifier_block * nb)
69 {
70         int err;
71         down(&notify_mutex);
72         err = notifier_chain_register(&module_notify_list, nb);
73         up(&notify_mutex);
74         return err;
75 }
76 EXPORT_SYMBOL(register_module_notifier);
77
78 int unregister_module_notifier(struct notifier_block * nb)
79 {
80         int err;
81         down(&notify_mutex);
82         err = notifier_chain_unregister(&module_notify_list, nb);
83         up(&notify_mutex);
84         return err;
85 }
86 EXPORT_SYMBOL(unregister_module_notifier);
87
88 /* We require a truly strong try_module_get() */
89 static inline int strong_try_module_get(struct module *mod)
90 {
91         if (mod && mod->state == MODULE_STATE_COMING)
92                 return 0;
93         return try_module_get(mod);
94 }
95
96 /* Stub function for modules which don't have an initfn */
97 int init_module(void)
98 {
99         return 0;
100 }
101 EXPORT_SYMBOL(init_module);
102
103 /* A thread that wants to hold a reference to a module only while it
104  * is running can call ths to safely exit.
105  * nfsd and lockd use this.
106  */
107 void __module_put_and_exit(struct module *mod, long code)
108 {
109         module_put(mod);
110         do_exit(code);
111 }
112 EXPORT_SYMBOL(__module_put_and_exit);
113         
114 /* Find a module section: 0 means not found. */
115 static unsigned int find_sec(Elf_Ehdr *hdr,
116                              Elf_Shdr *sechdrs,
117                              const char *secstrings,
118                              const char *name)
119 {
120         unsigned int i;
121
122         for (i = 1; i < hdr->e_shnum; i++)
123                 /* Alloc bit cleared means "ignore it." */
124                 if ((sechdrs[i].sh_flags & SHF_ALLOC)
125                     && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
126                         return i;
127         return 0;
128 }
129
130 /* Provided by the linker */
131 extern const struct kernel_symbol __start___ksymtab[];
132 extern const struct kernel_symbol __stop___ksymtab[];
133 extern const struct kernel_symbol __start___ksymtab_gpl[];
134 extern const struct kernel_symbol __stop___ksymtab_gpl[];
135 extern const unsigned long __start___kcrctab[];
136 extern const unsigned long __start___kcrctab_gpl[];
137
138 #ifndef CONFIG_MODVERSIONS
139 #define symversion(base, idx) NULL
140 #else
141 #define symversion(base, idx) ((base) ? ((base) + (idx)) : NULL)
142 #endif
143
144 /* Find a symbol, return value, crc and module which owns it */
145 static unsigned long __find_symbol(const char *name,
146                                    struct module **owner,
147                                    const unsigned long **crc,
148                                    int gplok)
149 {
150         struct module *mod;
151         unsigned int i;
152
153         /* Core kernel first. */ 
154         *owner = NULL;
155         for (i = 0; __start___ksymtab+i < __stop___ksymtab; i++) {
156                 if (strcmp(__start___ksymtab[i].name, name) == 0) {
157                         *crc = symversion(__start___kcrctab, i);
158                         return __start___ksymtab[i].value;
159                 }
160         }
161         if (gplok) {
162                 for (i = 0; __start___ksymtab_gpl+i<__stop___ksymtab_gpl; i++)
163                         if (strcmp(__start___ksymtab_gpl[i].name, name) == 0) {
164                                 *crc = symversion(__start___kcrctab_gpl, i);
165                                 return __start___ksymtab_gpl[i].value;
166                         }
167         }
168
169         /* Now try modules. */ 
170         list_for_each_entry(mod, &modules, list) {
171                 *owner = mod;
172                 for (i = 0; i < mod->num_syms; i++)
173                         if (strcmp(mod->syms[i].name, name) == 0) {
174                                 *crc = symversion(mod->crcs, i);
175                                 return mod->syms[i].value;
176                         }
177
178                 if (gplok) {
179                         for (i = 0; i < mod->num_gpl_syms; i++) {
180                                 if (strcmp(mod->gpl_syms[i].name, name) == 0) {
181                                         *crc = symversion(mod->gpl_crcs, i);
182                                         return mod->gpl_syms[i].value;
183                                 }
184                         }
185                 }
186         }
187         DEBUGP("Failed to find symbol %s\n", name);
188         return 0;
189 }
190
191 /* Find a symbol in this elf symbol table */
192 static unsigned long find_local_symbol(Elf_Shdr *sechdrs,
193                                        unsigned int symindex,
194                                        const char *strtab,
195                                        const char *name)
196 {
197         unsigned int i;
198         Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
199
200         /* Search (defined) internal symbols first. */
201         for (i = 1; i < sechdrs[symindex].sh_size/sizeof(*sym); i++) {
202                 if (sym[i].st_shndx != SHN_UNDEF
203                     && strcmp(name, strtab + sym[i].st_name) == 0)
204                         return sym[i].st_value;
205         }
206         return 0;
207 }
208
209 /* Search for module by name: must hold module_mutex. */
210 static struct module *find_module(const char *name)
211 {
212         struct module *mod;
213
214         list_for_each_entry(mod, &modules, list) {
215                 if (strcmp(mod->name, name) == 0)
216                         return mod;
217         }
218         return NULL;
219 }
220
221 #ifdef CONFIG_SMP
222 /* Number of blocks used and allocated. */
223 static unsigned int pcpu_num_used, pcpu_num_allocated;
224 /* Size of each block.  -ve means used. */
225 static int *pcpu_size;
226
227 static int split_block(unsigned int i, unsigned short size)
228 {
229         /* Reallocation required? */
230         if (pcpu_num_used + 1 > pcpu_num_allocated) {
231                 int *new = kmalloc(sizeof(new[0]) * pcpu_num_allocated*2,
232                                    GFP_KERNEL);
233                 if (!new)
234                         return 0;
235
236                 memcpy(new, pcpu_size, sizeof(new[0])*pcpu_num_allocated);
237                 pcpu_num_allocated *= 2;
238                 kfree(pcpu_size);
239                 pcpu_size = new;
240         }
241
242         /* Insert a new subblock */
243         memmove(&pcpu_size[i+1], &pcpu_size[i],
244                 sizeof(pcpu_size[0]) * (pcpu_num_used - i));
245         pcpu_num_used++;
246
247         pcpu_size[i+1] -= size;
248         pcpu_size[i] = size;
249         return 1;
250 }
251
252 static inline unsigned int block_size(int val)
253 {
254         if (val < 0)
255                 return -val;
256         return val;
257 }
258
259 /* Created by linker magic */
260 extern char __per_cpu_start[], __per_cpu_end[];
261
262 static void *percpu_modalloc(unsigned long size, unsigned long align)
263 {
264         unsigned long extra;
265         unsigned int i;
266         void *ptr;
267
268         BUG_ON(align > SMP_CACHE_BYTES);
269
270         ptr = __per_cpu_start;
271         for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
272                 /* Extra for alignment requirement. */
273                 extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
274                 BUG_ON(i == 0 && extra != 0);
275
276                 if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
277                         continue;
278
279                 /* Transfer extra to previous block. */
280                 if (pcpu_size[i-1] < 0)
281                         pcpu_size[i-1] -= extra;
282                 else
283                         pcpu_size[i-1] += extra;
284                 pcpu_size[i] -= extra;
285                 ptr += extra;
286
287                 /* Split block if warranted */
288                 if (pcpu_size[i] - size > sizeof(unsigned long))
289                         if (!split_block(i, size))
290                                 return NULL;
291
292                 /* Mark allocated */
293                 pcpu_size[i] = -pcpu_size[i];
294                 return ptr;
295         }
296
297         printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
298                size);
299         return NULL;
300 }
301
302 static void percpu_modfree(void *freeme)
303 {
304         unsigned int i;
305         void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
306
307         /* First entry is core kernel percpu data. */
308         for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
309                 if (ptr == freeme) {
310                         pcpu_size[i] = -pcpu_size[i];
311                         goto free;
312                 }
313         }
314         BUG();
315
316  free:
317         /* Merge with previous? */
318         if (pcpu_size[i-1] >= 0) {
319                 pcpu_size[i-1] += pcpu_size[i];
320                 pcpu_num_used--;
321                 memmove(&pcpu_size[i], &pcpu_size[i+1],
322                         (pcpu_num_used - i) * sizeof(pcpu_size[0]));
323                 i--;
324         }
325         /* Merge with next? */
326         if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
327                 pcpu_size[i] += pcpu_size[i+1];
328                 pcpu_num_used--;
329                 memmove(&pcpu_size[i+1], &pcpu_size[i+2],
330                         (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
331         }
332 }
333
334 static unsigned int find_pcpusec(Elf_Ehdr *hdr,
335                                  Elf_Shdr *sechdrs,
336                                  const char *secstrings)
337 {
338         return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
339 }
340
341 static int percpu_modinit(void)
342 {
343         pcpu_num_used = 2;
344         pcpu_num_allocated = 2;
345         pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
346                             GFP_KERNEL);
347         /* Static in-kernel percpu data (used). */
348         pcpu_size[0] = -ALIGN(__per_cpu_end-__per_cpu_start, SMP_CACHE_BYTES);
349         /* Free room. */
350         pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
351         if (pcpu_size[1] < 0) {
352                 printk(KERN_ERR "No per-cpu room for modules.\n");
353                 pcpu_num_used = 1;
354         }
355
356         return 0;
357 }       
358 __initcall(percpu_modinit);
359 #else /* ... !CONFIG_SMP */
360 static inline void *percpu_modalloc(unsigned long size, unsigned long align)
361 {
362         return NULL;
363 }
364 static inline void percpu_modfree(void *pcpuptr)
365 {
366         BUG();
367 }
368 static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
369                                         Elf_Shdr *sechdrs,
370                                         const char *secstrings)
371 {
372         return 0;
373 }
374 static inline void percpu_modcopy(void *pcpudst, const void *src,
375                                   unsigned long size)
376 {
377         /* pcpusec should be 0, and size of that section should be 0. */
378         BUG_ON(size != 0);
379 }
380 #endif /* CONFIG_SMP */
381
382 static int add_attribute(struct module *mod, struct kernel_param *kp)
383 {
384         struct module_attribute *a;
385         int retval;
386
387         a = &mod->mkobj->attr[mod->mkobj->num_attributes];
388         a->attr.name = (char *)kp->name;
389         a->attr.owner = mod;
390         a->attr.mode = kp->perm;
391         a->param = kp;
392         retval = sysfs_create_file(&mod->mkobj->kobj, &a->attr);
393         if (!retval)
394                 mod->mkobj->num_attributes++;
395         return retval;
396 }
397
398 #ifdef CONFIG_MODULE_UNLOAD
399 /* Init the unload section of the module. */
400 static void module_unload_init(struct module *mod)
401 {
402         unsigned int i;
403
404         INIT_LIST_HEAD(&mod->modules_which_use_me);
405         for (i = 0; i < NR_CPUS; i++)
406                 local_set(&mod->ref[i].count, 0);
407         /* Hold reference count during initialization. */
408         local_set(&mod->ref[smp_processor_id()].count, 1);
409         /* Backwards compatibility macros put refcount during init. */
410         mod->waiter = current;
411 }
412
413 /* modules using other modules */
414 struct module_use
415 {
416         struct list_head list;
417         struct module *module_which_uses;
418 };
419
420 /* Does a already use b? */
421 static int already_uses(struct module *a, struct module *b)
422 {
423         struct module_use *use;
424
425         list_for_each_entry(use, &b->modules_which_use_me, list) {
426                 if (use->module_which_uses == a) {
427                         DEBUGP("%s uses %s!\n", a->name, b->name);
428                         return 1;
429                 }
430         }
431         DEBUGP("%s does not use %s!\n", a->name, b->name);
432         return 0;
433 }
434
435 /* Module a uses b */
436 static int use_module(struct module *a, struct module *b)
437 {
438         struct module_use *use;
439         if (b == NULL || already_uses(a, b)) return 1;
440
441         if (!strong_try_module_get(b))
442                 return 0;
443
444         DEBUGP("Allocating new usage for %s.\n", a->name);
445         use = kmalloc(sizeof(*use), GFP_ATOMIC);
446         if (!use) {
447                 printk("%s: out of memory loading\n", a->name);
448                 module_put(b);
449                 return 0;
450         }
451
452         use->module_which_uses = a;
453         list_add(&use->list, &b->modules_which_use_me);
454         return 1;
455 }
456
457 /* Clear the unload stuff of the module. */
458 static void module_unload_free(struct module *mod)
459 {
460         struct module *i;
461
462         list_for_each_entry(i, &modules, list) {
463                 struct module_use *use;
464
465                 list_for_each_entry(use, &i->modules_which_use_me, list) {
466                         if (use->module_which_uses == mod) {
467                                 DEBUGP("%s unusing %s\n", mod->name, i->name);
468                                 module_put(i);
469                                 list_del(&use->list);
470                                 kfree(use);
471                                 /* There can be at most one match. */
472                                 break;
473                         }
474                 }
475         }
476 }
477
478 #ifdef CONFIG_MODULE_FORCE_UNLOAD
479 static inline int try_force(unsigned int flags)
480 {
481         int ret = (flags & O_TRUNC);
482         if (ret)
483                 tainted |= TAINT_FORCED_MODULE;
484         return ret;
485 }
486 #else
487 static inline int try_force(unsigned int flags)
488 {
489         return 0;
490 }
491 #endif /* CONFIG_MODULE_FORCE_UNLOAD */
492
493 struct stopref
494 {
495         struct module *mod;
496         int flags;
497         int *forced;
498 };
499
500 /* Whole machine is stopped with interrupts off when this runs. */
501 static inline int __try_stop_module(void *_sref)
502 {
503         struct stopref *sref = _sref;
504
505         /* If it's not unused, quit unless we are told to block. */
506         if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
507                 if (!(*sref->forced = try_force(sref->flags)))
508                         return -EWOULDBLOCK;
509         }
510
511         /* Mark it as dying. */
512         sref->mod->state = MODULE_STATE_GOING;
513         return 0;
514 }
515
516 static int try_stop_module(struct module *mod, int flags, int *forced)
517 {
518         struct stopref sref = { mod, flags, forced };
519
520         return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
521 }
522
523 unsigned int module_refcount(struct module *mod)
524 {
525         unsigned int i, total = 0;
526
527         for (i = 0; i < NR_CPUS; i++)
528                 total += local_read(&mod->ref[i].count);
529         return total;
530 }
531 EXPORT_SYMBOL(module_refcount);
532
533 /* This exists whether we can unload or not */
534 static void free_module(struct module *mod);
535
536 /* Stub function for modules which don't have an exitfn */
537 void cleanup_module(void)
538 {
539 }
540 EXPORT_SYMBOL(cleanup_module);
541
542 static void wait_for_zero_refcount(struct module *mod)
543 {
544         /* Since we might sleep for some time, drop the semaphore first */
545         up(&module_mutex);
546         for (;;) {
547                 DEBUGP("Looking at refcount...\n");
548                 set_current_state(TASK_UNINTERRUPTIBLE);
549                 if (module_refcount(mod) == 0)
550                         break;
551                 schedule();
552         }
553         current->state = TASK_RUNNING;
554         down(&module_mutex);
555 }
556
557 asmlinkage long
558 sys_delete_module(const char __user *name_user, unsigned int flags)
559 {
560         struct module *mod;
561         char name[MODULE_NAME_LEN];
562         int ret, forced = 0;
563
564         if (!capable(CAP_SYS_MODULE))
565                 return -EPERM;
566
567         if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
568                 return -EFAULT;
569         name[MODULE_NAME_LEN-1] = '\0';
570
571         if (down_interruptible(&module_mutex) != 0)
572                 return -EINTR;
573
574         mod = find_module(name);
575         if (!mod) {
576                 ret = -ENOENT;
577                 goto out;
578         }
579
580         if (!list_empty(&mod->modules_which_use_me)) {
581                 /* Other modules depend on us: get rid of them first. */
582                 ret = -EWOULDBLOCK;
583                 goto out;
584         }
585
586         /* Doing init or already dying? */
587         if (mod->state != MODULE_STATE_LIVE) {
588                 /* FIXME: if (force), slam module count and wake up
589                    waiter --RR */
590                 DEBUGP("%s already dying\n", mod->name);
591                 ret = -EBUSY;
592                 goto out;
593         }
594
595         /* If it has an init func, it must have an exit func to unload */
596         if ((mod->init != init_module && mod->exit == cleanup_module)
597             || mod->unsafe) {
598                 forced = try_force(flags);
599                 if (!forced) {
600                         /* This module can't be removed */
601                         ret = -EBUSY;
602                         goto out;
603                 }
604         }
605
606         /* Set this up before setting mod->state */
607         mod->waiter = current;
608
609         /* Stop the machine so refcounts can't move and disable module. */
610         ret = try_stop_module(mod, flags, &forced);
611
612         /* Never wait if forced. */
613         if (!forced && module_refcount(mod) != 0)
614                 wait_for_zero_refcount(mod);
615
616         /* Final destruction now noone is using it. */
617         up(&module_mutex);
618         mod->exit();
619         down(&module_mutex);
620         free_module(mod);
621
622  out:
623         up(&module_mutex);
624         return ret;
625 }
626
627 static void print_unload_info(struct seq_file *m, struct module *mod)
628 {
629         struct module_use *use;
630         int printed_something = 0;
631
632         seq_printf(m, " %u ", module_refcount(mod));
633
634         /* Always include a trailing , so userspace can differentiate
635            between this and the old multi-field proc format. */
636         list_for_each_entry(use, &mod->modules_which_use_me, list) {
637                 printed_something = 1;
638                 seq_printf(m, "%s,", use->module_which_uses->name);
639         }
640
641         if (mod->unsafe) {
642                 printed_something = 1;
643                 seq_printf(m, "[unsafe],");
644         }
645
646         if (mod->init != init_module && mod->exit == cleanup_module) {
647                 printed_something = 1;
648                 seq_printf(m, "[permanent],");
649         }
650
651         if (!printed_something)
652                 seq_printf(m, "-");
653 }
654
655 void __symbol_put(const char *symbol)
656 {
657         struct module *owner;
658         unsigned long flags;
659         const unsigned long *crc;
660
661         spin_lock_irqsave(&modlist_lock, flags);
662         if (!__find_symbol(symbol, &owner, &crc, 1))
663                 BUG();
664         module_put(owner);
665         spin_unlock_irqrestore(&modlist_lock, flags);
666 }
667 EXPORT_SYMBOL(__symbol_put);
668
669 void symbol_put_addr(void *addr)
670 {
671         unsigned long flags;
672
673         spin_lock_irqsave(&modlist_lock, flags);
674         if (!kernel_text_address((unsigned long)addr))
675                 BUG();
676
677         module_put(module_text_address((unsigned long)addr));
678         spin_unlock_irqrestore(&modlist_lock, flags);
679 }
680 EXPORT_SYMBOL_GPL(symbol_put_addr);
681
682 static int refcnt_get_fn(char *buffer, struct kernel_param *kp)
683 {
684         struct module *mod = container_of(kp, struct module, refcnt_param);
685
686         /* sysfs holds one reference. */
687         return sprintf(buffer, "%u", module_refcount(mod)-1);
688 }
689
690 static inline int sysfs_unload_setup(struct module *mod)
691 {
692         mod->refcnt_param.name = "refcnt";
693         mod->refcnt_param.perm = 0444;
694         mod->refcnt_param.get = refcnt_get_fn;
695
696         return add_attribute(mod, &mod->refcnt_param);
697 }
698
699 #else /* !CONFIG_MODULE_UNLOAD */
700 static void print_unload_info(struct seq_file *m, struct module *mod)
701 {
702         /* We don't know the usage count, or what modules are using. */
703         seq_printf(m, " - -");
704 }
705
706 static inline void module_unload_free(struct module *mod)
707 {
708 }
709
710 static inline int use_module(struct module *a, struct module *b)
711 {
712         return strong_try_module_get(b);
713 }
714
715 static inline void module_unload_init(struct module *mod)
716 {
717 }
718
719 asmlinkage long
720 sys_delete_module(const char *name_user, unsigned int flags)
721 {
722         return -ENOSYS;
723 }
724
725 static inline int sysfs_unload_setup(struct module *mod)
726 {
727         return 0;
728 }
729 #endif /* CONFIG_MODULE_UNLOAD */
730
731 #ifdef CONFIG_OBSOLETE_MODPARM
732 static int param_set_byte(const char *val, struct kernel_param *kp)  
733 {
734         char *endp;
735         long l;
736
737         if (!val) return -EINVAL;
738         l = simple_strtol(val, &endp, 0);
739         if (endp == val || *endp || ((char)l != l))
740                 return -EINVAL;
741         *((char *)kp->arg) = l;
742         return 0;
743 }
744
745 /* Bounds checking done below */
746 static int obsparm_copy_string(const char *val, struct kernel_param *kp)
747 {
748         strcpy(kp->arg, val);
749         return 0;
750 }
751
752 int set_obsolete(const char *val, struct kernel_param *kp)
753 {
754         unsigned int min, max;
755         unsigned int size, maxsize;
756         int dummy;
757         char *endp;
758         const char *p;
759         struct obsolete_modparm *obsparm = kp->arg;
760
761         if (!val) {
762                 printk(KERN_ERR "Parameter %s needs an argument\n", kp->name);
763                 return -EINVAL;
764         }
765
766         /* type is: [min[-max]]{b,h,i,l,s} */
767         p = obsparm->type;
768         min = simple_strtol(p, &endp, 10);
769         if (endp == obsparm->type)
770                 min = max = 1;
771         else if (*endp == '-') {
772                 p = endp+1;
773                 max = simple_strtol(p, &endp, 10);
774         } else
775                 max = min;
776         switch (*endp) {
777         case 'b':
778                 return param_array(kp->name, val, min, max, obsparm->addr,
779                                    1, param_set_byte, &dummy);
780         case 'h':
781                 return param_array(kp->name, val, min, max, obsparm->addr,
782                                    sizeof(short), param_set_short, &dummy);
783         case 'i':
784                 return param_array(kp->name, val, min, max, obsparm->addr,
785                                    sizeof(int), param_set_int, &dummy);
786         case 'l':
787                 return param_array(kp->name, val, min, max, obsparm->addr,
788                                    sizeof(long), param_set_long, &dummy);
789         case 's':
790                 return param_array(kp->name, val, min, max, obsparm->addr,
791                                    sizeof(char *), param_set_charp, &dummy);
792
793         case 'c':
794                 /* Undocumented: 1-5c50 means 1-5 strings of up to 49 chars,
795                    and the decl is "char xxx[5][50];" */
796                 p = endp+1;
797                 maxsize = simple_strtol(p, &endp, 10);
798                 /* We check lengths here (yes, this is a hack). */
799                 p = val;
800                 while (p[size = strcspn(p, ",")]) {
801                         if (size >= maxsize) 
802                                 goto oversize;
803                         p += size+1;
804                 }
805                 if (size >= maxsize) 
806                         goto oversize;
807                 return param_array(kp->name, val, min, max, obsparm->addr,
808                                    maxsize, obsparm_copy_string, &dummy);
809         }
810         printk(KERN_ERR "Unknown obsolete parameter type %s\n", obsparm->type);
811         return -EINVAL;
812  oversize:
813         printk(KERN_ERR
814                "Parameter %s doesn't fit in %u chars.\n", kp->name, maxsize);
815         return -EINVAL;
816 }
817
818 static int obsolete_params(const char *name,
819                            char *args,
820                            struct obsolete_modparm obsparm[],
821                            unsigned int num,
822                            Elf_Shdr *sechdrs,
823                            unsigned int symindex,
824                            const char *strtab)
825 {
826         struct kernel_param *kp;
827         unsigned int i;
828         int ret;
829
830         kp = kmalloc(sizeof(kp[0]) * num, GFP_KERNEL);
831         if (!kp)
832                 return -ENOMEM;
833
834         for (i = 0; i < num; i++) {
835                 char sym_name[128 + sizeof(MODULE_SYMBOL_PREFIX)];
836
837                 snprintf(sym_name, sizeof(sym_name), "%s%s",
838                          MODULE_SYMBOL_PREFIX, obsparm[i].name);
839
840                 kp[i].name = obsparm[i].name;
841                 kp[i].perm = 000;
842                 kp[i].set = set_obsolete;
843                 kp[i].get = NULL;
844                 obsparm[i].addr
845                         = (void *)find_local_symbol(sechdrs, symindex, strtab,
846                                                     sym_name);
847                 if (!obsparm[i].addr) {
848                         printk("%s: falsely claims to have parameter %s\n",
849                                name, obsparm[i].name);
850                         ret = -EINVAL;
851                         goto out;
852                 }
853                 kp[i].arg = &obsparm[i];
854         }
855
856         ret = parse_args(name, args, kp, num, NULL);
857  out:
858         kfree(kp);
859         return ret;
860 }
861 #else
862 static int obsolete_params(const char *name,
863                            char *args,
864                            struct obsolete_modparm obsparm[],
865                            unsigned int num,
866                            Elf_Shdr *sechdrs,
867                            unsigned int symindex,
868                            const char *strtab)
869 {
870         if (num != 0)
871                 printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
872                        name);
873         return 0;
874 }
875 #endif /* CONFIG_OBSOLETE_MODPARM */
876
877 static const char vermagic[] = VERMAGIC_STRING;
878
879 #ifdef CONFIG_MODVERSIONS
880 static int check_version(Elf_Shdr *sechdrs,
881                          unsigned int versindex,
882                          const char *symname,
883                          struct module *mod, 
884                          const unsigned long *crc)
885 {
886         unsigned int i, num_versions;
887         struct modversion_info *versions;
888
889         /* Exporting module didn't supply crcs?  OK, we're already tainted. */
890         if (!crc)
891                 return 1;
892
893         versions = (void *) sechdrs[versindex].sh_addr;
894         num_versions = sechdrs[versindex].sh_size
895                 / sizeof(struct modversion_info);
896
897         for (i = 0; i < num_versions; i++) {
898                 if (strcmp(versions[i].name, symname) != 0)
899                         continue;
900
901                 if (versions[i].crc == *crc)
902                         return 1;
903                 printk("%s: disagrees about version of symbol %s\n",
904                        mod->name, symname);
905                 DEBUGP("Found checksum %lX vs module %lX\n",
906                        *crc, versions[i].crc);
907                 return 0;
908         }
909         /* Not in module's version table.  OK, but that taints the kernel. */
910         if (!(tainted & TAINT_FORCED_MODULE)) {
911                 printk("%s: no version for \"%s\" found: kernel tainted.\n",
912                        mod->name, symname);
913                 tainted |= TAINT_FORCED_MODULE;
914         }
915         return 1;
916 }
917
918 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
919                                           unsigned int versindex,
920                                           struct module *mod)
921 {
922         const unsigned long *crc;
923         struct module *owner;
924
925         if (!__find_symbol("struct_module", &owner, &crc, 1))
926                 BUG();
927         return check_version(sechdrs, versindex, "struct_module", mod,
928                              crc);
929 }
930
931 /* First part is kernel version, which we ignore. */
932 static inline int same_magic(const char *amagic, const char *bmagic)
933 {
934         amagic += strcspn(amagic, " ");
935         bmagic += strcspn(bmagic, " ");
936         return strcmp(amagic, bmagic) == 0;
937 }
938 #else
939 static inline int check_version(Elf_Shdr *sechdrs,
940                                 unsigned int versindex,
941                                 const char *symname,
942                                 struct module *mod, 
943                                 const unsigned long *crc)
944 {
945         return 1;
946 }
947
948 static inline int check_modstruct_version(Elf_Shdr *sechdrs,
949                                           unsigned int versindex,
950                                           struct module *mod)
951 {
952         return 1;
953 }
954
955 static inline int same_magic(const char *amagic, const char *bmagic)
956 {
957         return strcmp(amagic, bmagic) == 0;
958 }
959 #endif /* CONFIG_MODVERSIONS */
960
961 /* Resolve a symbol for this module.  I.e. if we find one, record usage.
962    Must be holding module_mutex. */
963 static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
964                                     unsigned int versindex,
965                                     const char *name,
966                                     struct module *mod)
967 {
968         struct module *owner;
969         unsigned long ret;
970         const unsigned long *crc;
971
972         spin_lock_irq(&modlist_lock);
973         ret = __find_symbol(name, &owner, &crc, mod->license_gplok);
974         if (ret) {
975                 /* use_module can fail due to OOM, or module unloading */
976                 if (!check_version(sechdrs, versindex, name, mod, crc) ||
977                     !use_module(mod, owner))
978                         ret = 0;
979         }
980         spin_unlock_irq(&modlist_lock);
981         return ret;
982 }
983
984 #define to_module_attr(n) container_of(n, struct module_attribute, attr);
985
986 static ssize_t module_attr_show(struct kobject *kobj,
987                                 struct attribute *attr,
988                                 char *buf)
989 {
990         int count;
991         struct module_attribute *attribute = to_module_attr(attr);
992
993         if (!attribute->param->get)
994                 return -EPERM;
995
996         count = attribute->param->get(buf, attribute->param);
997         if (count > 0) {
998                 strcat(buf, "\n");
999                 ++count;
1000         }
1001         return count;
1002 }
1003
1004 /* sysfs always hands a nul-terminated string in buf.  We rely on that. */
1005 static ssize_t module_attr_store(struct kobject *kobj,
1006                                  struct attribute *attr,
1007                                  const char *buf, size_t len)
1008 {
1009         int err;
1010         struct module_attribute *attribute = to_module_attr(attr);
1011
1012         if (!attribute->param->set)
1013                 return -EPERM;
1014
1015         err = attribute->param->set(buf, attribute->param);
1016         if (!err)
1017                 return len;
1018         return err;
1019 }
1020
1021 static struct sysfs_ops module_sysfs_ops = {
1022         .show = module_attr_show,
1023         .store = module_attr_store,
1024 };
1025
1026 static void module_kobj_release(struct kobject *kobj)
1027 {
1028         kfree(container_of(kobj, struct module_kobject, kobj));
1029 }
1030
1031 static struct kobj_type module_ktype = {
1032         .sysfs_ops =    &module_sysfs_ops,
1033         .release =      &module_kobj_release,
1034 };
1035 static decl_subsys(module, &module_ktype, NULL);
1036
1037 static int mod_sysfs_setup(struct module *mod,
1038                            struct kernel_param *kparam,
1039                            unsigned int num_params)
1040 {
1041         unsigned int i;
1042         int err;
1043
1044         /* We overallocate: not every param is in sysfs, and maybe no refcnt */
1045         mod->mkobj = kmalloc(sizeof(*mod->mkobj)
1046                              + sizeof(mod->mkobj->attr[0]) * (num_params+1),
1047                              GFP_KERNEL);
1048         if (!mod->mkobj)
1049                 return -ENOMEM;
1050
1051         memset(&mod->mkobj->kobj, 0, sizeof(mod->mkobj->kobj));
1052         err = kobject_set_name(&mod->mkobj->kobj, mod->name);
1053         if (err)
1054                 goto out;
1055         kobj_set_kset_s(mod->mkobj, module_subsys);
1056         err = kobject_register(&mod->mkobj->kobj);
1057         if (err)
1058                 goto out;
1059
1060         mod->mkobj->num_attributes = 0;
1061
1062         for (i = 0; i < num_params; i++) {
1063                 if (kparam[i].perm) {
1064                         err = add_attribute(mod, &kparam[i]);
1065                         if (err)
1066                                 goto out_unreg;
1067                 }
1068         }
1069         err = sysfs_unload_setup(mod);
1070         if (err)
1071                 goto out_unreg;
1072         return 0;
1073
1074 out_unreg:
1075         for (i = 0; i < mod->mkobj->num_attributes; i++)
1076                 sysfs_remove_file(&mod->mkobj->kobj,&mod->mkobj->attr[i].attr);
1077         /* Calls module_kobj_release */
1078         kobject_unregister(&mod->mkobj->kobj);
1079         return err;
1080 out:
1081         kfree(mod->mkobj);
1082         return err;
1083 }
1084
1085 static void mod_kobject_remove(struct module *mod)
1086 {
1087         unsigned int i;
1088         for (i = 0; i < mod->mkobj->num_attributes; i++)
1089                 sysfs_remove_file(&mod->mkobj->kobj,&mod->mkobj->attr[i].attr);
1090         /* Calls module_kobj_release */
1091         kobject_unregister(&mod->mkobj->kobj);
1092 }
1093
1094 /* Free a module, remove from lists, etc (must hold module mutex). */
1095 static void free_module(struct module *mod)
1096 {
1097         /* Delete from various lists */
1098         spin_lock_irq(&modlist_lock);
1099         list_del(&mod->list);
1100         spin_unlock_irq(&modlist_lock);
1101
1102         mod_kobject_remove(mod);
1103
1104         /* Arch-specific cleanup. */
1105         module_arch_cleanup(mod);
1106
1107         /* Module unload stuff */
1108         module_unload_free(mod);
1109
1110         /* This may be NULL, but that's OK */
1111         module_free(mod, mod->module_init);
1112         kfree(mod->args);
1113         if (mod->percpu)
1114                 percpu_modfree(mod->percpu);
1115
1116         /* Finally, free the core (containing the module structure) */
1117         module_free(mod, mod->module_core);
1118 }
1119
1120 void *__symbol_get(const char *symbol)
1121 {
1122         struct module *owner;
1123         unsigned long value, flags;
1124         const unsigned long *crc;
1125
1126         spin_lock_irqsave(&modlist_lock, flags);
1127         value = __find_symbol(symbol, &owner, &crc, 1);
1128         if (value && !strong_try_module_get(owner))
1129                 value = 0;
1130         spin_unlock_irqrestore(&modlist_lock, flags);
1131
1132         return (void *)value;
1133 }
1134 EXPORT_SYMBOL_GPL(__symbol_get);
1135
1136 /* Change all symbols so that sh_value encodes the pointer directly. */
1137 static int simplify_symbols(Elf_Shdr *sechdrs,
1138                             unsigned int symindex,
1139                             const char *strtab,
1140                             unsigned int versindex,
1141                             unsigned int pcpuindex,
1142                             struct module *mod)
1143 {
1144         Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
1145         unsigned long secbase;
1146         unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1147         int ret = 0;
1148
1149         for (i = 1; i < n; i++) {
1150                 switch (sym[i].st_shndx) {
1151                 case SHN_COMMON:
1152                         /* We compiled with -fno-common.  These are not
1153                            supposed to happen.  */
1154                         DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
1155                         printk("%s: please compile with -fno-common\n",
1156                                mod->name);
1157                         ret = -ENOEXEC;
1158                         break;
1159
1160                 case SHN_ABS:
1161                         /* Don't need to do anything */
1162                         DEBUGP("Absolute symbol: 0x%08lx\n",
1163                                (long)sym[i].st_value);
1164                         break;
1165
1166                 case SHN_UNDEF:
1167                         sym[i].st_value
1168                           = resolve_symbol(sechdrs, versindex,
1169                                            strtab + sym[i].st_name, mod);
1170
1171                         /* Ok if resolved.  */
1172                         if (sym[i].st_value != 0)
1173                                 break;
1174                         /* Ok if weak.  */
1175                         if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
1176                                 break;
1177
1178                         printk(KERN_WARNING "%s: Unknown symbol %s\n",
1179                                mod->name, strtab + sym[i].st_name);
1180                         ret = -ENOENT;
1181                         break;
1182
1183                 default:
1184                         /* Divert to percpu allocation if a percpu var. */
1185                         if (sym[i].st_shndx == pcpuindex)
1186                                 secbase = (unsigned long)mod->percpu;
1187                         else
1188                                 secbase = sechdrs[sym[i].st_shndx].sh_addr;
1189                         sym[i].st_value += secbase;
1190                         break;
1191                 }
1192         }
1193
1194         return ret;
1195 }
1196
1197 /* Update size with this section: return offset. */
1198 static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
1199 {
1200         long ret;
1201
1202         ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
1203         *size = ret + sechdr->sh_size;
1204         return ret;
1205 }
1206
1207 /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
1208    might -- code, read-only data, read-write data, small data.  Tally
1209    sizes, and place the offsets into sh_entsize fields: high bit means it
1210    belongs in init. */
1211 static void layout_sections(struct module *mod,
1212                             const Elf_Ehdr *hdr,
1213                             Elf_Shdr *sechdrs,
1214                             const char *secstrings)
1215 {
1216         static unsigned long const masks[][2] = {
1217                 /* NOTE: all executable code must be the first section
1218                  * in this array; otherwise modify the text_size
1219                  * finder in the two loops below */
1220                 { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
1221                 { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
1222                 { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
1223                 { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
1224         };
1225         unsigned int m, i;
1226
1227         for (i = 0; i < hdr->e_shnum; i++)
1228                 sechdrs[i].sh_entsize = ~0UL;
1229
1230         DEBUGP("Core section allocation order:\n");
1231         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1232                 for (i = 0; i < hdr->e_shnum; ++i) {
1233                         Elf_Shdr *s = &sechdrs[i];
1234
1235                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
1236                             || (s->sh_flags & masks[m][1])
1237                             || s->sh_entsize != ~0UL
1238                             || strncmp(secstrings + s->sh_name,
1239                                        ".init", 5) == 0)
1240                                 continue;
1241                         s->sh_entsize = get_offset(&mod->core_size, s);
1242                         DEBUGP("\t%s\n", secstrings + s->sh_name);
1243                 }
1244                 if (m == 0)
1245                         mod->core_text_size = mod->core_size;
1246         }
1247
1248         DEBUGP("Init section allocation order:\n");
1249         for (m = 0; m < ARRAY_SIZE(masks); ++m) {
1250                 for (i = 0; i < hdr->e_shnum; ++i) {
1251                         Elf_Shdr *s = &sechdrs[i];
1252
1253                         if ((s->sh_flags & masks[m][0]) != masks[m][0]
1254                             || (s->sh_flags & masks[m][1])
1255                             || s->sh_entsize != ~0UL
1256                             || strncmp(secstrings + s->sh_name,
1257                                        ".init", 5) != 0)
1258                                 continue;
1259                         s->sh_entsize = (get_offset(&mod->init_size, s)
1260                                          | INIT_OFFSET_MASK);
1261                         DEBUGP("\t%s\n", secstrings + s->sh_name);
1262                 }
1263                 if (m == 0)
1264                         mod->init_text_size = mod->init_size;
1265         }
1266 }
1267
1268 static inline int license_is_gpl_compatible(const char *license)
1269 {
1270         return (strcmp(license, "GPL") == 0
1271                 || strcmp(license, "GPL v2") == 0
1272                 || strcmp(license, "GPL and additional rights") == 0
1273                 || strcmp(license, "Dual BSD/GPL") == 0
1274                 || strcmp(license, "Dual MPL/GPL") == 0);
1275 }
1276
1277 static void set_license(struct module *mod, const char *license)
1278 {
1279         if (!license)
1280                 license = "unspecified";
1281
1282         mod->license_gplok = license_is_gpl_compatible(license);
1283         if (!mod->license_gplok && !(tainted & TAINT_PROPRIETARY_MODULE)) {
1284                 printk(KERN_WARNING "%s: module license '%s' taints kernel.\n",
1285                        mod->name, license);
1286                 tainted |= TAINT_PROPRIETARY_MODULE;
1287         }
1288 }
1289
1290 /* Parse tag=value strings from .modinfo section */
1291 static char *next_string(char *string, unsigned long *secsize)
1292 {
1293         /* Skip non-zero chars */
1294         while (string[0]) {
1295                 string++;
1296                 if ((*secsize)-- <= 1)
1297                         return NULL;
1298         }
1299
1300         /* Skip any zero padding. */
1301         while (!string[0]) {
1302                 string++;
1303                 if ((*secsize)-- <= 1)
1304                         return NULL;
1305         }
1306         return string;
1307 }
1308
1309 static char *get_modinfo(Elf_Shdr *sechdrs,
1310                          unsigned int info,
1311                          const char *tag)
1312 {
1313         char *p;
1314         unsigned int taglen = strlen(tag);
1315         unsigned long size = sechdrs[info].sh_size;
1316
1317         for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
1318                 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
1319                         return p + taglen + 1;
1320         }
1321         return NULL;
1322 }
1323
1324 #ifdef CONFIG_KALLSYMS
1325 int is_exported(const char *name, const struct module *mod)
1326 {
1327         unsigned int i;
1328
1329         if (!mod) {
1330                 for (i = 0; __start___ksymtab+i < __stop___ksymtab; i++)
1331                         if (strcmp(__start___ksymtab[i].name, name) == 0)
1332                                 return 1;
1333                 return 0;
1334         }
1335         for (i = 0; i < mod->num_syms; i++)
1336                 if (strcmp(mod->syms[i].name, name) == 0)
1337                         return 1;
1338         return 0;
1339 }
1340
1341 /* As per nm */
1342 static char elf_type(const Elf_Sym *sym,
1343                      Elf_Shdr *sechdrs,
1344                      const char *secstrings,
1345                      struct module *mod)
1346 {
1347         if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
1348                 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
1349                         return 'v';
1350                 else
1351                         return 'w';
1352         }
1353         if (sym->st_shndx == SHN_UNDEF)
1354                 return 'U';
1355         if (sym->st_shndx == SHN_ABS)
1356                 return 'a';
1357         if (sym->st_shndx >= SHN_LORESERVE)
1358                 return '?';
1359         if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
1360                 return 't';
1361         if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
1362             && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
1363                 if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
1364                         return 'r';
1365                 else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1366                         return 'g';
1367                 else
1368                         return 'd';
1369         }
1370         if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
1371                 if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
1372                         return 's';
1373                 else
1374                         return 'b';
1375         }
1376         if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
1377                     ".debug", strlen(".debug")) == 0)
1378                 return 'n';
1379         return '?';
1380 }
1381
1382 static void add_kallsyms(struct module *mod,
1383                          Elf_Shdr *sechdrs,
1384                          unsigned int symindex,
1385                          unsigned int strindex,
1386                          const char *secstrings)
1387 {
1388         unsigned int i;
1389
1390         mod->symtab = (void *)sechdrs[symindex].sh_addr;
1391         mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
1392         mod->strtab = (void *)sechdrs[strindex].sh_addr;
1393
1394         /* Set types up while we still have access to sections. */
1395         for (i = 0; i < mod->num_symtab; i++)
1396                 mod->symtab[i].st_info
1397                         = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
1398 }
1399 #else
1400 static inline void add_kallsyms(struct module *mod,
1401                                 Elf_Shdr *sechdrs,
1402                                 unsigned int symindex,
1403                                 unsigned int strindex,
1404                                 const char *secstrings)
1405 {
1406 }
1407 #endif /* CONFIG_KALLSYMS */
1408
1409 /* Allocate and load the module: note that size of section 0 is always
1410    zero, and we rely on this for optional sections. */
1411 static struct module *load_module(void __user *umod,
1412                                   unsigned long len,
1413                                   const char __user *uargs)
1414 {
1415         Elf_Ehdr *hdr;
1416         Elf_Shdr *sechdrs;
1417         char *secstrings, *args, *modmagic, *strtab = NULL;
1418         unsigned int i, symindex = 0, strindex = 0, setupindex, exindex,
1419                 exportindex, modindex, obsparmindex, infoindex, gplindex,
1420                 crcindex, gplcrcindex, versindex, pcpuindex;
1421         long arglen;
1422         struct module *mod;
1423         long err = 0;
1424         void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
1425         struct exception_table_entry *extable;
1426
1427         DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
1428                umod, len, uargs);
1429         if (len < sizeof(*hdr))
1430                 return ERR_PTR(-ENOEXEC);
1431
1432         /* Suck in entire file: we'll want most of it. */
1433         /* vmalloc barfs on "unusual" numbers.  Check here */
1434         if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
1435                 return ERR_PTR(-ENOMEM);
1436         if (copy_from_user(hdr, umod, len) != 0) {
1437                 err = -EFAULT;
1438                 goto free_hdr;
1439         }
1440
1441         /* Sanity checks against insmoding binaries or wrong arch,
1442            weird elf version */
1443         if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
1444             || hdr->e_type != ET_REL
1445             || !elf_check_arch(hdr)
1446             || hdr->e_shentsize != sizeof(*sechdrs)) {
1447                 err = -ENOEXEC;
1448                 goto free_hdr;
1449         }
1450
1451         if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
1452                 goto truncated;
1453
1454         /* Convenience variables */
1455         sechdrs = (void *)hdr + hdr->e_shoff;
1456         secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
1457         sechdrs[0].sh_addr = 0;
1458
1459         /* And these should exist, but gcc whinges if we don't init them */
1460         symindex = strindex = 0;
1461
1462         for (i = 1; i < hdr->e_shnum; i++) {
1463                 if (sechdrs[i].sh_type != SHT_NOBITS
1464                     && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
1465                         goto truncated;
1466
1467                 /* Mark all sections sh_addr with their address in the
1468                    temporary image. */
1469                 sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
1470
1471                 /* Internal symbols and strings. */
1472                 if (sechdrs[i].sh_type == SHT_SYMTAB) {
1473                         symindex = i;
1474                         strindex = sechdrs[i].sh_link;
1475                         strtab = (char *)hdr + sechdrs[strindex].sh_offset;
1476                 }
1477 #ifndef CONFIG_MODULE_UNLOAD
1478                 /* Don't load .exit sections */
1479                 if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
1480                         sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
1481 #endif
1482         }
1483
1484         modindex = find_sec(hdr, sechdrs, secstrings,
1485                             ".gnu.linkonce.this_module");
1486         if (!modindex) {
1487                 printk(KERN_WARNING "No module found in object\n");
1488                 err = -ENOEXEC;
1489                 goto free_hdr;
1490         }
1491         mod = (void *)sechdrs[modindex].sh_addr;
1492
1493         /* Optional sections */
1494         exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
1495         gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
1496         crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
1497         gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
1498         setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
1499         exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
1500         obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
1501         versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
1502         infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
1503         pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
1504
1505         /* Don't keep modinfo section */
1506         sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1507 #ifdef CONFIG_KALLSYMS
1508         /* Keep symbol and string tables for decoding later. */
1509         sechdrs[symindex].sh_flags |= SHF_ALLOC;
1510         sechdrs[strindex].sh_flags |= SHF_ALLOC;
1511 #endif
1512
1513         /* Check module struct version now, before we try to use module. */
1514         if (!check_modstruct_version(sechdrs, versindex, mod)) {
1515                 err = -ENOEXEC;
1516                 goto free_hdr;
1517         }
1518
1519         modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
1520         /* This is allowed: modprobe --force will invalidate it. */
1521         if (!modmagic) {
1522                 tainted |= TAINT_FORCED_MODULE;
1523                 printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
1524                        mod->name);
1525         } else if (!same_magic(modmagic, vermagic)) {
1526                 printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
1527                        mod->name, modmagic, vermagic);
1528                 err = -ENOEXEC;
1529                 goto free_hdr;
1530         }
1531
1532         /* Now copy in args */
1533         arglen = strlen_user(uargs);
1534         if (!arglen) {
1535                 err = -EFAULT;
1536                 goto free_hdr;
1537         }
1538         args = kmalloc(arglen, GFP_KERNEL);
1539         if (!args) {
1540                 err = -ENOMEM;
1541                 goto free_hdr;
1542         }
1543         if (copy_from_user(args, uargs, arglen) != 0) {
1544                 err = -EFAULT;
1545                 goto free_mod;
1546         }
1547
1548         if (find_module(mod->name)) {
1549                 err = -EEXIST;
1550                 goto free_mod;
1551         }
1552
1553         mod->state = MODULE_STATE_COMING;
1554
1555         /* Allow arches to frob section contents and sizes.  */
1556         err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
1557         if (err < 0)
1558                 goto free_mod;
1559
1560         if (pcpuindex) {
1561                 /* We have a special allocation for this section. */
1562                 percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
1563                                          sechdrs[pcpuindex].sh_addralign);
1564                 if (!percpu) {
1565                         err = -ENOMEM;
1566                         goto free_mod;
1567                 }
1568                 sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
1569                 mod->percpu = percpu;
1570         }
1571
1572         /* Determine total sizes, and put offsets in sh_entsize.  For now
1573            this is done generically; there doesn't appear to be any
1574            special cases for the architectures. */
1575         layout_sections(mod, hdr, sechdrs, secstrings);
1576
1577         /* Do the allocs. */
1578         ptr = module_alloc(mod->core_size);
1579         if (!ptr) {
1580                 err = -ENOMEM;
1581                 goto free_percpu;
1582         }
1583         memset(ptr, 0, mod->core_size);
1584         mod->module_core = ptr;
1585
1586         ptr = module_alloc(mod->init_size);
1587         if (!ptr && mod->init_size) {
1588                 err = -ENOMEM;
1589                 goto free_core;
1590         }
1591         memset(ptr, 0, mod->init_size);
1592         mod->module_init = ptr;
1593
1594         /* Transfer each section which specifies SHF_ALLOC */
1595         DEBUGP("final section addresses:\n");
1596         for (i = 0; i < hdr->e_shnum; i++) {
1597                 void *dest;
1598
1599                 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
1600                         continue;
1601
1602                 if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
1603                         dest = mod->module_init
1604                                 + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
1605                 else
1606                         dest = mod->module_core + sechdrs[i].sh_entsize;
1607
1608                 if (sechdrs[i].sh_type != SHT_NOBITS)
1609                         memcpy(dest, (void *)sechdrs[i].sh_addr,
1610                                sechdrs[i].sh_size);
1611                 /* Update sh_addr to point to copy in image. */
1612                 sechdrs[i].sh_addr = (unsigned long)dest;
1613                 DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
1614         }
1615         /* Module has been moved. */
1616         mod = (void *)sechdrs[modindex].sh_addr;
1617
1618         /* Now we've moved module, initialize linked lists, etc. */
1619         module_unload_init(mod);
1620
1621         /* Set up license info based on the info section */
1622         set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
1623
1624         /* Fix up syms, so that st_value is a pointer to location. */
1625         err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
1626                                mod);
1627         if (err < 0)
1628                 goto cleanup;
1629
1630         /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
1631         mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
1632         mod->syms = (void *)sechdrs[exportindex].sh_addr;
1633         if (crcindex)
1634                 mod->crcs = (void *)sechdrs[crcindex].sh_addr;
1635         mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
1636         mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
1637         if (gplcrcindex)
1638                 mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
1639
1640 #ifdef CONFIG_MODVERSIONS
1641         if ((mod->num_syms && !crcindex) || 
1642             (mod->num_gpl_syms && !gplcrcindex)) {
1643                 printk(KERN_WARNING "%s: No versions for exported symbols."
1644                        " Tainting kernel.\n", mod->name);
1645                 tainted |= TAINT_FORCED_MODULE;
1646         }
1647 #endif
1648
1649         /* Now do relocations. */
1650         for (i = 1; i < hdr->e_shnum; i++) {
1651                 const char *strtab = (char *)sechdrs[strindex].sh_addr;
1652                 unsigned int info = sechdrs[i].sh_info;
1653
1654                 /* Not a valid relocation section? */
1655                 if (info >= hdr->e_shnum)
1656                         continue;
1657
1658                 /* Don't bother with non-allocated sections */
1659                 if (!(sechdrs[info].sh_flags & SHF_ALLOC))
1660                         continue;
1661
1662                 if (sechdrs[i].sh_type == SHT_REL)
1663                         err = apply_relocate(sechdrs, strtab, symindex, i,mod);
1664                 else if (sechdrs[i].sh_type == SHT_RELA)
1665                         err = apply_relocate_add(sechdrs, strtab, symindex, i,
1666                                                  mod);
1667                 if (err < 0)
1668                         goto cleanup;
1669         }
1670
1671         /* Set up and sort exception table */
1672         mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
1673         mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
1674         sort_extable(extable, extable + mod->num_exentries);
1675
1676         /* Finally, copy percpu area over. */
1677         percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
1678                        sechdrs[pcpuindex].sh_size);
1679
1680         add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
1681
1682         err = module_finalize(hdr, sechdrs, mod);
1683         if (err < 0)
1684                 goto cleanup;
1685
1686         mod->args = args;
1687         if (obsparmindex) {
1688                 err = obsolete_params(mod->name, mod->args,
1689                                       (struct obsolete_modparm *)
1690                                       sechdrs[obsparmindex].sh_addr,
1691                                       sechdrs[obsparmindex].sh_size
1692                                       / sizeof(struct obsolete_modparm),
1693                                       sechdrs, symindex,
1694                                       (char *)sechdrs[strindex].sh_addr);
1695                 if (setupindex)
1696                         printk(KERN_WARNING "%s: Ignoring new-style "
1697                                "parameters in presence of obsolete ones\n",
1698                                mod->name);
1699         } else {
1700                 /* Size of section 0 is 0, so this works well if no params */
1701                 err = parse_args(mod->name, mod->args,
1702                                  (struct kernel_param *)
1703                                  sechdrs[setupindex].sh_addr,
1704                                  sechdrs[setupindex].sh_size
1705                                  / sizeof(struct kernel_param),
1706                                  NULL);
1707         }
1708         err = mod_sysfs_setup(mod, 
1709                               (struct kernel_param *)
1710                               sechdrs[setupindex].sh_addr,
1711                               sechdrs[setupindex].sh_size
1712                               / sizeof(struct kernel_param));
1713         if (err < 0)
1714                 goto arch_cleanup;
1715
1716         /* Get rid of temporary copy */
1717         vfree(hdr);
1718
1719         /* Done! */
1720         return mod;
1721
1722  arch_cleanup:
1723         module_arch_cleanup(mod);
1724  cleanup:
1725         module_unload_free(mod);
1726         module_free(mod, mod->module_init);
1727  free_core:
1728         module_free(mod, mod->module_core);
1729  free_percpu:
1730         if (percpu)
1731                 percpu_modfree(percpu);
1732  free_mod:
1733         kfree(args);
1734  free_hdr:
1735         vfree(hdr);
1736         if (err < 0) return ERR_PTR(err);
1737         else return ptr;
1738
1739  truncated:
1740         printk(KERN_ERR "Module len %lu truncated\n", len);
1741         err = -ENOEXEC;
1742         goto free_hdr;
1743 }
1744
1745 /* This is where the real work happens */
1746 asmlinkage long
1747 sys_init_module(void __user *umod,
1748                 unsigned long len,
1749                 const char __user *uargs)
1750 {
1751         struct module *mod;
1752         int ret;
1753
1754         /* Must have permission */
1755         if (!capable(CAP_SYS_MODULE))
1756                 return -EPERM;
1757
1758         /* Only one module load at a time, please */
1759         if (down_interruptible(&module_mutex) != 0)
1760                 return -EINTR;
1761
1762         /* Do all the hard work */
1763         mod = load_module(umod, len, uargs);
1764         if (IS_ERR(mod)) {
1765                 up(&module_mutex);
1766                 return PTR_ERR(mod);
1767         }
1768
1769         /* Flush the instruction cache, since we've played with text */
1770         if (mod->module_init)
1771                 flush_icache_range((unsigned long)mod->module_init,
1772                                    (unsigned long)mod->module_init
1773                                    + mod->init_size);
1774         flush_icache_range((unsigned long)mod->module_core,
1775                            (unsigned long)mod->module_core + mod->core_size);
1776
1777         /* Now sew it into the lists.  They won't access us, since
1778            strong_try_module_get() will fail. */
1779         spin_lock_irq(&modlist_lock);
1780         list_add(&mod->list, &modules);
1781         spin_unlock_irq(&modlist_lock);
1782
1783         /* Drop lock so they can recurse */
1784         up(&module_mutex);
1785
1786         down(&notify_mutex);
1787         notifier_call_chain(&module_notify_list, MODULE_STATE_COMING, mod);
1788         up(&notify_mutex);
1789
1790         /* Start the module */
1791         ret = mod->init();
1792         if (ret < 0) {
1793                 /* Init routine failed: abort.  Try to protect us from
1794                    buggy refcounters. */
1795                 mod->state = MODULE_STATE_GOING;
1796                 synchronize_kernel();
1797                 if (mod->unsafe)
1798                         printk(KERN_ERR "%s: module is now stuck!\n",
1799                                mod->name);
1800                 else {
1801                         module_put(mod);
1802                         down(&module_mutex);
1803                         free_module(mod);
1804                         up(&module_mutex);
1805                 }
1806                 return ret;
1807         }
1808
1809         /* Now it's a first class citizen! */
1810         down(&module_mutex);
1811         mod->state = MODULE_STATE_LIVE;
1812         /* Drop initial reference. */
1813         module_put(mod);
1814         module_free(mod, mod->module_init);
1815         mod->module_init = NULL;
1816         mod->init_size = 0;
1817         mod->init_text_size = 0;
1818         up(&module_mutex);
1819
1820         return 0;
1821 }
1822
1823 static inline int within(unsigned long addr, void *start, unsigned long size)
1824 {
1825         return ((void *)addr >= start && (void *)addr < start + size);
1826 }
1827
1828 #ifdef CONFIG_KALLSYMS
1829 static const char *get_ksymbol(struct module *mod,
1830                                unsigned long addr,
1831                                unsigned long *size,
1832                                unsigned long *offset)
1833 {
1834         unsigned int i, best = 0;
1835         unsigned long nextval;
1836
1837         /* At worse, next value is at end of module */
1838         if (within(addr, mod->module_init, mod->init_size))
1839                 nextval = (unsigned long)mod->module_init+mod->init_text_size;
1840         else 
1841                 nextval = (unsigned long)mod->module_core+mod->core_text_size;
1842
1843         /* Scan for closest preceeding symbol, and next symbol. (ELF
1844            starts real symbols at 1). */
1845         for (i = 1; i < mod->num_symtab; i++) {
1846                 if (mod->symtab[i].st_shndx == SHN_UNDEF)
1847                         continue;
1848
1849                 /* We ignore unnamed symbols: they're uninformative
1850                  * and inserted at a whim. */
1851                 if (mod->symtab[i].st_value <= addr
1852                     && mod->symtab[i].st_value > mod->symtab[best].st_value
1853                     && *(mod->strtab + mod->symtab[i].st_name) != '\0' )
1854                         best = i;
1855                 if (mod->symtab[i].st_value > addr
1856                     && mod->symtab[i].st_value < nextval
1857                     && *(mod->strtab + mod->symtab[i].st_name) != '\0')
1858                         nextval = mod->symtab[i].st_value;
1859         }
1860
1861         if (!best)
1862                 return NULL;
1863
1864         *size = nextval - mod->symtab[best].st_value;
1865         *offset = addr - mod->symtab[best].st_value;
1866         return mod->strtab + mod->symtab[best].st_name;
1867 }
1868
1869 /* For kallsyms to ask for address resolution.  NULL means not found.
1870    We don't lock, as this is used for oops resolution and races are a
1871    lesser concern. */
1872 const char *module_address_lookup(unsigned long addr,
1873                                   unsigned long *size,
1874                                   unsigned long *offset,
1875                                   char **modname)
1876 {
1877         struct module *mod;
1878
1879         list_for_each_entry(mod, &modules, list) {
1880                 if (within(addr, mod->module_init, mod->init_size)
1881                     || within(addr, mod->module_core, mod->core_size)) {
1882                         *modname = mod->name;
1883                         return get_ksymbol(mod, addr, size, offset);
1884                 }
1885         }
1886         return NULL;
1887 }
1888
1889 struct module *module_get_kallsym(unsigned int symnum,
1890                                   unsigned long *value,
1891                                   char *type,
1892                                   char namebuf[128])
1893 {
1894         struct module *mod;
1895
1896         down(&module_mutex);
1897         list_for_each_entry(mod, &modules, list) {
1898                 if (symnum < mod->num_symtab) {
1899                         *value = mod->symtab[symnum].st_value;
1900                         *type = mod->symtab[symnum].st_info;
1901                         strncpy(namebuf,
1902                                 mod->strtab + mod->symtab[symnum].st_name,
1903                                 127);
1904                         up(&module_mutex);
1905                         return mod;
1906                 }
1907                 symnum -= mod->num_symtab;
1908         }
1909         up(&module_mutex);
1910         return NULL;
1911 }
1912
1913 static unsigned long mod_find_symname(struct module *mod, const char *name)
1914 {
1915         unsigned int i;
1916
1917         for (i = 0; i < mod->num_symtab; i++)
1918                 if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0)
1919                         return mod->symtab[i].st_value;
1920         return 0;
1921 }
1922
1923 /* Look for this name: can be of form module:name. */
1924 unsigned long module_kallsyms_lookup_name(const char *name)
1925 {
1926         struct module *mod;
1927         char *colon;
1928         unsigned long ret = 0;
1929
1930         /* Don't lock: we're in enough trouble already. */
1931         if ((colon = strchr(name, ':')) != NULL) {
1932                 *colon = '\0';
1933                 if ((mod = find_module(name)) != NULL)
1934                         ret = mod_find_symname(mod, colon+1);
1935                 *colon = ':';
1936         } else {
1937                 list_for_each_entry(mod, &modules, list)
1938                         if ((ret = mod_find_symname(mod, name)) != 0)
1939                                 break;
1940         }
1941         return ret;
1942 }
1943 #endif /* CONFIG_KALLSYMS */
1944
1945 /* Called by the /proc file system to return a list of modules. */
1946 static void *m_start(struct seq_file *m, loff_t *pos)
1947 {
1948         struct list_head *i;
1949         loff_t n = 0;
1950
1951         down(&module_mutex);
1952         list_for_each(i, &modules) {
1953                 if (n++ == *pos)
1954                         break;
1955         }
1956         if (i == &modules)
1957                 return NULL;
1958         return i;
1959 }
1960
1961 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
1962 {
1963         struct list_head *i = p;
1964         (*pos)++;
1965         if (i->next == &modules)
1966                 return NULL;
1967         return i->next;
1968 }
1969
1970 static void m_stop(struct seq_file *m, void *p)
1971 {
1972         up(&module_mutex);
1973 }
1974
1975 static int m_show(struct seq_file *m, void *p)
1976 {
1977         struct module *mod = list_entry(p, struct module, list);
1978         seq_printf(m, "%s %lu",
1979                    mod->name, mod->init_size + mod->core_size);
1980         print_unload_info(m, mod);
1981
1982         /* Informative for users. */
1983         seq_printf(m, " %s",
1984                    mod->state == MODULE_STATE_GOING ? "Unloading":
1985                    mod->state == MODULE_STATE_COMING ? "Loading":
1986                    "Live");
1987         /* Used by oprofile and other similar tools. */
1988         seq_printf(m, " 0x%p", mod->module_core);
1989
1990         seq_printf(m, "\n");
1991         return 0;
1992 }
1993
1994 /* Format: modulename size refcount deps address
1995
1996    Where refcount is a number or -, and deps is a comma-separated list
1997    of depends or -.
1998 */
1999 struct seq_operations modules_op = {
2000         .start  = m_start,
2001         .next   = m_next,
2002         .stop   = m_stop,
2003         .show   = m_show
2004 };
2005
2006 /* Given an address, look for it in the module exception tables. */
2007 const struct exception_table_entry *search_module_extables(unsigned long addr)
2008 {
2009         unsigned long flags;
2010         const struct exception_table_entry *e = NULL;
2011         struct module *mod;
2012
2013         spin_lock_irqsave(&modlist_lock, flags);
2014         list_for_each_entry(mod, &modules, list) {
2015                 if (mod->num_exentries == 0)
2016                         continue;
2017                                 
2018                 e = search_extable(mod->extable,
2019                                    mod->extable + mod->num_exentries - 1,
2020                                    addr);
2021                 if (e)
2022                         break;
2023         }
2024         spin_unlock_irqrestore(&modlist_lock, flags);
2025
2026         /* Now, if we found one, we are running inside it now, hence
2027            we cannot unload the module, hence no refcnt needed. */
2028         return e;
2029 }
2030
2031 /* Is this a valid kernel address?  We don't grab the lock: we are oopsing. */
2032 struct module *module_text_address(unsigned long addr)
2033 {
2034         struct module *mod;
2035
2036         list_for_each_entry(mod, &modules, list)
2037                 if (within(addr, mod->module_init, mod->init_text_size)
2038                     || within(addr, mod->module_core, mod->core_text_size))
2039                         return mod;
2040         return NULL;
2041 }
2042
2043 /* Don't grab lock, we're oopsing. */
2044 void print_modules(void)
2045 {
2046         struct module *mod;
2047
2048         printk("Modules linked in:");
2049         list_for_each_entry(mod, &modules, list)
2050                 printk(" %s", mod->name);
2051         printk("\n");
2052 }
2053
2054 #ifdef CONFIG_MODVERSIONS
2055 /* Generate the signature for struct module here, too, for modversions. */
2056 void struct_module(struct module *mod) { return; }
2057 EXPORT_SYMBOL(struct_module);
2058 #endif
2059
2060 static int __init modules_init(void)
2061 {
2062         return subsystem_register(&module_subsys);
2063 }
2064 __initcall(modules_init);