VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Boot/Windows/BootDebug.cpp
blob: bea063c1f7ab1d222e479362c98c0323efef1dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
 Derived from source code of TrueCrypt 7.1a, which is
 Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed
 by the TrueCrypt License 3.0.

 Modifications and additions to the original source code (contained in this file)
 and all other portions of this file are Copyright (c) 2013-2017 IDRIX
 and are governed by the Apache License 2.0 the full text of which is
 contained in the file License.txt included in VeraCrypt binary and source
 code distribution packages.
*/

#include "Platform.h"
#include "Bios.h"
#include "BootConsoleIo.h"
#include "BootDefs.h"
#include "BootDiskIo.h"
#include "BootDebug.h"


#ifdef TC_BOOT_TRACING_ENABLED

void InitDebugPort ()
{
	__asm
	{
		mov dx, TC_DEBUG_PORT
		mov ah, 1
		int 0x17
		mov dx, TC_DEBUG_PORT
		mov ah, 0xe2
		int 0x17
	}
}


void WriteDebugPort (byte dataByte)
{
	__asm
	{
		mov al, dataByte
		mov dx, TC_DEBUG_PORT
		mov ah, 0
		int 0x17
	}
}

#endif // TC_BOOT_TRACING_ENABLED


#ifdef TC_BOOT_DEBUG_ENABLED

extern "C" void PrintDebug (uint32 debugVal)
{
	Print (debugVal);
	PrintEndl();
}


void PrintVal (const char *message, const uint32 value, bool newLine, bool hex)
{
	Print (message);
	Print (": ");

	if (hex)
		PrintHex (value);
	else
		Print (value);

	if (newLine)
		PrintEndl();
}


void PrintVal (const char *message, const uint64 &value, bool newLine, bool hex)
{
	Print (message);
	Print (": ");
	PrintHex (value);
	if (newLine)
		PrintEndl();
}


void PrintHexDump (byte *mem, size_t size, uint16 *memSegment)
{
	const size_t width = 16;
	for (size_t pos = 0; pos < size; )
	{
		for (int pass = 1; pass <= 2; ++pass)
		{
			size_t i;
			for (i = 0; i < width && pos < size; ++i)
			{
				byte dataByte;
				if (memSegment)
				{
					__asm
					{
						push es
						mov si, ss:memSegment
						mov es, ss:[si]
						mov si, ss:mem
						add si, pos
						mov al, es:[si]
						mov dataByte, al
						pop es
					}
					pos++;
				}
				else
					dataByte = mem[pos++];

				if (pass == 1)
				{
					PrintHex (dataByte);
					PrintChar (' ');
				}
				else
					PrintChar (IsPrintable (dataByte) ? dataByte : '.');
			}

			if (pass == 1)
			{
				pos -= i;
				PrintChar (' ');
			}
		}

		PrintEndl ();
	}
}


void PrintHexDump (uint16 memSegment, uint16 memOffset, size_t size)
{
	PrintHexDump ((byte *) memOffset, size, &memSegment);
}

#endif // TC_BOOT_DEBUG_ENABLED


#ifdef TC_BOOT_STACK_CHECKING_ENABLED

extern "C" char end[];

static void PrintStackInfo ()
{
	uint16 spReg;
	__asm mov spReg, sp

	Print ("Stack: "); Print (TC_BOOT_LOADER_STACK_TOP - spReg);
	Print ("/"); Print (TC_BOOT_LOADER_STACK_TOP - (uint16) end);
}


void CheckStack ()
{
	uint16 spReg;
	__asm mov spReg, sp

	if (*(uint32 *) end != 0x12345678UL || spReg < (uint16) end)
	{
		__asm cli
		__asm mov sp, TC_BOOT_LOADER_STACK_TOP

		PrintError ("Stack overflow");
		TC_THROW_FATAL_EXCEPTION;
	}
}


void InitStackChecker ()
{
	*(uint32 *) end = 0x12345678UL;

	PrintStackInfo();
	PrintEndl();
}

