]> git.proxmox.com Git - mirror_edk2.git/blob - EdkNt32Pkg/Library/Nt32OemHookStatusCodeLib/Nt32OemHookStatusCodeLib.c
de30da9a93559d019660c94f05cb2158276413a9
[mirror_edk2.git] / EdkNt32Pkg / Library / Nt32OemHookStatusCodeLib / Nt32OemHookStatusCodeLib.c
1 /** @file
2 OEM hook status code library functions with no library constructor/destructor
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name: Nt32OemHookStatusCodeLib.c
14
15 **/
16
17 #include <stdio.h>
18
19 //
20 // Cache of WinNtThunk protocol
21 //
22 EFI_WIN_NT_THUNK_PROTOCOL *mWinNt;
23
24 //
25 // Cache of standard output handle .
26 //
27 HANDLE mStdOut;
28
29 /**
30
31 Initialize OEM status code device .
32
33 @return Always return EFI_SUCCESS.
34
35 **/
36 EFI_STATUS
37 EFIAPI
38 OemHookStatusCodeInitialize (
39 VOID
40 )
41 {
42 PEI_NT_THUNK_PPI *NtThunkPpi;
43 EFI_STATUS Status;
44
45 if (FeaturePcdGet (PcdNt32StatusCodeLibUseForPei)) {
46 //
47 // Locate NtThunkPpi for retrieving standard output handle
48 //
49 Status = PeiServicesLocatePpi (
50 &gPeiNtThunkPpiGuid,
51 0,
52 NULL,
53 (VOID **) &NtThunkPpi
54 );
55
56 ASSERT_EFI_ERROR (Status);
57
58 mWinNt = (EFI_WIN_NT_THUNK_PROTOCOL *) NtThunkPpi->NtThunk ();
59 } else {
60 EFI_HOB_GUID_TYPE *GuidHob;
61
62 //
63 // Retrieve WinNtThunkProtocol from GUID'ed HOB
64 //
65 GuidHob = GetFirstGuidHob (&gEfiWinNtThunkProtocolGuid);
66 ASSERT (GuidHob != NULL);
67 mWinNt = (EFI_WIN_NT_THUNK_PROTOCOL *)(*(UINTN *)(GET_GUID_HOB_DATA (GuidHob)));
68 ASSERT (mWinNt != NULL);
69 }
70
71 //
72 // Cache standard output handle.
73 //
74 mStdOut = mWinNt->GetStdHandle (STD_OUTPUT_HANDLE);
75
76 return EFI_SUCCESS;
77 }
78
79 /**
80 Report status code to OEM device.
81
82 @param CodeType Indicates the type of status code being reported. Type EFI_STATUS_CODE_TYPE is defined in "Related Definitions¡± below.
83
84 @param Value Describes the current status of a hardware or software entity.
85 This included information about the class and subclass that is used to classify the entity
86 as well as an operation. For progress codes, the operation is the current activity.
87 For error codes, it is the exception. For debug codes, it is not defined at this time.
88 Type EFI_STATUS_CODE_VALUE is defined in ¡°Related Definitions¡± below.
89 Specific values are discussed in the Intel? Platform Innovation Framework for EFI Status Code Specification.
90
91 @param Instance The enumeration of a hardware or software entity within the system.
92 A system may contain multiple entities that match a class/subclass pairing.
93 The instance differentiates between them. An instance of 0 indicates that instance information is unavailable,
94 not meaningful, or not relevant. Valid instance numbers start with 1.
95
96
97 @param CallerId This optional parameter may be used to identify the caller.
98 This parameter allows the status code driver to apply different rules to different callers.
99 Type EFI_GUID is defined in InstallProtocolInterface() in the EFI 1.10 Specification.
100
101
102 @param Data This optional parameter may be used to pass additional data
103
104 @return The function always return EFI_SUCCESS.
105
106 **/
107 EFI_STATUS
108 EFIAPI
109 OemHookStatusCodeReport (
110 IN EFI_STATUS_CODE_TYPE CodeType,
111 IN EFI_STATUS_CODE_VALUE Value,
112 IN UINT32 Instance,
113 IN EFI_GUID *CallerId, OPTIONAL
114 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
115 )
116 {
117 CHAR8 *Filename;
118 CHAR8 *Description;
119 CHAR8 *Format;
120 CHAR8 Buffer[EFI_STATUS_CODE_DATA_MAX_SIZE];
121 UINT32 ErrorLevel;
122 UINT32 LineNumber;
123 UINTN CharCount;
124 VA_LIST Marker;
125 EFI_DEBUG_INFO *DebugInfo;
126
127 Buffer[0] = '\0';
128
129 if (Data != NULL &&
130 ReportStatusCodeExtractAssertInfo (CodeType, Value, Data, &Filename, &Description, &LineNumber)) {
131 //
132 // Print ASSERT() information into output buffer.
133 //
134 CharCount = AsciiSPrint (
135 Buffer,
136 EFI_STATUS_CODE_DATA_MAX_SIZE,
137 "\n\rASSERT!: %a (%d): %a\n\r",
138 Filename,
139 LineNumber,
140 Description
141 );
142
143 //
144 // Callout to standard output.
145 //
146 mWinNt->WriteFile (
147 mStdOut,
148 Buffer,
149 CharCount,
150 &CharCount,
151 NULL
152 );
153
154 CpuBreakpoint ();
155
156 return EFI_SUCCESS;
157
158 } else if (Data != NULL &&
159 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
160 //
161 // Print DEBUG() information into output buffer.
162 //
163 CharCount = AsciiVSPrint (
164 Buffer,
165 EFI_STATUS_CODE_DATA_MAX_SIZE,
166 Format,
167 Marker
168 );
169 } else if (Data != NULL &&
170 CompareGuid (&Data->Type, &gEfiStatusCodeSpecificDataGuid) &&
171 (CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_DEBUG_CODE) {
172 //
173 // Print specific data into output buffer.
174 //
175 DebugInfo = (EFI_DEBUG_INFO *) (Data + 1);
176 Marker = (VA_LIST) (DebugInfo + 1);
177 Format = (CHAR8 *) (((UINT64 *) Marker) + 12);
178
179 CharCount = AsciiVSPrint (Buffer, EFI_STATUS_CODE_DATA_MAX_SIZE, Format, Marker);
180 } else if ((CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_ERROR_CODE) {
181 //
182 // Print ERROR information into output buffer.
183 //
184 CharCount = AsciiSPrint (Buffer, EFI_STATUS_CODE_DATA_MAX_SIZE, "ERROR: C%x:V%x I%x", CodeType, Value, Instance);
185
186 //
187 // Make sure we don't try to print values that weren't intended to be printed, especially NULL GUID pointers.
188 //
189
190 if (CallerId != NULL) {
191 CharCount += AsciiSPrint (
192 &Buffer[CharCount - 1],
193 (EFI_STATUS_CODE_DATA_MAX_SIZE - (sizeof (Buffer[0]) * CharCount)),
194 " %g",
195 CallerId
196 );
197 }
198
199 if (Data) {
200 CharCount += AsciiSPrint (
201 &Buffer[CharCount - 1],
202 (EFI_STATUS_CODE_DATA_MAX_SIZE - (sizeof (Buffer[0]) * CharCount)),
203 " %x",
204 Data
205 );
206 }
207
208 CharCount += AsciiSPrint (
209 &Buffer[CharCount - 1],
210 (EFI_STATUS_CODE_DATA_MAX_SIZE - (sizeof (Buffer[0]) * CharCount)),
211 "\n\r"
212 );
213 } else if ((CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_PROGRESS_CODE) {
214 CharCount = AsciiSPrint (Buffer, EFI_STATUS_CODE_DATA_MAX_SIZE, "PROGRESS CODE: V%x I%x\n\r", Value, Instance);
215 } else {
216 CharCount = AsciiSPrint (Buffer, EFI_STATUS_CODE_DATA_MAX_SIZE, "Undefined: C%x:V%x I%x\n\r", CodeType, Value, Instance);
217 }
218
219 //
220 // Callout to standard output.
221 //
222 mWinNt->WriteFile (
223 mStdOut,
224 Buffer,
225 CharCount,
226 &CharCount,
227 NULL
228 );
229
230 return EFI_SUCCESS;
231 }
232