mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
472db8b592
* bootmgr ISOs only * extraction and ISO support UI improvements * UTF8 support through CreateFileU * cancellation on ISO file extraction * switch to using CreateThread
235 lines
6.6 KiB
C
235 lines
6.6 KiB
C
/*
|
|
* Rufus: The Reliable USB Formatting Utility
|
|
* Standard I/O Routines (logging, status, etc.)
|
|
* Copyright (c) 2011-2012 Pete Batard <pete@akeo.ie>
|
|
*
|
|
* 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 <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
|
|
#include "msapi_utf8.h"
|
|
#include "rufus.h"
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Globals
|
|
*/
|
|
HWND hStatus;
|
|
|
|
#ifdef RUFUS_DEBUG
|
|
void _uprintf(const char *format, ...)
|
|
{
|
|
char buf[4096], *p = buf;
|
|
va_list args;
|
|
int n;
|
|
|
|
va_start(args, format);
|
|
n = safe_vsnprintf(p, sizeof(buf)-3, format, args); // buf-3 is room for CR/LF/NUL
|
|
va_end(args);
|
|
|
|
p += (n < 0)?sizeof(buf)-3:n;
|
|
|
|
while((p>buf) && (isspace(p[-1])))
|
|
*--p = '\0';
|
|
|
|
*p++ = '\r';
|
|
*p++ = '\n';
|
|
*p = '\0';
|
|
|
|
OutputDebugStringA(buf);
|
|
}
|
|
#endif
|
|
|
|
void DumpBufferHex(void *buf, size_t size)
|
|
{
|
|
unsigned char* buffer = (unsigned char*)buf;
|
|
size_t i, j, k;
|
|
char line[80] = "";
|
|
|
|
for (i=0; i<size; i+=16) {
|
|
if (i!=0)
|
|
uprintf("%s\n", line);
|
|
line[0] = 0;
|
|
sprintf(&line[strlen(line)], " %08x ", (unsigned int)i);
|
|
for(j=0,k=0; k<16; j++,k++) {
|
|
if (i+j < size) {
|
|
sprintf(&line[strlen(line)], "%02x", buffer[i+j]);
|
|
} else {
|
|
sprintf(&line[strlen(line)], " ");
|
|
}
|
|
sprintf(&line[strlen(line)], " ");
|
|
}
|
|
sprintf(&line[strlen(line)], " ");
|
|
for(j=0,k=0; k<16; j++,k++) {
|
|
if (i+j < size) {
|
|
if ((buffer[i+j] < 32) || (buffer[i+j] > 126)) {
|
|
sprintf(&line[strlen(line)], ".");
|
|
} else {
|
|
sprintf(&line[strlen(line)], "%c", buffer[i+j]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
uprintf("%s\n", line);
|
|
}
|
|
|
|
/*
|
|
* Convert a windows error to human readable string
|
|
* uses retval as errorcode, or, if 0, use GetLastError()
|
|
*/
|
|
const char *WindowsErrorString(void)
|
|
{
|
|
static char err_string[256];
|
|
|
|
DWORD size;
|
|
DWORD error_code, format_error;
|
|
|
|
error_code = GetLastError();
|
|
|
|
safe_sprintf(err_string, sizeof(err_string), "[0x%08X] ", error_code);
|
|
|
|
size = FormatMessageU(FORMAT_MESSAGE_FROM_SYSTEM, NULL, error_code,
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), &err_string[strlen(err_string)],
|
|
sizeof(err_string)-(DWORD)strlen(err_string), NULL);
|
|
if (size == 0) {
|
|
format_error = GetLastError();
|
|
if ((format_error) && (format_error != 0x13D)) // 0x13D, decode error, is returned for unknown codes
|
|
safe_sprintf(err_string, sizeof(err_string),
|
|
"Windows error code 0x%08X (FormatMessage error code 0x%08X)", error_code, format_error);
|
|
else
|
|
safe_sprintf(err_string, sizeof(err_string), "Unknown error 0x%08X", error_code);
|
|
}
|
|
return err_string;
|
|
}
|
|
|
|
/*
|
|
* Display a message on the status bar. If duration is non zero, ensures that message
|
|
* is displayed for at least duration ms regardless, regardless of any other incoming
|
|
* message
|
|
*/
|
|
static BOOL bStatusTimerArmed = FALSE;
|
|
static char szStatusMessage[256] = { 0 };
|
|
static void CALLBACK PrintStatusTimeout(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
|
|
{
|
|
bStatusTimerArmed = FALSE;
|
|
// potentially display lower priority message that was overridden
|
|
SetDlgItemTextU(hMainDialog, IDC_STATUS, szStatusMessage);
|
|
KillTimer(hMainDialog, TID_MESSAGE);
|
|
}
|
|
|
|
void PrintStatus(unsigned int duration, BOOL debug, const char *format, ...)
|
|
{
|
|
char *p = szStatusMessage;
|
|
va_list args;
|
|
int n;
|
|
|
|
va_start(args, format);
|
|
n = safe_vsnprintf(p, sizeof(szStatusMessage)-1, format, args); // room for NUL
|
|
va_end(args);
|
|
|
|
p += (n < 0)?sizeof(szStatusMessage)-1:n;
|
|
|
|
while((p>szStatusMessage) && (isspace(p[-1])))
|
|
*--p = '\0';
|
|
|
|
*p = '\0';
|
|
|
|
if (debug)
|
|
uprintf("%s\n", szStatusMessage);
|
|
|
|
if ((duration) || (!bStatusTimerArmed)) {
|
|
SetDlgItemTextU(hMainDialog, IDC_STATUS, szStatusMessage);
|
|
}
|
|
|
|
if (duration) {
|
|
SetTimer(hMainDialog, TID_MESSAGE, duration, PrintStatusTimeout);
|
|
bStatusTimerArmed = TRUE;
|
|
}
|
|
}
|
|
|
|
const char* StrError(DWORD error_code)
|
|
{
|
|
if ( (!IS_ERROR(error_code)) || (SCODE_CODE(error_code) == ERROR_SUCCESS)) {
|
|
return "Success";
|
|
}
|
|
if (SCODE_FACILITY(error_code) != FACILITY_STORAGE) {
|
|
uprintf("StrError: non storage - %08X (%X)\n", error_code, SCODE_FACILITY(error_code));
|
|
SetLastError(error_code);
|
|
return WindowsErrorString();
|
|
}
|
|
switch (SCODE_CODE(error_code)) {
|
|
case ERROR_GEN_FAILURE:
|
|
return "Undetermined error while formatting";
|
|
case ERROR_INCOMPATIBLE_FS:
|
|
return "Cannot use the selected file system for this media";
|
|
case ERROR_ACCESS_DENIED:
|
|
return "Access to the media is denied";
|
|
case ERROR_WRITE_PROTECT:
|
|
return "Media is write protected";
|
|
case ERROR_DEVICE_IN_USE:
|
|
return "The device is in use by another process\n"
|
|
"Please close any other process that may be accessing the device";
|
|
case ERROR_CANT_QUICK_FORMAT:
|
|
return "Quick format is not available for this device";
|
|
case ERROR_LABEL_TOO_LONG:
|
|
return "The volume label is invalid";
|
|
case ERROR_INVALID_CLUSTER_SIZE:
|
|
return "The selected cluster size is not valid for this device";
|
|
case ERROR_INVALID_VOLUME_SIZE:
|
|
return "The volume size is invalid";
|
|
case ERROR_NO_MEDIA_IN_DRIVE:
|
|
return "Please insert a media in drive";
|
|
case ERROR_NOT_SUPPORTED:
|
|
return "An unsupported command was received";
|
|
case ERROR_NOT_ENOUGH_MEMORY:
|
|
return "Memory allocation error";
|
|
case ERROR_READ_FAULT:
|
|
return "Read error";
|
|
case ERROR_WRITE_FAULT:
|
|
return "Write error";
|
|
case ERROR_OPEN_FAILED:
|
|
return "Could not open media. It may be in use by another process.\n"
|
|
"Please re-plug the media and try again";
|
|
case ERROR_PARTITION_FAILURE:
|
|
return "Error while partitioning drive";
|
|
case ERROR_CANNOT_COPY:
|
|
return "Could not copy files to target drive";
|
|
case ERROR_CANCELLED:
|
|
return "Cancelled by user";
|
|
case ERROR_CANT_START_THREAD:
|
|
return "Unable to create formatting thread";
|
|
case ERROR_BADBLOCKS_FAILURE:
|
|
return "Bad blocks check didn't complete";
|
|
case ERROR_ISO_SCAN:
|
|
return "ISO image scan failure";
|
|
case ERROR_ISO_EXTRACT:
|
|
return "ISO image scan failure";
|
|
case ERROR_CANT_REMOUNT_VOLUME:
|
|
return "Unable to remount volume. You may have to use the\n"
|
|
"mountvol.exe command to make your device accessible again";
|
|
default:
|
|
uprintf("Unknown error: %08X\n", error_code);
|
|
SetLastError(error_code);
|
|
return WindowsErrorString();
|
|
}
|
|
}
|