-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathBaseCom.cpp
More file actions
700 lines (616 loc) · 15.2 KB
/
BaseCom.cpp
File metadata and controls
700 lines (616 loc) · 15.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
/*
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-2025 AM Crypto
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 <atlcomcli.h>
#include <atlconv.h>
#include <comutil.h>
#include <windows.h>
#include "BaseCom.h"
#include "BootEncryption.h"
#include "Dlgcode.h"
#include "Registry.h"
using namespace VeraCrypt;
// ========================================================================
// COM method input validation - whitelists and helper functions
// ========================================================================
// Helper: check if IOCTL code is in the allowed list
static BOOL IsIoctlInWhitelist (DWORD ioctl, const DWORD *whitelist, size_t count)
{
for (size_t i = 0; i < count; i++)
{
if (whitelist[i] == ioctl)
return TRUE;
}
return FALSE;
}
// Allowed IOCTL codes for CallDriver (VeraCrypt kernel driver IOCTLs)
static const DWORD g_CallDriverIoctlWhitelist[] = {
TC_IOCTL_GET_DRIVER_VERSION,
TC_IOCTL_GET_BOOT_LOADER_VERSION,
TC_IOCTL_MOUNT_VOLUME,
TC_IOCTL_UNMOUNT_VOLUME,
TC_IOCTL_UNMOUNT_ALL_VOLUMES,
TC_IOCTL_GET_MOUNTED_VOLUMES,
TC_IOCTL_GET_VOLUME_PROPERTIES,
TC_IOCTL_GET_DEVICE_REFCOUNT,
TC_IOCTL_IS_DRIVER_UNLOAD_DISABLED,
TC_IOCTL_IS_ANY_VOLUME_MOUNTED,
TC_IOCTL_GET_PASSWORD_CACHE_STATUS,
TC_IOCTL_WIPE_PASSWORD_CACHE,
TC_IOCTL_OPEN_TEST,
TC_IOCTL_GET_DRIVE_PARTITION_INFO,
TC_IOCTL_GET_DRIVE_GEOMETRY,
TC_IOCTL_PROBE_REAL_DRIVE_SIZE,
TC_IOCTL_GET_RESOLVED_SYMLINK,
TC_IOCTL_GET_BOOT_ENCRYPTION_STATUS,
TC_IOCTL_BOOT_ENCRYPTION_SETUP,
TC_IOCTL_ABORT_BOOT_ENCRYPTION_SETUP,
TC_IOCTL_GET_BOOT_ENCRYPTION_SETUP_RESULT,
TC_IOCTL_GET_BOOT_DRIVE_VOLUME_PROPERTIES,
TC_IOCTL_REOPEN_BOOT_VOLUME_HEADER,
TC_IOCTL_GET_BOOT_ENCRYPTION_ALGORITHM_NAME,
TC_IOCTL_GET_PORTABLE_MODE_STATUS,
TC_IOCTL_SET_PORTABLE_MODE_STATUS,
TC_IOCTL_IS_HIDDEN_SYSTEM_RUNNING,
TC_IOCTL_GET_SYSTEM_DRIVE_CONFIG,
TC_IOCTL_DISK_IS_WRITABLE,
TC_IOCTL_START_DECOY_SYSTEM_WIPE,
TC_IOCTL_ABORT_DECOY_SYSTEM_WIPE,
TC_IOCTL_GET_DECOY_SYSTEM_WIPE_STATUS,
TC_IOCTL_GET_DECOY_SYSTEM_WIPE_RESULT,
TC_IOCTL_WRITE_BOOT_DRIVE_SECTOR,
TC_IOCTL_GET_WARNING_FLAGS,
TC_IOCTL_SET_SYSTEM_FAVORITE_VOLUME_DIRTY,
TC_IOCTL_REREAD_DRIVER_CONFIG,
TC_IOCTL_GET_SYSTEM_DRIVE_DUMP_CONFIG,
VC_IOCTL_GET_BOOT_LOADER_FINGERPRINT,
VC_IOCTL_GET_DRIVE_GEOMETRY_EX,
VC_IOCTL_EMERGENCY_CLEAR_ALL_KEYS,
VC_IOCTL_IS_RAM_ENCRYPTION_ENABLED,
VC_IOCTL_ENCRYPTION_QUEUE_PARAMS,
};
// Allowed IOCTL codes for DeviceIoControl (standard disk/storage/filesystem IOCTLs)
static const DWORD g_DeviceIoControlWhitelist[] = {
IOCTL_DISK_GET_DRIVE_GEOMETRY,
IOCTL_DISK_GET_PARTITION_INFO,
IOCTL_DISK_GET_PARTITION_INFO_EX,
IOCTL_DISK_GET_DRIVE_GEOMETRY_EX,
IOCTL_DISK_GET_LENGTH_INFO,
IOCTL_DISK_PERFORMANCE,
IOCTL_STORAGE_GET_DEVICE_NUMBER,
IOCTL_STORAGE_READ_CAPACITY,
IOCTL_STORAGE_MANAGE_DATA_SET_ATTRIBUTES,
FSCTL_LOCK_VOLUME,
FSCTL_DISMOUNT_VOLUME,
FSCTL_IS_VOLUME_MOUNTED,
FSCTL_GET_NTFS_VOLUME_DATA,
FSCTL_GET_VOLUME_BITMAP,
FSCTL_GET_RETRIEVAL_POINTERS,
FSCTL_MOVE_FILE,
FSCTL_ALLOW_EXTENDED_DASD_IO,
FSCTL_SET_SPARSE,
FSCTL_EXTEND_VOLUME,
FSCTL_SHRINK_VOLUME,
};
// Allowed HKLM registry key path prefixes (case-insensitive)
static const wchar_t* g_RegistryKeyPrefixWhitelist[] = {
L"SYSTEM\\CurrentControlSet\\Services\\veracrypt",
L"SYSTEM\\CurrentControlSet\\Services\\VeraCryptSystemFavorites",
L"SYSTEM\\CurrentControlSet\\Control\\Power",
L"SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Power",
};
// Helper: check if registry key path matches an allowed prefix (exact or subkey)
static BOOL IsRegistryKeyPathAllowed (const wchar_t *keyPath)
{
if (!keyPath)
return FALSE;
for (size_t i = 0; i < ARRAYSIZE (g_RegistryKeyPrefixWhitelist); i++)
{
size_t prefixLen = wcslen (g_RegistryKeyPrefixWhitelist[i]);
if (_wcsnicmp (keyPath, g_RegistryKeyPrefixWhitelist[i], prefixLen) == 0)
{
wchar_t nextChar = keyPath[prefixLen];
if (nextChar == L'\0' || nextChar == L'\\')
return TRUE;
}
}
return FALSE;
}
// Helper: reject paths containing ".." traversal components
static BOOL ValidatePathNoTraversal (const wchar_t *path)
{
if (!path)
return FALSE;
if (wcsstr (path, L"..") != NULL)
return FALSE;
return TRUE;
}
// Helper: case-insensitive check if path contains "veracrypt" substring
static BOOL PathContainsVeraCrypt (const wchar_t *path)
{
if (!path)
return FALSE;
size_t pathLen = wcslen (path);
if (pathLen < 9)
return FALSE;
for (size_t i = 0; i <= pathLen - 9; i++)
{
if (_wcsnicmp (&path[i], L"veracrypt", 9) == 0)
return TRUE;
}
return FALSE;
}
// Helper: validate device path format (must start with \\.\ or \\?\)
static BOOL IsValidDevicePath (const wchar_t *path)
{
if (!path || wcslen (path) < 4)
return FALSE;
return (path[0] == L'\\' && path[1] == L'\\' && (path[2] == L'.' || path[2] == L'?') && path[3] == L'\\');
}
// ========================================================================
HRESULT CreateElevatedComObject (HWND hwnd, REFGUID guid, REFIID iid, void **ppv)
{
WCHAR monikerName[1024];
WCHAR clsid[1024];
BIND_OPTS3 bo;
StringFromGUID2 (guid, clsid, sizeof (clsid) / 2);
swprintf_s (monikerName, sizeof (monikerName) / 2, L"Elevation:Administrator!new:%s", clsid);
memset (&bo, 0, sizeof (bo));
bo.cbStruct = sizeof (bo);
bo.hwnd = hwnd;
bo.dwClassContext = CLSCTX_LOCAL_SERVER;
// Prevent the GUI from being half-rendered when the UAC prompt "freezes" it
ProcessPaintMessages (hwnd, 5000);
return CoGetObject (monikerName, &bo, iid, ppv);
}
BOOL ComGetInstanceBase (HWND hWnd, REFCLSID clsid, REFIID iid, void **tcServer)
{
BOOL r;
HRESULT hr;
if (IsUacSupported ())
{
while (true)
{
r = (hr = CreateElevatedComObject (hWnd, clsid, iid, tcServer)) == S_OK;
if (r)
break;
else
{
if (IDRETRY == ErrorRetryCancel ("UAC_INIT_ERROR", hWnd))
continue;
else
break;
}
}
}
else
{
r = (hr = CoCreateInstance (clsid, NULL, CLSCTX_LOCAL_SERVER, iid, tcServer)) == S_OK;
if (!r)
Error ("UAC_INIT_ERROR", hWnd);
}
if (!r)
{
SetLastError((DWORD) hr);
}
return r;
}
DWORD BaseCom::CallDriver (DWORD ioctl, BSTR input, BSTR *output)
{
if (!IsIoctlInWhitelist (ioctl, g_CallDriverIoctlWhitelist, ARRAYSIZE (g_CallDriverIoctlWhitelist)))
return ERROR_ACCESS_DENIED;
try
{
BootEncryption bootEnc (NULL);
bootEnc.CallDriver (ioctl,
(BYTE *) input, !(BYTE *) input ? 0 : ((DWORD *) ((BYTE *) input))[-1],
(BYTE *) *output, !(BYTE *) *output ? 0 : ((DWORD *) ((BYTE *) *output))[-1]);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::CopyFile (BSTR sourceFile, BSTR destinationFile)
{
if (!ValidatePathNoTraversal (sourceFile) || !ValidatePathNoTraversal (destinationFile))
return ERROR_ACCESS_DENIED;
if (!PathContainsVeraCrypt (sourceFile) || !PathContainsVeraCrypt (destinationFile))
return ERROR_ACCESS_DENIED;
if (!::CopyFileW (sourceFile, destinationFile, FALSE))
return GetLastError();
return ERROR_SUCCESS;
}
DWORD BaseCom::DeleteFile (BSTR file)
{
if (!ValidatePathNoTraversal (file))
return ERROR_ACCESS_DENIED;
if (!PathContainsVeraCrypt (file))
return ERROR_ACCESS_DENIED;
if (!::DeleteFileW (file))
return GetLastError();
return ERROR_SUCCESS;
}
BOOL BaseCom::IsPagingFileActive (BOOL checkNonWindowsPartitionsOnly)
{
return ::IsPagingFileActive (checkNonWindowsPartitionsOnly);
}
DWORD BaseCom::ReadWriteFile (BOOL write, BOOL device, BSTR filePath, BSTR *bufferBstr, unsigned __int64 offset, unsigned __int32 size, DWORD *sizeDone)
{
if (device)
{
if (!IsValidDevicePath (filePath))
return ERROR_ACCESS_DENIED;
}
else
{
if (!ValidatePathNoTraversal (filePath))
return ERROR_ACCESS_DENIED;
}
try
{
unique_ptr <File> file (device ? new Device (filePath, !write) : new File (filePath, !write));
file->CheckOpened (SRC_POS);
file->SeekAt (offset);
if (write)
{
file->Write ((BYTE *) *bufferBstr, size);
*sizeDone = size;
}
else
{
*sizeDone = file->Read ((BYTE *) *bufferBstr, size);
}
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::GetFileSize (BSTR filePath, unsigned __int64 *pSize)
{
if (!pSize)
return ERROR_INVALID_PARAMETER;
if (!ValidatePathNoTraversal (filePath))
return ERROR_ACCESS_DENIED;
try
{
std::wstring path (filePath);
File file(filePath, true);
file.CheckOpened (SRC_POS);
file.GetFileSize (*pSize);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::DeviceIoControl (BOOL readOnly, BOOL device, BSTR filePath, DWORD dwIoControlCode, BSTR input, BSTR *output)
{
if (!IsIoctlInWhitelist (dwIoControlCode, g_DeviceIoControlWhitelist, ARRAYSIZE (g_DeviceIoControlWhitelist)))
return ERROR_ACCESS_DENIED;
if (device)
{
if (!IsValidDevicePath (filePath))
return ERROR_ACCESS_DENIED;
}
else
{
if (!ValidatePathNoTraversal (filePath))
return ERROR_ACCESS_DENIED;
}
try
{
unique_ptr <File> file (device ? new Device (filePath, readOnly == TRUE) : new File (filePath, readOnly == TRUE));
file->CheckOpened (SRC_POS);
if (!file->IoCtl (dwIoControlCode, (BYTE *) input, !(BYTE *) input ? 0 : ((DWORD *) ((BYTE *) input))[-1],
(BYTE *) *output, !(BYTE *) *output ? 0 : ((DWORD *) ((BYTE *) *output))[-1]))
{
return GetLastError();
}
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::RegisterFilterDriver (BOOL registerDriver, int filterType)
{
try
{
BootEncryption bootEnc (NULL);
bootEnc.RegisterFilterDriver (registerDriver ? true : false, (BootEncryption::FilterType) filterType);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::RegisterSystemFavoritesService (BOOL registerService)
{
try
{
BootEncryption bootEnc (NULL);
bootEnc.RegisterSystemFavoritesService (registerService);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::SetDriverServiceStartType (DWORD startType)
{
try
{
BootEncryption bootEnc (NULL);
bootEnc.SetDriverServiceStartType (startType);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::WriteLocalMachineRegistryDwordValue (BSTR keyPath, BSTR valueName, DWORD value)
{
if (!IsRegistryKeyPathAllowed (keyPath))
return ERROR_ACCESS_DENIED;
if (!::WriteLocalMachineRegistryDword (keyPath, valueName, value))
return GetLastError();
return ERROR_SUCCESS;
}
DWORD BaseCom::InstallEfiBootLoader (BOOL preserveUserConfig, BOOL hiddenOSCreation, int pim, int hashAlg)
{
try
{
BootEncryption bootEnc (NULL);
bootEnc.InstallBootLoader (preserveUserConfig? true : false, hiddenOSCreation? true : false, pim, hashAlg);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::BackupEfiSystemLoader ()
{
try
{
BootEncryption bootEnc (NULL);
bootEnc.BackupSystemLoader ();
}
catch (SystemException &)
{
return GetLastError();
}
catch (UserAbort&)
{
return ERROR_CANCELLED;
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::RestoreEfiSystemLoader ()
{
try
{
BootEncryption bootEnc (NULL);
bootEnc.RestoreSystemLoader ();
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::GetEfiBootDeviceNumber (BSTR* pSdn)
{
if (!pSdn || !(*pSdn) || ((((DWORD *) ((BYTE *) *pSdn))[-1]) < sizeof (STORAGE_DEVICE_NUMBER)))
return ERROR_INVALID_PARAMETER;
try
{
BootEncryption bootEnc (NULL);
bootEnc.GetEfiBootDeviceNumber ((PSTORAGE_DEVICE_NUMBER) *pSdn);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::GetSecureBootConfig (BOOL* pSecureBootEnabled, BOOL *pVeraCryptKeysLoaded)
{
if (!pSecureBootEnabled || !pVeraCryptKeysLoaded)
return ERROR_INVALID_PARAMETER;
try
{
BootEncryption bootEnc (NULL);
bootEnc.GetSecureBootConfig (pSecureBootEnabled, pVeraCryptKeysLoaded);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::WriteEfiBootSectorUserConfig (DWORD userConfig, BSTR customUserMessage, int pim, int hashAlg)
{
if (!customUserMessage)
return ERROR_INVALID_PARAMETER;
try
{
DWORD maxSize = ((DWORD *) ((BYTE *) customUserMessage))[-1];
char* msg = (char*) *customUserMessage;
if (maxSize > 0)
msg [maxSize - 1] = 0;
std::string msgStr = maxSize > 0 ? msg : "";
BootEncryption bootEnc (NULL);
bootEnc.WriteEfiBootSectorUserConfig ((uint8) userConfig, msgStr, pim, hashAlg);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::UpdateSetupConfigFile (BOOL bForInstall)
{
try
{
BootEncryption bootEnc (NULL);
bootEnc.UpdateSetupConfigFile (bForInstall? true : false);
}
catch (SystemException &)
{
return GetLastError();
}
catch (Exception &e)
{
e.Show (NULL);
return ERROR_EXCEPTION_IN_SERVICE;
}
catch (...)
{
return ERROR_EXCEPTION_IN_SERVICE;
}
return ERROR_SUCCESS;
}
DWORD BaseCom::NotifyService(DWORD dwNotifyCode)
{
return SendServiceNotification(dwNotifyCode);
}
DWORD BaseCom::FastFileResize (BSTR filePath, __int64 fileSize)
{
if (!ValidatePathNoTraversal (filePath))
return ERROR_ACCESS_DENIED;
return ::FastResizeFile (filePath, fileSize);
}