Statistics
| Branch: | Revision:

root / block-vmdk.c @ 34d5a9ff

History | View | Annotate | Download (25.3 kB)

1 ea2384d3 bellard
/*
2 ea2384d3 bellard
 * Block driver for the VMDK format
3 5fafdf24 ths
 *
4 ea2384d3 bellard
 * Copyright (c) 2004 Fabrice Bellard
5 ff1afc72 bellard
 * Copyright (c) 2005 Filip Navara
6 5fafdf24 ths
 *
7 ea2384d3 bellard
 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 ea2384d3 bellard
 * of this software and associated documentation files (the "Software"), to deal
9 ea2384d3 bellard
 * in the Software without restriction, including without limitation the rights
10 ea2384d3 bellard
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 ea2384d3 bellard
 * copies of the Software, and to permit persons to whom the Software is
12 ea2384d3 bellard
 * furnished to do so, subject to the following conditions:
13 ea2384d3 bellard
 *
14 ea2384d3 bellard
 * The above copyright notice and this permission notice shall be included in
15 ea2384d3 bellard
 * all copies or substantial portions of the Software.
16 ea2384d3 bellard
 *
17 ea2384d3 bellard
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 ea2384d3 bellard
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 ea2384d3 bellard
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 ea2384d3 bellard
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 ea2384d3 bellard
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 ea2384d3 bellard
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 ea2384d3 bellard
 * THE SOFTWARE.
24 ea2384d3 bellard
 */
