Statistics
| Branch: | Revision:

root / block.c @ e2731add

History | View | Annotate | Download (14.4 kB)

1
/*
2
 * QEMU System Emulator block driver
3
 * 
4
 * Copyright (c) 2003 Fabrice Bellard
5
 * 
6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7
 * of this software and associated documentation files (the "Software"), to deal
8
 * in the Software without restriction, including without limitation the rights
9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
 * copies of the Software, and to permit persons to whom the Software is
11
 * furnished to do so, subject to the following conditions:
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
 */
24
#include "vl.h"
25
#include "block_int.h"
26

    
27
static BlockDriverState *bdrv_first;
28
static BlockDriver *first_drv;
29

    
30
void bdrv_register(BlockDriver *bdrv)
31
{
32
    bdrv->next = first_drv;
33
    first_drv = bdrv;
34
}
35

    
36
/* create a new block device (by default it is empty) */
37
BlockDriverState *bdrv_new(const char *device_name)
38
{
39
    BlockDriverState **pbs, *bs;
40

    
41
    bs = qemu_mallocz(sizeof(BlockDriverState));
42
    if(!bs)
43
        return NULL;
44
    pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
45
    if (device_name[0] != '\0') {
46
        /* insert at the end */
47
        pbs = &bdrv_first;
48
        while (*pbs != NULL)
49
            pbs = &(*pbs)->next;
50
        *pbs = bs;
51
    }
52
    return bs;
53
}
54

    
55
BlockDriver *bdrv_find_format(const char *format_name)
56
{
57
    BlockDriver *drv1;
58
    for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
59
        if (!strcmp(drv1->format_name, format_name))
60
            return drv1;
61
    }
62
    return NULL;
63
}
64

    
65
int bdrv_create(BlockDriver *drv, 
66
                const char *filename, int64_t size_in_sectors,
67
                const char *backing_file, int flags)
68
{
69
    if (!drv->bdrv_create)
70
        return -ENOTSUP;
71
    return drv->bdrv_create(filename, size_in_sectors, backing_file, flags);
72
}
73

    
74
#ifdef _WIN32
75
static void get_tmp_filename(char *filename, int size)
76
{
77
    /* XXX: find a better function */
78
    tmpnam(filename);
79
}
80
#else
81
static void get_tmp_filename(char *filename, int size)
82
{
83
    int fd;
84
    /* XXX: race condition possible */
85
    pstrcpy(filename, size, "/tmp/vl.XXXXXX");
86
    fd = mkstemp(filename);
87
    close(fd);
88
}
89
#endif
90

    
91
static BlockDriver *find_image_format(const char *filename)
92
{
93
    int fd, ret, score, score_max;
94
    BlockDriver *drv1, *drv;
95
    uint8_t buf[1024];
96

    
97
    fd = open(filename, O_RDONLY | O_BINARY | O_LARGEFILE);
98
    if (fd < 0)
99
        return NULL;
100
    ret = read(fd, buf, sizeof(buf));
101
    if (ret < 0) {
102
        close(fd);
103
        return NULL;
104
    }
105
    close(fd);
106
    
107
    drv = NULL;
108
    score_max = 0;
109
    for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
110
        score = drv1->bdrv_probe(buf, ret, filename);
111
        if (score > score_max) {
112
            score_max = score;
113
            drv = drv1;
114
        }
115
    }
116
    return drv;
117
}
118

    
119
int bdrv_open(BlockDriverState *bs, const char *filename, int snapshot)
120
{
121
    return bdrv_open2(bs, filename, snapshot, NULL);
122
}
123

    
124
int bdrv_open2(BlockDriverState *bs, const char *filename, int snapshot,
125
               BlockDriver *drv)
