diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-04-26 21:59:26 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-04-26 21:59:26 +0000 |
commit | 7674e7bf08c0be8e6872f8602e2d875b3efb6903 (patch) | |
tree | 41f6d4313fae6e7de97f1be27afcc17c66b79fe3 /block.c | |
parent | c747cd1fa26d1ed0cc009302fb9c75a8f03651e2 (diff) |
BSD cdrom device access fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1412 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 42 |
1 files changed, 39 insertions, 3 deletions
@@ -24,6 +24,14 @@ #include "vl.h" #include "block_int.h" +#ifdef _BSD +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/ioctl.h> +#include <sys/queue.h> +#include <sys/disk.h> +#endif + static BlockDriverState *bdrv_first; static BlockDriver *first_drv; @@ -88,18 +96,33 @@ static void get_tmp_filename(char *filename, int size) } #endif +/* XXX: force raw format if block or character device ? It would + simplify the BSD case */ static BlockDriver *find_image_format(const char *filename) { int fd, ret, score, score_max; BlockDriver *drv1, *drv; - uint8_t buf[1024]; + uint8_t *buf; + size_t bufsize = 1024; fd = open(filename, O_RDONLY | O_BINARY | O_LARGEFILE); if (fd < 0) return NULL; - ret = read(fd, buf, sizeof(buf)); +#ifdef DIOCGSECTORSIZE + { + unsigned int sectorsize = 512; + if (!ioctl(fd, DIOCGSECTORSIZE, §orsize) && + sectorsize > bufsize) + bufsize = sectorsize; + } +#endif + buf = malloc(bufsize); + if (!buf) + return NULL; + ret = read(fd, buf, bufsize); if (ret < 0) { close(fd); + free(buf); return NULL; } close(fd); @@ -113,6 +136,7 @@ static BlockDriver *find_image_format(const char *filename) drv = drv1; } } + free(buf); return drv; } @@ -532,7 +556,19 @@ static int raw_open(BlockDriverState *bs, const char *filename) return -1; bs->read_only = 1; } - size = lseek(fd, 0, SEEK_END); +#ifdef _BSD + { + struct stat sb; + if (!fstat(fd, &sb) && (S_IFCHR & sb.st_mode)) { +#ifdef DIOCGMEDIASIZE + if (ioctl(fd, DIOCGMEDIASIZE, (off_t *)&size)) +#endif + size = lseek(fd, 0LL, SEEK_END); + } else +#endif + { + size = lseek(fd, 0, SEEK_END); + } #ifdef _WIN32 /* On Windows hosts it can happen that we're unable to get file size for CD-ROM raw device (it's inherent limitation of the CDFS driver). */ |