25 5f4da8c0 ths
26 faf07963 pbrook
#include "qemu-common.h"
27 ea2384d3 bellard
#include "block_int.h"
28 ea2384d3 bellard
29 ea2384d3 bellard
#define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
30 ea2384d3 bellard
#define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')
31 ea2384d3 bellard
32 ea2384d3 bellard
typedef struct {
33 ea2384d3 bellard
    uint32_t version;
34 ea2384d3 bellard
    uint32_t flags;
35 ea2384d3 bellard
    uint32_t disk_sectors;
36 ea2384d3 bellard
    uint32_t granularity;
37 ea2384d3 bellard
    uint32_t l1dir_offset;
38 ea2384d3 bellard
    uint32_t l1dir_size;
39 ea2384d3 bellard
    uint32_t file_sectors;
40 ea2384d3 bellard
    uint32_t cylinders;
41 ea2384d3 bellard
    uint32_t heads;
42 ea2384d3 bellard
    uint32_t sectors_per_track;
43 ea2384d3 bellard
} VMDK3Header;
44 ea2384d3 bellard
45 ea2384d3 bellard
typedef struct {
46 ea2384d3 bellard
    uint32_t version;
47 ea2384d3 bellard
    uint32_t flags;
48 ea2384d3 bellard
    int64_t capacity;
49 ea2384d3 bellard
    int64_t granularity;
50 ea2384d3 bellard
    int64_t desc_offset;
51 ea2384d3 bellard
    int64_t desc_size;
52 ea2384d3 bellard
    int32_t num_gtes_per_gte;
53 ea2384d3 bellard
    int64_t rgd_offset;
54 ea2384d3 bellard
    int64_t gd_offset;
55 ea2384d3 bellard
    int64_t grain_offset;
56 ea2384d3 bellard
    char filler[1];
57 ea2384d3 bellard
    char check_bytes[4];
58 ff1afc72 bellard
} __attribute__((packed)) VMDK4Header;
59 ea2384d3 bellard
60 ea2384d3 bellard
#define L2_CACHE_SIZE 16
61 ea2384d3 bellard
62 ea2384d3 bellard
typedef struct BDRVVmdkState {
63 5f4da8c0 ths
    BlockDriverState *hd;
64 ea2384d3 bellard
    int64_t l1_table_offset;
65 ff1afc72 bellard
    int64_t l1_backup_table_offset;
66 ea2384d3 bellard
    uint32_t *l1_table;
67 ff1afc72 bellard
    uint32_t *l1_backup_table;
68 ea2384d3 bellard
    unsigned int l1_size;
69 ea2384d3 bellard
    uint32_t l1_entry_sectors;
70 ea2384d3 bellard
71 ea2384d3 bellard
    unsigned int l2_size;
72 ea2384d3 bellard
    uint32_t *l2_cache;
73 ea2384d3 bellard
    uint32_t l2_cache_offsets[L2_CACHE_SIZE];
74 ea2384d3 bellard
    uint32_t l2_cache_counts[L2_CACHE_SIZE];
75 ea2384d3 bellard
76 ea2384d3 bellard
    unsigned int cluster_sectors;
77 5f4da8c0 ths
    uint32_t parent_cid;
78 630530a6 ths
    int is_parent;
79 ea2384d3 bellard
} BDRVVmdkState;
80 ea2384d3 bellard
81 630530a6 ths
typedef struct VmdkMetaData {
82 630530a6 ths
    uint32_t offset;
83 630530a6 ths
    unsigned int l1_index;
84 630530a6 ths
    unsigned int l2_index;
85 630530a6 ths
    unsigned int l2_offset;
86 630530a6 ths
    int valid;
87 630530a6 ths
} VmdkMetaData;
88 630530a6 ths
89 630530a6 ths
typedef struct ActiveBDRVState{
90 630530a6 ths
    BlockDriverState *hd;            // active image handler
91 630530a6 ths
    uint64_t cluster_offset;         // current write offset
92 630530a6 ths
}ActiveBDRVState;
93 630530a6 ths
94 630530a6 ths
static ActiveBDRVState activeBDRV;
95 630530a6 ths
96 630530a6 ths
97 ea2384d3 bellard
static int vmdk_probe(const uint8_t *buf, int buf_size, const char *filename)
98 ea2384d3 bellard
{
99 ea2384d3 bellard
    uint32_t magic;
100 ea2384d3 bellard
101 ea2384d3 bellard
    if (buf_size < 4)
102 ea2384d3 bellard
        return 0;
103 ea2384d3 bellard
    magic = be32_to_cpu(*(uint32_t *)buf);
104 ea2384d3 bellard
    if (magic == VMDK3_MAGIC ||
105 ea2384d3 bellard
        magic == VMDK4_MAGIC)
106 ea2384d3 bellard
        return 100;
107 ea2384d3 bellard
    else
108 ea2384d3 bellard
        return 0;
109 ea2384d3 bellard
}
110 ea2384d3 bellard
111 5f4da8c0 ths
#define CHECK_CID 1
112 5f4da8c0 ths
113 3b46e624 ths
#define SECTOR_SIZE 512
114 5f4da8c0 ths
#define DESC_SIZE 20*SECTOR_SIZE        // 20 sectors of 512 bytes each
115 5fafdf24 ths
#define HEADER_SIZE 512                           // first sector of 512 bytes
116 5f4da8c0 ths
117 5f4da8c0 ths
static uint32_t vmdk_read_cid(BlockDriverState *bs, int parent)
118 ea2384d3 bellard
{
119 ea2384d3 bellard
    BDRVVmdkState *s = bs->opaque;
120 5f4da8c0 ths
    char desc[DESC_SIZE];
121 5f4da8c0 ths
    uint32_t cid;
122 7ccfb2eb blueswir1
    const char *p_name, *cid_str;
123 5f4da8c0 ths
    size_t cid_str_size;
124 5f4da8c0 ths
125 5f4da8c0 ths
    /* the descriptor offset = 0x200 */
126 5f4da8c0 ths
    if (bdrv_pread(s->hd, 0x200, desc, DESC_SIZE) != DESC_SIZE)
127 5f4da8c0 ths
        return 0;
128 5f4da8c0 ths
129 5f4da8c0 ths
    if (parent) {
130 5f4da8c0 ths
        cid_str = "parentCID";
131 5f4da8c0 ths
        cid_str_size = sizeof("parentCID");
132 5f4da8c0 ths
    } else {
133 5f4da8c0 ths
        cid_str = "CID";
134 5f4da8c0 ths
        cid_str_size = sizeof("CID");
135 5f4da8c0 ths
    }
136 5f4da8c0 ths
137 511d2b14 blueswir1
    if ((p_name = strstr(desc,cid_str)) != NULL) {
138 5f4da8c0 ths
        p_name += cid_str_size;
139 5f4da8c0 ths
        sscanf(p_name,"%x",&cid);
140 5f4da8c0 ths
    }
141 5f4da8c0 ths
142 5f4da8c0 ths
    return cid;
143 5f4da8c0 ths
}
144 5f4da8c0 ths
145 5f4da8c0 ths
static int vmdk_write_cid(BlockDriverState *bs, uint32_t cid)
146 5f4da8c0 ths
{
147 5f4da8c0 ths
    BDRVVmdkState *s = bs->opaque;
148 5f4da8c0 ths
    char desc[DESC_SIZE], tmp_desc[DESC_SIZE];
149 5f4da8c0 ths
    char *p_name, *tmp_str;
150 5f4da8c0 ths
151 5f4da8c0 ths
    /* the descriptor offset = 0x200 */
152 5f4da8c0 ths
    if (bdrv_pread(s->hd, 0x200, desc, DESC_SIZE) != DESC_SIZE)
153 5f4da8c0 ths
        return -1;
154 5f4da8c0 ths
155 5f4da8c0 ths
    tmp_str = strstr(desc,"parentCID");
156 363a37d5 blueswir1
    pstrcpy(tmp_desc, sizeof(tmp_desc), tmp_str);
157 511d2b14 blueswir1
    if ((p_name = strstr(desc,"CID")) != NULL) {
158 5f4da8c0 ths
        p_name += sizeof("CID");
159 363a37d5 blueswir1
        snprintf(p_name, sizeof(desc) - (p_name - desc), "%x\n", cid);
160 363a37d5 blueswir1
        pstrcat(desc, sizeof(desc), tmp_desc);
161 5f4da8c0 ths
    }
162 5f4da8c0 ths
163 5f4da8c0 ths
    if (bdrv_pwrite(s->hd, 0x200, desc, DESC_SIZE) != DESC_SIZE)
164 5f4da8c0 ths
        return -1;
165 5f4da8c0 ths
    return 0;
166 5f4da8c0 ths
}
167 5f4da8c0 ths
168 5f4da8c0 ths
static int vmdk_is_cid_valid(BlockDriverState *bs)
169 5f4da8c0 ths
{
170 5f4da8c0 ths
#ifdef CHECK_CID
171 5f4da8c0 ths
    BDRVVmdkState *s = bs->opaque;
172 5f4da8c0 ths
    BlockDriverState *p_bs = s->hd->backing_hd;
173 5f4da8c0 ths
    uint32_t cur_pcid;
174 5f4da8c0 ths
175 5f4da8c0 ths
    if (p_bs) {
176 5f4da8c0 ths
        cur_pcid = vmdk_read_cid(p_bs,0);
177 5f4da8c0 ths
        if (s->parent_cid != cur_pcid)
178 5f4da8c0 ths
            // CID not valid
179 5f4da8c0 ths
            return 0;
180 5f4da8c0 ths
    }
181 5f4da8c0 ths
#endif
182 5f4da8c0 ths
    // CID valid
183 5f4da8c0 ths
    return 1;
184 5f4da8c0 ths
}
185 5f4da8c0 ths
186 5f4da8c0 ths
static int vmdk_snapshot_create(const char *filename, const char *backing_file)
187 5f4da8c0 ths
{
188 5f4da8c0 ths
    int snp_fd, p_fd;
189 5f4da8c0 ths
    uint32_t p_cid;
190 5fafdf24 ths
    char *p_name, *gd_buf, *rgd_buf;
191 5f4da8c0 ths
    const char *real_filename, *temp_str;
192 5f4da8c0 ths
    VMDK4Header header;
193 5f4da8c0 ths
    uint32_t gde_entries, gd_size;
194 5f4da8c0 ths
    int64_t gd_offset, rgd_offset, capacity, gt_size;
195 5f4da8c0 ths
    char p_desc[DESC_SIZE], s_desc[DESC_SIZE], hdr[HEADER_SIZE];
196 7ccfb2eb blueswir1
    static const char desc_template[] =
197 5f4da8c0 ths
    "# Disk DescriptorFile\n"
198 5f4da8c0 ths
    "version=1\n"
199 5f4da8c0 ths
    "CID=%x\n"
200 5f4da8c0 ths
    "parentCID=%x\n"
201 5f4da8c0 ths
    "createType=\"monolithicSparse\"\n"
202 5f4da8c0 ths
    "parentFileNameHint=\"%s\"\n"
203 5f4da8c0 ths
    "\n"
204 5f4da8c0 ths
    "# Extent description\n"
205 7ccfb2eb blueswir1
    "RW %u SPARSE \"%s\"\n"
206 5f4da8c0 ths
    "\n"
207 5f4da8c0 ths
    "# The Disk Data Base \n"
208 5f4da8c0 ths
    "#DDB\n"
209 5f4da8c0 ths
    "\n";
210 5f4da8c0 ths
211 5f4da8c0 ths
    snp_fd = open(filename, O_RDWR | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE, 0644);
212 5f4da8c0 ths
    if (snp_fd < 0)
213 5f4da8c0 ths
        return -1;
214 5f4da8c0 ths
    p_fd = open(backing_file, O_RDONLY | O_BINARY | O_LARGEFILE);
215 5f4da8c0 ths
    if (p_fd < 0) {
216 5f4da8c0 ths
        close(snp_fd);
217 5f4da8c0 ths
        return -1;
218 5f4da8c0 ths
    }
219 5f4da8c0 ths
220 5f4da8c0 ths
    /* read the header */
221 5f4da8c0 ths
    if (lseek(p_fd, 0x0, SEEK_SET) == -1)
222 5f4da8c0 ths
        goto fail;
223 5f4da8c0 ths
    if (read(p_fd, hdr, HEADER_SIZE) != HEADER_SIZE)
224 5f4da8c0 ths
        goto fail;
225 5f4da8c0 ths
226 5f4da8c0 ths
    /* write the header */
227 5f4da8c0 ths
    if (lseek(snp_fd, 0x0, SEEK_SET) == -1)
228 5f4da8c0 ths
        goto fail;
229 5f4da8c0 ths
    if (write(snp_fd, hdr, HEADER_SIZE) == -1)
230 5f4da8c0 ths
        goto fail;
231 5f4da8c0 ths
232 5f4da8c0 ths
    memset(&header, 0, sizeof(header));
233 5f4da8c0 ths
    memcpy(&header,&hdr[4], sizeof(header)); // skip the VMDK4_MAGIC
234 5f4da8c0 ths
235 5f4da8c0 ths
    ftruncate(snp_fd, header.grain_offset << 9);
236 5f4da8c0 ths
    /* the descriptor offset = 0x200 */
237 5f4da8c0 ths
    if (lseek(p_fd, 0x200, SEEK_SET) == -1)
238 5f4da8c0 ths
        goto fail;
239 5f4da8c0 ths
    if (read(p_fd, p_desc, DESC_SIZE) != DESC_SIZE)
240 5f4da8c0 ths
        goto fail;
241 5f4da8c0 ths
242 511d2b14 blueswir1
    if ((p_name = strstr(p_desc,"CID")) != NULL) {
243 5f4da8c0 ths
        p_name += sizeof("CID");
244 5f4da8c0 ths
        sscanf(p_name,"%x",&p_cid);
245 5f4da8c0 ths
    }
246 5f4da8c0 ths
247 5f4da8c0 ths
    real_filename = filename;
248 5f4da8c0 ths
    if ((temp_str = strrchr(real_filename, '\\')) != NULL)
249 5f4da8c0 ths
        real_filename = temp_str + 1;
250 5f4da8c0 ths
    if ((temp_str = strrchr(real_filename, '/')) != NULL)
251 5f4da8c0 ths
        real_filename = temp_str + 1;
252 5f4da8c0 ths
    if ((temp_str = strrchr(real_filename, ':')) != NULL)
253 5f4da8c0 ths
        real_filename = temp_str + 1;
254 5f4da8c0 ths
255 363a37d5 blueswir1
    snprintf(s_desc, sizeof(s_desc), desc_template, p_cid, p_cid, backing_file,
256 363a37d5 blueswir1
             (uint32_t)header.capacity, real_filename);
257 5f4da8c0 ths
258 5f4da8c0 ths
    /* write the descriptor */
259 5f4da8c0 ths
    if (lseek(snp_fd, 0x200, SEEK_SET) == -1)
260 5f4da8c0 ths
        goto fail;
261 5f4da8c0 ths
    if (write(snp_fd, s_desc, strlen(s_desc)) == -1)
262 5f4da8c0 ths
        goto fail;
263 ea2384d3 bellard
264 5f4da8c0 ths
    gd_offset = header.gd_offset * SECTOR_SIZE;     // offset of GD table
265 5f4da8c0 ths
    rgd_offset = header.rgd_offset * SECTOR_SIZE;   // offset of RGD table
266 5f4da8c0 ths
    capacity = header.capacity * SECTOR_SIZE;       // Extent size
267 5f4da8c0 ths
    /*
268 5f4da8c0 ths
     * Each GDE span 32M disk, means:
269 5f4da8c0 ths
     * 512 GTE per GT, each GTE points to grain
270 5f4da8c0 ths
     */
271 5f4da8c0 ths
    gt_size = (int64_t)header.num_gtes_per_gte * header.granularity * SECTOR_SIZE;
272 5f4da8c0 ths
    if (!gt_size)
273 5f4da8c0 ths
        goto fail;
274 5fafdf24 ths
    gde_entries = (uint32_t)(capacity / gt_size);  // number of gde/rgde
275 5f4da8c0 ths
    gd_size = gde_entries * sizeof(uint32_t);
276 5f4da8c0 ths
277 5f4da8c0 ths
    /* write RGD */
278 5f4da8c0 ths
    rgd_buf = qemu_malloc(gd_size);
279 5f4da8c0 ths
    if (lseek(p_fd, rgd_offset, SEEK_SET) == -1)
280 5f4da8c0 ths
        goto fail_rgd;
281 5f4da8c0 ths
    if (read(p_fd, rgd_buf, gd_size) != gd_size)
282 5f4da8c0 ths
        goto fail_rgd;
283 5f4da8c0 ths
    if (lseek(snp_fd, rgd_offset, SEEK_SET) == -1)
284 5f4da8c0 ths
        goto fail_rgd;
285 5f4da8c0 ths
    if (write(snp_fd, rgd_buf, gd_size) == -1)
286 5f4da8c0 ths
        goto fail_rgd;
287 5f4da8c0 ths
    qemu_free(rgd_buf);
288 5f4da8c0 ths
289 5f4da8c0 ths
    /* write GD */
290 5f4da8c0 ths
    gd_buf = qemu_malloc(gd_size);
291 5f4da8c0 ths
    if (lseek(p_fd, gd_offset, SEEK_SET) == -1)
292 5f4da8c0 ths
        goto fail_gd;
293 5f4da8c0 ths
    if (read(p_fd, gd_buf, gd_size) != gd_size)
294 5f4da8c0 ths
        goto fail_gd;
295 5f4da8c0 ths
    if (lseek(snp_fd, gd_offset, SEEK_SET) == -1)
296 5f4da8c0 ths
        goto fail_gd;
297 5f4da8c0 ths
    if (write(snp_fd, gd_buf, gd_size) == -1)
298 5f4da8c0 ths
        goto fail_gd;
299 5f4da8c0 ths
    qemu_free(gd_buf);
300 5f4da8c0 ths
301 5f4da8c0 ths
    close(p_fd);
302 5f4da8c0 ths
    close(snp_fd);
303 5f4da8c0 ths
    return 0;
304 5f4da8c0 ths
305 5f4da8c0 ths
    fail_gd:
306 5f4da8c0 ths
    qemu_free(gd_buf);
307 3b46e624 ths
    fail_rgd:
308 5f4da8c0 ths
    qemu_free(rgd_buf);
309 5f4da8c0 ths
    fail:
310 5f4da8c0 ths
    close(p_fd);
311 5f4da8c0 ths
    close(snp_fd);
312 5f4da8c0 ths
    return -1;
313 5f4da8c0 ths
}
314 5f4da8c0 ths
315 5f4da8c0 ths
static void vmdk_parent_close(BlockDriverState *bs)
316 5f4da8c0 ths
{
317 5f4da8c0 ths
    if (bs->backing_hd)
318 5f4da8c0 ths
        bdrv_close(bs->backing_hd);
319 5f4da8c0 ths
}
320 5f4da8c0 ths
321 b1d8e52e blueswir1
static int parent_open = 0;
322 5f4da8c0 ths
static int vmdk_parent_open(BlockDriverState *bs, const char * filename)
323 5f4da8c0 ths
{
324 5f4da8c0 ths
    BDRVVmdkState *s = bs->opaque;
325 5fafdf24 ths
    char *p_name;
326 5f4da8c0 ths
    char desc[DESC_SIZE];
327 5f4da8c0 ths
    char parent_img_name[1024];
328 5f4da8c0 ths
329 5f4da8c0 ths
    /* the descriptor offset = 0x200 */
330 5f4da8c0 ths
    if (bdrv_pread(s->hd, 0x200, desc, DESC_SIZE) != DESC_SIZE)
331 5f4da8c0 ths
        return -1;
332 5f4da8c0 ths
333 511d2b14 blueswir1
    if ((p_name = strstr(desc,"parentFileNameHint")) != NULL) {
334 5f4da8c0 ths
        char *end_name;
335 5f4da8c0 ths
        struct stat file_buf;
336 5f4da8c0 ths
337 5f4da8c0 ths
        p_name += sizeof("parentFileNameHint") + 1;
338 511d2b14 blueswir1
        if ((end_name = strchr(p_name,'\"')) == NULL)
339 5f4da8c0 ths
            return -1;
340 b34d259a balrog
        if ((end_name - p_name) > sizeof (s->hd->backing_file) - 1)
341 b34d259a balrog
            return -1;
342 3b46e624 ths
343 9b8114a8 aliguori
        pstrcpy(s->hd->backing_file, end_name - p_name + 1, p_name);
344 5f4da8c0 ths
        if (stat(s->hd->backing_file, &file_buf) != 0) {
345 5f4da8c0 ths
            path_combine(parent_img_name, sizeof(parent_img_name),
346 5f4da8c0 ths
                         filename, s->hd->backing_file);
347 5f4da8c0 ths
        } else {
348 363a37d5 blueswir1
            pstrcpy(parent_img_name, sizeof(parent_img_name),
349 363a37d5 blueswir1
                    s->hd->backing_file);
350 5f4da8c0 ths
        }
351 5f4da8c0 ths
352 5f4da8c0 ths
        s->hd->backing_hd = bdrv_new("");
353 5f4da8c0 ths
        if (!s->hd->backing_hd) {
354 5f4da8c0 ths
            failure:
355 5f4da8c0 ths
            bdrv_close(s->hd);
356 ff1afc72 bellard
            return -1;
357 5f4da8c0 ths
        }
358 630530a6 ths
        parent_open = 1;
359 630530a6 ths
        if (bdrv_open(s->hd->backing_hd, parent_img_name, BDRV_O_RDONLY) < 0)
360 5f4da8c0 ths
            goto failure;
361 630530a6 ths
        parent_open = 0;
362 ff1afc72 bellard
    }
363 5f4da8c0 ths
364 5f4da8c0 ths
    return 0;
365 5f4da8c0 ths
}
366 5f4da8c0 ths
367 5f4da8c0 ths
static int vmdk_open(BlockDriverState *bs, const char *filename, int flags)
368 5f4da8c0 ths
{
369 5f4da8c0 ths
    BDRVVmdkState *s = bs->opaque;
370 5f4da8c0 ths
    uint32_t magic;
371 5f4da8c0 ths
    int l1_size, i, ret;
372 5f4da8c0 ths
373 630530a6 ths
    if (parent_open)
374 630530a6 ths
        // Parent must be opened as RO.
375 630530a6 ths
        flags = BDRV_O_RDONLY;
376 630530a6 ths
377 b5eff355 aurel32
    ret = bdrv_file_open(&s->hd, filename, flags);
378 5f4da8c0 ths
    if (ret < 0)
379 5f4da8c0 ths
        return ret;
380 5f4da8c0 ths
    if (bdrv_pread(s->hd, 0, &magic, sizeof(magic)) != sizeof(magic))
381 ea2384d3 bellard
        goto fail;
382 5f4da8c0 ths
383 7143c62c bellard
    magic = be32_to_cpu(magic);
384 ea2384d3 bellard
    if (magic == VMDK3_MAGIC) {
385 ea2384d3 bellard
        VMDK3Header header;
386 5f4da8c0 ths
387 5f4da8c0 ths
        if (bdrv_pread(s->hd, sizeof(magic), &header, sizeof(header)) != sizeof(header))
388 ea2384d3 bellard
            goto fail;
389 ea2384d3 bellard
        s->cluster_sectors = le32_to_cpu(header.granularity);
390 ea2384d3 bellard
        s->l2_size = 1 << 9;
391 ea2384d3 bellard
        s->l1_size = 1 << 6;
392 ea2384d3 bellard
        bs->total_sectors = le32_to_cpu(header.disk_sectors);
393 ff1afc72 bellard
        s->l1_table_offset = le32_to_cpu(header.l1dir_offset) << 9;
394 ff1afc72 bellard
        s->l1_backup_table_offset = 0;
395 ea2384d3 bellard
        s->l1_entry_sectors = s->l2_size * s->cluster_sectors;
396 ea2384d3 bellard
    } else if (magic == VMDK4_MAGIC) {
397 ea2384d3 bellard
        VMDK4Header header;
398 5f4da8c0 ths
399 5f4da8c0 ths
        if (bdrv_pread(s->hd, sizeof(magic), &header, sizeof(header)) != sizeof(header))
400 ea2384d3 bellard
            goto fail;
401 bd6ea3c8 bellard
        bs->total_sectors = le64_to_cpu(header.capacity);
402 bd6ea3c8 bellard
        s->cluster_sectors = le64_to_cpu(header.granularity);
403 ea2384d3 bellard
        s->l2_size = le32_to_cpu(header.num_gtes_per_gte);
404 ea2384d3 bellard
        s->l1_entry_sectors = s->l2_size * s->cluster_sectors;
405 ea2384d3 bellard
        if (s->l1_entry_sectors <= 0)
406 ea2384d3 bellard
            goto fail;
407 5fafdf24 ths
        s->l1_size = (bs->total_sectors + s->l1_entry_sectors - 1)
408 ea2384d3 bellard
            / s->l1_entry_sectors;
409 ff1afc72 bellard
        s->l1_table_offset = le64_to_cpu(header.rgd_offset) << 9;
410 ff1afc72 bellard
        s->l1_backup_table_offset = le64_to_cpu(header.gd_offset) << 9;
411 5f4da8c0 ths
412 630530a6 ths
        if (parent_open)
413 630530a6 ths
            s->is_parent = 1;
414 630530a6 ths
        else
415 630530a6 ths
            s->is_parent = 0;
416 630530a6 ths
417 5f4da8c0 ths
        // try to open parent images, if exist
418 5f4da8c0 ths
        if (vmdk_parent_open(bs, filename) != 0)
419 5f4da8c0 ths
            goto fail;
420 5f4da8c0 ths
        // write the CID once after the image creation
421 5f4da8c0 ths
        s->parent_cid = vmdk_read_cid(bs,1);
422 ea2384d3 bellard
    } else {
423 ea2384d3 bellard
        goto fail;
424 ea2384d3 bellard
    }
425 5f4da8c0 ths
426 ea2384d3 bellard
    /* read the L1 table */
427 ea2384d3 bellard
    l1_size = s->l1_size * sizeof(uint32_t);
428 ea2384d3 bellard
    s->l1_table = qemu_malloc(l1_size);
429 5f4da8c0 ths
    if (bdrv_pread(s->hd, s->l1_table_offset, s->l1_table, l1_size) != l1_size)
430 ea2384d3 bellard
        goto fail;
431 ea2384d3 bellard
    for(i = 0; i < s->l1_size; i++) {
432 ea2384d3 bellard
        le32_to_cpus(&s->l1_table[i]);
433 ea2384d3 bellard
    }
434 ea2384d3 bellard
435 ff1afc72 bellard
    if (s->l1_backup_table_offset) {
436 ff1afc72 bellard
        s->l1_backup_table = qemu_malloc(l1_size);
437 5f4da8c0 ths
        if (bdrv_pread(s->hd, s->l1_backup_table_offset, s->l1_backup_table, l1_size) != l1_size)
438 ff1afc72 bellard
            goto fail;
439 ff1afc72 bellard
        for(i = 0; i < s->l1_size; i++) {
440 ff1afc72 bellard
            le32_to_cpus(&s->l1_backup_table[i]);
441 ff1afc72 bellard
        }
442 ff1afc72 bellard
    }
443 ff1afc72 bellard
444 ea2384d3 bellard
    s->l2_cache = qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint32_t));
