1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
|
/*
// Program: Format
// Version: 0.91p
// Written By: Brian E. Reifsnyder
// (updates 0.90b ... 0.91j by Eric Auer 2003)
// (updates 0.91k ... Eric Auer 2004)
// Copyright: 2002-2004 under the terms of the GNU GPL, Version 2
// Module Name: hdisk.c
// Module Description: Hard Drive Specific Functions
*/
#define HDISK
#include <stdlib.h>
#include "floppy.h"
#include "format.h"
#include "createfs.h"
#include "btstrct.h"
#include "hdisk.h"
void Get_Device_Parameters()
{
unsigned long error_code = 0;
#if 0
if (debug_prog==TRUE)
printf("[DEBUG] Enter Get_Device_Parameters() function\n");
#endif
parameter_block.bpb.bytes_per_sector = 0; /* *** */
parameter_block.bpb.sectors_per_cluster = 0; /* *** */
parameter_block.bpb.number_of_fats = 0; /* *** */
/* Get the device parameters for the logical drive */
regs.h.ah=0x44; /* IOCTL Block Device Request */
regs.h.al=0x0d; /* IOCTL */
regs.h.bl=param.drive_number + 1;
regs.h.ch=0x08; /* Always 0x08...unless fs is FAT32 */
regs.h.cl=0x60; /* Get device parameters */
regs.x.dx=FP_OFF(&(parameter_block.query_flags));
sregs.ds =FP_SEG(&(parameter_block.query_flags));
#if 0
// parameter_block.use_current_bpb = 0; /* bit 0 clear = we want the DEFAULT BPB only! */
// parameter_block.use_track_layout_fields = 0;
// parameter_block.all_sectors_same_size = 1; /* bit 2 must be set */
// parameter_block.reserved = 0;
#else
parameter_block.query_flags = 4; /* bit 0 clear, bit 2 set */
#endif
parameter_block.bpb.large_sector_count_low = 0; /* RBIL suggests that this is not returned??? */
parameter_block.bpb.large_sector_count_high = 0; /* RBIL suggests that this is not returned??? */
parameter_block.media_type = 0; /* 1 for 3x0k in 1200k drive, else 0 !?? */
parameter_block.bpb.sectors_per_fat = 0xffff; /* *** MARKER */
intdosx(®s, ®s, &sregs);
error_code = regs.h.al;
if ( (regs.x.cflag != 0) ||
/* (parameter_block.bpb.sectors_per_fat == 0xffff) || *//* *** MARKER */
(parameter_block.bpb.sectors_per_fat > 512) ) /* not plausible for FAT1x */
{
/* Max reasonable FAT16 size 256 sectors, min FAT32 size is 513 sectors */
if (regs.x.cflag == 0)
{
printf("Win98 kludge: FAT1x FAT size field reports FAT32 value, too.\n");
printf("Found default BPB *FAT1x* sectors per fat %u / root dir size %u\n",
parameter_block.bpb.sectors_per_fat,
parameter_block.bpb.root_directory_entries);
parameter_block.bpb.sectors_per_fat = 0; /* force FAT32 */
parameter_block.bpb.root_directory_entries = 0; /* force FAT32 */
printf("Cleared FAT1x values, will be using FAT32.\n");
}
else
{
printf("\nG.D.P.: Call to int 0x21, 0x440d 0x60, failed error %02x.\n", error_code);
printf("Maybe you forgot to LOCK the drive (error 5)? Trying FAT32...\n");
}
parameter_block.bpb.sectors_per_fat = 0; /* faking FAT32 */
} /* get FAT16 BPB failed or gave strange FAT1x size */
if (parameter_block.bpb.sectors_per_fat == 0) /* FAT32, or flagged for FAT32? */
{ /* FAT32 stores 0 in this WORD and uses a DWORD elsewhere instead */
/* Ok, this is assumed to be a FAT32 partition and it will be */
/* formatted as such. */
if (debug_prog==TRUE) printf("[DEBUG] Get_Device_Parameters: Seems to be FAT32...\n");
parameter_block.bpb.root_directory_entries = 0; /* ensure FAT32 */
param.fat_type = FAT32; /* Get_Device_Parameters: 0 sect/FAT1x in def. BPB */
/* ... or no def. BPB was available at all! */
/* Get the device parameters for the logical drive */
regs.h.ah=0x44; /* IOCTL Block Device Request */
regs.h.al=0x0d; /* IOCTL */
regs.h.bl=param.drive_number + 1;
regs.h.ch=0x48; /* Always 0x48 for FAT32 */
regs.h.cl=0x60; /* Get device parameters */
regs.x.dx=FP_OFF(&(parameter_block.query_flags));
sregs.ds =FP_SEG(&(parameter_block.query_flags));
#if 0
// parameter_block.use_current_bpb = 0; /* bit 0 clear = we want the DEFAULT BPB only! */
// parameter_block.use_track_layout_fields = 0;
// parameter_block.all_sectors_same_size = 1; /* bit 2 must be set */
// parameter_block.reserved = 0;
#else
parameter_block.query_flags = 4; /* bit 0 clear, bit 2 set */
#endif
parameter_block.media_type = 0; /* 1 for 3x0k in 1200k drive, else 0 !?? */
parameter_block.bpb.sectors_per_fat = 0xffff; /* *** new MARKER value 0.91L*/
intdosx(®s, ®s, &sregs);
error_code = regs.h.al;
if ( (regs.x.cflag != 0) ||
(parameter_block.bpb.sectors_per_fat != 0) ) /* MUST be 0 for FAT32... 0.91m */
{
/* Add error trapping here */
printf("\nG.D.P.: Call to int 0x21, 0x440d 0x60, failed error %02x. Possible reasons:\n", error_code);
printf("Could not get drive LOCK (error 5), or the OS supports no FAT32 at all.\n");
if (regs.x.cflag == 0)
printf("Returned FAT1x FAT size was %u sectors\n",
parameter_block.bpb.sectors_per_fat);
if (_osmajor == 5)
{
printf("Reported DOS version is 5.xx - maybe you are inside Windows 2000/XP/...?\n");
printf("They do not allow DOS programs to format non-floppy drives, sorry.\n");
printf("All trademarks are owned by their owners.\n");
}
exit(1);
}
if ((!parameter_block.xbpb.root_dir_start_high) &&
(parameter_block.xbpb.root_dir_start_low < 2))
{ /* added 3 feb 2004 - Win98se dangerous problem fixed */
printf("Operating system did not initialize root directory position\n");
printf("for FAT32. Changed to use the very first data clusters now.\n");
parameter_block.xbpb.root_dir_start_low = 2; /* first data cluster is #2 */
}
} /* FAT32 check */
if ((parameter_block.bpb.sectors_per_fat > 0) && (parameter_block.bpb.sectors_per_fat <= 12))
{
if (param.fat_type == FAT32)
printf("G.D.P.: Reverting from FAT32 to FAT12 mode! FAT1x size nonzero: %u\n",
parameter_block.bpb.sectors_per_fat);
if ((debug_prog==TRUE) /* && (param.fat_type != FAT12) */ )
printf("[DEBUG] G.D.P.: FAT12 detected (by FAT size rule, size %u)\n",
parameter_block.bpb.sectors_per_fat);
param.fat_type = FAT12; /* Get_Device_Parameters: 1..12 FAT1x sectors */
}
else
{
if ((parameter_block.bpb.sectors_per_fat > 12) &&
(parameter_block.bpb.sectors_per_fat < 512)) /* max useful would be 256 */
{
if (param.fat_type == FAT32)
printf("G.D.P.: Reverting from FAT32 to FAT16 mode! FAT1x size nonzero: %u\n",
parameter_block.bpb.sectors_per_fat);
if ((debug_prog==TRUE) /* && (param.fat_type != FAT16) */ )
printf("[DEBUG] G.D.P.: FAT16 detected (by FAT size rule, size %u)\n",
parameter_block.bpb.sectors_per_fat);
param.fat_type = FAT16; /* Get_Device_Parameters: > 12 FAT1x sectors */
}
else
if (param.fat_type != FAT32)
{
printf("BUG in Get_Device_Parameters Failed to detect FAT32 but FAT1x FAT size is %u!\n",
parameter_block.bpb.sectors_per_fat);
param.fat_type = FAT32; /* Get_Device_Parameters: 0 FAT1x sectors */
}
} /* FAT1x size 0 or 13..64k sectors */
if ((param.fat_type == FAT32) ||
(parameter_block.bpb.sectors_per_fat == 0) ||
(parameter_block.bpb.root_directory_entries == 0))
{
if ( (parameter_block.bpb.sectors_per_fat != 0) ||
(parameter_block.bpb.root_directory_entries != 0) )
{
printf("BUG: FAT32 but FAT1x FAT size %u or FAT1x root dir size %u nonzero! Changing.\n",
parameter_block.bpb.sectors_per_fat, parameter_block.bpb.root_directory_entries);
parameter_block.bpb.sectors_per_fat = 0; /* G.D.P.: if one 0, other be 0 and type FAT32 */
parameter_block.bpb.root_directory_entries = 0; /* G.D.P.: if one 0, other be 0 and type FAT32 */
}
if (param.fat_type != FAT32)
printf("BUG: FAT1x size 0 or root dir size 0 but FAT32 not yet flagged. Fixing.\n");
param.fat_type = FAT32; /* G.D.P.: if one 0, other be 0 and type FAT32 */
} /* FAT32 */
else
{
if (parameter_block.bpb.sectors_per_fat == 0)
printf("BUG: FAT1x but 0 sectors per FAT1x fat! Changing to FAT32.\n");
if (parameter_block.bpb.root_directory_entries == 0)
printf("BUG: FAT1x but 0 FAT1x root dir entries! Changing to FAT32.\n");
if ( (parameter_block.bpb.sectors_per_fat == 0) ||
(parameter_block.bpb.root_directory_entries == 0) )
{
parameter_block.bpb.sectors_per_fat = 0; /* G.D.P. not FAT1x: if one 0, other be 0 and type FAT32 */
parameter_block.bpb.root_directory_entries = 0; /* G.D.P. not FAT1x: if one 0, other be 0 and type FAT32 */
param.fat_type = FAT32; /* FAT1x FAT or root dir: size 0 in Get_Device_Parameters */
}
} /* not FAT32 (or maybe FAT32 but not yet detected...) */
if (error_code!=0)
printf("Get_Device_Parameters() default BPB readout ERROR: %ul,\n", error_code);
#if 0
if (debug_prog==TRUE)
printf("[DEBUG] Exit Get_Device_Parameters() function\n");
#endif
}
/* formerly called Set_DPB_Access_Flag, this function */
/* forces re-creation of DPB when drive is next accessed */
void Force_Drive_Recheck()
{
regs.h.ah = 0x0d; /* reset disk system of DOS, flush buffers */
intdos(®s, ®s);
regs.h.ah = 0x32; /* force re-reading of boot sector (not useful for FAT1x?) */
regs.h.dl = param.drive_number + 1;
intdosx(®s, ®s, &sregs); /* DS:BX is DPB pointer on return - ignored! */
segread(&sregs); /* restore defaults */
if (param.fat_type == FAT32)
{
/* structure is DW size 0x18, DW 0, DD function (2 "force media change"),
* plus 0x10 unused bytes */
union REGS r;
struct SREGS s;
char some_struc[0x20];
memset(some_struc,0, 0x20);
some_struc[0] = 0x18;
some_struc[4] = 2;
r.x.ax = 0x7304; /* get/set FAT32 flag stuff */
s.es = FP_SEG(&some_struc[0]);
r.x.di = FP_OFF(&some_struc[0]);
r.h.dl = param.drive_number+1; /* A: is 1 etc. */
r.x.cx = 0x18; /* structure size */
intdosx(&r, &r, &s);
segread(&sregs); /* restore defaults */
} /* FAT32 */
}
/*
* Do everything to find a correct BPB and stuff.
* Added extra sanity checks in 0.91e and later
* *** FAT type detection improved, too. ***
* Added alignment feature in 0.91m -ea
*/
void Set_Hard_Drive_Media_Parameters(int alignment)
{
/* int index; */
/* int result; */
int i;
unsigned long number_of_sectors;
param.media_type = HD;
param.fat_type = FAT12; /* Set_Hard_Drive_Media_Parameters before Get_Device_Parameters */
Get_Device_Parameters(); /* read the default BPB etc., find FAT type */
if ((param.fat_type == FAT32) && (alignment > 1)) /* new feature in 0.91m */
{
unsigned int mask = 3;
if (parameter_block.bpb.number_of_fats & 1)
{
printf(" Odd number of FAT32 copies: Changing alignment method.\n");
mask = 7;
} /* > 2 FATs will cause failure later, but at least THIS can handle it */
if (parameter_block.bpb.reserved_sectors & 7) /* should not happen */
{
unsigned int howmuch = 8 - (parameter_block.bpb.reserved_sectors & 7);
if (debug_prog==TRUE)
printf("[DEBUG] /A alignment to n*4k: growing reserved area by %u sectors.\n",
howmuch);
parameter_block.bpb.reserved_sectors += howmuch;
}
if (parameter_block.xbpb.fat_size_low & mask) /* does happen quite often */
{
unsigned int howmuch = 1 + mask - (parameter_block.xbpb.fat_size_low & mask);
if (debug_prog==TRUE)
printf("[DEBUG] /A alignment to n*4k: growing each FAT32 by %u sectors.\n",
howmuch);
parameter_block.xbpb.fat_size_low += howmuch;
if (parameter_block.xbpb.fat_size_low < 8) /* good to check, but... */
parameter_block.xbpb.fat_size_high++;
/* ... only FreeDOS and Win ME/XP can use > (16MB-64kB) per FAT FATs */
/* (And only FreeDOS and Win XP (and ME?) can do 64k cluster sizes!) */
}
} /* alignment to make metadata 8*n sectors big */
if (parameter_block.bpb.total_sectors!=0) /* 16bit value? */
{
number_of_sectors = parameter_block.bpb.total_sectors;
}
else /* else 32bit value */
{
number_of_sectors = parameter_block.bpb.large_sector_count_high;
number_of_sectors = number_of_sectors<<16;
number_of_sectors += parameter_block.bpb.large_sector_count_low;
if (number_of_sectors == 0)
{
printf("Neither 16bit nor 32bit volume size given - aborting.\n");
exit(1);
}
}
if (parameter_block.bpb.bytes_per_sector != 512) /* SANITY CHECK */
{
printf("Not 512 bytes per sector - aborting.\n");
exit(1);
}
if ((parameter_block.bpb.number_of_fats<1) ||
(parameter_block.bpb.number_of_fats>2)) /* SANITY CHECK */
{
printf("Not 1 or 2 FATs but %hu - aborting.\n",
parameter_block.bpb.number_of_fats);
exit(1);
}
i = parameter_block.bpb.sectors_per_cluster;
if (i == 128)
{
printf("WARNING: Cluster size is 64k. Will not work with Win9x or MS DOS!\n");
printf(" Windows NT series (NT, 2000, XP, 2003/.Net) and Windows ME do support 64k\n");
printf(" cluster size, as does FreeDOS. All trademarks are owned by their owners.\n");
/* Examples of systems which do support 64k cluster size: FreeDOS and WinXP */
}
while ((i < 128) && (i != 0))
i += i; /* shift left until 64k / cluster */
if (i != 128) /* SANITY CHECK */
{
i = parameter_block.bpb.sectors_per_cluster;
printf("FATAL: Cluster size not 0.5, 1, 2, 4, 8, 16, 32 or 64k but %d.%dk!\n",
i/2, (i & 1) ? 5 : 0);
exit(1);
}
Get_FS_Info(); /* create FS info from BPB */
/* calculated things like FAT and cluster size in OLD versions (< 0.91j?) */
/* start_fat_sector, number_fat_sectors, start_root_dir_sect (even FAT32) */
/* number_root_dir_sect (even FAT32), total_clusters, all based on BPB */
/* Can modify root_dir_entries in BPB (FAT1x rounding), sets 0 for FAT32. */
/* RUNS AGAIN when called from Create_File_System ... */
if (file_sys_info.total_clusters > 65525UL)
{
if (param.fat_type!=FAT32)
{
printf(" Almost formatted FAT32 drive as FAT1x, phew...\n");
param.fat_type = FAT32; /* Set_Hard_Drive_Media_Parameters cluster count fixup */
}
if (file_sys_info.total_clusters > (0x3fbc000UL-2))
{
printf("WARNING: FAT32 size will be more than (16 MB - 64 kB)!\n");
printf(" Windows 95/98/(ME?) will not be able to mount that drive as VFAT.\n");
printf(" Newer versions and FreeDOS will mount but will be inefficient.\n");
printf(" All trademarks are owned by their owners.\n");
}
}
else
{
if (param.fat_type==FAT32)
printf(" Almost formatted FAT1x drive as FAT32, phew...\n");
param.fat_type = (file_sys_info.total_clusters>=4085UL) /* only if misdetected FAT32 */
? FAT16 : FAT12; /* Set_Hard_Drive_Media_Parameters cluster count fixup */
}
/* param.size = number_of_sectors/2048; unused? */
/* space calculations improved 0.91h */
drive_statistics.sect_total_disk_space = number_of_sectors;
/* changed 0.91i */
drive_statistics.sect_available_on_disk = file_sys_info.total_clusters
* parameter_block.bpb.sectors_per_cluster;
if (param.fat_type == FAT32)
drive_statistics.sect_available_on_disk -= file_sys_info.number_root_dir_sect;
/* remove partial cluster after the last real cluster! - 0.91h */
{
unsigned long slack = drive_statistics.sect_available_on_disk;
drive_statistics.sect_available_on_disk &=
~( (unsigned long) ( parameter_block.bpb.sectors_per_cluster - 1 ) );
slack -= drive_statistics.sect_available_on_disk;
if ( (debug_prog==TRUE) && (slack != 0) )
printf("[DEBUG] Partition contains %lu unused sectors after last cluster.\n",
slack);
} /* slack removal */
drive_statistics.bytes_per_sector = parameter_block.bpb.bytes_per_sector;
/* now "total" is "diskimage" size and "avail" is "free in data area" size. */
drive_statistics.sect_in_each_allocation_unit =
parameter_block.bpb.sectors_per_cluster;
/* 0.91k - already tell the user what she has to expect size-wise */
if (drive_statistics.bytes_per_sector == 512) {
unsigned long roughsize;
char sizeunit = 'k';
roughsize = drive_statistics.sect_available_on_disk >> 1;
if (roughsize > 9999) {
roughsize += 512;
roughsize >>= 10;
sizeunit = 'M';
}
if (roughsize > 9999) { /* limit for LBA48 aware BIOS + LBA32 DOS: 2 TB */
roughsize += 512; /* limit for LBA28 BIOS: 128 GB */
roughsize >>= 10;
sizeunit = 'G'; /* Win9x has max 16 MB / FAT and 32k / clust: 128 GB */
}
printf(" Disk size: %lu %cbytes, ", roughsize, sizeunit); /* changed 0.91p */
} else printf(" Warning: Disk has nonstandard sector size, "); /* same */
printf("FAT%d. ***\n", /* changed 0.91p */
(param.fat_type==FAT32) ? 32 : ( (param.fat_type==FAT16) ? 16 : 12 ) );
}
|