public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* determining size of cdrom
@ 2001-05-30 16:11 Jeff Meininger
  2001-05-30 21:15 ` Jens Axboe
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff Meininger @ 2001-05-30 16:11 UTC (permalink / raw)
  To: linux-kernel


I'm not subscribed to the mailing list, so please Cc a copy of your
replies straight to my email address: jeffm@boxybutgood.com.


I'm trying to determine the raw size of a cdrom disc, as in the size of
the file you'd get by doing 'dd if=/dev/cdrom of=size_of_this.img'.

I've tried the following things (with a disc in the drive) without
success, and I'm hoping that someone will be able to point me in the right
direction.


struct stat s;
stat("/dev/cdrom", &s);
/* s.st_size is 0, s.st_blocks is 0.  */

int fd = open("/dev/cdrom", O_RDONLY);

off_t bytes = lseek(fd, 0, SEEK_END);
/* bytes is 0 */

long sectors = 0;
ioctl(fd, BLKGETSIZE, &sectors);
/* sectors varies (never seems accurate) and is usually LONG_MAX */
	
long ssz = 0;
ioctl(fd, BLKSSZGET, &ssz);
/* ssz varies, and is usually 1024. (shouldn't it be 2048?)  */

/* ioctl HDIO_GETGEO fails. */

/* ioctl HDIO_GET_IDENTITY returns 0's for the c/h/s values I'm looking
for.  */

I didn't find anything that looked obvious to me in linux/cdrom.h, except
in the #ifdef __KERNEL__ section which I don't believe I can use from
user space.

I hope I didn't miss something really obvious, but I've been at this
problem for a few days now (mostly spent reading docs and headers) and I'm
at the point where I'll risk asking something stupid.

Thanks!!

BTW, once again, I'm not subscribed to the mailing list, so please Cc a
copy of your replies straight to my email address: jeffm@boxybutgood.com.



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-05-31 11:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-30 16:11 determining size of cdrom Jeff Meininger
2001-05-30 21:15 ` Jens Axboe
2001-05-31  6:51   ` Jeff Meininger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox