1 /* Low-level I/O routines for BFDs.
3 Copyright (C) 1990-2020 Free Software Foundation, Inc.
5 Written by Cygnus Support.
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
34 #define S_IXUSR 0100 /* Execute by owner. */
37 #define S_IXGRP 0010 /* Execute by group. */
40 #define S_IXOTH 0001 /* Execute by others. */
48 _bfd_real_ftell (FILE *file
)
50 #if defined (HAVE_FTELLO64)
51 return ftello64 (file
);
52 #elif defined (HAVE_FTELLO)
60 _bfd_real_fseek (FILE *file
, file_ptr offset
, int whence
)
62 #if defined (HAVE_FSEEKO64)
63 return fseeko64 (file
, offset
, whence
);
64 #elif defined (HAVE_FSEEKO)
65 return fseeko (file
, offset
, whence
);
67 return fseek (file
, offset
, whence
);
71 /* Mark FILE as close-on-exec. Return FILE. FILE may be NULL, in
72 which case nothing is done. */
74 close_on_exec (FILE *file
)
76 #if defined (HAVE_FILENO) && defined (F_GETFD)
79 int fd
= fileno (file
);
80 int old
= fcntl (fd
, F_GETFD
, 0);
82 fcntl (fd
, F_SETFD
, old
| FD_CLOEXEC
);
89 _bfd_real_fopen (const char *filename
, const char *modes
)
94 /* On VMS, fopen allows file attributes as optional arguments.
95 We need to use them but we'd better to use the common prototype.
96 In fopen-vms.h, they are separated from the mode with a comma.
98 vms_attr
= strchr (modes
, ',');
101 /* Attributes found. Split. */
102 size_t modes_len
= strlen (modes
) + 1;
103 char attrs
[modes_len
+ 1];
107 memcpy (attrs
, modes
, modes_len
);
109 for (i
= 0; i
< 2; i
++)
111 at
[i
+ 1] = strchr (at
[i
], ',');
112 BFD_ASSERT (at
[i
+ 1] != NULL
);
113 *(at
[i
+ 1]++) = 0; /* Replace ',' with a nul, and skip it. */
115 return close_on_exec (fopen (filename
, at
[0], at
[1], at
[2]));
118 #elif defined (_WIN32)
119 size_t filelen
= strlen (filename
) + 1;
121 if (filelen
> MAX_PATH
- 1)
124 char* fullpath
= (char *) malloc (filelen
+ 8);
126 /* Add a Microsoft recommended prefix that
127 will allow the extra-long path to work. */
128 strcpy (fullpath
, "\\\\?\\");
129 strcat (fullpath
, filename
);
130 file
= close_on_exec (fopen (fullpath
, modes
));
135 #elif defined (HAVE_FOPEN64)
136 return close_on_exec (fopen64 (filename
, modes
));
139 return close_on_exec (fopen (filename
, modes
));
148 The <<struct bfd_iovec>> contains the internal file I/O class.
149 Each <<BFD>> has an instance of this class and all file I/O is
150 routed through it (it is assumed that the instance implements
151 all methods listed below).
155 . {* To avoid problems with macros, a "b" rather than "f"
156 . prefix is prepended to each method name. *}
157 . {* Attempt to read/write NBYTES on ABFD's IOSTREAM storing/fetching
158 . bytes starting at PTR. Return the number of bytes actually
159 . transfered (a read past end-of-file returns less than NBYTES),
160 . or -1 (setting <<bfd_error>>) if an error occurs. *}
161 . file_ptr (*bread) (struct bfd *abfd, void *ptr, file_ptr nbytes);
162 . file_ptr (*bwrite) (struct bfd *abfd, const void *ptr,
164 . {* Return the current IOSTREAM file offset, or -1 (setting <<bfd_error>>
165 . if an error occurs. *}
166 . file_ptr (*btell) (struct bfd *abfd);
167 . {* For the following, on successful completion a value of 0 is returned.
168 . Otherwise, a value of -1 is returned (and <<bfd_error>> is set). *}
169 . int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
170 . int (*bclose) (struct bfd *abfd);
171 . int (*bflush) (struct bfd *abfd);
172 . int (*bstat) (struct bfd *abfd, struct stat *sb);
173 . {* Mmap a part of the files. ADDR, LEN, PROT, FLAGS and OFFSET are the usual
174 . mmap parameter, except that LEN and OFFSET do not need to be page
175 . aligned. Returns (void *)-1 on failure, mmapped address on success.
176 . Also write in MAP_ADDR the address of the page aligned buffer and in
177 . MAP_LEN the size mapped (a page multiple). Use unmap with MAP_ADDR and
178 . MAP_LEN to unmap. *}
179 . void *(*bmmap) (struct bfd *abfd, void *addr, bfd_size_type len,
180 . int prot, int flags, file_ptr offset,
181 . void **map_addr, bfd_size_type *map_len);
184 .extern const struct bfd_iovec _bfd_memory_iovec;
189 /* Return value is amount read. */
192 bfd_bread (void *ptr
, bfd_size_type size
, bfd
*abfd
)
195 bfd
*element_bfd
= abfd
;
196 ufile_ptr offset
= 0;
198 while (abfd
->my_archive
!= NULL
199 && !bfd_is_thin_archive (abfd
->my_archive
))
201 offset
+= abfd
->origin
;
202 abfd
= abfd
->my_archive
;
204 offset
+= abfd
->origin
;
206 /* If this is an archive element, don't read past the end of
208 if (element_bfd
->arelt_data
!= NULL
)
210 bfd_size_type maxbytes
= arelt_size (element_bfd
);
212 if (abfd
->where
< offset
|| abfd
->where
- offset
>= maxbytes
)
214 bfd_set_error (bfd_error_invalid_operation
);
217 if (abfd
->where
- offset
+ size
> maxbytes
)
218 size
= maxbytes
- (abfd
->where
- offset
);
221 if (abfd
->iovec
== NULL
)
223 bfd_set_error (bfd_error_invalid_operation
);
227 nread
= abfd
->iovec
->bread (abfd
, ptr
, size
);
229 abfd
->where
+= nread
;
235 bfd_bwrite (const void *ptr
, bfd_size_type size
, bfd
*abfd
)
239 while (abfd
->my_archive
!= NULL
240 && !bfd_is_thin_archive (abfd
->my_archive
))
241 abfd
= abfd
->my_archive
;
243 if (abfd
->iovec
== NULL
)
245 bfd_set_error (bfd_error_invalid_operation
);
249 nwrote
= abfd
->iovec
->bwrite (abfd
, ptr
, size
);
251 abfd
->where
+= nwrote
;
252 if ((bfd_size_type
) nwrote
!= size
)
257 bfd_set_error (bfd_error_system_call
);
265 ufile_ptr offset
= 0;
268 while (abfd
->my_archive
!= NULL
269 && !bfd_is_thin_archive (abfd
->my_archive
))
271 offset
+= abfd
->origin
;
272 abfd
= abfd
->my_archive
;
274 offset
+= abfd
->origin
;
276 if (abfd
->iovec
== NULL
)
279 ptr
= abfd
->iovec
->btell (abfd
);
285 bfd_flush (bfd
*abfd
)
287 while (abfd
->my_archive
!= NULL
288 && !bfd_is_thin_archive (abfd
->my_archive
))
289 abfd
= abfd
->my_archive
;
291 if (abfd
->iovec
== NULL
)
294 return abfd
->iovec
->bflush (abfd
);
297 /* Returns 0 for success, negative value for failure (in which case
298 bfd_get_error can retrieve the error code). */
300 bfd_stat (bfd
*abfd
, struct stat
*statbuf
)
304 while (abfd
->my_archive
!= NULL
305 && !bfd_is_thin_archive (abfd
->my_archive
))
306 abfd
= abfd
->my_archive
;
308 if (abfd
->iovec
== NULL
)
310 bfd_set_error (bfd_error_invalid_operation
);
314 result
= abfd
->iovec
->bstat (abfd
, statbuf
);
316 bfd_set_error (bfd_error_system_call
);
320 /* Returns 0 for success, nonzero for failure (in which case bfd_get_error
321 can retrieve the error code). */
324 bfd_seek (bfd
*abfd
, file_ptr position
, int direction
)
327 ufile_ptr offset
= 0;
329 while (abfd
->my_archive
!= NULL
330 && !bfd_is_thin_archive (abfd
->my_archive
))
332 offset
+= abfd
->origin
;
333 abfd
= abfd
->my_archive
;
335 offset
+= abfd
->origin
;
337 if (abfd
->iovec
== NULL
)
339 bfd_set_error (bfd_error_invalid_operation
);
343 /* For the time being, a BFD may not seek to it's end. The problem
344 is that we don't easily have a way to recognize the end of an
345 element in an archive. */
346 BFD_ASSERT (direction
== SEEK_SET
|| direction
== SEEK_CUR
);
348 if (direction
!= SEEK_CUR
)
351 if ((direction
== SEEK_CUR
&& position
== 0)
352 || (direction
== SEEK_SET
&& (ufile_ptr
) position
== abfd
->where
))
355 result
= abfd
->iovec
->bseek (abfd
, position
, direction
);
358 /* An EINVAL error probably means that the file offset was
361 bfd_set_error (bfd_error_file_truncated
);
363 bfd_set_error (bfd_error_system_call
);
367 /* Adjust `where' field. */
368 if (direction
== SEEK_CUR
)
369 abfd
->where
+= position
;
371 abfd
->where
= position
;
382 long bfd_get_mtime (bfd *abfd);
385 Return the file modification time (as read from the file system, or
386 from the archive header for archive members).
391 bfd_get_mtime (bfd
*abfd
)
398 if (bfd_stat (abfd
, &buf
) != 0)
401 abfd
->mtime
= buf
.st_mtime
; /* Save value in case anyone wants it */
410 ufile_ptr bfd_get_size (bfd *abfd);
413 Return the file size (as read from file system) for the file
414 associated with BFD @var{abfd}.
416 The initial motivation for, and use of, this routine is not
417 so we can get the exact size of the object the BFD applies to, since
418 that might not be generally possible (archive members for example).
419 It would be ideal if someone could eventually modify
420 it so that such results were guaranteed.
422 Instead, we want to ask questions like "is this NNN byte sized
423 object I'm about to try read from file offset YYY reasonable?"
424 As as example of where we might do this, some object formats
425 use string tables for which the first <<sizeof (long)>> bytes of the
426 table contain the size of the table itself, including the size bytes.
427 If an application tries to read what it thinks is one of these
428 string tables, without some way to validate the size, and for
429 some reason the size is wrong (byte swapping error, wrong location
430 for the string table, etc.), the only clue is likely to be a read
431 error when it tries to read the table, or a "virtual memory
432 exhausted" error when it tries to allocate 15 bazillon bytes
433 of space for the 15 bazillon byte table it is about to read.
434 This function at least allows us to answer the question, "is the
437 A return value of zero indicates the file size is unknown.
441 bfd_get_size (bfd
*abfd
)
443 /* A size of 0 means we haven't yet called bfd_stat. A size of 1
444 means we have a cached value of 0, ie. unknown. */
445 if (abfd
->size
<= 1 || bfd_write_p (abfd
))
449 if (abfd
->size
== 1 && !bfd_write_p (abfd
))
452 if (bfd_stat (abfd
, &buf
) != 0
454 || buf
.st_size
- (ufile_ptr
) buf
.st_size
!= 0)
459 abfd
->size
= buf
.st_size
;
469 ufile_ptr bfd_get_file_size (bfd *abfd);
472 Return the file size (as read from file system) for the file
473 associated with BFD @var{abfd}. It supports both normal files
474 and archive elements.
479 bfd_get_file_size (bfd
*abfd
)
481 ufile_ptr file_size
, archive_size
= (ufile_ptr
) -1;
483 if (abfd
->my_archive
!= NULL
484 && !bfd_is_thin_archive (abfd
->my_archive
))
486 struct areltdata
*adata
= (struct areltdata
*) abfd
->arelt_data
;
487 archive_size
= adata
->parsed_size
;
488 /* If the archive is compressed we can't compare against file size. */
489 if (memcmp (((struct ar_hdr
*) adata
->arch_header
)->ar_fmag
,
492 abfd
= abfd
->my_archive
;
495 file_size
= bfd_get_size (abfd
);
496 if (archive_size
< file_size
)
506 void *bfd_mmap (bfd *abfd, void *addr, bfd_size_type len,
507 int prot, int flags, file_ptr offset,
508 void **map_addr, bfd_size_type *map_len);
511 Return mmap()ed region of the file, if possible and implemented.
512 LEN and OFFSET do not need to be page aligned. The page aligned
513 address and length are written to MAP_ADDR and MAP_LEN.
518 bfd_mmap (bfd
*abfd
, void *addr
, bfd_size_type len
,
519 int prot
, int flags
, file_ptr offset
,
520 void **map_addr
, bfd_size_type
*map_len
)
522 while (abfd
->my_archive
!= NULL
523 && !bfd_is_thin_archive (abfd
->my_archive
))
525 offset
+= abfd
->origin
;
526 abfd
= abfd
->my_archive
;
528 offset
+= abfd
->origin
;
530 if (abfd
->iovec
== NULL
)
532 bfd_set_error (bfd_error_invalid_operation
);
536 return abfd
->iovec
->bmmap (abfd
, addr
, len
, prot
, flags
, offset
,
540 /* Memory file I/O operations. */
543 memory_bread (bfd
*abfd
, void *ptr
, file_ptr size
)
545 struct bfd_in_memory
*bim
;
548 bim
= (struct bfd_in_memory
*) abfd
->iostream
;
550 if (abfd
->where
+ get
> bim
->size
)
552 if (bim
->size
< (bfd_size_type
) abfd
->where
)
555 get
= bim
->size
- abfd
->where
;
556 bfd_set_error (bfd_error_file_truncated
);
558 memcpy (ptr
, bim
->buffer
+ abfd
->where
, (size_t) get
);
563 memory_bwrite (bfd
*abfd
, const void *ptr
, file_ptr size
)
565 struct bfd_in_memory
*bim
= (struct bfd_in_memory
*) abfd
->iostream
;
567 if (abfd
->where
+ size
> bim
->size
)
569 bfd_size_type newsize
, oldsize
;
571 oldsize
= (bim
->size
+ 127) & ~(bfd_size_type
) 127;
572 bim
->size
= abfd
->where
+ size
;
573 /* Round up to cut down on memory fragmentation */
574 newsize
= (bim
->size
+ 127) & ~(bfd_size_type
) 127;
575 if (newsize
> oldsize
)
577 bim
->buffer
= (bfd_byte
*) bfd_realloc_or_free (bim
->buffer
, newsize
);
578 if (bim
->buffer
== NULL
)
583 if (newsize
> bim
->size
)
584 memset (bim
->buffer
+ bim
->size
, 0, newsize
- bim
->size
);
587 memcpy (bim
->buffer
+ abfd
->where
, ptr
, (size_t) size
);
592 memory_btell (bfd
*abfd
)
598 memory_bseek (bfd
*abfd
, file_ptr position
, int direction
)
601 struct bfd_in_memory
*bim
;
603 bim
= (struct bfd_in_memory
*) abfd
->iostream
;
605 if (direction
== SEEK_SET
)
608 nwhere
= abfd
->where
+ position
;
617 if ((bfd_size_type
)nwhere
> bim
->size
)
619 if (abfd
->direction
== write_direction
620 || abfd
->direction
== both_direction
)
622 bfd_size_type newsize
, oldsize
;
624 oldsize
= (bim
->size
+ 127) & ~(bfd_size_type
) 127;
626 /* Round up to cut down on memory fragmentation */
627 newsize
= (bim
->size
+ 127) & ~(bfd_size_type
) 127;
628 if (newsize
> oldsize
)
630 bim
->buffer
= (bfd_byte
*) bfd_realloc_or_free (bim
->buffer
, newsize
);
631 if (bim
->buffer
== NULL
)
637 memset (bim
->buffer
+ oldsize
, 0, newsize
- oldsize
);
642 abfd
->where
= bim
->size
;
644 bfd_set_error (bfd_error_file_truncated
);
652 memory_bclose (struct bfd
*abfd
)
654 struct bfd_in_memory
*bim
= (struct bfd_in_memory
*) abfd
->iostream
;
656 if (bim
->buffer
!= NULL
)
659 abfd
->iostream
= NULL
;
665 memory_bflush (bfd
*abfd ATTRIBUTE_UNUSED
)
671 memory_bstat (bfd
*abfd
, struct stat
*statbuf
)
673 struct bfd_in_memory
*bim
= (struct bfd_in_memory
*) abfd
->iostream
;
675 memset (statbuf
, 0, sizeof (*statbuf
));
676 statbuf
->st_size
= bim
->size
;
682 memory_bmmap (bfd
*abfd ATTRIBUTE_UNUSED
, void *addr ATTRIBUTE_UNUSED
,
683 bfd_size_type len ATTRIBUTE_UNUSED
, int prot ATTRIBUTE_UNUSED
,
684 int flags ATTRIBUTE_UNUSED
, file_ptr offset ATTRIBUTE_UNUSED
,
685 void **map_addr ATTRIBUTE_UNUSED
,
686 bfd_size_type
*map_len ATTRIBUTE_UNUSED
)
691 const struct bfd_iovec _bfd_memory_iovec
=
693 &memory_bread
, &memory_bwrite
, &memory_btell
, &memory_bseek
,
694 &memory_bclose
, &memory_bflush
, &memory_bstat
, &memory_bmmap