445 ea2384d3 bellard
    return 0;
446 ea2384d3 bellard
 fail:
447 ff1afc72 bellard
    qemu_free(s->l1_backup_table);
448 ea2384d3 bellard
    qemu_free(s->l1_table);
449 ea2384d3 bellard
    qemu_free(s->l2_cache);
450 5f4da8c0 ths
    bdrv_delete(s->hd);
451 ea2384d3 bellard
    return -1;
452 ea2384d3 bellard
}
453 ea2384d3 bellard
454 630530a6 ths
static uint64_t get_cluster_offset(BlockDriverState *bs, VmdkMetaData *m_data,
455 630530a6 ths
                                   uint64_t offset, int allocate);
456 5f4da8c0 ths
457 5f4da8c0 ths
static int get_whole_cluster(BlockDriverState *bs, uint64_t cluster_offset,
458 5f4da8c0 ths
                             uint64_t offset, int allocate)
459 5f4da8c0 ths
{
460 5f4da8c0 ths
    uint64_t parent_cluster_offset;
461 5f4da8c0 ths
    BDRVVmdkState *s = bs->opaque;
462 5f4da8c0 ths
    uint8_t  whole_grain[s->cluster_sectors*512];        // 128 sectors * 512 bytes each = grain size 64KB
463 5f4da8c0 ths
464 5f4da8c0 ths
    // we will be here if it's first write on non-exist grain(cluster).
465 5f4da8c0 ths
    // try to read from parent image, if exist
466 5f4da8c0 ths
    if (s->hd->backing_hd) {
467 5f4da8c0 ths
        BDRVVmdkState *ps = s->hd->backing_hd->opaque;
468 5f4da8c0 ths
469 5f4da8c0 ths
        if (!vmdk_is_cid_valid(bs))
470 5f4da8c0 ths
            return -1;
471 5f4da8c0 ths
472 630530a6 ths
        parent_cluster_offset = get_cluster_offset(s->hd->backing_hd, NULL, offset, allocate);
473 630530a6 ths
474 630530a6 ths
        if (parent_cluster_offset) {
475 630530a6 ths
            BDRVVmdkState *act_s = activeBDRV.hd->opaque;
476 630530a6 ths
477 630530a6 ths
            if (bdrv_pread(ps->hd, parent_cluster_offset, whole_grain, ps->cluster_sectors*512) != ps->cluster_sectors*512)
478 630530a6 ths
                return -1;
479 630530a6 ths
480 630530a6 ths
            //Write grain only into the active image
481 630530a6 ths
            if (bdrv_pwrite(act_s->hd, activeBDRV.cluster_offset << 9, whole_grain, sizeof(whole_grain)) != sizeof(whole_grain))
482 630530a6 ths
                return -1;
483 630530a6 ths
        }
484 630530a6 ths
    }
485 630530a6 ths
    return 0;
486 630530a6 ths
}
487 630530a6 ths
488 630530a6 ths
static int vmdk_L2update(BlockDriverState *bs, VmdkMetaData *m_data)
489 630530a6 ths
{
490 630530a6 ths
    BDRVVmdkState *s = bs->opaque;
491 630530a6 ths
492 630530a6 ths
    /* update L2 table */
493 630530a6 ths
    if (bdrv_pwrite(s->hd, ((int64_t)m_data->l2_offset * 512) + (m_data->l2_index * sizeof(m_data->offset)),
494 630530a6 ths
                    &(m_data->offset), sizeof(m_data->offset)) != sizeof(m_data->offset))
495 630530a6 ths
        return -1;
496 630530a6 ths
    /* update backup L2 table */
497 630530a6 ths
    if (s->l1_backup_table_offset != 0) {
498 630530a6 ths
        m_data->l2_offset = s->l1_backup_table[m_data->l1_index];
499 630530a6 ths
        if (bdrv_pwrite(s->hd, ((int64_t)m_data->l2_offset * 512) + (m_data->l2_index * sizeof(m_data->offset)),
500 630530a6 ths
                        &(m_data->offset), sizeof(m_data->offset)) != sizeof(m_data->offset))
501 5f4da8c0 ths
            return -1;
502 5f4da8c0 ths
    }
503 630530a6 ths
504 5f4da8c0 ths
    return 0;
505 5f4da8c0 ths
}
506 5f4da8c0 ths
507 630530a6 ths
static uint64_t get_cluster_offset(BlockDriverState *bs, VmdkMetaData *m_data,
508 ff1afc72 bellard
                                   uint64_t offset, int allocate)
