OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gdb-7.2/] [gdb-7.2-or32-1.0rc1/] [bfd/] [doc/] [bfdio.texi] - Blame information for rev 441

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 330 jeremybenn
@findex struct bfd_iovec
2
@subsubsection @code{struct bfd_iovec}
3
@strong{Description}@*
4
The @code{struct bfd_iovec} contains the internal file I/O class.
5
Each @code{BFD} has an instance of this class and all file I/O is
6
routed through it (it is assumed that the instance implements
7
all methods listed below).
8
@example
9
struct bfd_iovec
10
@{
11
  /* To avoid problems with macros, a "b" rather than "f"
12
     prefix is prepended to each method name.  */
13
  /* Attempt to read/write NBYTES on ABFD's IOSTREAM storing/fetching
14
     bytes starting at PTR.  Return the number of bytes actually
15
     transfered (a read past end-of-file returns less than NBYTES),
16
     or -1 (setting @code{bfd_error}) if an error occurs.  */
17
  file_ptr (*bread) (struct bfd *abfd, void *ptr, file_ptr nbytes);
18
  file_ptr (*bwrite) (struct bfd *abfd, const void *ptr,
19
                      file_ptr nbytes);
20
  /* Return the current IOSTREAM file offset, or -1 (setting @code{bfd_error}
21
     if an error occurs.  */
22
  file_ptr (*btell) (struct bfd *abfd);
23
  /* For the following, on successful completion a value of 0 is returned.
24
     Otherwise, a value of -1 is returned (and  @code{bfd_error} is set).  */
25
  int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
26
  int (*bclose) (struct bfd *abfd);
27
  int (*bflush) (struct bfd *abfd);
28
  int (*bstat) (struct bfd *abfd, struct stat *sb);
29
  /* Just like mmap: (void*)-1 on failure, mmapped address on success.  */
30
  void *(*bmmap) (struct bfd *abfd, void *addr, bfd_size_type len,
31
                  int prot, int flags, file_ptr offset);
32
@};
33
extern const struct bfd_iovec _bfd_memory_iovec;
34
@end example
35
 
36
@findex bfd_get_mtime
37
@subsubsection @code{bfd_get_mtime}
38
@strong{Synopsis}
39
@example
40
long bfd_get_mtime (bfd *abfd);
41
@end example
42
@strong{Description}@*
43
Return the file modification time (as read from the file system, or
44
from the archive header for archive members).
45
 
46
@findex bfd_get_size
47
@subsubsection @code{bfd_get_size}
48
@strong{Synopsis}
49
@example
50
file_ptr bfd_get_size (bfd *abfd);
51
@end example
52
@strong{Description}@*
53
Return the file size (as read from file system) for the file
54
associated with BFD @var{abfd}.
55
 
56
The initial motivation for, and use of, this routine is not
57
so we can get the exact size of the object the BFD applies to, since
58
that might not be generally possible (archive members for example).
59
It would be ideal if someone could eventually modify
60
it so that such results were guaranteed.
61
 
62
Instead, we want to ask questions like "is this NNN byte sized
63
object I'm about to try read from file offset YYY reasonable?"
64
As as example of where we might do this, some object formats
65
use string tables for which the first @code{sizeof (long)} bytes of the
66
table contain the size of the table itself, including the size bytes.
67
If an application tries to read what it thinks is one of these
68
string tables, without some way to validate the size, and for
69
some reason the size is wrong (byte swapping error, wrong location
70
for the string table, etc.), the only clue is likely to be a read
71
error when it tries to read the table, or a "virtual memory
72
exhausted" error when it tries to allocate 15 bazillon bytes
73
of space for the 15 bazillon byte table it is about to read.
74
This function at least allows us to answer the question, "is the
75
size reasonable?".
76
 
77
@findex bfd_mmap
78
@subsubsection @code{bfd_mmap}
79
@strong{Synopsis}
80
@example
81
void *bfd_mmap (bfd *abfd, void *addr, bfd_size_type len,
82
    int prot, int flags, file_ptr offset);
83
@end example
84
@strong{Description}@*
85
Return mmap()ed region of the file, if possible and implemented.
86
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.