blob: d146434181aee79f357d8e25508cd9f9abde7a17 [file] [log] [blame]
bellardea2384d2004-08-01 21:59:26 +00001/*
2 * Block driver for the COW format
ths5fafdf22007-09-16 21:08:06 +00003 *
bellardea2384d2004-08-01 21:59:26 +00004 * Copyright (c) 2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardea2384d2004-08-01 21:59:26 +00006 * 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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
pbrookfaf07962007-11-11 02:51:17 +000024#include "qemu-common.h"
bellardea2384d2004-08-01 21:59:26 +000025#include "block_int.h"
Anthony Liguori5efa9d52009-05-09 17:03:42 -050026#include "module.h"
bellardea2384d2004-08-01 21:59:26 +000027
28/**************************************************************/
29/* COW block driver using file system holes */
30
31/* user mode linux compatible COW file */
32#define COW_MAGIC 0x4f4f4f4d /* MOOO */
33#define COW_VERSION 2
34
35struct cow_header_v2 {
36 uint32_t magic;
37 uint32_t version;
38 char backing_file[1024];
39 int32_t mtime;
40 uint64_t size;
41 uint32_t sectorsize;
42};
43
44typedef struct BDRVCowState {
bellardea2384d2004-08-01 21:59:26 +000045 int64_t cow_sectors_offset;
46} BDRVCowState;
47
48static int cow_probe(const uint8_t *buf, int buf_size, const char *filename)
49{
50 const struct cow_header_v2 *cow_header = (const void *)buf;
51
bellard712e7872005-04-28 21:09:32 +000052 if (buf_size >= sizeof(struct cow_header_v2) &&
53 be32_to_cpu(cow_header->magic) == COW_MAGIC &&
ths5fafdf22007-09-16 21:08:06 +000054 be32_to_cpu(cow_header->version) == COW_VERSION)
bellardea2384d2004-08-01 21:59:26 +000055 return 100;
56 else
57 return 0;
58}
59
Christoph Hellwig20633922010-06-07 12:06:47 +020060static int cow_open(BlockDriverState *bs, int flags)
bellardea2384d2004-08-01 21:59:26 +000061{
62 BDRVCowState *s = bs->opaque;
bellardea2384d2004-08-01 21:59:26 +000063 struct cow_header_v2 cow_header;
Christoph Hellwig893a9cb2010-06-07 12:06:37 +020064 int bitmap_size;
bellardea2384d2004-08-01 21:59:26 +000065 int64_t size;
66
bellardea2384d2004-08-01 21:59:26 +000067 /* see if it is a cow image */
Christoph Hellwig20633922010-06-07 12:06:47 +020068 if (bdrv_pread(bs->file, 0, &cow_header, sizeof(cow_header)) !=
69 sizeof(cow_header)) {
bellardea2384d2004-08-01 21:59:26 +000070 goto fail;
71 }
72
73 if (be32_to_cpu(cow_header.magic) != COW_MAGIC ||
74 be32_to_cpu(cow_header.version) != COW_VERSION) {
75 goto fail;
76 }
ths3b46e622007-09-17 08:09:54 +000077
bellardea2384d2004-08-01 21:59:26 +000078 /* cow image found */
79 size = be64_to_cpu(cow_header.size);
80 bs->total_sectors = size / 512;
81
ths5fafdf22007-09-16 21:08:06 +000082 pstrcpy(bs->backing_file, sizeof(bs->backing_file),
bellardea2384d2004-08-01 21:59:26 +000083 cow_header.backing_file);
ths3b46e622007-09-17 08:09:54 +000084
Christoph Hellwig893a9cb2010-06-07 12:06:37 +020085 bitmap_size = ((bs->total_sectors + 7) >> 3) + sizeof(cow_header);
86 s->cow_sectors_offset = (bitmap_size + 511) & ~511;
bellardea2384d2004-08-01 21:59:26 +000087 return 0;
88 fail:
bellardea2384d2004-08-01 21:59:26 +000089 return -1;
90}
91
Christoph Hellwig893a9cb2010-06-07 12:06:37 +020092/*
93 * XXX(hch): right now these functions are extremly ineffcient.
94 * We should just read the whole bitmap we'll need in one go instead.
95 */
96static inline int cow_set_bit(BlockDriverState *bs, int64_t bitnum)
bellardea2384d2004-08-01 21:59:26 +000097{
Christoph Hellwig893a9cb2010-06-07 12:06:37 +020098 uint64_t offset = sizeof(struct cow_header_v2) + bitnum / 8;
99 uint8_t bitmap;
100
Christoph Hellwig20633922010-06-07 12:06:47 +0200101 if (bdrv_pread(bs->file, offset, &bitmap, sizeof(bitmap)) !=
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200102 sizeof(bitmap)) {
103 return -errno;
104 }
105
106 bitmap |= (1 << (bitnum % 8));
107
Christoph Hellwig20633922010-06-07 12:06:47 +0200108 if (bdrv_pwrite(bs->file, offset, &bitmap, sizeof(bitmap)) !=
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200109 sizeof(bitmap)) {
110 return -errno;
111 }
112 return 0;
bellardea2384d2004-08-01 21:59:26 +0000113}
114
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200115static inline int is_bit_set(BlockDriverState *bs, int64_t bitnum)
bellardea2384d2004-08-01 21:59:26 +0000116{
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200117 uint64_t offset = sizeof(struct cow_header_v2) + bitnum / 8;
118 uint8_t bitmap;
bellardea2384d2004-08-01 21:59:26 +0000119
Christoph Hellwig20633922010-06-07 12:06:47 +0200120 if (bdrv_pread(bs->file, offset, &bitmap, sizeof(bitmap)) !=
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200121 sizeof(bitmap)) {
122 return -errno;
123 }
124
125 return !!(bitmap & (1 << (bitnum % 8)));
126}
bellardea2384d2004-08-01 21:59:26 +0000127
128/* Return true if first block has been changed (ie. current version is
129 * in COW file). Set the number of continuous blocks for which that
130 * is true. */
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200131static int cow_is_allocated(BlockDriverState *bs, int64_t sector_num,
132 int nb_sectors, int *num_same)
bellardea2384d2004-08-01 21:59:26 +0000133{
134 int changed;
135
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200136 if (nb_sectors == 0) {
bellardea2384d2004-08-01 21:59:26 +0000137 *num_same = nb_sectors;
138 return 0;
139 }
140
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200141 changed = is_bit_set(bs, sector_num);
142 if (changed < 0) {
143 return 0; /* XXX: how to return I/O errors? */
144 }
145
bellardea2384d2004-08-01 21:59:26 +0000146 for (*num_same = 1; *num_same < nb_sectors; (*num_same)++) {
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200147 if (is_bit_set(bs, sector_num + *num_same) != changed)
bellardea2384d2004-08-01 21:59:26 +0000148 break;
149 }
150
151 return changed;
152}
153
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200154static int cow_update_bitmap(BlockDriverState *bs, int64_t sector_num,
155 int nb_sectors)
bellardea2384d2004-08-01 21:59:26 +0000156{
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200157 int error = 0;
158 int i;
159
160 for (i = 0; i < nb_sectors; i++) {
161 error = cow_set_bit(bs, sector_num + i);
162 if (error) {
163 break;
164 }
165 }
166
167 return error;
bellardea2384d2004-08-01 21:59:26 +0000168}
169
ths5fafdf22007-09-16 21:08:06 +0000170static int cow_read(BlockDriverState *bs, int64_t sector_num,
bellardea2384d2004-08-01 21:59:26 +0000171 uint8_t *buf, int nb_sectors)
172{
173 BDRVCowState *s = bs->opaque;
174 int ret, n;
ths3b46e622007-09-17 08:09:54 +0000175
bellardea2384d2004-08-01 21:59:26 +0000176 while (nb_sectors > 0) {
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200177 if (cow_is_allocated(bs, sector_num, nb_sectors, &n)) {
Christoph Hellwig20633922010-06-07 12:06:47 +0200178 ret = bdrv_pread(bs->file,
179 s->cow_sectors_offset + sector_num * 512,
180 buf, n * 512);
ths5fafdf22007-09-16 21:08:06 +0000181 if (ret != n * 512)
bellardea2384d2004-08-01 21:59:26 +0000182 return -1;
183 } else {
bellard83f64092006-08-01 16:21:11 +0000184 if (bs->backing_hd) {
185 /* read from the base image */
186 ret = bdrv_read(bs->backing_hd, sector_num, buf, n);
187 if (ret < 0)
188 return -1;
189 } else {
bellardea2384d2004-08-01 21:59:26 +0000190 memset(buf, 0, n * 512);
191 }
bellard83f64092006-08-01 16:21:11 +0000192 }
bellardea2384d2004-08-01 21:59:26 +0000193 nb_sectors -= n;
194 sector_num += n;
195 buf += n * 512;
196 }
197 return 0;
198}
199
ths5fafdf22007-09-16 21:08:06 +0000200static int cow_write(BlockDriverState *bs, int64_t sector_num,
bellardea2384d2004-08-01 21:59:26 +0000201 const uint8_t *buf, int nb_sectors)
202{
203 BDRVCowState *s = bs->opaque;
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200204 int ret;
ths3b46e622007-09-17 08:09:54 +0000205
Christoph Hellwig20633922010-06-07 12:06:47 +0200206 ret = bdrv_pwrite(bs->file, s->cow_sectors_offset + sector_num * 512,
207 buf, nb_sectors * 512);
ths5fafdf22007-09-16 21:08:06 +0000208 if (ret != nb_sectors * 512)
bellardea2384d2004-08-01 21:59:26 +0000209 return -1;
Christoph Hellwig893a9cb2010-06-07 12:06:37 +0200210
211 return cow_update_bitmap(bs, sector_num, nb_sectors);
bellardea2384d2004-08-01 21:59:26 +0000212}
213
bellarde2731ad2004-09-18 19:32:11 +0000214static void cow_close(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +0000215{
bellardea2384d2004-08-01 21:59:26 +0000216}
217
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200218static int cow_create(const char *filename, QEMUOptionParameter *options)
bellardea2384d2004-08-01 21:59:26 +0000219{
220 int fd, cow_fd;
221 struct cow_header_v2 cow_header;
222 struct stat st;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200223 int64_t image_sectors = 0;
224 const char *image_filename = NULL;
Kirill A. Shutemov31f38122010-01-20 00:56:11 +0100225 int ret;
bellardea2384d2004-08-01 21:59:26 +0000226
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200227 /* Read out options */
228 while (options && options->name) {
229 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
230 image_sectors = options->value.n / 512;
231 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FILE)) {
232 image_filename = options->value.s;
233 }
234 options++;
235 }
bellardea2384d2004-08-01 21:59:26 +0000236
ths5fafdf22007-09-16 21:08:06 +0000237 cow_fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
bellardea2384d2004-08-01 21:59:26 +0000238 0644);
239 if (cow_fd < 0)
Juan Quintela48b66db2010-03-04 10:00:30 +0100240 return -errno;
bellardea2384d2004-08-01 21:59:26 +0000241 memset(&cow_header, 0, sizeof(cow_header));
242 cow_header.magic = cpu_to_be32(COW_MAGIC);
243 cow_header.version = cpu_to_be32(COW_VERSION);
244 if (image_filename) {
bellard83f64092006-08-01 16:21:11 +0000245 /* Note: if no file, we put a dummy mtime */
246 cow_header.mtime = cpu_to_be32(0);
247
bellardea2384d2004-08-01 21:59:26 +0000248 fd = open(image_filename, O_RDONLY | O_BINARY);
249 if (fd < 0) {
250 close(cow_fd);
bellard83f64092006-08-01 16:21:11 +0000251 goto mtime_fail;
bellardea2384d2004-08-01 21:59:26 +0000252 }
253 if (fstat(fd, &st) != 0) {
254 close(fd);
bellard83f64092006-08-01 16:21:11 +0000255 goto mtime_fail;
bellardea2384d2004-08-01 21:59:26 +0000256 }
257 close(fd);
258 cow_header.mtime = cpu_to_be32(st.st_mtime);
bellard83f64092006-08-01 16:21:11 +0000259 mtime_fail:
260 pstrcpy(cow_header.backing_file, sizeof(cow_header.backing_file),
261 image_filename);
bellardea2384d2004-08-01 21:59:26 +0000262 }
263 cow_header.sectorsize = cpu_to_be32(512);
264 cow_header.size = cpu_to_be64(image_sectors * 512);
Kirill A. Shutemov31f38122010-01-20 00:56:11 +0100265 ret = qemu_write_full(cow_fd, &cow_header, sizeof(cow_header));
266 if (ret != sizeof(cow_header)) {
Juan Quintela48b66db2010-03-04 10:00:30 +0100267 ret = -errno;
Kirill A. Shutemov31f38122010-01-20 00:56:11 +0100268 goto exit;
269 }
270
bellardea2384d2004-08-01 21:59:26 +0000271 /* resize to include at least all the bitmap */
Kirill A. Shutemov31f38122010-01-20 00:56:11 +0100272 ret = ftruncate(cow_fd, sizeof(cow_header) + ((image_sectors + 7) >> 3));
273 if (ret) {
274 ret = -errno;
275 goto exit;
276 }
277
Kirill A. Shutemov31f38122010-01-20 00:56:11 +0100278exit:
bellardea2384d2004-08-01 21:59:26 +0000279 close(cow_fd);
Kirill A. Shutemov31f38122010-01-20 00:56:11 +0100280 return ret;
bellardea2384d2004-08-01 21:59:26 +0000281}
282
pbrook7a6cba62006-06-04 11:39:07 +0000283static void cow_flush(BlockDriverState *bs)
284{
Christoph Hellwig20633922010-06-07 12:06:47 +0200285 bdrv_flush(bs->file);
pbrook7a6cba62006-06-04 11:39:07 +0000286}
287
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200288static QEMUOptionParameter cow_create_options[] = {
Kevin Wolfdb08adf2009-06-04 15:39:38 +0200289 {
290 .name = BLOCK_OPT_SIZE,
291 .type = OPT_SIZE,
292 .help = "Virtual disk size"
293 },
294 {
295 .name = BLOCK_OPT_BACKING_FILE,
296 .type = OPT_STRING,
297 .help = "File name of a base image"
298 },
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200299 { NULL }
300};
301
Anthony Liguori5efa9d52009-05-09 17:03:42 -0500302static BlockDriver bdrv_cow = {
aurel32e60f4692009-03-07 22:00:29 +0000303 .format_name = "cow",
304 .instance_size = sizeof(BDRVCowState),
305 .bdrv_probe = cow_probe,
Christoph Hellwig20633922010-06-07 12:06:47 +0200306 .bdrv_open = cow_open,
aurel32e60f4692009-03-07 22:00:29 +0000307 .bdrv_read = cow_read,
308 .bdrv_write = cow_write,
309 .bdrv_close = cow_close,
310 .bdrv_create = cow_create,
311 .bdrv_flush = cow_flush,
312 .bdrv_is_allocated = cow_is_allocated,
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200313
314 .create_options = cow_create_options,
bellardea2384d2004-08-01 21:59:26 +0000315};
Anthony Liguori5efa9d52009-05-09 17:03:42 -0500316
317static void bdrv_cow_init(void)
318{
319 bdrv_register(&bdrv_cow);
320}
321
322block_init(bdrv_cow_init);