509 ea2384d3 bellard
{
510 ea2384d3 bellard
    BDRVVmdkState *s = bs->opaque;
511 ea2384d3 bellard
    unsigned int l1_index, l2_offset, l2_index;
512 ea2384d3 bellard
    int min_index, i, j;
513 630530a6 ths
    uint32_t min_count, *l2_table, tmp = 0;
514 ea2384d3 bellard
    uint64_t cluster_offset;
515 630530a6 ths
516 630530a6 ths
    if (m_data)
517 630530a6 ths
        m_data->valid = 0;
518 630530a6 ths
519 ea2384d3 bellard
    l1_index = (offset >> 9) / s->l1_entry_sectors;
520 ea2384d3 bellard
    if (l1_index >= s->l1_size)
521 ea2384d3 bellard
        return 0;
522 ea2384d3 bellard
    l2_offset = s->l1_table[l1_index];
523 ea2384d3 bellard
    if (!l2_offset)
524 ea2384d3 bellard
        return 0;
525 ea2384d3 bellard
    for(i = 0; i < L2_CACHE_SIZE; i++) {
526 ea2384d3 bellard
        if (l2_offset == s->l2_cache_offsets[i]) {
527 ea2384d3 bellard
            /* increment the hit count */
528 ea2384d3 bellard
            if (++s->l2_cache_counts[i] == 0xffffffff) {
529 ea2384d3 bellard
                for(j = 0; j < L2_CACHE_SIZE; j++) {
530 ea2384d3 bellard
                    s->l2_cache_counts[j] >>= 1;
531 ea2384d3 bellard
                }
532 ea2384d3 bellard
            }
533 ea2384d3 bellard
            l2_table = s->l2_cache + (i * s->l2_size);
534 ea2384d3 bellard
            goto found;
535 ea2384d3 bellard
        }
536 ea2384d3 bellard
    }
537 ea2384d3 bellard
    /* not found: load a new entry in the least used one */
538 ea2384d3 bellard
    min_index = 0;
539 ea2384d3 bellard
    min_count = 0xffffffff;
540 ea2384d3 bellard
    for(i = 0; i < L2_CACHE_SIZE; i++) {
541 ea2384d3 bellard
        if (s->l2_cache_counts[i] < min_count) {
542 ea2384d3 bellard
            min_count = s->l2_cache_counts[i];
543 ea2384d3 bellard
            min_index = i;
544 ea2384d3 bellard
        }
545 ea2384d3 bellard
    }
546 ea2384d3 bellard
    l2_table = s->l2_cache + (min_index * s->l2_size);
547 5fafdf24 ths
    if (bdrv_pread(s->hd, (int64_t)l2_offset * 512, l2_table, s->l2_size * sizeof(uint32_t)) !=
548 5f4da8c0 ths
                                                                        s->l2_size * sizeof(uint32_t))
549 ea2384d3 bellard
        return 0;
550 5f4da8c0 ths
551 ea2384d3 bellard
    s->l2_cache_offsets[min_index] = l2_offset;
552 ea2384d3 bellard
    s->l2_cache_counts[min_index] = 1;
553 ea2384d3 bellard
 found:
554 ea2384d3 bellard
    l2_index = ((offset >> 9) / s->cluster_sectors) % s->l2_size;
555 ea2384d3 bellard
    cluster_offset = le32_to_cpu(l2_table[l2_index]);
556 630530a6 ths
557 ff1afc72 bellard
    if (!cluster_offset) {
558 ff1afc72 bellard
        if (!allocate)
559 ff1afc72 bellard
            return 0;
560 630530a6 ths
        // Avoid the L2 tables update for the images that have snapshots.
561 630530a6 ths
        if (!s->is_parent) {
562 49140a77 ths
            cluster_offset = bdrv_getlength(s->hd);
563 630530a6 ths
            bdrv_truncate(s->hd, cluster_offset + (s->cluster_sectors << 9));
564 630530a6 ths
565 630530a6 ths
            cluster_offset >>= 9;
566 630530a6 ths
            tmp = cpu_to_le32(cluster_offset);
567 630530a6 ths
            l2_table[l2_index] = tmp;
568 630530a6 ths
            // Save the active image state
569 630530a6 ths
            activeBDRV.cluster_offset = cluster_offset;
570 630530a6 ths
            activeBDRV.hd = bs;
571 ff1afc72 bellard
        }
572 630530a6 ths
        /* First of all we write grain itself, to avoid race condition
573 630530a6 ths
         * that may to corrupt the image.
574 630530a6 ths
         * This problem may occur because of insufficient space on host disk
575 630530a6 ths
         * or inappropriate VM shutdown.
576 630530a6 ths
         */
577 5f4da8c0 ths
        if (get_whole_cluster(bs, cluster_offset, offset, allocate) == -1)
578 5f4da8c0 ths
            return 0;
579 630530a6 ths
580 630530a6 ths
        if (m_data) {
581 630530a6 ths
            m_data->offset = tmp;
582 630530a6 ths
            m_data->l1_index = l1_index;
583 630530a6 ths
            m_data->l2_index = l2_index;
584 630530a6 ths
            m_data->l2_offset = l2_offset;
585 630530a6 ths
            m_data->valid = 1;
586 630530a6 ths
        }
587 ff1afc72 bellard
    }
588 ea2384d3 bellard
    cluster_offset <<= 9;
589 ea2384d3 bellard
    return cluster_offset;
590 ea2384d3 bellard
}
591 ea2384d3 bellard
592 5fafdf24 ths
static int vmdk_is_allocated(BlockDriverState *bs, int64_t sector_num,
593 ea2384d3 bellard
                             int nb_sectors, int *pnum)
