]> git.proxmox.com Git - mirror_qemu.git/blame - block/raw-posix.c
qcow2: Metadata preallocation
[mirror_qemu.git] / block / raw-posix.c
CommitLineData
83f64091 1/*
223d4670 2 * Block driver for RAW files (posix)
5fafdf24 3 *
83f64091 4 * Copyright (c) 2006 Fabrice Bellard
5fafdf24 5 *
83f64091
FB
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 */
faf07963 24#include "qemu-common.h"
87ecb68b 25#include "qemu-timer.h"
baf35cb9 26#include "qemu-char.h"
0bf9e31a 27#include "qemu-log.h"
83f64091 28#include "block_int.h"
5efa9d5a 29#include "module.h"
3c529d93 30#include "posix-aio-compat.h"
83f64091 31
83f64091
FB
32#ifdef CONFIG_COCOA
33#include <paths.h>
34#include <sys/param.h>
35#include <IOKit/IOKitLib.h>
36#include <IOKit/IOBSD.h>
37#include <IOKit/storage/IOMediaBSDClient.h>
38#include <IOKit/storage/IOMedia.h>
39#include <IOKit/storage/IOCDMedia.h>
40//#include <IOKit/storage/IOCDTypes.h>
41#include <CoreFoundation/CoreFoundation.h>
42#endif
43
44#ifdef __sun__
2e9671da
TS
45#define _POSIX_PTHREAD_SEMANTICS 1
46#include <signal.h>
83f64091
FB
47#include <sys/dkio.h>
48#endif
19cb3738
FB
49#ifdef __linux__
50#include <sys/ioctl.h>
51#include <linux/cdrom.h>
52#include <linux/fd.h>
53#endif
1cb6c3fd 54#ifdef __FreeBSD__
543952ca 55#include <signal.h>
1cb6c3fd 56#include <sys/disk.h>
9f23011a 57#include <sys/cdio.h>
1cb6c3fd 58#endif
83f64091 59
128ab2ff
BS
60#ifdef __OpenBSD__
61#include <sys/ioctl.h>
62#include <sys/disklabel.h>
63#include <sys/dkio.h>
64#endif
65
c5e97233
BS
66#ifdef __DragonFly__
67#include <sys/ioctl.h>
68#include <sys/diskslice.h>
69#endif
70
19cb3738 71//#define DEBUG_FLOPPY
83f64091 72
faf07963 73//#define DEBUG_BLOCK
03ff3ca3 74#if defined(DEBUG_BLOCK)
001faf32
BS
75#define DEBUG_BLOCK_PRINT(formatCstr, ...) do { if (qemu_log_enabled()) \
76 { qemu_log(formatCstr, ## __VA_ARGS__); qemu_log_flush(); } } while (0)
8c05dbf9 77#else
001faf32 78#define DEBUG_BLOCK_PRINT(formatCstr, ...)
8c05dbf9
TS
79#endif
80
f6465578
AL
81/* OS X does not have O_DSYNC */
82#ifndef O_DSYNC
1c27a8b3 83#ifdef O_SYNC
7ab064d2 84#define O_DSYNC O_SYNC
1c27a8b3
JA
85#elif defined(O_FSYNC)
86#define O_DSYNC O_FSYNC
87#endif
f6465578
AL
88#endif
89
9f7965c7
AL
90/* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
91#ifndef O_DIRECT
92#define O_DIRECT O_DSYNC
93#endif
94
19cb3738
FB
95#define FTYPE_FILE 0
96#define FTYPE_CD 1
97#define FTYPE_FD 2
83f64091 98
bed5cc52
FB
99#define ALIGNED_BUFFER_SIZE (32 * 512)
100
19cb3738
FB
101/* if the FD is not accessed during that time (in ms), we try to
102 reopen it to see if the disk has been changed */
103#define FD_OPEN_TIMEOUT 1000
83f64091 104
19cb3738
FB
105typedef struct BDRVRawState {
106 int fd;
107 int type;
8c05dbf9 108 unsigned int lseek_err_cnt;
0e1d8f4c 109 int open_flags;
19cb3738
FB
110#if defined(__linux__)
111 /* linux floppy specific */
19cb3738
FB
112 int64_t fd_open_time;
113 int64_t fd_error_time;
114 int fd_got_error;
115 int fd_media_changed;
83f64091 116#endif
bed5cc52 117 uint8_t* aligned_buf;
19cb3738
FB
118} BDRVRawState;
119
a76bab49
AL
120static int posix_aio_init(void);
121
19cb3738 122static int fd_open(BlockDriverState *bs);
22afa7b5 123static int64_t raw_getlength(BlockDriverState *bs);
83f64091 124
9f23011a 125#if defined(__FreeBSD__)
f3a5d3f8 126static int cdrom_reopen(BlockDriverState *bs);
9f23011a
BS
127#endif
128
90babde0 129static int raw_open_common(BlockDriverState *bs, const char *filename,
19a3da7f 130 int bdrv_flags, int open_flags)
83f64091
FB
131{
132 BDRVRawState *s = bs->opaque;
0e1d8f4c 133 int fd, ret;
83f64091 134
a76bab49
AL
135 posix_aio_init();
136
8c05dbf9
TS
137 s->lseek_err_cnt = 0;
138
19a3da7f 139 s->open_flags = open_flags | O_BINARY;
11a1feb6 140 s->open_flags &= ~O_ACCMODE;
19a3da7f 141 if ((bdrv_flags & BDRV_O_ACCESS) == BDRV_O_RDWR) {
0e1d8f4c 142 s->open_flags |= O_RDWR;
83f64091 143 } else {
0e1d8f4c 144 s->open_flags |= O_RDONLY;
83f64091
FB
145 bs->read_only = 1;
146 }
9f7965c7
AL
147
148 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
149 * and O_DIRECT for no caching. */
19a3da7f 150 if ((bdrv_flags & BDRV_O_NOCACHE))
0e1d8f4c 151 s->open_flags |= O_DIRECT;
19a3da7f 152 else if (!(bdrv_flags & BDRV_O_CACHE_WB))
0e1d8f4c 153 s->open_flags |= O_DSYNC;
83f64091 154
90babde0 155 s->fd = -1;
0e1d8f4c 156 fd = open(filename, s->open_flags, 0644);
19cb3738
FB
157 if (fd < 0) {
158 ret = -errno;
159 if (ret == -EROFS)
160 ret = -EACCES;
161 return ret;
162 }
83f64091 163 s->fd = fd;
bed5cc52 164 s->aligned_buf = NULL;
19a3da7f 165 if ((bdrv_flags & BDRV_O_NOCACHE)) {
e268ca52 166 s->aligned_buf = qemu_blockalign(bs, ALIGNED_BUFFER_SIZE);
bed5cc52
FB
167 if (s->aligned_buf == NULL) {
168 ret = -errno;
169 close(fd);
170 return ret;
171 }
172 }
83f64091
FB
173 return 0;
174}
175
90babde0
CH
176static int raw_open(BlockDriverState *bs, const char *filename, int flags)
177{
178 BDRVRawState *s = bs->opaque;
19a3da7f 179 int open_flags = 0;
90babde0
CH
180
181 s->type = FTYPE_FILE;
182 if (flags & BDRV_O_CREAT)
19a3da7f 183 open_flags = O_CREAT | O_TRUNC;
90babde0 184
19a3da7f 185 return raw_open_common(bs, filename, flags, open_flags);
90babde0
CH
186}
187
83f64091
FB
188/* XXX: use host sector size if necessary with:
189#ifdef DIOCGSECTORSIZE
190 {
191 unsigned int sectorsize = 512;
192 if (!ioctl(fd, DIOCGSECTORSIZE, &sectorsize) &&
193 sectorsize > bufsize)
194 bufsize = sectorsize;
195 }
196#endif
197#ifdef CONFIG_COCOA
198 u_int32_t blockSize = 512;
199 if ( !ioctl( fd, DKIOCGETBLOCKSIZE, &blockSize ) && blockSize > bufsize) {
200 bufsize = blockSize;
201 }
202#endif
203*/
204
bed5cc52
FB
205/*
206 * offset and count are in bytes, but must be multiples of 512 for files
207 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
208 *
209 * This function may be called without alignment if the caller ensures
210 * that O_DIRECT is not in effect.
211 */
212static int raw_pread_aligned(BlockDriverState *bs, int64_t offset,
83f64091
FB
213 uint8_t *buf, int count)
214{
215 BDRVRawState *s = bs->opaque;
216 int ret;
3b46e624 217
19cb3738
FB
218 ret = fd_open(bs);
219 if (ret < 0)
220 return ret;
221
985a03b0 222 if (offset >= 0 && lseek(s->fd, offset, SEEK_SET) == (off_t)-1) {
8c05dbf9
TS
223 ++(s->lseek_err_cnt);
224 if(s->lseek_err_cnt <= 10) {
92868412
JM
225 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
226 "] lseek failed : %d = %s\n",
8c05dbf9
TS
227 s->fd, bs->filename, offset, buf, count,
228 bs->total_sectors, errno, strerror(errno));
229 }
230 return -1;
231 }
232 s->lseek_err_cnt=0;
233
83f64091 234 ret = read(s->fd, buf, count);
8c05dbf9
TS
235 if (ret == count)
236 goto label__raw_read__success;
237
22afa7b5
KW
238 /* Allow reads beyond the end (needed for pwrite) */
239 if ((ret == 0) && bs->growable) {
240 int64_t size = raw_getlength(bs);
241 if (offset >= size) {
242 memset(buf, 0, count);
243 ret = count;
244 goto label__raw_read__success;
245 }
246 }
247
92868412
JM
248 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
249 "] read failed %d : %d = %s\n",
8c05dbf9
TS
250 s->fd, bs->filename, offset, buf, count,
251 bs->total_sectors, ret, errno, strerror(errno));
252
253 /* Try harder for CDrom. */
254 if (bs->type == BDRV_TYPE_CDROM) {
255 lseek(s->fd, offset, SEEK_SET);
256 ret = read(s->fd, buf, count);
257 if (ret == count)
258 goto label__raw_read__success;
259 lseek(s->fd, offset, SEEK_SET);
260 ret = read(s->fd, buf, count);
261 if (ret == count)
262 goto label__raw_read__success;
263
92868412
JM
264 DEBUG_BLOCK_PRINT("raw_pread(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
265 "] retry read failed %d : %d = %s\n",
8c05dbf9
TS
266 s->fd, bs->filename, offset, buf, count,
267 bs->total_sectors, ret, errno, strerror(errno));
268 }
269
8c05dbf9
TS
270label__raw_read__success:
271
94c6d6d8 272 return (ret < 0) ? -errno : ret;
83f64091
FB
273}
274
bed5cc52
FB
275/*
276 * offset and count are in bytes, but must be multiples of 512 for files
277 * opened with O_DIRECT. buf must be aligned to 512 bytes then.
278 *
279 * This function may be called without alignment if the caller ensures
280 * that O_DIRECT is not in effect.
281 */
282static int raw_pwrite_aligned(BlockDriverState *bs, int64_t offset,
83f64091
FB
283 const uint8_t *buf, int count)
284{
285 BDRVRawState *s = bs->opaque;
286 int ret;
3b46e624 287
19cb3738
FB
288 ret = fd_open(bs);
289 if (ret < 0)
4141d4c2 290 return -errno;
19cb3738 291
985a03b0 292 if (offset >= 0 && lseek(s->fd, offset, SEEK_SET) == (off_t)-1) {
8c05dbf9
TS
293 ++(s->lseek_err_cnt);
294 if(s->lseek_err_cnt) {
92868412
JM
295 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%"
296 PRId64 "] lseek failed : %d = %s\n",
8c05dbf9
TS
297 s->fd, bs->filename, offset, buf, count,
298 bs->total_sectors, errno, strerror(errno));
299 }
4141d4c2 300 return -EIO;
8c05dbf9
TS
301 }
302 s->lseek_err_cnt = 0;
303
83f64091 304 ret = write(s->fd, buf, count);
8c05dbf9
TS
305 if (ret == count)
306 goto label__raw_write__success;
307
92868412
JM
308 DEBUG_BLOCK_PRINT("raw_pwrite(%d:%s, %" PRId64 ", %p, %d) [%" PRId64
309 "] write failed %d : %d = %s\n",
8c05dbf9
TS
310 s->fd, bs->filename, offset, buf, count,
311 bs->total_sectors, ret, errno, strerror(errno));
312
8c05dbf9
TS
313label__raw_write__success:
314
4141d4c2 315 return (ret < 0) ? -errno : ret;
83f64091
FB
316}
317
bed5cc52 318
bed5cc52
FB
319/*
320 * offset and count are in bytes and possibly not aligned. For files opened
321 * with O_DIRECT, necessary alignments are ensured before calling
322 * raw_pread_aligned to do the actual read.
323 */
324static int raw_pread(BlockDriverState *bs, int64_t offset,
325 uint8_t *buf, int count)
326{
327 BDRVRawState *s = bs->opaque;
328 int size, ret, shift, sum;
329
330 sum = 0;
331
332 if (s->aligned_buf != NULL) {
333
334 if (offset & 0x1ff) {
335 /* align offset on a 512 bytes boundary */
336
337 shift = offset & 0x1ff;
338 size = (shift + count + 0x1ff) & ~0x1ff;
339 if (size > ALIGNED_BUFFER_SIZE)
340 size = ALIGNED_BUFFER_SIZE;
341 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, size);
342 if (ret < 0)
343 return ret;
344
345 size = 512 - shift;
346 if (size > count)
347 size = count;
348 memcpy(buf, s->aligned_buf + shift, size);
349
350 buf += size;
351 offset += size;
352 count -= size;
353 sum += size;
354
355 if (count == 0)
356 return sum;
357 }
358 if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {
359
360 /* read on aligned buffer */
361
362 while (count) {
363
364 size = (count + 0x1ff) & ~0x1ff;
365 if (size > ALIGNED_BUFFER_SIZE)
366 size = ALIGNED_BUFFER_SIZE;
367
368 ret = raw_pread_aligned(bs, offset, s->aligned_buf, size);
369 if (ret < 0)
370 return ret;
371
372 size = ret;
373 if (size > count)
374 size = count;
375
376 memcpy(buf, s->aligned_buf, size);
377
378 buf += size;
379 offset += size;
380 count -= size;
381 sum += size;
382 }
383
384 return sum;
385 }
386 }
387
388 return raw_pread_aligned(bs, offset, buf, count) + sum;
389}
390
eda578e5
AL
391static int raw_read(BlockDriverState *bs, int64_t sector_num,
392 uint8_t *buf, int nb_sectors)
393{
537a1d4b
AL
394 int ret;
395
396 ret = raw_pread(bs, sector_num * 512, buf, nb_sectors * 512);
397 if (ret == (nb_sectors * 512))
398 ret = 0;
399 return ret;
eda578e5
AL
400}
401
bed5cc52
FB
402/*
403 * offset and count are in bytes and possibly not aligned. For files opened
404 * with O_DIRECT, necessary alignments are ensured before calling
405 * raw_pwrite_aligned to do the actual write.
406 */
407static int raw_pwrite(BlockDriverState *bs, int64_t offset,
408 const uint8_t *buf, int count)
409{
410 BDRVRawState *s = bs->opaque;
411 int size, ret, shift, sum;
412
413 sum = 0;
414
415 if (s->aligned_buf != NULL) {
416
417 if (offset & 0x1ff) {
418 /* align offset on a 512 bytes boundary */
419 shift = offset & 0x1ff;
420 ret = raw_pread_aligned(bs, offset - shift, s->aligned_buf, 512);
421 if (ret < 0)
422 return ret;
423
424 size = 512 - shift;
425 if (size > count)
426 size = count;
427 memcpy(s->aligned_buf + shift, buf, size);
428
429 ret = raw_pwrite_aligned(bs, offset - shift, s->aligned_buf, 512);
430 if (ret < 0)
431 return ret;
432
433 buf += size;
434 offset += size;
435 count -= size;
436 sum += size;
437
438 if (count == 0)
439 return sum;
440 }
441 if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {
442
443 while ((size = (count & ~0x1ff)) != 0) {
444
445 if (size > ALIGNED_BUFFER_SIZE)
446 size = ALIGNED_BUFFER_SIZE;
447
448 memcpy(s->aligned_buf, buf, size);
449
450 ret = raw_pwrite_aligned(bs, offset, s->aligned_buf, size);
451 if (ret < 0)
452 return ret;
453
454 buf += ret;
455 offset += ret;
456 count -= ret;
457 sum += ret;
458 }
459 /* here, count < 512 because (count & ~0x1ff) == 0 */
460 if (count) {
461 ret = raw_pread_aligned(bs, offset, s->aligned_buf, 512);
462 if (ret < 0)
463 return ret;
464 memcpy(s->aligned_buf, buf, count);
465
466 ret = raw_pwrite_aligned(bs, offset, s->aligned_buf, 512);
467 if (ret < 0)
468 return ret;
469 if (count < ret)
470 ret = count;
471
472 sum += ret;
473 }
474 return sum;
475 }
476 }
477 return raw_pwrite_aligned(bs, offset, buf, count) + sum;
478}
479
eda578e5
AL
480static int raw_write(BlockDriverState *bs, int64_t sector_num,
481 const uint8_t *buf, int nb_sectors)
482{
537a1d4b
AL
483 int ret;
484 ret = raw_pwrite(bs, sector_num * 512, buf, nb_sectors * 512);
485 if (ret == (nb_sectors * 512))
486 ret = 0;
487 return ret;
eda578e5
AL
488}
489
83f64091 490/***********************************************************/
19cb3738 491/* Unix AIO using POSIX AIO */
83f64091
FB
492
493typedef struct RawAIOCB {
ce1a14dc 494 BlockDriverAIOCB common;
3c529d93 495 struct qemu_paiocb aiocb;
ce1a14dc 496 struct RawAIOCB *next;
bed5cc52 497 int ret;
83f64091
FB
498} RawAIOCB;
499
a76bab49
AL
500typedef struct PosixAioState
501{
9e472e10 502 int rfd, wfd;
a76bab49
AL
503 RawAIOCB *first_aio;
504} PosixAioState;
83f64091 505
a76bab49 506static void posix_aio_read(void *opaque)
83f64091 507{
a76bab49 508 PosixAioState *s = opaque;
ce1a14dc 509 RawAIOCB *acb, **pacb;
83f64091 510 int ret;
9e472e10
AL
511 ssize_t len;
512
e20e830b
AL
513 /* read all bytes from signal pipe */
514 for (;;) {
515 char bytes[16];
9e472e10 516
e20e830b 517 len = read(s->rfd, bytes, sizeof(bytes));
2c41a5f9 518 if (len == -1 && errno == EINTR)
e20e830b
AL
519 continue; /* try again */
520 if (len == sizeof(bytes))
521 continue; /* more to read */
522 break;
523 }
83f64091
FB
524
525 for(;;) {
a76bab49 526 pacb = &s->first_aio;
83f64091
FB
527 for(;;) {
528 acb = *pacb;
529 if (!acb)
530 goto the_end;
3c529d93 531 ret = qemu_paio_error(&acb->aiocb);
83f64091
FB
532 if (ret == ECANCELED) {
533 /* remove the request */
ce1a14dc
PB
534 *pacb = acb->next;
535 qemu_aio_release(acb);
83f64091
FB
536 } else if (ret != EINPROGRESS) {
537 /* end of aio */
538 if (ret == 0) {
3c529d93 539 ret = qemu_paio_return(&acb->aiocb);
ce1a14dc 540 if (ret == acb->aiocb.aio_nbytes)
83f64091
FB
541 ret = 0;
542 else
19cb3738 543 ret = -EINVAL;
83f64091
FB
544 } else {
545 ret = -ret;
546 }
547 /* remove the request */
ce1a14dc 548 *pacb = acb->next;
83f64091 549 /* call the callback */
ce1a14dc
PB
550 acb->common.cb(acb->common.opaque, ret);
551 qemu_aio_release(acb);
83f64091
FB
552 break;
553 } else {
ce1a14dc 554 pacb = &acb->next;
83f64091
FB
555 }
556 }
557 }
558 the_end: ;
559}
560
a76bab49 561static int posix_aio_flush(void *opaque)
baf35cb9 562{
a76bab49
AL
563 PosixAioState *s = opaque;
564 return !!s->first_aio;
565}
566
567static PosixAioState *posix_aio_state;
baf35cb9 568
9e472e10
AL
569static void aio_signal_handler(int signum)
570{
571 if (posix_aio_state) {
572 char byte = 0;
573
574 write(posix_aio_state->wfd, &byte, sizeof(byte));
575 }
576
577 qemu_service_io();
578}
579
a76bab49
AL
580static int posix_aio_init(void)
581{
9e472e10 582 struct sigaction act;
a76bab49 583 PosixAioState *s;
9e472e10 584 int fds[2];
3c529d93 585 struct qemu_paioinit ai;
a76bab49
AL
586
587 if (posix_aio_state)
588 return 0;
ad02ad6f 589
a76bab49 590 s = qemu_malloc(sizeof(PosixAioState));
baf35cb9 591
9e472e10
AL
592 sigfillset(&act.sa_mask);
593 act.sa_flags = 0; /* do not restart syscalls to interrupt select() */
594 act.sa_handler = aio_signal_handler;
595 sigaction(SIGUSR2, &act, NULL);
596
a76bab49 597 s->first_aio = NULL;
9e472e10
AL
598 if (pipe(fds) == -1) {
599 fprintf(stderr, "failed to create pipe\n");
27463101
AL
600 return -errno;
601 }
2c41a5f9 602
9e472e10
AL
603 s->rfd = fds[0];
604 s->wfd = fds[1];
605
e20e830b 606 fcntl(s->rfd, F_SETFL, O_NONBLOCK);
9e472e10 607 fcntl(s->wfd, F_SETFL, O_NONBLOCK);
2c41a5f9 608
9e472e10 609 qemu_aio_set_fd_handler(s->rfd, posix_aio_read, NULL, posix_aio_flush, s);
baf35cb9 610
3c529d93
AL
611 memset(&ai, 0, sizeof(ai));
612 ai.aio_threads = 64;
613 ai.aio_num = 64;
614 qemu_paio_init(&ai);
acce87f9 615
a76bab49 616 posix_aio_state = s;
6eb5733a 617
a76bab49 618 return 0;
83f64091
FB
619}
620
c16b5a2c
CH
621static void raw_aio_remove(RawAIOCB *acb)
622{
623 RawAIOCB **pacb;
624
625 /* remove the callback from the queue */
626 pacb = &posix_aio_state->first_aio;
627 for(;;) {
628 if (*pacb == NULL) {
629 fprintf(stderr, "raw_aio_remove: aio request not found!\n");
630 break;
631 } else if (*pacb == acb) {
632 *pacb = acb->next;
633 qemu_aio_release(acb);
634 break;
635 }
636 pacb = &(*pacb)->next;
637 }
638}
639
640static void raw_aio_cancel(BlockDriverAIOCB *blockacb)
641{
642 int ret;
643 RawAIOCB *acb = (RawAIOCB *)blockacb;
644
645 ret = qemu_paio_cancel(acb->aiocb.aio_fildes, &acb->aiocb);
646 if (ret == QEMU_PAIO_NOTCANCELED) {
647 /* fail safe: if the aio could not be canceled, we wait for
648 it */
649 while (qemu_paio_error(&acb->aiocb) == EINPROGRESS);
650 }
651
652 raw_aio_remove(acb);
653}
654
655static AIOPool raw_aio_pool = {
656 .aiocb_size = sizeof(RawAIOCB),
657 .cancel = raw_aio_cancel,
658};
659
f141eafe
AL
660static RawAIOCB *raw_aio_setup(BlockDriverState *bs, int64_t sector_num,
661 QEMUIOVector *qiov, int nb_sectors,
ce1a14dc 662 BlockDriverCompletionFunc *cb, void *opaque)
83f64091 663{
ce1a14dc
PB
664 BDRVRawState *s = bs->opaque;
665 RawAIOCB *acb;
666
19cb3738
FB
667 if (fd_open(bs) < 0)
668 return NULL;
669
c16b5a2c 670 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
ce1a14dc
PB
671 if (!acb)
672 return NULL;
3c529d93 673 acb->aiocb.aio_fildes = s->fd;
55f11ca3 674 acb->aiocb.ev_signo = SIGUSR2;
f141eafe
AL
675 acb->aiocb.aio_iov = qiov->iov;
676 acb->aiocb.aio_niov = qiov->niov;
677 acb->aiocb.aio_nbytes = nb_sectors * 512;
ce1a14dc 678 acb->aiocb.aio_offset = sector_num * 512;
f141eafe
AL
679 acb->aiocb.aio_flags = 0;
680
681 /*
682 * If O_DIRECT is used the buffer needs to be aligned on a sector
683 * boundary. Tell the low level code to ensure that in case it's
684 * not done yet.
685 */
686 if (s->aligned_buf)
687 acb->aiocb.aio_flags |= QEMU_AIO_SECTOR_ALIGNED;
688
a76bab49
AL
689 acb->next = posix_aio_state->first_aio;
690 posix_aio_state->first_aio = acb;
ce1a14dc 691 return acb;
83f64091
FB
692}
693
f141eafe
AL
694static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
695 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
ce1a14dc 696 BlockDriverCompletionFunc *cb, void *opaque)
83f64091 697{
ce1a14dc 698 RawAIOCB *acb;
83f64091 699
f141eafe 700 acb = raw_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque);
ce1a14dc
PB
701 if (!acb)
702 return NULL;
3c529d93 703 if (qemu_paio_read(&acb->aiocb) < 0) {
22bf1458 704 raw_aio_remove(acb);
ce1a14dc 705 return NULL;
5fafdf24 706 }
ce1a14dc 707 return &acb->common;
83f64091
FB
708}
709
f141eafe
AL
710static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
711 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
ce1a14dc 712 BlockDriverCompletionFunc *cb, void *opaque)
83f64091 713{
ce1a14dc 714 RawAIOCB *acb;
83f64091 715
f141eafe 716 acb = raw_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque);
ce1a14dc
PB
717 if (!acb)
718 return NULL;
3c529d93 719 if (qemu_paio_write(&acb->aiocb) < 0) {
22bf1458 720 raw_aio_remove(acb);
ce1a14dc 721 return NULL;
5fafdf24 722 }
ce1a14dc 723 return &acb->common;
83f64091 724}
53538725 725
83f64091
FB
726static void raw_close(BlockDriverState *bs)
727{
728 BDRVRawState *s = bs->opaque;
19cb3738
FB
729 if (s->fd >= 0) {
730 close(s->fd);
731 s->fd = -1;
bed5cc52
FB
732 if (s->aligned_buf != NULL)
733 qemu_free(s->aligned_buf);
19cb3738 734 }
83f64091
FB
735}
736
737static int raw_truncate(BlockDriverState *bs, int64_t offset)
738{
739 BDRVRawState *s = bs->opaque;
19cb3738
FB
740 if (s->type != FTYPE_FILE)
741 return -ENOTSUP;
83f64091
FB
742 if (ftruncate(s->fd, offset) < 0)
743 return -errno;
744 return 0;
745}
746
128ab2ff
BS
747#ifdef __OpenBSD__
748static int64_t raw_getlength(BlockDriverState *bs)
749{
750 BDRVRawState *s = bs->opaque;
751 int fd = s->fd;
752 struct stat st;
753
754 if (fstat(fd, &st))
755 return -1;
756 if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
757 struct disklabel dl;
758
759 if (ioctl(fd, DIOCGDINFO, &dl))
760 return -1;
761 return (uint64_t)dl.d_secsize *
762 dl.d_partitions[DISKPART(st.st_rdev)].p_size;
763 } else
764 return st.st_size;
765}
766#else /* !__OpenBSD__ */
83f64091
FB
767static int64_t raw_getlength(BlockDriverState *bs)
768{
769 BDRVRawState *s = bs->opaque;
770 int fd = s->fd;
771 int64_t size;
71e72a19 772#ifdef CONFIG_BSD
83f64091 773 struct stat sb;
9f23011a
BS
774#ifdef __FreeBSD__
775 int reopened = 0;
776#endif
83f64091
FB
777#endif
778#ifdef __sun__
779 struct dk_minfo minfo;
780 int rv;
781#endif
19cb3738
FB
782 int ret;
783
784 ret = fd_open(bs);
785 if (ret < 0)
786 return ret;
83f64091 787
71e72a19 788#ifdef CONFIG_BSD
9f23011a
BS
789#ifdef __FreeBSD__
790again:
791#endif
83f64091
FB
792 if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) {
793#ifdef DIOCGMEDIASIZE
794 if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size))
c5e97233
BS
795#elif defined(DIOCGPART)
796 {
797 struct partinfo pi;
798 if (ioctl(fd, DIOCGPART, &pi) == 0)
799 size = pi.media_size;
800 else
801 size = 0;
802 }
803 if (size == 0)
83f64091
FB
804#endif
805#ifdef CONFIG_COCOA
806 size = LONG_LONG_MAX;
807#else
808 size = lseek(fd, 0LL, SEEK_END);
9f23011a
BS
809#endif
810#ifdef __FreeBSD__
811 switch(s->type) {
812 case FTYPE_CD:
813 /* XXX FreeBSD acd returns UINT_MAX sectors for an empty drive */
814 if (size == 2048LL * (unsigned)-1)
815 size = 0;
816 /* XXX no disc? maybe we need to reopen... */
f3a5d3f8 817 if (size <= 0 && !reopened && cdrom_reopen(bs) >= 0) {
9f23011a
BS
818 reopened = 1;
819 goto again;
820 }
821 }
83f64091
FB
822#endif
823 } else
824#endif
825#ifdef __sun__
826 /*
827 * use the DKIOCGMEDIAINFO ioctl to read the size.
828 */
829 rv = ioctl ( fd, DKIOCGMEDIAINFO, &minfo );
830 if ( rv != -1 ) {
831 size = minfo.dki_lbsize * minfo.dki_capacity;
832 } else /* there are reports that lseek on some devices
833 fails, but irc discussion said that contingency
834 on contingency was overkill */
835#endif
836 {
837 size = lseek(fd, 0, SEEK_END);
838 }
83f64091
FB
839 return size;
840}
128ab2ff 841#endif
83f64091 842
0e7e1989 843static int raw_create(const char *filename, QEMUOptionParameter *options)
83f64091
FB
844{
845 int fd;
1e37d059 846 int result = 0;
0e7e1989 847 int64_t total_size = 0;
83f64091 848
0e7e1989
KW
849 /* Read out options */
850 while (options && options->name) {
851 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
852 total_size = options->value.n / 512;
853 }
854 options++;
855 }
83f64091 856
5fafdf24 857 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
83f64091 858 0644);
1e37d059
SW
859 if (fd < 0) {
860 result = -errno;
861 } else {
862 if (ftruncate(fd, total_size * 512) != 0) {
863 result = -errno;
864 }
865 if (close(fd) != 0) {
866 result = -errno;
867 }
868 }
869 return result;
83f64091
FB
870}
871
872static void raw_flush(BlockDriverState *bs)
873{
874 BDRVRawState *s = bs->opaque;
875 fsync(s->fd);
876}
877
0e7e1989
KW
878
879static QEMUOptionParameter raw_create_options[] = {
db08adf5
KW
880 {
881 .name = BLOCK_OPT_SIZE,
882 .type = OPT_SIZE,
883 .help = "Virtual disk size"
884 },
0e7e1989
KW
885 { NULL }
886};
887
5efa9d5a 888static BlockDriver bdrv_raw = {
856ae5c3
BS
889 .format_name = "raw",
890 .instance_size = sizeof(BDRVRawState),
891 .bdrv_probe = NULL, /* no probe for protocols */
892 .bdrv_open = raw_open,
893 .bdrv_read = raw_read,
894 .bdrv_write = raw_write,
895 .bdrv_close = raw_close,
896 .bdrv_create = raw_create,
897 .bdrv_flush = raw_flush,
3b46e624 898
f141eafe
AL
899 .bdrv_aio_readv = raw_aio_readv,
900 .bdrv_aio_writev = raw_aio_writev,
3c529d93 901
83f64091
FB
902 .bdrv_truncate = raw_truncate,
903 .bdrv_getlength = raw_getlength,
0e7e1989
KW
904
905 .create_options = raw_create_options,
83f64091
FB
906};
907
19cb3738
FB
908/***********************************************/
909/* host device */
910
911#ifdef CONFIG_COCOA
912static kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator );
913static kern_return_t GetBSDPath( io_iterator_t mediaIterator, char *bsdPath, CFIndex maxPathSize );
914
915kern_return_t FindEjectableCDMedia( io_iterator_t *mediaIterator )
916{
5fafdf24 917 kern_return_t kernResult;
19cb3738
FB
918 mach_port_t masterPort;
919 CFMutableDictionaryRef classesToMatch;
920
921 kernResult = IOMasterPort( MACH_PORT_NULL, &masterPort );
922 if ( KERN_SUCCESS != kernResult ) {
923 printf( "IOMasterPort returned %d\n", kernResult );
924 }
3b46e624 925
5fafdf24 926 classesToMatch = IOServiceMatching( kIOCDMediaClass );
19cb3738
FB
927 if ( classesToMatch == NULL ) {
928 printf( "IOServiceMatching returned a NULL dictionary.\n" );
929 } else {
930 CFDictionarySetValue( classesToMatch, CFSTR( kIOMediaEjectableKey ), kCFBooleanTrue );
931 }
932 kernResult = IOServiceGetMatchingServices( masterPort, classesToMatch, mediaIterator );
933 if ( KERN_SUCCESS != kernResult )
934 {
935 printf( "IOServiceGetMatchingServices returned %d\n", kernResult );
936 }
3b46e624 937
19cb3738
FB
938 return kernResult;
939}
940
941kern_return_t GetBSDPath( io_iterator_t mediaIterator, char *bsdPath, CFIndex maxPathSize )
942{
943 io_object_t nextMedia;
944 kern_return_t kernResult = KERN_FAILURE;
945 *bsdPath = '\0';
946 nextMedia = IOIteratorNext( mediaIterator );
947 if ( nextMedia )
948 {
949 CFTypeRef bsdPathAsCFString;
950 bsdPathAsCFString = IORegistryEntryCreateCFProperty( nextMedia, CFSTR( kIOBSDNameKey ), kCFAllocatorDefault, 0 );
951 if ( bsdPathAsCFString ) {
952 size_t devPathLength;
953 strcpy( bsdPath, _PATH_DEV );
954 strcat( bsdPath, "r" );
955 devPathLength = strlen( bsdPath );
956 if ( CFStringGetCString( bsdPathAsCFString, bsdPath + devPathLength, maxPathSize - devPathLength, kCFStringEncodingASCII ) ) {
957 kernResult = KERN_SUCCESS;
958 }
959 CFRelease( bsdPathAsCFString );
960 }
961 IOObjectRelease( nextMedia );
962 }
3b46e624 963
19cb3738
FB
964 return kernResult;
965}
966
967#endif
968
508c7cb3
CH
969static int hdev_probe_device(const char *filename)
970{
971 struct stat st;
972
973 /* allow a dedicated CD-ROM driver to match with a higher priority */
974 if (strstart(filename, "/dev/cdrom", NULL))
975 return 50;
976
977 if (stat(filename, &st) >= 0 &&
978 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
979 return 100;
980 }
981
982 return 0;
983}
984
19cb3738
FB
985static int hdev_open(BlockDriverState *bs, const char *filename, int flags)
986{
987 BDRVRawState *s = bs->opaque;
a76bab49 988
19cb3738
FB
989#ifdef CONFIG_COCOA
990 if (strstart(filename, "/dev/cdrom", NULL)) {
991 kern_return_t kernResult;
992 io_iterator_t mediaIterator;
993 char bsdPath[ MAXPATHLEN ];
994 int fd;
5fafdf24 995
19cb3738
FB
996 kernResult = FindEjectableCDMedia( &mediaIterator );
997 kernResult = GetBSDPath( mediaIterator, bsdPath, sizeof( bsdPath ) );
3b46e624 998
19cb3738
FB
999 if ( bsdPath[ 0 ] != '\0' ) {
1000 strcat(bsdPath,"s0");
1001 /* some CDs don't have a partition 0 */
1002 fd = open(bsdPath, O_RDONLY | O_BINARY | O_LARGEFILE);
1003 if (fd < 0) {
1004 bsdPath[strlen(bsdPath)-1] = '1';
1005 } else {
1006 close(fd);
1007 }
1008 filename = bsdPath;
1009 }
3b46e624 1010
19cb3738
FB
1011 if ( mediaIterator )
1012 IOObjectRelease( mediaIterator );
1013 }
1014#endif
19cb3738
FB
1015
1016 s->type = FTYPE_FILE;
4dd75c70 1017#if defined(__linux__)
f3a5d3f8 1018 if (strstart(filename, "/dev/sg", NULL)) {
985a03b0 1019 bs->sg = 1;
19cb3738
FB
1020 }
1021#endif
90babde0 1022
19a3da7f 1023 return raw_open_common(bs, filename, flags, 0);
19cb3738
FB
1024}
1025
03ff3ca3 1026#if defined(__linux__)
19cb3738
FB
1027/* Note: we do not have a reliable method to detect if the floppy is
1028 present. The current method is to try to open the floppy at every
1029 I/O and to keep it opened during a few hundreds of ms. */
1030static int fd_open(BlockDriverState *bs)
1031{
1032 BDRVRawState *s = bs->opaque;
1033 int last_media_present;
1034
1035 if (s->type != FTYPE_FD)
1036 return 0;
1037 last_media_present = (s->fd >= 0);
5fafdf24 1038 if (s->fd >= 0 &&
19cb3738
FB
1039 (qemu_get_clock(rt_clock) - s->fd_open_time) >= FD_OPEN_TIMEOUT) {
1040 close(s->fd);
1041 s->fd = -1;
1042#ifdef DEBUG_FLOPPY
1043 printf("Floppy closed\n");
1044#endif
1045 }
1046 if (s->fd < 0) {
5fafdf24 1047 if (s->fd_got_error &&
19cb3738
FB
1048 (qemu_get_clock(rt_clock) - s->fd_error_time) < FD_OPEN_TIMEOUT) {
1049#ifdef DEBUG_FLOPPY
1050 printf("No floppy (open delayed)\n");
1051#endif
1052 return -EIO;
1053 }
0e1d8f4c 1054 s->fd = open(bs->filename, s->open_flags & ~O_NONBLOCK);
19cb3738
FB
1055 if (s->fd < 0) {
1056 s->fd_error_time = qemu_get_clock(rt_clock);
1057 s->fd_got_error = 1;
1058 if (last_media_present)
1059 s->fd_media_changed = 1;
1060#ifdef DEBUG_FLOPPY
1061 printf("No floppy\n");
1062#endif
1063 return -EIO;
1064 }
1065#ifdef DEBUG_FLOPPY
1066 printf("Floppy opened\n");
1067#endif
1068 }
1069 if (!last_media_present)
1070 s->fd_media_changed = 1;
1071 s->fd_open_time = qemu_get_clock(rt_clock);
1072 s->fd_got_error = 0;
1073 return 0;
1074}
19cb3738 1075
63ec93db 1076static int hdev_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
985a03b0
TS
1077{
1078 BDRVRawState *s = bs->opaque;
1079
1080 return ioctl(s->fd, req, buf);
1081}
221f715d 1082
63ec93db 1083static BlockDriverAIOCB *hdev_aio_ioctl(BlockDriverState *bs,
221f715d
AL
1084 unsigned long int req, void *buf,
1085 BlockDriverCompletionFunc *cb, void *opaque)
1086{
f141eafe 1087 BDRVRawState *s = bs->opaque;
221f715d
AL
1088 RawAIOCB *acb;
1089
f141eafe
AL
1090 if (fd_open(bs) < 0)
1091 return NULL;
1092
c16b5a2c 1093 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
221f715d
AL
1094 if (!acb)
1095 return NULL;
f141eafe
AL
1096 acb->aiocb.aio_fildes = s->fd;
1097 acb->aiocb.ev_signo = SIGUSR2;
1098 acb->aiocb.aio_offset = 0;
1099 acb->aiocb.aio_flags = 0;
1100
1101 acb->next = posix_aio_state->first_aio;
1102 posix_aio_state->first_aio = acb;
221f715d 1103
f141eafe 1104 acb->aiocb.aio_ioctl_buf = buf;
221f715d
AL
1105 acb->aiocb.aio_ioctl_cmd = req;
1106 if (qemu_paio_ioctl(&acb->aiocb) < 0) {
1107 raw_aio_remove(acb);
1108 return NULL;
1109 }
1110
1111 return &acb->common;
1112}
1113
9f23011a 1114#elif defined(__FreeBSD__)
9f23011a
BS
1115static int fd_open(BlockDriverState *bs)
1116{
1117 BDRVRawState *s = bs->opaque;
1118
1119 /* this is just to ensure s->fd is sane (its called by io ops) */
1120 if (s->fd >= 0)
1121 return 0;
1122 return -EIO;
1123}
9f23011a 1124#else /* !linux && !FreeBSD */
19cb3738 1125
08af02e2
AL
1126static int fd_open(BlockDriverState *bs)
1127{
1128 return 0;
1129}
1130
221f715d 1131#endif /* !linux && !FreeBSD */
04eeb8b6 1132
0e7e1989 1133static int hdev_create(const char *filename, QEMUOptionParameter *options)
93c65b47
AL
1134{
1135 int fd;
1136 int ret = 0;
1137 struct stat stat_buf;
0e7e1989 1138 int64_t total_size = 0;
93c65b47 1139
0e7e1989
KW
1140 /* Read out options */
1141 while (options && options->name) {
1142 if (!strcmp(options->name, "size")) {
1143 total_size = options->value.n / 512;
1144 }
1145 options++;
1146 }
93c65b47
AL
1147
1148 fd = open(filename, O_WRONLY | O_BINARY);
1149 if (fd < 0)
1150 return -EIO;
1151
1152 if (fstat(fd, &stat_buf) < 0)
1153 ret = -EIO;
4099df58 1154 else if (!S_ISBLK(stat_buf.st_mode) && !S_ISCHR(stat_buf.st_mode))
93c65b47
AL
1155 ret = -EIO;
1156 else if (lseek(fd, 0, SEEK_END) < total_size * 512)
1157 ret = -ENOSPC;
1158
1159 close(fd);
1160 return ret;
1161}
1162
5efa9d5a 1163static BlockDriver bdrv_host_device = {
e60f469c
AJ
1164 .format_name = "host_device",
1165 .instance_size = sizeof(BDRVRawState),
508c7cb3 1166 .bdrv_probe_device = hdev_probe_device,
e60f469c
AJ
1167 .bdrv_open = hdev_open,
1168 .bdrv_close = raw_close,
93c65b47 1169 .bdrv_create = hdev_create,
e60f469c 1170 .bdrv_flush = raw_flush,
3b46e624 1171
f141eafe
AL
1172 .bdrv_aio_readv = raw_aio_readv,
1173 .bdrv_aio_writev = raw_aio_writev,
3c529d93 1174
eda578e5
AL
1175 .bdrv_read = raw_read,
1176 .bdrv_write = raw_write,
e60f469c 1177 .bdrv_getlength = raw_getlength,
19cb3738 1178
f3a5d3f8 1179 /* generic scsi device */
63ec93db
CH
1180#ifdef __linux__
1181 .bdrv_ioctl = hdev_ioctl,
63ec93db
CH
1182 .bdrv_aio_ioctl = hdev_aio_ioctl,
1183#endif
f3a5d3f8
CH
1184};
1185
1186#ifdef __linux__
1187static int floppy_open(BlockDriverState *bs, const char *filename, int flags)
1188{
1189 BDRVRawState *s = bs->opaque;
1190 int ret;
1191
1192 posix_aio_init();
1193
1194 s->type = FTYPE_FD;
f3a5d3f8 1195
19a3da7f
BS
1196 /* open will not fail even if no floppy is inserted, so add O_NONBLOCK */
1197 ret = raw_open_common(bs, filename, flags, O_NONBLOCK);
f3a5d3f8
CH
1198 if (ret)
1199 return ret;
1200
1201 /* close fd so that we can reopen it as needed */
1202 close(s->fd);
1203 s->fd = -1;
1204 s->fd_media_changed = 1;
1205
1206 return 0;
1207}
1208
508c7cb3
CH
1209static int floppy_probe_device(const char *filename)
1210{
1211 if (strstart(filename, "/dev/fd", NULL))
1212 return 100;
1213 return 0;
1214}
1215
1216
f3a5d3f8
CH
1217static int floppy_is_inserted(BlockDriverState *bs)
1218{
1219 return fd_open(bs) >= 0;
1220}
1221
1222static int floppy_media_changed(BlockDriverState *bs)
1223{
1224 BDRVRawState *s = bs->opaque;
1225 int ret;
1226
1227 /*
1228 * XXX: we do not have a true media changed indication.
1229 * It does not work if the floppy is changed without trying to read it.
1230 */
1231 fd_open(bs);
1232 ret = s->fd_media_changed;
1233 s->fd_media_changed = 0;
1234#ifdef DEBUG_FLOPPY
1235 printf("Floppy changed=%d\n", ret);
1236#endif
1237 return ret;
1238}
1239
1240static int floppy_eject(BlockDriverState *bs, int eject_flag)
1241{
1242 BDRVRawState *s = bs->opaque;
1243 int fd;
1244
1245 if (s->fd >= 0) {
1246 close(s->fd);
1247 s->fd = -1;
1248 }
1249 fd = open(bs->filename, s->open_flags | O_NONBLOCK);
1250 if (fd >= 0) {
1251 if (ioctl(fd, FDEJECT, 0) < 0)
1252 perror("FDEJECT");
1253 close(fd);
1254 }
1255
1256 return 0;
1257}
1258
1259static BlockDriver bdrv_host_floppy = {
1260 .format_name = "host_floppy",
1261 .instance_size = sizeof(BDRVRawState),
508c7cb3 1262 .bdrv_probe_device = floppy_probe_device,
f3a5d3f8
CH
1263 .bdrv_open = floppy_open,
1264 .bdrv_close = raw_close,
1265 .bdrv_create = hdev_create,
1266 .bdrv_flush = raw_flush,
1267
f3a5d3f8
CH
1268 .bdrv_aio_readv = raw_aio_readv,
1269 .bdrv_aio_writev = raw_aio_writev,
f3a5d3f8
CH
1270
1271 .bdrv_read = raw_read,
1272 .bdrv_write = raw_write,
1273 .bdrv_getlength = raw_getlength,
1274
1275 /* removable device support */
1276 .bdrv_is_inserted = floppy_is_inserted,
1277 .bdrv_media_changed = floppy_media_changed,
1278 .bdrv_eject = floppy_eject,
f3a5d3f8
CH
1279};
1280
1281static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
1282{
1283 BDRVRawState *s = bs->opaque;
1284
f3a5d3f8
CH
1285 s->type = FTYPE_CD;
1286
19a3da7f
BS
1287 /* open will not fail even if no CD is inserted, so add O_NONBLOCK */
1288 return raw_open_common(bs, filename, flags, O_NONBLOCK);
f3a5d3f8
CH
1289}
1290
508c7cb3
CH
1291static int cdrom_probe_device(const char *filename)
1292{
1293 if (strstart(filename, "/dev/cd", NULL))
1294 return 100;
1295 return 0;
1296}
1297
f3a5d3f8
CH
1298static int cdrom_is_inserted(BlockDriverState *bs)
1299{
1300 BDRVRawState *s = bs->opaque;
1301 int ret;
1302
1303 ret = ioctl(s->fd, CDROM_DRIVE_STATUS, CDSL_CURRENT);
1304 if (ret == CDS_DISC_OK)
1305 return 1;
1306 return 0;
1307}
1308
1309static int cdrom_eject(BlockDriverState *bs, int eject_flag)
1310{
1311 BDRVRawState *s = bs->opaque;
1312
1313 if (eject_flag) {
1314 if (ioctl(s->fd, CDROMEJECT, NULL) < 0)
1315 perror("CDROMEJECT");
1316 } else {
1317 if (ioctl(s->fd, CDROMCLOSETRAY, NULL) < 0)
1318 perror("CDROMEJECT");
1319 }
1320
1321 return 0;
1322}
1323
1324static int cdrom_set_locked(BlockDriverState *bs, int locked)
1325{
1326 BDRVRawState *s = bs->opaque;
1327
1328 if (ioctl(s->fd, CDROM_LOCKDOOR, locked) < 0) {
1329 /*
1330 * Note: an error can happen if the distribution automatically
1331 * mounts the CD-ROM
1332 */
1333 /* perror("CDROM_LOCKDOOR"); */
1334 }
1335
1336 return 0;
1337}
1338
1339static BlockDriver bdrv_host_cdrom = {
1340 .format_name = "host_cdrom",
1341 .instance_size = sizeof(BDRVRawState),
508c7cb3 1342 .bdrv_probe_device = cdrom_probe_device,
f3a5d3f8
CH
1343 .bdrv_open = cdrom_open,
1344 .bdrv_close = raw_close,
1345 .bdrv_create = hdev_create,
1346 .bdrv_flush = raw_flush,
1347
f3a5d3f8
CH
1348 .bdrv_aio_readv = raw_aio_readv,
1349 .bdrv_aio_writev = raw_aio_writev,
f3a5d3f8
CH
1350
1351 .bdrv_read = raw_read,
1352 .bdrv_write = raw_write,
1353 .bdrv_getlength = raw_getlength,
1354
1355 /* removable device support */
1356 .bdrv_is_inserted = cdrom_is_inserted,
1357 .bdrv_eject = cdrom_eject,
1358 .bdrv_set_locked = cdrom_set_locked,
1359
1360 /* generic scsi device */
63ec93db 1361 .bdrv_ioctl = hdev_ioctl,
63ec93db 1362 .bdrv_aio_ioctl = hdev_aio_ioctl,
f3a5d3f8
CH
1363};
1364#endif /* __linux__ */
1365
1366#ifdef __FreeBSD__
1367static int cdrom_open(BlockDriverState *bs, const char *filename, int flags)
1368{
1369 BDRVRawState *s = bs->opaque;
1370 int ret;
1371
1372 s->type = FTYPE_CD;
1373
19a3da7f 1374 ret = raw_open_common(bs, filename, flags, 0);
f3a5d3f8
CH
1375 if (ret)
1376 return ret;
1377
1378 /* make sure the door isnt locked at this time */
1379 ioctl(s->fd, CDIOCALLOW);
1380 return 0;
1381}
1382
508c7cb3
CH
1383static int cdrom_probe_device(const char *filename)
1384{
1385 if (strstart(filename, "/dev/cd", NULL) ||
1386 strstart(filename, "/dev/acd", NULL))
1387 return 100;
1388 return 0;
1389}
1390
f3a5d3f8
CH
1391static int cdrom_reopen(BlockDriverState *bs)
1392{
1393 BDRVRawState *s = bs->opaque;
1394 int fd;
1395
1396 /*
1397 * Force reread of possibly changed/newly loaded disc,
1398 * FreeBSD seems to not notice sometimes...
1399 */
1400 if (s->fd >= 0)
1401 close(s->fd);
1402 fd = open(bs->filename, s->open_flags, 0644);
1403 if (fd < 0) {
1404 s->fd = -1;
1405 return -EIO;
1406 }
1407 s->fd = fd;
1408
1409 /* make sure the door isnt locked at this time */
1410 ioctl(s->fd, CDIOCALLOW);
1411 return 0;
1412}
1413
1414static int cdrom_is_inserted(BlockDriverState *bs)
1415{
1416 return raw_getlength(bs) > 0;
1417}
1418
1419static int cdrom_eject(BlockDriverState *bs, int eject_flag)
1420{
1421 BDRVRawState *s = bs->opaque;
1422
1423 if (s->fd < 0)
1424 return -ENOTSUP;
1425
1426 (void) ioctl(s->fd, CDIOCALLOW);
1427
1428 if (eject_flag) {
1429 if (ioctl(s->fd, CDIOCEJECT) < 0)
1430 perror("CDIOCEJECT");
1431 } else {
1432 if (ioctl(s->fd, CDIOCCLOSE) < 0)
1433 perror("CDIOCCLOSE");
1434 }
1435
1436 if (cdrom_reopen(bs) < 0)
1437 return -ENOTSUP;
1438 return 0;
1439}
1440
1441static int cdrom_set_locked(BlockDriverState *bs, int locked)
1442{
1443 BDRVRawState *s = bs->opaque;
1444
1445 if (s->fd < 0)
1446 return -ENOTSUP;
1447 if (ioctl(s->fd, (locked ? CDIOCPREVENT : CDIOCALLOW)) < 0) {
1448 /*
1449 * Note: an error can happen if the distribution automatically
1450 * mounts the CD-ROM
1451 */
1452 /* perror("CDROM_LOCKDOOR"); */
1453 }
1454
1455 return 0;
1456}
1457
1458static BlockDriver bdrv_host_cdrom = {
1459 .format_name = "host_cdrom",
1460 .instance_size = sizeof(BDRVRawState),
508c7cb3 1461 .bdrv_probe_device = cdrom_probe_device,
f3a5d3f8
CH
1462 .bdrv_open = cdrom_open,
1463 .bdrv_close = raw_close,
1464 .bdrv_create = hdev_create,
1465 .bdrv_flush = raw_flush,
1466
f3a5d3f8
CH
1467 .bdrv_aio_readv = raw_aio_readv,
1468 .bdrv_aio_writev = raw_aio_writev,
f3a5d3f8
CH
1469
1470 .bdrv_read = raw_read,
1471 .bdrv_write = raw_write,
1472 .bdrv_getlength = raw_getlength,
1473
19cb3738 1474 /* removable device support */
f3a5d3f8
CH
1475 .bdrv_is_inserted = cdrom_is_inserted,
1476 .bdrv_eject = cdrom_eject,
1477 .bdrv_set_locked = cdrom_set_locked,
19cb3738 1478};
f3a5d3f8 1479#endif /* __FreeBSD__ */
5efa9d5a
AL
1480
1481static void bdrv_raw_init(void)
1482{
508c7cb3
CH
1483 /*
1484 * Register all the drivers. Note that order is important, the driver
1485 * registered last will get probed first.
1486 */
5efa9d5a
AL
1487 bdrv_register(&bdrv_raw);
1488 bdrv_register(&bdrv_host_device);
f3a5d3f8
CH
1489#ifdef __linux__
1490 bdrv_register(&bdrv_host_floppy);
1491 bdrv_register(&bdrv_host_cdrom);
1492#endif
1493#ifdef __FreeBSD__
1494 bdrv_register(&bdrv_host_cdrom);
1495#endif
5efa9d5a
AL
1496}
1497
1498block_init(bdrv_raw_init);