-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDlg_CheckDsk.cpp
More file actions
1412 lines (1069 loc) · 34.3 KB
/
Copy pathDlg_CheckDsk.cpp
File metadata and controls
1412 lines (1069 loc) · 34.3 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
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**********************************************************************
** Copyright (C) 2005-2015 Tesline-Service S.R.L. All rights reserved.
**
** Rohos Disk Browser, Rohos Mini Drive Portable.
**
**
** This file may be distributed and/or modified under the terms of the
** GNU Affero General Public license version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. If not, see <http://www.gnu.org/licenses/>
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.rohos.com/ for GPL licensing information.
**
** Contact info@rohos.com http://rohos.com
**/
#include "stdafx.h"
#include "DiskBrowserApp.h"
#include "Dlg_CheckDsk.h"
#ifdef _USE_BOXEDAPP_SDK
#include ".\\BoxedAppSDK\\include\\BoxedAppSDK.h"
#endif
#include "CDiskRepartition.h"
//#include "ntddk.h"
// CDlg_CheckDsk dialog
HWND g_wnd;
//LARGE_INTEGER disk_size;
HANDLE img_hImageFilehandle; //
LARGE_INTEGER img_disksize; // image file size; do not write over the bounds
BOOL img_readonly;
// globals are setted from OnInitDialog() or FormatImage();
CDiskRepartition *theDiskPartition2;
BOOL is_partition_container2; // TRUE - read from %physicaldrive1% device
BOOL is_encrypted_partition2; // TRUE this is encrypted partition.
LARGE_INTEGER diskDataOffset2; // set by CFsys::OpenVolume();
//extern LARGE_INTEGER partOffset/*SetFilePointer position*/, partOffset2/*second partition starting offset 30208*/;
//extern BOOL is_encrypted_partition; // TRUE this is encrypted partition.
IMPLEMENT_DYNAMIC(CDlg_CheckDsk, CDialog)
CDlg_CheckDsk::CDlg_CheckDsk(CWnd* pParent /*=NULL*/)
: CDialog(CDlg_CheckDsk::IDD, pParent)
{
m_FixErrors =0;
_image_readonly =0;
_re_formated = false;
is_partition_container2 = false;
}
CDlg_CheckDsk::~CDlg_CheckDsk()
{
}
void CDlg_CheckDsk::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlg_DiskInfo)
DDX_Check(pDX, IDC_CHECK1, m_FixErrors);
DDX_Check(pDX, IDC_CHECK2, m_SectorScan);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlg_CheckDsk, CDialog)
ON_BN_CLICKED(IDOK, &CDlg_CheckDsk::OnBnClickedOk)
// ON_BN_CLICKED(IDC_CHECK1, &CDlg_CheckDsk::OnBnClickedCheck1)
ON_BN_CLICKED(IDOK2, &CDlg_CheckDsk::OnBnClickedOk2)
END_MESSAGE_MAP()
// CDlg_CheckDsk message handlers
BOOL CDlg_CheckDsk::OnInitDialog()
{
CDialog::OnInitDialog();
g_wnd = m_hWnd;
img_disksize = _disk_size;
img_hImageFilehandle = _hImageFilehandle;
img_readonly =_image_readonly;
diskDataOffset2.QuadPart = disk_data_offset_in_mb;
diskDataOffset2.QuadPart *= (1024 * 1024);
//if (_image_readonly)
// enableItems(m_hWnd, 0, IDC_CHECK1, 0);
theDiskPartition2 = (CDiskRepartition*)pDiskPartitionClass;
if (pDiskPartitionClass)
is_partition_container2 = true;
is_encrypted_partition2 = encrypted;
SetDlgItemText(IDC_COMBO1, "NTFS");
// TODO: Add extra initialization here
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
//*****************************************************
typedef LONG NTSTATUS;
typedef struct _UNICODE_STRING {
USHORT Length;
USHORT MaximumLength;
PWSTR Buffer;
} UNICODE_STRING;
typedef struct _OBJECT_ATTRIBUTES {
ULONG Length;
HANDLE RootDirectory;
UNICODE_STRING *ObjectName;
ULONG Attributes;
PVOID SecurityDescriptor; // Points to type SECURITY_DESCRIPTOR
PVOID SecurityQualityOfService; // Points to type SECURITY_QUALITY_OF_SERVICE
} OBJECT_ATTRIBUTES, *POBJECT_ATTRIBUTES;
typedef struct _IO_STATUS_BLOCK {
union {
NTSTATUS Status;
PVOID Pointer;
};
ULONG_PTR Information;
} IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;
typedef enum _FILE_INFORMATION_CLASS {
FileDirectoryInformation = 1,
FileFullDirectoryInformation, // 2
FileBothDirectoryInformation, // 3
FileBasicInformation, // 4 wdm
FileStandardInformation, // 5 wdm
FileInternalInformation, // 6
FileEaInformation, // 7
FileAccessInformation, // 8
FileNameInformation, // 9
FileRenameInformation, // 10
FileLinkInformation, // 11
FileNamesInformation, // 12
FileDispositionInformation, // 13
FilePositionInformation, // 14 wdm
FileFullEaInformation, // 15
FileModeInformation, // 16
FileAlignmentInformation, // 17
FileAllInformation, // 18
FileAllocationInformation, // 19
FileEndOfFileInformation, // 20 wdm
FileAlternateNameInformation, // 21
FileStreamInformation, // 22
FilePipeInformation, // 23
FilePipeLocalInformation, // 24
FilePipeRemoteInformation, // 25
FileMailslotQueryInformation, // 26
FileMailslotSetInformation, // 27
FileCompressionInformation, // 28
FileObjectIdInformation, // 29
FileCompletionInformation, // 30
FileMoveClusterInformation, // 31
FileQuotaInformation, // 32
FileReparsePointInformation, // 33
FileNetworkOpenInformation, // 34
FileAttributeTagInformation, // 35
FileTrackingInformation, // 36
FileIdBothDirectoryInformation, // 37
FileIdFullDirectoryInformation, // 38
FileValidDataLengthInformation, // 39
FileShortNameInformation, // 40
FileMaximumInformation
} FILE_INFORMATION_CLASS, *PFILE_INFORMATION_CLASS;
typedef enum _FSINFOCLASS {
FileFsVolumeInformation = 1,
FileFsLabelInformation, // 2
FileFsSizeInformation, // 3
FileFsDeviceInformation, // 4
FileFsAttributeInformation, // 5
FileFsControlInformation, // 6
FileFsFullSizeInformation, // 7
FileFsObjectIdInformation, // 8
FileFsDriverPathInformation, // 9
FileFsMaximumInformation
} FS_INFORMATION_CLASS, *PFS_INFORMATION_CLASS;
typedef HANDLE (NTAPI *P_ZwOpenFile)(
PHANDLE FileHandle,
ACCESS_MASK DesiredAccess,
OBJECT_ATTRIBUTES *ObjectAttributes,
PIO_STATUS_BLOCK IoStatusBlock,
ULONG ShareAccess,
ULONG OpenOptions);
typedef NTSTATUS (NTAPI *P_NtQueryInformationFile)(
HANDLE hFile,
PIO_STATUS_BLOCK io,
PVOID ptr,
LONG len,
FILE_INFORMATION_CLASS class1
);
typedef NTSTATUS (NTAPI * P_NtDeviceIoControlFile)(
HANDLE FileHandle,
HANDLE Event,
PVOID ApcRoutine,
PVOID ApcContext,
PIO_STATUS_BLOCK IoStatusBlock,
ULONG IoControlCode,
PVOID InputBuffer,
ULONG InputBufferLength,
PVOID OutputBuffer,
ULONG OutputBufferLength
);
typedef NTSTATUS (NTAPI * P_ZwReadFile) (
HANDLE FileHandle,
HANDLE Event ,
PVOID ApcRoutine ,
PVOID ApcContext ,
PIO_STATUS_BLOCK IoStatusBlock,
PVOID Buffer,
ULONG Length,
PLARGE_INTEGER ByteOffset ,
PULONG Key
);
typedef NTSTATUS (NTAPI * P_ZwWriteFile) (
HANDLE FileHandle,
HANDLE Event ,
PVOID ApcRoutine ,
PVOID ApcContext ,
PIO_STATUS_BLOCK IoStatusBlock,
PVOID Buffer,
ULONG Length,
PLARGE_INTEGER ByteOffset ,
PULONG Key
);
typedef NTSTATUS (NTAPI * P_ZwClose)(
HANDLE Handle
);
typedef NTSTATUS (NTAPI * P_NtFsControlFile)(
HANDLE FileHandle, HANDLE Event OPTIONAL, PVOID ApcRoutine OPTIONAL, PVOID ApcContext , PIO_STATUS_BLOCK IoStatusBlock,
ULONG FsControlCode, PVOID InputBuffer , ULONG InputBufferLength, PVOID OutputBuffer , ULONG OutputBufferLength );
typedef NTSTATUS (NTAPI * P_NtSetVolumeInformationFile)(
HANDLE FileHandle, PIO_STATUS_BLOCK IoStatusBlock, PVOID FileSystemInformation, ULONG Length,
FS_INFORMATION_CLASS FileSystemInformationClass );
typedef struct _FILE_ALIGNMENT_INFORMATION {
ULONG AlignmentRequirement;
} FILE_ALIGNMENT_INFORMATION;
/*
typedef enum _MEDIA_TYPE {
Unknown
} MEDIA_TYPE;
typedef struct _DISK_GEOMETRY {
LARGE_INTEGER Cylinders;
MEDIA_TYPE MediaType;
DWORD TracksPerCylinder;
DWORD SectorsPerTrack;
DWORD BytesPerSector;
} DISK_GEOMETRY;
typedef struct {
LARGE_INTEGER Length;
} GET_LENGTH_INFORMATION;
typedef struct _PARTITION_INFORMATION_MBR {
BYTE PartitionType;
BOOLEAN BootIndicator;
BOOLEAN RecognizedPartition;
DWORD HiddenSectors;
} PARTITION_INFORMATION_MBR, *PPARTITION_INFORMATION_MBR;
typedef enum _PARTITION_STYLE {
PARTITION_STYLE_MBR,
PARTITION_STYLE_GPT,
PARTITION_STYLE_RAW
} PARTITION_STYLE;
typedef struct {
PARTITION_STYLE PartitionStyle;
LARGE_INTEGER StartingOffset;
LARGE_INTEGER PartitionLength;
DWORD PartitionNumber;
BOOLEAN RewritePartition;
PARTITION_INFORMATION_MBR Mbr;
} PARTITION_INFORMATION_EX;
*/
typedef struct _MOUNTDEV_NAME {
USHORT NameLength;
WCHAR Name[1];
} MOUNTDEV_NAME, *PMOUNTDEV_NAME;
P_NtQueryInformationFile g_pNtQueryInformationFile;
P_ZwOpenFile g_pZwOpenFile;
P_NtDeviceIoControlFile g_pNtDeviceIoControlFile;
P_ZwReadFile g_pZwReadFile;
P_ZwWriteFile g_pZwWriteFile;
P_ZwClose g_pZwClose;
P_NtFsControlFile g_pNtFsControlFile;
P_NtSetVolumeInformationFile g_pNtSetVolumeInformationFile;
char api_output[50000];
char str[1500];
WCHAR strw[1500];
HANDLE fakehandle = (HANDLE)0x00777;
HANDLE NTAPI My_ZwOpenFile(
PHANDLE FileHandle,
ACCESS_MASK DesiredAccess,
POBJECT_ATTRIBUTES ObjectAttributes,
PIO_STATUS_BLOCK IoStatusBlock,
ULONG ShareAccess,
ULONG OpenOptions)
{
// WriteLog(L"-> %s" ,ObjectAttributes->ObjectName->Buffer);
//swprintf(strw, L"-> %s\n",ObjectAttributes->ObjectName->Buffer);
wcstombs(str, ObjectAttributes->ObjectName->Buffer, 200);
//strcat(api_output, str);
//WriteLog("open %s", str);
if ( wcsstr(ObjectAttributes->ObjectName->Buffer, L"Y:"))
{
//strcat(api_output, "fakehandle \n");
WriteLog("open %s", str);
*FileHandle = fakehandle;
IoStatusBlock->Information=0;
IoStatusBlock->Status=0;
return 0;
}
else return g_pZwOpenFile(FileHandle, DesiredAccess, ObjectAttributes, IoStatusBlock,ShareAccess, OpenOptions);
}
NTSTATUS NTAPI My_NtQueryInformationFile(
HANDLE hFile,
PIO_STATUS_BLOCK io,
PVOID ptr,
LONG len,
FILE_INFORMATION_CLASS class1
)
{
//WriteLog(L"%X, -> info %d" ,hFile, class1);
//sprintf(str, "%X, -> info %d\n", hFile, class1);
// strcat(api_output, str);
//WriteLog("info, %X", class1);
NTSTATUS ret;
if (hFile ==fakehandle)
{
WriteLog("info, %X", class1);
//WriteLog(L"%X, -> info %d" ,hFile, class1);
if (class1 == 17/*aligment*/)
{
FILE_ALIGNMENT_INFORMATION *ai = (FILE_ALIGNMENT_INFORMATION*)ptr;
//sprintf(str, "-> aligment info %d\n", ai->AlignmentRequirement );
//strcat(api_output, str);
ai->AlignmentRequirement =3;
io->Information = 4;
io->Status = 0;
io->Pointer = 0;
}
ret = 0;// STATUS_SUCCESS
}
else ret = g_pNtQueryInformationFile(hFile, io, ptr, len, class1);
return ret;
}
//IOCTL_DISK_GET_LENGTH_INFO
/*
70024 - IOCTL_DISK_IS_WRITABLE
70000 - IOCTL_DISK_GET_DRIVE_GEOMETRY
7405C - IOCTL_DISK_GET_LENGTH_INFO
70048 - IOCTL_DISK_GET_PARTITION_INFO_EX
2D1080 - invalid
4D0008 - IOCTL_MOUNTDEV_QUERY_DEVICE_NAME -
*/
NTSTATUS NTAPI My_NtDeviceIoControlFile(
HANDLE FileHandle,
HANDLE Event,
PVOID ApcRoutine,
PVOID ApcContext,
PIO_STATUS_BLOCK IoStatusBlock,
ULONG IoControlCode,
PVOID InputBuffer,
ULONG InputBufferLength,
PVOID OutputBuffer,
ULONG OutputBufferLength
)
{
//WriteLog(L"%X, -> io %d" ,FileHandle, IoControlCode);
//sprintf(str, "%X, -> io %X\n", FileHandle, IoControlCode);
//strcat(api_output, str);
NTSTATUS ret=0;
//WriteLog("ioctl, %X", IoControlCode);
//ret = g_pNtDeviceIoControlFile(FileHandle, Event, ApcRoutine,ApcContext, IoStatusBlock, IoControlCode, InputBuffer, InputBufferLength, OutputBuffer, OutputBufferLength );
if (FileHandle == fakehandle)
{
WriteLog("io, %X", IoControlCode);
if (IoControlCode ==0x70024)
{
IoStatusBlock->Information=0;
IoStatusBlock->Status=0;
return 0;
}
if (IoControlCode ==0x70000)
{
DISK_GEOMETRY* dg = (DISK_GEOMETRY*)(OutputBuffer);
//return ret;
dg->BytesPerSector = 512;
dg->Cylinders.QuadPart = img_disksize.QuadPart / dg->BytesPerSector;
dg->MediaType = (MEDIA_TYPE)12;
dg->SectorsPerTrack = 1;
dg->TracksPerCylinder = 1;
return 0;
}
if (IoControlCode ==0x7405C)
{
GET_LENGTH_INFORMATION* li = (GET_LENGTH_INFORMATION*)(OutputBuffer);
//return ret;
li->Length = img_disksize;
return 0;
}
if (IoControlCode ==0x70048/*PARTITION_INFORMATION_EX*/)
{
PARTITION_INFORMATION_EX* pi = (PARTITION_INFORMATION_EX*)(OutputBuffer);
//return ret;
pi->PartitionStyle = PARTITION_STYLE_MBR;
pi->PartitionLength = img_disksize;
pi->PartitionNumber = 0;
pi->RewritePartition = 1;
pi->StartingOffset.QuadPart = 512;
pi->Mbr.BootIndicator = FALSE;
pi->Mbr.PartitionType = 0;// PARTITION_ENTRY_UNUSED
pi->Mbr.RecognizedPartition = 0;
return 0;
}
if (IoControlCode == 0x2D1080 )
{
return 0x10;
}
if (IoControlCode == 0x2D1400 ) // IOCTL_STORAGE_QUERY_PROPERTY
{
return 0x10;
}
if (IoControlCode == 0x2D0c14 ) // IOCTL_STORAGE_GET_HOTPLUG_INFO
{
return 0x10;
}
if (IoControlCode == 0x4D0008 )
{
PMOUNTDEV_NAME mn = (PMOUNTDEV_NAME)(OutputBuffer);
//return ret;
wcscpy(mn->Name, L"\\Device\\Y:00000077");
mn->NameLength = wcslen(mn->Name);
return 0;
}
if (IoControlCode == 0x70014 )
{
// 70014 - IOCTL_DISK_VERIFY
IoStatusBlock->Information=0;
IoStatusBlock->Status=0;
return 0;
}
// 7C008 - IOCTL_DISK_SET_PARTITION_INFO
//strcat(api_output, "unknown ioctl");
WriteLog("unknown io");
IoStatusBlock->Information=0;
IoStatusBlock->Status=0;
return 0;
}
else ret = g_pNtDeviceIoControlFile(FileHandle, Event, ApcRoutine,ApcContext, IoStatusBlock, IoControlCode, InputBuffer, InputBufferLength, OutputBuffer, OutputBufferLength );
return ret;
}
extern char IV[64];
extern char Key[32];
#define STATUS_END_OF_FILE 0xC0000011L
#define STATUS_SHARING_VIOLATION 0xC0000043L
NTSTATUS crypt_ZwReadFile(HANDLE hFile, LPVOID buf, DWORD psz, PIO_STATUS_BLOCK IoStatusBlock, PLARGE_INTEGER ByteOffset)
{
DWORD ret;
DWORD nr_sz;
//DWORD pl,ph,pph,ppl;
u64 pos;
ret = 1;
LARGE_INTEGER li;
{
pos = (ByteOffset->HighPart<<32)|ByteOffset->LowPart;
// ïîçèöèÿ ôàéëà äîëæíà áûòü êðàòíàÿ 512
pos = ((pos>>9)<<9);
//if((psz % 512))
//n__sz=n_sz = (((psz>>9)+1)<<9);
// pos = pos;
//else
// n__sz=n_sz = psz;
if (is_partition_container2)
{
li.QuadPart = ByteOffset->QuadPart;
theDiskPartition2->SetFilePointer2(&li);
//theDiskPartition2->partOffset.QuadPart+= theDiskPartition2->partOffset2.QuadPart;
ret = theDiskPartition2->ReadData( (LPBYTE)buf, psz, &theDiskPartition2->partOffset);
IoStatusBlock->Information = psz;
IoStatusBlock->Status = 0;
if (is_encrypted_partition2 )
decrypt((char *)buf, (pos >>9), IoStatusBlock->Information); // pos>>9 - sector number
if (ret)
ret=0;
else
ret = 1;
//WriteLog("read %X", ret); // C0000008
return ret;
}
li.QuadPart = ByteOffset->QuadPart ;
li.QuadPart += diskDataOffset2.QuadPart;
ret = g_pZwReadFile(hFile, NULL, 0, 0, IoStatusBlock, buf, psz, &li, 0);
if ( ret == 0 )
{
//WriteLog("readok %X", IoStatusBlock->Information);
decrypt((char *)buf, (pos>>9), IoStatusBlock->Information); // pos>>9 - sector number
} else
{
if (ret == STATUS_END_OF_FILE )
{
memset(buf, 0, psz);
IoStatusBlock->Information = psz;
IoStatusBlock->Status =0;
return 0;
}
WriteLog("read err %X", ret); // C0000008
}
}
return ret;
}
NTSTATUS NTAPI My_ZwReadFile (
HANDLE FileHandle,
HANDLE Event ,
PVOID ApcRoutine ,
PVOID ApcContext ,
PIO_STATUS_BLOCK IoStatusBlock,
PVOID Buffer,
ULONG Length,
PLARGE_INTEGER ByteOffset ,
PULONG Key
)
{
//WriteLog("read, %X %X", ByteOffset->LowPart, Length);
if (FileHandle == fakehandle)
{
//sprintf(str, "%X, reading (%X, %X)\n", FileHandle, Event, Length);
//strcat(api_output, str);
//WriteLog("read, %X %X", ByteOffset->LowPart, Length);
if ( ByteOffset->QuadPart > img_disksize.QuadPart)
{
IoStatusBlock->Information = Length;
IoStatusBlock->Status =0;
memset(Buffer, 0, Length);
WriteLog("read-over, %X %X", ByteOffset->LowPart, Length);
return /*STATUS_END_OF_FILE*/0;
}
NTSTATUS ret =0;
if ( (ret=crypt_ZwReadFile(img_hImageFilehandle, Buffer, Length, IoStatusBlock, ByteOffset))==0)
{
//WriteLog("ReadOK");
return 0;
}
else
{
if ( (ret) && ByteOffset->QuadPart < img_disksize.QuadPart)
{
IoStatusBlock->Information = Length;
IoStatusBlock->Status =0;
memset(Buffer, 0, Length);
return 0;
}
return 1;
}
}else return g_pZwReadFile(FileHandle, Event, ApcRoutine,ApcContext, IoStatusBlock, Buffer, Length, ByteOffset, Key );
}
int crypt_ZwWriteFile(HANDLE hFile, LPVOID buf, DWORD psz, PIO_STATUS_BLOCK IoStatusBlock, PLARGE_INTEGER ByteOffset)
{
BOOL ret;
DWORD nr_sz;
//DWORD pl,ph,pph,ppl;
u64 pos;
ret = 1;
char *n_buf;
{
pos = ByteOffset->QuadPart;
LARGE_INTEGER li;
// ïîçèöèÿ ôàéëà äîëæíà áûòü êðàòíàÿ 512
//pos = ((pos>>9)<<9);
n_buf = (char *)malloc(psz+32);
memcpy(n_buf, buf, psz);
if (is_encrypted_partition2 )
encrypt((char *)n_buf, (pos>>9), psz); // >>9 - to convert position to sector number
if (is_partition_container2)
{
li.QuadPart = ByteOffset->QuadPart;
theDiskPartition2->SetFilePointer2(&li);
ret = theDiskPartition2->WriteData( (LPBYTE)n_buf, psz, &theDiskPartition2->partOffset);
IoStatusBlock->Information = psz;
IoStatusBlock->Status = 0;
free(n_buf);
if (ret)
ret=0;
else
ret = 1;
return ret;
}
li.QuadPart = ByteOffset->QuadPart ;
li.QuadPart += diskDataOffset2.QuadPart;
//WriteLog("Write %X", li.QuadPart);
ret = g_pZwWriteFile(hFile, NULL, 0, 0, IoStatusBlock, n_buf, psz, &li, 0);
if (ret)
WriteLog("write err %X", ret); // C0000008 - wrong handle
free(n_buf);
}
return ret;
}
NTSTATUS NTAPI My_ZwWriteFile (
HANDLE FileHandle,
HANDLE Event ,
PVOID ApcRoutine ,
PVOID ApcContext ,
PIO_STATUS_BLOCK IoStatusBlock,
PVOID Buffer,
ULONG Length,
PLARGE_INTEGER ByteOffset ,
PULONG Key
)
{
//WriteLog("write, %X %X", ByteOffset->LowPart, Length);
if (FileHandle == fakehandle)
{
//sprintf(str, "%X, reading (%X, %X)\n", FileHandle, Event, Length);
//strcat(api_output, str);
//WriteLog("write, %X %X", ByteOffset->LowPart, Length);
//if (img_readonly)
// return STATUS_SHARING_VIOLATION;
if ( ByteOffset->QuadPart > img_disksize.QuadPart) {
IoStatusBlock->Information = Length;
IoStatusBlock->Status =0;
WriteLog("write-over, %X %X", ByteOffset->LowPart, Length);
return /*STATUS_END_OF_FILE*/ 0;
}
int ret;
if ( (ret=crypt_ZwWriteFile(img_hImageFilehandle, Buffer, Length, IoStatusBlock, ByteOffset)) == 0)
{
return 0;
}
else{
WriteLog("write err %X", ret);
return ret;
}
}else return g_pZwWriteFile(FileHandle, Event, ApcRoutine,ApcContext, IoStatusBlock, Buffer, Length, ByteOffset, Key );
}
NTSTATUS NTAPI My_ZwClose(
HANDLE Handle
)
{
if (Handle == fakehandle)
{
strcat(api_output, "close file \n");
WriteLog("close");
return 0;
} else return g_pZwClose(Handle);
}
/*
FSCTL_ALLOW_EXTENDED_DASD_IO
FSCTL_LOCK_VOLUME
FSCTL_DISMOUNT_VOLUME 0x00090020
FSCTL_UNLOCK_VOLUME 0x0009001c
*/
NTSTATUS NTAPI My_NtFsControlFile(
HANDLE FileHandle, HANDLE Event OPTIONAL, PVOID ApcRoutine OPTIONAL, PVOID ApcContext , PIO_STATUS_BLOCK IoStatusBlock,
ULONG FsControlCode, PVOID InputBuffer , ULONG InputBufferLength, PVOID OutputBuffer , ULONG OutputBufferLength )
{
//WriteLog("fs ioctl, %X", FsControlCode);
if (FileHandle == fakehandle)
{
//strcat(api_output, "My_NtFsControlFile file \n");
WriteLog("fs io, %X", FsControlCode);
IoStatusBlock->Information =0;
IoStatusBlock->Status =0;
return 0;
} else return g_pNtFsControlFile(FileHandle, Event, ApcRoutine, ApcContext,IoStatusBlock , FsControlCode, InputBuffer, InputBufferLength, OutputBuffer, OutputBufferLength);
}
NTSTATUS NTAPI My_NtSetVolumeInformationFile(
HANDLE FileHandle, PIO_STATUS_BLOCK IoStatusBlock, PVOID FileSystemInformation, ULONG Length,
FS_INFORMATION_CLASS FileSystemInformationClass )
{
if (FileHandle == fakehandle)
{
//strcat(api_output, "My_NtFsControlFile file \n");
WriteLog("setvolio, %X", FileSystemInformationClass);
IoStatusBlock->Information =0;
IoStatusBlock->Status =0;
return 0;
} else return g_pNtSetVolumeInformationFile(FileHandle, IoStatusBlock , FileSystemInformation, Length, FileSystemInformationClass);
}
//*********************************************
typedef enum
{
PROGRESS,
DONEWITHSTRUCTURE,
UNKNOWN2,
UNKNOWN3,
UNKNOWN4,
UNKNOWN5,
INSUFFICIENTRIGHTS,
WRITEPROTECTED,
UNKNOWN8,
UNKNOWN9,
UNKNOWNA,
DONE,
UNKNOWNC,
UNKNOWND,
OUTPUT,
STRUCTUREPROGRESS
} CALLBACKCOMMAND;
typedef BOOLEAN
(NTAPI* PFMIFSCALLBACK)(
IN CALLBACKCOMMAND Command,
IN ULONG SubAction,
IN PVOID ActionInfo);
/* Chkdsk command in FMIFS */
typedef VOID (NTAPI *P_Chkdsk) (
IN PWCHAR DriveRoot,
IN PWCHAR Format,
IN BOOLEAN CorrectErrors,
IN BOOLEAN Verbose,
IN BOOLEAN CheckOnlyIfDirty,
IN BOOLEAN ScanDrive,
IN PVOID Unused2,
IN PVOID Unused3,
IN PFMIFSCALLBACK Callback);
// media flags
#define FMIFS_HARDDISK 0xC
#define FMIFS_FLOPPY 0x8
typedef VOID (__stdcall *PFORMATEX)( PWCHAR DriveRoot,
DWORD MediaFlag,
PWCHAR Format,
PWCHAR Label,
BOOL QuickFormat,
DWORD ClusterSize,
PFMIFSCALLBACK Callback );
P_Chkdsk p_Chkdsk;
PFORMATEX p_FormatEx;
TCHAR buf_output[85000] = {""};
BOOL Error = false;
typedef struct
{
ULONG Lines;
PCHAR Output;
} TEXTOUTPUT, *PTEXTOUTPUT;
BOOLEAN WINAPI ChkdskCallback(
CALLBACKCOMMAND Command,
DWORD Modifier,
PVOID Argument
)
{
PDWORD percent;
PBOOLEAN status;
PTEXTOUTPUT output;
switch (Command) {
case INSUFFICIENTRIGHTS:
strcat(buf_output, "INSUFFICIENTRIGHTS \n\0x0D\0x0A");
SetDlgItemText(g_wnd, IDC_EDIT1, buf_output);
UpdateWindow( ::GetDlgItem(g_wnd, IDC_EDIT1) );
break;
case STRUCTUREPROGRESS:
//wprintf(L"STRUCTUREPROGRESS\r");
break;
case DONEWITHSTRUCTURE:
//wprintf(L"DONEWITHSTRUCTURE\r");
break;
/* case CLUSTERSIZETOOSMALL:
strcat(buf_output, "CLUSTERSIZETOOSMALL \n\0x0D\0x0A");
SetDlgItemText(g_wnd, IDC_EDIT1, buf_output);
UpdateWindow( ::GetDlgItem(g_wnd, IDC_EDIT1) );
break;*/
case PROGRESS:
percent = (PDWORD) Argument;
//wprintf(L"%d percent completed.\r", *percent);
break;
case OUTPUT:
output = (PTEXTOUTPUT) Argument;
if (strlen(buf_output) < 70000)
{
strcat(buf_output, output->Output);
strcat(buf_output, "\n\0x0D\0x0A");
SetDlgItemText(g_wnd, IDC_EDIT1, buf_output);
UpdateWindow( ::GetDlgItem(g_wnd, IDC_EDIT1) );
}
break;
case DONE:
status = (PBOOLEAN) Argument;
if ( *status == TRUE )
{
strcat(buf_output, "Completed successfully.");
strcat(buf_output, "\n");
SetDlgItemText(g_wnd, IDC_EDIT1, buf_output);
Error = FALSE;
} else
{
strcat(buf_output, "Was not able to complete successfully.");
strcat(buf_output, "\n");
SetDlgItemText(g_wnd, IDC_EDIT1, buf_output);
Error = TRUE;
}
break;
default:
{