594 ea2384d3 bellard
{
595 ea2384d3 bellard
    BDRVVmdkState *s = bs->opaque;
596 ea2384d3 bellard
    int index_in_cluster, n;
597 ea2384d3 bellard
    uint64_t cluster_offset;
598 ea2384d3 bellard
599 630530a6 ths
    cluster_offset = get_cluster_offset(bs, NULL, sector_num << 9, 0);
600 ea2384d3 bellard
    index_in_cluster = sector_num % s->cluster_sectors;
601 ea2384d3 bellard
    n = s->cluster_sectors - index_in_cluster;
602 ea2384d3 bellard
    if (n > nb_sectors)
603 ea2384d3 bellard
        n = nb_sectors;
604 ea2384d3 bellard
    *pnum = n;
605 ea2384d3 bellard
    return (cluster_offset != 0);
606 ea2384d3 bellard
}
607 ea2384d3 bellard
608 5fafdf24 ths
static int vmdk_read(BlockDriverState *bs, int64_t sector_num,
609 ea2384d3 bellard
                    uint8_t *buf, int nb_sectors)
610 ea2384d3 bellard
{
611 ea2384d3 bellard
    BDRVVmdkState *s = bs->opaque;
612 5f4da8c0 ths
    int index_in_cluster, n, ret;
613 ea2384d3 bellard
    uint64_t cluster_offset;
614 5f4da8c0 ths
615 ea2384d3 bellard
    while (nb_sectors > 0) {
616 630530a6 ths
        cluster_offset = get_cluster_offset(bs, NULL, sector_num << 9, 0);
617 ea2384d3 bellard
        index_in_cluster = sector_num % s->cluster_sectors;
618 ea2384d3 bellard
        n = s->cluster_sectors - index_in_cluster;
619 ea2384d3 bellard
        if (n > nb_sectors)
620 ea2384d3 bellard
            n = nb_sectors;
621 ea2384d3 bellard
        if (!cluster_offset) {
622 5f4da8c0 ths
            // try to read from parent image, if exist
623 5f4da8c0 ths
            if (s->hd->backing_hd) {
624 5f4da8c0 ths
                if (!vmdk_is_cid_valid(bs))
625 5f4da8c0 ths
                    return -1;
626 5f4da8c0 ths
                ret = bdrv_read(s->hd->backing_hd, sector_num, buf, n);
627 5f4da8c0 ths
                if (ret < 0)
628 5f4da8c0 ths
                    return -1;
629 5f4da8c0 ths
            } else {
630 5f4da8c0 ths
                memset(buf, 0, 512 * n);
631 5f4da8c0 ths
            }
632 ea2384d3 bellard
        } else {
633 5f4da8c0 ths
            if(bdrv_pread(s->hd, cluster_offset + index_in_cluster * 512, buf, n * 512) != n * 512)
634 ea2384d3 bellard
                return -1;
635 ea2384d3 bellard
        }
636 ea2384d3 bellard
        nb_sectors -= n;
637 ea2384d3 bellard
        sector_num += n;
638 ea2384d3 bellard
        buf += n * 512;
639 ea2384d3 bellard
    }
640 ea2384d3 bellard
    return 0;
641 ea2384d3 bellard
}
642 ea2384d3 bellard
643 5fafdf24 ths
static int vmdk_write(BlockDriverState *bs, int64_t sector_num,
644 ea2384d3 bellard
                     const uint8_t *buf, int nb_sectors)
