diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2008-05-09 02:24:21 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-09 10:45:18 -0400 |
| commit | a5dd69707424a35d2d2cc094e870f595ad61e916 (patch) | |
| tree | dd9dffe6748358bac9a8699f7d8ad9e205886a67 /kernel | |
| parent | 6c2545eefffc452e52302c96c955d9aa26353aa9 (diff) | |
module: be more picky about allowing missing module versions
We allow missing __versions sections, because modprobe --force strips
it. It makes less sense to allow sections where there's no version
for a specific symbol the module uses, so disallow that.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/module.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/kernel/module.c b/kernel/module.c index 8e4528c9909f..2584c0e2762d 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
| @@ -917,6 +917,10 @@ static int check_version(Elf_Shdr *sechdrs, | |||
| 917 | if (!crc) | 917 | if (!crc) |
| 918 | return 1; | 918 | return 1; |
| 919 | 919 | ||
| 920 | /* No versions at all? modprobe --force does this. */ | ||
| 921 | if (versindex == 0) | ||
| 922 | return try_to_force_load(mod, symname) == 0; | ||
| 923 | |||
| 920 | versions = (void *) sechdrs[versindex].sh_addr; | 924 | versions = (void *) sechdrs[versindex].sh_addr; |
| 921 | num_versions = sechdrs[versindex].sh_size | 925 | num_versions = sechdrs[versindex].sh_size |
| 922 | / sizeof(struct modversion_info); | 926 | / sizeof(struct modversion_info); |
| @@ -932,8 +936,9 @@ static int check_version(Elf_Shdr *sechdrs, | |||
| 932 | goto bad_version; | 936 | goto bad_version; |
| 933 | } | 937 | } |
| 934 | 938 | ||
| 935 | if (!try_to_force_load(mod, symname)) | 939 | printk(KERN_WARNING "%s: no symbol version for %s\n", |
| 936 | return 1; | 940 | mod->name, symname); |
| 941 | return 0; | ||
| 937 | 942 | ||
| 938 | bad_version: | 943 | bad_version: |
| 939 | printk("%s: disagrees about version of symbol %s\n", | 944 | printk("%s: disagrees about version of symbol %s\n", |
