Statistics
| Branch: | Revision:

root / block / vmdk.c @ 2dedf83e

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