#endif // TC_BOOT_STACK_CHECKING_ENABLED
">; case VK_OEM_3: return L"OEM 3 (`)"; case VK_OEM_4: return L"OEM 4 ('[')"; case VK_OEM_5: return L"OEM 5 ('\\')"; case VK_OEM_6: return L"OEM 6 (']')"; case VK_OEM_7: return L"OEM 7 (')"; case VK_OEM_8: return L"OEM 8"; case VK_OEM_AX: return L"OEM AX"; case VK_OEM_102: return L"OEM 102"; case VK_ICO_HELP: return L"ICO_HELP"; case VK_ICO_00: return L"ICO_00"; case VK_ICO_CLEAR: return L"ICO_CLEAR"; case VK_ATTN: return L"Attn"; case VK_CRSEL: return L"CrSel"; case VK_EXSEL: return L"ExSel"; case VK_EREOF: return L"Erase EOF"; case VK_PA1: return L"PA1"; case VK_OEM_CLEAR: return L"OEM Clear"; case 0: case 1: case 0xFF: break; default: { string langStrId = StringConverter::ToSingle (wstring (wxString::Format (L"VKEY_%02X", virtualKeyCode))); if (LangString.Exists (langStrId)) return LangString[langStrId]; } } #endif // TC_WINDOWS return L""; } HotkeyList Hotkey::LoadList () { HotkeyList hotkeys = GetAvailableHotkeys(); FilePath path = Application::GetConfigFilePath (GetFileName()); if (path.IsFile()) { foreach (XmlNode node, XmlParser (path).GetNodes (L"hotkey")) { wstring keyName (node.Attributes[L"name"]); foreach (shared_ptr <Hotkey> hotkey, hotkeys) { if (hotkey->Name == keyName) { hotkey->VirtualKeyCode = StringConverter::ToUInt32 (wstring (node.Attributes[L"vkeycode"])); hotkey->VirtualKeyModifiers = 0; if (node.Attributes[L"modshift"] == L"1") hotkey->VirtualKeyModifiers |= wxMOD_SHIFT; if (node.Attributes[L"modcontrol"] == L"1") hotkey->VirtualKeyModifiers |= wxMOD_CONTROL; if (node.Attributes[L"modalt"] == L"1") hotkey->VirtualKeyModifiers |= wxMOD_ALT; if (node.Attributes[L"modwin"] == L"1") hotkey->VirtualKeyModifiers |= wxMOD_WIN; break; } } } } return hotkeys; } void Hotkey::RegisterList (wxWindow *handler, const HotkeyList &hotkeys) { #ifdef TC_WINDOWS bool res = true; foreach (shared_ptr <Hotkey> hotkey, hotkeys) { if (hotkey->VirtualKeyCode != 0) { if (!handler->RegisterHotKey (hotkey->Id, hotkey->VirtualKeyModifiers, hotkey->VirtualKeyCode)) res = false; } } if (!res) Gui->ShowWarning ("HOTKEY_REGISTRATION_ERROR"); #endif } void Hotkey::SaveList (const HotkeyList &hotkeys) { FilePath hotkeysCfgPath = Application::GetConfigFilePath (GetFileName(), true); bool noHotkey = true; XmlNode hotkeysXml (L"hotkeys"); foreach_ref (const Hotkey &hotkey, hotkeys) { if (hotkey.VirtualKeyCode == 0) continue; noHotkey = false; XmlNode node (L"hotkey"); node.Attributes[L"name"] = wstring (hotkey.Name); node.Attributes[L"vkeycode"] = StringConverter::FromNumber (hotkey.VirtualKeyCode); if (hotkey.VirtualKeyModifiers & wxMOD_SHIFT) node.Attributes[L"modshift"] = L"1"; if (hotkey.VirtualKeyModifiers & wxMOD_CONTROL) node.Attributes[L"modcontrol"] = L"1"; if (hotkey.VirtualKeyModifiers & wxMOD_ALT) node.Attributes[L"modalt"] = L"1"; if (hotkey.VirtualKeyModifiers & wxMOD_WIN ) node.Attributes[L"modwin"] = L"1"; hotkeysXml.InnerNodes.push_back (node); } if (noHotkey) { if (hotkeysCfgPath.IsFile()) hotkeysCfgPath.Delete(); } else { XmlWriter hotkeysWriter (hotkeysCfgPath); hotkeysWriter.WriteNode (hotkeysXml); hotkeysWriter.Close(); } } void Hotkey::UnregisterList (wxWindow *handler, const HotkeyList &hotkeys) { #ifdef TC_WINDOWS foreach (shared_ptr <Hotkey> hotkey, hotkeys) { if (hotkey->VirtualKeyCode != 0) handler->UnregisterHotKey (hotkey->Id); } #endif } }