]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - lib/libelf/elf_begin.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / lib / libelf / elf_begin.c
1 /*-
2  * Copyright (c) 2006 Joseph Koshy
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/types.h>
31 #include <sys/errno.h>
32 #include <sys/mman.h>
33 #include <sys/stat.h>
34
35 #include <ar.h>
36 #include <ctype.h>
37 #include <libelf.h>
38
39 #include "_libelf.h"
40
41 static Elf *
42 _libelf_open_object(int fd, Elf_Cmd c)
43 {
44         Elf *e;
45         void *m;
46         struct stat sb;
47
48         /*
49          * 'Raw' files are always mapped with 'PROT_READ'.  At
50          * elf_update(3) time for files opened with ELF_C_RDWR the
51          * mapping is unmapped, file data is written to using write(2)
52          * and then the raw data is immediately mapped back in.
53          */
54         if (fstat(fd, &sb) < 0) {
55                 LIBELF_SET_ERROR(IO, errno);
56                 return (NULL);
57         }
58
59         m = NULL;
60         if ((m = mmap(NULL, (size_t) sb.st_size, PROT_READ, MAP_PRIVATE, fd,
61             (off_t) 0)) == MAP_FAILED) {
62                 LIBELF_SET_ERROR(IO, errno);
63                 return (NULL);
64         }
65
66         if ((e = elf_memory(m, (size_t) sb.st_size)) == NULL) {
67                 (void) munmap(m, (size_t) sb.st_size);
68                 return (NULL);
69         }
70
71         e->e_flags |= LIBELF_F_MMAP;
72         e->e_fd = fd;
73         e->e_cmd = c;
74
75         if (c == ELF_C_RDWR && e->e_kind == ELF_K_AR) {
76                 (void) elf_end(e);
77                 LIBELF_SET_ERROR(ARGUMENT, 0);
78                 return (NULL);
79         }
80
81         return (e);
82 }
83
84 Elf *
85 elf_begin(int fd, Elf_Cmd c, Elf *a)
86 {
87         Elf *e;
88
89         e = NULL;
90
91         if (LIBELF_PRIVATE(version) == EV_NONE) {
92                 LIBELF_SET_ERROR(SEQUENCE, 0);
93                 return (NULL);
94         }
95
96         switch (c) {
97         case ELF_C_NULL:
98                 return (NULL);
99
100         case ELF_C_WRITE:
101
102                 if (a != NULL) { /* not allowed for ar(1) archives. */
103                         LIBELF_SET_ERROR(ARGUMENT, 0);
104                         return (NULL);
105                 }
106
107                 /*
108                  * Check writeability of `fd' immediately and fail if
109                  * not writeable.
110                  */
111                 if (ftruncate(fd, (off_t) 0) < 0) {
112                         LIBELF_SET_ERROR(IO, errno);
113                         return (NULL);
114                 }
115
116                 if ((e = _libelf_allocate_elf()) != NULL) {
117                         _libelf_init_elf(e, ELF_K_ELF);
118                         e->e_byteorder = LIBELF_PRIVATE(byteorder);
119                         e->e_fd = fd;
120                         e->e_cmd = c;
121                 }
122                 return (e);
123
124         case ELF_C_RDWR:
125                 if (a != NULL) { /* not allowed for ar(1) archives. */
126                         LIBELF_SET_ERROR(ARGUMENT, 0);
127                         return (NULL);
128                 }
129                 /*FALLTHROUGH*/
130         case ELF_C_READ:
131                 /*
132                  * Descriptor `a' could be for a regular ELF file, or
133                  * for an ar(1) archive.
134                  */
135                 if (a && (a->e_fd != fd || c != a->e_cmd)) {
136                         LIBELF_SET_ERROR(ARGUMENT, 0);
137                         return (NULL);
138                 }
139
140                 break;
141
142         default:
143                 LIBELF_SET_ERROR(ARGUMENT, 0);
144                 return (NULL);
145
146         }
147
148         if (a == NULL)
149                 e = _libelf_open_object(fd, c);
150         else if (a->e_kind == ELF_K_AR)
151                 e = _libelf_ar_open_member(fd, c, a);
152         else
153                 (e = a)->e_activations++;
154
155         return (e);
156 }