Windows: Replace AFSDbgMsgLog func with macro
[openafs.git] / src / WINNT / afsrdr / kernel / lib / 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 LibDeviceObject,
55             IN PIRP Irp)
56 {
57     UNREFERENCED_PARAMETER(LibDeviceObject);
58     NTSTATUS ntStatus = STATUS_EAS_NOT_SUPPORTED;
59     IO_STACK_LOCATION *pIrpSp;
60
61     pIrpSp = IoGetCurrentIrpStackLocation( Irp);
62
63     __try
64     {
65
66         AFSDbgTrace(( AFS_SUBSYSTEM_FILE_PROCESSING,
67                       AFS_TRACE_LEVEL_ERROR,
68                       "AFSQueryEa Entry for FO %p\n",
69                       pIrpSp->FileObject));
70
71         AFSCompleteRequest( Irp,
72                             ntStatus);
73
74     }
75     __except( AFSExceptionFilter( __FUNCTION__, GetExceptionCode(), GetExceptionInformation()) )
76     {
77
78         AFSDbgTrace(( 0,
79                       0,
80                       "EXCEPTION - AFSQueryEA\n"));
81
82         AFSDumpTraceFilesFnc();
83     }
84
85     return ntStatus;
86 }
87
88 //
89 // Function: AFSSetEA
90 //
91 // Description:
92 //
93 //      This function is the dipatch handler for the IRP_MJ_SET_EA request
94 //
95 // Return:
96 //
97 //      A status is returned for the function
98 //
99
100 NTSTATUS
101 AFSSetEA( IN PDEVICE_OBJECT LibDeviceObject,
102           IN PIRP Irp)
103 {
104     UNREFERENCED_PARAMETER(LibDeviceObject);
105     NTSTATUS ntStatus = STATUS_EAS_NOT_SUPPORTED;
106     IO_STACK_LOCATION *pIrpSp;
107
108     pIrpSp = IoGetCurrentIrpStackLocation( Irp);
109
110     __try
111     {
112
113         AFSDbgTrace(( AFS_SUBSYSTEM_FILE_PROCESSING,
114                       AFS_TRACE_LEVEL_ERROR,
115                       "AFSSetEa Entry for FO %p\n", pIrpSp->FileObject));
116
117         AFSCompleteRequest( Irp,
118                             ntStatus);
119
120     }
121     __except( AFSExceptionFilter( __FUNCTION__, GetExceptionCode(), GetExceptionInformation()) )
122     {
123
124         AFSDbgTrace(( 0,
125                       0,
126                       "EXCEPTION - AFSSetEA\n"));
127
128         AFSDumpTraceFilesFnc();
129     }
130
131     return ntStatus;
132 }