* compress.c: Reinstate 2012-10-19 change.
[deliverable/binutils-gdb.git] / bfd / compress.c
1 /* Compressed section support (intended for debug sections).
2 Copyright 2008, 2010, 2011, 2012
3 Free Software Foundation, Inc.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
22 #include "sysdep.h"
23 #include "bfd.h"
24 #include "libbfd.h"
25 #ifdef HAVE_ZLIB_H
26 #include <zlib.h>
27 #endif
28
29 #ifdef HAVE_ZLIB_H
30 static bfd_boolean
31 decompress_contents (bfd_byte *compressed_buffer,
32 bfd_size_type compressed_size,
33 bfd_byte *uncompressed_buffer,
34 bfd_size_type uncompressed_size)
35 {
36 z_stream strm;
37 int rc;
38
39 /* It is possible the section consists of several compressed
40 buffers concatenated together, so we uncompress in a loop. */
41 strm.zalloc = NULL;
42 strm.zfree = NULL;
43 strm.opaque = NULL;
44 strm.avail_in = compressed_size - 12;
45 strm.next_in = (Bytef*) compressed_buffer + 12;
46 strm.avail_out = uncompressed_size;
47
48 rc = inflateInit (&strm);
49 while (strm.avail_in > 0 && strm.avail_out > 0)
50 {
51 if (rc != Z_OK)
52 return FALSE;
53 strm.next_out = ((Bytef*) uncompressed_buffer
54 + (uncompressed_size - strm.avail_out));
55 rc = inflate (&strm, Z_FINISH);
56 if (rc != Z_STREAM_END)
57 return FALSE;
58 rc = inflateReset (&strm);
59 }
60 rc = inflateEnd (&strm);
61 return rc == Z_OK && strm.avail_out == 0;
62 }
63 #endif
64
65 /*
66 FUNCTION
67 bfd_compress_section_contents
68
69 SYNOPSIS
70 bfd_boolean bfd_compress_section_contents
71 (bfd *abfd, asection *section, bfd_byte *uncompressed_buffer,
72 bfd_size_type uncompressed_size);
73
74 DESCRIPTION
75
76 Compress data of the size specified in @var{uncompressed_size}
77 and pointed to by @var{uncompressed_buffer} using zlib and store
78 as the contents field. This function assumes the contents
79 field was allocated using bfd_malloc() or equivalent. If zlib
80 is not installed on this machine, the input is unmodified.
81
82 Return @code{TRUE} if the full section contents is compressed
83 successfully.
84 */
85
86 bfd_boolean
87 bfd_compress_section_contents (bfd *abfd ATTRIBUTE_UNUSED,
88 sec_ptr sec ATTRIBUTE_UNUSED,
89 bfd_byte *uncompressed_buffer ATTRIBUTE_UNUSED,
90 bfd_size_type uncompressed_size ATTRIBUTE_UNUSED)
91 {
92 #ifndef HAVE_ZLIB_H
93 bfd_set_error (bfd_error_invalid_operation);
94 return FALSE;
95 #else
96 uLong compressed_size;
97 bfd_byte *compressed_buffer;
98
99 compressed_size = compressBound (uncompressed_size) + 12;
100 compressed_buffer = (bfd_byte *) bfd_malloc (compressed_size);
101
102 if (compressed_buffer == NULL)
103 return FALSE;
104
105 if (compress ((Bytef*) compressed_buffer + 12,
106 &compressed_size,
107 (const Bytef*) uncompressed_buffer,
108 uncompressed_size) != Z_OK)
109 {
110 free (compressed_buffer);
111 bfd_set_error (bfd_error_bad_value);
112 return FALSE;
113 }
114
115 /* Write the zlib header. In this case, it should be "ZLIB" followed
116 by the uncompressed section size, 8 bytes in big-endian order. */
117 memcpy (compressed_buffer, "ZLIB", 4);
118 compressed_buffer[11] = uncompressed_size; uncompressed_size >>= 8;
119 compressed_buffer[10] = uncompressed_size; uncompressed_size >>= 8;
120 compressed_buffer[9] = uncompressed_size; uncompressed_size >>= 8;
121 compressed_buffer[8] = uncompressed_size; uncompressed_size >>= 8;
122 compressed_buffer[7] = uncompressed_size; uncompressed_size >>= 8;
123 compressed_buffer[6] = uncompressed_size; uncompressed_size >>= 8;
124 compressed_buffer[5] = uncompressed_size; uncompressed_size >>= 8;
125 compressed_buffer[4] = uncompressed_size;
126 compressed_size += 12;
127
128 /* Free the uncompressed contents if we compress in place. */
129 if (uncompressed_buffer == sec->contents)
130 free (uncompressed_buffer);
131
132 sec->contents = compressed_buffer;
133 sec->size = compressed_size;
134 sec->compress_status = COMPRESS_SECTION_DONE;
135
136 return TRUE;
137 #endif /* HAVE_ZLIB_H */
138 }
139
140 /*
141 FUNCTION
142 bfd_get_full_section_contents
143
144 SYNOPSIS
145 bfd_boolean bfd_get_full_section_contents
146 (bfd *abfd, asection *section, bfd_byte **ptr);
147
148 DESCRIPTION
149 Read all data from @var{section} in BFD @var{abfd}, decompress
150 if needed, and store in @var{*ptr}. If @var{*ptr} is NULL,
151 return @var{*ptr} with memory malloc'd by this function.
152
153 Return @code{TRUE} if the full section contents is retrieved
154 successfully.
155 */
156
157 bfd_boolean
158 bfd_get_full_section_contents (bfd *abfd, sec_ptr sec, bfd_byte **ptr)
159 {
160 bfd_size_type sz;
161 bfd_byte *p = *ptr;
162 #ifdef HAVE_ZLIB_H
163 bfd_boolean ret;
164 bfd_size_type save_size;
165 bfd_size_type save_rawsize;
166 bfd_byte *compressed_buffer;
167 #endif
168
169 if (abfd->direction != write_direction && sec->rawsize != 0)
170 sz = sec->rawsize;
171 else
172 sz = sec->size;
173 if (sz == 0)
174 return TRUE;
175
176 switch (sec->compress_status)
177 {
178 case COMPRESS_SECTION_NONE:
179 if (p == NULL)
180 {
181 p = (bfd_byte *) bfd_malloc (sz);
182 if (p == NULL)
183 return FALSE;
184 }
185 if (!bfd_get_section_contents (abfd, sec, p, 0, sz))
186 {
187 if (*ptr != p)
188 free (p);
189 return FALSE;
190 }
191 *ptr = p;
192 return TRUE;
193
194 case DECOMPRESS_SECTION_SIZED:
195 #ifndef HAVE_ZLIB_H
196 bfd_set_error (bfd_error_invalid_operation);
197 return FALSE;
198 #else
199 /* Read in the full compressed section contents. */
200 compressed_buffer = (bfd_byte *) bfd_malloc (sec->compressed_size);
201 if (compressed_buffer == NULL)
202 return FALSE;
203 save_rawsize = sec->rawsize;
204 save_size = sec->size;
205 /* Clear rawsize, set size to compressed size and set compress_status
206 to COMPRESS_SECTION_NONE. If the compressed size is bigger than
207 the uncompressed size, bfd_get_section_contents will fail. */
208 sec->rawsize = 0;
209 sec->size = sec->compressed_size;
210 sec->compress_status = COMPRESS_SECTION_NONE;
211 ret = bfd_get_section_contents (abfd, sec, compressed_buffer,
212 0, sec->compressed_size);
213 /* Restore rawsize and size. */
214 sec->rawsize = save_rawsize;
215 sec->size = save_size;
216 sec->compress_status = DECOMPRESS_SECTION_SIZED;
217 if (!ret)
218 goto fail_compressed;
219
220 if (p == NULL)
221 p = (bfd_byte *) bfd_malloc (sz);
222 if (p == NULL)
223 goto fail_compressed;
224
225 if (!decompress_contents (compressed_buffer, sec->compressed_size, p, sz))
226 {
227 bfd_set_error (bfd_error_bad_value);
228 if (p != *ptr)
229 free (p);
230 fail_compressed:
231 free (compressed_buffer);
232 return FALSE;
233 }
234
235 free (compressed_buffer);
236 *ptr = p;
237 return TRUE;
238 #endif
239
240 case COMPRESS_SECTION_DONE:
241 if (p == NULL)
242 {
243 p = (bfd_byte *) bfd_malloc (sz);
244 if (p == NULL)
245 return FALSE;
246 *ptr = p;
247 }
248 memcpy (p, sec->contents, sz);
249 return TRUE;
250
251 default:
252 abort ();
253 }
254 }
255
256 /*
257 FUNCTION
258 bfd_is_section_compressed
259
260 SYNOPSIS
261 bfd_boolean bfd_is_section_compressed
262 (bfd *abfd, asection *section);
263
264 DESCRIPTION
265 Return @code{TRUE} if @var{section} is compressed.
266 */
267
268 bfd_boolean
269 bfd_is_section_compressed (bfd *abfd, sec_ptr sec)
270 {
271 bfd_byte compressed_buffer [12];
272
273 /* Read the zlib header. In this case, it should be "ZLIB" followed
274 by the uncompressed section size, 8 bytes in big-endian order. */
275 return (bfd_get_section_contents (abfd, sec, compressed_buffer, 0, 12)
276 && CONST_STRNEQ ((char*) compressed_buffer, "ZLIB"));
277 }
278
279 /*
280 FUNCTION
281 bfd_init_section_decompress_status
282
283 SYNOPSIS
284 bfd_boolean bfd_init_section_decompress_status
285 (bfd *abfd, asection *section);
286
287 DESCRIPTION
288 Record compressed section size, update section size with
289 decompressed size and set compress_status to
290 DECOMPRESS_SECTION_SIZED.
291
292 Return @code{FALSE} if the section is not a valid compressed
293 section or zlib is not installed on this machine. Otherwise,
294 return @code{TRUE}.
295 */
296
297 bfd_boolean
298 bfd_init_section_decompress_status (bfd *abfd ATTRIBUTE_UNUSED,
299 sec_ptr sec ATTRIBUTE_UNUSED)
300 {
301 #ifndef HAVE_ZLIB_H
302 bfd_set_error (bfd_error_invalid_operation);
303 return FALSE;
304 #else
305 bfd_byte compressed_buffer [12];
306 bfd_size_type uncompressed_size;
307
308 if (sec->rawsize != 0
309 || sec->contents != NULL
310 || sec->compress_status != COMPRESS_SECTION_NONE
311 || !bfd_get_section_contents (abfd, sec, compressed_buffer, 0, 12))
312 {
313 bfd_set_error (bfd_error_invalid_operation);
314 return FALSE;
315 }
316
317 /* Read the zlib header. In this case, it should be "ZLIB" followed
318 by the uncompressed section size, 8 bytes in big-endian order. */
319 if (! CONST_STRNEQ ((char*) compressed_buffer, "ZLIB"))
320 {
321 bfd_set_error (bfd_error_wrong_format);
322 return FALSE;
323 }
324
325 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
326 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
327 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
328 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
329 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
330 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
331 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
332 uncompressed_size += compressed_buffer[11];
333
334 sec->compressed_size = sec->size;
335 sec->size = uncompressed_size;
336 sec->compress_status = DECOMPRESS_SECTION_SIZED;
337
338 return TRUE;
339 #endif
340 }
341
342 /*
343 FUNCTION
344 bfd_init_section_compress_status
345
346 SYNOPSIS
347 bfd_boolean bfd_init_section_compress_status
348 (bfd *abfd, asection *section);
349
350 DESCRIPTION
351 If open for read, compress section, update section size with
352 compressed size and set compress_status to COMPRESS_SECTION_DONE.
353
354 Return @code{FALSE} if the section is not a valid compressed
355 section or zlib is not installed on this machine. Otherwise,
356 return @code{TRUE}.
357 */
358
359 bfd_boolean
360 bfd_init_section_compress_status (bfd *abfd ATTRIBUTE_UNUSED,
361 sec_ptr sec ATTRIBUTE_UNUSED)
362 {
363 #ifndef HAVE_ZLIB_H
364 bfd_set_error (bfd_error_invalid_operation);
365 return FALSE;
366 #else
367 bfd_size_type uncompressed_size;
368 bfd_byte *uncompressed_buffer;
369 bfd_boolean ret;
370
371 /* Error if not opened for read. */
372 if (abfd->direction != read_direction
373 || sec->size == 0
374 || sec->rawsize != 0
375 || sec->contents != NULL
376 || sec->compress_status != COMPRESS_SECTION_NONE)
377 {
378 bfd_set_error (bfd_error_invalid_operation);
379 return FALSE;
380 }
381
382 /* Read in the full section contents and compress it. */
383 uncompressed_size = sec->size;
384 uncompressed_buffer = (bfd_byte *) bfd_malloc (uncompressed_size);
385 if (!bfd_get_section_contents (abfd, sec, uncompressed_buffer,
386 0, uncompressed_size))
387 ret = FALSE;
388 else
389 ret = bfd_compress_section_contents (abfd, sec,
390 uncompressed_buffer,
391 uncompressed_size);
392
393 free (uncompressed_buffer);
394 return ret;
395 #endif
396 }
This page took 0.064898 seconds and 5 git commands to generate.