2011-12-01 17:20:52 +00:00
|
|
|
/*
|
2011-12-05 11:36:02 +00:00
|
|
|
* Rufus: The Reliable USB Formatting Utility
|
2011-12-01 17:20:52 +00:00
|
|
|
* Formatting function calls
|
2013-02-01 22:59:46 +00:00
|
|
|
* Copyright © 2007-2009 Tom Thornhill/Ridgecrop
|
2014-01-05 01:39:41 +00:00
|
|
|
* Copyright © 2011-2014 Pete Batard <pete@akeo.ie>
|
2011-12-01 17:20:52 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#ifdef _CRTDBG_MAP_ALLOC
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <windowsx.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <process.h>
|
2011-12-01 17:54:35 +00:00
|
|
|
#include <stddef.h>
|
2012-02-21 00:08:31 +00:00
|
|
|
#include <ctype.h>
|
2012-05-16 11:18:48 +00:00
|
|
|
#include <locale.h>
|
2011-12-01 17:20:52 +00:00
|
|
|
|
|
|
|
#include "msapi_utf8.h"
|
|
|
|
#include "rufus.h"
|
|
|
|
#include "resource.h"
|
|
|
|
#include "br.h"
|
|
|
|
#include "fat16.h"
|
|
|
|
#include "fat32.h"
|
2012-02-03 18:19:50 +00:00
|
|
|
#include "ntfs.h"
|
2011-12-14 20:48:20 +00:00
|
|
|
#include "partition_info.h"
|
2011-12-01 17:20:52 +00:00
|
|
|
#include "file.h"
|
2014-01-05 01:39:41 +00:00
|
|
|
#include "drive.h"
|
2011-12-01 17:20:52 +00:00
|
|
|
#include "format.h"
|
2011-12-06 02:23:28 +00:00
|
|
|
#include "badblocks.h"
|
2013-10-15 21:58:27 +00:00
|
|
|
#include "localization.h"
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2011-12-01 17:54:35 +00:00
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
|
|
|
DWORD FormatStatus;
|
2011-12-06 23:35:55 +00:00
|
|
|
badblocks_report report;
|
2011-12-09 01:39:13 +00:00
|
|
|
static float format_percent = 0.0f;
|
|
|
|
static int task_number = 0;
|
2013-07-08 23:14:29 +00:00
|
|
|
extern const int nb_steps[FS_MAX];
|
2013-10-31 22:59:53 +00:00
|
|
|
extern uint32_t dur_mins, dur_secs;
|
2011-12-09 12:57:32 +00:00
|
|
|
static int fs_index = 0;
|
2014-01-31 02:51:28 +00:00
|
|
|
BOOL force_large_fat32 = FALSE, enable_ntfs_compression = FALSE;
|
2013-09-22 02:28:56 +00:00
|
|
|
static BOOL WritePBR(HANDLE hLogicalDrive);
|
2011-12-01 17:54:35 +00:00
|
|
|
|
2013-12-20 02:59:44 +00:00
|
|
|
/*
|
|
|
|
* Convert the fmifs outputs messages (that use an OEM code page) to UTF-8
|
|
|
|
*/
|
|
|
|
static void OutputUTF8Message(const char* src)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char *dst = NULL;
|
|
|
|
wchar_t* wdst = NULL;
|
|
|
|
|
|
|
|
if (src == NULL)
|
|
|
|
goto out;
|
|
|
|
len = (int)safe_strlen(src);
|
|
|
|
while ((len > 0) && ((src[len-1] == 0x0A) || (src[len-1] == 0x0D) || (src[len-1] == ' ')))
|
|
|
|
len--;
|
|
|
|
if (len == 0)
|
|
|
|
goto out;
|
|
|
|
|
2014-01-21 10:45:49 +00:00
|
|
|
len = MultiByteToWideChar(CP_OEMCP, 0, src, len, NULL, 0);
|
|
|
|
if (len == 0)
|
|
|
|
goto out;
|
|
|
|
wdst = (wchar_t*)calloc(len+1, sizeof(wchar_t));
|
|
|
|
if ((wdst == NULL) || (MultiByteToWideChar(CP_OEMCP, 0, src, len, wdst, len+1) == 0))
|
|
|
|
goto out;
|
|
|
|
dst = wchar_to_utf8(wdst);
|
|
|
|
if (dst == NULL)
|
|
|
|
goto out;
|
|
|
|
uprintf("%s", dst);
|
2013-12-20 02:59:44 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
safe_free(dst);
|
|
|
|
safe_free(wdst);
|
|
|
|
}
|
|
|
|
|
2011-12-01 17:20:52 +00:00
|
|
|
/*
|
|
|
|
* FormatEx callback. Return FALSE to halt operations
|
|
|
|
*/
|
|
|
|
static BOOLEAN __stdcall FormatExCallback(FILE_SYSTEM_CALLBACK_COMMAND Command, DWORD Action, PVOID pData)
|
|
|
|
{
|
|
|
|
DWORD* percent;
|
|
|
|
if (IS_ERROR(FormatStatus))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch(Command) {
|
|
|
|
case FCC_PROGRESS:
|
|
|
|
percent = (DWORD*)pData;
|
2013-12-20 02:59:44 +00:00
|
|
|
PrintStatus(0, FALSE, MSG_217, 1.0f * (*percent));
|
2011-12-09 12:57:32 +00:00
|
|
|
UpdateProgress(OP_FORMAT, 1.0f * (*percent));
|
2011-12-01 17:20:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_STRUCTURE_PROGRESS: // No progress on quick format
|
2014-10-31 19:03:51 +00:00
|
|
|
if (task_number < nb_steps[fs_index] - 1) {
|
|
|
|
PrintStatus(0, TRUE, MSG_218, ++task_number, nb_steps[fs_index]);
|
|
|
|
format_percent += 100.0f / (1.0f * nb_steps[fs_index]);
|
|
|
|
UpdateProgress(OP_CREATE_FS, format_percent);
|
|
|
|
}
|
2011-12-01 17:20:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_DONE:
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_218, nb_steps[fs_index], nb_steps[fs_index]);
|
2011-12-09 12:57:32 +00:00
|
|
|
UpdateProgress(OP_CREATE_FS, 100.0f);
|
2011-12-01 17:20:52 +00:00
|
|
|
if(*(BOOLEAN*)pData == FALSE) {
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("Error while formatting");
|
2011-12-01 17:20:52 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_GEN_FAILURE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FCC_DONE_WITH_STRUCTURE: // We get this message when formatting Small FAT16
|
|
|
|
// pData Seems to be a struct with at least one (32 BIT!!!) string pointer to the size in MB
|
2012-05-30 23:49:28 +00:00
|
|
|
// uprintf("Done with that sort of thing: Action=%d pData=%0p\n", Action, pData);
|
2011-12-13 02:10:27 +00:00
|
|
|
// /!\ THE FOLLOWING ONLY WORKS ON VISTA OR LATER - DO NOT ENABLE ON XP!
|
|
|
|
// DumpBufferHex(pData, 8);
|
|
|
|
// uprintf("Volume size: %s MB\n", (char*)(LONG_PTR)(*(ULONG32*)pData));
|
2011-12-01 17:20:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_INCOMPATIBLE_FILE_SYSTEM:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("Incompatible File System");
|
2011-12-04 19:47:27 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_INCOMPATIBLE_FS);
|
2011-12-01 17:20:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_ACCESS_DENIED:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("Access denied");
|
2011-12-01 17:20:52 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_ACCESS_DENIED;
|
|
|
|
break;
|
|
|
|
case FCC_MEDIA_WRITE_PROTECTED:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("Media is write protected");
|
2011-12-01 17:20:52 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_PROTECT;
|
|
|
|
break;
|
|
|
|
case FCC_VOLUME_IN_USE:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("Volume is in use");
|
2011-12-01 17:20:52 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_DEVICE_IN_USE;
|
|
|
|
break;
|
2014-03-29 00:17:41 +00:00
|
|
|
case FCC_DEVICE_NOT_READY:
|
|
|
|
uprintf("The device is not ready");
|
2014-05-19 22:25:00 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NOT_READY;
|
2014-04-02 21:47:35 +00:00
|
|
|
break;
|
2011-12-01 17:20:52 +00:00
|
|
|
case FCC_CANT_QUICK_FORMAT:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("Cannot quick format this volume");
|
2011-12-04 19:47:27 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_CANT_QUICK_FORMAT);
|
2011-12-01 17:20:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_BAD_LABEL:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("Bad label");
|
2011-12-01 17:20:52 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_LABEL_TOO_LONG;
|
|
|
|
break;
|
|
|
|
case FCC_OUTPUT:
|
2013-12-20 02:59:44 +00:00
|
|
|
OutputUTF8Message(((PTEXTOUTPUT)pData)->Output);
|
2011-12-01 17:20:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_CLUSTER_SIZE_TOO_BIG:
|
|
|
|
case FCC_CLUSTER_SIZE_TOO_SMALL:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("Unsupported cluster size");
|
2011-12-04 19:47:27 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_INVALID_CLUSTER_SIZE);
|
2011-12-01 17:20:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_VOLUME_TOO_BIG:
|
|
|
|
case FCC_VOLUME_TOO_SMALL:
|
2014-04-02 21:47:35 +00:00
|
|
|
uprintf("Volume is too %s", (Command == FCC_VOLUME_TOO_BIG)?"big":"small");
|
2011-12-04 19:47:27 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_INVALID_VOLUME_SIZE);
|
2014-04-02 21:47:35 +00:00
|
|
|
break;
|
2011-12-01 17:20:52 +00:00
|
|
|
case FCC_NO_MEDIA_IN_DRIVE:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("No media in drive");
|
2011-12-01 17:20:52 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NO_MEDIA_IN_DRIVE;
|
|
|
|
break;
|
|
|
|
default:
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("FormatExCallback: Received unhandled command 0x02%X - aborting", Command);
|
2011-12-01 17:20:52 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (!IS_ERROR(FormatStatus));
|
|
|
|
}
|
|
|
|
|
2012-03-09 01:38:52 +00:00
|
|
|
/*
|
|
|
|
* Chkdsk callback. Return FALSE to halt operations
|
|
|
|
*/
|
|
|
|
static BOOLEAN __stdcall ChkdskCallback(FILE_SYSTEM_CALLBACK_COMMAND Command, DWORD Action, PVOID pData)
|
|
|
|
{
|
|
|
|
DWORD* percent;
|
|
|
|
if (IS_ERROR(FormatStatus))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch(Command) {
|
|
|
|
case FCC_PROGRESS:
|
|
|
|
case FCC_CHECKDISK_PROGRESS:
|
|
|
|
percent = (DWORD*)pData;
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, FALSE, MSG_219, *percent);
|
2012-03-09 01:38:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_DONE:
|
|
|
|
if(*(BOOLEAN*)pData == FALSE) {
|
|
|
|
uprintf("Error while checking disk.\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_GEN_FAILURE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FCC_UNKNOWN1A:
|
|
|
|
case FCC_DONE_WITH_STRUCTURE:
|
|
|
|
// Silence these specific calls
|
|
|
|
break;
|
|
|
|
case FCC_INCOMPATIBLE_FILE_SYSTEM:
|
|
|
|
uprintf("Incompatible File System\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_INCOMPATIBLE_FS);
|
|
|
|
break;
|
|
|
|
case FCC_ACCESS_DENIED:
|
|
|
|
uprintf("Access denied\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_ACCESS_DENIED;
|
|
|
|
break;
|
|
|
|
case FCC_MEDIA_WRITE_PROTECTED:
|
|
|
|
uprintf("Media is write protected\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_PROTECT;
|
|
|
|
break;
|
|
|
|
case FCC_VOLUME_IN_USE:
|
|
|
|
uprintf("Volume is in use\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_DEVICE_IN_USE;
|
|
|
|
break;
|
|
|
|
case FCC_OUTPUT:
|
2013-12-20 02:59:44 +00:00
|
|
|
OutputUTF8Message(((PTEXTOUTPUT)pData)->Output);
|
2012-03-09 01:38:52 +00:00
|
|
|
break;
|
|
|
|
case FCC_NO_MEDIA_IN_DRIVE:
|
|
|
|
uprintf("No media in drive\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NO_MEDIA_IN_DRIVE;
|
|
|
|
break;
|
2012-12-13 23:50:23 +00:00
|
|
|
case FCC_READ_ONLY_MODE:
|
|
|
|
uprintf("Media has been switched to read-only - Leaving checkdisk\n");
|
|
|
|
break;
|
2012-03-09 01:38:52 +00:00
|
|
|
default:
|
|
|
|
uprintf("ChkdskExCallback: received unhandled command %X\n", Command);
|
|
|
|
// Assume the command isn't an error
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (!IS_ERROR(FormatStatus));
|
|
|
|
}
|
|
|
|
|
2012-02-15 21:55:41 +00:00
|
|
|
/*
|
|
|
|
* Converts an UTF-16 label to a valid FAT/NTFS one
|
|
|
|
*/
|
|
|
|
static void ToValidLabel(WCHAR* name, BOOL bFAT)
|
|
|
|
{
|
|
|
|
size_t i, j, k;
|
|
|
|
BOOL found;
|
2013-10-26 23:05:54 +00:00
|
|
|
WCHAR unauthorized[] = L"*?,;:/\\|+=<>[]\"";
|
2013-09-22 02:54:50 +00:00
|
|
|
WCHAR to_underscore[] = L"\t.";
|
2012-02-15 21:55:41 +00:00
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i=0, k=0; i<wcslen(name); i++) {
|
|
|
|
if (bFAT) { // NTFS does allows all the FAT unauthorized above
|
|
|
|
found = FALSE;
|
|
|
|
for (j=0; j<wcslen(unauthorized); j++) {
|
|
|
|
if (name[i] == unauthorized[j]) {
|
|
|
|
found = TRUE; break;
|
|
|
|
}
|
|
|
|
}
|
2012-02-21 19:46:28 +00:00
|
|
|
// A FAT label that contains extended chars will be rejected
|
|
|
|
if (name[i] >= 0x80) {
|
|
|
|
name[k++] = '_';
|
|
|
|
found = TRUE;
|
|
|
|
}
|
2012-02-15 21:55:41 +00:00
|
|
|
if (found) continue;
|
|
|
|
}
|
|
|
|
found = FALSE;
|
|
|
|
for (j=0; j<wcslen(to_underscore); j++) {
|
|
|
|
if (name[i] == to_underscore[j]) {
|
|
|
|
name[k++] = '_';
|
|
|
|
found = TRUE; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found) continue;
|
2012-02-21 00:08:31 +00:00
|
|
|
name[k++] = bFAT?toupper(name[i]):name[i];
|
2012-02-15 21:55:41 +00:00
|
|
|
}
|
|
|
|
name[k] = 0;
|
|
|
|
if (bFAT) {
|
|
|
|
name[11] = 0;
|
2012-02-21 19:46:28 +00:00
|
|
|
for (i=0, j=0; name[i]!=0; i++)
|
|
|
|
if (name[i] == '_') j++;
|
|
|
|
if (i<2*j) {
|
|
|
|
// If the final label is mostly underscore, use the proposed label
|
2013-06-20 14:41:22 +00:00
|
|
|
uprintf("FAT label is mostly underscores. Using '%s' label instead.\n", SelectedDrive.proposed_label);
|
2012-02-21 19:46:28 +00:00
|
|
|
for(i=0; SelectedDrive.proposed_label[i]!=0; i++)
|
|
|
|
name[i] = SelectedDrive.proposed_label[i];
|
|
|
|
name[i] = 0;
|
|
|
|
}
|
2012-02-15 21:55:41 +00:00
|
|
|
} else {
|
|
|
|
name[32] = 0;
|
|
|
|
}
|
2012-02-21 19:46:28 +00:00
|
|
|
|
|
|
|
// Needed for disk by label isolinux.cfg workaround
|
2012-02-21 00:08:31 +00:00
|
|
|
wchar_to_utf8_no_alloc(name, iso_report.usb_label, sizeof(iso_report.usb_label));
|
2012-02-15 21:55:41 +00:00
|
|
|
}
|
|
|
|
|
2012-11-03 17:40:33 +00:00
|
|
|
/*
|
|
|
|
* 28.2 CALCULATING THE VOLUME SERIAL NUMBER
|
|
|
|
*
|
|
|
|
* For example, say a disk was formatted on 26 Dec 95 at 9:55 PM and 41.94
|
|
|
|
* seconds. DOS takes the date and time just before it writes it to the
|
|
|
|
* disk.
|
|
|
|
*
|
|
|
|
* Low order word is calculated: Volume Serial Number is:
|
|
|
|
* Month & Day 12/26 0c1ah
|
2013-06-20 14:41:22 +00:00
|
|
|
* Sec & Hundredths 41:94 295eh 3578:1d02
|
2012-11-03 17:40:33 +00:00
|
|
|
* -----
|
|
|
|
* 3578h
|
|
|
|
*
|
|
|
|
* High order word is calculated:
|
|
|
|
* Hours & Minutes 21:55 1537h
|
|
|
|
* Year 1995 07cbh
|
|
|
|
* -----
|
|
|
|
* 1d02h
|
|
|
|
*/
|
|
|
|
static DWORD GetVolumeID(void)
|
|
|
|
{
|
|
|
|
SYSTEMTIME s;
|
|
|
|
DWORD d;
|
|
|
|
WORD lo,hi,tmp;
|
|
|
|
|
|
|
|
GetLocalTime(&s);
|
|
|
|
|
|
|
|
lo = s.wDay + (s.wMonth << 8);
|
|
|
|
tmp = (s.wMilliseconds/10) + (s.wSecond << 8);
|
|
|
|
lo += tmp;
|
|
|
|
|
|
|
|
hi = s.wMinute + (s.wHour << 8);
|
|
|
|
hi += s.wYear;
|
|
|
|
|
|
|
|
d = lo + (hi << 16);
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the Microsoft calculation from FATGEN
|
|
|
|
*
|
|
|
|
* DWORD RootDirSectors = 0;
|
|
|
|
* DWORD TmpVal1, TmpVal2, FATSz;
|
|
|
|
*
|
|
|
|
* TmpVal1 = DskSize - (ReservedSecCnt + RootDirSectors);
|
|
|
|
* TmpVal2 = (256 * SecPerClus) + NumFATs;
|
|
|
|
* TmpVal2 = TmpVal2 / 2;
|
|
|
|
* FATSz = (TmpVal1 + (TmpVal2 - 1)) / TmpVal2;
|
|
|
|
*
|
|
|
|
* return( FatSz );
|
|
|
|
*/
|
|
|
|
static DWORD GetFATSizeSectors(DWORD DskSize, DWORD ReservedSecCnt, DWORD SecPerClus, DWORD NumFATs, DWORD BytesPerSect)
|
|
|
|
{
|
|
|
|
ULONGLONG Numerator, Denominator;
|
|
|
|
ULONGLONG FatElementSize = 4;
|
|
|
|
ULONGLONG FatSz;
|
|
|
|
|
|
|
|
// This is based on
|
|
|
|
// http://hjem.get2net.dk/rune_moeller_barnkob/filesystems/fat.html
|
|
|
|
Numerator = FatElementSize * (DskSize - ReservedSecCnt);
|
|
|
|
Denominator = (SecPerClus * BytesPerSect) + (FatElementSize * NumFATs);
|
|
|
|
FatSz = Numerator / Denominator;
|
|
|
|
// round up
|
|
|
|
FatSz += 1;
|
|
|
|
|
|
|
|
return (DWORD)FatSz;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Large FAT32 volume formatting from fat32format by Tom Thornhill
|
|
|
|
* http://www.ridgecrop.demon.co.uk/index.htm?fat32format.htm
|
|
|
|
*/
|
|
|
|
static BOOL FormatFAT32(DWORD DriveIndex)
|
|
|
|
{
|
|
|
|
BOOL r = FALSE;
|
2013-09-22 02:54:50 +00:00
|
|
|
DWORD i, LastRefresh = 0;
|
2012-11-03 17:40:33 +00:00
|
|
|
HANDLE hLogicalVolume;
|
|
|
|
DWORD cbRet;
|
|
|
|
DISK_GEOMETRY dgDrive;
|
2014-03-29 00:17:41 +00:00
|
|
|
BYTE geometry_ex[256]; // DISK_GEOMETRY_EX is variable size
|
|
|
|
PDISK_GEOMETRY_EX xdgDrive = (PDISK_GEOMETRY_EX)(void*)geometry_ex;
|
2012-11-03 17:40:33 +00:00
|
|
|
PARTITION_INFORMATION piDrive;
|
2013-11-23 22:39:54 +00:00
|
|
|
PARTITION_INFORMATION_EX xpiDrive;
|
2012-11-03 17:40:33 +00:00
|
|
|
// Recommended values
|
|
|
|
DWORD ReservedSectCount = 32;
|
|
|
|
DWORD NumFATs = 2;
|
|
|
|
DWORD BackupBootSect = 6;
|
|
|
|
DWORD VolumeId = 0; // calculated before format
|
2013-04-07 23:10:58 +00:00
|
|
|
char* VolumeName = NULL;
|
|
|
|
WCHAR wLabel[64], *wVolumeName = NULL;
|
2012-11-03 17:40:33 +00:00
|
|
|
DWORD BurstSize = 128; // Zero in blocks of 64K typically
|
|
|
|
|
|
|
|
// Calculated later
|
|
|
|
DWORD FatSize = 0;
|
|
|
|
DWORD BytesPerSect = 0;
|
|
|
|
DWORD ClusterSize = 0;
|
|
|
|
DWORD SectorsPerCluster = 0;
|
|
|
|
DWORD TotalSectors = 0;
|
|
|
|
DWORD SystemAreaSize = 0;
|
|
|
|
DWORD UserAreaSize = 0;
|
|
|
|
ULONGLONG qTotalSectors = 0;
|
|
|
|
|
|
|
|
// Structures to be written to the disk
|
|
|
|
FAT_BOOTSECTOR32 *pFAT32BootSect = NULL;
|
|
|
|
FAT_FSINFO *pFAT32FsInfo = NULL;
|
|
|
|
DWORD *pFirstSectOfFat = NULL;
|
|
|
|
BYTE* pZeroSect = NULL;
|
|
|
|
char VolId[12] = "NO NAME ";
|
|
|
|
|
|
|
|
// Debug temp vars
|
|
|
|
ULONGLONG FatNeeded, ClusterCount;
|
|
|
|
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_222, "Large FAT32");
|
2012-11-03 17:40:33 +00:00
|
|
|
VolumeId = GetVolumeID();
|
|
|
|
|
2013-06-25 17:39:07 +00:00
|
|
|
// Open the drive and lock it
|
|
|
|
hLogicalVolume = GetLogicalHandle(DriveIndex, TRUE, TRUE);
|
2012-11-03 17:40:33 +00:00
|
|
|
if (IS_ERROR(FormatStatus)) goto out;
|
2013-06-25 01:55:25 +00:00
|
|
|
if ((hLogicalVolume == INVALID_HANDLE_VALUE) || (hLogicalVolume == NULL))
|
|
|
|
die("Invalid logical volume handle\n", ERROR_INVALID_HANDLE);
|
2012-11-03 17:40:33 +00:00
|
|
|
|
2013-06-25 17:39:07 +00:00
|
|
|
// Try to disappear the volume while we're formatting it
|
|
|
|
UnmountVolume(hLogicalVolume);
|
2012-11-03 17:40:33 +00:00
|
|
|
|
|
|
|
// Work out drive params
|
|
|
|
if (!DeviceIoControl (hLogicalVolume, IOCTL_DISK_GET_DRIVE_GEOMETRY, NULL, 0, &dgDrive,
|
|
|
|
sizeof(dgDrive), &cbRet, NULL)) {
|
2014-03-29 00:17:41 +00:00
|
|
|
if (!DeviceIoControl (hLogicalVolume, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, NULL, 0, xdgDrive,
|
|
|
|
sizeof(geometry_ex), &cbRet, NULL)) {
|
|
|
|
uprintf("IOCTL_DISK_GET_DRIVE_GEOMETRY error: %s\n", WindowsErrorString());
|
|
|
|
die("Failed to get device geometry (both regular and _ex)\n", ERROR_NOT_SUPPORTED);
|
|
|
|
}
|
|
|
|
memcpy(&dgDrive, &xdgDrive->Geometry, sizeof(dgDrive));
|
2012-11-03 17:40:33 +00:00
|
|
|
}
|
2014-08-03 18:34:01 +00:00
|
|
|
if (dgDrive.BytesPerSector < 512)
|
|
|
|
dgDrive.BytesPerSector = 512;
|
2012-11-03 17:40:33 +00:00
|
|
|
if (IS_ERROR(FormatStatus)) goto out;
|
|
|
|
if (!DeviceIoControl (hLogicalVolume, IOCTL_DISK_GET_PARTITION_INFO, NULL, 0, &piDrive,
|
|
|
|
sizeof(piDrive), &cbRet, NULL)) {
|
2013-11-23 22:39:54 +00:00
|
|
|
if (!DeviceIoControl (hLogicalVolume, IOCTL_DISK_GET_PARTITION_INFO_EX, NULL, 0, &xpiDrive,
|
|
|
|
sizeof(xpiDrive), &cbRet, NULL)) {
|
2014-03-29 00:17:41 +00:00
|
|
|
uprintf("IOCTL_DISK_GET_PARTITION_INFO error: %s\n", WindowsErrorString());
|
|
|
|
die("Failed to get partition info (both regular and _ex)\n", ERROR_NOT_SUPPORTED);
|
2013-11-23 22:39:54 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 00:17:41 +00:00
|
|
|
memset(&piDrive, 0, sizeof(piDrive));
|
2013-11-23 22:39:54 +00:00
|
|
|
piDrive.StartingOffset.QuadPart = xpiDrive.StartingOffset.QuadPart;
|
|
|
|
piDrive.PartitionLength.QuadPart = xpiDrive.PartitionLength.QuadPart;
|
|
|
|
piDrive.HiddenSectors = (DWORD) (xpiDrive.StartingOffset.QuadPart / dgDrive.BytesPerSector);
|
2012-11-03 17:40:33 +00:00
|
|
|
}
|
2014-03-29 00:17:41 +00:00
|
|
|
if (IS_ERROR(FormatStatus)) goto out;
|
2012-11-03 17:40:33 +00:00
|
|
|
|
|
|
|
BytesPerSect = dgDrive.BytesPerSector;
|
|
|
|
|
|
|
|
// Checks on Disk Size
|
|
|
|
qTotalSectors = piDrive.PartitionLength.QuadPart/dgDrive.BytesPerSector;
|
|
|
|
// Low end limit - 65536 sectors
|
|
|
|
if (qTotalSectors < 65536) {
|
|
|
|
// Most FAT32 implementations would probably mount this volume just fine,
|
|
|
|
// but the spec says that we shouldn't do this, so we won't
|
|
|
|
die("This drive is too small for FAT32 - there must be at least 64K clusters\n", APPERR(ERROR_INVALID_CLUSTER_SIZE));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qTotalSectors >= 0xffffffff) {
|
|
|
|
// This is a more fundamental limitation on FAT32 - the total sector count in the root dir
|
2014-05-09 21:05:25 +00:00
|
|
|
// is 32bit. With a bit of creativity, FAT32 could be extended to handle at least 2^28 clusters
|
2012-11-03 17:40:33 +00:00
|
|
|
// There would need to be an extra field in the FSInfo sector, and the old sector count could
|
|
|
|
// be set to 0xffffffff. This is non standard though, the Windows FAT driver FASTFAT.SYS won't
|
|
|
|
// understand this. Perhaps a future version of FAT32 and FASTFAT will handle this.
|
2014-03-29 00:17:41 +00:00
|
|
|
die("This drive is too big for FAT32 - max 2TB supported\n", APPERR(ERROR_INVALID_VOLUME_SIZE));
|
2012-11-03 17:40:33 +00:00
|
|
|
}
|
|
|
|
|
2014-05-09 21:05:25 +00:00
|
|
|
// coverity[tainted_data]
|
2012-11-03 17:40:33 +00:00
|
|
|
pFAT32BootSect = (FAT_BOOTSECTOR32*) calloc(BytesPerSect, 1);
|
|
|
|
pFAT32FsInfo = (FAT_FSINFO*) calloc(BytesPerSect, 1);
|
|
|
|
pFirstSectOfFat = (DWORD*) calloc(BytesPerSect, 1);
|
|
|
|
if (!pFAT32BootSect || !pFAT32FsInfo || !pFirstSectOfFat) {
|
|
|
|
die("Failed to allocate memory\n", ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill out the boot sector and fs info
|
|
|
|
pFAT32BootSect->sJmpBoot[0]=0xEB;
|
2013-11-23 22:39:54 +00:00
|
|
|
pFAT32BootSect->sJmpBoot[1]=0x58; // jmp.s $+0x5a is 0xeb 0x58, not 0xeb 0x5a. Thanks Marco!
|
2012-11-03 17:40:33 +00:00
|
|
|
pFAT32BootSect->sJmpBoot[2]=0x90;
|
|
|
|
strncpy((char*)pFAT32BootSect->sOEMName, "MSWIN4.1", 8);
|
|
|
|
pFAT32BootSect->wBytsPerSec = (WORD) BytesPerSect;
|
|
|
|
|
2012-11-04 00:29:24 +00:00
|
|
|
ClusterSize = (DWORD)ComboBox_GetItemData(hClusterSize, ComboBox_GetCurSel(hClusterSize));
|
2012-11-03 17:40:33 +00:00
|
|
|
SectorsPerCluster = ClusterSize / BytesPerSect;
|
|
|
|
|
|
|
|
pFAT32BootSect->bSecPerClus = (BYTE) SectorsPerCluster ;
|
|
|
|
pFAT32BootSect->wRsvdSecCnt = (WORD) ReservedSectCount;
|
|
|
|
pFAT32BootSect->bNumFATs = (BYTE) NumFATs;
|
|
|
|
pFAT32BootSect->wRootEntCnt = 0;
|
|
|
|
pFAT32BootSect->wTotSec16 = 0;
|
|
|
|
pFAT32BootSect->bMedia = 0xF8;
|
|
|
|
pFAT32BootSect->wFATSz16 = 0;
|
|
|
|
pFAT32BootSect->wSecPerTrk = (WORD) dgDrive.SectorsPerTrack;
|
|
|
|
pFAT32BootSect->wNumHeads = (WORD) dgDrive.TracksPerCylinder;
|
|
|
|
pFAT32BootSect->dHiddSec = (DWORD) piDrive.HiddenSectors;
|
|
|
|
TotalSectors = (DWORD) (piDrive.PartitionLength.QuadPart/dgDrive.BytesPerSector);
|
|
|
|
pFAT32BootSect->dTotSec32 = TotalSectors;
|
|
|
|
|
|
|
|
FatSize = GetFATSizeSectors(pFAT32BootSect->dTotSec32, pFAT32BootSect->wRsvdSecCnt,
|
|
|
|
pFAT32BootSect->bSecPerClus, pFAT32BootSect->bNumFATs, BytesPerSect);
|
|
|
|
|
|
|
|
pFAT32BootSect->dFATSz32 = FatSize;
|
|
|
|
pFAT32BootSect->wExtFlags = 0;
|
|
|
|
pFAT32BootSect->wFSVer = 0;
|
|
|
|
pFAT32BootSect->dRootClus = 2;
|
|
|
|
pFAT32BootSect->wFSInfo = 1;
|
|
|
|
pFAT32BootSect->wBkBootSec = (WORD) BackupBootSect;
|
|
|
|
pFAT32BootSect->bDrvNum = 0x80;
|
|
|
|
pFAT32BootSect->Reserved1 = 0;
|
|
|
|
pFAT32BootSect->bBootSig = 0x29;
|
|
|
|
|
|
|
|
pFAT32BootSect->dBS_VolID = VolumeId;
|
|
|
|
memcpy(pFAT32BootSect->sVolLab, VolId, 11);
|
|
|
|
memcpy(pFAT32BootSect->sBS_FilSysType, "FAT32 ", 8);
|
|
|
|
((BYTE*)pFAT32BootSect)[510] = 0x55;
|
|
|
|
((BYTE*)pFAT32BootSect)[511] = 0xaa;
|
|
|
|
|
|
|
|
// FATGEN103.DOC says "NOTE: Many FAT documents mistakenly say that this 0xAA55 signature occupies the "last 2 bytes of
|
|
|
|
// the boot sector". This statement is correct if - and only if - BPB_BytsPerSec is 512. If BPB_BytsPerSec is greater than
|
|
|
|
// 512, the offsets of these signature bytes do not change (although it is perfectly OK for the last two bytes at the end
|
|
|
|
// of the boot sector to also contain this signature)."
|
|
|
|
//
|
|
|
|
// Windows seems to only check the bytes at offsets 510 and 511. Other OSs might check the ones at the end of the sector,
|
|
|
|
// so we'll put them there too.
|
|
|
|
if (BytesPerSect != 512) {
|
|
|
|
((BYTE*)pFAT32BootSect)[BytesPerSect-2] = 0x55;
|
|
|
|
((BYTE*)pFAT32BootSect)[BytesPerSect-1] = 0xaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FSInfo sect
|
|
|
|
pFAT32FsInfo->dLeadSig = 0x41615252;
|
|
|
|
pFAT32FsInfo->dStrucSig = 0x61417272;
|
|
|
|
pFAT32FsInfo->dFree_Count = (DWORD) -1;
|
|
|
|
pFAT32FsInfo->dNxt_Free = (DWORD) -1;
|
|
|
|
pFAT32FsInfo->dTrailSig = 0xaa550000;
|
|
|
|
|
|
|
|
// First FAT Sector
|
|
|
|
pFirstSectOfFat[0] = 0x0ffffff8; // Reserved cluster 1 media id in low byte
|
|
|
|
pFirstSectOfFat[1] = 0x0fffffff; // Reserved cluster 2 EOC
|
|
|
|
pFirstSectOfFat[2] = 0x0fffffff; // end of cluster chain for root dir
|
|
|
|
|
|
|
|
// Write boot sector, fats
|
|
|
|
// Sector 0 Boot Sector
|
|
|
|
// Sector 1 FSInfo
|
|
|
|
// Sector 2 More boot code - we write zeros here
|
|
|
|
// Sector 3 unused
|
|
|
|
// Sector 4 unused
|
|
|
|
// Sector 5 unused
|
|
|
|
// Sector 6 Backup boot sector
|
|
|
|
// Sector 7 Backup FSInfo sector
|
|
|
|
// Sector 8 Backup 'more boot code'
|
2013-06-20 14:41:22 +00:00
|
|
|
// zeroed sectors upto ReservedSectCount
|
2012-11-03 17:40:33 +00:00
|
|
|
// FAT1 ReservedSectCount to ReservedSectCount + FatSize
|
|
|
|
// ...
|
|
|
|
// FATn ReservedSectCount to ReservedSectCount + FatSize
|
|
|
|
// RootDir - allocated to cluster2
|
|
|
|
|
|
|
|
UserAreaSize = TotalSectors - ReservedSectCount - (NumFATs*FatSize);
|
|
|
|
ClusterCount = UserAreaSize / SectorsPerCluster;
|
|
|
|
|
|
|
|
// Sanity check for a cluster count of >2^28, since the upper 4 bits of the cluster values in
|
|
|
|
// the FAT are reserved.
|
|
|
|
if (ClusterCount > 0x0FFFFFFF) {
|
|
|
|
die("This drive has more than 2^28 clusters, try to specify a larger cluster size or use the default\n",
|
|
|
|
ERROR_INVALID_CLUSTER_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sanity check - < 64K clusters means that the volume will be misdetected as FAT16
|
|
|
|
if (ClusterCount < 65536) {
|
|
|
|
die("FAT32 must have at least 65536 clusters, try to specify a smaller cluster size or use the default\n",
|
|
|
|
ERROR_INVALID_CLUSTER_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sanity check, make sure the fat is big enough
|
|
|
|
// Convert the cluster count into a Fat sector count, and check the fat size value we calculated
|
|
|
|
// earlier is OK.
|
|
|
|
FatNeeded = ClusterCount * 4;
|
|
|
|
FatNeeded += (BytesPerSect-1);
|
|
|
|
FatNeeded /= BytesPerSect;
|
|
|
|
if (FatNeeded > FatSize) {
|
|
|
|
die("This drive is too big for large FAT32 format\n", APPERR(ERROR_INVALID_VOLUME_SIZE));
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:41:22 +00:00
|
|
|
// Now we're committed - print some info first
|
2014-03-01 00:09:40 +00:00
|
|
|
uprintf("Size : %s %u sectors\n", SizeToHumanReadable(piDrive.PartitionLength.QuadPart, TRUE, FALSE), TotalSectors);
|
2012-11-03 17:40:33 +00:00
|
|
|
uprintf("Cluster size %d bytes, %d Bytes Per Sector\n", SectorsPerCluster*BytesPerSect, BytesPerSect);
|
|
|
|
uprintf("Volume ID is %x:%x\n", VolumeId>>16, VolumeId&0xffff);
|
|
|
|
uprintf("%d Reserved Sectors, %d Sectors per FAT, %d FATs\n", ReservedSectCount, FatSize, NumFATs);
|
|
|
|
uprintf("%d Total clusters\n", ClusterCount);
|
|
|
|
|
|
|
|
// Fix up the FSInfo sector
|
|
|
|
pFAT32FsInfo->dFree_Count = (UserAreaSize/SectorsPerCluster) - 1;
|
2013-06-20 14:41:22 +00:00
|
|
|
pFAT32FsInfo->dNxt_Free = 3; // clusters 0-1 reserved, we used cluster 2 for the root dir
|
2012-11-03 17:40:33 +00:00
|
|
|
|
|
|
|
uprintf("%d Free Clusters\n", pFAT32FsInfo->dFree_Count);
|
|
|
|
// Work out the Cluster count
|
|
|
|
|
|
|
|
// First zero out ReservedSect + FatSize * NumFats + SectorsPerCluster
|
|
|
|
SystemAreaSize = ReservedSectCount + (NumFATs*FatSize) + SectorsPerCluster;
|
|
|
|
uprintf("Clearing out %d sectors for reserved sectors, FATs and root cluster...\n", SystemAreaSize);
|
|
|
|
|
|
|
|
// Not the most effective, but easy on RAM
|
|
|
|
pZeroSect = (BYTE*)calloc(BytesPerSect, BurstSize);
|
|
|
|
if (!pZeroSect) {
|
|
|
|
die("Failed to allocate memory\n", ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
format_percent = 0.0f;
|
|
|
|
for (i=0; i<(SystemAreaSize+BurstSize-1); i+=BurstSize) {
|
2013-09-22 02:54:50 +00:00
|
|
|
if (GetTickCount() > LastRefresh + 25) {
|
|
|
|
LastRefresh = GetTickCount();
|
|
|
|
format_percent = (100.0f*i)/(1.0f*(SystemAreaSize+BurstSize));
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, FALSE, MSG_217, format_percent);
|
2013-09-22 02:54:50 +00:00
|
|
|
UpdateProgress(OP_FORMAT, format_percent);
|
|
|
|
}
|
2012-11-03 17:40:33 +00:00
|
|
|
if (IS_ERROR(FormatStatus)) goto out; // For cancellation
|
|
|
|
if (write_sectors(hLogicalVolume, BytesPerSect, i, BurstSize, pZeroSect) != (BytesPerSect*BurstSize)) {
|
|
|
|
die("Error clearing reserved sectors\n", ERROR_WRITE_FAULT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:41:22 +00:00
|
|
|
uprintf ("Initializing reserved sectors and FATs...\n");
|
2012-11-03 17:40:33 +00:00
|
|
|
// Now we should write the boot sector and fsinfo twice, once at 0 and once at the backup boot sect position
|
|
|
|
for (i=0; i<2; i++) {
|
|
|
|
int SectorStart = (i==0) ? 0 : BackupBootSect;
|
|
|
|
write_sectors(hLogicalVolume, BytesPerSect, SectorStart, 1, pFAT32BootSect);
|
|
|
|
write_sectors(hLogicalVolume, BytesPerSect, SectorStart+1, 1, pFAT32FsInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the first fat sector in the right places
|
|
|
|
for ( i=0; i<NumFATs; i++ ) {
|
|
|
|
int SectorStart = ReservedSectCount + (i * FatSize );
|
|
|
|
uprintf("FAT #%d sector at address: %d\n", i, SectorStart);
|
|
|
|
write_sectors(hLogicalVolume, BytesPerSect, SectorStart, 1, pFirstSectOfFat);
|
|
|
|
}
|
|
|
|
|
2013-09-22 02:28:56 +00:00
|
|
|
// Must do it here, as have issues when trying to write the PBR after a remount
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_229);
|
2013-09-22 02:28:56 +00:00
|
|
|
if (!WritePBR(hLogicalVolume)) {
|
|
|
|
// Non fatal error, but the drive probably won't boot
|
|
|
|
uprintf("Could not write partition boot record - drive may not boot...\n");
|
|
|
|
}
|
|
|
|
|
2012-11-03 17:40:33 +00:00
|
|
|
// Set the FAT32 volume label
|
|
|
|
GetWindowTextW(hLabel, wLabel, ARRAYSIZE(wLabel));
|
|
|
|
ToValidLabel(wLabel, TRUE);
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_221);
|
2012-11-03 17:40:33 +00:00
|
|
|
// Handle must be closed for SetVolumeLabel to work
|
|
|
|
safe_closehandle(hLogicalVolume);
|
2013-06-25 17:39:07 +00:00
|
|
|
VolumeName = GetLogicalName(DriveIndex, TRUE, TRUE);
|
2013-04-07 23:10:58 +00:00
|
|
|
wVolumeName = utf8_to_wchar(VolumeName);
|
|
|
|
if ((wVolumeName == NULL) || (!SetVolumeLabelW(wVolumeName, wLabel))) {
|
2012-11-03 17:40:33 +00:00
|
|
|
uprintf("Could not set label: %s\n", WindowsErrorString());
|
2013-04-07 23:10:58 +00:00
|
|
|
// Non fatal error
|
2012-11-03 17:40:33 +00:00
|
|
|
}
|
2013-04-07 23:10:58 +00:00
|
|
|
|
2012-11-03 17:40:33 +00:00
|
|
|
uprintf("Format completed.\n");
|
|
|
|
r = TRUE;
|
|
|
|
|
|
|
|
out:
|
2013-04-07 23:10:58 +00:00
|
|
|
safe_free(VolumeName);
|
|
|
|
safe_free(wVolumeName);
|
2012-11-03 17:40:33 +00:00
|
|
|
safe_closehandle(hLogicalVolume);
|
|
|
|
safe_free(pFAT32BootSect);
|
|
|
|
safe_free(pFAT32FsInfo);
|
|
|
|
safe_free(pFirstSectOfFat);
|
|
|
|
safe_free(pZeroSect);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2011-12-01 17:20:52 +00:00
|
|
|
/*
|
|
|
|
* Call on fmifs.dll's FormatEx() to format the drive
|
|
|
|
*/
|
2013-04-07 23:10:58 +00:00
|
|
|
static BOOL FormatDrive(DWORD DriveIndex)
|
2011-12-01 17:20:52 +00:00
|
|
|
{
|
|
|
|
BOOL r = FALSE;
|
|
|
|
PF_DECL(FormatEx);
|
2014-01-31 02:51:28 +00:00
|
|
|
PF_DECL(EnableVolumeCompression);
|
2013-10-15 21:58:27 +00:00
|
|
|
char FSType[32];
|
2013-07-08 23:14:29 +00:00
|
|
|
char *locale, *VolumeName = NULL;
|
|
|
|
WCHAR* wVolumeName = NULL;
|
2013-10-15 21:58:27 +00:00
|
|
|
WCHAR wFSType[64];
|
2012-02-15 21:55:41 +00:00
|
|
|
WCHAR wLabel[64];
|
2013-07-08 23:14:29 +00:00
|
|
|
ULONG ulClusterSize;
|
2011-12-01 17:20:52 +00:00
|
|
|
size_t i;
|
2013-10-31 22:59:53 +00:00
|
|
|
int fs;
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2013-10-15 21:58:27 +00:00
|
|
|
GetWindowTextU(hFileSystem, FSType, ARRAYSIZE(FSType));
|
2014-03-01 00:09:40 +00:00
|
|
|
// Might have a (Default) suffix => remove it
|
|
|
|
for (i=strlen(FSType); i>2; i--) {
|
|
|
|
if (FSType[i] == '(') {
|
|
|
|
FSType[i-1] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-31 22:59:53 +00:00
|
|
|
fs = (int)ComboBox_GetItemData(hFileSystem, ComboBox_GetCurSel(hFileSystem));
|
|
|
|
if ((fs == FS_UDF) && !((dur_mins == 0) && (dur_secs == 0))) {
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_220, FSType, dur_mins, dur_secs);
|
2013-10-31 22:59:53 +00:00
|
|
|
} else {
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_222, FSType);
|
2013-10-31 22:59:53 +00:00
|
|
|
}
|
2014-01-31 02:51:28 +00:00
|
|
|
VolumeName = GetLogicalName(DriveIndex, TRUE, TRUE);
|
2013-04-07 23:10:58 +00:00
|
|
|
wVolumeName = utf8_to_wchar(VolumeName);
|
|
|
|
if (wVolumeName == NULL) {
|
|
|
|
uprintf("Could not read volume name\n");
|
2014-04-02 21:47:35 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_GEN_FAILURE;
|
2013-04-07 23:10:58 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2014-01-31 02:51:28 +00:00
|
|
|
// Hey, nice consistency here, Microsoft! - FormatEx() fails if wVolumeName has
|
|
|
|
// a trailing backslash, but EnableCompression() fails without...
|
|
|
|
wVolumeName[wcslen(wVolumeName)-1] = 0; // Remove trailing backslash
|
2013-04-07 23:10:58 +00:00
|
|
|
|
2012-05-16 11:18:48 +00:00
|
|
|
// LoadLibrary("fmifs.dll") appears to changes the locale, which can lead to
|
|
|
|
// problems with tolower(). Make sure we restore the locale. For more details,
|
|
|
|
// see http://comments.gmane.org/gmane.comp.gnu.mingw.user/39300
|
|
|
|
locale = setlocale(LC_ALL, NULL);
|
2014-05-12 21:44:10 +00:00
|
|
|
PF_INIT_OR_OUT(FormatEx, Fmifs);
|
|
|
|
PF_INIT(EnableVolumeCompression, Fmifs);
|
2012-05-16 11:18:48 +00:00
|
|
|
setlocale(LC_ALL, locale);
|
2011-12-01 17:20:52 +00:00
|
|
|
|
|
|
|
GetWindowTextW(hFileSystem, wFSType, ARRAYSIZE(wFSType));
|
|
|
|
// We may have a " (Default)" trail
|
|
|
|
for (i=0; i<wcslen(wFSType); i++) {
|
|
|
|
if (wFSType[i] == ' ') {
|
|
|
|
wFSType[i] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GetWindowTextW(hLabel, wLabel, ARRAYSIZE(wLabel));
|
2012-02-15 21:55:41 +00:00
|
|
|
// Make sure the label is valid
|
|
|
|
ToValidLabel(wLabel, (wFSType[0] == 'F') && (wFSType[1] == 'A') && (wFSType[2] == 'T'));
|
2013-07-08 23:14:29 +00:00
|
|
|
ulClusterSize = (ULONG)ComboBox_GetItemData(hClusterSize, ComboBox_GetCurSel(hClusterSize));
|
|
|
|
if (ulClusterSize < 0x200) {
|
|
|
|
// 0 is FormatEx's value for default, which we need to use for UDF
|
|
|
|
ulClusterSize = 0;
|
|
|
|
uprintf("Using default cluster size\n");
|
|
|
|
} else {
|
|
|
|
uprintf("Using cluster size: %d bytes\n", ulClusterSize);
|
|
|
|
}
|
2011-12-09 01:39:13 +00:00
|
|
|
format_percent = 0.0f;
|
|
|
|
task_number = 0;
|
2011-12-11 02:19:38 +00:00
|
|
|
fs_index = (int)ComboBox_GetItemData(hFileSystem, ComboBox_GetCurSel(hFileSystem));
|
2014-01-31 02:51:28 +00:00
|
|
|
|
2014-04-13 14:20:20 +00:00
|
|
|
uprintf("%s format was selected\n", IsChecked(IDC_QUICKFORMAT)?"Quick":"Slow");
|
2013-04-07 23:10:58 +00:00
|
|
|
pfFormatEx(wVolumeName, SelectedDrive.Geometry.MediaType, wFSType, wLabel,
|
2013-07-08 23:14:29 +00:00
|
|
|
IsChecked(IDC_QUICKFORMAT), ulClusterSize, FormatExCallback);
|
2014-01-31 02:51:28 +00:00
|
|
|
|
|
|
|
if ((fs == FS_NTFS) && (enable_ntfs_compression) && (pfEnableVolumeCompression != NULL)) {
|
|
|
|
wVolumeName[wcslen(wVolumeName)] = '\\'; // Add trailing backslash back again
|
|
|
|
if (pfEnableVolumeCompression(wVolumeName, FPF_COMPRESSED)) {
|
|
|
|
uprintf("Enabled NTFS compression\n");
|
|
|
|
} else {
|
|
|
|
uprintf("Could not enable NTFS compression: %s\n", WindowsErrorString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-01 17:20:52 +00:00
|
|
|
if (!IS_ERROR(FormatStatus)) {
|
|
|
|
uprintf("Format completed.\n");
|
|
|
|
r = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2013-04-07 23:10:58 +00:00
|
|
|
safe_free(VolumeName);
|
|
|
|
safe_free(wVolumeName);
|
2011-12-01 17:20:52 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-03-09 01:38:52 +00:00
|
|
|
/*
|
|
|
|
* Call on fmifs.dll's Chkdsk() to fixup the filesystem
|
|
|
|
*/
|
|
|
|
static BOOL CheckDisk(char DriveLetter)
|
|
|
|
{
|
|
|
|
BOOL r = FALSE;
|
|
|
|
PF_DECL(Chkdsk);
|
|
|
|
WCHAR wDriveRoot[] = L"?:\\";
|
|
|
|
WCHAR wFSType[32];
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
wDriveRoot[0] = (WCHAR)DriveLetter;
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_223);
|
2012-03-09 01:38:52 +00:00
|
|
|
|
2014-05-12 21:44:10 +00:00
|
|
|
PF_INIT_OR_OUT(Chkdsk, Fmifs);
|
2012-03-09 01:38:52 +00:00
|
|
|
|
|
|
|
GetWindowTextW(hFileSystem, wFSType, ARRAYSIZE(wFSType));
|
|
|
|
// We may have a " (Default)" trail
|
|
|
|
for (i=0; i<wcslen(wFSType); i++) {
|
|
|
|
if (wFSType[i] == ' ') {
|
|
|
|
wFSType[i] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pfChkdsk(wDriveRoot, wFSType, FALSE, FALSE, FALSE, FALSE, NULL, NULL, ChkdskCallback);
|
|
|
|
if (!IS_ERROR(FormatStatus)) {
|
|
|
|
uprintf("NTFS Fixup completed.\n");
|
|
|
|
r = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-12-05 18:56:05 +00:00
|
|
|
static BOOL ClearMBRGPT(HANDLE hPhysicalDrive, LONGLONG DiskSize, DWORD SectorSize, BOOL add1MB)
|
2011-12-06 18:11:38 +00:00
|
|
|
{
|
2012-11-03 17:40:33 +00:00
|
|
|
BOOL r = FALSE;
|
2013-01-18 01:39:24 +00:00
|
|
|
uint64_t i, last_sector = DiskSize/SectorSize;
|
2012-11-03 17:40:33 +00:00
|
|
|
unsigned char* pBuf = (unsigned char*) calloc(SectorSize, 1);
|
2011-12-06 18:11:38 +00:00
|
|
|
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_224);
|
2012-11-03 17:40:33 +00:00
|
|
|
if (pBuf == NULL) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NOT_ENOUGH_MEMORY;
|
|
|
|
goto out;
|
|
|
|
}
|
2013-01-18 01:39:24 +00:00
|
|
|
// http://en.wikipedia.org/wiki/GUID_Partition_Table tells us we should clear 34 sectors at the
|
|
|
|
// beginning and 33 at the end. We bump these values to MAX_SECTORS_TO_CLEAR each end to help
|
|
|
|
// with reluctant access to large drive.
|
2013-09-22 02:28:56 +00:00
|
|
|
|
|
|
|
// Must clear at least 1MB + the PBR for large FAT32 format to work on a large drive
|
2013-12-05 18:56:05 +00:00
|
|
|
// Don't do it if Large FAT32 is not enabled, as it can take time for slow drives.
|
|
|
|
uprintf("Erasing %d sectors", (add1MB?2048:0)+MAX_SECTORS_TO_CLEAR);
|
|
|
|
for (i=0; i<((add1MB?2048:0)+MAX_SECTORS_TO_CLEAR); i++) {
|
2013-01-18 01:39:24 +00:00
|
|
|
if ((IS_ERROR(FormatStatus)) || (write_sectors(hPhysicalDrive, SectorSize, i, 1, pBuf) != SectorSize)) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i=last_sector-MAX_SECTORS_TO_CLEAR; i<last_sector; i++) {
|
|
|
|
if ((IS_ERROR(FormatStatus)) || (write_sectors(hPhysicalDrive, SectorSize, i, 1, pBuf) != SectorSize)) {
|
|
|
|
goto out;
|
|
|
|
}
|
2012-11-03 17:40:33 +00:00
|
|
|
}
|
|
|
|
r = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
safe_free(pBuf);
|
|
|
|
return r;
|
2011-12-06 18:11:38 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 17:20:52 +00:00
|
|
|
/*
|
2011-12-02 00:11:53 +00:00
|
|
|
* Process the Master Boot Record
|
2011-12-01 17:20:52 +00:00
|
|
|
*/
|
2011-12-02 00:11:53 +00:00
|
|
|
static BOOL WriteMBR(HANDLE hPhysicalDrive)
|
2011-12-01 17:20:52 +00:00
|
|
|
{
|
|
|
|
BOOL r = FALSE;
|
2013-06-25 17:39:07 +00:00
|
|
|
DWORD size;
|
2014-01-11 00:19:03 +00:00
|
|
|
int dt, fs, bt;
|
2011-12-01 17:20:52 +00:00
|
|
|
unsigned char* buf = NULL;
|
2011-12-13 23:29:09 +00:00
|
|
|
FILE fake_fd = { 0 };
|
2014-01-05 01:39:41 +00:00
|
|
|
const char* using_msg = "Using %s MBR\n";
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2014-02-09 02:54:07 +00:00
|
|
|
AnalyzeMBR(hPhysicalDrive, "Drive");
|
2011-12-01 17:20:52 +00:00
|
|
|
|
|
|
|
// FormatEx rewrites the MBR and removes the LBA attribute of FAT16
|
|
|
|
// and FAT32 partitions - we need to correct this in the MBR
|
2014-10-28 19:16:35 +00:00
|
|
|
buf = (unsigned char*)malloc(SelectedDrive.Geometry.BytesPerSector);
|
2011-12-01 17:20:52 +00:00
|
|
|
if (buf == NULL) {
|
|
|
|
uprintf("Could not allocate memory for MBR");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NOT_ENOUGH_MEMORY;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2014-10-28 19:16:35 +00:00
|
|
|
if (!read_sectors(hPhysicalDrive, SelectedDrive.Geometry.BytesPerSector, 0, 1, buf)) {
|
2011-12-01 17:20:52 +00:00
|
|
|
uprintf("Could not read MBR\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_READ_FAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
2011-12-02 00:11:53 +00:00
|
|
|
|
|
|
|
switch (ComboBox_GetItemData(hFileSystem, ComboBox_GetCurSel(hFileSystem))) {
|
2011-12-01 17:20:52 +00:00
|
|
|
case FS_FAT16:
|
2011-12-02 00:11:53 +00:00
|
|
|
if (buf[0x1c2] == 0x0e) {
|
|
|
|
uprintf("Partition is already FAT16 LBA...\n");
|
|
|
|
} else if ((buf[0x1c2] != 0x04) && (buf[0x1c2] != 0x06)) {
|
|
|
|
uprintf("Warning: converting a non FAT16 partition to FAT16 LBA: FS type=0x%02x\n", buf[0x1c2]);
|
|
|
|
}
|
2011-12-01 17:20:52 +00:00
|
|
|
buf[0x1c2] = 0x0e;
|
|
|
|
break;
|
|
|
|
case FS_FAT32:
|
2011-12-02 00:11:53 +00:00
|
|
|
if (buf[0x1c2] == 0x0c) {
|
|
|
|
uprintf("Partition is already FAT32 LBA...\n");
|
|
|
|
} else if (buf[0x1c2] != 0x0b) {
|
|
|
|
uprintf("Warning: converting a non FAT32 partition to FAT32 LBA: FS type=0x%02x\n", buf[0x1c2]);
|
|
|
|
}
|
2011-12-01 17:20:52 +00:00
|
|
|
buf[0x1c2] = 0x0c;
|
|
|
|
break;
|
|
|
|
}
|
2013-01-24 21:30:11 +00:00
|
|
|
if (IsChecked(IDC_BOOT)) {
|
2012-05-16 22:38:39 +00:00
|
|
|
// Set first partition bootable - masquerade as per the DiskID selected
|
2014-11-18 23:49:29 +00:00
|
|
|
buf[0x1be] = (IsWindowEnabled(GetDlgItem(hMainDialog, IDC_RUFUS_MBR)) && IsChecked(IDC_RUFUS_MBR)) ?
|
|
|
|
(BYTE)ComboBox_GetItemData(hDiskID, ComboBox_GetCurSel(hDiskID)):0x80;
|
2012-03-27 19:31:15 +00:00
|
|
|
uprintf("Set bootable USB partition as 0x%02X\n", buf[0x1be]);
|
2011-12-01 17:20:52 +00:00
|
|
|
}
|
|
|
|
|
2014-10-28 19:16:35 +00:00
|
|
|
if (!write_sectors(hPhysicalDrive, SelectedDrive.Geometry.BytesPerSector, 0, 1, buf)) {
|
2011-12-01 17:20:52 +00:00
|
|
|
uprintf("Could not write MBR\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
fake_fd._ptr = (char*)hPhysicalDrive;
|
2014-10-28 19:16:35 +00:00
|
|
|
fake_fd._bufsiz = SelectedDrive.Geometry.BytesPerSector;
|
2012-03-03 23:12:48 +00:00
|
|
|
fs = (int)ComboBox_GetItemData(hFileSystem, ComboBox_GetCurSel(hFileSystem));
|
2013-01-24 21:30:11 +00:00
|
|
|
dt = (int)ComboBox_GetItemData(hBootType, ComboBox_GetCurSel(hBootType));
|
2014-01-11 00:19:03 +00:00
|
|
|
bt = GETBIOSTYPE((int)ComboBox_GetItemData(hPartitionScheme, ComboBox_GetCurSel(hPartitionScheme)));
|
|
|
|
if (bt == BT_UEFI) {
|
|
|
|
uprintf(using_msg, "zeroed");
|
|
|
|
r = write_zero_mbr(&fake_fd); // Force UEFI boot only by zeroing the MBR
|
2014-05-15 20:17:12 +00:00
|
|
|
} else if ( (dt == DT_ISO) && (iso_report.has_kolibrios) && (fs == FS_FAT32)) {
|
|
|
|
uprintf(using_msg, "KolibriOS");
|
|
|
|
r = write_kolibri_mbr(&fake_fd);
|
2014-11-14 23:40:00 +00:00
|
|
|
} else if (((dt == DT_ISO) && (iso_report.has_grub4dos)) || (dt == DT_GRUB4DOS)) {
|
|
|
|
uprintf(using_msg, "Grub4DOS");
|
|
|
|
r = write_grub_mbr(&fake_fd);
|
2014-11-17 23:41:46 +00:00
|
|
|
} else if (((dt == DT_ISO) && (iso_report.has_grub2)) || (dt == DT_GRUB2)) {
|
2014-11-14 23:40:00 +00:00
|
|
|
uprintf(using_msg, "Grub 2.0");
|
|
|
|
r = write_grub2_mbr(&fake_fd);
|
2014-01-05 01:39:41 +00:00
|
|
|
} else if (dt == DT_REACTOS) {
|
|
|
|
uprintf(using_msg, "ReactOS");
|
|
|
|
r = write_reactos_mbr(&fake_fd);
|
2014-11-14 23:40:00 +00:00
|
|
|
} else if ( (dt == DT_SYSLINUX_V4) || (dt == DT_SYSLINUX_V6) || ((dt == DT_ISO) && ((fs == FS_FAT16) || (fs == FS_FAT32))) ) {
|
|
|
|
uprintf(using_msg, "Syslinux");
|
|
|
|
r = write_syslinux_mbr(&fake_fd);
|
2012-01-12 02:52:40 +00:00
|
|
|
} else {
|
2012-03-27 19:31:15 +00:00
|
|
|
if ((IS_WINPE(iso_report.winpe) && !iso_report.uses_minint) || (IsChecked(IDC_RUFUS_MBR))) {
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf(using_msg, APPLICATION_NAME);
|
|
|
|
r = write_rufus_mbr(&fake_fd);
|
2012-03-21 01:59:03 +00:00
|
|
|
} else {
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf(using_msg, "Windows 7");
|
2012-03-21 01:59:03 +00:00
|
|
|
r = write_win7_mbr(&fake_fd);
|
|
|
|
}
|
2012-01-12 02:52:40 +00:00
|
|
|
}
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2013-06-25 17:39:07 +00:00
|
|
|
// Tell the system we've updated the disk properties
|
2014-05-09 21:05:25 +00:00
|
|
|
if (!DeviceIoControl(hPhysicalDrive, IOCTL_DISK_UPDATE_PROPERTIES, NULL, 0, NULL, 0, &size, NULL))
|
|
|
|
uprintf("Failed to notify system about disk properties update: %s\n", WindowsErrorString());
|
2013-06-25 17:39:07 +00:00
|
|
|
|
2011-12-01 17:20:52 +00:00
|
|
|
out:
|
|
|
|
safe_free(buf);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-11-17 23:41:46 +00:00
|
|
|
/*
|
|
|
|
* Write Secondary Boot Record (usually right after the MBR)
|
|
|
|
*/
|
|
|
|
static BOOL WriteSBR(HANDLE hPhysicalDrive)
|
|
|
|
{
|
2014-11-18 23:49:29 +00:00
|
|
|
// TODO: Do we need anything special for 4K sectors?
|
|
|
|
DWORD size, max_size, mbr_size = 0x200;
|
2014-11-17 23:41:46 +00:00
|
|
|
int dt = (int)ComboBox_GetItemData(hBootType, ComboBox_GetCurSel(hBootType));
|
|
|
|
unsigned char* buf = NULL;
|
|
|
|
FILE fake_fd = { 0 };
|
|
|
|
|
|
|
|
fake_fd._ptr = (char*)hPhysicalDrive;
|
|
|
|
fake_fd._bufsiz = SelectedDrive.Geometry.BytesPerSector;
|
2014-11-18 23:49:29 +00:00
|
|
|
// Ensure that we have sufficient space for the SBR
|
|
|
|
max_size = IsChecked(IDC_EXTRA_PARTITION) ?
|
|
|
|
(DWORD)(SelectedDrive.Geometry.BytesPerSector * SelectedDrive.Geometry.SectorsPerTrack) : 1024 * 1024;
|
|
|
|
max_size -= mbr_size;
|
|
|
|
if ((dt == DT_ISO) && (iso_report.has_grub4dos))
|
|
|
|
dt = DT_GRUB4DOS;
|
|
|
|
if ((dt == DT_ISO) && (iso_report.has_grub2))
|
|
|
|
dt = DT_GRUB2;
|
|
|
|
|
|
|
|
switch (dt) {
|
|
|
|
case DT_GRUB4DOS:
|
2014-11-17 23:41:46 +00:00
|
|
|
buf = GetResource(hMainInstance, MAKEINTRESOURCEA(IDR_GR_GRUB_GRLDR_MBR), _RT_RCDATA, "grldr.mbr", &size, FALSE);
|
2014-11-18 23:49:29 +00:00
|
|
|
if ((buf == NULL) || (size <= mbr_size)) {
|
|
|
|
uprintf("grldr.mbr is either not present or too small");
|
|
|
|
return FALSE;
|
2014-11-17 23:41:46 +00:00
|
|
|
}
|
2014-11-18 23:49:29 +00:00
|
|
|
buf = &buf[mbr_size];
|
|
|
|
size -= mbr_size;
|
|
|
|
break;
|
|
|
|
case DT_GRUB2:
|
2014-11-17 23:41:46 +00:00
|
|
|
buf = GetResource(hMainInstance, MAKEINTRESOURCEA(IDR_GR_GRUB2_CORE_IMG), _RT_RCDATA, "core.img", &size, FALSE);
|
2014-11-18 23:49:29 +00:00
|
|
|
if (buf == NULL) {
|
|
|
|
uprintf("Could not access core.img");
|
|
|
|
return FALSE;
|
2014-11-17 23:41:46 +00:00
|
|
|
}
|
2014-11-18 23:49:29 +00:00
|
|
|
break;
|
|
|
|
default:
|
2014-11-17 23:41:46 +00:00
|
|
|
// No need to write secondary block
|
2014-11-18 23:49:29 +00:00
|
|
|
return TRUE;
|
2014-11-17 23:41:46 +00:00
|
|
|
}
|
2014-11-18 23:49:29 +00:00
|
|
|
|
|
|
|
uprintf("Writing SBR (Secondary Boot record)");
|
|
|
|
if (size > max_size) {
|
|
|
|
uprintf(" SBR size is too large - You may need to uncheck 'Add fixes for old BIOSes'.");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return (write_data(&fake_fd, mbr_size, buf, (uint64_t)size) != 0);
|
2014-11-17 23:41:46 +00:00
|
|
|
}
|
|
|
|
|
2011-12-02 00:11:53 +00:00
|
|
|
/*
|
|
|
|
* Process the Partition Boot Record
|
|
|
|
*/
|
2014-01-05 01:39:41 +00:00
|
|
|
static __inline const char* dt_to_name(int dt) {
|
|
|
|
switch (dt) {
|
|
|
|
case DT_FREEDOS: return "FreeDOS";
|
|
|
|
case DT_REACTOS: return "ReactOS";
|
2014-11-18 23:49:29 +00:00
|
|
|
default:
|
2014-05-15 20:17:12 +00:00
|
|
|
return ((dt==DT_ISO)&&(iso_report.has_kolibrios))?"KolibriOS":"Standard";
|
2014-01-05 01:39:41 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-14 01:23:42 +00:00
|
|
|
static BOOL WritePBR(HANDLE hLogicalVolume)
|
2011-12-01 17:20:52 +00:00
|
|
|
{
|
2011-12-13 23:29:09 +00:00
|
|
|
int i;
|
|
|
|
FILE fake_fd = { 0 };
|
2014-01-05 01:39:41 +00:00
|
|
|
int dt = (int)ComboBox_GetItemData(hBootType, ComboBox_GetCurSel(hBootType));
|
|
|
|
const char* using_msg = "Using %s %s partition boot record\n";
|
2011-12-01 17:20:52 +00:00
|
|
|
|
|
|
|
fake_fd._ptr = (char*)hLogicalVolume;
|
2014-10-28 19:16:35 +00:00
|
|
|
fake_fd._bufsiz = SelectedDrive.Geometry.BytesPerSector;
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2011-12-02 00:11:53 +00:00
|
|
|
switch (ComboBox_GetItemData(hFileSystem, ComboBox_GetCurSel(hFileSystem))) {
|
|
|
|
case FS_FAT16:
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf(using_msg, dt_to_name(dt), "FAT16");
|
2011-12-13 23:29:09 +00:00
|
|
|
if (!is_fat_16_fs(&fake_fd)) {
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf("New volume does not have a FAT16 boot sector - aborting\n");
|
2011-12-13 23:29:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
uprintf("Confirmed new volume has a FAT16 boot sector\n");
|
2014-01-05 01:39:41 +00:00
|
|
|
if (dt == DT_FREEDOS) {
|
2011-12-15 00:46:47 +00:00
|
|
|
if (!write_fat_16_fd_br(&fake_fd, 0)) break;
|
2014-01-05 01:39:41 +00:00
|
|
|
} else if (dt == DT_REACTOS) {
|
|
|
|
if (!write_fat_16_ros_br(&fake_fd, 0)) break;
|
2014-05-15 20:17:12 +00:00
|
|
|
} else if ((dt == DT_ISO) && (iso_report.has_kolibrios)) {
|
|
|
|
uprintf("FAT16 is not supported for KolibriOS\n"); break;
|
2012-02-03 18:19:50 +00:00
|
|
|
} else {
|
|
|
|
if (!write_fat_16_br(&fake_fd, 0)) break;
|
|
|
|
}
|
2011-12-15 00:46:47 +00:00
|
|
|
// Disk Drive ID needs to be corrected on XP
|
|
|
|
if (!write_partition_physical_disk_drive_id_fat16(&fake_fd))
|
2011-12-13 23:29:09 +00:00
|
|
|
break;
|
|
|
|
return TRUE;
|
2011-12-02 00:11:53 +00:00
|
|
|
case FS_FAT32:
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf(using_msg, dt_to_name(dt), "FAT32");
|
2011-12-13 23:29:09 +00:00
|
|
|
for (i=0; i<2; i++) {
|
|
|
|
if (!is_fat_32_fs(&fake_fd)) {
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf("New volume does not have a %s FAT32 boot sector - aborting\n", i?"secondary":"primary");
|
2011-12-13 23:29:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
uprintf("Confirmed new volume has a %s FAT32 boot sector\n", i?"secondary":"primary");
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf("Setting %s FAT32 boot sector for boot...\n", i?"secondary":"primary");
|
|
|
|
if (dt == DT_FREEDOS) {
|
2011-12-15 00:46:47 +00:00
|
|
|
if (!write_fat_32_fd_br(&fake_fd, 0)) break;
|
2014-01-05 01:39:41 +00:00
|
|
|
} else if (dt == DT_REACTOS) {
|
|
|
|
if (!write_fat_32_ros_br(&fake_fd, 0)) break;
|
2014-05-15 20:17:12 +00:00
|
|
|
} else if ((dt == DT_ISO) && (iso_report.has_kolibrios)) {
|
|
|
|
if (!write_fat_32_kos_br(&fake_fd, 0)) break;
|
2014-01-05 01:39:41 +00:00
|
|
|
} else {
|
|
|
|
if (!write_fat_32_br(&fake_fd, 0)) break;
|
|
|
|
}
|
2011-12-15 00:46:47 +00:00
|
|
|
// Disk Drive ID needs to be corrected on XP
|
|
|
|
if (!write_partition_physical_disk_drive_id_fat32(&fake_fd))
|
2011-12-13 23:29:09 +00:00
|
|
|
break;
|
2014-10-28 19:16:35 +00:00
|
|
|
fake_fd._cnt += 6 * SelectedDrive.Geometry.BytesPerSector;
|
2011-12-13 23:29:09 +00:00
|
|
|
}
|
|
|
|
return TRUE;
|
2012-02-03 18:19:50 +00:00
|
|
|
case FS_NTFS:
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf(using_msg, dt_to_name(dt), "NTFS");
|
2012-02-03 18:19:50 +00:00
|
|
|
if (!is_ntfs_fs(&fake_fd)) {
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf("New volume does not have an NTFS boot sector - aborting\n");
|
2012-02-03 18:19:50 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
uprintf("Confirmed new volume has an NTFS boot sector\n");
|
|
|
|
if (!write_ntfs_br(&fake_fd)) break;
|
|
|
|
// Note: NTFS requires a full remount after writing the PBR. We dismount when we lock
|
2012-02-07 02:05:58 +00:00
|
|
|
// and also go through a forced remount, so that shouldn't be an issue.
|
|
|
|
// But with NTFS, if you don't remount, you don't boot!
|
2012-02-03 18:19:50 +00:00
|
|
|
return TRUE;
|
2011-12-02 00:11:53 +00:00
|
|
|
default:
|
2014-01-05 01:39:41 +00:00
|
|
|
uprintf("Unsupported FS for FS BR processing - aborting\n");
|
2011-12-02 00:11:53 +00:00
|
|
|
break;
|
2011-12-01 17:20:52 +00:00
|
|
|
}
|
2011-12-02 00:11:53 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
|
|
|
return FALSE;
|
2011-12-01 17:20:52 +00:00
|
|
|
}
|
|
|
|
|
2012-03-16 18:30:44 +00:00
|
|
|
/*
|
|
|
|
* Setup WinPE for bootable USB
|
|
|
|
*/
|
|
|
|
static BOOL SetupWinPE(char drive_letter)
|
|
|
|
{
|
|
|
|
char src[64], dst[32];
|
|
|
|
const char* basedir[] = { "i386", "minint" };
|
2012-04-06 15:22:25 +00:00
|
|
|
const char* patch_str_org[] = { "\\minint\\txtsetup.sif", "\\minint\\system32\\" };
|
|
|
|
const char* patch_str_rep[] = { "\\i386\\txtsetup.sif", "\\i386\\system32\\" };
|
2012-03-27 19:31:15 +00:00
|
|
|
const char *win_nt_bt_org = "$win_nt$.~bt", *win_nt_bt_rep = "i386";
|
2012-03-25 21:09:24 +00:00
|
|
|
const char *rdisk_zero = "rdisk(0)";
|
2012-05-16 22:38:39 +00:00
|
|
|
char setupsrcdev[64];
|
2012-03-16 18:30:44 +00:00
|
|
|
HANDLE handle = INVALID_HANDLE_VALUE;
|
2012-03-27 19:31:15 +00:00
|
|
|
DWORD i, j, size, rw_size, index = 0;
|
|
|
|
BOOL r = FALSE;
|
2012-03-16 18:30:44 +00:00
|
|
|
char* buf = NULL;
|
|
|
|
|
|
|
|
index = ((iso_report.winpe&WINPE_I386) == WINPE_I386)?0:1;
|
2012-05-16 22:38:39 +00:00
|
|
|
// Allow other values than harddisk 1, as per user choice for disk ID
|
|
|
|
safe_sprintf(setupsrcdev, sizeof(setupsrcdev),
|
|
|
|
"SetupSourceDevice = \"\\device\\harddisk%d\\partition1\"", ComboBox_GetCurSel(hDiskID));
|
2012-04-06 15:22:25 +00:00
|
|
|
// Copy of ntdetect.com in root
|
|
|
|
safe_sprintf(src, sizeof(src), "%c:\\%s\\ntdetect.com", drive_letter, basedir[index]);
|
|
|
|
safe_sprintf(dst, sizeof(dst), "%c:\\ntdetect.com", drive_letter);
|
|
|
|
CopyFileA(src, dst, TRUE);
|
2012-03-27 19:31:15 +00:00
|
|
|
if (!iso_report.uses_minint) {
|
|
|
|
// Create a copy of txtsetup.sif, as we want to keep the i386 files unmodified
|
|
|
|
safe_sprintf(src, sizeof(src), "%c:\\%s\\txtsetup.sif", drive_letter, basedir[index]);
|
|
|
|
safe_sprintf(dst, sizeof(dst), "%c:\\txtsetup.sif", drive_letter);
|
2012-05-29 16:47:24 +00:00
|
|
|
if (!CopyFileA(src, dst, TRUE)) {
|
|
|
|
uprintf("Did not copy %s as %s: %s\n", src, dst, WindowsErrorString());
|
|
|
|
}
|
2012-03-27 19:31:15 +00:00
|
|
|
if (insert_section_data(dst, "[SetupData]", setupsrcdev, FALSE) == NULL) {
|
|
|
|
uprintf("Failed to add SetupSourceDevice in %s\n", dst);
|
|
|
|
goto out;
|
|
|
|
}
|
2013-06-20 14:41:22 +00:00
|
|
|
uprintf("Successfully added '%s' to %s\n", setupsrcdev, dst);
|
2012-03-16 18:30:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
safe_sprintf(src, sizeof(src), "%c:\\%s\\setupldr.bin", drive_letter, basedir[index]);
|
|
|
|
safe_sprintf(dst, sizeof(dst), "%c:\\BOOTMGR", drive_letter);
|
2012-05-29 16:47:24 +00:00
|
|
|
if (!CopyFileA(src, dst, TRUE)) {
|
|
|
|
uprintf("Did not copy %s as %s: %s\n", src, dst, WindowsErrorString());
|
|
|
|
}
|
2012-03-16 18:30:44 +00:00
|
|
|
|
|
|
|
// \minint with /minint option doesn't require further processing => return true
|
|
|
|
// \minint and no \i386 without /minint is unclear => return error
|
|
|
|
if (iso_report.winpe&WINPE_MININT) {
|
2012-03-27 19:31:15 +00:00
|
|
|
if (iso_report.uses_minint) {
|
2012-03-16 18:30:44 +00:00
|
|
|
uprintf("Detected \\minint directory with /minint option: nothing to patch\n");
|
|
|
|
r = TRUE;
|
|
|
|
} else if (!(iso_report.winpe&WINPE_I386)) {
|
|
|
|
uprintf("Detected \\minint directory only but no /minint option: not sure what to do\n");
|
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this stage we only handle \i386
|
2014-11-11 19:17:39 +00:00
|
|
|
handle = CreateFileA(dst, GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE,
|
|
|
|
NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
2012-03-16 18:30:44 +00:00
|
|
|
if (handle == INVALID_HANDLE_VALUE) {
|
|
|
|
uprintf("Could not open %s for patching: %s\n", dst, WindowsErrorString());
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
size = GetFileSize(handle, NULL);
|
|
|
|
if (size == INVALID_FILE_SIZE) {
|
|
|
|
uprintf("Could not get size for file %s: %s\n", dst, WindowsErrorString());
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
buf = (char*)malloc(size);
|
|
|
|
if (buf == NULL)
|
|
|
|
goto out;
|
|
|
|
if ((!ReadFile(handle, buf, size, &rw_size, NULL)) || (size != rw_size)) {
|
|
|
|
uprintf("Could not read file %s: %s\n", dst, WindowsErrorString());
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
SetFilePointer(handle, 0, NULL, FILE_BEGIN);
|
|
|
|
|
2012-03-27 19:31:15 +00:00
|
|
|
// Patch setupldr.bin
|
2012-03-16 18:30:44 +00:00
|
|
|
uprintf("Patching file %s\n", dst);
|
2012-03-27 19:31:15 +00:00
|
|
|
// Remove CRC check for 32 bit part of setupldr.bin from Win2k3
|
|
|
|
if ((size > 0x2061) && (buf[0x2060] == 0x74) && (buf[0x2061] == 0x03)) {
|
|
|
|
buf[0x2060] = 0xeb;
|
|
|
|
buf[0x2061] = 0x1a;
|
|
|
|
uprintf(" 0x00002060: 0x74 0x03 -> 0xEB 0x1A (disable Win2k3 CRC check)\n");
|
|
|
|
}
|
|
|
|
for (i=1; i<size-32; i++) {
|
2012-03-16 18:30:44 +00:00
|
|
|
for (j=0; j<ARRAYSIZE(patch_str_org); j++) {
|
|
|
|
if (safe_strnicmp(&buf[i], patch_str_org[j], strlen(patch_str_org[j])-1) == 0) {
|
2012-03-27 19:31:15 +00:00
|
|
|
uprintf(" 0x%08X: '%s' -> '%s'\n", i, &buf[i], patch_str_rep[j]);
|
|
|
|
strcpy(&buf[i], patch_str_rep[j]);
|
2012-03-29 19:27:53 +00:00
|
|
|
i += (DWORD)max(strlen(patch_str_org[j]), strlen(patch_str_rep[j])); // in case org is a substring of rep
|
2012-03-16 18:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-27 19:31:15 +00:00
|
|
|
if (!iso_report.uses_minint) {
|
|
|
|
// Additional setupldr.bin/bootmgr patching
|
2012-03-16 18:30:44 +00:00
|
|
|
for (i=0; i<size-32; i++) {
|
2012-05-16 22:38:39 +00:00
|
|
|
// rdisk(0) -> rdisk(#) disk masquerading
|
2012-05-29 16:47:24 +00:00
|
|
|
// NB: only the first one seems to be needed
|
2012-03-25 21:09:24 +00:00
|
|
|
if (safe_strnicmp(&buf[i], rdisk_zero, strlen(rdisk_zero)-1) == 0) {
|
2012-05-30 23:49:28 +00:00
|
|
|
buf[i+6] = 0x30 + ComboBox_GetCurSel(hDiskID);
|
2012-05-16 22:38:39 +00:00
|
|
|
uprintf(" 0x%08X: '%s' -> 'rdisk(%c)'\n", i, rdisk_zero, buf[i+6]);
|
2012-03-25 21:09:24 +00:00
|
|
|
}
|
2012-03-27 19:31:15 +00:00
|
|
|
// $WIN_NT$_~BT -> i386
|
|
|
|
if (safe_strnicmp(&buf[i], win_nt_bt_org, strlen(win_nt_bt_org)-1) == 0) {
|
|
|
|
uprintf(" 0x%08X: '%s' -> '%s%s'\n", i, &buf[i], win_nt_bt_rep, &buf[i+strlen(win_nt_bt_org)]);
|
|
|
|
strcpy(&buf[i], win_nt_bt_rep);
|
|
|
|
// This ensures that we keep the terminator backslash
|
|
|
|
buf[i+strlen(win_nt_bt_rep)] = buf[i+strlen(win_nt_bt_org)];
|
|
|
|
buf[i+strlen(win_nt_bt_rep)+1] = 0;
|
2012-03-16 18:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-27 19:31:15 +00:00
|
|
|
}
|
2012-03-16 18:30:44 +00:00
|
|
|
|
2012-03-27 19:31:15 +00:00
|
|
|
if ((!WriteFile(handle, buf, size, &rw_size, NULL)) || (size != rw_size)) {
|
|
|
|
uprintf("Could not write patched file: %s\n", WindowsErrorString());
|
|
|
|
goto out;
|
2012-03-16 18:30:44 +00:00
|
|
|
}
|
2012-03-27 19:31:15 +00:00
|
|
|
safe_free(buf);
|
|
|
|
safe_closehandle(handle);
|
|
|
|
|
2012-03-16 18:30:44 +00:00
|
|
|
r = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
safe_closehandle(handle);
|
|
|
|
safe_free(buf);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-02-10 21:54:47 +00:00
|
|
|
/*
|
|
|
|
* Detect if a Windows Format prompt is active, by enumerating the
|
|
|
|
* whole Windows tree and looking for the relevant popup
|
|
|
|
*/
|
|
|
|
static BOOL CALLBACK FormatPromptCallback(HWND hWnd, LPARAM lParam)
|
|
|
|
{
|
|
|
|
char str_buf[MAX_PATH];
|
|
|
|
HWND *hFound = (HWND*)lParam;
|
|
|
|
static const char* security_string = "Microsoft Windows";
|
|
|
|
|
|
|
|
// The format prompt has the popup window style
|
|
|
|
if (GetWindowLong(hWnd, GWL_STYLE) & WS_POPUPWINDOW) {
|
|
|
|
str_buf[0] = 0;
|
|
|
|
GetWindowTextA(hWnd, str_buf, MAX_PATH);
|
|
|
|
str_buf[MAX_PATH-1] = 0;
|
|
|
|
if (safe_strcmp(str_buf, security_string) == 0) {
|
|
|
|
*hFound = hWnd;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When we format a drive that doesn't have any existing partitions, we can't lock it
|
|
|
|
* prior to partitioning, which means that Windows will display a "You need to format the
|
2014-02-26 19:28:05 +00:00
|
|
|
* disk in drive X: before you can use it'. You will also get that popup if you start a
|
|
|
|
* bad blocks check and cancel it before it completes. We have to close that popup manually.
|
2013-02-10 21:54:47 +00:00
|
|
|
*/
|
|
|
|
DWORD WINAPI CloseFormatPromptThread(LPVOID param) {
|
|
|
|
HWND hFormatPrompt;
|
|
|
|
|
|
|
|
while(format_op_in_progress) {
|
|
|
|
hFormatPrompt = NULL;
|
|
|
|
EnumChildWindows(GetDesktopWindow(), FormatPromptCallback, (LPARAM)&hFormatPrompt);
|
|
|
|
if (hFormatPrompt != NULL) {
|
|
|
|
SendMessage(hFormatPrompt, WM_COMMAND, (WPARAM)IDCANCEL, (LPARAM)0);
|
|
|
|
uprintf("Closed Windows format prompt\n");
|
|
|
|
}
|
2014-02-26 19:28:05 +00:00
|
|
|
Sleep(100);
|
2013-02-10 21:54:47 +00:00
|
|
|
}
|
|
|
|
ExitThread(0);
|
|
|
|
}
|
|
|
|
|
2011-12-01 17:20:52 +00:00
|
|
|
/*
|
|
|
|
* Standalone thread for the formatting operation
|
2013-04-07 23:10:58 +00:00
|
|
|
* According to http://msdn.microsoft.com/en-us/library/windows/desktop/aa364562.aspx
|
|
|
|
* To change a volume file system
|
|
|
|
* Open a volume.
|
|
|
|
* Lock the volume.
|
|
|
|
* Format the volume.
|
|
|
|
* Dismount the volume.
|
|
|
|
* Unlock the volume.
|
|
|
|
* Close the volume handle.
|
2011-12-01 17:20:52 +00:00
|
|
|
*/
|
2013-06-25 17:39:07 +00:00
|
|
|
#define CHECK_FOR_USER_CANCEL if (IS_ERROR(FormatStatus)) goto out
|
2014-02-09 02:54:07 +00:00
|
|
|
DWORD WINAPI FormatThread(void* param)
|
2011-12-01 17:20:52 +00:00
|
|
|
{
|
2014-01-14 20:17:07 +00:00
|
|
|
int i, r, pt, bt, fs, dt;
|
2014-02-09 02:54:07 +00:00
|
|
|
BOOL s, ret, use_large_fat32;
|
|
|
|
DWORD rSize, wSize, LastRefresh = 0, DriveIndex = (DWORD)(uintptr_t)param;
|
2011-12-01 17:20:52 +00:00
|
|
|
HANDLE hPhysicalDrive = INVALID_HANDLE_VALUE;
|
|
|
|
HANDLE hLogicalVolume = INVALID_HANDLE_VALUE;
|
2014-02-09 02:54:07 +00:00
|
|
|
HANDLE hSourceImage = INVALID_HANDLE_VALUE;
|
2011-12-30 21:23:13 +00:00
|
|
|
SYSTEMTIME lt;
|
2014-02-09 02:54:07 +00:00
|
|
|
FILE* log_fd;
|
|
|
|
LARGE_INTEGER li;
|
|
|
|
uint64_t wb;
|
2014-02-17 22:41:04 +00:00
|
|
|
uint8_t *buffer = NULL;
|
2013-10-15 21:58:27 +00:00
|
|
|
char *bb_msg, *guid_volume = NULL;
|
2012-02-05 19:54:48 +00:00
|
|
|
char drive_name[] = "?:\\";
|
2014-01-14 20:17:07 +00:00
|
|
|
char drive_letters[27];
|
2011-12-30 21:23:13 +00:00
|
|
|
char logfile[MAX_PATH], *userdir;
|
2013-01-19 04:04:54 +00:00
|
|
|
char wim_image[] = "?:\\sources\\install.wim";
|
|
|
|
char efi_dst[] = "?:\\efi\\boot\\bootx64.efi";
|
2014-05-15 20:17:12 +00:00
|
|
|
char kolibri_dst[] = "?:\\MTLD_F32";
|
2014-11-14 23:40:00 +00:00
|
|
|
char grub4dos_dst[] = "?:\\grldr";
|
2014-05-12 21:44:10 +00:00
|
|
|
|
|
|
|
PF_TYPE_DECL(WINAPI, LANGID, GetThreadUILanguage, (void));
|
|
|
|
PF_TYPE_DECL(WINAPI, LANGID, SetThreadUILanguage, (LANGID));
|
|
|
|
PF_INIT(GetThreadUILanguage, Kernel32);
|
|
|
|
PF_INIT(SetThreadUILanguage, Kernel32);
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2013-01-20 22:46:11 +00:00
|
|
|
fs = (int)ComboBox_GetItemData(hFileSystem, ComboBox_GetCurSel(hFileSystem));
|
2013-01-24 21:30:11 +00:00
|
|
|
dt = (int)ComboBox_GetItemData(hBootType, ComboBox_GetCurSel(hBootType));
|
2013-01-20 22:46:11 +00:00
|
|
|
pt = GETPARTTYPE((int)ComboBox_GetItemData(hPartitionScheme, ComboBox_GetCurSel(hPartitionScheme)));
|
|
|
|
bt = GETBIOSTYPE((int)ComboBox_GetItemData(hPartitionScheme, ComboBox_GetCurSel(hPartitionScheme)));
|
2013-09-22 02:28:56 +00:00
|
|
|
use_large_fat32 = (fs == FS_FAT32) && ((SelectedDrive.DiskSize > LARGE_FAT32_SIZE) || (force_large_fat32));
|
2013-01-20 22:46:11 +00:00
|
|
|
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_225);
|
2013-04-07 23:10:58 +00:00
|
|
|
hPhysicalDrive = GetPhysicalHandle(DriveIndex, TRUE, TRUE);
|
2011-12-01 17:20:52 +00:00
|
|
|
if (hPhysicalDrive == INVALID_HANDLE_VALUE) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_OPEN_FAILED;
|
|
|
|
goto out;
|
|
|
|
}
|
2011-12-06 02:23:28 +00:00
|
|
|
|
2013-04-07 23:10:58 +00:00
|
|
|
// At this stage with have both a handle and a lock to the physical drive...
|
2014-01-14 20:17:07 +00:00
|
|
|
if (!GetDriveLetters(DriveIndex, drive_letters)) {
|
2013-11-14 01:21:50 +00:00
|
|
|
uprintf("Failed to get a drive letter\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_CANT_ASSIGN_LETTER);
|
|
|
|
goto out;
|
|
|
|
}
|
2014-01-14 20:17:07 +00:00
|
|
|
if (drive_letters[0] == 0) {
|
2013-04-07 23:10:58 +00:00
|
|
|
uprintf("No drive letter was assigned...\n");
|
|
|
|
drive_name[0] = GetUnusedDriveLetter();
|
2014-01-14 20:17:07 +00:00
|
|
|
if (drive_name[0] == 0) {
|
2013-04-07 23:10:58 +00:00
|
|
|
uprintf("Could not find a suitable drive letter\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_CANT_ASSIGN_LETTER);
|
2013-02-10 21:54:47 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2014-01-14 20:17:07 +00:00
|
|
|
} else {
|
|
|
|
// Unmount all mounted volumes that belong to this drive
|
|
|
|
// Do it in reverse so that we always end on the first volume letter
|
|
|
|
for (i=(int)safe_strlen(drive_letters); i>0; i--) {
|
|
|
|
drive_name[0] = drive_letters[i-1];
|
2014-08-08 23:10:12 +00:00
|
|
|
if (IsChecked(IDC_BOOT) && ((dt == DT_ISO) || (dt == DT_IMG))) {
|
|
|
|
// If we are using an image, check that it isn't located on the drive we are trying to format
|
|
|
|
if ((PathGetDriveNumberU(image_path) + 'A') == drive_letters[i-1]) {
|
|
|
|
uprintf("ABORTED: Cannot use an image that is located on the target drive!\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_ACCESS_DENIED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2014-01-14 20:17:07 +00:00
|
|
|
if (!DeleteVolumeMountPointA(drive_name)) {
|
|
|
|
uprintf("Failed to delete mountpoint %s: %s\n", drive_name, WindowsErrorString());
|
|
|
|
// Try to continue. We will bail out if this causes an issue.
|
|
|
|
}
|
|
|
|
}
|
2013-04-07 23:10:58 +00:00
|
|
|
}
|
2013-06-25 01:55:25 +00:00
|
|
|
uprintf("Will use '%c:' as volume mountpoint\n", drive_name[0]);
|
2013-04-07 23:10:58 +00:00
|
|
|
|
2013-06-25 01:55:25 +00:00
|
|
|
// ...but we need a lock to the logical drive to be able to write anything to it
|
2013-04-07 23:10:58 +00:00
|
|
|
hLogicalVolume = GetLogicalHandle(DriveIndex, FALSE, TRUE);
|
|
|
|
if (hLogicalVolume == INVALID_HANDLE_VALUE) {
|
|
|
|
uprintf("Could not lock volume\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_OPEN_FAILED;
|
|
|
|
goto out;
|
2013-06-25 01:55:25 +00:00
|
|
|
} else if (hLogicalVolume == NULL) {
|
|
|
|
// NULL is returned for cases where the drive is not yet partitioned
|
|
|
|
uprintf("Drive does not appear to be partitioned\n");
|
2013-06-25 17:39:07 +00:00
|
|
|
} else if (!UnmountVolume(hLogicalVolume)) {
|
|
|
|
uprintf("Trying to continue regardless...\n");
|
2011-12-11 02:19:38 +00:00
|
|
|
}
|
2013-06-25 17:39:07 +00:00
|
|
|
CHECK_FOR_USER_CANCEL;
|
2011-12-11 02:19:38 +00:00
|
|
|
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_226);
|
2014-02-09 02:54:07 +00:00
|
|
|
AnalyzeMBR(hPhysicalDrive, "Drive");
|
2013-07-05 21:20:46 +00:00
|
|
|
if ((hLogicalVolume != NULL) && (hLogicalVolume != INVALID_HANDLE_VALUE)) {
|
2013-06-25 01:55:25 +00:00
|
|
|
AnalyzePBR(hLogicalVolume);
|
|
|
|
}
|
2013-04-07 23:10:58 +00:00
|
|
|
UpdateProgress(OP_ANALYZE_MBR, -1.0f);
|
2011-12-13 23:29:09 +00:00
|
|
|
|
2013-07-05 21:20:46 +00:00
|
|
|
// Zap any existing partitions. This helps prevent access errors.
|
|
|
|
// As this creates issues with FAT16 formatted MS drives, only do this for other filesystems
|
|
|
|
if ( (fs != FS_FAT16) && (!DeletePartitions(hPhysicalDrive)) ) {
|
|
|
|
uprintf("Could not reset partitions\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_PARTITION_FAILURE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2014-02-26 19:28:05 +00:00
|
|
|
CreateThread(NULL, 0, CloseFormatPromptThread, NULL, 0, NULL);
|
2011-12-06 02:23:28 +00:00
|
|
|
if (IsChecked(IDC_BADBLOCKS)) {
|
2011-12-11 02:19:38 +00:00
|
|
|
do {
|
2011-12-30 21:23:13 +00:00
|
|
|
// create a log file for bad blocks report. Since %USERPROFILE% may
|
2013-06-25 17:39:07 +00:00
|
|
|
// have localized characters, we use the UTF-8 API.
|
2011-12-30 21:23:13 +00:00
|
|
|
userdir = getenvU("USERPROFILE");
|
|
|
|
safe_strcpy(logfile, MAX_PATH, userdir);
|
|
|
|
safe_free(userdir);
|
|
|
|
GetLocalTime(<);
|
|
|
|
safe_sprintf(&logfile[strlen(logfile)], sizeof(logfile)-strlen(logfile)-1,
|
|
|
|
"\\rufus_%04d%02d%02d_%02d%02d%02d.log",
|
|
|
|
lt.wYear, lt.wMonth, lt.wDay, lt.wHour, lt.wMinute, lt.wSecond);
|
|
|
|
log_fd = fopenU(logfile, "w+");
|
|
|
|
if (log_fd == NULL) {
|
|
|
|
uprintf("Could not create log file for bad blocks check\n");
|
|
|
|
} else {
|
2013-06-06 22:40:37 +00:00
|
|
|
fprintf(log_fd, APPLICATION_NAME " bad blocks check started on: %04d.%02d.%02d %02d:%02d:%02d\n",
|
2011-12-30 21:23:13 +00:00
|
|
|
lt.wYear, lt.wMonth, lt.wDay, lt.wHour, lt.wMinute, lt.wSecond);
|
|
|
|
fflush(log_fd);
|
|
|
|
}
|
|
|
|
|
2011-12-11 02:19:38 +00:00
|
|
|
if (!BadBlocks(hPhysicalDrive, SelectedDrive.DiskSize,
|
2012-01-08 23:41:20 +00:00
|
|
|
SelectedDrive.Geometry.BytesPerSector, ComboBox_GetCurSel(hNBPasses)+1, &report, log_fd)) {
|
2012-03-03 22:59:58 +00:00
|
|
|
uprintf("Bad blocks: Check failed.\n");
|
2013-06-25 17:39:07 +00:00
|
|
|
if (!IS_ERROR(FormatStatus))
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_BADBLOCKS_FAILURE);
|
2014-10-28 19:16:35 +00:00
|
|
|
ClearMBRGPT(hPhysicalDrive, SelectedDrive.DiskSize, SelectedDrive.Geometry.BytesPerSector, FALSE);
|
2012-03-03 22:59:58 +00:00
|
|
|
fclose(log_fd);
|
|
|
|
_unlink(logfile);
|
2011-12-09 01:39:13 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2014-03-29 00:42:49 +00:00
|
|
|
uprintf("Bad Blocks: Check completed, %d bad block%s found. (%d/%d/%d errors)\n",
|
2011-12-11 02:19:38 +00:00
|
|
|
report.bb_count, (report.bb_count==1)?"":"s",
|
|
|
|
report.num_read_errors, report.num_write_errors, report.num_corruption_errors);
|
|
|
|
r = IDOK;
|
|
|
|
if (report.bb_count) {
|
2014-03-29 00:42:49 +00:00
|
|
|
bb_msg = lmprintf(MSG_011, report.bb_count, report.num_read_errors, report.num_write_errors,
|
2011-12-11 02:19:38 +00:00
|
|
|
report.num_corruption_errors);
|
2013-10-15 21:58:27 +00:00
|
|
|
fprintf(log_fd, bb_msg);
|
2012-03-03 22:59:58 +00:00
|
|
|
GetLocalTime(<);
|
2013-06-06 22:40:37 +00:00
|
|
|
fprintf(log_fd, APPLICATION_NAME " bad blocks check ended on: %04d.%02d.%02d %02d:%02d:%02d\n",
|
2012-03-03 22:59:58 +00:00
|
|
|
lt.wYear, lt.wMonth, lt.wDay, lt.wHour, lt.wMinute, lt.wSecond);
|
2011-12-30 21:23:13 +00:00
|
|
|
fclose(log_fd);
|
2013-10-15 21:58:27 +00:00
|
|
|
r = MessageBoxU(hMainDialog, lmprintf(MSG_012, bb_msg, logfile),
|
2014-01-24 02:46:06 +00:00
|
|
|
lmprintf(MSG_010), MB_ABORTRETRYIGNORE|MB_ICONWARNING|MB_IS_RTL);
|
2011-12-30 21:23:13 +00:00
|
|
|
} else {
|
|
|
|
// We didn't get any errors => delete the log file
|
|
|
|
fclose(log_fd);
|
|
|
|
_unlink(logfile);
|
2011-12-11 02:19:38 +00:00
|
|
|
}
|
|
|
|
} while (r == IDRETRY);
|
|
|
|
if (r == IDABORT) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_CANCELLED;
|
|
|
|
goto out;
|
2011-12-08 00:22:13 +00:00
|
|
|
}
|
2011-12-06 02:23:28 +00:00
|
|
|
}
|
2014-02-09 02:54:07 +00:00
|
|
|
|
2014-08-07 00:45:46 +00:00
|
|
|
// Especially after destructive badblocks test, you must zero the MBR/GPT completely
|
|
|
|
// before repartitioning. Else, all kind of bad things happen.
|
2014-10-28 19:16:35 +00:00
|
|
|
if (!ClearMBRGPT(hPhysicalDrive, SelectedDrive.DiskSize, SelectedDrive.Geometry.BytesPerSector, use_large_fat32)) {
|
2014-08-07 00:45:46 +00:00
|
|
|
uprintf("unable to zero MBR/GPT\n");
|
|
|
|
if (!IS_ERROR(FormatStatus))
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2014-02-09 02:54:07 +00:00
|
|
|
// Write an image file
|
2014-08-08 23:10:12 +00:00
|
|
|
if (IsChecked(IDC_BOOT) && (dt == DT_IMG)) {
|
2014-08-07 00:45:46 +00:00
|
|
|
char fs_type[32];
|
2014-05-22 00:52:25 +00:00
|
|
|
// We poked the MBR and other stuff, so we need to rewind
|
2014-02-09 02:54:07 +00:00
|
|
|
li.QuadPart = 0;
|
2014-05-22 00:52:25 +00:00
|
|
|
if (!SetFilePointerEx(hPhysicalDrive, li, NULL, FILE_BEGIN))
|
|
|
|
uprintf("Warning: Unable to rewind image position - wrong data might be copied!");
|
2014-11-11 19:17:39 +00:00
|
|
|
hSourceImage = CreateFileU(image_path, GENERIC_READ, FILE_SHARE_READ, NULL,
|
|
|
|
OPEN_EXISTING, FILE_FLAG_SEQUENTIAL_SCAN, NULL);
|
2014-02-09 02:54:07 +00:00
|
|
|
if (hSourceImage == INVALID_HANDLE_VALUE) {
|
2014-05-22 00:52:25 +00:00
|
|
|
uprintf("Could not open image '%s': %s", image_path, WindowsErrorString());
|
2014-02-09 02:54:07 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_OPEN_FAILED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
uprintf("Writing Image...");
|
2014-02-17 22:41:04 +00:00
|
|
|
buffer = (uint8_t*)malloc(DD_BUFFER_SIZE);
|
|
|
|
if (buffer == NULL) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NOT_ENOUGH_MEMORY;
|
|
|
|
uprintf("could not allocate DD buffer");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2014-02-09 23:38:16 +00:00
|
|
|
// Don't bother trying for something clever, using double buffering overlapped and whatnot:
|
|
|
|
// With Windows' default optimizations, sync read + sync write for sequential operations
|
|
|
|
// will be as fast, if not faster, than whatever async scheme you can come up with.
|
2014-02-09 02:54:07 +00:00
|
|
|
for (wb = 0; ; wb += wSize) {
|
2014-02-17 22:41:04 +00:00
|
|
|
s = ReadFile(hSourceImage, buffer, DD_BUFFER_SIZE, &rSize, NULL);
|
2014-02-09 02:54:07 +00:00
|
|
|
if (!s) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_READ_FAULT;
|
|
|
|
uprintf("read error: %s", WindowsErrorString());
|
2014-02-09 23:38:16 +00:00
|
|
|
goto out;
|
2014-02-09 02:54:07 +00:00
|
|
|
}
|
|
|
|
if (rSize == 0)
|
|
|
|
break;
|
|
|
|
if (GetTickCount() > LastRefresh + 25) {
|
|
|
|
LastRefresh = GetTickCount();
|
|
|
|
format_percent = (100.0f*wb)/(1.0f*iso_report.projected_size);
|
|
|
|
PrintStatus(0, FALSE, MSG_261, format_percent);
|
|
|
|
UpdateProgress(OP_FORMAT, format_percent);
|
|
|
|
}
|
2014-05-22 00:52:25 +00:00
|
|
|
// Don't overflow our projected size (mostly for VHDs)
|
|
|
|
if (wb + rSize > iso_report.projected_size) {
|
|
|
|
rSize = (DWORD)(iso_report.projected_size - wb);
|
|
|
|
}
|
2014-02-09 23:38:16 +00:00
|
|
|
for (i=0; i<WRITE_RETRIES; i++) {
|
2014-05-23 00:03:01 +00:00
|
|
|
CHECK_FOR_USER_CANCEL;
|
2014-02-09 23:38:16 +00:00
|
|
|
s = WriteFile(hPhysicalDrive, buffer, rSize, &wSize, NULL);
|
|
|
|
if ((s) && (wSize == rSize))
|
|
|
|
break;
|
2014-02-09 02:54:07 +00:00
|
|
|
if (s)
|
|
|
|
uprintf("write error: Wrote %d bytes, expected %d bytes\n", wSize, rSize);
|
|
|
|
else
|
|
|
|
uprintf("write error: %s", WindowsErrorString());
|
2014-02-09 23:38:16 +00:00
|
|
|
if (i < WRITE_RETRIES-1) {
|
|
|
|
li.QuadPart = wb;
|
|
|
|
SetFilePointerEx(hPhysicalDrive, li, NULL, FILE_BEGIN);
|
|
|
|
uprintf(" RETRYING...\n");
|
|
|
|
} else {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i >= WRITE_RETRIES) goto out;
|
2014-02-09 02:54:07 +00:00
|
|
|
}
|
2014-08-07 00:45:46 +00:00
|
|
|
|
|
|
|
// If the image contains a partition we might be able to access, try to re-mount it
|
|
|
|
RefreshDriveLayout(hPhysicalDrive);
|
|
|
|
safe_unlockclose(hPhysicalDrive);
|
|
|
|
safe_unlockclose(hLogicalVolume);
|
|
|
|
Sleep(200);
|
|
|
|
WaitForLogical(DriveIndex);
|
|
|
|
if (GetDrivePartitionData(SelectedDrive.DeviceNumber, fs_type, sizeof(fs_type), TRUE)) {
|
|
|
|
guid_volume = GetLogicalName(DriveIndex, TRUE, TRUE);
|
|
|
|
if ((guid_volume != NULL) && (MountVolume(drive_name, guid_volume)))
|
|
|
|
uprintf("Remounted %s on %s\n", guid_volume, drive_name);
|
|
|
|
}
|
|
|
|
|
2014-02-09 02:54:07 +00:00
|
|
|
uprintf("Done");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2014-08-07 00:45:46 +00:00
|
|
|
UpdateProgress(OP_ZERO_MBR, -1.0f);
|
|
|
|
CHECK_FOR_USER_CANCEL;
|
|
|
|
|
|
|
|
if (!CreatePartition(hPhysicalDrive, pt, fs, (pt==PARTITION_STYLE_MBR)&&(bt==BT_UEFI))) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_PARTITION_FAILURE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
UpdateProgress(OP_PARTITION, -1.0f);
|
|
|
|
|
2013-06-25 17:39:07 +00:00
|
|
|
// Close the (unmounted) volume before formatting
|
2013-07-05 21:20:46 +00:00
|
|
|
if ((hLogicalVolume != NULL) && (hLogicalVolume != INVALID_HANDLE_VALUE)) {
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_227);
|
2013-06-25 01:55:25 +00:00
|
|
|
if (!CloseHandle(hLogicalVolume)) {
|
|
|
|
uprintf("Could not close volume: %s\n", WindowsErrorString());
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_ACCESS_DENIED;
|
|
|
|
goto out;
|
|
|
|
}
|
2013-04-07 23:10:58 +00:00
|
|
|
}
|
|
|
|
hLogicalVolume = INVALID_HANDLE_VALUE;
|
|
|
|
|
2013-06-25 17:39:07 +00:00
|
|
|
// Wait for the logical drive we just created to appear
|
|
|
|
uprintf("Waiting for logical drive to reappear...\n");
|
|
|
|
Sleep(200);
|
|
|
|
WaitForLogical(DriveIndex); // We try to continue even if this fails, just in case
|
|
|
|
CHECK_FOR_USER_CANCEL;
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2012-11-03 17:40:33 +00:00
|
|
|
// If FAT32 is requested and we have a large drive (>32 GB) use
|
|
|
|
// large FAT32 format, else use MS's FormatEx.
|
2013-09-22 02:28:56 +00:00
|
|
|
ret = use_large_fat32?FormatFAT32(DriveIndex):FormatDrive(DriveIndex);
|
2012-11-03 17:40:33 +00:00
|
|
|
if (!ret) {
|
2011-12-01 17:20:52 +00:00
|
|
|
// Error will be set by FormatDrive() in FormatStatus
|
2013-12-19 23:56:40 +00:00
|
|
|
uprintf("Format error: %s\n", StrError(FormatStatus, TRUE));
|
2011-12-01 17:20:52 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2013-06-25 17:39:07 +00:00
|
|
|
// Thanks to Microsoft, we must fix the MBR AFTER the drive has been formatted
|
2013-01-20 22:46:11 +00:00
|
|
|
if (pt == PARTITION_STYLE_MBR) {
|
2014-01-05 01:39:41 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_228); // "Writing master boot record..."
|
2014-11-17 23:41:46 +00:00
|
|
|
if ((!WriteMBR(hPhysicalDrive)) || (!WriteSBR(hPhysicalDrive))) {
|
2013-06-25 17:39:07 +00:00
|
|
|
if (!IS_ERROR(FormatStatus))
|
2013-01-18 01:39:24 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
UpdateProgress(OP_FIX_MBR, -1.0f);
|
2011-12-01 17:20:52 +00:00
|
|
|
}
|
2013-06-25 17:39:07 +00:00
|
|
|
Sleep(200);
|
|
|
|
WaitForLogical(DriveIndex);
|
|
|
|
// Try to continue
|
|
|
|
CHECK_FOR_USER_CANCEL;
|
|
|
|
|
|
|
|
guid_volume = GetLogicalName(DriveIndex, TRUE, TRUE);
|
|
|
|
if (guid_volume == NULL) {
|
|
|
|
uprintf("Could not get GUID volume name\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NO_VOLUME_ID;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
uprintf("Found volume GUID %s\n", guid_volume);
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2013-06-25 01:55:25 +00:00
|
|
|
if (!MountVolume(drive_name, guid_volume)) {
|
2013-04-07 23:10:58 +00:00
|
|
|
uprintf("Could not remount %s on %s: %s\n", guid_volume, drive_name, WindowsErrorString());
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_CANT_MOUNT_VOLUME);
|
|
|
|
goto out;
|
|
|
|
}
|
2013-06-25 17:39:07 +00:00
|
|
|
CHECK_FOR_USER_CANCEL;
|
2013-04-07 23:10:58 +00:00
|
|
|
|
2013-01-24 21:30:11 +00:00
|
|
|
if (IsChecked(IDC_BOOT)) {
|
2013-01-20 22:46:11 +00:00
|
|
|
if (bt == BT_UEFI) {
|
2013-01-18 01:39:24 +00:00
|
|
|
// For once, no need to do anything - just check our sanity
|
2013-12-11 19:00:57 +00:00
|
|
|
if ( (dt != DT_ISO) || (!IS_EFI(iso_report)) || (fs > FS_NTFS) ) {
|
2013-01-18 01:39:24 +00:00
|
|
|
uprintf("Spock gone crazy error!\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_INSTALL_FAILURE;
|
|
|
|
goto out;
|
|
|
|
}
|
2014-11-17 23:41:46 +00:00
|
|
|
} else if ((((dt == DT_WINME) || (dt == DT_FREEDOS) || (dt == DT_GRUB4DOS) || (dt == DT_GRUB2) || (dt == DT_REACTOS)) &&
|
|
|
|
(!use_large_fat32)) || ((dt == DT_ISO) && ((fs == FS_NTFS)||(iso_report.has_kolibrios||IS_GRUB(iso_report))))) {
|
2012-01-12 02:52:40 +00:00
|
|
|
// We still have a lock, which we need to modify the volume boot record
|
|
|
|
// => no need to reacquire the lock...
|
2013-04-07 23:10:58 +00:00
|
|
|
hLogicalVolume = GetLogicalHandle(DriveIndex, TRUE, FALSE);
|
2013-06-25 01:55:25 +00:00
|
|
|
if ((hLogicalVolume == INVALID_HANDLE_VALUE) || (hLogicalVolume == NULL)) {
|
2012-01-12 02:52:40 +00:00
|
|
|
uprintf("Could not re-mount volume for partition boot record access\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_OPEN_FAILED;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-02-24 18:51:33 +00:00
|
|
|
// NB: if you unmount the logical volume here, XP will report error:
|
|
|
|
// [0x00000456] The media in the drive may have changed
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_229);
|
2012-02-14 01:23:42 +00:00
|
|
|
if (!WritePBR(hLogicalVolume)) {
|
2013-06-25 17:39:07 +00:00
|
|
|
if (!IS_ERROR(FormatStatus))
|
2012-02-14 01:23:42 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
2012-01-12 02:52:40 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2012-02-15 00:52:40 +00:00
|
|
|
// We must close and unlock the volume to write files to it
|
|
|
|
safe_unlockclose(hLogicalVolume);
|
2014-11-12 02:38:13 +00:00
|
|
|
} else if ( (dt == DT_SYSLINUX_V4) || (dt == DT_SYSLINUX_V6) || ((dt == DT_ISO) && ((fs == FS_FAT16) || (fs == FS_FAT32))) ) {
|
2014-11-11 19:53:39 +00:00
|
|
|
if (!InstallSyslinux(DriveIndex, drive_name[0], fs)) {
|
2012-01-12 11:04:03 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_INSTALL_FAILURE;
|
2012-01-12 02:52:40 +00:00
|
|
|
}
|
2011-12-01 17:20:52 +00:00
|
|
|
}
|
2012-02-21 19:46:28 +00:00
|
|
|
} else {
|
|
|
|
if (IsChecked(IDC_SET_ICON))
|
|
|
|
SetAutorun(drive_name);
|
2011-12-01 17:20:52 +00:00
|
|
|
}
|
2013-06-25 17:39:07 +00:00
|
|
|
CHECK_FOR_USER_CANCEL;
|
2011-12-01 17:20:52 +00:00
|
|
|
|
2012-02-14 01:23:42 +00:00
|
|
|
// We issue a complete remount of the filesystem at on account of:
|
2012-02-05 19:54:48 +00:00
|
|
|
// - Ensuring the file explorer properly detects that the volume was updated
|
|
|
|
// - Ensuring that an NTFS system will be reparsed so that it becomes bootable
|
2013-06-25 01:55:25 +00:00
|
|
|
if (!RemountVolume(drive_name))
|
2012-02-21 00:08:31 +00:00
|
|
|
goto out;
|
2013-06-25 17:39:07 +00:00
|
|
|
CHECK_FOR_USER_CANCEL;
|
2012-02-14 01:23:42 +00:00
|
|
|
|
2013-01-24 21:30:11 +00:00
|
|
|
if (IsChecked(IDC_BOOT)) {
|
2012-03-03 23:12:48 +00:00
|
|
|
if ((dt == DT_WINME) || (dt == DT_FREEDOS)) {
|
2012-03-29 19:27:53 +00:00
|
|
|
UpdateProgress(OP_DOS, -1.0f);
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_230);
|
2012-02-14 01:23:42 +00:00
|
|
|
if (!ExtractDOS(drive_name)) {
|
2013-06-25 17:39:07 +00:00
|
|
|
if (!IS_ERROR(FormatStatus))
|
2012-02-14 01:23:42 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_CANNOT_COPY;
|
|
|
|
goto out;
|
|
|
|
}
|
2014-11-14 23:40:00 +00:00
|
|
|
} else if (dt == DT_GRUB4DOS) {
|
|
|
|
grub4dos_dst[0] = drive_name[0];
|
|
|
|
uprintf("Installing: %s (Grub4DOS loader)\n", grub4dos_dst);
|
|
|
|
IGNORE_RETVAL(_chdirU(app_dir));
|
|
|
|
if (!CopyFileU(FILES_DIR "\\grub4dos\\grldr", grub4dos_dst, FALSE))
|
|
|
|
uprintf("Failed to copy file: %s", WindowsErrorString());
|
2012-03-03 23:12:48 +00:00
|
|
|
} else if (dt == DT_ISO) {
|
2014-05-22 00:52:25 +00:00
|
|
|
if (image_path != NULL) {
|
2012-03-29 19:27:53 +00:00
|
|
|
UpdateProgress(OP_DOS, 0.0f);
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_231);
|
2012-02-14 01:23:42 +00:00
|
|
|
drive_name[2] = 0;
|
2014-05-22 00:52:25 +00:00
|
|
|
if (!ExtractISO(image_path, drive_name, FALSE)) {
|
2013-06-25 17:39:07 +00:00
|
|
|
if (!IS_ERROR(FormatStatus))
|
2012-03-01 19:19:12 +00:00
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_CANNOT_COPY;
|
2012-02-14 01:23:42 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2014-05-15 20:17:12 +00:00
|
|
|
if (iso_report.has_kolibrios) {
|
|
|
|
kolibri_dst[0] = drive_name[0];
|
|
|
|
uprintf("Installing: %s (KolibriOS loader)\n", kolibri_dst);
|
2014-05-22 00:52:25 +00:00
|
|
|
if (ExtractISOFile(image_path, "HD_Load/USB_Boot/MTLD_F32", kolibri_dst,
|
2014-05-15 20:17:12 +00:00
|
|
|
FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM) == 0) {
|
|
|
|
uprintf("Warning: loader installation failed - KolibriOS will not boot!\n");
|
|
|
|
}
|
|
|
|
}
|
2013-01-20 22:46:11 +00:00
|
|
|
if ((bt == BT_UEFI) && (!iso_report.has_efi) && (iso_report.has_win7_efi)) {
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_232);
|
2013-01-19 04:04:54 +00:00
|
|
|
wim_image[0] = drive_name[0];
|
|
|
|
efi_dst[0] = drive_name[0];
|
|
|
|
efi_dst[sizeof(efi_dst) - sizeof("\\bootx64.efi")] = 0;
|
|
|
|
if (!CreateDirectoryA(efi_dst, 0)) {
|
|
|
|
uprintf("Could not create directory '%s': %s\n", WindowsErrorString());
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_CANT_PATCH);
|
|
|
|
} else {
|
|
|
|
efi_dst[sizeof(efi_dst) - sizeof("\\bootx64.efi")] = '\\';
|
2013-01-20 22:46:11 +00:00
|
|
|
if (!WimExtractFile(wim_image, 1, "Windows\\Boot\\EFI\\bootmgfw.efi", efi_dst)) {
|
2013-01-19 04:04:54 +00:00
|
|
|
uprintf("Failed to setup Win7 EFI boot\n");
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_CANT_PATCH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-14 01:23:42 +00:00
|
|
|
}
|
2013-01-20 22:46:11 +00:00
|
|
|
if ( (bt == BT_BIOS) && (IS_WINPE(iso_report.winpe)) ) {
|
2012-03-16 18:30:44 +00:00
|
|
|
// Apply WinPe fixup
|
2012-03-27 19:31:15 +00:00
|
|
|
if (!SetupWinPE(drive_name[0]))
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|APPERR(ERROR_CANT_PATCH);
|
2012-03-16 18:30:44 +00:00
|
|
|
}
|
2012-02-05 19:54:48 +00:00
|
|
|
}
|
2012-03-29 19:27:53 +00:00
|
|
|
UpdateProgress(OP_FINALIZE, -1.0f);
|
2013-12-19 23:56:40 +00:00
|
|
|
PrintStatus(0, TRUE, MSG_233);
|
2012-02-21 19:46:28 +00:00
|
|
|
if (IsChecked(IDC_SET_ICON))
|
|
|
|
SetAutorun(drive_name);
|
2012-02-21 00:08:31 +00:00
|
|
|
// Issue another complete remount before we exit, to ensure we're clean
|
2013-06-25 01:55:25 +00:00
|
|
|
RemountVolume(drive_name);
|
2012-03-09 01:38:52 +00:00
|
|
|
// NTFS fixup (WinPE/AIK images don't seem to boot without an extra checkdisk)
|
2012-03-29 19:27:53 +00:00
|
|
|
if ((dt == DT_ISO) && (fs == FS_NTFS)) {
|
2013-12-28 01:27:09 +00:00
|
|
|
// Try to ensure that all messages from Checkdisk will be in English
|
2014-01-21 10:45:49 +00:00
|
|
|
if ((pfGetThreadUILanguage != NULL) && (PRIMARYLANGID(pfGetThreadUILanguage()) != LANG_ENGLISH)) {
|
2013-12-28 01:27:09 +00:00
|
|
|
pfSetThreadUILanguage(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US));
|
|
|
|
if (PRIMARYLANGID(pfGetThreadUILanguage()) != LANG_ENGLISH)
|
|
|
|
uprintf("Note: CheckDisk messages may be localized");
|
|
|
|
}
|
2012-03-09 01:38:52 +00:00
|
|
|
CheckDisk(drive_name[0]);
|
2012-03-29 19:27:53 +00:00
|
|
|
UpdateProgress(OP_FINALIZE, -1.0f);
|
|
|
|
}
|
2012-02-05 19:54:48 +00:00
|
|
|
}
|
2012-02-03 18:19:50 +00:00
|
|
|
|
2011-12-01 17:20:52 +00:00
|
|
|
out:
|
2013-04-07 23:10:58 +00:00
|
|
|
safe_free(guid_volume);
|
2014-02-17 22:41:04 +00:00
|
|
|
safe_free(buffer);
|
2014-05-19 22:25:00 +00:00
|
|
|
SendMessage(hISOProgressDlg, UM_PROGRESS_EXIT, 0, 0);
|
2014-02-09 23:38:16 +00:00
|
|
|
safe_closehandle(hSourceImage);
|
2011-12-01 17:20:52 +00:00
|
|
|
safe_unlockclose(hLogicalVolume);
|
2013-04-07 23:10:58 +00:00
|
|
|
safe_unlockclose(hPhysicalDrive); // This can take a while
|
2014-01-05 19:54:19 +00:00
|
|
|
if (IS_ERROR(FormatStatus)) {
|
|
|
|
guid_volume = GetLogicalName(DriveIndex, TRUE, FALSE);
|
|
|
|
if (guid_volume != NULL) {
|
|
|
|
if (MountVolume(drive_name, guid_volume))
|
|
|
|
uprintf("Re-mounted volume as '%c:' after error\n", drive_name[0]);
|
|
|
|
free(guid_volume);
|
|
|
|
}
|
|
|
|
}
|
2011-12-01 17:20:52 +00:00
|
|
|
PostMessage(hMainDialog, UM_FORMAT_COMPLETED, 0, 0);
|
2012-02-07 02:05:58 +00:00
|
|
|
ExitThread(0);
|
2011-12-01 17:20:52 +00:00
|
|
|
}
|
2014-05-23 00:03:01 +00:00
|
|
|
|
|
|
|
DWORD WINAPI SaveImageThread(void* param)
|
|
|
|
{
|
|
|
|
BOOL s;
|
|
|
|
DWORD rSize, wSize, LastRefresh = 0, DriveIndex = (DWORD)(uintptr_t)param;
|
|
|
|
HANDLE hPhysicalDrive = INVALID_HANDLE_VALUE;
|
|
|
|
HANDLE hDestImage = INVALID_HANDLE_VALUE;
|
|
|
|
LARGE_INTEGER li;
|
|
|
|
uint8_t *buffer = NULL;
|
|
|
|
uint64_t wb;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
PrintStatus(0, TRUE, MSG_225);
|
|
|
|
hPhysicalDrive = GetPhysicalHandle(DriveIndex, FALSE, TRUE);
|
|
|
|
if (hPhysicalDrive == INVALID_HANDLE_VALUE) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_OPEN_FAILED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write an image file
|
|
|
|
// We poked the MBR and other stuff, so we need to rewind
|
|
|
|
li.QuadPart = 0;
|
|
|
|
if (!SetFilePointerEx(hPhysicalDrive, li, NULL, FILE_BEGIN))
|
|
|
|
uprintf("Warning: Unable to rewind device position - wrong data might be copied!");
|
2014-11-11 19:17:39 +00:00
|
|
|
hDestImage = CreateFileU(image_path, GENERIC_WRITE, FILE_SHARE_WRITE, NULL,
|
|
|
|
CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
|
2014-05-23 00:03:01 +00:00
|
|
|
if (hDestImage == INVALID_HANDLE_VALUE) {
|
|
|
|
uprintf("Could not open image '%s': %s", image_path, WindowsErrorString());
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_OPEN_FAILED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
uprintf("Saving to image '%s'...", image_path);
|
|
|
|
buffer = (uint8_t*)malloc(DD_BUFFER_SIZE);
|
|
|
|
if (buffer == NULL) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_NOT_ENOUGH_MEMORY;
|
|
|
|
uprintf("could not allocate buffer");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't bother trying for something clever, using double buffering overlapped and whatnot:
|
|
|
|
// With Windows' default optimizations, sync read + sync write for sequential operations
|
|
|
|
// will be as fast, if not faster, than whatever async scheme you can come up with.
|
|
|
|
for (wb = 0; ; wb += wSize) {
|
|
|
|
s = ReadFile(hPhysicalDrive, buffer,
|
|
|
|
(DWORD)MIN(DD_BUFFER_SIZE, SelectedDrive.DiskSize - wb), &rSize, NULL);
|
|
|
|
if (!s) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_READ_FAULT;
|
|
|
|
uprintf("read error: %s", WindowsErrorString());
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (rSize == 0)
|
|
|
|
break;
|
|
|
|
if (GetTickCount() > LastRefresh + 25) {
|
|
|
|
LastRefresh = GetTickCount();
|
|
|
|
format_percent = (100.0f*wb)/(1.0f*SelectedDrive.DiskSize);
|
|
|
|
PrintStatus(0, FALSE, MSG_261, format_percent);
|
|
|
|
UpdateProgress(OP_FORMAT, format_percent);
|
|
|
|
}
|
|
|
|
for (i=0; i<WRITE_RETRIES; i++) {
|
|
|
|
CHECK_FOR_USER_CANCEL;
|
|
|
|
s = WriteFile(hDestImage, buffer, rSize, &wSize, NULL);
|
|
|
|
if ((s) && (wSize == rSize))
|
|
|
|
break;
|
|
|
|
if (s)
|
|
|
|
uprintf("write error: Wrote %d bytes, expected %d bytes\n", wSize, rSize);
|
|
|
|
else
|
|
|
|
uprintf("write error: %s", WindowsErrorString());
|
|
|
|
if (i < WRITE_RETRIES-1) {
|
|
|
|
li.QuadPart = wb;
|
|
|
|
SetFilePointerEx(hDestImage, li, NULL, FILE_BEGIN);
|
|
|
|
uprintf(" RETRYING...\n");
|
|
|
|
} else {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i >= WRITE_RETRIES) goto out;
|
|
|
|
}
|
|
|
|
if (wb != SelectedDrive.DiskSize) {
|
|
|
|
uprintf("Error: wrote %llu bytes, expected %llu", wb, SelectedDrive.DiskSize);
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
uprintf("%llu bytes written", wb);
|
|
|
|
uprintf("Appending VHD footer...");
|
|
|
|
if (!AppendVHDFooter(image_path)) {
|
|
|
|
FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_WRITE_FAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
uprintf("Done");
|
|
|
|
|
|
|
|
out:
|
|
|
|
safe_free(buffer);
|
|
|
|
SendMessage(hISOProgressDlg, UM_PROGRESS_EXIT, 0, 0);
|
|
|
|
safe_closehandle(hDestImage);
|
|
|
|
safe_unlockclose(hPhysicalDrive);
|
|
|
|
PostMessage(hMainDialog, UM_FORMAT_COMPLETED, 0, 0);
|
|
|
|
ExitThread(0);
|
|
|
|
}
|