645 ea2384d3 bellard
{
646 ff1afc72 bellard
    BDRVVmdkState *s = bs->opaque;
647 630530a6 ths
    VmdkMetaData m_data;
648 5f4da8c0 ths
    int index_in_cluster, n;
649 ff1afc72 bellard
    uint64_t cluster_offset;
650 5f4da8c0 ths
    static int cid_update = 0;
651 ff1afc72 bellard
652 630530a6 ths
    if (sector_num > bs->total_sectors) {
653 630530a6 ths
        fprintf(stderr,
654 92868412 j_mayer
                "(VMDK) Wrong offset: sector_num=0x%" PRIx64
655 92868412 j_mayer
                " total_sectors=0x%" PRIx64 "\n",
656 630530a6 ths
                sector_num, bs->total_sectors);
657 630530a6 ths
        return -1;
658 630530a6 ths
    }
659 630530a6 ths
660 ff1afc72 bellard
    while (nb_sectors > 0) {
661 ff1afc72 bellard
        index_in_cluster = sector_num & (s->cluster_sectors - 1);
662 ff1afc72 bellard
        n = s->cluster_sectors - index_in_cluster;
663 ff1afc72 bellard
        if (n > nb_sectors)
664 ff1afc72 bellard
            n = nb_sectors;
665 630530a6 ths
        cluster_offset = get_cluster_offset(bs, &m_data, sector_num << 9, 1);
666 ff1afc72 bellard
        if (!cluster_offset)
667 ff1afc72 bellard
            return -1;
668 630530a6 ths
669 5f4da8c0 ths
        if (bdrv_pwrite(s->hd, cluster_offset + index_in_cluster * 512, buf, n * 512) != n * 512)
670 ff1afc72 bellard
            return -1;
671 630530a6 ths
        if (m_data.valid) {
672 630530a6 ths
            /* update L2 tables */
673 630530a6 ths
            if (vmdk_L2update(bs, &m_data) == -1)
674 630530a6 ths
                return -1;
675 630530a6 ths
        }
676 ff1afc72 bellard
        nb_sectors -= n;
677 ff1afc72 bellard
        sector_num += n;
678 ff1afc72 bellard
        buf += n * 512;
679 5f4da8c0 ths
680 5f4da8c0 ths
        // update CID on the first write every time the virtual disk is opened
681 5f4da8c0 ths
        if (!cid_update) {
682 5f4da8c0 ths
            vmdk_write_cid(bs, time(NULL));
683 5f4da8c0 ths
            cid_update++;
684 5f4da8c0 ths
        }
685 ff1afc72 bellard
    }
686 ff1afc72 bellard
    return 0;
687 ea2384d3 bellard
}
688 ea2384d3 bellard
689 8979b227 bellard
static int vmdk_create(const char *filename, int64_t total_size,
690 8979b227 bellard
                       const char *backing_file, int flags)
