Reading a sector on the boot disk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T17:05:05Z http://stackoverflow.com/feeds/question/342057 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/342057/reading-a-sector-on-the-boot-disk 1 Reading a sector on the boot disk titaniumdecoy 2008-12-04T21:03:26Z 2008-12-05T17:58:47Z <p>This is a continuation of my question about <a href="http://stackoverflow.com/questions/339795/reading-the-superblock">reading the superblock</a>.</p> <p>Let's say I want to target the HFS+ file system in Mac OS X. How could I read sector 2 of the boot disk? As far as I know Unix only provides system calls to read from files, which are never stored at that location.</p> <p>Does this require either 1) the program to run kernel mode, or 2) the program to be written in Assembly? I would prefer to avoid either of these restrictions, particularly the latter.</p> http://stackoverflow.com/questions/342057/reading-a-sector-on-the-boot-disk/342077#342077 3 Answer by Adam Rosenfield for Reading a sector on the boot disk Adam Rosenfield 2008-12-04T21:10:29Z 2008-12-04T21:10:29Z <p>In Linux, you can read from the special device file <code>/dev/sda</code>, assuming the hard drive you want to read is the first one. You need to be root to read this file. To read sector 2, you just seek to offset <code>2*SECTOR_SIZE</code> and read in <code>SECTOR_SIZE</code> bytes.</p> <p>I don't know if this device file is available on OS X. Check for interestingly named files under <code>/dev</code> such as <code>/dev/sda</code> or <code>/dev/hda</code>.</p> http://stackoverflow.com/questions/342057/reading-a-sector-on-the-boot-disk/342175#342175 0 Answer by plinth for Reading a sector on the boot disk plinth 2008-12-04T21:38:01Z 2008-12-04T21:38:01Z <p>I was also going to suggest hitting the /dev/ device file for the volume, but you might want to contact Amit Singh who has written an <a href="http://osxbook.com/software/hfsdebug/" rel="nofollow">hfsdebug utility</a> and has probably done just what you want to do.</p> http://stackoverflow.com/questions/342057/reading-a-sector-on-the-boot-disk/342886#342886 0 Answer by titaniumdecoy for Reading a sector on the boot disk titaniumdecoy 2008-12-05T04:08:07Z 2008-12-05T04:08:07Z <p>How does this work in terms of permissions? Wouldn't reading from /dev/... be insecure since if you read far enough you would be able to read files for which you do not have read access?</p> http://stackoverflow.com/questions/342057/reading-a-sector-on-the-boot-disk/344669#344669 4 Answer by Thomas Tempelmann for Reading a sector on the boot disk Thomas Tempelmann 2008-12-05T17:58:47Z 2008-12-05T17:58:47Z <p>I've done this myself on the Mac, see my disk editor tool: <a href="http://ipodlinux.org/wiki/Rohpod" rel="nofollow">http://ipodlinux.org/wiki/Rohpod</a></p> <p>You'd open the drive using the /dev/diskN or /dev/rdiskN (N is a disk index number starting from 0). Then you can use lseek (make sure to use the 64 bit range version!) and read/write calls on the opened file.</p> <p>Also, use the shell command "ls /dev/disk*" to see which drives exist currently. And note that the drives also exist with a "sM" extension where M is the partition number. That way, could can also read partitions directly.</p> <p>Or, you could just use the shell tool "xxd" or "dd" to read data and then use their output. Might be easier.</p> <p>You'll not be able to read your root volume unless you run as root, though. You may be able to access other drives as long as they were mounted by the user, or have their permissions disabled. But you may also need to unmount the drive's volumes first. Look for the unmount command in the shell command "diskutil".</p> <p>Hope this helps.</p>