hc
2024-08-16 a24a44ff9ca902811b99aa9663d697cf452e08ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
 * Copyright (C) 2007-2009 PetaLogix
 */
 
#include <linux/export.h>
#include <linux/moduleloader.h>
#include <linux/kernel.h>
#include <linux/elf.h>
#include <linux/vmalloc.h>
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/pgtable.h>
 
#include <asm/cacheflush.h>
 
int apply_relocate_add(Elf32_Shdr *sechdrs, const char *strtab,
   unsigned int symindex, unsigned int relsec, struct module *module)
{
 
   unsigned int i;
   Elf32_Rela *rela = (void *)sechdrs[relsec].sh_addr;
   Elf32_Sym *sym;
   unsigned long int *location;
   unsigned long int value;
#if __GNUC__ < 4
   unsigned long int old_value;
#endif
 
   pr_debug("Applying add relocation section %u to %u\n",
       relsec, sechdrs[relsec].sh_info);
 
   for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rela); i++) {
 
       location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr +
               rela[i].r_offset;
       sym = (Elf32_Sym *)sechdrs[symindex].sh_addr +
           ELF32_R_SYM(rela[i].r_info);
       value = sym->st_value + rela[i].r_addend;
 
       switch (ELF32_R_TYPE(rela[i].r_info)) {
 
       /*
        * Be careful! mb-gcc / mb-ld splits the relocs between the
        * text and the reloc table. In general this means we must
        * read the current contents of (*location), add any offset
        * then store the result back in
        */
 
       case R_MICROBLAZE_32:
#if __GNUC__ < 4
           old_value = *location;
           *location = value + old_value;
 
           pr_debug("R_MICROBLAZE_32 (%08lx->%08lx)\n",
               old_value, value);
#else
           *location = value;
#endif
           break;
 
       case R_MICROBLAZE_64:
#if __GNUC__ < 4
           /* Split relocs only required/used pre gcc4.1.1 */
           old_value = ((location[0] & 0x0000FFFF) << 16) |
                   (location[1] & 0x0000FFFF);
           value += old_value;
#endif
           location[0] = (location[0] & 0xFFFF0000) |
                   (value >> 16);
           location[1] = (location[1] & 0xFFFF0000) |
                   (value & 0xFFFF);
#if __GNUC__ < 4
           pr_debug("R_MICROBLAZE_64 (%08lx->%08lx)\n",
               old_value, value);
#endif
           break;
 
       case R_MICROBLAZE_64_PCREL:
#if __GNUC__ < 4
           old_value = (location[0] & 0xFFFF) << 16 |
               (location[1] & 0xFFFF);
           value -= old_value;
#endif
           value -= (unsigned long int)(location) + 4;
           location[0] = (location[0] & 0xFFFF0000) |
                   (value >> 16);
           location[1] = (location[1] & 0xFFFF0000) |
                   (value & 0xFFFF);
           pr_debug("R_MICROBLAZE_64_PCREL (%08lx)\n",
               value);
           break;
 
       case R_MICROBLAZE_32_PCREL_LO:
           pr_debug("R_MICROBLAZE_32_PCREL_LO\n");
           break;
 
       case R_MICROBLAZE_64_NONE:
           pr_debug("R_MICROBLAZE_64_NONE\n");
           break;
 
       case R_MICROBLAZE_NONE:
           pr_debug("R_MICROBLAZE_NONE\n");
           break;
 
       default:
           pr_err("module %s: Unknown relocation: %u\n",
               module->name,
               ELF32_R_TYPE(rela[i].r_info));
           return -ENOEXEC;
       }
   }
   return 0;
}
 
int module_finalize(const Elf32_Ehdr *hdr, const Elf_Shdr *sechdrs,
       struct module *module)
{
   flush_dcache();
   return 0;
}