126
{
127
    int ret;
128
    char tmp_filename[1024];
129
    
130
    bs->read_only = 0;
131
    bs->is_temporary = 0;
132
    bs->encrypted = 0;
133
    
134
    if (snapshot) {
135
        BlockDriverState *bs1;
136
        int64_t total_size;
137
        
138
        /* if snapshot, we create a temporary backing file and open it
139
           instead of opening 'filename' directly */
140

    
141
        /* if there is a backing file, use it */
142
        bs1 = bdrv_new("");
143
        if (!bs1) {
144
            return -1;
145
        }
146
        if (bdrv_open(bs1, filename, 0) < 0) {
147
            bdrv_delete(bs1);
148
            return -1;
149
        }
150
        total_size = bs1->total_sectors;
151
        bdrv_delete(bs1);
152
        
153
        get_tmp_filename(tmp_filename, sizeof(tmp_filename));
154
        /* XXX: use cow for linux as it is more efficient ? */
155
        if (bdrv_create(&bdrv_qcow, tmp_filename, 
156
                        total_size, filename, 0) < 0) {
157
            return -1;
158
        }
159
        filename = tmp_filename;
160
        bs->is_temporary = 1;
161
    }
162
    
163
    pstrcpy(bs->filename, sizeof(bs->filename), filename);
164
    if (!drv) {
165
        drv = find_image_format(filename);
166
        if (!drv)
167
            return -1;
168
    }
169
    bs->drv = drv;
170
    bs->opaque = qemu_mallocz(drv->instance_size);
171
    if (bs->opaque == NULL && drv->instance_size > 0)
172
        return -1;
173
    
174
    ret = drv->bdrv_open(bs, filename);
175
    if (ret < 0) {
176
        qemu_free(bs->opaque);
177
        return -1;
178
    }
179
#ifndef _WIN32
180
    if (bs->is_temporary) {
181
        unlink(filename);
182
    }
183
#endif
184
    if (bs->backing_file[0] != '\0' && drv->bdrv_is_allocated) {
185
        /* if there is a backing file, use it */
186
        bs->backing_hd = bdrv_new("");
187
        if (!bs->backing_hd) {
188
        fail:
189
            bdrv_close(bs);
190
            return -1;
191
        }
192
        if (bdrv_open(bs->backing_hd, bs->backing_file, 0) < 0)
193
            goto fail;
194
    }
195

    
196
    bs->inserted = 1;
197

    
198
    /* call the change callback */
199
    if (bs->change_cb)
200
        bs->change_cb(bs->change_opaque);
201

    
202
    return 0;
203
}
204

    
205
void bdrv_close(BlockDriverState *bs)
206
{
207
    if (bs->inserted) {
208
        if (bs->backing_hd)
209
            bdrv_delete(bs->backing_hd);
210
        bs->drv->bdrv_close(bs);
211
        qemu_free(bs->opaque);
212
#ifdef _WIN32
213
        if (bs->is_temporary) {
214
            unlink(bs->filename);
215
        }
216
#endif
217
        bs->opaque = NULL;
218
        bs->drv = NULL;
219
        bs->inserted = 0;
220

    
221
        /* call the change callback */
222
        if (bs->change_cb)
223
            bs->change_cb(bs->change_opaque);
224
    }
225
}
226

    
227
void bdrv_delete(BlockDriverState *bs)
228
{
229
    /* XXX: remove the driver list */
230
    bdrv_close(bs);
231
    qemu_free(bs);
232
}
233

    
234
/* commit COW file into the raw image */
235
int bdrv_commit(BlockDriverState *bs)
236
{
237
    int64_t i;
238
    int n, j;
239
    unsigned char sector[512];
240

    
241
    if (!bs->inserted)
242
        return -ENOENT;
243

    
244
    if (bs->read_only) {
245
        return -EACCES;
246
    }
247

    
248
    if (!bs->backing_hd) {
249
        return -ENOTSUP;
250
    }
251

    
252
    for (i = 0; i < bs->total_sectors;) {
253
        if (bs->drv->bdrv_is_allocated(bs, i, 65536, &n)) {
254
            for(j = 0; j < n; j++) {
255
                if (bdrv_read(bs, i, sector, 1) != 0) {
256
                    return -EIO;
257
                }
258

    
259
                if (bdrv_write(bs->backing_hd, i, sector, 1) != 0) {
260
                    return -EIO;
261
                }
262
                i++;
263
            }
264
        } else {
265
            i += n;
266
        }
267
    }
268
    return 0;
269
}
270

    
271
/* return -1 if error */
272
int bdrv_read(BlockDriverState *bs, int64_t sector_num, 
273
              uint8_t *buf, int nb_sectors)
274
{
275
    int ret, n;
276
    BlockDriver *drv = bs->drv;
277

    
278
    if (!bs->inserted)
279
        return -1;
280

    
281
    while (nb_sectors > 0) {
282
        if (sector_num == 0 && bs->boot_sector_enabled) {
283
            memcpy(buf, bs->boot_sector_data, 512);
284
            n = 1;
285
        } else if (bs->backing_hd) {
286
            if (drv->bdrv_is_allocated(bs, sector_num, nb_sectors, &n)) {
287
                ret = drv->bdrv_read(bs, sector_num, buf, n);
288
                if (ret < 0)
289
                    return -1;
290
            } else {
291
                /* read from the base image */
292
                ret = bdrv_read(bs->backing_hd, sector_num, buf, n);
293
                if (ret < 0)
294
                    return -1;
295
            }
296
        } else {
297
            ret = drv->bdrv_read(bs, sector_num, buf, nb_sectors);
298
            if (ret < 0)
299
                return -1;
300
            /* no need to loop */
301
            break;
302
        }
303
        nb_sectors -= n;
304
        sector_num += n;
305
        buf += n * 512;
306
    }
307
    return 0;
308
}
309

    
310
/* return -1 if error */
311
int bdrv_write(BlockDriverState *bs, int64_t sector_num, 
312
               const uint8_t *buf, int nb_sectors)
