2 * QEMU Block driver for DMG images
4 * Copyright (c) 2004 Johannes E. Schindelin
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu/osdep.h"
25 #include "qapi/error.h"
26 #include "block/block_int.h"
27 #include "qemu/bswap.h"
28 #include "qemu/error-report.h"
29 #include "qemu/module.h"
30 #include "qemu/memalign.h"
33 int (*dmg_uncompress_bz2
)(char *next_in
, unsigned int avail_in
,
34 char *next_out
, unsigned int avail_out
);
36 int (*dmg_uncompress_lzfse
)(char *next_in
, unsigned int avail_in
,
37 char *next_out
, unsigned int avail_out
);
40 /* Limit chunk sizes to prevent unreasonable amounts of memory being used
41 * or truncating when converting to 32-bit types
43 DMG_LENGTHS_MAX
= 64 * 1024 * 1024, /* 64 MB */
44 DMG_SECTORCOUNTS_MAX
= DMG_LENGTHS_MAX
/ 512,
49 UDZE
= 0, /* Zeroes */
56 UDCM
= 0x7ffffffe, /* Comments */
57 UDLE
= 0xffffffff /* Last Entry */
60 static int dmg_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
68 len
= strlen(filename
);
69 if (len
> 4 && !strcmp(filename
+ len
- 4, ".dmg")) {
75 static int read_uint64(BlockDriverState
*bs
, int64_t offset
, uint64_t *result
)
80 ret
= bdrv_pread(bs
->file
, offset
, 8, &buffer
, 0);
85 *result
= be64_to_cpu(buffer
);
89 static int read_uint32(BlockDriverState
*bs
, int64_t offset
, uint32_t *result
)
94 ret
= bdrv_pread(bs
->file
, offset
, 4, &buffer
, 0);
99 *result
= be32_to_cpu(buffer
);
103 static inline uint64_t buff_read_uint64(const uint8_t *buffer
, int64_t offset
)
105 return be64_to_cpu(*(uint64_t *)&buffer
[offset
]);
108 static inline uint32_t buff_read_uint32(const uint8_t *buffer
, int64_t offset
)
110 return be32_to_cpu(*(uint32_t *)&buffer
[offset
]);
113 /* Increase max chunk sizes, if necessary. This function is used to calculate
114 * the buffer sizes needed for compressed/uncompressed chunk I/O.
116 static void update_max_chunk_size(BDRVDMGState
*s
, uint32_t chunk
,
117 uint32_t *max_compressed_size
,
118 uint32_t *max_sectors_per_chunk
)
120 uint32_t compressed_size
= 0;
121 uint32_t uncompressed_sectors
= 0;
123 switch (s
->types
[chunk
]) {
124 case UDZO
: /* zlib compressed */
125 case UDBZ
: /* bzip2 compressed */
126 case ULFO
: /* lzfse compressed */
127 compressed_size
= s
->lengths
[chunk
];
128 uncompressed_sectors
= s
->sectorcounts
[chunk
];
130 case UDRW
: /* copy */
131 uncompressed_sectors
= DIV_ROUND_UP(s
->lengths
[chunk
], 512);
133 case UDZE
: /* zero */
134 case UDIG
: /* ignore */
135 /* as the all-zeroes block may be large, it is treated specially: the
136 * sector is not copied from a large buffer, a simple memset is used
137 * instead. Therefore uncompressed_sectors does not need to be set. */
141 if (compressed_size
> *max_compressed_size
) {
142 *max_compressed_size
= compressed_size
;
144 if (uncompressed_sectors
> *max_sectors_per_chunk
) {
145 *max_sectors_per_chunk
= uncompressed_sectors
;
149 static int64_t dmg_find_koly_offset(BdrvChild
*file
, Error
**errp
)
151 BlockDriverState
*file_bs
= file
->bs
;
157 /* bdrv_getlength returns a multiple of block size (512), rounded up. Since
158 * dmg images can have odd sizes, try to look for the "koly" magic which
159 * marks the begin of the UDIF trailer (512 bytes). This magic can be found
160 * in the last 511 bytes of the second-last sector or the first 4 bytes of
161 * the last sector (search space: 515 bytes) */
162 length
= bdrv_getlength(file_bs
);
164 error_setg_errno(errp
, -length
,
165 "Failed to get file size while reading UDIF trailer");
167 } else if (length
< 512) {
168 error_setg(errp
, "dmg file must be at least 512 bytes long");
171 if (length
> 511 + 512) {
172 offset
= length
- 511 - 512;
174 length
= length
< 515 ? length
: 515;
175 ret
= bdrv_pread(file
, offset
, length
, buffer
, 0);
177 error_setg_errno(errp
, -ret
, "Failed while reading UDIF trailer");
180 for (i
= 0; i
< length
- 3; i
++) {
181 if (buffer
[i
] == 'k' && buffer
[i
+1] == 'o' &&
182 buffer
[i
+2] == 'l' && buffer
[i
+3] == 'y') {
186 error_setg(errp
, "Could not locate UDIF trailer in dmg file");
190 /* used when building the sector table */
191 typedef struct DmgHeaderState
{
192 /* used internally by dmg_read_mish_block to remember offsets of blocks
194 uint64_t data_fork_offset
;
195 /* exported for dmg_open */
196 uint32_t max_compressed_size
;
197 uint32_t max_sectors_per_chunk
;
200 static bool dmg_is_known_block_type(uint32_t entry_type
)
202 switch (entry_type
) {
203 case UDZE
: /* zeros */
204 case UDRW
: /* uncompressed */
205 case UDIG
: /* ignore */
206 case UDZO
: /* zlib */
208 case UDBZ
: /* bzip2 */
209 return !!dmg_uncompress_bz2
;
210 case ULFO
: /* lzfse */
211 return !!dmg_uncompress_lzfse
;
217 static int dmg_read_mish_block(BDRVDMGState
*s
, DmgHeaderState
*ds
,
218 uint8_t *buffer
, uint32_t count
)
223 uint32_t chunk_count
;
225 uint64_t data_offset
;
226 uint64_t in_offset
= ds
->data_fork_offset
;
229 type
= buff_read_uint32(buffer
, offset
);
230 /* skip data that is not a valid MISH block (invalid magic or too small) */
231 if (type
!= 0x6d697368 || count
< 244) {
232 /* assume success for now */
236 /* chunk offsets are relative to this sector number */
237 out_offset
= buff_read_uint64(buffer
, offset
+ 8);
239 /* location in data fork for (compressed) blob (in bytes) */
240 data_offset
= buff_read_uint64(buffer
, offset
+ 0x18);
241 in_offset
+= data_offset
;
243 /* move to begin of chunk entries */
246 chunk_count
= (count
- 204) / 40;
247 new_size
= sizeof(uint64_t) * (s
->n_chunks
+ chunk_count
);
248 s
->types
= g_realloc(s
->types
, new_size
/ 2);
249 s
->offsets
= g_realloc(s
->offsets
, new_size
);
250 s
->lengths
= g_realloc(s
->lengths
, new_size
);
251 s
->sectors
= g_realloc(s
->sectors
, new_size
);
252 s
->sectorcounts
= g_realloc(s
->sectorcounts
, new_size
);
254 for (i
= s
->n_chunks
; i
< s
->n_chunks
+ chunk_count
; i
++) {
255 s
->types
[i
] = buff_read_uint32(buffer
, offset
);
256 if (!dmg_is_known_block_type(s
->types
[i
])) {
257 switch (s
->types
[i
]) {
259 warn_report_once("dmg-bzip2 module is missing, accessing bzip2 "
260 "compressed blocks will result in I/O errors");
263 warn_report_once("dmg-lzfse module is missing, accessing lzfse "
264 "compressed blocks will result in I/O errors");
268 /* Comments and last entry can be ignored without problems */
271 warn_report_once("Image contains chunks of unknown type %x, "
272 "accessing them will result in I/O errors",
283 s
->sectors
[i
] = buff_read_uint64(buffer
, offset
+ 8);
284 s
->sectors
[i
] += out_offset
;
287 s
->sectorcounts
[i
] = buff_read_uint64(buffer
, offset
+ 0x10);
289 /* all-zeroes sector (type UDZE and UDIG) does not need to be
290 * "uncompressed" and can therefore be unbounded. */
291 if (s
->types
[i
] != UDZE
&& s
->types
[i
] != UDIG
292 && s
->sectorcounts
[i
] > DMG_SECTORCOUNTS_MAX
) {
293 error_report("sector count %" PRIu64
" for chunk %" PRIu32
294 " is larger than max (%u)",
295 s
->sectorcounts
[i
], i
, DMG_SECTORCOUNTS_MAX
);
300 /* offset in (compressed) data fork */
301 s
->offsets
[i
] = buff_read_uint64(buffer
, offset
+ 0x18);
302 s
->offsets
[i
] += in_offset
;
304 /* length in (compressed) data fork */
305 s
->lengths
[i
] = buff_read_uint64(buffer
, offset
+ 0x20);
307 if (s
->lengths
[i
] > DMG_LENGTHS_MAX
) {
308 error_report("length %" PRIu64
" for chunk %" PRIu32
309 " is larger than max (%u)",
310 s
->lengths
[i
], i
, DMG_LENGTHS_MAX
);
315 update_max_chunk_size(s
, i
, &ds
->max_compressed_size
,
316 &ds
->max_sectors_per_chunk
);
319 s
->n_chunks
+= chunk_count
;
326 static int dmg_read_resource_fork(BlockDriverState
*bs
, DmgHeaderState
*ds
,
327 uint64_t info_begin
, uint64_t info_length
)
329 BDRVDMGState
*s
= bs
->opaque
;
331 uint32_t count
, rsrc_data_offset
;
332 uint8_t *buffer
= NULL
;
336 /* read offset from begin of resource fork (info_begin) to resource data */
337 ret
= read_uint32(bs
, info_begin
, &rsrc_data_offset
);
340 } else if (rsrc_data_offset
> info_length
) {
345 /* read length of resource data */
346 ret
= read_uint32(bs
, info_begin
+ 8, &count
);
349 } else if (count
== 0 || rsrc_data_offset
+ count
> info_length
) {
354 /* begin of resource data (consisting of one or more resources) */
355 offset
= info_begin
+ rsrc_data_offset
;
357 /* end of resource data (there is possibly a following resource map
358 * which will be ignored). */
359 info_end
= offset
+ count
;
361 /* read offsets (mish blocks) from one or more resources in resource data */
362 while (offset
< info_end
) {
363 /* size of following resource */
364 ret
= read_uint32(bs
, offset
, &count
);
367 } else if (count
== 0 || count
> info_end
- offset
) {
373 buffer
= g_realloc(buffer
, count
);
374 ret
= bdrv_pread(bs
->file
, offset
, count
, buffer
, 0);
379 ret
= dmg_read_mish_block(s
, ds
, buffer
, count
);
383 /* advance offset by size of resource */
393 static int dmg_read_plist_xml(BlockDriverState
*bs
, DmgHeaderState
*ds
,
394 uint64_t info_begin
, uint64_t info_length
)
396 BDRVDMGState
*s
= bs
->opaque
;
398 uint8_t *buffer
= NULL
;
399 char *data_begin
, *data_end
;
401 /* Have at least some length to avoid NULL for g_malloc. Attempt to set a
402 * safe upper cap on the data length. A test sample had a XML length of
404 if (info_length
== 0 || info_length
> 16 * 1024 * 1024) {
409 buffer
= g_malloc(info_length
+ 1);
410 buffer
[info_length
] = '\0';
411 ret
= bdrv_pread(bs
->file
, info_begin
, info_length
, buffer
, 0);
417 /* look for <data>...</data>. The data is 284 (0x11c) bytes after base64
418 * decode. The actual data element has 431 (0x1af) bytes which includes tabs
420 data_end
= (char *)buffer
;
421 while ((data_begin
= strstr(data_end
, "<data>")) != NULL
) {
426 data_end
= strstr(data_begin
, "</data>");
428 if (data_end
== NULL
) {
433 mish
= g_base64_decode(data_begin
, &out_len
);
434 ret
= dmg_read_mish_block(s
, ds
, mish
, (uint32_t)out_len
);
447 static int dmg_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
450 BDRVDMGState
*s
= bs
->opaque
;
452 uint64_t rsrc_fork_offset
, rsrc_fork_length
;
453 uint64_t plist_xml_offset
, plist_xml_length
;
457 ret
= bdrv_apply_auto_read_only(bs
, NULL
, errp
);
462 ret
= bdrv_open_file_child(NULL
, options
, "file", bs
, errp
);
467 * NB: if uncompress submodules are absent,
468 * ie block_module_load return value == 0, the function pointers
469 * dmg_uncompress_bz2 and dmg_uncompress_lzfse will be NULL.
471 if (block_module_load("dmg-bz2", errp
) < 0) {
474 if (block_module_load("dmg-lzfse", errp
) < 0) {
479 s
->offsets
= s
->lengths
= s
->sectors
= s
->sectorcounts
= NULL
;
480 /* used by dmg_read_mish_block to keep track of the current I/O position */
481 ds
.data_fork_offset
= 0;
482 ds
.max_compressed_size
= 1;
483 ds
.max_sectors_per_chunk
= 1;
485 /* locate the UDIF trailer */
486 offset
= dmg_find_koly_offset(bs
->file
, errp
);
492 /* offset of data fork (DataForkOffset) */
493 ret
= read_uint64(bs
, offset
+ 0x18, &ds
.data_fork_offset
);
496 } else if (ds
.data_fork_offset
> offset
) {
501 /* offset of resource fork (RsrcForkOffset) */
502 ret
= read_uint64(bs
, offset
+ 0x28, &rsrc_fork_offset
);
506 ret
= read_uint64(bs
, offset
+ 0x30, &rsrc_fork_length
);
510 if (rsrc_fork_offset
>= offset
||
511 rsrc_fork_length
> offset
- rsrc_fork_offset
) {
515 /* offset of property list (XMLOffset) */
516 ret
= read_uint64(bs
, offset
+ 0xd8, &plist_xml_offset
);
520 ret
= read_uint64(bs
, offset
+ 0xe0, &plist_xml_length
);
524 if (plist_xml_offset
>= offset
||
525 plist_xml_length
> offset
- plist_xml_offset
) {
529 ret
= read_uint64(bs
, offset
+ 0x1ec, (uint64_t *)&bs
->total_sectors
);
533 if (bs
->total_sectors
< 0) {
537 if (rsrc_fork_length
!= 0) {
538 ret
= dmg_read_resource_fork(bs
, &ds
,
539 rsrc_fork_offset
, rsrc_fork_length
);
543 } else if (plist_xml_length
!= 0) {
544 ret
= dmg_read_plist_xml(bs
, &ds
, plist_xml_offset
, plist_xml_length
);
553 /* initialize zlib engine */
554 s
->compressed_chunk
= qemu_try_blockalign(bs
->file
->bs
,
555 ds
.max_compressed_size
+ 1);
556 s
->uncompressed_chunk
= qemu_try_blockalign(bs
->file
->bs
,
557 512 * ds
.max_sectors_per_chunk
);
558 if (s
->compressed_chunk
== NULL
|| s
->uncompressed_chunk
== NULL
) {
563 if (inflateInit(&s
->zstream
) != Z_OK
) {
568 s
->current_chunk
= s
->n_chunks
;
570 qemu_co_mutex_init(&s
->lock
);
578 g_free(s
->sectorcounts
);
579 qemu_vfree(s
->compressed_chunk
);
580 qemu_vfree(s
->uncompressed_chunk
);
584 static void dmg_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
586 bs
->bl
.request_alignment
= BDRV_SECTOR_SIZE
; /* No sub-sector I/O */
589 static inline int is_sector_in_chunk(BDRVDMGState
*s
,
590 uint32_t chunk_num
, uint64_t sector_num
)
592 if (chunk_num
>= s
->n_chunks
|| s
->sectors
[chunk_num
] > sector_num
||
593 s
->sectors
[chunk_num
] + s
->sectorcounts
[chunk_num
] <= sector_num
) {
600 static inline uint32_t search_chunk(BDRVDMGState
*s
, uint64_t sector_num
)
603 uint32_t chunk1
= 0, chunk2
= s
->n_chunks
, chunk3
;
604 while (chunk1
<= chunk2
) {
605 chunk3
= (chunk1
+ chunk2
) / 2;
606 if (s
->sectors
[chunk3
] > sector_num
) {
611 } else if (s
->sectors
[chunk3
] + s
->sectorcounts
[chunk3
] > sector_num
) {
618 return s
->n_chunks
; /* error */
621 static inline int dmg_read_chunk(BlockDriverState
*bs
, uint64_t sector_num
)
623 BDRVDMGState
*s
= bs
->opaque
;
625 if (!is_sector_in_chunk(s
, s
->current_chunk
, sector_num
)) {
627 uint32_t chunk
= search_chunk(s
, sector_num
);
629 if (chunk
>= s
->n_chunks
) {
633 s
->current_chunk
= s
->n_chunks
;
634 switch (s
->types
[chunk
]) { /* block entry type */
635 case UDZO
: { /* zlib compressed */
636 /* we need to buffer, because only the chunk as whole can be
638 ret
= bdrv_pread(bs
->file
, s
->offsets
[chunk
], s
->lengths
[chunk
],
639 s
->compressed_chunk
, 0);
644 s
->zstream
.next_in
= s
->compressed_chunk
;
645 s
->zstream
.avail_in
= s
->lengths
[chunk
];
646 s
->zstream
.next_out
= s
->uncompressed_chunk
;
647 s
->zstream
.avail_out
= 512 * s
->sectorcounts
[chunk
];
648 ret
= inflateReset(&s
->zstream
);
652 ret
= inflate(&s
->zstream
, Z_FINISH
);
653 if (ret
!= Z_STREAM_END
||
654 s
->zstream
.total_out
!= 512 * s
->sectorcounts
[chunk
]) {
658 case UDBZ
: /* bzip2 compressed */
659 if (!dmg_uncompress_bz2
) {
662 /* we need to buffer, because only the chunk as whole can be
664 ret
= bdrv_pread(bs
->file
, s
->offsets
[chunk
], s
->lengths
[chunk
],
665 s
->compressed_chunk
, 0);
670 ret
= dmg_uncompress_bz2((char *)s
->compressed_chunk
,
671 (unsigned int) s
->lengths
[chunk
],
672 (char *)s
->uncompressed_chunk
,
674 (512 * s
->sectorcounts
[chunk
]));
680 if (!dmg_uncompress_lzfse
) {
683 /* we need to buffer, because only the chunk as whole can be
685 ret
= bdrv_pread(bs
->file
, s
->offsets
[chunk
], s
->lengths
[chunk
],
686 s
->compressed_chunk
, 0);
691 ret
= dmg_uncompress_lzfse((char *)s
->compressed_chunk
,
692 (unsigned int) s
->lengths
[chunk
],
693 (char *)s
->uncompressed_chunk
,
695 (512 * s
->sectorcounts
[chunk
]));
700 case UDRW
: /* copy */
701 ret
= bdrv_pread(bs
->file
, s
->offsets
[chunk
], s
->lengths
[chunk
],
702 s
->uncompressed_chunk
, 0);
707 case UDZE
: /* zeros */
708 case UDIG
: /* ignore */
709 /* see dmg_read, it is treated specially. No buffer needs to be
710 * pre-filled, the zeroes can be set directly. */
713 s
->current_chunk
= chunk
;
718 static int coroutine_fn
719 dmg_co_preadv(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
720 QEMUIOVector
*qiov
, BdrvRequestFlags flags
)
722 BDRVDMGState
*s
= bs
->opaque
;
723 uint64_t sector_num
= offset
>> BDRV_SECTOR_BITS
;
724 int nb_sectors
= bytes
>> BDRV_SECTOR_BITS
;
727 assert(QEMU_IS_ALIGNED(offset
, BDRV_SECTOR_SIZE
));
728 assert(QEMU_IS_ALIGNED(bytes
, BDRV_SECTOR_SIZE
));
730 qemu_co_mutex_lock(&s
->lock
);
732 for (i
= 0; i
< nb_sectors
; i
++) {
733 uint32_t sector_offset_in_chunk
;
736 if (dmg_read_chunk(bs
, sector_num
+ i
) != 0) {
740 /* Special case: current chunk is all zeroes. Do not perform a memcpy as
741 * s->uncompressed_chunk may be too small to cover the large all-zeroes
742 * section. dmg_read_chunk is called to find s->current_chunk */
743 if (s
->types
[s
->current_chunk
] == UDZE
744 || s
->types
[s
->current_chunk
] == UDIG
) { /* all zeroes block entry */
745 qemu_iovec_memset(qiov
, i
* 512, 0, 512);
748 sector_offset_in_chunk
= sector_num
+ i
- s
->sectors
[s
->current_chunk
];
749 data
= s
->uncompressed_chunk
+ sector_offset_in_chunk
* 512;
750 qemu_iovec_from_buf(qiov
, i
* 512, data
, 512);
755 qemu_co_mutex_unlock(&s
->lock
);
759 static void dmg_close(BlockDriverState
*bs
)
761 BDRVDMGState
*s
= bs
->opaque
;
767 g_free(s
->sectorcounts
);
768 qemu_vfree(s
->compressed_chunk
);
769 qemu_vfree(s
->uncompressed_chunk
);
771 inflateEnd(&s
->zstream
);
774 static BlockDriver bdrv_dmg
= {
775 .format_name
= "dmg",
776 .instance_size
= sizeof(BDRVDMGState
),
777 .bdrv_probe
= dmg_probe
,
778 .bdrv_open
= dmg_open
,
779 .bdrv_refresh_limits
= dmg_refresh_limits
,
780 .bdrv_child_perm
= bdrv_default_perms
,
781 .bdrv_co_preadv
= dmg_co_preadv
,
782 .bdrv_close
= dmg_close
,
786 static void bdrv_dmg_init(void)
788 bdrv_register(&bdrv_dmg
);
791 block_init(bdrv_dmg_init
);