2 * DMG bzip2 uncompression
4 * Copyright (c) 2004 Johannes E. Schindelin
5 * Copyright (c) 2016 Red Hat, Inc.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
29 static int dmg_uncompress_bz2_do(char *next_in
, unsigned int avail_in
,
30 char *next_out
, unsigned int avail_out
)
34 bz_stream bzstream
= {};
36 ret
= BZ2_bzDecompressInit(&bzstream
, 0, 0);
40 bzstream
.next_in
= next_in
;
41 bzstream
.avail_in
= avail_in
;
42 bzstream
.next_out
= next_out
;
43 bzstream
.avail_out
= avail_out
;
44 ret
= BZ2_bzDecompress(&bzstream
);
45 total_out
= ((uint64_t)bzstream
.total_out_hi32
<< 32) +
46 bzstream
.total_out_lo32
;
47 BZ2_bzDecompressEnd(&bzstream
);
48 if (ret
!= BZ_STREAM_END
||
49 total_out
!= avail_out
) {
55 __attribute__((constructor
))
56 static void dmg_bz2_init(void)
58 assert(!dmg_uncompress_bz2
);
59 dmg_uncompress_bz2
= dmg_uncompress_bz2_do
;