313
{
314
    if (!bs->inserted)
315
        return -1;
316
    if (bs->read_only)
317
        return -1;
318
    return bs->drv->bdrv_write(bs, sector_num, buf, nb_sectors);
319
}
320

    
321
void bdrv_get_geometry(BlockDriverState *bs, int64_t *nb_sectors_ptr)
322
{
323
    *nb_sectors_ptr = bs->total_sectors;
324
}
325

    
326
/* force a given boot sector. */
327
void bdrv_set_boot_sector(BlockDriverState *bs, const uint8_t *data, int size)
328
{
329
    bs->boot_sector_enabled = 1;
330
    if (size > 512)
331
        size = 512;
332
    memcpy(bs->boot_sector_data, data, size);
333
    memset(bs->boot_sector_data + size, 0, 512 - size);
334
}
335

    
336
void bdrv_set_geometry_hint(BlockDriverState *bs, 
337
                            int cyls, int heads, int secs)
338
{
339
    bs->cyls = cyls;
340
    bs->heads = heads;
341
    bs->secs = secs;
342
}
343

    
344
void bdrv_set_type_hint(BlockDriverState *bs, int type)
345
{
346
    bs->type = type;
347
    bs->removable = ((type == BDRV_TYPE_CDROM ||
348
                      type == BDRV_TYPE_FLOPPY));
349
}
350

    
351
void bdrv_get_geometry_hint(BlockDriverState *bs, 
352
                            int *pcyls, int *pheads, int *psecs)
353
{
354
    *pcyls = bs->cyls;
355
    *pheads = bs->heads;
356
    *psecs = bs->secs;
357
}
358

    
359
int bdrv_get_type_hint(BlockDriverState *bs)
360
{
361
    return bs->type;
362
}
363

    
364
int bdrv_is_removable(BlockDriverState *bs)
365
{
366
    return bs->removable;
367
}
368

    
369
int bdrv_is_read_only(BlockDriverState *bs)
370
{
371
    return bs->read_only;
372
}
373

    
374
int bdrv_is_inserted(BlockDriverState *bs)
375
{
376
    return bs->inserted;
377
}
378

    
379
int bdrv_is_locked(BlockDriverState *bs)
380
{
381
    return bs->locked;
382
}
383

    
384
void bdrv_set_locked(BlockDriverState *bs, int locked)
385
{
386
    bs->locked = locked;
387
}
388

    
389
void bdrv_set_change_cb(BlockDriverState *bs, 
390
                        void (*change_cb)(void *opaque), void *opaque)
391
{
392
    bs->change_cb = change_cb;
393
    bs->change_opaque = opaque;
394
}
395

    
396
int bdrv_is_encrypted(BlockDriverState *bs)
397
{
398
    if (bs->backing_hd && bs->backing_hd->encrypted)
399
        return 1;
400
    return bs->encrypted;
401
}
402

    
403
int bdrv_set_key(BlockDriverState *bs, const char *key)
404
{
405
    int ret;
406
    if (bs->backing_hd && bs->backing_hd->encrypted) {
407
        ret = bdrv_set_key(bs->backing_hd, key);
408
        if (ret < 0)
409
            return ret;
410
        if (!bs->encrypted)
411
            return 0;
412
    }
413
    if (!bs->encrypted || !bs->drv || !bs->drv->bdrv_set_key)
414
        return -1;
415
    return bs->drv->bdrv_set_key(bs, key);
416
}
417

    
418
void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
419
{
420
    if (!bs->inserted || !bs->drv) {
421
        buf[0] = '\0';
422
    } else {
423
        pstrcpy(buf, buf_size, bs->drv->format_name);
424
    }
425
}
426

    
427
void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 
428
                         void *opaque)
