Windows: remember when a reparse point is opened
[openafs.git] / src / WINNT / afsrdr / kernel / fs / AFSData.cpp
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 Kernel Drivers, LLC.
3  * Copyright (c) 2009, 2010, 2011 Your File System, Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * - Redistributions of source code must retain the above copyright notice,
11  *   this list of conditions and the following disclaimer.
12  * - Redistributions in binary form must reproduce the above copyright
13  *   notice,
14  *   this list of conditions and the following disclaimer in the
15  *   documentation
16  *   and/or other materials provided with the distribution.
17  * - Neither the names of Kernel Drivers, LLC and Your File System, Inc.
18  *   nor the names of their contributors may be used to endorse or promote
19  *   products derived from this software without specific prior written
20  *   permission from Kernel Drivers, LLC and Your File System, Inc.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
25  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
26  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
29  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 //
36 // File: AFSData.cpp
37 //
38
39 #define NO_EXTERN
40
41 #include "AFSCommon.h"
42
43 extern "C" {
44
45 PDRIVER_OBJECT      AFSDriverObject = NULL;
46
47 PDEVICE_OBJECT      AFSDeviceObject = NULL;
48
49 PDEVICE_OBJECT      AFSRDRDeviceObject = NULL;
50
51 FAST_IO_DISPATCH    AFSFastIoDispatch;
52
53 UNICODE_STRING      AFSRegistryPath;
54
55 ULONG               AFSDebugFlags = 0;
56
57 ULONG               AFSTraceLevel = 0;
58
59 ULONG               AFSTraceComponent = 0;
60
61 HANDLE              AFSSysProcess = NULL;
62
63 HANDLE              AFSMUPHandle = NULL;
64
65 UNICODE_STRING      AFSServerName;
66
67 UNICODE_STRING      AFSGlobalRootName;
68
69 CACHE_MANAGER_CALLBACKS AFSCacheManagerCallbacks;
70
71 //
72 // Max Length IO (Mb)
73 //
74 ULONG               AFSMaxDirectIo = 0;
75
76 //
77 // Maximum dirtiness that a file can get
78 //
79 ULONG               AFSMaxDirtyFile = 0;
80
81 //
82 // Dbg log information
83 //
84
85 ERESOURCE           AFSDbgLogLock;
86
87 ULONG               AFSDbgLogRemainingLength = 0;
88
89 char               *AFSDbgCurrentBuffer = NULL;
90
91 char               *AFSDbgBuffer = NULL;
92
93 ULONG               AFSDbgLogCounter = 0;
94
95 ULONG               AFSDbgBufferLength = 0;
96
97 ULONG               AFSDbgLogFlags = 0;
98
99 PAFSDumpTraceFiles  AFSDumpTraceFilesFnc = AFSDumpTraceFiles;
100
101 UNICODE_STRING      AFSDumpFileLocation;
102
103 KEVENT              AFSDumpFileEvent;
104
105 UNICODE_STRING      AFSDumpFileName;
106
107 void               *AFSDumpBuffer = NULL;
108
109 ULONG               AFSDumpBufferLength = 0;
110
111 //
112 // Authentication group information
113 //
114
115 ULONG               AFSAuthGroupFlags = 0;
116
117 GUID                AFSActiveAuthGroup;
118
119 GUID                AFSNoPAGAuthGroup;
120
121 PAFSSetInformationToken AFSSetInformationToken = NULL;
122
123 }