summaryrefslogtreecommitdiffstats
path: root/rtemstoolkit/elftoolchain/libelf/elf_open.3
blob: 3dd1e36a03f4df16450b81971838d6e65526c1d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
.\" Copyright (c) 2012 Joseph Koshy.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" This software is provided by Joseph Koshy ``as is'' and
.\" any express or implied warranties, including, but not limited to, the
.\" implied warranties of merchantability and fitness for a particular purpose
.\" are disclaimed.  in no event shall Joseph Koshy be liable
.\" for any direct, indirect, incidental, special, exemplary, or consequential
.\" damages (including, but not limited to, procurement of substitute goods
.\" or services; loss of use, data, or profits; or business interruption)
.\" however caused and on any theory of liability, whether in contract, strict
.\" liability, or tort (including negligence or otherwise) arising in any way
.\" out of the use of this software, even if advised of the possibility of
.\" such damage.
.\"
.\" $Id: elf_open.3 3181 2015-04-10 13:22:51Z emaste $
.\"
.Dd May 31, 2012
.Os
.Dt ELF_OPEN 3
.Sh NAME
.Nm elf_open
.Nd open ELF objects and ar(1) archives
.Sh LIBRARY
.Lb libelf
.Sh SYNOPSIS
.In libelf.h
.Ft "Elf *"
.Fn elf_open "int fd"
.Ft "Elf *"
.Fn elf_openmemory "char *image" "size_t sz"
.Sh DESCRIPTION
.Em Important :
The functions
.Fn elf_open
and
.Fn elf_openmemory
are extensions to the ELF(3) API, for the internal use of the
Elftoolchain project.
Portable applications should not use these functions.
.Pp
The function
.Fn elf_open
returns an Elf descriptor opened with mode
.Dv ELF_C_READ
for the ELF object or
.Xr ar 1
archive referenced by the file descriptor in argument
.Ar fd .
.Pp
The function
.Fn elf_openmemory
returns an ELF descriptor opened with mode
.Dv ELF_C_READ
for the ELF object or
.Xr ar 1
archive contained in the memory area pointed to by the argument
.Ar image .
The argument
.Ar sz
specifies the size of the memory area in bytes.
.Sh COMPATIBILITY
These functions are non-standard extensions to the ELF(3) API set.
.Pp
The behavior of these functions differs from their counterparts
.Xr elf_begin 3
and
.Xr elf_memory 3
in that these functions will successfully open malformed ELF objects
and
.Xr ar 1
archives, returning an Elf descriptor of type
.Dv ELF_K_NONE .
.Sh RETURN VALUES
The function returns a pointer to a ELF descriptor if successful, or
NULL if an error occurred.
.Sh ERRORS
These functions can fail with the following errors:
.Bl -tag -width "[ELF_E_RESOURCE]"
.It Bq Er ELF_E_ARGUMENT
The argument
.Ar fd
was of an unsupported file type.
.It Bq Er ELF_E_ARGUMENT
The argument
.Ar sz
was zero, or the argument
.Ar image
was NULL.
.It Bq Er ELF_E_IO
The file descriptor in argument
.Ar fd
was invalid.
.It Bq Er ELF_E_IO
The file descriptor in argument
.Ar fd
could not be read.
.It Bq Er ELF_E_RESOURCE
An out of memory condition was encountered.
.It Bq Er ELF_E_SEQUENCE
Functions
.Fn elf_open
or
.Fn elf_openmemory
was called before a working version was established with
.Xr elf_version 3 .
.El
.Sh SEE ALSO
.Xr elf 3 ,
.Xr elf_begin 3 ,
.Xr elf_errno 3 ,
.Xr elf_memory 3 ,
.Xr gelf 3