429
{
430
    BlockDriver *drv;
431

    
432
    for (drv = first_drv; drv != NULL; drv = drv->next) {
433
        it(opaque, drv->format_name);
434
    }
435
}
436

    
437
BlockDriverState *bdrv_find(const char *name)
438
{
439
    BlockDriverState *bs;
440

    
441
    for (bs = bdrv_first; bs != NULL; bs = bs->next) {
442
        if (!strcmp(name, bs->device_name))
443
            return bs;
444
    }
445
    return NULL;
446
}
447

    
448
void bdrv_iterate(void (*it)(void *opaque, const char *name), void *opaque)
449
{
450
    BlockDriverState *bs;
451

    
452
    for (bs = bdrv_first; bs != NULL; bs = bs->next) {
453
        it(opaque, bs->device_name);
454
    }
455
}
456

    
457
const char *bdrv_get_device_name(BlockDriverState *bs)
458
{
459
    return bs->device_name;
460
}
461

    
462
void bdrv_info(void)
463
{
464
    BlockDriverState *bs;
465

    
466
    for (bs = bdrv_first; bs != NULL; bs = bs->next) {
467
        term_printf("%s:", bs->device_name);
468
        term_printf(" type=");
469
        switch(bs->type) {
470
        case BDRV_TYPE_HD:
471
            term_printf("hd");
472
            break;
473
        case BDRV_TYPE_CDROM:
474
            term_printf("cdrom");
475
            break;
476
        case BDRV_TYPE_FLOPPY:
477
            term_printf("floppy");
478
            break;
479
        }
480
        term_printf(" removable=%d", bs->removable);
481
        if (bs->removable) {
482
            term_printf(" locked=%d", bs->locked);
483
        }
484
        if (bs->inserted) {
485
            term_printf(" file=%s", bs->filename);
486
            if (bs->backing_file[0] != '\0')
487
                term_printf(" backing_file=%s", bs->backing_file);
488
            term_printf(" ro=%d", bs->read_only);
489
            term_printf(" drv=%s", bs->drv->format_name);
490
            if (bs->encrypted)
491
                term_printf(" encrypted");
492
        } else {
493
            term_printf(" [not inserted]");
494
        }
495
        term_printf("\n");
496
    }
497
}
498

    
499

    
500
/**************************************************************/
501
/* RAW block driver */
502

    
503
typedef struct BDRVRawState {
504
    int fd;
505
} BDRVRawState;
506

    
507
static int raw_probe(const uint8_t *buf, int buf_size, const char *filename)
508
{
509
    return 1; /* maybe */
510
}
511

    
512
static int raw_open(BlockDriverState *bs, const char *filename)
513
{
514
    BDRVRawState *s = bs->opaque;
515
    int fd;
516
    int64_t size;
517

    
518
    fd = open(filename, O_RDWR | O_BINARY | O_LARGEFILE);
519
    if (fd < 0) {
520
        fd = open(filename, O_RDONLY | O_BINARY | O_LARGEFILE);
521
        if (fd < 0)
522
            return -1;
523
        bs->read_only = 1;
524
    }
525
    size = lseek(fd, 0, SEEK_END);
526
    bs->total_sectors = size / 512;
527
    s->fd = fd;
528
    return 0;
529
}
530

    
531
static int raw_read(BlockDriverState *bs, int64_t sector_num, 
532
                    uint8_t *buf, int nb_sectors)
533
{
534
    BDRVRawState *s = bs->opaque;
535
    int ret;
536
    
537
    lseek(s->fd, sector_num * 512, SEEK_SET);
538
    ret = read(s->fd, buf, nb_sectors * 512);
539
    if (ret != nb_sectors * 512) 
540
        return -1;
541
    return 0;
542
}
543

    
544
static int raw_write(BlockDriverState *bs, int64_t sector_num, 
545
                     const uint8_t *buf, int nb_sectors)
546
{
547
    BDRVRawState *s = bs->opaque;
548
    int ret;
549
    
550
    lseek(s->fd, sector_num * 512, SEEK_SET);
551
    ret = write(s->fd, buf, nb_sectors * 512);
552
    if (ret != nb_sectors * 512) 
553
        return -1;
554
    return 0;
555
}
556

    
557
static void raw_close(BlockDriverState *bs)
558
{
559
    BDRVRawState *s = bs->opaque;
560
    close(s->fd);
561
}
562

    
563
static int raw_create(const char *filename, int64_t total_size,
564
                      const char *backing_file, int flags)
565
{
566
    int fd;
567

    
568
    if (flags || backing_file)
569
        return -ENOTSUP;
570

    
571
    fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE, 
572
              0644);
573
    if (fd < 0)
574
        return -EIO;
575
    ftruncate(fd, total_size * 512);
576
    close(fd);
577
    return 0;
578
}
579

    
580
BlockDriver bdrv_raw = {
581
    "raw",
582
    sizeof(BDRVRawState),
583
    raw_probe,
584
    raw_open,
585
    raw_read,
586
    raw_write,
587
    raw_close,
588
    raw_create,
589
};
590

    
591
void bdrv_init(void)
592
{
593
    bdrv_register(&bdrv_raw);
594
#ifndef _WIN32
595
    bdrv_register(&bdrv_cow);
596
#endif
597
    bdrv_register(&bdrv_qcow);
598
    bdrv_register(&bdrv_vmdk);
599
}