2 ## -----------------------------------------------------------------------
4 ## Copyright 2002-2008 H. Peter Anvin - All Rights Reserved
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9 ## Boston MA 02111-1307, USA; either version 2 of the License, or
10 ## (at your option) any later version; incorporated herein by reference.
12 ## -----------------------------------------------------------------------
15 # Creates a blank MS-DOS formatted hard disk image
23 use IO::Handle; # For flush()
25 sub absolute_path($) {
29 return $f if ( $f =~ /^\// );
31 $c = '' if ( $c eq '/' );
38 '($sysname, $nodename, $release, $version, $machine) = POSIX::uname(); '.
39 "return \$sysname eq \'Linux\'; }";
43 # Get a 32-bit random number
47 if (sysopen($rfd, '/dev/urandom', O_RDONLY) &&
48 sysread($rfd, $rnd, 4) == 4) {
49 $rid = unpack("V", $rnd);
52 close($rfd) if (defined($rfd));
53 return $rid if (defined($rid));
55 # This sucks but is better than nothing...
56 return ($$+time()) & 0xffffffff;
59 $is_linux = is_linux();
69 while (defined($a = shift(@ARGV))) {
71 foreach $o ( split(//, substr($a,1)) ) {
82 ($file,$c,$h,$s) = @args;
83 $c += 0; $h += 0; $s += 0;
86 $pentry = 2 if ( $opt{'2'} );
87 $pentry = 3 if ( $opt{'3'} );
88 $pentry = 4 if ( $opt{'4'} );
95 if ( $opt{'M'} && $h && $s ) {
96 # Specify size in megabytes, not in cylinders
97 $c = ($c*1024*2)/($h*$s);
102 if ( $c == 0 && $file ne '' ) {
104 if ( sysopen(OUTPUT, $file, O_RDWR, 0666) ) {
107 if ( (@filestat = stat(OUTPUT)) && S_ISREG($filestat[2]) ) {
108 $len = $filestat[7] >> 9;
109 } elsif ( $is_linux && S_ISBLK($filestat[2]) ) {
110 $blksize = pack("L!", 0);
111 if ( ioctl(OUTPUT, $BLKGETSIZE, $blksize) == 0 ) {
112 $len = unpack("L!", $blksize); # In 512-byte sectors!
118 print STDERR "$0: $file: don't know how to determine the size of this device\n";
125 if ( $file eq '' || $c < 1 || $h < 1 || $h > 256 || $s < 1 || $s > 63 ) {
126 print STDERR "Usage: $0 [-doFMz4][-i id] file c h s (max: 1024 256 63)\n";
127 print STDERR " -d add DOSEMU header\n";
128 print STDERR " -o print filesystem offset to stdout\n";
129 print STDERR " -F format partition as FAT32\n";
130 print STDERR " -M \"c\" argument is megabytes, calculate cylinders\n";
131 print STDERR " -z use zipdisk geometry (h=64 s=32)\n";
132 print STDERR " -4 use partition entry 4 (standard for zipdisks)\n";
133 print STDERR " -i specify the MBR ID\n";
138 print STDERR "Warning: more than 1024 cylinders ($c).\n";
139 print STDERR "Not all BIOSes will be able to boot this device.\n";
145 $cylsize = $h*$s*512;
148 sysopen(OUTPUT, $file, O_CREAT|O_RDWR|O_TRUNC, 0666)
149 or die "$0: Cannot open: $file\n";
153 # Print out DOSEMU header, if requested
155 $emuhdr = "DOSEMU\0" . pack("VVVV", $h, $s, $c, 128);
156 $emuhdr .= "\0" x (128 - length($emuhdr));
157 print OUTPUT $emuhdr;
160 # Print the MBR and partition table
162 while ( $line = <DATA> ) {
164 foreach $byte ( split(/\s+/, $line) ) {
165 $mbr .= chr(hex($byte));
168 if ( length($mbr) > 440 ) {
169 die "$0: Bad MBR code\n";
172 $mbr .= "\0" x (440 - length($mbr));
178 $mbr .= pack("V", $id); # Offset 440: MBR ID
179 $mbr .= "\0\0"; # Offset 446: actual partition table
183 # Print partition table
184 $psize = $c*$h*$s-$s;
185 $bhead = ($h > 1) ? 1 : 0;
187 $bcyl = ($h > 1) ? 0 : 1;
189 $esect = $s + ((($cc-1) & 0x300) >> 2);
190 $ecyl = ($cc-1) & 0xff;
193 } elsif ( $psize > 65536 ) {
198 for ( $i = 1 ; $i <= 4 ; $i++ ) {
199 if ( $i == $pentry ) {
200 print OUTPUT pack("CCCCCCCCVV", 0x80, $bhead, $bsect, $bcyl, $fstype,
201 $ehead, $esect, $ecyl, $s, $psize);
203 print OUTPUT "\0" x 16;
206 print OUTPUT "\x55\xaa";
209 $totalsize = $c*$h*$s;
212 $track = "\0" x (512*$s);
214 # Print fractional track
215 print OUTPUT "\0" x (512 * ($s-1));
217 for ( $i = 1 ; $i < $tracks ; $i++ ) {
221 # Print mtools temp file
223 while ( !defined($tmpdir) ) {
224 $tmpdir = "/tmp/mkdiskimage.$$.".($n++);
225 if ( !mkdir($tmpdir, 0700) ) {
226 die "$0: Failed to make temp directory: $tmpdir\n"
232 $cfgfile = $tmpdir.'/mtools.conf';
233 $imglink = $tmpdir.'/disk.img';
234 die "$0: Failed to create symlink $imglink\n"
235 if ( !symlink(absolute_path($file), $imglink) );
237 $header_size = ($opt{'d'} ? 128 : 0);
239 # Start of filesystem
240 $offset = $s*512 + $header_size;
242 # Start of partition table entry
243 $pstart = $header_size + 446 + 16*($pentry-1);
245 open(MCONFIG, "> ${cfgfile}") or die "$0: Cannot make mtools config\n";
246 print MCONFIG "drive z:\n";
247 print MCONFIG "file=\"${imglink}\"\n";
248 print MCONFIG "cylinders=${c}\n";
249 print MCONFIG "heads=${h}\n";
250 print MCONFIG "sectors=${s}\n";
251 print MCONFIG "offset=${offset}\n";
252 print MCONFIG "mformat_only\n";
255 # Output the filesystem offset to stdout if appropriate
260 $ENV{'MTOOLSRC'} = $cfgfile;
262 system('mformat', '-F', 'z:');
264 system('mformat', 'z:');
272 # MTOOLS doesn't write the bsHiddenSecs field correctly
273 seek(OUTPUT, $offset + 0x1c, 0);
274 print OUTPUT pack("V", ($offset-$header_size)>>9);
276 # Set the partition type
279 $fstype = 0x0c; # FAT32 LBA
285 $fstype = 0x0e; # FAT16 LBA
286 } elsif ( $psize > 65536 ) {
287 $fstype = 0x06; # FAT16 > 32MB
289 $fstype = 0x04; # FAT16 <= 32MB
291 seek(OUTPUT, $offset + 0x36, 0);
292 read(OUTPUT, $fsname, 8);
294 # FAT12: adjust partition type
295 if ( $fsname eq 'FAT12 ' ) {
296 $fstype = 0x01; # FAT12
299 seek(OUTPUT, $pstart+4, 0);
300 print OUTPUT pack("C", $fstype);
304 # Just in case this is a block device, try to flush the partition table
306 ioctl(OUTPUT, $BLKRRPART, 0);