691 8979b227 bellard
{
692 8979b227 bellard
    int fd, i;
693 8979b227 bellard
    VMDK4Header header;
694 8979b227 bellard
    uint32_t tmp, magic, grains, gd_size, gt_size, gt_count;
695 7ccfb2eb blueswir1
    static const char desc_template[] =
696 8979b227 bellard
        "# Disk DescriptorFile\n"
697 8979b227 bellard
        "version=1\n"
698 8979b227 bellard
        "CID=%x\n"
699 8979b227 bellard
        "parentCID=ffffffff\n"
700 8979b227 bellard
        "createType=\"monolithicSparse\"\n"
701 8979b227 bellard
        "\n"
702 8979b227 bellard
        "# Extent description\n"
703 7fd6d9fc blueswir1
        "RW %" PRId64 " SPARSE \"%s\"\n"
704 8979b227 bellard
        "\n"
705 8979b227 bellard
        "# The Disk Data Base \n"
706 8979b227 bellard
        "#DDB\n"
707 8979b227 bellard
        "\n"
708 ec36ba14 ths
        "ddb.virtualHWVersion = \"%d\"\n"
709 7fd6d9fc blueswir1
        "ddb.geometry.cylinders = \"%" PRId64 "\"\n"
710 8979b227 bellard
        "ddb.geometry.heads = \"16\"\n"
711 8979b227 bellard
        "ddb.geometry.sectors = \"63\"\n"
712 8979b227 bellard
        "ddb.adapterType = \"ide\"\n";
713 8979b227 bellard
    char desc[1024];
714 8979b227 bellard
    const char *real_filename, *temp_str;
715 8979b227 bellard
716 8979b227 bellard
    /* XXX: add support for backing file */
717 5f4da8c0 ths
    if (backing_file) {
718 5f4da8c0 ths
        return vmdk_snapshot_create(filename, backing_file);
719 5f4da8c0 ths
    }
720 8979b227 bellard
721 8979b227 bellard
    fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
722 8979b227 bellard
              0644);
723 8979b227 bellard
    if (fd < 0)
724 8979b227 bellard
        return -1;
725 8979b227 bellard
    magic = cpu_to_be32(VMDK4_MAGIC);
726 8979b227 bellard
    memset(&header, 0, sizeof(header));
727 8979b227 bellard
    header.version = cpu_to_le32(1);
