Windows: Deny writes/truncation to files w RO attr
[openafs.git] / src / WINNT / afsrdr / kernel / fs / AFSEa.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: AFSEa.cpp
37 //
38
39 #include "AFSCommon.h"
40
41 //
42 // Function: AFSQueryEA
43 //
44 // Description:
45 //
46 //      This function is the dipatch handler for the IRP_MJ_QUERY_EA request
47 //
48 // Return:
49 //
50 //      A status is returned for the function
51 //
52
53 NTSTATUS
54 AFSQueryEA( IN PDEVICE_OBJECT DeviceObject,
55             IN PIRP Irp)
56 {
57
58     NTSTATUS ntStatus = STATUS_EAS_NOT_SUPPORTED;
59     AFSDeviceExt *pControlDeviceExt = (AFSDeviceExt *)AFSDeviceObject->DeviceExtension;
60
61     __try
62     {
63
64         if( DeviceObject == AFSDeviceObject)
65         {
66
67             AFSCompleteRequest( Irp,
68                                 ntStatus);
69
70             try_return( ntStatus);
71         }
72
73         //
74         // Check the state of the library
75         //
76
77         ntStatus = AFSCheckLibraryState( Irp);
78
79         if( !NT_SUCCESS( ntStatus) ||
80             ntStatus == STATUS_PENDING)
81         {
82
83             if( ntStatus != STATUS_PENDING)
84             {
85                 AFSCompleteRequest( Irp, ntStatus);
86             }
87
88             try_return( ntStatus);
89         }
90
91         IoSkipCurrentIrpStackLocation( Irp);
92
93         ntStatus = IoCallDriver( pControlDeviceExt->Specific.Control.LibraryDeviceObject,
94                                  Irp);
95
96         //
97         // Indicate the library is done with the request
98         //
99
100         AFSClearLibraryRequest();
101
102 try_exit:
103
104         NOTHING;
105     }
106     __except( AFSExceptionFilter( __FUNCTION__, GetExceptionCode(), GetExceptionInformation()) )
107     {
108
109         AFSDbgTrace(( 0,
110                       0,
111                       "EXCEPTION - AFSQueryEA\n"));
112
113         AFSDumpTraceFilesFnc();
114     }
115
116     return ntStatus;
117 }
118
119 //
120 // Function: AFSSetEA
121 //
122 // Description:
123 //
124 //      This function is the dipatch handler for the IRP_MJ_SET_EA request
125 //
126 // Return:
127 //
128 //      A status is returned for the function
129 //
130
131 NTSTATUS
132 AFSSetEA( IN PDEVICE_OBJECT DeviceObject,
133           IN PIRP Irp)
134 {
135
136     NTSTATUS ntStatus = STATUS_EAS_NOT_SUPPORTED;
137     AFSDeviceExt *pControlDeviceExt = (AFSDeviceExt *)AFSDeviceObject->DeviceExtension;
138
139     __try
140     {
141
142         if( DeviceObject == AFSDeviceObject)
143         {
144
145             AFSCompleteRequest( Irp,
146                                 ntStatus);
147
148             try_return( ntStatus);
149         }
150
151         //
152         // Check the state of the library
153         //
154
155         ntStatus = AFSCheckLibraryState( Irp);
156
157         if( !NT_SUCCESS( ntStatus) ||
158             ntStatus == STATUS_PENDING)
159         {
160
161             if( ntStatus != STATUS_PENDING)
162             {
163                 AFSCompleteRequest( Irp, ntStatus);
164             }
165
166             try_return( ntStatus);
167         }
168
169         IoSkipCurrentIrpStackLocation( Irp);
170
171         ntStatus = IoCallDriver( pControlDeviceExt->Specific.Control.LibraryDeviceObject,
172                                  Irp);
173
174         //
175         // Indicate the library is done with the request
176         //
177
178         AFSClearLibraryRequest();
179
180 try_exit:
181
182         NOTHING;
183     }
184     __except( AFSExceptionFilter( __FUNCTION__, GetExceptionCode(), GetExceptionInformation()) )
185     {
186
187         AFSDbgTrace(( 0,
188                       0,
189                       "EXCEPTION - AFSSetEA\n"));
190
191         AFSDumpTraceFilesFnc();
192     }
193
194     return ntStatus;
195 }