7f69fa18fbe929e3aaa6c4739053522f1ec05d1e
[openafs.git] / src / WINNT / afsrdr / kernel / lib / 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      AFSLibraryDriverObject = NULL;
46
47 PDEVICE_OBJECT      AFSLibraryDeviceObject = NULL;
48
49 PDEVICE_OBJECT      AFSControlDeviceObject = NULL;
50
51 PDEVICE_OBJECT      AFSRDRDeviceObject = NULL;
52
53 UNICODE_STRING      AFSRegistryPath;
54
55 HANDLE              AFSSysProcess = NULL;
56
57 UNICODE_STRING      AFSServerName;
58
59 AFSVolumeCB        *AFSGlobalRoot = NULL;
60
61 UNICODE_STRING      AFSPIOCtlName;
62
63 UNICODE_STRING      AFSGlobalRootName;
64
65 ULONG               AFSDebugFlags = 0;
66
67 CACHE_MANAGER_CALLBACKS *AFSLibCacheManagerCallbacks = NULL;
68
69 ULONG               AFSLibControlFlags = 0;
70
71 void               *AFSLibCacheBaseAddress = NULL;
72
73 LARGE_INTEGER       AFSLibCacheLength = {0,0};
74
75 //
76 // List of 'special' share names we need to handle
77 //
78
79 AFSDirectoryCB     *AFSSpecialShareNames = NULL;
80
81 //
82 // Global relative entries for enumerations
83 //
84
85 AFSDirectoryCB     *AFSGlobalDotDirEntry = NULL;
86
87 AFSDirectoryCB     *AFSGlobalDotDotDirEntry = NULL;
88
89 //
90 // Callbacks in the framework
91 //
92
93 PAFSProcessRequest  AFSProcessRequest = NULL;
94
95 PAFSDbgLogMsg       AFSDbgLogMsg = AFSDefaultLogMsg;
96
97 PAFSAddConnectionEx AFSAddConnectionEx = NULL;
98
99 PAFSExAllocatePoolWithTag   AFSExAllocatePoolWithTag = NULL;
100
101 PAFSExFreePoolWithTag      AFSExFreePoolWithTag = NULL;
102
103 PAFSDumpTraceFiles  AFSDumpTraceFilesFnc = AFSDumpTraceFiles_Default;
104
105 PAFSRetrieveAuthGroup AFSRetrieveAuthGroupFnc = NULL;
106
107 //
108 // Security descriptor routine
109 //
110
111 PAFSRtlSetSaclSecurityDescriptor AFSRtlSetSaclSecurityDescriptor = NULL;
112
113 SECURITY_DESCRIPTOR *AFSDefaultSD = NULL;
114
115 PAFSRtlSetGroupSecurityDescriptor AFSRtlSetGroupSecurityDescriptor = NULL;
116
117 SID_IDENTIFIER_AUTHORITY SeWorldSidAuthority = {SECURITY_WORLD_SID_AUTHORITY};
118
119 }