blob: a7390cde63bc74f8dae01422dd92bbc2e1a09d3c [file] [log] [blame]
Namhyung Kim393be2e2012-08-06 13:41:21 +09001#include "symbol.h"
2
Namhyung Kimb691f642012-08-06 13:41:22 +09003#include <stdio.h>
4#include <fcntl.h>
5#include <string.h>
6#include <byteswap.h>
7#include <sys/stat.h>
Namhyung Kim393be2e2012-08-06 13:41:21 +09008
Namhyung Kimb691f642012-08-06 13:41:22 +09009
10static bool check_need_swap(int file_endian)
Namhyung Kim393be2e2012-08-06 13:41:21 +090011{
Namhyung Kimb691f642012-08-06 13:41:22 +090012 const int data = 1;
13 u8 *check = (u8 *)&data;
14 int host_endian;
15
16 if (check[0] == 1)
17 host_endian = ELFDATA2LSB;
18 else
19 host_endian = ELFDATA2MSB;
20
21 return host_endian != file_endian;
Namhyung Kim393be2e2012-08-06 13:41:21 +090022}
23
Namhyung Kimb691f642012-08-06 13:41:22 +090024#define NOTE_ALIGN(sz) (((sz) + 3) & ~3)
25
26#define NT_GNU_BUILD_ID 3
27
28static int read_build_id(void *note_data, size_t note_len, void *bf,
29 size_t size, bool need_swap)
Namhyung Kim393be2e2012-08-06 13:41:21 +090030{
Namhyung Kimb691f642012-08-06 13:41:22 +090031 struct {
32 u32 n_namesz;
33 u32 n_descsz;
34 u32 n_type;
35 } *nhdr;
36 void *ptr;
37
38 ptr = note_data;
39 while (ptr < (note_data + note_len)) {
40 const char *name;
41 size_t namesz, descsz;
42
43 nhdr = ptr;
44 if (need_swap) {
45 nhdr->n_namesz = bswap_32(nhdr->n_namesz);
46 nhdr->n_descsz = bswap_32(nhdr->n_descsz);
47 nhdr->n_type = bswap_32(nhdr->n_type);
48 }
49
50 namesz = NOTE_ALIGN(nhdr->n_namesz);
51 descsz = NOTE_ALIGN(nhdr->n_descsz);
52
53 ptr += sizeof(*nhdr);
54 name = ptr;
55 ptr += namesz;
56 if (nhdr->n_type == NT_GNU_BUILD_ID &&
57 nhdr->n_namesz == sizeof("GNU")) {
58 if (memcmp(name, "GNU", sizeof("GNU")) == 0) {
59 size_t sz = min(size, descsz);
60 memcpy(bf, ptr, sz);
61 memset(bf + sz, 0, size - sz);
62 return 0;
63 }
64 }
65 ptr += descsz;
66 }
67
Namhyung Kim393be2e2012-08-06 13:41:21 +090068 return -1;
69}
70
Irina Tirdea1d037ca2012-09-11 01:15:03 +030071int filename__read_debuglink(const char *filename __maybe_unused,
72 char *debuglink __maybe_unused,
73 size_t size __maybe_unused)
Namhyung Kim393be2e2012-08-06 13:41:21 +090074{
75 return -1;
76}
77
Namhyung Kimb691f642012-08-06 13:41:22 +090078/*
79 * Just try PT_NOTE header otherwise fails
80 */
81int filename__read_build_id(const char *filename, void *bf, size_t size)
82{
83 FILE *fp;
84 int ret = -1;
85 bool need_swap = false;
86 u8 e_ident[EI_NIDENT];
87 size_t buf_size;
88 void *buf;
89 int i;
90
91 fp = fopen(filename, "r");
92 if (fp == NULL)
93 return -1;
94
95 if (fread(e_ident, sizeof(e_ident), 1, fp) != 1)
96 goto out;
97
98 if (memcmp(e_ident, ELFMAG, SELFMAG) ||
99 e_ident[EI_VERSION] != EV_CURRENT)
100 goto out;
101
102 need_swap = check_need_swap(e_ident[EI_DATA]);
103
104 /* for simplicity */
105 fseek(fp, 0, SEEK_SET);
106
107 if (e_ident[EI_CLASS] == ELFCLASS32) {
108 Elf32_Ehdr ehdr;
109 Elf32_Phdr *phdr;
110
111 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1)
112 goto out;
113
114 if (need_swap) {
115 ehdr.e_phoff = bswap_32(ehdr.e_phoff);
116 ehdr.e_phentsize = bswap_16(ehdr.e_phentsize);
117 ehdr.e_phnum = bswap_16(ehdr.e_phnum);
118 }
119
120 buf_size = ehdr.e_phentsize * ehdr.e_phnum;
121 buf = malloc(buf_size);
122 if (buf == NULL)
123 goto out;
124
125 fseek(fp, ehdr.e_phoff, SEEK_SET);
126 if (fread(buf, buf_size, 1, fp) != 1)
127 goto out_free;
128
129 for (i = 0, phdr = buf; i < ehdr.e_phnum; i++, phdr++) {
130 void *tmp;
131
132 if (need_swap) {
133 phdr->p_type = bswap_32(phdr->p_type);
134 phdr->p_offset = bswap_32(phdr->p_offset);
135 phdr->p_filesz = bswap_32(phdr->p_filesz);
136 }
137
138 if (phdr->p_type != PT_NOTE)
139 continue;
140
141 buf_size = phdr->p_filesz;
142 tmp = realloc(buf, buf_size);
143 if (tmp == NULL)
144 goto out_free;
145
146 buf = tmp;
147 fseek(fp, phdr->p_offset, SEEK_SET);
148 if (fread(buf, buf_size, 1, fp) != 1)
149 goto out_free;
150
151 ret = read_build_id(buf, buf_size, bf, size, need_swap);
152 if (ret == 0)
153 ret = size;
154 break;
155 }
156 } else {
157 Elf64_Ehdr ehdr;
158 Elf64_Phdr *phdr;
159
160 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1)
161 goto out;
162
163 if (need_swap) {
164 ehdr.e_phoff = bswap_64(ehdr.e_phoff);
165 ehdr.e_phentsize = bswap_16(ehdr.e_phentsize);
166 ehdr.e_phnum = bswap_16(ehdr.e_phnum);
167 }
168
169 buf_size = ehdr.e_phentsize * ehdr.e_phnum;
170 buf = malloc(buf_size);
171 if (buf == NULL)
172 goto out;
173
174 fseek(fp, ehdr.e_phoff, SEEK_SET);
175 if (fread(buf, buf_size, 1, fp) != 1)
176 goto out_free;
177
178 for (i = 0, phdr = buf; i < ehdr.e_phnum; i++, phdr++) {
179 void *tmp;
180
181 if (need_swap) {
182 phdr->p_type = bswap_32(phdr->p_type);
183 phdr->p_offset = bswap_64(phdr->p_offset);
184 phdr->p_filesz = bswap_64(phdr->p_filesz);
185 }
186
187 if (phdr->p_type != PT_NOTE)
188 continue;
189
190 buf_size = phdr->p_filesz;
191 tmp = realloc(buf, buf_size);
192 if (tmp == NULL)
193 goto out_free;
194
195 buf = tmp;
196 fseek(fp, phdr->p_offset, SEEK_SET);
197 if (fread(buf, buf_size, 1, fp) != 1)
198 goto out_free;
199
200 ret = read_build_id(buf, buf_size, bf, size, need_swap);
201 if (ret == 0)
202 ret = size;
203 break;
204 }
205 }
206out_free:
207 free(buf);
208out:
209 fclose(fp);
210 return ret;
211}
212
213int sysfs__read_build_id(const char *filename, void *build_id, size_t size)
214{
215 int fd;
216 int ret = -1;
217 struct stat stbuf;
218 size_t buf_size;
219 void *buf;
220
221 fd = open(filename, O_RDONLY);
222 if (fd < 0)
223 return -1;
224
225 if (fstat(fd, &stbuf) < 0)
226 goto out;
227
228 buf_size = stbuf.st_size;
229 buf = malloc(buf_size);
230 if (buf == NULL)
231 goto out;
232
233 if (read(fd, buf, buf_size) != (ssize_t) buf_size)
234 goto out_free;
235
236 ret = read_build_id(buf, buf_size, build_id, size, false);
237out_free:
238 free(buf);
239out:
240 close(fd);
241 return ret;
242}
243
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300244int symsrc__init(struct symsrc *ss, struct dso *dso __maybe_unused,
245 const char *name,
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700246 enum dso_binary_type type)
247{
248 int fd = open(name, O_RDONLY);
249 if (fd < 0)
250 return -1;
251
252 ss->name = strdup(name);
253 if (!ss->name)
254 goto out_close;
255
256 ss->type = type;
257
258 return 0;
259out_close:
260 close(fd);
261 return -1;
262}
263
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300264bool symsrc__possibly_runtime(struct symsrc *ss __maybe_unused)
Cody P Schafer3aafe5a2012-08-10 15:23:02 -0700265{
266 /* Assume all sym sources could be a runtime image. */
267 return true;
268}
269
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300270bool symsrc__has_symtab(struct symsrc *ss __maybe_unused)
Cody P Schaferd26cd122012-08-10 15:23:00 -0700271{
272 return false;
273}
274
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700275void symsrc__destroy(struct symsrc *ss)
276{
277 free(ss->name);
278 close(ss->fd);
279}
280
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300281int dso__synthesize_plt_symbols(struct dso *dso __maybe_unused,
282 struct symsrc *ss __maybe_unused,
283 struct map *map __maybe_unused,
284 symbol_filter_t filter __maybe_unused)
Namhyung Kim393be2e2012-08-06 13:41:21 +0900285{
286 return 0;
287}
288
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300289int dso__load_sym(struct dso *dso, struct map *map __maybe_unused,
290 struct symsrc *ss,
291 struct symsrc *runtime_ss __maybe_unused,
292 symbol_filter_t filter __maybe_unused,
293 int kmodule __maybe_unused)
Namhyung Kim393be2e2012-08-06 13:41:21 +0900294{
Namhyung Kimb691f642012-08-06 13:41:22 +0900295 unsigned char *build_id[BUILD_ID_SIZE];
296
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700297 if (filename__read_build_id(ss->name, build_id, BUILD_ID_SIZE) > 0) {
Namhyung Kimb691f642012-08-06 13:41:22 +0900298 dso__set_build_id(dso, build_id);
299 return 1;
300 }
Namhyung Kim393be2e2012-08-06 13:41:21 +0900301 return 0;
302}
303
304void symbol__elf_init(void)
305{
306}