728 8979b227 bellard
    header.flags = cpu_to_le32(3); /* ?? */
729 8979b227 bellard
    header.capacity = cpu_to_le64(total_size);
730 8979b227 bellard
    header.granularity = cpu_to_le64(128);
731 8979b227 bellard
    header.num_gtes_per_gte = cpu_to_le32(512);
732 8979b227 bellard
733 8979b227 bellard
    grains = (total_size + header.granularity - 1) / header.granularity;
734 8979b227 bellard
    gt_size = ((header.num_gtes_per_gte * sizeof(uint32_t)) + 511) >> 9;
735 8979b227 bellard
    gt_count = (grains + header.num_gtes_per_gte - 1) / header.num_gtes_per_gte;
736 8979b227 bellard
    gd_size = (gt_count * sizeof(uint32_t) + 511) >> 9;
737 8979b227 bellard
738 8979b227 bellard
    header.desc_offset = 1;
739 8979b227 bellard
    header.desc_size = 20;
740 8979b227 bellard
    header.rgd_offset = header.desc_offset + header.desc_size;
741 8979b227 bellard
    header.gd_offset = header.rgd_offset + gd_size + (gt_size * gt_count);
742 8979b227 bellard
    header.grain_offset =
743 8979b227 bellard
       ((header.gd_offset + gd_size + (gt_size * gt_count) +
744 8979b227 bellard
         header.granularity - 1) / header.granularity) *
745 8979b227 bellard
        header.granularity;
746 8979b227 bellard
747 8979b227 bellard
    header.desc_offset = cpu_to_le64(header.desc_offset);
748 8979b227 bellard
    header.desc_size = cpu_to_le64(header.desc_size);
749 8979b227 bellard
    header.rgd_offset = cpu_to_le64(header.rgd_offset);
750 8979b227 bellard
    header.gd_offset = cpu_to_le64(header.gd_offset);
751 8979b227 bellard
    header.grain_offset = cpu_to_le64(header.grain_offset);
752 8979b227 bellard
753 8979b227 bellard
    header.check_bytes[0] = 0xa;
754 8979b227 bellard
    header.check_bytes[1] = 0x20;
755 8979b227 bellard
    header.check_bytes[2] = 0xd;
756 8979b227 bellard
    header.check_bytes[3] = 0xa;
757 3b46e624 ths
758 3b46e624 ths
    /* write all the data */
759 8979b227 bellard
    write(fd, &magic, sizeof(magic));
760 8979b227 bellard
    write(fd, &header, sizeof(header));
761 8979b227 bellard
762 8979b227 bellard
    ftruncate(fd, header.grain_offset << 9);
763 8979b227 bellard
764 8979b227 bellard
    /* write grain directory */
765 8979b227 bellard
    lseek(fd, le64_to_cpu(header.rgd_offset) << 9, SEEK_SET);
766 8979b227 bellard
    for (i = 0, tmp = header.rgd_offset + gd_size;
767 8979b227 bellard
         i < gt_count; i++, tmp += gt_size)
768 8979b227 bellard
        write(fd, &tmp, sizeof(tmp));
769 3b46e624 ths
770 8979b227 bellard
    /* write backup grain directory */
771 8979b227 bellard
    lseek(fd, le64_to_cpu(header.gd_offset) << 9, SEEK_SET);
772 8979b227 bellard
    for (i = 0, tmp = header.gd_offset + gd_size;
773 8979b227 bellard
         i < gt_count; i++, tmp += gt_size)
774 8979b227 bellard
        write(fd, &tmp, sizeof(tmp));
775 8979b227 bellard
776 8979b227 bellard
    /* compose the descriptor */
777 8979b227 bellard
    real_filename = filename;
778 8979b227 bellard
    if ((temp_str = strrchr(real_filename, '\\')) != NULL)
779 8979b227 bellard
        real_filename = temp_str + 1;
780 8979b227 bellard
    if ((temp_str = strrchr(real_filename, '/')) != NULL)
781 8979b227 bellard
        real_filename = temp_str + 1;
782 8979b227 bellard
    if ((temp_str = strrchr(real_filename, ':')) != NULL)
783 8979b227 bellard
        real_filename = temp_str + 1;
784 7ccfb2eb blueswir1
    snprintf(desc, sizeof(desc), desc_template, (unsigned int)time(NULL),
785 7fd6d9fc blueswir1
             total_size, real_filename,
786 7fd6d9fc blueswir1
             (flags & BLOCK_FLAG_COMPAT6 ? 6 : 4),
787 7fd6d9fc blueswir1
             total_size / (int64_t)(63 * 16));
788 8979b227 bellard
789 8979b227 bellard
    /* write the descriptor */
790 8979b227 bellard
    lseek(fd, le64_to_cpu(header.desc_offset) << 9, SEEK_SET);
791 8979b227 bellard
    write(fd, desc, strlen(desc));
792 8979b227 bellard
793 8979b227 bellard
    close(fd);
794 8979b227 bellard
    return 0;
795 8979b227 bellard
}
796 8979b227 bellard
797 e2731add bellard
static void vmdk_close(BlockDriverState *bs)
798 ea2384d3 bellard
{
799 ea2384d3 bellard
    BDRVVmdkState *s = bs->opaque;
800 5f4da8c0 ths
801 ea2384d3 bellard
    qemu_free(s->l1_table);
802 ea2384d3 bellard
    qemu_free(s->l2_cache);
803 5f4da8c0 ths
    // try to close parent image, if exist
804 5f4da8c0 ths
    vmdk_parent_close(s->hd);
805 5cbdd273 ths
    bdrv_delete(s->hd);
806 ea2384d3 bellard
}
807 ea2384d3 bellard
808 7a6cba61 pbrook
static void vmdk_flush(BlockDriverState *bs)
809 7a6cba61 pbrook
{
810 7a6cba61 pbrook
    BDRVVmdkState *s = bs->opaque;
811 5f4da8c0 ths
    bdrv_flush(s->hd);
812 7a6cba61 pbrook
}
813 7a6cba61 pbrook
814 ea2384d3 bellard
BlockDriver bdrv_vmdk = {
815 e60f469c aurel32
    .format_name        = "vmdk",
816 e60f469c aurel32
    .instance_size        = sizeof(BDRVVmdkState),
817 e60f469c aurel32
    .bdrv_probe                = vmdk_probe,
818 e60f469c aurel32
    .bdrv_open                = vmdk_open,
819 e60f469c aurel32
    .bdrv_read                = vmdk_read,
820 e60f469c aurel32
    .bdrv_write                = vmdk_write,
821 e60f469c aurel32
    .bdrv_close                = vmdk_close,
822 e60f469c aurel32
    .bdrv_create        = vmdk_create,
823 e60f469c aurel32
    .bdrv_flush                = vmdk_flush,
824 e60f469c aurel32
    .bdrv_is_allocated        = vmdk_is_allocated,
825 ea2384d3 bellard
};