blob: bc9950ffb13660bc9635f2169ed74e172156c2c0 [file] [log] [blame]
Roland McGrathc76f0b02007-09-27 07:31:33 +00001/* Conversion functions for notes.
Mark Wielaard5199e152018-10-15 23:35:47 +02002 Copyright (C) 2007, 2009, 2014, 2018 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003 This file is part of elfutils.
Roland McGrathc76f0b02007-09-27 07:31:33 +00004
Mark Wielaardde2ed972012-06-05 17:15:16 +02005 This file is free software; you can redistribute it and/or modify
6 it under the terms of either
Roland McGrathc76f0b02007-09-27 07:31:33 +00007
Mark Wielaardde2ed972012-06-05 17:15:16 +02008 * the GNU Lesser General Public License as published by the Free
9 Software Foundation; either version 3 of the License, or (at
10 your option) any later version
11
12 or
13
14 * the GNU General Public License as published by the Free
15 Software Foundation; either version 2 of the License, or (at
16 your option) any later version
17
18 or both in parallel, as here.
19
20 elfutils is distributed in the hope that it will be useful, but
Roland McGrathc76f0b02007-09-27 07:31:33 +000021 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
Mark Wielaardde2ed972012-06-05 17:15:16 +020025 You should have received copies of the GNU General Public License and
26 the GNU Lesser General Public License along with this program. If
27 not, see <http://www.gnu.org/licenses/>. */
Roland McGrathc76f0b02007-09-27 07:31:33 +000028
29static void
Mark Wielaard5199e152018-10-15 23:35:47 +020030elf_cvt_note (void *dest, const void *src, size_t len, int encode,
31 bool nhdr8)
Roland McGrathc76f0b02007-09-27 07:31:33 +000032{
Mark Wielaard5199e152018-10-15 23:35:47 +020033 /* Note that the header is always the same size, but the padding
34 differs for GNU Property notes. */
Roland McGrathc76f0b02007-09-27 07:31:33 +000035 assert (sizeof (Elf32_Nhdr) == sizeof (Elf64_Nhdr));
36
Roland McGrath315ebd52009-01-05 00:10:11 -080037 while (len >= sizeof (Elf32_Nhdr))
Roland McGrathc76f0b02007-09-27 07:31:33 +000038 {
Mark Wielaard5199e152018-10-15 23:35:47 +020039 /* Convert the header. */
Roland McGrathc76f0b02007-09-27 07:31:33 +000040 (1 ? Elf32_cvt_Nhdr : Elf64_cvt_Nhdr) (dest, src, sizeof (Elf32_Nhdr),
41 encode);
42 const Elf32_Nhdr *n = encode ? src : dest;
Roland McGrathc76f0b02007-09-27 07:31:33 +000043
Mark Wielaard5199e152018-10-15 23:35:47 +020044 size_t note_len = sizeof *n;
45
46 /* desc needs to be aligned. */
47 note_len += n->n_namesz;
48 note_len = nhdr8 ? NOTE_ALIGN8 (note_len) : NOTE_ALIGN4 (note_len);
Mark Wielaarde65d91d2019-01-16 12:25:57 +010049 if (note_len > len || note_len < sizeof *n)
Mark Wielaard5199e152018-10-15 23:35:47 +020050 break;
51
52 /* data as a whole needs to be aligned. */
53 note_len += n->n_descsz;
54 note_len = nhdr8 ? NOTE_ALIGN8 (note_len) : NOTE_ALIGN4 (note_len);
Mark Wielaarde65d91d2019-01-16 12:25:57 +010055 if (note_len > len || note_len < sizeof *n)
Mark Wielaard5199e152018-10-15 23:35:47 +020056 break;
57
58 /* Copy or skip the note data. */
59 size_t note_data_len = note_len - sizeof *n;
Roland McGrathc76f0b02007-09-27 07:31:33 +000060 src += sizeof *n;
61 dest += sizeof *n;
Roland McGrathc76f0b02007-09-27 07:31:33 +000062 if (src != dest)
Mark Wielaard5199e152018-10-15 23:35:47 +020063 memcpy (dest, src, note_data_len);
Roland McGrathc76f0b02007-09-27 07:31:33 +000064
Mark Wielaard5199e152018-10-15 23:35:47 +020065 src += note_data_len;
66 dest += note_data_len;
67 len -= note_len;
Roland McGrathc76f0b02007-09-27 07:31:33 +000068 }
Mark Wielaard51abc742014-11-23 15:27:23 +010069
Mark Wielaard5199e152018-10-15 23:35:47 +020070 /* Copy over any leftover data unconverted. Probably part of
Mark Wielaard51abc742014-11-23 15:27:23 +010071 truncated name/desc data. */
72 if (unlikely (len > 0) && src != dest)
73 memcpy (dest, src, len);
Roland McGrathc76f0b02007-09-27 07:31:33 +000074}
Mark Wielaard5199e152018-10-15 23:35:47 +020075
76static void
77elf_cvt_note4 (void *dest, const void *src, size_t len, int encode)
78{
79 elf_cvt_note (dest, src, len, encode, false);
80}
81
82static void
83elf_cvt_note8 (void *dest, const void *src, size_t len, int encode)
84{
85 elf_cvt_note (dest, src, len, encode, true);
86}