Branch data Line data Source code
1 : : /* Print contents of object file note.
2 : : Copyright (C) 2002, 2007, 2009, 2011, 2015, 2016, 2018 Red Hat, Inc.
3 : : This file is part of elfutils.
4 : : Written by Ulrich Drepper <drepper@redhat.com>, 2002.
5 : :
6 : : This file is free software; you can redistribute it and/or modify
7 : : it under the terms of either
8 : :
9 : : * the GNU Lesser General Public License as published by the Free
10 : : Software Foundation; either version 3 of the License, or (at
11 : : your option) any later version
12 : :
13 : : or
14 : :
15 : : * the GNU General Public License as published by the Free
16 : : Software Foundation; either version 2 of the License, or (at
17 : : your option) any later version
18 : :
19 : : or both in parallel, as here.
20 : :
21 : : elfutils is distributed in the hope that it will be useful, but
22 : : WITHOUT ANY WARRANTY; without even the implied warranty of
23 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 : : General Public License for more details.
25 : :
26 : : You should have received copies of the GNU General Public License and
27 : : the GNU Lesser General Public License along with this program. If
28 : : not, see <http://www.gnu.org/licenses/>. */
29 : :
30 : : #ifdef HAVE_CONFIG_H
31 : : # include <config.h>
32 : : #endif
33 : :
34 : : #include <inttypes.h>
35 : : #include <stdio.h>
36 : : #include <stdlib.h>
37 : : #include <string.h>
38 : : #include <libeblP.h>
39 : :
40 : : #include "common.h"
41 : : #include "libelfP.h"
42 : : #include "libdwP.h"
43 : : #include "memory-access.h"
44 : :
45 : :
46 : : void
47 : 2243 : ebl_object_note (Ebl *ebl, uint32_t namesz, const char *name, uint32_t type,
48 : : uint32_t descsz, const char *desc)
49 : : {
50 [ - + ]: 2243 : if (! ebl->object_note (name, type, descsz, desc))
51 : : {
52 : : /* The machine specific function did not know this type. */
53 : :
54 [ - + ]: 2243 : if (strcmp ("stapsdt", name) == 0)
55 : : {
56 [ # # ]: 0 : if (type != 3)
57 : : {
58 : 0 : printf (_("unknown SDT version %u\n"), type);
59 : 0 : return;
60 : : }
61 : :
62 : : /* Descriptor starts with three addresses, pc, base ref and
63 : : semaphore. Then three zero terminated strings provider,
64 : : name and arguments. */
65 : :
66 : 0 : union
67 : : {
68 : : Elf64_Addr a64[3];
69 : : Elf32_Addr a32[3];
70 : : } addrs;
71 : :
72 : 0 : size_t addrs_size = gelf_fsize (ebl->elf, ELF_T_ADDR, 3, EV_CURRENT);
73 [ # # ]: 0 : if (descsz < addrs_size + 3)
74 : : {
75 : 0 : invalid_sdt:
76 : 0 : printf (_("invalid SDT probe descriptor\n"));
77 : 0 : return;
78 : : }
79 : :
80 : 0 : Elf_Data src =
81 : : {
82 : : .d_type = ELF_T_ADDR, .d_version = EV_CURRENT,
83 : : .d_buf = (void *) desc, .d_size = addrs_size
84 : : };
85 : :
86 : 0 : Elf_Data dst =
87 : : {
88 : : .d_type = ELF_T_ADDR, .d_version = EV_CURRENT,
89 : : .d_buf = &addrs, .d_size = addrs_size
90 : : };
91 : :
92 [ # # ]: 0 : if (gelf_xlatetom (ebl->elf, &dst, &src,
93 : 0 : elf_getident (ebl->elf, NULL)[EI_DATA]) == NULL)
94 : : {
95 : 0 : printf ("%s\n", elf_errmsg (-1));
96 : 0 : return;
97 : : }
98 : :
99 : 0 : const char *provider = desc + addrs_size;
100 : 0 : const char *pname = memchr (provider, '\0', desc + descsz - provider);
101 [ # # ]: 0 : if (pname == NULL)
102 : 0 : goto invalid_sdt;
103 : :
104 : 0 : ++pname;
105 : 0 : const char *args = memchr (pname, '\0', desc + descsz - pname);
106 [ # # ]: 0 : if (args == NULL ||
107 [ # # ]: 0 : memchr (++args, '\0', desc + descsz - pname) != desc + descsz - 1)
108 : 0 : goto invalid_sdt;
109 : :
110 : 0 : GElf_Addr pc;
111 : 0 : GElf_Addr base;
112 : 0 : GElf_Addr sem;
113 [ # # ]: 0 : if (gelf_getclass (ebl->elf) == ELFCLASS32)
114 : : {
115 : 0 : pc = addrs.a32[0];
116 : 0 : base = addrs.a32[1];
117 : 0 : sem = addrs.a32[2];
118 : : }
119 : : else
120 : : {
121 : 0 : pc = addrs.a64[0];
122 : 0 : base = addrs.a64[1];
123 : 0 : sem = addrs.a64[2];
124 : : }
125 : :
126 : 0 : printf (_(" PC: "));
127 : 0 : printf ("%#" PRIx64 ",", pc);
128 : 0 : printf (_(" Base: "));
129 : 0 : printf ("%#" PRIx64 ",", base);
130 : 0 : printf (_(" Semaphore: "));
131 : 0 : printf ("%#" PRIx64 "\n", sem);
132 : 0 : printf (_(" Provider: "));
133 : 0 : printf ("%s,", provider);
134 : 0 : printf (_(" Name: "));
135 : 0 : printf ("%s,", pname);
136 : 0 : printf (_(" Args: "));
137 : 0 : printf ("'%s'\n", args);
138 : 0 : return;
139 : : }
140 : :
141 [ + + ]: 2243 : if (strncmp (name, ELF_NOTE_GNU_BUILD_ATTRIBUTE_PREFIX,
142 : : strlen (ELF_NOTE_GNU_BUILD_ATTRIBUTE_PREFIX)) == 0
143 : 2022 : && (type == NT_GNU_BUILD_ATTRIBUTE_OPEN
144 [ + - ]: 2022 : || type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
145 : : {
146 : : /* There might or might not be a pair of addresses in the desc. */
147 [ + + ]: 2022 : if (descsz > 0)
148 : : {
149 : 302 : printf (" Address Range: ");
150 : :
151 : 302 : union
152 : : {
153 : : Elf64_Addr a64[2];
154 : : Elf32_Addr a32[2];
155 : : } addrs;
156 : :
157 : 302 : size_t addr_size = gelf_fsize (ebl->elf, ELF_T_ADDR,
158 : : 2, EV_CURRENT);
159 [ - + ]: 302 : if (descsz != addr_size)
160 : 302 : printf ("<unknown data>\n");
161 : : else
162 : : {
163 : 302 : Elf_Data src =
164 : : {
165 : : .d_type = ELF_T_ADDR, .d_version = EV_CURRENT,
166 : : .d_buf = (void *) desc, .d_size = descsz
167 : : };
168 : :
169 : 302 : Elf_Data dst =
170 : : {
171 : : .d_type = ELF_T_ADDR, .d_version = EV_CURRENT,
172 : : .d_buf = &addrs, .d_size = descsz
173 : : };
174 : :
175 [ - + ]: 302 : if (gelf_xlatetom (ebl->elf, &dst, &src,
176 : 302 : elf_getident (ebl->elf,
177 : 302 : NULL)[EI_DATA]) == NULL)
178 : 0 : printf ("%s\n", elf_errmsg (-1));
179 : : else
180 : : {
181 [ - + ]: 302 : if (addr_size == 4)
182 : 0 : printf ("%#" PRIx32 " - %#" PRIx32 "\n",
183 : : addrs.a32[0], addrs.a32[1]);
184 : : else
185 : 302 : printf ("%#" PRIx64 " - %#" PRIx64 "\n",
186 : : addrs.a64[0], addrs.a64[1]);
187 : : }
188 : : }
189 : : }
190 : :
191 : : /* Most data actually is inside the name.
192 : : https://fedoraproject.org/wiki/Toolchain/Watermark */
193 : :
194 : : /* We need at least 2 chars of data to describe the
195 : : attribute and value encodings. */
196 : 2022 : const char *data = (name
197 : : + strlen (ELF_NOTE_GNU_BUILD_ATTRIBUTE_PREFIX));
198 [ - + ]: 2022 : if (namesz < 2)
199 : : {
200 : 0 : printf ("<insufficient data>\n");
201 : 0 : return;
202 : : }
203 : :
204 : 2022 : printf (" ");
205 : :
206 : : /* In most cases the value comes right after the encoding bytes. */
207 : 2022 : const char *value = &data[2];
208 [ + + - - : 2022 : switch (data[1])
+ + + + +
- ]
209 : : {
210 : : case GNU_BUILD_ATTRIBUTE_VERSION:
211 : 289 : printf ("VERSION: ");
212 : : break;
213 : : case GNU_BUILD_ATTRIBUTE_STACK_PROT:
214 : 146 : printf ("STACK_PROT: ");
215 : : break;
216 : : case GNU_BUILD_ATTRIBUTE_RELRO:
217 : 0 : printf ("RELRO: ");
218 : : break;
219 : : case GNU_BUILD_ATTRIBUTE_STACK_SIZE:
220 : 0 : printf ("STACK_SIZE: ");
221 : : break;
222 : : case GNU_BUILD_ATTRIBUTE_TOOL:
223 : 133 : printf ("TOOL: ");
224 : : break;
225 : : case GNU_BUILD_ATTRIBUTE_ABI:
226 : 146 : printf ("ABI: ");
227 : : break;
228 : : case GNU_BUILD_ATTRIBUTE_PIC:
229 : 146 : printf ("PIC: ");
230 : : break;
231 : : case GNU_BUILD_ATTRIBUTE_SHORT_ENUM:
232 : 146 : printf ("SHORT_ENUM: ");
233 : : break;
234 : 1016 : case 32 ... 126:
235 : 1016 : printf ("\"%s\": ", &data[1]);
236 : 1016 : value += strlen (&data[1]) + 1;
237 : 1016 : break;
238 : : default:
239 : 0 : printf ("<unknown>: ");
240 : : break;
241 : : }
242 : :
243 [ + + + + : 2022 : switch (data[0])
- ]
244 : : {
245 : 874 : case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
246 : : {
247 : : /* Any numbers are always in (unsigned) little endian. */
248 : 874 : static const Dwarf dbg
249 : : = { .other_byte_order = MY_ELFDATA != ELFDATA2LSB };
250 : 874 : size_t bytes = namesz - (value - name);
251 : 874 : uint64_t val;
252 [ + + ]: 874 : if (bytes == 1)
253 : 290 : val = *(unsigned char *) value;
254 [ + + ]: 584 : else if (bytes == 2)
255 : 438 : val = read_2ubyte_unaligned (&dbg, value);
256 [ - + ]: 146 : else if (bytes == 4)
257 : 0 : val = read_4ubyte_unaligned (&dbg, value);
258 [ + - ]: 146 : else if (bytes == 8)
259 : 146 : val = read_8ubyte_unaligned (&dbg, value);
260 : : else
261 : 0 : goto unknown;
262 : 874 : printf ("%" PRIx64, val);
263 : : }
264 : : break;
265 : : case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
266 : 422 : printf ("\"%s\"", value);
267 : : break;
268 : : case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
269 : 300 : printf ("TRUE");
270 : : break;
271 : : case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
272 : 426 : printf ("FALSE");
273 : : break;
274 : : default:
275 : : {
276 : 0 : unknown:
277 : 0 : printf ("<unknown>");
278 : : }
279 : : break;
280 : : }
281 : :
282 : 2022 : printf ("\n");
283 : :
284 : 2022 : return;
285 : : }
286 : :
287 : : /* NT_VERSION doesn't have any info. All data is in the name. */
288 [ + + ]: 221 : if (descsz == 0 && type == NT_VERSION)
289 : : return;
290 : :
291 : : /* Everything else should have the "GNU" owner name. */
292 [ + + ]: 216 : if (strcmp ("GNU", name) != 0)
293 : : return;
294 : :
295 [ + - + + : 215 : switch (type)
- ]
296 : : {
297 : 112 : case NT_GNU_BUILD_ID:
298 [ + - + - ]: 112 : if (strcmp (name, "GNU") == 0 && descsz > 0)
299 : : {
300 : 112 : printf (_(" Build ID: "));
301 : 112 : uint_fast32_t i;
302 [ + + ]: 2352 : for (i = 0; i < descsz - 1; ++i)
303 : 2128 : printf ("%02" PRIx8, (uint8_t) desc[i]);
304 : 112 : printf ("%02" PRIx8 "\n", (uint8_t) desc[i]);
305 : : }
306 : : break;
307 : :
308 : 0 : case NT_GNU_GOLD_VERSION:
309 [ # # # # ]: 0 : if (strcmp (name, "GNU") == 0 && descsz > 0)
310 : : /* A non-null terminated version string. */
311 : 0 : printf (_(" Linker version: %.*s\n"),
312 : : (int) descsz, desc);
313 : : break;
314 : :
315 : 14 : case NT_GNU_PROPERTY_TYPE_0:
316 [ + - + - ]: 14 : if (strcmp (name, "GNU") == 0 && descsz > 0)
317 : : {
318 : : /* There are at least 2 words. type and datasz. */
319 [ + - ]: 29 : while (descsz >= 8)
320 : : {
321 : 15 : struct pr_prop
322 : : {
323 : : GElf_Word pr_type;
324 : : GElf_Word pr_datasz;
325 : : } prop;
326 : :
327 : 15 : Elf_Data in =
328 : : {
329 : : .d_version = EV_CURRENT,
330 : : .d_type = ELF_T_WORD,
331 : : .d_size = 8,
332 : : .d_buf = (void *) desc
333 : : };
334 : 15 : Elf_Data out =
335 : : {
336 : : .d_version = EV_CURRENT,
337 : : .d_type = ELF_T_WORD,
338 : : .d_size = descsz,
339 : : .d_buf = (void *) &prop
340 : : };
341 : :
342 [ - + ]: 15 : if (gelf_xlatetom (ebl->elf, &out, &in,
343 : 15 : elf_getident (ebl->elf,
344 : 15 : NULL)[EI_DATA]) == NULL)
345 : : {
346 : 0 : printf ("%s\n", elf_errmsg (-1));
347 : 0 : return;
348 : : }
349 : :
350 : 15 : desc += 8;
351 : 15 : descsz -= 8;
352 : :
353 [ - + ]: 15 : if (prop.pr_datasz > descsz)
354 : : {
355 : 0 : printf ("BAD property datasz: %" PRId32 "\n",
356 : : prop.pr_datasz);
357 : 0 : return;
358 : : }
359 : :
360 : 15 : int elfclass = gelf_getclass (ebl->elf);
361 : 15 : char *elfident = elf_getident (ebl->elf, NULL);
362 : 15 : GElf_Ehdr ehdr;
363 : 15 : gelf_getehdr (ebl->elf, &ehdr);
364 : :
365 : : /* Prefix. */
366 : 15 : printf (" ");
367 [ + + ]: 15 : if (prop.pr_type == GNU_PROPERTY_STACK_SIZE)
368 : : {
369 : 4 : printf ("STACK_SIZE ");
370 : 4 : union
371 : : {
372 : : Elf64_Addr a64;
373 : : Elf32_Addr a32;
374 : : } addr;
375 [ + + - + ]: 4 : if ((elfclass == ELFCLASS32 && prop.pr_datasz == 4)
376 [ + - + - ]: 2 : || (elfclass == ELFCLASS64 && prop.pr_datasz == 8))
377 : : {
378 : 4 : in.d_type = ELF_T_ADDR;
379 : 4 : out.d_type = ELF_T_ADDR;
380 : 4 : in.d_size = prop.pr_datasz;
381 : 4 : out.d_size = prop.pr_datasz;
382 : 4 : in.d_buf = (void *) desc;
383 : 4 : out.d_buf = (elfclass == ELFCLASS32
384 : : ? (void *) &addr.a32
385 : : : (void *) &addr.a64);
386 : :
387 [ - + ]: 4 : if (gelf_xlatetom (ebl->elf, &out, &in,
388 : 4 : elfident[EI_DATA]) == NULL)
389 : : {
390 : 0 : printf ("%s\n", elf_errmsg (-1));
391 : 0 : return;
392 : : }
393 [ + + ]: 4 : if (elfclass == ELFCLASS32)
394 : 2 : printf ("%#" PRIx32 "\n", addr.a32);
395 : : else
396 : 2 : printf ("%#" PRIx64 "\n", addr.a64);
397 : : }
398 : : else
399 : 4 : printf (" (garbage datasz: %" PRIx32 ")\n",
400 : : prop.pr_datasz);
401 : : }
402 [ + + ]: 11 : else if (prop.pr_type == GNU_PROPERTY_NO_COPY_ON_PROTECTED)
403 : : {
404 : 4 : printf ("NO_COPY_ON_PROTECTION");
405 [ + - ]: 4 : if (prop.pr_datasz == 0)
406 : 4 : printf ("\n");
407 : : else
408 : 0 : printf (" (garbage datasz: %" PRIx32 ")\n",
409 : : prop.pr_datasz);
410 : : }
411 : 7 : else if (prop.pr_type >= GNU_PROPERTY_LOPROC
412 [ + - ]: 7 : && prop.pr_type <= GNU_PROPERTY_HIPROC
413 : 7 : && (ehdr.e_machine == EM_386
414 [ + + ]: 7 : || ehdr.e_machine == EM_X86_64))
415 : : {
416 : 6 : printf ("X86 ");
417 [ + + ]: 6 : if (prop.pr_type == GNU_PROPERTY_X86_FEATURE_1_AND)
418 : : {
419 : 4 : printf ("FEATURE_1_AND: ");
420 : :
421 [ + - ]: 4 : if (prop.pr_datasz == 4)
422 : : {
423 : 4 : GElf_Word data;
424 : 4 : in.d_type = ELF_T_WORD;
425 : 4 : out.d_type = ELF_T_WORD;
426 : 4 : in.d_size = 4;
427 : 4 : out.d_size = 4;
428 : 4 : in.d_buf = (void *) desc;
429 : 4 : out.d_buf = (void *) &data;
430 : :
431 [ - + ]: 4 : if (gelf_xlatetom (ebl->elf, &out, &in,
432 : 4 : elfident[EI_DATA]) == NULL)
433 : : {
434 : 0 : printf ("%s\n", elf_errmsg (-1));
435 : 0 : return;
436 : : }
437 : 4 : printf ("%08" PRIx32 " ", data);
438 : :
439 [ + - ]: 4 : if ((data & GNU_PROPERTY_X86_FEATURE_1_IBT)
440 : : != 0)
441 : : {
442 : 4 : printf ("IBT");
443 : 4 : data &= ~GNU_PROPERTY_X86_FEATURE_1_IBT;
444 [ + - ]: 4 : if (data != 0)
445 : 4 : printf (" ");
446 : : }
447 : :
448 [ + - ]: 4 : if ((data & GNU_PROPERTY_X86_FEATURE_1_SHSTK)
449 : : != 0)
450 : : {
451 : 4 : printf ("SHSTK");
452 : 4 : data &= ~GNU_PROPERTY_X86_FEATURE_1_SHSTK;
453 [ - + ]: 4 : if (data != 0)
454 : 0 : printf (" ");
455 : : }
456 : :
457 [ - + ]: 4 : if (data != 0)
458 : 4 : printf ("UNKNOWN");
459 : : }
460 : : else
461 : 0 : printf ("<bad datasz: %" PRId32 ">",
462 : : prop.pr_datasz);
463 : :
464 : 4 : printf ("\n");
465 : : }
466 : : else
467 : : {
468 : 2 : printf ("%#" PRIx32, prop.pr_type);
469 [ + - ]: 2 : if (prop.pr_datasz > 0)
470 : : {
471 : 2 : printf (" data: ");
472 : 2 : size_t i;
473 [ + + ]: 10 : for (i = 0; i < prop.pr_datasz - 1; i++)
474 : 6 : printf ("%02" PRIx8 " ", (uint8_t) desc[i]);
475 : 2 : printf ("%02" PRIx8 "\n", (uint8_t) desc[i]);
476 : : }
477 : : }
478 : : }
479 [ + - ]: 1 : else if (prop.pr_type >= GNU_PROPERTY_LOPROC
480 : : && prop.pr_type <= GNU_PROPERTY_HIPROC
481 [ + - ]: 1 : && ehdr.e_machine == EM_AARCH64)
482 : : {
483 : 1 : printf ("AARCH64 ");
484 [ + - ]: 1 : if (prop.pr_type == GNU_PROPERTY_AARCH64_FEATURE_1_AND)
485 : : {
486 : 1 : printf ("FEATURE_1_AND: ");
487 : :
488 [ + - ]: 1 : if (prop.pr_datasz == 4)
489 : : {
490 : 1 : GElf_Word data;
491 : 1 : in.d_type = ELF_T_WORD;
492 : 1 : out.d_type = ELF_T_WORD;
493 : 1 : in.d_size = 4;
494 : 1 : out.d_size = 4;
495 : 1 : in.d_buf = (void *) desc;
496 : 1 : out.d_buf = (void *) &data;
497 : :
498 [ - + ]: 1 : if (gelf_xlatetom (ebl->elf, &out, &in,
499 : 1 : elfident[EI_DATA]) == NULL)
500 : : {
501 : 0 : printf ("%s\n", elf_errmsg (-1));
502 : 0 : return;
503 : : }
504 : 1 : printf ("%08" PRIx32 " ", data);
505 : :
506 [ + - ]: 1 : if ((data & GNU_PROPERTY_AARCH64_FEATURE_1_BTI)
507 : : != 0)
508 : : {
509 : 1 : printf ("BTI");
510 : 1 : data &= ~GNU_PROPERTY_AARCH64_FEATURE_1_BTI;
511 [ + - ]: 1 : if (data != 0)
512 : 1 : printf (" ");
513 : : }
514 : :
515 [ + - ]: 1 : if ((data & GNU_PROPERTY_AARCH64_FEATURE_1_PAC)
516 : : != 0)
517 : : {
518 : 1 : printf ("PAC");
519 : 1 : data &= ~GNU_PROPERTY_AARCH64_FEATURE_1_PAC;
520 [ - + ]: 1 : if (data != 0)
521 : 0 : printf (" ");
522 : : }
523 : :
524 [ - + ]: 1 : if (data != 0)
525 : 1 : printf ("UNKNOWN");
526 : : }
527 : : else
528 : 0 : printf ("<bad datasz: %" PRId32 ">",
529 : : prop.pr_datasz);
530 : :
531 : 1 : printf ("\n");
532 : : }
533 : : else
534 : : {
535 : 0 : printf ("%#" PRIx32, prop.pr_type);
536 [ # # ]: 0 : if (prop.pr_datasz > 0)
537 : : {
538 : 0 : printf (" data: ");
539 : 0 : size_t i;
540 [ # # ]: 0 : for (i = 0; i < prop.pr_datasz - 1; i++)
541 : 0 : printf ("%02" PRIx8 " ", (uint8_t) desc[i]);
542 : 0 : printf ("%02" PRIx8 "\n", (uint8_t) desc[i]);
543 : : }
544 : : }
545 : : }
546 : : else
547 : : {
548 [ # # ]: 0 : if (prop.pr_type >= GNU_PROPERTY_LOPROC
549 : : && prop.pr_type <= GNU_PROPERTY_HIPROC)
550 : 0 : printf ("proc_type %#" PRIx32, prop.pr_type);
551 [ # # ]: 0 : else if (prop.pr_type >= GNU_PROPERTY_LOUSER
552 : : && prop.pr_type <= GNU_PROPERTY_HIUSER)
553 : 0 : printf ("app_type %#" PRIx32, prop.pr_type);
554 : : else
555 : 0 : printf ("unknown_type %#" PRIx32, prop.pr_type);
556 : :
557 [ # # ]: 0 : if (prop.pr_datasz > 0)
558 : : {
559 : 0 : printf (" data: ");
560 : 0 : size_t i;
561 [ # # ]: 0 : for (i = 0; i < prop.pr_datasz - 1; i++)
562 : 0 : printf ("%02" PRIx8 " ", (uint8_t) desc[i]);
563 : 0 : printf ("%02" PRIx8 "\n", (uint8_t) desc[i]);
564 : : }
565 : : }
566 : :
567 [ + + ]: 15 : if (elfclass == ELFCLASS32)
568 : 5 : prop.pr_datasz = NOTE_ALIGN4 (prop.pr_datasz);
569 : : else
570 : 10 : prop.pr_datasz = NOTE_ALIGN8 (prop.pr_datasz);
571 : :
572 : 15 : desc += prop.pr_datasz;
573 [ + + ]: 15 : if (descsz > prop.pr_datasz)
574 : 1 : descsz -= prop.pr_datasz;
575 : : else
576 : : descsz = 0;
577 : : }
578 : : }
579 : : break;
580 : :
581 : 89 : case NT_GNU_ABI_TAG:
582 [ + - + - ]: 89 : if (descsz >= 8 && descsz % 4 == 0)
583 : : {
584 : 89 : Elf_Data in =
585 : : {
586 : : .d_version = EV_CURRENT,
587 : : .d_type = ELF_T_WORD,
588 : : .d_size = descsz,
589 : : .d_buf = (void *) desc
590 : : };
591 : : /* Normally NT_GNU_ABI_TAG is just 4 words (16 bytes). If it
592 : : is much (4*) larger dynamically allocate memory to convert. */
593 : : #define FIXED_TAG_BYTES 16
594 : 89 : uint32_t sbuf[FIXED_TAG_BYTES];
595 : 89 : uint32_t *buf;
596 [ - + ]: 89 : if (unlikely (descsz / 4 > FIXED_TAG_BYTES))
597 : : {
598 : 0 : buf = malloc (descsz);
599 [ # # ]: 0 : if (unlikely (buf == NULL))
600 : 0 : return;
601 : : }
602 : : else
603 : : buf = sbuf;
604 : 89 : Elf_Data out =
605 : : {
606 : : .d_version = EV_CURRENT,
607 : : .d_type = ELF_T_WORD,
608 : : .d_size = descsz,
609 : : .d_buf = buf
610 : : };
611 : :
612 [ + - ]: 89 : if (elf32_xlatetom (&out, &in, ebl->data) != NULL)
613 : : {
614 : 89 : const char *os;
615 [ - - - - : 89 : switch (buf[0])
+ ]
616 : : {
617 : : case ELF_NOTE_OS_LINUX:
618 : : os = "Linux";
619 : : break;
620 : :
621 : 0 : case ELF_NOTE_OS_GNU:
622 : 0 : os = "GNU";
623 : 0 : break;
624 : :
625 : 0 : case ELF_NOTE_OS_SOLARIS2:
626 : 0 : os = "Solaris";
627 : 0 : break;
628 : :
629 : 0 : case ELF_NOTE_OS_FREEBSD:
630 : 0 : os = "FreeBSD";
631 : 0 : break;
632 : :
633 : 0 : default:
634 : 0 : os = "???";
635 : 0 : break;
636 : : }
637 : :
638 : 89 : printf (_(" OS: %s, ABI: "), os);
639 [ + + ]: 356 : for (size_t cnt = 1; cnt < descsz / 4; ++cnt)
640 : : {
641 [ + + ]: 267 : if (cnt > 1)
642 [ - + ]: 178 : putchar_unlocked ('.');
643 : 267 : printf ("%" PRIu32, buf[cnt]);
644 : : }
645 [ - + ]: 89 : putchar_unlocked ('\n');
646 : : }
647 [ - + ]: 89 : if (descsz / 4 > FIXED_TAG_BYTES)
648 : 0 : free (buf);
649 : 89 : break;
650 : : }
651 : : FALLTHROUGH;
652 : :
653 : : default:
654 : : /* Unknown type. */
655 : : break;
656 : : }
657 : 0 : }
658 : : }
|