-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDokanOperationProxy.cs
803 lines (687 loc) · 29.7 KB
/
DokanOperationProxy.cs
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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Security.AccessControl;
using System.Text;
using DokanNet.Native;
using FILETIME = System.Runtime.InteropServices.ComTypes.FILETIME;
namespace DokanNet
{
internal sealed class DokanOperationProxy
{
#region Delegates
public delegate int CleanupDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPStruct), In, Out] DokanFileInfo rawFileInfo);
public delegate int CloseFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPStruct), In, Out] DokanFileInfo rawFileInfo);
public delegate int CreateDirectoryDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int CreateFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName, uint rawAccessMode, uint rawShare,
uint rawCreationDisposition, uint rawFlagsAndAttributes,
[MarshalAs(UnmanagedType.LPStruct), In, Out] DokanFileInfo dokanFileInfo);
public delegate int DeleteDirectoryDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int DeleteFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int FindFilesDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName, IntPtr rawFillFindData, // function pointer
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
/* public delegate int FindFilesWithPatternDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPWStr)] string rawSearchPattern,
IntPtr rawFillFindData, // function pointer
[MarshalAs(UnmanagedType.LPStruct), In, Out] DokanFileInfo rawFileInfo);*/
public delegate int FlushFileBuffersDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int GetDiskFreeSpaceDelegate(ref long rawFreeBytesAvailable, ref long rawTotalNumberOfBytes,
ref long rawTotalNumberOfFreeBytes,
[MarshalAs(UnmanagedType.LPStruct), In] DokanFileInfo rawFileInfo);
public delegate int GetFileInformationDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string fileName, ref BY_HANDLE_FILE_INFORMATION handleFileInfo,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo fileInfo);
public delegate int GetFileSecurityDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,[In] ref SECURITY_INFORMATION rawRequestedInformation,
IntPtr rawSecurityDescriptor, uint rawSecurityDescriptorLength,
ref uint rawSecurityDescriptorLengthNeeded,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int GetVolumeInformationDelegate(
[MarshalAs(UnmanagedType.LPWStr)] StringBuilder rawVolumeNameBuffer, uint rawVolumeNameSize,
ref uint rawVolumeSerialNumber,
ref uint rawMaximumComponentLength, ref FileSystemFeatures rawFileSystemFlags,
[MarshalAs(UnmanagedType.LPWStr)] StringBuilder rawFileSystemNameBuffer,
uint rawFileSystemNameSize, [MarshalAs(UnmanagedType.LPStruct), In] DokanFileInfo rawFileInfo);
public delegate int LockFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName, long rawByteOffset, long rawLength,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int MoveFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPWStr)] string rawNewFileName,
[MarshalAs(UnmanagedType.Bool)] bool rawReplaceIfExisting,
[MarshalAs(UnmanagedType.LPStruct), In, Out] DokanFileInfo rawFileInfo);
public delegate int OpenDirectoryDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string fileName,
[MarshalAs(UnmanagedType.LPStruct), In, Out] DokanFileInfo fileInfo);
public delegate int ReadFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 2), Out] byte[] rawBuffer, uint rawBufferLength,
ref int rawReadLength, long rawOffset,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int SetAllocationSizeDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName, long rawLength,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int SetEndOfFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName, long rawByteOffset,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int SetFileAttributesDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName, uint rawAttributes,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int SetFileSecurityDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,[In] ref SECURITY_INFORMATION rawSecurityInformation,
IntPtr rawSecurityDescriptor, uint rawSecurityDescriptorLength,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int SetFileTimeDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
ref FILETIME rawCreationTime,
ref FILETIME rawLastAccessTime,
ref FILETIME rawLastWriteTime, [MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int UnlockFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName, long rawByteOffset, long rawLength,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
public delegate int UnmountDelegate([MarshalAs(UnmanagedType.LPStruct), In] DokanFileInfo rawFileInfo);
public delegate int WriteFileDelegate(
[MarshalAs(UnmanagedType.LPWStr)] string rawFileName,
[MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 2)] byte[] rawBuffer, uint rawNumberOfBytesToWrite,
ref int rawNumberOfBytesWritten, long rawOffset,
[MarshalAs(UnmanagedType.LPStruct), In/*, Out*/] DokanFileInfo rawFileInfo);
#endregion
private const int ERROR_FILE_NOT_FOUND = -2;
private const int ERROR_INVALID_FUNCTION = -1;
private const int ERROR_SUCCESS = 0;
private const int ERROR_INSUFFICIENT_BUFFER = -122;
private const int ERROR_INVALID_HANDLE = -6;
private readonly IDokanOperations _operations;
private readonly uint _serialNumber;
public DokanOperationProxy(IDokanOperations operations)
{
_operations = operations;
_serialNumber = (uint) _operations.GetHashCode();
}
public int CreateFileProxy(string rawFileName, uint rawAccessMode,
uint rawShare, uint rawCreationDisposition, uint rawFlagsAndAttributes,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.CreateFile(rawFileName, (FileAccess) rawAccessMode, (FileShare) rawShare,
(FileMode) rawCreationDisposition,
(FileOptions) (rawFlagsAndAttributes & 0xffffc000), //& 0xffffc000
(FileAttributes) (rawFlagsAndAttributes & 0x3fff), rawFileInfo);
//& 0x3ffflower 14 bits i think are file atributes and rest are file options WRITE_TROUGH etc.
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_FILE_NOT_FOUND;
}
}
////
public int OpenDirectoryProxy(string rawFileName,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.OpenDirectory(rawFileName, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int CreateDirectoryProxy(string rawFileName,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.CreateDirectory(rawFileName, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int CleanupProxy(string rawFileName,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.Cleanup(rawFileName, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int CloseFileProxy(string rawFileName,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.CloseFile(rawFileName, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int ReadFileProxy(string rawFileName, byte[] rawBuffer,
uint rawBufferLength, ref int rawReadLength, long rawOffset,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.ReadFile(rawFileName, rawBuffer, out rawReadLength, rawOffset,
rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int WriteFileProxy(string rawFileName, byte[] rawBuffer,
uint rawNumberOfBytesToWrite, ref int rawNumberOfBytesWritten, long rawOffset,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.WriteFile(rawFileName, rawBuffer,
out rawNumberOfBytesWritten, rawOffset,
rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int FlushFileBuffersProxy(string rawFileName,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.FlushFileBuffers(rawFileName, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int GetFileInformationProxy(string rawFileName,
ref BY_HANDLE_FILE_INFORMATION rawHandleFileInformation,
DokanFileInfo rawFileInfo)
{
FileInformation fi ;
try
{
int ret = (int) _operations.GetFileInformation(rawFileName, out fi, rawFileInfo);
if (ret == ERROR_SUCCESS)
{
Debug.Assert(fi.FileName!=null);
rawHandleFileInformation.dwFileAttributes = (uint) fi.Attributes /* + FILE_ATTRIBUTE_VIRTUAL*/;
long ctime = fi.CreationTime.ToFileTime();
long atime = fi.LastAccessTime.ToFileTime();
long mtime = fi.LastWriteTime.ToFileTime();
rawHandleFileInformation.ftCreationTime.dwHighDateTime = (int) (ctime >> 32);
rawHandleFileInformation.ftCreationTime.dwLowDateTime =
(int) (ctime & 0xffffffff);
rawHandleFileInformation.ftLastAccessTime.dwHighDateTime =
(int) (atime >> 32);
rawHandleFileInformation.ftLastAccessTime.dwLowDateTime =
(int) (atime & 0xffffffff);
rawHandleFileInformation.ftLastWriteTime.dwHighDateTime =
(int) (mtime >> 32);
rawHandleFileInformation.ftLastWriteTime.dwLowDateTime =
(int) (mtime & 0xffffffff);
rawHandleFileInformation.dwVolumeSerialNumber = _serialNumber;
rawHandleFileInformation.nFileSizeLow = (uint) (fi.Length & 0xffffffff);
rawHandleFileInformation.nFileSizeHigh = (uint) (fi.Length >> 32);
rawHandleFileInformation.dwNumberOfLinks = 1;
rawHandleFileInformation.nFileIndexHigh = 0;
rawHandleFileInformation.nFileIndexLow = (uint) fi.FileName.GetHashCode();
}
return ret;
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int FindFilesProxy(string rawFileName, IntPtr rawFillFindData,
// function pointer
DokanFileInfo rawFileInfo)
{
try
{
IList<FileInformation> files ;
int ret = (int) _operations.FindFiles(rawFileName, out files, rawFileInfo);
Debug.Assert(files!=null);
if (ret == ERROR_SUCCESS&&files.Count!=0)
{
var fill =
(FILL_FIND_DATA)Marshal.GetDelegateForFunctionPointer(rawFillFindData, typeof(FILL_FIND_DATA));
// Used a single entry call to speed up the "enumeration" of the list
for (int index = 0; index < files.Count; index++)
{
Addto(fill, rawFileInfo, files[index]);
}
}
return ret;
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_HANDLE;
}
}
private static void Addto(FILL_FIND_DATA fill, DokanFileInfo rawFileInfo, FileInformation fi)
{
Debug.Assert(!String.IsNullOrEmpty(fi.FileName));
long ctime = fi.CreationTime.ToFileTime();
long atime = fi.LastAccessTime.ToFileTime();
long mtime = fi.LastWriteTime.ToFileTime();
var data = new WIN32_FIND_DATA
{
dwFileAttributes = fi.Attributes,
ftCreationTime =
{
dwHighDateTime = (int) (ctime >> 32),
dwLowDateTime = (int) (ctime & 0xffffffff)
},
ftLastAccessTime =
{
dwHighDateTime = (int) (atime >> 32),
dwLowDateTime = (int) (atime & 0xffffffff)
},
ftLastWriteTime =
{
dwHighDateTime = (int) (mtime >> 32),
dwLowDateTime = (int) (mtime & 0xffffffff)
},
nFileSizeLow = (uint) (fi.Length & 0xffffffff),
nFileSizeHigh = (uint) (fi.Length >> 32),
cFileName = fi.FileName
};
//ZeroMemory(&data, sizeof(WIN32_FIND_DATAW));
fill(ref data, rawFileInfo);
}
////
public int SetEndOfFileProxy(string rawFileName, long rawByteOffset,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.SetEndOfFile(rawFileName, rawByteOffset, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
public int SetAllocationSizeProxy(string rawFileName, long rawLength,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.SetAllocationSize(rawFileName, rawLength, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int SetFileAttributesProxy(string rawFileName, uint rawAttributes,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.SetFileAttributes(rawFileName, (FileAttributes) rawAttributes, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int SetFileTimeProxy(string rawFileName,
ref FILETIME rawCreationTime,
ref FILETIME rawLastAccessTime,
ref FILETIME rawLastWriteTime,
DokanFileInfo rawFileInfo)
{
var ctime = ( rawCreationTime.dwLowDateTime != 0 || rawCreationTime.dwHighDateTime != 0) && (rawCreationTime.dwLowDateTime != -1 || rawCreationTime.dwHighDateTime != -1)
? DateTime.FromFileTime(((long) rawCreationTime.dwHighDateTime << 32) |
(uint) rawCreationTime.dwLowDateTime)
: (DateTime?) null;
var atime =(rawLastAccessTime.dwLowDateTime != 0 || rawLastAccessTime.dwHighDateTime != 0) && (rawLastAccessTime.dwLowDateTime != -1 || rawLastAccessTime.dwHighDateTime != -1)
? DateTime.FromFileTime(((long) rawLastAccessTime.dwHighDateTime << 32) |
(uint) rawLastAccessTime.dwLowDateTime)
: (DateTime?) null;
var mtime = (rawLastWriteTime.dwLowDateTime != 0 || rawLastWriteTime.dwHighDateTime != 0) && (rawLastWriteTime.dwLowDateTime != -1 || rawLastWriteTime.dwHighDateTime != -1)
? DateTime.FromFileTime(((long) rawLastWriteTime.dwHighDateTime << 32) |
(uint) rawLastWriteTime.dwLowDateTime)
: (DateTime?) null;
try
{
return (int) _operations.SetFileTime(rawFileName, ctime, atime,
mtime, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int DeleteFileProxy(string rawFileName, DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.DeleteFile(rawFileName, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int DeleteDirectoryProxy(string rawFileName,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.DeleteDirectory(rawFileName, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int MoveFileProxy(string rawFileName,
string rawNewFileName, bool rawReplaceIfExisting,
DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.MoveFile(rawFileName, rawNewFileName, rawReplaceIfExisting,
rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int LockFileProxy(string rawFileName, long rawByteOffset,
long rawLength, DokanFileInfo rawFileInfo)
{
try
{
return
(int) _operations.LockFile(rawFileName, rawByteOffset, rawLength, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int UnlockFileProxy(string rawFileName, long rawByteOffset,
long rawLength, DokanFileInfo rawFileInfo)
{
try
{
return
(int)
_operations.UnlockFile(rawFileName, rawByteOffset, rawLength, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
////
public int GetDiskFreeSpaceProxy(ref long rawFreeBytesAvailable, ref long rawTotalNumberOfBytes,
ref long rawTotalNumberOfFreeBytes, DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.GetDiskFreeSpace(out rawFreeBytesAvailable, out rawTotalNumberOfBytes,
out rawTotalNumberOfFreeBytes,
rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
public int GetVolumeInformationProxy(StringBuilder rawVolumeNameBuffer,
uint rawVolumeNameSize,
ref uint rawVolumeSerialNumber,
ref uint rawMaximumComponentLength, ref FileSystemFeatures rawFileSystemFlags,
StringBuilder rawFileSystemNameBuffer,
uint rawFileSystemNameSize,
DokanFileInfo fileInfo)
{
rawMaximumComponentLength = 256;
rawVolumeSerialNumber = _serialNumber;
string label;
string name;
try
{
int ret = (int) _operations.GetVolumeInformation(out label,
out rawFileSystemFlags, out name,
fileInfo);
if (ret == ERROR_SUCCESS)
{
Debug.Assert(!String.IsNullOrEmpty(name));
Debug.Assert(!String.IsNullOrEmpty(label));
rawVolumeNameBuffer.Append(label);
rawFileSystemNameBuffer.Append(name);
}
return ret;
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
public int UnmountProxy(DokanFileInfo rawFileInfo)
{
try
{
return (int) _operations.Unmount(rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
public int GetFileSecurityProxy(string rawFileName, ref SECURITY_INFORMATION rawRequestedInformation,
IntPtr rawSecurityDescriptor, uint rawSecurityDescriptorLength,
ref uint rawSecurityDescriptorLengthNeeded,
DokanFileInfo rawFileInfo)
{
FileSystemSecurity sec;
var sect = AccessControlSections.None;
if (rawRequestedInformation.HasFlag(SECURITY_INFORMATION.OWNER_SECURITY_INFORMATION))
{
sect |= AccessControlSections.Owner;
}
if (rawRequestedInformation.HasFlag(SECURITY_INFORMATION.GROUP_SECURITY_INFORMATION))
{
sect |= AccessControlSections.Group;
}
if (rawRequestedInformation.HasFlag(SECURITY_INFORMATION.DACL_SECURITY_INFORMATION) ||
rawRequestedInformation.HasFlag(SECURITY_INFORMATION.PROTECTED_DACL_SECURITY_INFORMATION) ||
rawRequestedInformation.HasFlag(SECURITY_INFORMATION.UNPROTECTED_DACL_SECURITY_INFORMATION))
{
sect |= AccessControlSections.Access;
}
if (rawRequestedInformation.HasFlag(SECURITY_INFORMATION.SACL_SECURITY_INFORMATION) ||
rawRequestedInformation.HasFlag(SECURITY_INFORMATION.PROTECTED_SACL_SECURITY_INFORMATION) ||
rawRequestedInformation.HasFlag(SECURITY_INFORMATION.UNPROTECTED_SACL_SECURITY_INFORMATION))
{
sect |= AccessControlSections.Audit;
}
try
{
int ret = (int) _operations.GetFileSecurity(rawFileName, out sec, sect, rawFileInfo);
if (ret == ERROR_SUCCESS /*&& sec != null*/)
{
Debug.Assert(sec!=null);
var buffer = sec.GetSecurityDescriptorBinaryForm();
rawSecurityDescriptorLengthNeeded = (uint)buffer.Length;
if (buffer.Length > rawSecurityDescriptorLength)
{
return ERROR_INSUFFICIENT_BUFFER;
}
Marshal.Copy(buffer, 0, rawSecurityDescriptor, buffer.Length);
}
return ret;
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
public int SetFileSecurityProxy(
string rawFileName, ref SECURITY_INFORMATION rawSecurityInformation,
IntPtr rawSecurityDescriptor, uint rawSecurityDescriptorLength,
DokanFileInfo rawFileInfo)
{
var sect = AccessControlSections.None;
if (rawSecurityInformation.HasFlag(SECURITY_INFORMATION.OWNER_SECURITY_INFORMATION))
{
sect |= AccessControlSections.Owner;
}
if (rawSecurityInformation.HasFlag(SECURITY_INFORMATION.GROUP_SECURITY_INFORMATION))
{
sect |= AccessControlSections.Group;
}
if (rawSecurityInformation.HasFlag(SECURITY_INFORMATION.DACL_SECURITY_INFORMATION) ||
rawSecurityInformation.HasFlag(SECURITY_INFORMATION.PROTECTED_DACL_SECURITY_INFORMATION) ||
rawSecurityInformation.HasFlag(SECURITY_INFORMATION.UNPROTECTED_DACL_SECURITY_INFORMATION))
{
sect |= AccessControlSections.Access;
}
if (rawSecurityInformation.HasFlag(SECURITY_INFORMATION.SACL_SECURITY_INFORMATION) ||
rawSecurityInformation.HasFlag(SECURITY_INFORMATION.PROTECTED_SACL_SECURITY_INFORMATION) ||
rawSecurityInformation.HasFlag(SECURITY_INFORMATION.UNPROTECTED_SACL_SECURITY_INFORMATION))
{
sect |= AccessControlSections.Audit;
}
var buffer = new byte[rawSecurityDescriptorLength];
try
{
Marshal.Copy(rawSecurityDescriptor, buffer, 0, (int) rawSecurityDescriptorLength);
var sec = rawFileInfo.IsDirectory ? (FileSystemSecurity) new DirectorySecurity() : new FileSecurity();
sec.SetSecurityDescriptorBinaryForm(buffer);
return (int) _operations.SetFileSecurity(rawFileName, sec, sect, rawFileInfo);
}
catch
{
#if DEBUG
throw;
#endif
return ERROR_INVALID_FUNCTION;
}
}
#region Nested type: FILL_FIND_DATA
private delegate int FILL_FIND_DATA(
ref WIN32_FIND_DATA rawFindData, [MarshalAs(UnmanagedType.LPStruct), In] DokanFileInfo rawFileInfo);
#endregion
}
}