Branch data Line data Source code
1 : : /* Create descriptor for processing file.
2 : : Copyright (C) 1998-2010, 2012, 2014, 2015, 2016 Red Hat, Inc.
3 : : Copyright (C) 2021, 2022 Mark J. Wielaard <mark@klomp.org>
4 : : This file is part of elfutils.
5 : : Written by Ulrich Drepper <drepper@redhat.com>, 1998.
6 : :
7 : : This file is free software; you can redistribute it and/or modify
8 : : it under the terms of either
9 : :
10 : : * the GNU Lesser General Public License as published by the Free
11 : : Software Foundation; either version 3 of the License, or (at
12 : : your option) any later version
13 : :
14 : : or
15 : :
16 : : * the GNU General Public License as published by the Free
17 : : Software Foundation; either version 2 of the License, or (at
18 : : your option) any later version
19 : :
20 : : or both in parallel, as here.
21 : :
22 : : elfutils is distributed in the hope that it will be useful, but
23 : : WITHOUT ANY WARRANTY; without even the implied warranty of
24 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 : : General Public License for more details.
26 : :
27 : : You should have received copies of the GNU General Public License and
28 : : the GNU Lesser General Public License along with this program. If
29 : : not, see <http://www.gnu.org/licenses/>. */
30 : :
31 : : #ifdef HAVE_CONFIG_H
32 : : # include <config.h>
33 : : #endif
34 : :
35 : : #include <assert.h>
36 : : #include <ctype.h>
37 : : #include <errno.h>
38 : : #include <fcntl.h>
39 : : #include <stdbool.h>
40 : : #include <stddef.h>
41 : : #include <stdint.h>
42 : : #include <string.h>
43 : : #include <sys/stat.h>
44 : :
45 : : #include "libelfP.h"
46 : : #include "common.h"
47 : :
48 : :
49 : : /* Create descriptor for archive in memory. */
50 : : static inline Elf *
51 : 316 : file_read_ar (int fildes, void *map_address, off_t offset, size_t maxsize,
52 : : Elf_Cmd cmd, Elf *parent)
53 : : {
54 : 316 : Elf *elf;
55 : :
56 : : /* Create a descriptor. */
57 : 316 : elf = allocate_elf (fildes, map_address, offset, maxsize, cmd, parent,
58 : : ELF_K_AR, 0);
59 [ + - ]: 316 : if (elf != NULL)
60 : : {
61 : : /* We don't read all the symbol tables in advance. All this will
62 : : happen on demand. */
63 : 316 : elf->state.ar.offset = offset + SARMAG;
64 : :
65 : 316 : elf->state.ar.elf_ar_hdr.ar_rawname = elf->state.ar.raw_name;
66 : : }
67 : :
68 : 316 : return elf;
69 : : }
70 : :
71 : :
72 : : static size_t
73 : 31866 : get_shnum (void *map_address, unsigned char *e_ident, int fildes,
74 : : int64_t offset, size_t maxsize)
75 : : {
76 : 31866 : size_t result;
77 : 31866 : union
78 : : {
79 : : Elf32_Ehdr *e32;
80 : : Elf64_Ehdr *e64;
81 : : void *p;
82 : : } ehdr;
83 : 31866 : union
84 : : {
85 : : Elf32_Ehdr e32;
86 : : Elf64_Ehdr e64;
87 : : } ehdr_mem;
88 : 31866 : bool is32 = e_ident[EI_CLASS] == ELFCLASS32;
89 : :
90 [ + - ]: 31866 : if ((is32 && maxsize < sizeof (Elf32_Ehdr))
91 [ - + ]: 31866 : || (!is32 && maxsize < sizeof (Elf64_Ehdr)))
92 : : {
93 : 0 : __libelf_seterrno (ELF_E_INVALID_ELF);
94 : 0 : return (size_t) -1l;
95 : : }
96 : :
97 : : /* Make the ELF header available. */
98 [ + + ]: 31866 : if (e_ident[EI_DATA] == MY_ELFDATA
99 : : && (ALLOW_UNALIGNED
100 : : || (((size_t) e_ident
101 : : & ((is32 ? __alignof__ (Elf32_Ehdr) : __alignof__ (Elf64_Ehdr))
102 : : - 1)) == 0)))
103 : : ehdr.p = e_ident;
104 : : else
105 : : {
106 : : /* We already read the ELF header. We have to copy the header
107 : : since we possibly modify the data here and the caller
108 : : expects the memory it passes in to be preserved. */
109 : 1678 : ehdr.p = &ehdr_mem;
110 : :
111 [ + + ]: 1678 : if (is32)
112 : : {
113 : 796 : if (ALLOW_UNALIGNED)
114 : : {
115 : 796 : ehdr_mem.e32.e_shnum = ((Elf32_Ehdr *) e_ident)->e_shnum;
116 : 796 : ehdr_mem.e32.e_shoff = ((Elf32_Ehdr *) e_ident)->e_shoff;
117 : : }
118 : : else
119 : : memcpy (&ehdr_mem, e_ident, sizeof (Elf32_Ehdr));
120 : :
121 : 796 : if (e_ident[EI_DATA] != MY_ELFDATA)
122 : : {
123 : 796 : CONVERT (ehdr_mem.e32.e_shnum);
124 : 796 : CONVERT (ehdr_mem.e32.e_shoff);
125 : : }
126 : : }
127 : : else
128 : : {
129 : 882 : if (ALLOW_UNALIGNED)
130 : : {
131 : 882 : ehdr_mem.e64.e_shnum = ((Elf64_Ehdr *) e_ident)->e_shnum;
132 : 882 : ehdr_mem.e64.e_shoff = ((Elf64_Ehdr *) e_ident)->e_shoff;
133 : : }
134 : : else
135 : : memcpy (&ehdr_mem, e_ident, sizeof (Elf64_Ehdr));
136 : :
137 : 882 : if (e_ident[EI_DATA] != MY_ELFDATA)
138 : : {
139 : 882 : CONVERT (ehdr_mem.e64.e_shnum);
140 : 882 : CONVERT (ehdr_mem.e64.e_shoff);
141 : : }
142 : : }
143 : : }
144 : :
145 [ + + ]: 31866 : if (is32)
146 : : {
147 : : /* Get the number of sections from the ELF header. */
148 : 2208 : result = ehdr.e32->e_shnum;
149 : :
150 [ + + + + ]: 2208 : if (unlikely (result == 0) && ehdr.e32->e_shoff != 0)
151 : : {
152 [ + - ]: 36 : if (unlikely (ehdr.e32->e_shoff >= maxsize)
153 [ - + ]: 36 : || unlikely (maxsize - ehdr.e32->e_shoff < sizeof (Elf32_Shdr)))
154 : : /* Cannot read the first section header. */
155 : : return 0;
156 : :
157 [ + + ]: 36 : if (likely (map_address != NULL) && e_ident[EI_DATA] == MY_ELFDATA
158 [ + + ]: 28 : && (ALLOW_UNALIGNED
159 : : || (((size_t) ((char *) (map_address + ehdr.e32->e_shoff
160 : : + offset)))
161 : : & (__alignof__ (Elf32_Shdr) - 1)) == 0))
162 : : /* We can directly access the memory. */
163 : 22 : result = ((Elf32_Shdr *) ((char *) map_address + ehdr.e32->e_shoff
164 : 22 : + offset))->sh_size;
165 : : else
166 : : {
167 : 14 : Elf32_Word size;
168 : 14 : ssize_t r;
169 : :
170 [ + + ]: 14 : if (likely (map_address != NULL))
171 : : /* gcc will optimize the memcpy to a simple memory
172 : : access while taking care of alignment issues. */
173 : 20 : memcpy (&size, ((char *) map_address
174 : : + ehdr.e32->e_shoff
175 : 6 : + offset
176 : 6 : + offsetof (Elf32_Shdr, sh_size)),
177 : : sizeof (Elf32_Word));
178 : : else
179 [ - + ]: 8 : if (unlikely ((r = pread_retry (fildes, &size,
180 : : sizeof (Elf32_Word),
181 : : offset + ehdr.e32->e_shoff
182 : : + offsetof (Elf32_Shdr,
183 : : sh_size)))
184 : : != sizeof (Elf32_Word)))
185 : : {
186 [ # # ]: 0 : if (r < 0)
187 : 0 : __libelf_seterrno (ELF_E_INVALID_FILE);
188 : : else
189 : 0 : __libelf_seterrno (ELF_E_INVALID_ELF);
190 : 0 : return (size_t) -1l;
191 : : }
192 : :
193 [ + + ]: 14 : if (e_ident[EI_DATA] != MY_ELFDATA)
194 : 6 : CONVERT (size);
195 : :
196 : 14 : result = size;
197 : : }
198 : : }
199 : :
200 : : /* If the section headers were truncated, pretend none were there. */
201 [ - + ]: 2208 : if (ehdr.e32->e_shoff > maxsize
202 [ - + ]: 2208 : || maxsize - ehdr.e32->e_shoff < sizeof (Elf32_Shdr) * result)
203 : 8 : result = 0;
204 : : }
205 : : else
206 : : {
207 : : /* Get the number of sections from the ELF header. */
208 : 29658 : result = ehdr.e64->e_shnum;
209 : :
210 [ + + + + ]: 29658 : if (unlikely (result == 0) && ehdr.e64->e_shoff != 0)
211 : : {
212 [ + - ]: 14 : if (unlikely (ehdr.e64->e_shoff >= maxsize)
213 [ + - ]: 14 : || unlikely (ehdr.e64->e_shoff + sizeof (Elf64_Shdr) > maxsize))
214 : : /* Cannot read the first section header. */
215 : 0 : return 0;
216 : :
217 : 14 : Elf64_Xword size;
218 [ + - ]: 14 : if (likely (map_address != NULL) && e_ident[EI_DATA] == MY_ELFDATA
219 [ + + ]: 14 : && (ALLOW_UNALIGNED
220 : : || (((size_t) ((char *) (map_address + ehdr.e64->e_shoff
221 : : + offset)))
222 : : & (__alignof__ (Elf64_Shdr) - 1)) == 0))
223 : : /* We can directly access the memory. */
224 : 8 : size = ((Elf64_Shdr *) ((char *) map_address + ehdr.e64->e_shoff
225 : 8 : + offset))->sh_size;
226 : : else
227 : : {
228 : 6 : ssize_t r;
229 [ + - ]: 6 : if (likely (map_address != NULL))
230 : : /* gcc will optimize the memcpy to a simple memory
231 : : access while taking care of alignment issues. */
232 : 12 : memcpy (&size, ((char *) map_address
233 : : + ehdr.e64->e_shoff
234 : 6 : + offset
235 : 6 : + offsetof (Elf64_Shdr, sh_size)),
236 : : sizeof (Elf64_Xword));
237 : : else
238 [ # # ]: 0 : if (unlikely ((r = pread_retry (fildes, &size,
239 : : sizeof (Elf64_Xword),
240 : : offset + ehdr.e64->e_shoff
241 : : + offsetof (Elf64_Shdr,
242 : : sh_size)))
243 : : != sizeof (Elf64_Xword)))
244 : : {
245 [ # # ]: 0 : if (r < 0)
246 : 0 : __libelf_seterrno (ELF_E_INVALID_FILE);
247 : : else
248 : 0 : __libelf_seterrno (ELF_E_INVALID_ELF);
249 : 0 : return (size_t) -1l;
250 : : }
251 : :
252 [ + - ]: 6 : if (e_ident[EI_DATA] != MY_ELFDATA)
253 : 6 : CONVERT (size);
254 : : }
255 : :
256 : : /* Although sh_size is an Elf64_Xword and can contain a 64bit
257 : : value, we only expect an 32bit value max. GElf_Word is
258 : : 32bit unsigned. */
259 [ - + ]: 14 : if (size > ~((GElf_Word) 0))
260 : : {
261 : : /* Invalid value, it is too large. */
262 : 0 : __libelf_seterrno (ELF_E_INVALID_ELF);
263 : 0 : return (size_t) -1l;
264 : : }
265 : :
266 : 14 : result = size;
267 : : }
268 : :
269 : : /* If the section headers were truncated, pretend none were there. */
270 [ + + ]: 29658 : if (ehdr.e64->e_shoff > maxsize
271 [ - + ]: 29650 : || maxsize - ehdr.e64->e_shoff < sizeof (Elf64_Shdr) * result)
272 : 8 : result = 0;
273 : : }
274 : :
275 : : return result;
276 : : }
277 : :
278 : :
279 : : /* Create descriptor for ELF file in memory. */
280 : : static Elf *
281 : 31866 : file_read_elf (int fildes, void *map_address, unsigned char *e_ident,
282 : : int64_t offset, size_t maxsize, Elf_Cmd cmd, Elf *parent)
283 : : {
284 : : /* Verify the binary is of the class we can handle. */
285 [ + - - + ]: 31866 : if (unlikely ((e_ident[EI_CLASS] != ELFCLASS32
286 : : && e_ident[EI_CLASS] != ELFCLASS64)
287 : : /* We also can only handle two encodings. */
288 : : || (e_ident[EI_DATA] != ELFDATA2LSB
289 : : && e_ident[EI_DATA] != ELFDATA2MSB)))
290 : : {
291 : : /* Cannot handle this. */
292 : 0 : __libelf_seterrno (ELF_E_INVALID_ELF);
293 : 0 : return NULL;
294 : : }
295 : :
296 : : /* Determine the number of sections. Returns -1 and sets libelf errno
297 : : if the file handle or elf file is invalid. Returns zero if there
298 : : are no section headers (or they cannot be read). */
299 : 31866 : size_t scncnt = get_shnum (map_address, e_ident, fildes, offset, maxsize);
300 [ - + ]: 31866 : if (scncnt == (size_t) -1l)
301 : : /* Could not determine the number of sections. */
302 : : return NULL;
303 : :
304 : : /* Check for too many sections. */
305 [ + + ]: 31866 : if (e_ident[EI_CLASS] == ELFCLASS32)
306 : : {
307 [ - + ]: 2208 : if (scncnt > SIZE_MAX / (sizeof (Elf_Scn) + sizeof (Elf32_Shdr)))
308 : : {
309 : 0 : __libelf_seterrno (ELF_E_INVALID_ELF);
310 : 0 : return NULL;
311 : : }
312 : : }
313 [ - + ]: 29658 : else if (scncnt > SIZE_MAX / (sizeof (Elf_Scn) + sizeof (Elf64_Shdr)))
314 : : {
315 : 0 : __libelf_seterrno (ELF_E_INVALID_ELF);
316 : 0 : return NULL;
317 : : }
318 : :
319 : : /* We can now allocate the memory. Even if there are no section headers,
320 : : we allocate space for a zeroth section in case we need it later. */
321 [ + + ]: 31866 : const size_t scnmax = (scncnt ?: (cmd == ELF_C_RDWR || cmd == ELF_C_RDWR_MMAP)
322 : 382 : ? 1 : 0);
323 : 31866 : Elf *elf = allocate_elf (fildes, map_address, offset, maxsize, cmd, parent,
324 : : ELF_K_ELF, scnmax * sizeof (Elf_Scn));
325 [ - + ]: 31866 : if (elf == NULL)
326 : : /* Not enough memory. allocate_elf will have set libelf errno. */
327 : : return NULL;
328 : :
329 [ - + ]: 31866 : assert ((unsigned int) scncnt == scncnt);
330 : 31866 : assert (offsetof (struct Elf, state.elf32.scns)
331 : : == offsetof (struct Elf, state.elf64.scns));
332 : 31866 : elf->state.elf32.scns.cnt = scncnt;
333 : 31866 : elf->state.elf32.scns.max = scnmax;
334 : :
335 : : /* Some more or less arbitrary value. */
336 : 31866 : elf->state.elf.scnincr = 10;
337 : :
338 : : /* Make the class easily available. */
339 : 31866 : elf->class = e_ident[EI_CLASS];
340 : :
341 [ + + ]: 31866 : if (e_ident[EI_CLASS] == ELFCLASS32)
342 : : {
343 : : /* This pointer might not be directly usable if the alignment is
344 : : not sufficient for the architecture. */
345 : 2208 : uintptr_t ehdr = (uintptr_t) map_address + offset;
346 : :
347 : : /* This is a 32-bit binary. */
348 [ + + ]: 2208 : if (map_address != NULL && e_ident[EI_DATA] == MY_ELFDATA
349 [ + + ]: 1306 : && (ALLOW_UNALIGNED
350 : : || (ehdr & (__alignof__ (Elf32_Ehdr) - 1)) == 0))
351 : : {
352 : : /* We can use the mmapped memory. */
353 : 844 : elf->state.elf32.ehdr = (Elf32_Ehdr *) ehdr;
354 : : }
355 : : else
356 : : {
357 : : /* Copy the ELF header. */
358 [ + + ]: 1364 : elf->state.elf32.ehdr = memcpy (&elf->state.elf32.ehdr_mem, e_ident,
359 : : sizeof (Elf32_Ehdr));
360 : :
361 [ + + ]: 1364 : if (e_ident[EI_DATA] != MY_ELFDATA)
362 : : {
363 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_type);
364 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_machine);
365 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_version);
366 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_entry);
367 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_phoff);
368 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_shoff);
369 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_flags);
370 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_ehsize);
371 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_phentsize);
372 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_phnum);
373 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_shentsize);
374 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_shnum);
375 : 796 : CONVERT (elf->state.elf32.ehdr_mem.e_shstrndx);
376 : : }
377 : : }
378 : :
379 : : /* Don't precache the phdr pointer here.
380 : : elf32_getphdr will validate it against the size when asked. */
381 : :
382 : 2208 : Elf32_Off e_shoff = elf->state.elf32.ehdr->e_shoff;
383 [ + + + + ]: 2208 : if (map_address != NULL && e_ident[EI_DATA] == MY_ELFDATA
384 : : && cmd != ELF_C_READ_MMAP /* We need a copy to be able to write. */
385 [ + + ]: 844 : && (ALLOW_UNALIGNED
386 : : || (((ehdr + e_shoff) & (__alignof__ (Elf32_Shdr) - 1)) == 0)))
387 : : {
388 [ + + - + ]: 440 : if (unlikely (scncnt > 0 && e_shoff >= maxsize)
389 [ - + ]: 440 : || unlikely (maxsize - e_shoff
390 : : < scncnt * sizeof (Elf32_Shdr)))
391 : : {
392 : 0 : free_and_out:
393 : 0 : free (elf);
394 : 0 : __libelf_seterrno (ELF_E_INVALID_ELF);
395 : 0 : return NULL;
396 : : }
397 : :
398 [ + + ]: 440 : if (scncnt > 0)
399 : 418 : elf->state.elf32.shdr = (Elf32_Shdr *) (ehdr + e_shoff);
400 : :
401 [ + + ]: 601692 : for (size_t cnt = 0; cnt < scncnt; ++cnt)
402 : : {
403 : 601252 : elf->state.elf32.scns.data[cnt].index = cnt;
404 : 601252 : elf->state.elf32.scns.data[cnt].elf = elf;
405 : 601252 : elf->state.elf32.scns.data[cnt].shdr.e32 =
406 : 601252 : &elf->state.elf32.shdr[cnt];
407 [ + - ]: 601252 : if (likely (elf->state.elf32.shdr[cnt].sh_offset < maxsize)
408 [ + + ]: 601252 : && likely (elf->state.elf32.shdr[cnt].sh_size
409 : : <= maxsize - elf->state.elf32.shdr[cnt].sh_offset))
410 : 601240 : elf->state.elf32.scns.data[cnt].rawdata_base =
411 : 601240 : elf->state.elf32.scns.data[cnt].data_base =
412 : : ((char *) map_address + offset
413 : 601240 : + elf->state.elf32.shdr[cnt].sh_offset);
414 : 601252 : elf->state.elf32.scns.data[cnt].list = &elf->state.elf32.scns;
415 : :
416 : : /* If this is a section with an extended index add a
417 : : reference in the section which uses the extended
418 : : index. */
419 [ - + ]: 601252 : if (elf->state.elf32.shdr[cnt].sh_type == SHT_SYMTAB_SHNDX
420 [ # # ]: 0 : && elf->state.elf32.shdr[cnt].sh_link < scncnt)
421 : 0 : elf->state.elf32.scns.data[elf->state.elf32.shdr[cnt].sh_link].shndx_index
422 : 0 : = cnt;
423 : :
424 : : /* Set the own shndx_index field in case it has not yet
425 : : been set. */
426 [ + - ]: 601252 : if (elf->state.elf32.scns.data[cnt].shndx_index == 0)
427 : 601252 : elf->state.elf32.scns.data[cnt].shndx_index = -1;
428 : : }
429 : : }
430 : : else
431 : : {
432 [ + + ]: 4039798 : for (size_t cnt = 0; cnt < scncnt; ++cnt)
433 : : {
434 : 4038030 : elf->state.elf32.scns.data[cnt].index = cnt;
435 : 4038030 : elf->state.elf32.scns.data[cnt].elf = elf;
436 : 4038030 : elf->state.elf32.scns.data[cnt].list = &elf->state.elf32.scns;
437 : : }
438 : : }
439 : :
440 : : /* So far only one block with sections. */
441 : 2208 : elf->state.elf32.scns_last = &elf->state.elf32.scns;
442 : 2208 : eu_search_tree_init (&elf->state.elf32.rawchunk_tree);
443 : : }
444 : : else
445 : : {
446 : : /* This pointer might not be directly usable if the alignment is
447 : : not sufficient for the architecture. */
448 : 29658 : uintptr_t ehdr = (uintptr_t) map_address + offset;
449 : :
450 : : /* This is a 64-bit binary. */
451 [ + + ]: 29658 : if (map_address != NULL && e_ident[EI_DATA] == MY_ELFDATA
452 [ + + ]: 14254 : && (ALLOW_UNALIGNED
453 : : || (ehdr & (__alignof__ (Elf64_Ehdr) - 1)) == 0))
454 : : {
455 : : /* We can use the mmapped memory. */
456 : 13722 : elf->state.elf64.ehdr = (Elf64_Ehdr *) ehdr;
457 : : }
458 : : else
459 : : {
460 : : /* Copy the ELF header. */
461 [ + + ]: 15936 : elf->state.elf64.ehdr = memcpy (&elf->state.elf64.ehdr_mem, e_ident,
462 : : sizeof (Elf64_Ehdr));
463 : :
464 [ + + ]: 15936 : if (e_ident[EI_DATA] != MY_ELFDATA)
465 : : {
466 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_type);
467 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_machine);
468 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_version);
469 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_entry);
470 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_phoff);
471 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_shoff);
472 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_flags);
473 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_ehsize);
474 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_phentsize);
475 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_phnum);
476 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_shentsize);
477 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_shnum);
478 : 882 : CONVERT (elf->state.elf64.ehdr_mem.e_shstrndx);
479 : : }
480 : : }
481 : :
482 : : /* Don't precache the phdr pointer here.
483 : : elf64_getphdr will validate it against the size when asked. */
484 : :
485 : 29658 : Elf64_Off e_shoff = elf->state.elf64.ehdr->e_shoff;
486 [ + + + + ]: 29658 : if (map_address != NULL && e_ident[EI_DATA] == MY_ELFDATA
487 : : && cmd != ELF_C_READ_MMAP /* We need a copy to be able to write. */
488 [ + + ]: 13722 : && (ALLOW_UNALIGNED
489 : : || (((ehdr + e_shoff) & (__alignof__ (Elf64_Shdr) - 1)) == 0)))
490 : : {
491 [ + - ]: 11982 : if (unlikely (scncnt > 0 && e_shoff >= maxsize)
492 [ - + ]: 11982 : || unlikely (maxsize - e_shoff
493 : : < scncnt * sizeof (Elf64_Shdr)))
494 : 0 : goto free_and_out;
495 : :
496 [ + + ]: 11982 : if (scncnt > 0)
497 : 11938 : elf->state.elf64.shdr = (Elf64_Shdr *) (ehdr + (ptrdiff_t) e_shoff);
498 : :
499 [ + + ]: 1081701 : for (size_t cnt = 0; cnt < scncnt; ++cnt)
500 : : {
501 : 1069719 : elf->state.elf64.scns.data[cnt].index = cnt;
502 : 1069719 : elf->state.elf64.scns.data[cnt].elf = elf;
503 : 1069719 : elf->state.elf64.scns.data[cnt].shdr.e64 =
504 : 1069719 : &elf->state.elf64.shdr[cnt];
505 [ + - ]: 1069719 : if (likely (elf->state.elf64.shdr[cnt].sh_offset < maxsize)
506 [ + + ]: 1069719 : && likely (elf->state.elf64.shdr[cnt].sh_size
507 : : <= maxsize - elf->state.elf64.shdr[cnt].sh_offset))
508 : 1069679 : elf->state.elf64.scns.data[cnt].rawdata_base =
509 : 1069679 : elf->state.elf64.scns.data[cnt].data_base =
510 : : ((char *) map_address + offset
511 : 1069679 : + elf->state.elf64.shdr[cnt].sh_offset);
512 : 1069719 : elf->state.elf64.scns.data[cnt].list = &elf->state.elf64.scns;
513 : :
514 : : /* If this is a section with an extended index add a
515 : : reference in the section which uses the extended
516 : : index. */
517 [ - + ]: 1069719 : if (elf->state.elf64.shdr[cnt].sh_type == SHT_SYMTAB_SHNDX
518 [ # # ]: 0 : && elf->state.elf64.shdr[cnt].sh_link < scncnt)
519 : 0 : elf->state.elf64.scns.data[elf->state.elf64.shdr[cnt].sh_link].shndx_index
520 : 0 : = cnt;
521 : :
522 : : /* Set the own shndx_index field in case it has not yet
523 : : been set. */
524 [ + - ]: 1069719 : if (elf->state.elf64.scns.data[cnt].shndx_index == 0)
525 : 1069719 : elf->state.elf64.scns.data[cnt].shndx_index = -1;
526 : : }
527 : : }
528 : : else
529 : : {
530 [ + + ]: 3172298 : for (size_t cnt = 0; cnt < scncnt; ++cnt)
531 : : {
532 : 3154622 : elf->state.elf64.scns.data[cnt].index = cnt;
533 : 3154622 : elf->state.elf64.scns.data[cnt].elf = elf;
534 : 3154622 : elf->state.elf64.scns.data[cnt].list = &elf->state.elf64.scns;
535 : : }
536 : : }
537 : :
538 : : /* So far only one block with sections. */
539 : 29658 : elf->state.elf64.scns_last = &elf->state.elf64.scns;
540 : 29658 : eu_search_tree_init (&elf->state.elf64.rawchunk_tree);
541 : : }
542 : :
543 : : return elf;
544 : : }
545 : :
546 : :
547 : : Elf *
548 : : internal_function
549 : 16406 : __libelf_read_mmaped_file (int fildes, void *map_address, int64_t offset,
550 : : size_t maxsize, Elf_Cmd cmd, Elf *parent)
551 : : {
552 : : /* We have to find out what kind of file this is. We handle ELF
553 : : files and archives. To find out what we have we must look at the
554 : : header. The header for an ELF file is EI_NIDENT bytes in size,
555 : : the header for an archive file SARMAG bytes long. */
556 : 16406 : unsigned char *e_ident = (unsigned char *) map_address + offset;
557 : :
558 : : /* See what kind of object we have here. */
559 : 16406 : Elf_Kind kind = determine_kind (e_ident, maxsize);
560 : :
561 [ + + + ]: 16406 : switch (kind)
562 : : {
563 : 15560 : case ELF_K_ELF:
564 : 15560 : return file_read_elf (fildes, map_address, e_ident, offset, maxsize,
565 : : cmd, parent);
566 : :
567 : 62 : case ELF_K_AR:
568 : 62 : return file_read_ar (fildes, map_address, offset, maxsize, cmd, parent);
569 : :
570 : : default:
571 : 784 : break;
572 : : }
573 : :
574 : : /* This case is easy. Since we cannot do anything with this file
575 : : create a dummy descriptor. */
576 : 784 : return allocate_elf (fildes, map_address, offset, maxsize, cmd, parent,
577 : : ELF_K_NONE, 0);
578 : : }
579 : :
580 : :
581 : : static Elf *
582 : 17036 : read_unmmaped_file (int fildes, int64_t offset, size_t maxsize, Elf_Cmd cmd,
583 : : Elf *parent)
584 : : {
585 : : /* We have to find out what kind of file this is. We handle ELF
586 : : files and archives. To find out what we have we must read the
587 : : header. The identification header for an ELF file is EI_NIDENT
588 : : bytes in size, but we read the whole ELF header since we will
589 : : need it anyway later. For archives the header in SARMAG bytes
590 : : long. Read the maximum of these numbers.
591 : :
592 : : XXX We have to change this for the extended `ar' format some day.
593 : :
594 : : Use a union to ensure alignment. We might later access the
595 : : memory as a ElfXX_Ehdr. */
596 : 17036 : union
597 : : {
598 : : Elf64_Ehdr ehdr;
599 : : unsigned char header[MAX (sizeof (Elf64_Ehdr), SARMAG)];
600 : : } mem;
601 : :
602 : : /* Read the head of the file. */
603 : 34072 : ssize_t nread = pread_retry (fildes, mem.header,
604 : 17036 : MIN (MAX (sizeof (Elf64_Ehdr), SARMAG),
605 : : maxsize),
606 : : offset);
607 [ - + ]: 17036 : if (unlikely (nread == -1))
608 : : {
609 : : /* We cannot even read the head of the file. Maybe FILDES is associated
610 : : with an unseekable device. This is nothing we can handle. */
611 : 0 : __libelf_seterrno (ELF_E_INVALID_FILE);
612 : 0 : return NULL;
613 : : }
614 : :
615 : : /* See what kind of object we have here. */
616 : 17036 : Elf_Kind kind = determine_kind (mem.header, nread);
617 : :
618 [ + + + ]: 17036 : switch (kind)
619 : : {
620 : 254 : case ELF_K_AR:
621 : 254 : return file_read_ar (fildes, NULL, offset, maxsize, cmd, parent);
622 : :
623 : 16306 : case ELF_K_ELF:
624 : : /* Make sure at least the ELF header is contained in the file. */
625 [ + - ]: 16306 : if ((size_t) nread >= (mem.header[EI_CLASS] == ELFCLASS32
626 [ + + ]: 16306 : ? sizeof (Elf32_Ehdr) : sizeof (Elf64_Ehdr)))
627 : 16306 : return file_read_elf (fildes, NULL, mem.header, offset, maxsize, cmd,
628 : : parent);
629 : 476 : FALLTHROUGH;
630 : :
631 : : default:
632 : 476 : break;
633 : : }
634 : :
635 : : /* This case is easy. Since we cannot do anything with this file
636 : : create a dummy descriptor. */
637 : 476 : return allocate_elf (fildes, NULL, offset, maxsize, cmd, parent,
638 : : ELF_K_NONE, 0);
639 : : }
640 : :
641 : :
642 : : /* Open a file for reading. If possible we will try to mmap() the file. */
643 : : static struct Elf *
644 : 33224 : read_file (int fildes, int64_t offset, size_t maxsize,
645 : : Elf_Cmd cmd, Elf *parent)
646 : : {
647 : 33224 : void *map_address = NULL;
648 : 33224 : int use_mmap = (cmd == ELF_C_READ_MMAP || cmd == ELF_C_RDWR_MMAP
649 : : || cmd == ELF_C_WRITE_MMAP
650 : 33224 : || cmd == ELF_C_READ_MMAP_PRIVATE);
651 : :
652 [ + + ]: 33224 : if (parent == NULL)
653 : : {
654 [ + - ]: 18679 : if (maxsize == ~((size_t) 0))
655 : : {
656 : : /* We don't know in the moment how large the file is.
657 : : Determine it now. */
658 : 18679 : struct stat st;
659 : :
660 [ + - ]: 18679 : if (fstat (fildes, &st) == 0
661 : : && (sizeof (size_t) >= sizeof (st.st_size)
662 : : || st.st_size <= ~((size_t) 0)))
663 : 18680 : maxsize = (size_t) st.st_size;
664 : : }
665 : : }
666 : : else
667 : : {
668 : : /* The parent is already loaded. Use it. */
669 [ - + ]: 14545 : assert (maxsize != ~((size_t) 0));
670 : : }
671 : :
672 [ + + ]: 33225 : if (use_mmap)
673 : : {
674 [ + + ]: 16213 : if (parent == NULL)
675 : : {
676 : : /* We try to map the file ourself. */
677 [ + + ]: 29485 : map_address = mmap (NULL, maxsize, (cmd == ELF_C_READ_MMAP
678 : : ? PROT_READ
679 : : : PROT_READ|PROT_WRITE),
680 : 16009 : cmd == ELF_C_READ_MMAP_PRIVATE
681 [ + + ]: 16009 : || cmd == ELF_C_READ_MMAP
682 : : ? MAP_PRIVATE : MAP_SHARED,
683 : : fildes, offset);
684 : :
685 [ + + ]: 16010 : if (map_address == MAP_FAILED)
686 : : map_address = NULL;
687 : : }
688 : : else
689 : : {
690 : 204 : map_address = parent->map_address;
691 : : }
692 : : }
693 : :
694 : : /* If we have the file in memory optimize the access. */
695 [ + - ]: 16190 : if (map_address != NULL)
696 : : {
697 [ - + ]: 16190 : assert (map_address != MAP_FAILED);
698 : :
699 : 16190 : struct Elf *result = __libelf_read_mmaped_file (fildes, map_address,
700 : : offset, maxsize, cmd,
701 : : parent);
702 : :
703 : : /* If something went wrong during the initialization unmap the
704 : : memory if we mmaped here. */
705 [ - + ]: 16190 : if (result == NULL
706 [ # # ]: 0 : && (parent == NULL
707 [ # # ]: 0 : || parent->map_address != map_address))
708 : 0 : munmap (map_address, maxsize);
709 [ + + ]: 16190 : else if (parent == NULL)
710 : : /* Remember that we mmap()ed the memory. */
711 : 15986 : result->flags |= ELF_F_MMAPPED;
712 : :
713 : 16190 : return result;
714 : : }
715 : :
716 : : /* Otherwise we have to do it the hard way. We read as much as necessary
717 : : from the file whenever we need information which is not available. */
718 : 17036 : return read_unmmaped_file (fildes, offset, maxsize, cmd, parent);
719 : : }
720 : :
721 : :
722 : : /* Find the entry with the long names for the content of this archive. */
723 : : static const char *
724 : 204 : read_long_names (Elf *elf)
725 : : {
726 : 204 : off_t offset = SARMAG; /* This is the first entry. */
727 : 408 : struct ar_hdr hdrm;
728 : 408 : struct ar_hdr *hdr;
729 : 408 : char *newp;
730 : 408 : size_t len;
731 : :
732 : 612 : while (1)
733 : 204 : {
734 [ - + ]: 408 : if (elf->map_address != NULL)
735 : : {
736 [ # # ]: 0 : if ((size_t) offset > elf->maximum_size
737 [ # # ]: 0 : || elf->maximum_size - offset < sizeof (struct ar_hdr))
738 : 0 : return NULL;
739 : :
740 : : /* The data is mapped. */
741 : 0 : hdr = (struct ar_hdr *) (elf->map_address + offset);
742 : : }
743 : : else
744 : : {
745 : : /* Read the header from the file. */
746 [ + - ]: 408 : if (unlikely (pread_retry (elf->fildes, &hdrm, sizeof (hdrm),
747 : : elf->start_offset + offset)
748 : : != sizeof (hdrm)))
749 : : return NULL;
750 : :
751 : : hdr = &hdrm;
752 : : }
753 : :
754 : : /* The ar_size is given as a fixed size decimal string, right
755 : : padded with spaces. Make sure we read it properly even if
756 : : there is no terminating space. */
757 : 408 : char buf[sizeof (hdr->ar_size) + 1];
758 : 408 : const char *string = hdr->ar_size;
759 [ - + ]: 408 : if (hdr->ar_size[sizeof (hdr->ar_size) - 1] != ' ')
760 : : {
761 : 0 : *((char *) mempcpy (buf, hdr->ar_size, sizeof (hdr->ar_size))) = '\0';
762 : 0 : string = buf;
763 : : }
764 : :
765 : : /* atol expects to see at least one digit.
766 : : It also cannot be negative (-). */
767 [ + - ]: 408 : if (!isdigit(string[0]))
768 : : return NULL;
769 : 408 : len = atol (string);
770 : :
771 [ + + ]: 408 : if (memcmp (hdr->ar_name, "// ", 16) == 0)
772 : : break;
773 : :
774 : 204 : offset += sizeof (struct ar_hdr) + ((len + 1) & ~1l);
775 : : }
776 : :
777 : : /* Sanity check len early if we can. */
778 [ - + ]: 204 : if (elf->map_address != NULL)
779 : : {
780 [ # # ]: 0 : if (len > elf->maximum_size - offset - sizeof (struct ar_hdr))
781 : : return NULL;
782 : : }
783 : :
784 : : /* Due to the stupid format of the long name table entry (which are not
785 : : NUL terminted) we have to provide an appropriate representation anyhow.
786 : : Therefore we always make a copy which has the appropriate form. */
787 : 204 : newp = malloc (len);
788 [ + - ]: 204 : if (newp != NULL)
789 : : {
790 : 204 : char *runp;
791 : :
792 [ - + ]: 204 : if (elf->map_address != NULL)
793 : : {
794 : : /* Simply copy it over. */
795 : 0 : elf->state.ar.long_names = (char *) memcpy (newp,
796 : : elf->map_address + offset
797 : 0 : + sizeof (struct ar_hdr),
798 : : len);
799 : : }
800 : : else
801 : : {
802 [ - + ]: 204 : if (unlikely ((size_t) pread_retry (elf->fildes, newp, len,
803 : : elf->start_offset + offset
804 : : + sizeof (struct ar_hdr))
805 : : != len))
806 : : {
807 : : /* We were not able to read all data. */
808 : 0 : free (newp);
809 : 0 : elf->state.ar.long_names = NULL;
810 : 0 : return NULL;
811 : : }
812 : 204 : elf->state.ar.long_names = newp;
813 : : }
814 : :
815 : 204 : elf->state.ar.long_names_len = len;
816 : :
817 : : /* Now NUL-terminate the strings. */
818 : 204 : runp = newp;
819 : 8364 : while (1)
820 : : {
821 : 8364 : char *startp = runp;
822 : 8364 : runp = (char *) memchr (runp, '/', newp + len - runp);
823 [ + + ]: 8364 : if (runp == NULL)
824 : : {
825 : : /* This was the last entry. Clear any left overs. */
826 : 204 : memset (startp, '\0', newp + len - startp);
827 : : break;
828 : : }
829 : :
830 : : /* NUL-terminate the string. */
831 : 8160 : *runp++ = '\0';
832 : :
833 : : /* A sanity check. Somebody might have generated invalid
834 : : archive. */
835 [ + - ]: 8160 : if (runp >= newp + len)
836 : : break;
837 : : }
838 : : }
839 : :
840 : : return newp;
841 : : }
842 : :
843 : :
844 : : /* Read the next archive header. */
845 : : int
846 : : internal_function
847 : 14588 : __libelf_next_arhdr_wrlock (Elf *elf)
848 : : {
849 : 14588 : struct ar_hdr *ar_hdr;
850 : 14588 : Elf_Arhdr *elf_ar_hdr;
851 : :
852 [ + + ]: 14588 : if (elf->map_address != NULL)
853 : : {
854 : : /* See whether this entry is in the file. */
855 [ + - + + ]: 246 : if (unlikely ((size_t) elf->state.ar.offset
856 : : > elf->start_offset + elf->maximum_size
857 : : || (elf->start_offset + elf->maximum_size
858 : : - elf->state.ar.offset) < sizeof (struct ar_hdr)))
859 : : {
860 : : /* This record is not anymore in the file. */
861 : 42 : __libelf_seterrno (ELF_E_RANGE);
862 : 42 : return -1;
863 : : }
864 : 204 : ar_hdr = (struct ar_hdr *) (elf->map_address + elf->state.ar.offset);
865 : : }
866 : : else
867 : : {
868 : 14342 : ar_hdr = &elf->state.ar.ar_hdr;
869 : :
870 [ - + ]: 14342 : if (unlikely (pread_retry (elf->fildes, ar_hdr, sizeof (struct ar_hdr),
871 : : elf->state.ar.offset)
872 : : != sizeof (struct ar_hdr)))
873 : : {
874 : : /* Something went wrong while reading the file. */
875 : 0 : __libelf_seterrno (ELF_E_RANGE);
876 : 0 : return -1;
877 : : }
878 : : }
879 : :
880 : : /* One little consistency check. */
881 [ - + ]: 14546 : if (unlikely (memcmp (ar_hdr->ar_fmag, ARFMAG, 2) != 0))
882 : : {
883 : : /* This is no valid archive. */
884 : 0 : __libelf_seterrno (ELF_E_ARCHIVE_FMAG);
885 : 0 : return -1;
886 : : }
887 : :
888 : : /* Copy the raw name over to a NUL terminated buffer. */
889 [ + + ]: 14546 : *((char *) mempcpy (elf->state.ar.raw_name, ar_hdr->ar_name, 16)) = '\0';
890 : :
891 : 14546 : elf_ar_hdr = &elf->state.ar.elf_ar_hdr;
892 : :
893 : : /* Now convert the `struct ar_hdr' into `Elf_Arhdr'.
894 : : Determine whether this is a special entry. */
895 [ + + ]: 14546 : if (ar_hdr->ar_name[0] == '/')
896 : : {
897 [ + + ]: 4158 : if (ar_hdr->ar_name[1] == ' '
898 [ + - ]: 242 : && memcmp (ar_hdr->ar_name, "/ ", 16) == 0)
899 : : /* This is the index. */
900 : 242 : elf_ar_hdr->ar_name = memcpy (elf->state.ar.ar_name, "/", 2);
901 [ + + ]: 3916 : else if (ar_hdr->ar_name[1] == 'S'
902 [ + - ]: 4 : && memcmp (ar_hdr->ar_name, "/SYM64/ ", 16) == 0)
903 : : /* 64-bit index. */
904 : 4 : elf_ar_hdr->ar_name = memcpy (elf->state.ar.ar_name, "/SYM64/", 8);
905 [ + + ]: 3912 : else if (ar_hdr->ar_name[1] == '/'
906 [ + - ]: 232 : && memcmp (ar_hdr->ar_name, "// ", 16) == 0)
907 : : /* This is the array with the long names. */
908 : 232 : elf_ar_hdr->ar_name = memcpy (elf->state.ar.ar_name, "//", 3);
909 [ + - ]: 3680 : else if (likely (isdigit (ar_hdr->ar_name[1])))
910 : : {
911 : 3680 : size_t offset;
912 : :
913 : : /* This is a long name. First we have to read the long name
914 : : table, if this hasn't happened already. */
915 [ + + - + ]: 3680 : if (unlikely (elf->state.ar.long_names == NULL
916 : : && read_long_names (elf) == NULL))
917 : : {
918 : : /* No long name table although it is reference. The archive is
919 : : broken. */
920 : 0 : __libelf_seterrno (ELF_E_INVALID_ARCHIVE);
921 : 0 : return -1;
922 : : }
923 : :
924 : 3680 : offset = atol (ar_hdr->ar_name + 1);
925 [ - + ]: 3680 : if (unlikely (offset >= elf->state.ar.long_names_len))
926 : : {
927 : : /* The index in the long name table is larger than the table. */
928 : 0 : __libelf_seterrno (ELF_E_INVALID_ARCHIVE);
929 : 0 : return -1;
930 : : }
931 : 3680 : elf_ar_hdr->ar_name = elf->state.ar.long_names + offset;
932 : : }
933 : : else
934 : : {
935 : : /* This is none of the known special entries. */
936 : 0 : __libelf_seterrno (ELF_E_INVALID_ARCHIVE);
937 : 0 : return -1;
938 : : }
939 : : }
940 : : else
941 : : {
942 : 10388 : char *endp;
943 : :
944 : : /* It is a normal entry. Copy over the name. */
945 : 10388 : endp = (char *) memccpy (elf->state.ar.ar_name, ar_hdr->ar_name,
946 : : '/', 16);
947 [ + - ]: 10388 : if (endp != NULL)
948 : 10388 : endp[-1] = '\0';
949 : : else
950 : : {
951 : : /* In the old BSD style of archive, there is no / terminator.
952 : : Instead, there is space padding at the end of the name. */
953 : : size_t i = 15;
954 : 0 : do
955 : 0 : elf->state.ar.ar_name[i] = '\0';
956 [ # # # # ]: 0 : while (i > 0 && elf->state.ar.ar_name[--i] == ' ');
957 : : }
958 : :
959 : 10388 : elf_ar_hdr->ar_name = elf->state.ar.ar_name;
960 : : }
961 : :
962 [ - + ]: 14546 : if (unlikely (ar_hdr->ar_size[0] == ' '))
963 : : /* Something is really wrong. We cannot live without a size for
964 : : the member since it will not be possible to find the next
965 : : archive member. */
966 : : {
967 : 0 : __libelf_seterrno (ELF_E_INVALID_ARCHIVE);
968 : 0 : return -1;
969 : : }
970 : :
971 : : /* Since there are no specialized functions to convert ASCII to
972 : : time_t, uid_t, gid_t, mode_t, and off_t we use either atol or
973 : : atoll depending on the size of the types. We are also prepared
974 : : for the case where the whole field in the `struct ar_hdr' is
975 : : filled in which case we cannot simply use atol/l but instead have
976 : : to create a temporary copy. Note that all fields use decimal
977 : : encoding, except ar_mode which uses octal. */
978 : :
979 : : #define INT_FIELD(FIELD) \
980 : : do \
981 : : { \
982 : : char buf[sizeof (ar_hdr->FIELD) + 1]; \
983 : : const char *string = ar_hdr->FIELD; \
984 : : if (ar_hdr->FIELD[sizeof (ar_hdr->FIELD) - 1] != ' ') \
985 : : { \
986 : : *((char *) mempcpy (buf, ar_hdr->FIELD, sizeof (ar_hdr->FIELD))) \
987 : : = '\0'; \
988 : : string = buf; \
989 : : } \
990 : : if (sizeof (elf_ar_hdr->FIELD) <= sizeof (long int)) \
991 : : elf_ar_hdr->FIELD = (__typeof (elf_ar_hdr->FIELD)) atol (string); \
992 : : else \
993 : : elf_ar_hdr->FIELD = (__typeof (elf_ar_hdr->FIELD)) atoll (string); \
994 : : } \
995 : : while (0)
996 : :
997 : : #define OCT_FIELD(FIELD) \
998 : : do \
999 : : { \
1000 : : char buf[sizeof (ar_hdr->FIELD) + 1]; \
1001 : : const char *string = ar_hdr->FIELD; \
1002 : : if (ar_hdr->FIELD[sizeof (ar_hdr->FIELD) - 1] != ' ') \
1003 : : { \
1004 : : *((char *) mempcpy (buf, ar_hdr->FIELD, sizeof (ar_hdr->FIELD))) \
1005 : : = '\0'; \
1006 : : string = buf; \
1007 : : } \
1008 : : if (sizeof (elf_ar_hdr->FIELD) <= sizeof (long int)) \
1009 : : elf_ar_hdr->FIELD \
1010 : : = (__typeof (elf_ar_hdr->FIELD)) strtol (string, NULL, 8); \
1011 : : else \
1012 : : elf_ar_hdr->FIELD \
1013 : : = (__typeof (elf_ar_hdr->FIELD)) strtoll (string, NULL, 8); \
1014 : : } \
1015 : : while (0)
1016 : :
1017 [ - + ]: 14546 : INT_FIELD (ar_date);
1018 [ - + ]: 14546 : INT_FIELD (ar_uid);
1019 [ - + ]: 14546 : INT_FIELD (ar_gid);
1020 [ - + ]: 14546 : OCT_FIELD (ar_mode);
1021 [ - + ]: 14546 : INT_FIELD (ar_size);
1022 : :
1023 [ - + ]: 14546 : if (elf_ar_hdr->ar_size < 0)
1024 : : {
1025 : 0 : __libelf_seterrno (ELF_E_INVALID_ARCHIVE);
1026 : 0 : return -1;
1027 : : }
1028 : :
1029 : : /* Truncated file? */
1030 : 14546 : size_t maxsize;
1031 : 14546 : maxsize = (elf->start_offset + elf->maximum_size
1032 : 14546 : - elf->state.ar.offset - sizeof (struct ar_hdr));
1033 [ - + ]: 14546 : if ((size_t) elf_ar_hdr->ar_size > maxsize)
1034 : 0 : elf_ar_hdr->ar_size = maxsize;
1035 : :
1036 : : return 0;
1037 : : }
1038 : :
1039 : :
1040 : : /* We were asked to return a clone of an existing descriptor. This
1041 : : function must be called with the lock on the parent descriptor
1042 : : being held. */
1043 : : static Elf *
1044 : 14548 : dup_elf (int fildes, Elf_Cmd cmd, Elf *ref)
1045 : : {
1046 : 14548 : struct Elf *result;
1047 : :
1048 [ + + ]: 14548 : if (fildes == -1)
1049 : : /* Allow the user to pass -1 as the file descriptor for the new file. */
1050 : 28 : fildes = ref->fildes;
1051 : : /* The file descriptor better should be the same. If it was disconnected
1052 : : already (using `elf_cntl') we do not test it. */
1053 [ + - - + ]: 14520 : else if (unlikely (ref->fildes != -1 && fildes != ref->fildes))
1054 : : {
1055 : 0 : __libelf_seterrno (ELF_E_FD_MISMATCH);
1056 : 0 : return NULL;
1057 : : }
1058 : :
1059 : : /* The mode must allow reading. I.e., a descriptor creating with a
1060 : : command different then ELF_C_READ, ELF_C_WRITE and ELF_C_RDWR is
1061 : : not allowed. */
1062 [ - + - - : 14548 : if (unlikely (ref->cmd != ELF_C_READ && ref->cmd != ELF_C_READ_MMAP
- - - - -
- - - ]
1063 : : && ref->cmd != ELF_C_WRITE && ref->cmd != ELF_C_WRITE_MMAP
1064 : : && ref->cmd != ELF_C_RDWR && ref->cmd != ELF_C_RDWR_MMAP
1065 : : && ref->cmd != ELF_C_READ_MMAP_PRIVATE))
1066 : : {
1067 : 0 : __libelf_seterrno (ELF_E_INVALID_OP);
1068 : 0 : return NULL;
1069 : : }
1070 : :
1071 : : /* Now it is time to distinguish between reading normal files and
1072 : : archives. Normal files can easily be handled be incrementing the
1073 : : reference counter and return the same descriptor. */
1074 [ - + ]: 14548 : if (ref->kind != ELF_K_AR)
1075 : : {
1076 : 0 : ++ref->ref_count;
1077 : 0 : return ref;
1078 : : }
1079 : :
1080 : : /* This is an archive. We must create a descriptor for the archive
1081 : : member the internal pointer of the archive file descriptor is
1082 : : pointing to. First read the header of the next member if this
1083 : : has not happened already. */
1084 [ + + ]: 14548 : if (ref->state.ar.elf_ar_hdr.ar_name == NULL
1085 [ + + ]: 274 : && __libelf_next_arhdr_wrlock (ref) != 0)
1086 : : /* Something went wrong. Maybe there is no member left. */
1087 : : return NULL;
1088 : :
1089 : : /* We have all the information we need about the next archive member.
1090 : : Now create a descriptor for it. */
1091 : 29092 : result = read_file (fildes, ref->state.ar.offset + sizeof (struct ar_hdr),
1092 : 14546 : ref->state.ar.elf_ar_hdr.ar_size, cmd, ref);
1093 : :
1094 : : /* Enlist this new descriptor in the list of children. */
1095 [ + - ]: 14546 : if (result != NULL)
1096 : : {
1097 : 14546 : result->next = ref->state.ar.children;
1098 : 14546 : ref->state.ar.children = result;
1099 : : }
1100 : :
1101 : : return result;
1102 : : }
1103 : :
1104 : :
1105 : : /* Return descriptor for empty file ready for writing. */
1106 : : static struct Elf *
1107 : 1052 : write_file (int fd, Elf_Cmd cmd)
1108 : : {
1109 : : /* We simply create an empty `Elf' structure. */
1110 : : #define NSCNSALLOC 10
1111 : 1052 : Elf *result = allocate_elf (fd, NULL, 0, 0, cmd, NULL, ELF_K_ELF,
1112 : : NSCNSALLOC * sizeof (Elf_Scn));
1113 : :
1114 [ + - ]: 1052 : if (result != NULL)
1115 : : {
1116 : : /* We have to write to the file in any case. */
1117 : 1052 : result->flags = ELF_F_DIRTY;
1118 : :
1119 : : /* Some more or less arbitrary value. */
1120 : 1052 : result->state.elf.scnincr = NSCNSALLOC;
1121 : :
1122 : : /* We have allocated room for some sections. */
1123 : 1052 : assert (offsetof (struct Elf, state.elf32.scns)
1124 : : == offsetof (struct Elf, state.elf64.scns));
1125 : 1052 : result->state.elf.scns_last = &result->state.elf32.scns;
1126 : 1052 : result->state.elf32.scns.max = NSCNSALLOC;
1127 : : }
1128 : :
1129 : 1052 : return result;
1130 : : }
1131 : :
1132 : : /* Lock if necessary before dup an archive. */
1133 : : static inline Elf *
1134 : 14548 : lock_dup_elf (int fildes, Elf_Cmd cmd, Elf *ref)
1135 : : {
1136 : : /* We need wrlock to dup an archive. */
1137 : 14548 : if (ref->kind == ELF_K_AR)
1138 : : {
1139 : 14548 : rwlock_unlock (ref->lock);
1140 : 14548 : rwlock_wrlock (ref->lock);
1141 : : }
1142 : : /* Duplicate the descriptor. */
1143 : 14548 : return dup_elf (fildes, cmd, ref);
1144 : : }
1145 : :
1146 : : /* Return a descriptor for the file belonging to FILDES. */
1147 : : Elf *
1148 : 34316 : elf_begin (int fildes, Elf_Cmd cmd, Elf *ref)
1149 : : {
1150 : 34316 : Elf *retval;
1151 : :
1152 [ - + ]: 34316 : if (unlikely (__libelf_version != EV_CURRENT))
1153 : : {
1154 : : /* Version wasn't set so far. */
1155 : 0 : __libelf_seterrno (ELF_E_NO_VERSION);
1156 : 0 : return NULL;
1157 : : }
1158 : :
1159 [ + + ]: 34316 : if (ref != NULL)
1160 : : /* Make sure the descriptor is not suddenly going away. */
1161 : : rwlock_rdlock (ref->lock);
1162 [ - + - - ]: 19732 : else if (unlikely (fcntl (fildes, F_GETFD) == -1 && errno == EBADF))
1163 : : {
1164 : : /* We cannot do anything productive without a file descriptor. */
1165 : 0 : __libelf_seterrno (ELF_E_INVALID_FILE);
1166 : 0 : return NULL;
1167 : : }
1168 : :
1169 [ + + + + : 34316 : switch (cmd)
+ - ]
1170 : : {
1171 : : case ELF_C_NULL:
1172 : : /* We simply return a NULL pointer. */
1173 : : retval = NULL;
1174 : : break;
1175 : :
1176 : 13478 : case ELF_C_READ_MMAP_PRIVATE:
1177 : : /* If we have a reference it must also be opened this way. */
1178 [ - + - - ]: 13478 : if (unlikely (ref != NULL && ref->cmd != ELF_C_READ_MMAP_PRIVATE))
1179 : : {
1180 : 0 : __libelf_seterrno (ELF_E_INVALID_CMD);
1181 : 0 : retval = NULL;
1182 : 0 : break;
1183 : : }
1184 : 32980 : FALLTHROUGH;
1185 : :
1186 : : case ELF_C_READ:
1187 : : case ELF_C_READ_MMAP:
1188 [ + + ]: 32980 : if (ref != NULL)
1189 : 14548 : retval = lock_dup_elf (fildes, cmd, ref);
1190 : : else
1191 : : /* Create descriptor for existing file. */
1192 : 18432 : retval = read_file (fildes, 0, ~((size_t) 0), cmd, NULL);
1193 : : break;
1194 : :
1195 : 248 : case ELF_C_RDWR:
1196 : : case ELF_C_RDWR_MMAP:
1197 : : /* If we have a REF object it must also be opened using this
1198 : : command. */
1199 [ - + ]: 248 : if (ref != NULL)
1200 : : {
1201 [ # # # # : 0 : if (unlikely (ref->cmd != ELF_C_RDWR && ref->cmd != ELF_C_RDWR_MMAP
# # ]
1202 : : && ref->cmd != ELF_C_WRITE
1203 : : && ref->cmd != ELF_C_WRITE_MMAP))
1204 : : {
1205 : : /* This is not ok. REF must also be opened for writing. */
1206 : 0 : __libelf_seterrno (ELF_E_INVALID_CMD);
1207 : 0 : retval = NULL;
1208 : : }
1209 : : else
1210 : 0 : retval = lock_dup_elf (fildes, cmd, ref);
1211 : : }
1212 : : else
1213 : : /* Create descriptor for existing file. */
1214 : 248 : retval = read_file (fildes, 0, ~((size_t) 0), cmd, NULL);
1215 : : break;
1216 : :
1217 : 1052 : case ELF_C_WRITE:
1218 : : case ELF_C_WRITE_MMAP:
1219 : : /* We ignore REF and prepare a descriptor to write a new file. */
1220 : 1052 : retval = write_file (fildes, cmd);
1221 : 1052 : break;
1222 : :
1223 : 0 : default:
1224 : 0 : __libelf_seterrno (ELF_E_INVALID_CMD);
1225 : 0 : retval = NULL;
1226 : 0 : break;
1227 : : }
1228 : :
1229 : : /* Release the lock. */
1230 : : if (ref != NULL)
1231 : : rwlock_unlock (ref->lock);
1232 : :
1233 : : return retval;
1234 : : }
1235 : : INTDEF(elf_begin)
|