forked from BenjaminKim/dokanx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
dokani.h
296 lines (217 loc) · 5.72 KB
/
dokani.h
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
/*
Dokan : user-mode file system library for Windows
Copyright (C) 2008 Hiroki Asakawa [email protected]
http://dokan-dev.net/en
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser 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 Lesser General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _DOKANI_H_
#define _DOKANI_H_
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include "../public.h"
#include "dokanc.h"
#include "list.h"
#include "dokan.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _DOKAN_INSTANCE {
// to ensure that unmount dispatch is called at once
CRITICAL_SECTION CriticalSection;
// store CurrentDeviceName
// (when there are many mounts, each mount use
// other DeviceName)
WCHAR DeviceName[64];
WCHAR MountPoint[MAX_PATH];
ULONG DeviceNumber;
ULONG MountId;
PDOKAN_OPTIONS DokanOptions;
PDOKAN_OPERATIONS DokanOperations;
LIST_ENTRY ListEntry;
} DOKAN_INSTANCE, *PDOKAN_INSTANCE;
//
// OPEN_INFO contains information for a opened file.
// When user mode file system receives a CREATE Irp, it allocate the memory and deallocate the memory at CLOSE Irp.
// 1:1 correspondence with CCB(kernel mode driver data structure).
//
typedef struct _DOKAN_OPEN_INFO {
BOOL IsDirectory;
// It is set to 2 when he creates.
// Everytime we send a I/O result information, it will be increased.
// Because IRP_MJ_CLOSE decrease it, it should be 2 first.
ULONG OpenCount;
PEVENT_CONTEXT EventContext;
PDOKAN_INSTANCE DokanInstance;
//
// It contains a user mode file handle
//
ULONG64 UserContext;
//
// 이벤트 아이디는 OPEN_INFO 구조체에 대한 시퀀스이다.
// EventId is a sequence for OPEN_INFO structure.
// It gives you information how much times the files are opened after your driver loaded.
//
ULONG EventId;
PLIST_ENTRY DirListHead;
} DOKAN_OPEN_INFO, *PDOKAN_OPEN_INFO;
BOOL
DokanStart(
PDOKAN_INSTANCE Instance
);
BOOL
SendToDevice(
LPCWSTR DeviceName,
DWORD IoControlCode,
PVOID InputBuffer,
ULONG InputLength,
PVOID OutputBuffer,
ULONG OutputLength,
PULONG ReturnedLength);
BOOL GetRawDeviceName(LPCWSTR pDeviceName, LPWSTR pRawDeviceName, size_t cchRawDeviceName);
UINT __stdcall
DokanLoop(
PVOID Param);
BOOL
DokanMount(
LPCWSTR MountPoint,
LPCWSTR DeviceName);
VOID
SendEventInformation(
HANDLE Handle,
PEVENT_INFORMATION EventInfo,
ULONG EventLength,
PDOKAN_INSTANCE DokanInstance);
PEVENT_INFORMATION
DispatchCommon(
PEVENT_CONTEXT EventContext,
ULONG SizeOfEventInfo,
PDOKAN_INSTANCE DokanInstance,
PDOKAN_FILE_INFO DokanFileInfo,
PDOKAN_OPEN_INFO* DokanOpenInfo);
VOID
DispatchDirectoryInformation(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchQueryInformation(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchQueryVolumeInformation(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchSetInformation(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchRead(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchWrite(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchCreate(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchClose(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchCleanup(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchFlush(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchUnmount(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchLock(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchQuerySecurity(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
VOID
DispatchSetSecurity(
HANDLE Handle,
PEVENT_CONTEXT EventContext,
PDOKAN_INSTANCE DokanInstance);
BOOLEAN
InstallDriver(
SC_HANDLE SchSCManager,
LPCWSTR DriverName,
LPCWSTR ServiceExe);
BOOLEAN
RemoveDriver(
SC_HANDLE SchSCManager,
LPCWSTR DriverName);
BOOLEAN
StartDriver(
SC_HANDLE SchSCManager,
LPCWSTR DriverName);
BOOLEAN
StopDriver(
SC_HANDLE SchSCManager,
LPCWSTR DriverName);
BOOLEAN
ManageDriver(
LPCWSTR DriverName,
LPCWSTR ServiceName,
USHORT Function);
BOOL
SendReleaseIRP(
LPCWSTR DeviceName);
VOID
CheckFileName(
LPWSTR FileName);
VOID
ClearFindData(
PLIST_ENTRY ListHead);
UINT WINAPI
DokanKeepAlive(
PVOID pDokanInstance);
NTSTATUS
GetNTStatus(DWORD ErrorCode);
PDOKAN_OPEN_INFO
GetDokanOpenInfo(
PEVENT_CONTEXT EventInfomation,
PDOKAN_INSTANCE DokanInstance);
VOID
ReleaseDokanOpenInfo(
PEVENT_INFORMATION EventInfomation,
PDOKAN_INSTANCE DokanInstance);
#ifdef __cplusplus
}
#endif
#endif