65d64135b9acd04e1c4204aa31e34042b77ae4b7
[openafs.git] / src / WINNT / afsrdr / kernel / fs / Include / AFSStructs.h
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 #ifndef _AFS_STRUCTS_H
36 #define _AFS_STRUCTS_H
37
38 //
39 // File: AFSStructs.h
40 //
41
42 //
43 // Library queue request cb
44 //
45
46 typedef struct _AFS_LIBRARY_QUEUE_REQUEST_CB
47 {
48
49     struct _AFS_LIBRARY_QUEUE_REQUEST_CB    *fLink;
50
51     PIRP        Irp;
52
53 } AFSLibraryQueueRequestCB;
54
55 typedef struct AFS_PROCESS_CB
56 {
57
58     AFSBTreeEntry       TreeEntry;              // HashIndex = ProcessId
59
60     ERESOURCE           Lock;
61
62     ULONG               Flags;
63
64     ULONGLONG           ParentProcessId;
65
66     ULONGLONG           CreatingThread;
67
68     GUID               *ActiveAuthGroup;
69
70     struct _AFS_PROCESS_AUTH_GROUP_CB *AuthGroupList;
71
72     struct AFS_THREAD_CB    *ThreadList;
73
74 } AFSProcessCB;
75
76 typedef struct AFS_THREAD_CB
77 {
78
79     struct AFS_THREAD_CB *Next;
80
81     ULONGLONG           ThreadId;
82
83     ULONG               Flags;
84
85     GUID               *ActiveAuthGroup;
86
87 } AFSThreadCB;
88
89 typedef struct _AFS_SID_ENTRY_CB
90 {
91
92     AFSBTreeEntry       TreeEntry;
93
94     ULONG               Flags;
95
96     GUID                AuthGroup;
97
98 } AFSSIDEntryCB;
99
100 typedef struct _AFS_PROCESS_AUTH_GROUP_CB
101 {
102
103     struct _AFS_PROCESS_AUTH_GROUP_CB *Next;
104
105     ULONG               Flags;
106
107     ULONGLONG           AuthGroupHash;
108
109     GUID                AuthGroup;
110
111 } AFSProcessAuthGroupCB;
112
113 typedef struct _AFS_SET_DACL_CB
114 {
115
116     AFSProcessCB       *ProcessCB;
117
118     NTSTATUS            RequestStatus;
119
120     KEVENT              Event;
121
122 } AFSSetDaclRequestCB;
123
124 typedef struct _AFS_SRVTABLE_ENTRY
125 {
126
127     PVOID          *ServiceTable;
128
129     ULONG           LowCall;
130
131     ULONG           HiCall;
132
133     PVOID          *ArgTable;
134
135 } AFSSrvcTableEntry;
136
137 #endif /* _AFS_STRUCTS_H */