2 * Copyright (c) 2008, 2009, 2010, 2011 Kernel Drivers, LLC.
3 * Copyright (c) 2009, 2010, 2011 Your File System, Inc.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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
14 * this list of conditions and the following disclaimer in the
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.
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.
41 #include "AFSCommon.h"
45 PDRIVER_OBJECT AFSLibraryDriverObject = NULL;
47 PDEVICE_OBJECT AFSLibraryDeviceObject = NULL;
49 PDEVICE_OBJECT AFSControlDeviceObject = NULL;
51 PDEVICE_OBJECT AFSRDRDeviceObject = NULL;
53 UNICODE_STRING AFSRegistryPath;
55 HANDLE AFSSysProcess = NULL;
57 UNICODE_STRING AFSServerName;
59 UNICODE_STRING AFSMountRootName;
61 AFSVolumeCB *AFSGlobalRoot = NULL;
63 UNICODE_STRING AFSPIOCtlName;
65 UNICODE_STRING AFSGlobalRootName;
67 ULONG AFSDebugFlags = 0;
69 CACHE_MANAGER_CALLBACKS *AFSLibCacheManagerCallbacks = NULL;
71 ULONG AFSLibControlFlags = 0;
73 void *AFSLibCacheBaseAddress = NULL;
75 LARGE_INTEGER AFSLibCacheLength = {0,0};
77 PAFSDbgLogMsg AFSDebugTraceFnc = NULL;
80 // List of 'special' share names we need to handle
83 AFSDirectoryCB *AFSSpecialShareNames = NULL;
86 // Global relative entries for enumerations
89 AFSDirectoryCB *AFSGlobalDotDirEntry = NULL;
91 AFSDirectoryCB *AFSGlobalDotDotDirEntry = NULL;
94 // Callbacks in the framework
97 PAFSProcessRequest AFSProcessRequest = NULL;
99 PAFSDbgLogMsg AFSDbgLogMsg = AFSDefaultLogMsg;
101 PAFSAddConnectionEx AFSAddConnectionEx = NULL;
103 PAFSExAllocatePoolWithTag AFSExAllocatePoolWithTag = NULL;
105 PAFSExFreePoolWithTag AFSExFreePoolWithTag = NULL;
107 PAFSDumpTraceFiles AFSDumpTraceFilesFnc = AFSDumpTraceFiles_Default;
109 PAFSRetrieveAuthGroup AFSRetrieveAuthGroupFnc = NULL;
112 // Security descriptor routine
115 PAFSRtlSetSaclSecurityDescriptor AFSRtlSetSaclSecurityDescriptor = NULL;
117 SECURITY_DESCRIPTOR *AFSDefaultSD = NULL;
119 PAFSRtlSetGroupSecurityDescriptor AFSRtlSetGroupSecurityDescriptor = NULL;
121 SID_IDENTIFIER_AUTHORITY SeWorldSidAuthority = {SECURITY_WORLD_SID_AUTHORITY};