blob: 17edbd4f6f855a475f3b073e057f04f8a88f16ce [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Namhyung Kim393be2e2012-08-06 13:41:21 +09002#include "symbol.h"
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03003#include "util.h"
Namhyung Kim393be2e2012-08-06 13:41:21 +09004
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03005#include <errno.h>
Arnaldo Carvalho de Melo68c01882019-01-22 11:14:55 -02006#include <unistd.h>
Namhyung Kimb691f642012-08-06 13:41:22 +09007#include <stdio.h>
8#include <fcntl.h>
9#include <string.h>
10#include <byteswap.h>
11#include <sys/stat.h>
Namhyung Kim393be2e2012-08-06 13:41:21 +090012
Namhyung Kimb691f642012-08-06 13:41:22 +090013
14static bool check_need_swap(int file_endian)
Namhyung Kim393be2e2012-08-06 13:41:21 +090015{
Namhyung Kimb691f642012-08-06 13:41:22 +090016 const int data = 1;
17 u8 *check = (u8 *)&data;
18 int host_endian;
19
20 if (check[0] == 1)
21 host_endian = ELFDATA2LSB;
22 else
23 host_endian = ELFDATA2MSB;
24
25 return host_endian != file_endian;
Namhyung Kim393be2e2012-08-06 13:41:21 +090026}
27
Namhyung Kimb691f642012-08-06 13:41:22 +090028#define NOTE_ALIGN(sz) (((sz) + 3) & ~3)
29
30#define NT_GNU_BUILD_ID 3
31
32static int read_build_id(void *note_data, size_t note_len, void *bf,
33 size_t size, bool need_swap)
Namhyung Kim393be2e2012-08-06 13:41:21 +090034{
Namhyung Kimb691f642012-08-06 13:41:22 +090035 struct {
36 u32 n_namesz;
37 u32 n_descsz;
38 u32 n_type;
39 } *nhdr;
40 void *ptr;
41
42 ptr = note_data;
43 while (ptr < (note_data + note_len)) {
44 const char *name;
45 size_t namesz, descsz;
46
47 nhdr = ptr;
48 if (need_swap) {
49 nhdr->n_namesz = bswap_32(nhdr->n_namesz);
50 nhdr->n_descsz = bswap_32(nhdr->n_descsz);
51 nhdr->n_type = bswap_32(nhdr->n_type);
52 }
53
54 namesz = NOTE_ALIGN(nhdr->n_namesz);
55 descsz = NOTE_ALIGN(nhdr->n_descsz);
56
57 ptr += sizeof(*nhdr);
58 name = ptr;
59 ptr += namesz;
60 if (nhdr->n_type == NT_GNU_BUILD_ID &&
61 nhdr->n_namesz == sizeof("GNU")) {
62 if (memcmp(name, "GNU", sizeof("GNU")) == 0) {
63 size_t sz = min(size, descsz);
64 memcpy(bf, ptr, sz);
65 memset(bf + sz, 0, size - sz);
66 return 0;
67 }
68 }
69 ptr += descsz;
70 }
71
Namhyung Kim393be2e2012-08-06 13:41:21 +090072 return -1;
73}
74
Irina Tirdea1d037ca2012-09-11 01:15:03 +030075int filename__read_debuglink(const char *filename __maybe_unused,
76 char *debuglink __maybe_unused,
77 size_t size __maybe_unused)
Namhyung Kim393be2e2012-08-06 13:41:21 +090078{
79 return -1;
80}
81
Namhyung Kimb691f642012-08-06 13:41:22 +090082/*
83 * Just try PT_NOTE header otherwise fails
84 */
85int filename__read_build_id(const char *filename, void *bf, size_t size)
86{
87 FILE *fp;
88 int ret = -1;
89 bool need_swap = false;
90 u8 e_ident[EI_NIDENT];
91 size_t buf_size;
92 void *buf;
93 int i;
94
95 fp = fopen(filename, "r");
96 if (fp == NULL)
97 return -1;
98
99 if (fread(e_ident, sizeof(e_ident), 1, fp) != 1)
100 goto out;
101
102 if (memcmp(e_ident, ELFMAG, SELFMAG) ||
103 e_ident[EI_VERSION] != EV_CURRENT)
104 goto out;
105
106 need_swap = check_need_swap(e_ident[EI_DATA]);
107
108 /* for simplicity */
109 fseek(fp, 0, SEEK_SET);
110
111 if (e_ident[EI_CLASS] == ELFCLASS32) {
112 Elf32_Ehdr ehdr;
113 Elf32_Phdr *phdr;
114
115 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1)
116 goto out;
117
118 if (need_swap) {
119 ehdr.e_phoff = bswap_32(ehdr.e_phoff);
120 ehdr.e_phentsize = bswap_16(ehdr.e_phentsize);
121 ehdr.e_phnum = bswap_16(ehdr.e_phnum);
122 }
123
124 buf_size = ehdr.e_phentsize * ehdr.e_phnum;
125 buf = malloc(buf_size);
126 if (buf == NULL)
127 goto out;
128
129 fseek(fp, ehdr.e_phoff, SEEK_SET);
130 if (fread(buf, buf_size, 1, fp) != 1)
131 goto out_free;
132
133 for (i = 0, phdr = buf; i < ehdr.e_phnum; i++, phdr++) {
134 void *tmp;
Mitchell Krome7ad74b42014-12-16 12:16:12 +1000135 long offset;
Namhyung Kimb691f642012-08-06 13:41:22 +0900136
137 if (need_swap) {
138 phdr->p_type = bswap_32(phdr->p_type);
139 phdr->p_offset = bswap_32(phdr->p_offset);
140 phdr->p_filesz = bswap_32(phdr->p_filesz);
141 }
142
143 if (phdr->p_type != PT_NOTE)
144 continue;
145
146 buf_size = phdr->p_filesz;
Mitchell Krome7ad74b42014-12-16 12:16:12 +1000147 offset = phdr->p_offset;
Namhyung Kimb691f642012-08-06 13:41:22 +0900148 tmp = realloc(buf, buf_size);
149 if (tmp == NULL)
150 goto out_free;
151
152 buf = tmp;
Mitchell Krome7ad74b42014-12-16 12:16:12 +1000153 fseek(fp, offset, SEEK_SET);
Namhyung Kimb691f642012-08-06 13:41:22 +0900154 if (fread(buf, buf_size, 1, fp) != 1)
155 goto out_free;
156
157 ret = read_build_id(buf, buf_size, bf, size, need_swap);
158 if (ret == 0)
159 ret = size;
160 break;
161 }
162 } else {
163 Elf64_Ehdr ehdr;
164 Elf64_Phdr *phdr;
165
166 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1)
167 goto out;
168
169 if (need_swap) {
170 ehdr.e_phoff = bswap_64(ehdr.e_phoff);
171 ehdr.e_phentsize = bswap_16(ehdr.e_phentsize);
172 ehdr.e_phnum = bswap_16(ehdr.e_phnum);
173 }
174
175 buf_size = ehdr.e_phentsize * ehdr.e_phnum;
176 buf = malloc(buf_size);
177 if (buf == NULL)
178 goto out;
179
180 fseek(fp, ehdr.e_phoff, SEEK_SET);
181 if (fread(buf, buf_size, 1, fp) != 1)
182 goto out_free;
183
184 for (i = 0, phdr = buf; i < ehdr.e_phnum; i++, phdr++) {
185 void *tmp;
Mitchell Krome7ad74b42014-12-16 12:16:12 +1000186 long offset;
Namhyung Kimb691f642012-08-06 13:41:22 +0900187
188 if (need_swap) {
189 phdr->p_type = bswap_32(phdr->p_type);
190 phdr->p_offset = bswap_64(phdr->p_offset);
191 phdr->p_filesz = bswap_64(phdr->p_filesz);
192 }
193
194 if (phdr->p_type != PT_NOTE)
195 continue;
196
197 buf_size = phdr->p_filesz;
Mitchell Krome7ad74b42014-12-16 12:16:12 +1000198 offset = phdr->p_offset;
Namhyung Kimb691f642012-08-06 13:41:22 +0900199 tmp = realloc(buf, buf_size);
200 if (tmp == NULL)
201 goto out_free;
202
203 buf = tmp;
Mitchell Krome7ad74b42014-12-16 12:16:12 +1000204 fseek(fp, offset, SEEK_SET);
Namhyung Kimb691f642012-08-06 13:41:22 +0900205 if (fread(buf, buf_size, 1, fp) != 1)
206 goto out_free;
207
208 ret = read_build_id(buf, buf_size, bf, size, need_swap);
209 if (ret == 0)
210 ret = size;
211 break;
212 }
213 }
214out_free:
215 free(buf);
216out:
217 fclose(fp);
218 return ret;
219}
220
221int sysfs__read_build_id(const char *filename, void *build_id, size_t size)
222{
223 int fd;
224 int ret = -1;
225 struct stat stbuf;
226 size_t buf_size;
227 void *buf;
228
229 fd = open(filename, O_RDONLY);
230 if (fd < 0)
231 return -1;
232
233 if (fstat(fd, &stbuf) < 0)
234 goto out;
235
236 buf_size = stbuf.st_size;
237 buf = malloc(buf_size);
238 if (buf == NULL)
239 goto out;
240
241 if (read(fd, buf, buf_size) != (ssize_t) buf_size)
242 goto out_free;
243
244 ret = read_build_id(buf, buf_size, build_id, size, false);
245out_free:
246 free(buf);
247out:
248 close(fd);
249 return ret;
250}
251
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300252int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700253 enum dso_binary_type type)
254{
255 int fd = open(name, O_RDONLY);
256 if (fd < 0)
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300257 goto out_errno;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700258
259 ss->name = strdup(name);
260 if (!ss->name)
261 goto out_close;
262
Adrian Hunter779e24e2013-12-04 16:23:01 +0200263 ss->fd = fd;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700264 ss->type = type;
265
266 return 0;
267out_close:
268 close(fd);
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300269out_errno:
270 dso->load_errno = errno;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700271 return -1;
272}
273
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300274bool symsrc__possibly_runtime(struct symsrc *ss __maybe_unused)
Cody P Schafer3aafe5a2012-08-10 15:23:02 -0700275{
276 /* Assume all sym sources could be a runtime image. */
277 return true;
278}
279
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300280bool symsrc__has_symtab(struct symsrc *ss __maybe_unused)
Cody P Schaferd26cd122012-08-10 15:23:00 -0700281{
282 return false;
283}
284
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700285void symsrc__destroy(struct symsrc *ss)
286{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300287 zfree(&ss->name);
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700288 close(ss->fd);
289}
290
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300291int dso__synthesize_plt_symbols(struct dso *dso __maybe_unused,
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300292 struct symsrc *ss __maybe_unused)
Namhyung Kim393be2e2012-08-06 13:41:21 +0900293{
294 return 0;
295}
296
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +0300297static int fd__is_64_bit(int fd)
298{
299 u8 e_ident[EI_NIDENT];
300
301 if (lseek(fd, 0, SEEK_SET))
302 return -1;
303
304 if (readn(fd, e_ident, sizeof(e_ident)) != sizeof(e_ident))
305 return -1;
306
307 if (memcmp(e_ident, ELFMAG, SELFMAG) ||
308 e_ident[EI_VERSION] != EV_CURRENT)
309 return -1;
310
311 return e_ident[EI_CLASS] == ELFCLASS64;
312}
313
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +0300314enum dso_type dso__type_fd(int fd)
315{
316 Elf64_Ehdr ehdr;
317 int ret;
318
319 ret = fd__is_64_bit(fd);
320 if (ret < 0)
321 return DSO__TYPE_UNKNOWN;
322
323 if (ret)
324 return DSO__TYPE_64BIT;
325
326 if (readn(fd, &ehdr, sizeof(ehdr)) != sizeof(ehdr))
327 return DSO__TYPE_UNKNOWN;
328
329 if (ehdr.e_machine == EM_X86_64)
330 return DSO__TYPE_X32BIT;
331
332 return DSO__TYPE_32BIT;
333}
334
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300335int dso__load_sym(struct dso *dso, struct map *map __maybe_unused,
336 struct symsrc *ss,
337 struct symsrc *runtime_ss __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300338 int kmodule __maybe_unused)
Namhyung Kim393be2e2012-08-06 13:41:21 +0900339{
Dima Koganf2f30962015-09-07 17:30:28 -0700340 unsigned char build_id[BUILD_ID_SIZE];
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +0300341 int ret;
342
343 ret = fd__is_64_bit(ss->fd);
344 if (ret >= 0)
345 dso->is_64_bit = ret;
Namhyung Kimb691f642012-08-06 13:41:22 +0900346
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700347 if (filename__read_build_id(ss->name, build_id, BUILD_ID_SIZE) > 0) {
Namhyung Kimb691f642012-08-06 13:41:22 +0900348 dso__set_build_id(dso, build_id);
Namhyung Kimb691f642012-08-06 13:41:22 +0900349 }
Namhyung Kim393be2e2012-08-06 13:41:21 +0900350 return 0;
351}
352
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300353int file__read_maps(int fd __maybe_unused, bool exe __maybe_unused,
354 mapfn_t mapfn __maybe_unused, void *data __maybe_unused,
355 bool *is_64_bit __maybe_unused)
356{
357 return -1;
358}
359
Adrian Hunterafba19d2013-10-09 15:01:12 +0300360int kcore_extract__create(struct kcore_extract *kce __maybe_unused)
361{
362 return -1;
363}
364
365void kcore_extract__delete(struct kcore_extract *kce __maybe_unused)
366{
367}
368
Adrian Hunterfc1b6912013-10-14 16:57:29 +0300369int kcore_copy(const char *from_dir __maybe_unused,
370 const char *to_dir __maybe_unused)
371{
372 return -1;
373}
374
Namhyung Kim393be2e2012-08-06 13:41:21 +0900375void symbol__elf_init(void)
376{
377}
Jin Yaoa64489c2017-03-26 04:34:26 +0800378
379char *dso__demangle_sym(struct dso *dso __maybe_unused,
380 int kmodule __maybe_unused,
Milian Wolff80c345b2017-08-06 23:24:34 +0200381 const char *elf_name __maybe_unused)
Jin Yaoa64489c2017-03-26 04:34:26 +0800382{
383 return NULL;
384}