]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/DataHubStatusCodeWorker.c
Reviewed the code comments in the Include/Protocol directory for typos, grammar issue...
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / StatusCode / RuntimeDxe / DataHubStatusCodeWorker.c
1 /** @file
2 Data Hub status code worker.
3
4 Copyright (c) 2006 - 2009, 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 **/
14
15 #include "StatusCodeRuntimeDxe.h"
16
17 //
18 // Initialize FIFO to cache records.
19 //
20 LIST_ENTRY mRecordsFifo = INITIALIZE_LIST_HEAD_VARIABLE (mRecordsFifo);
21 LIST_ENTRY mRecordsBuffer = INITIALIZE_LIST_HEAD_VARIABLE (mRecordsBuffer);
22 UINT32 mLogDataHubStatus = 0;
23 EFI_EVENT mLogDataHubEvent;
24 //
25 // Cache data hub protocol.
26 //
27 EFI_DATA_HUB_PROTOCOL *mDataHubProtocol;
28
29
30 /**
31 Retrieve one record of from free record buffer. This record is removed from
32 free record buffer.
33
34 This function retrieves one record from free record buffer.
35 If the pool has been exhausted, then new memory would be allocated for it.
36
37 @return Pointer to the free record.
38 NULL means failure to allocate new memeory for free record buffer.
39
40 **/
41 DATA_HUB_STATUS_CODE_DATA_RECORD *
42 AcquireRecordBuffer (
43 VOID
44 )
45 {
46 DATAHUB_STATUSCODE_RECORD *Record;
47 EFI_TPL CurrentTpl;
48 LIST_ENTRY *Node;
49 UINT32 Index;
50
51 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
52
53 if (!IsListEmpty (&mRecordsBuffer)) {
54 //
55 // Strip one entry from free record buffer.
56 //
57 Node = GetFirstNode (&mRecordsBuffer);
58 RemoveEntryList (Node);
59
60 Record = BASE_CR (Node, DATAHUB_STATUSCODE_RECORD, Node);
61 } else {
62 if (CurrentTpl > TPL_NOTIFY) {
63 //
64 // Memory management should work at <=TPL_NOTIFY
65 //
66 gBS->RestoreTPL (CurrentTpl);
67 return NULL;
68 }
69
70 //
71 // If free record buffer is exhausted, then allocate 16 new records for it.
72 //
73 gBS->RestoreTPL (CurrentTpl);
74 Record = (DATAHUB_STATUSCODE_RECORD *) AllocateZeroPool (sizeof (DATAHUB_STATUSCODE_RECORD) * 16);
75 if (Record == NULL) {
76 return NULL;
77 }
78
79 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
80 //
81 // Here we only insert 15 new records to the free record buffer, for the first record
82 // will be returned immediately.
83 //
84 for (Index = 1; Index < 16; Index++) {
85 InsertTailList (&mRecordsBuffer, &Record[Index].Node);
86 }
87 }
88
89 Record->Signature = DATAHUB_STATUS_CODE_SIGNATURE;
90 InsertTailList (&mRecordsFifo, &Record->Node);
91
92 gBS->RestoreTPL (CurrentTpl);
93
94 return (DATA_HUB_STATUS_CODE_DATA_RECORD *) (Record->Data);
95 }
96
97
98 /**
99 Retrieve one record from Records FIFO. The record would be removed from FIFO.
100
101 @return Point to record, which is ready to be logged.
102 NULL means the FIFO of record is empty.
103
104 **/
105 DATA_HUB_STATUS_CODE_DATA_RECORD *
106 RetrieveRecord (
107 VOID
108 )
109 {
110 DATA_HUB_STATUS_CODE_DATA_RECORD *RecordData;
111 DATAHUB_STATUSCODE_RECORD *Record;
112 LIST_ENTRY *Node;
113 EFI_TPL CurrentTpl;
114
115 RecordData = NULL;
116
117 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
118
119 if (!IsListEmpty (&mRecordsFifo)) {
120 Node = GetFirstNode (&mRecordsFifo);
121 Record = CR (Node, DATAHUB_STATUSCODE_RECORD, Node, DATAHUB_STATUS_CODE_SIGNATURE);
122 ASSERT (Record != NULL);
123
124 RemoveEntryList (&Record->Node);
125 RecordData = (DATA_HUB_STATUS_CODE_DATA_RECORD *) Record->Data;
126 }
127
128 gBS->RestoreTPL (CurrentTpl);
129
130 return RecordData;
131 }
132
133 /**
134 Release given record and return it to free record buffer.
135
136 @param RecordData Pointer to the record to release.
137
138 **/
139 VOID
140 ReleaseRecord (
141 DATA_HUB_STATUS_CODE_DATA_RECORD *RecordData
142 )
143 {
144 DATAHUB_STATUSCODE_RECORD *Record;
145 EFI_TPL CurrentTpl;
146
147 Record = CR (RecordData, DATAHUB_STATUSCODE_RECORD, Data[0], DATAHUB_STATUS_CODE_SIGNATURE);
148 ASSERT (Record != NULL);
149
150 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
151
152 InsertTailList (&mRecordsBuffer, &Record->Node);
153 Record->Signature = 0;
154
155 gBS->RestoreTPL (CurrentTpl);
156 }
157
158 /**
159 Report status code into DataHub.
160
161 @param CodeType Indicates the type of status code being reported.
162 @param Value Describes the current status of a hardware or software entity.
163 This included information about the class and subclass that is used to
164 classify the entity as well as an operation.
165 @param Instance The enumeration of a hardware or software entity within
166 the system. Valid instance numbers start with 1.
167 @param CallerId This optional parameter may be used to identify the caller.
168 This parameter allows the status code driver to apply different rules to
169 different callers.
170 @param Data This optional parameter may be used to pass additional data.
171
172 @retval EFI_SUCCESS The function completed successfully.
173 @retval EFI_DEVICE_ERROR Function is reentered.
174 @retval EFI_DEVICE_ERROR Function is called at runtime.
175 @retval EFI_OUT_OF_RESOURCES Fail to allocate memory for free record buffer.
176
177 **/
178 EFI_STATUS
179 DataHubStatusCodeReportWorker (
180 IN EFI_STATUS_CODE_TYPE CodeType,
181 IN EFI_STATUS_CODE_VALUE Value,
182 IN UINT32 Instance,
183 IN EFI_GUID *CallerId,
184 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
185 )
186 {
187 DATA_HUB_STATUS_CODE_DATA_RECORD *Record;
188 UINT32 ErrorLevel;
189 BASE_LIST Marker;
190 CHAR8 *Format;
191 UINTN CharCount;
192
193 //
194 // Use atom operation to avoid the reentant of report.
195 // If current status is not zero, then the function is reentrancy.
196 //
197 if (InterlockedCompareExchange32 (&mLogDataHubStatus, 0, 0) == 1) {
198 return EFI_DEVICE_ERROR;
199 }
200
201 //
202 // See whether in runtime phase or not.
203 //
204 if (EfiAtRuntime ()) {
205 return EFI_DEVICE_ERROR;
206 }
207
208 Record = AcquireRecordBuffer ();
209 if (Record == NULL) {
210 //
211 // There are no empty record buffer in private buffers
212 //
213 return EFI_OUT_OF_RESOURCES;
214 }
215
216 //
217 // Construct Data Hub Extended Data
218 //
219 Record->CodeType = CodeType;
220 Record->Value = Value;
221 Record->Instance = Instance;
222
223 if (CallerId != NULL) {
224 CopyMem (&Record->CallerId, CallerId, sizeof (EFI_GUID));
225 }
226
227 if (Data != NULL) {
228 if (ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
229 CharCount = UnicodeBSPrintAsciiFormat (
230 (CHAR16 *) (Record + 1),
231 EFI_STATUS_CODE_DATA_MAX_SIZE,
232 Format,
233 Marker
234 );
235 //
236 // Change record data type to DebugType.
237 //
238 CopyGuid (&Record->Data.Type, &gEfiStatusCodeDataTypeDebugGuid);
239 Record->Data.HeaderSize = Data->HeaderSize;
240 Record->Data.Size = (UINT16) ((CharCount + 1) * sizeof (CHAR16));
241 } else {
242 //
243 // Copy status code data header
244 //
245 CopyMem (&Record->Data, Data, sizeof (EFI_STATUS_CODE_DATA));
246
247 if (Data->Size > EFI_STATUS_CODE_DATA_MAX_SIZE) {
248 Record->Data.Size = EFI_STATUS_CODE_DATA_MAX_SIZE;
249 }
250 CopyMem ((VOID *) (Record + 1), Data + 1, Record->Data.Size);
251 }
252 }
253
254 gBS->SignalEvent (mLogDataHubEvent);
255
256 return EFI_SUCCESS;
257 }
258
259
260 /**
261 The Event handler which will be notified to log data in Data Hub.
262
263 @param Event Instance of the EFI_EVENT to signal whenever data is
264 available to be logged in the system.
265 @param Context Context of the event.
266
267 **/
268 VOID
269 EFIAPI
270 LogDataHubEventCallBack (
271 IN EFI_EVENT Event,
272 IN VOID *Context
273 )
274 {
275 DATA_HUB_STATUS_CODE_DATA_RECORD *Record;
276 UINT32 Size;
277 UINT64 DataRecordClass;
278
279 //
280 // Use atom operation to avoid the reentant of report.
281 // If current status is not zero, then the function is reentrancy.
282 //
283 if (InterlockedCompareExchange32 (&mLogDataHubStatus, 0, 1) == 1) {
284 return;
285 }
286
287 //
288 // Log DataRecord in Data Hub.
289 // Journal records fifo to find all record entry.
290 //
291 while (TRUE) {
292 //
293 // Retrieve record from record FIFO until no more record can be retrieved.
294 //
295 Record = RetrieveRecord ();
296 if (Record == NULL) {
297 break;
298 }
299 //
300 // Add in the size of the header we added.
301 //
302 Size = sizeof (DATA_HUB_STATUS_CODE_DATA_RECORD) + (UINT32) Record->Data.Size;
303
304 if ((Record->CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_PROGRESS_CODE) {
305 DataRecordClass = EFI_DATA_RECORD_CLASS_PROGRESS_CODE;
306 } else if ((Record->CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_ERROR_CODE) {
307 DataRecordClass = EFI_DATA_RECORD_CLASS_ERROR;
308 } else if ((Record->CodeType & EFI_STATUS_CODE_TYPE_MASK) == EFI_DEBUG_CODE) {
309 DataRecordClass = EFI_DATA_RECORD_CLASS_DEBUG;
310 } else {
311 //
312 // Should never get here.
313 //
314 DataRecordClass = EFI_DATA_RECORD_CLASS_DEBUG |
315 EFI_DATA_RECORD_CLASS_ERROR |
316 EFI_DATA_RECORD_CLASS_DATA |
317 EFI_DATA_RECORD_CLASS_PROGRESS_CODE;
318 }
319
320 //
321 // Log DataRecord in Data Hub
322 //
323 mDataHubProtocol->LogData (
324 mDataHubProtocol,
325 &gEfiDataHubStatusCodeRecordGuid,
326 &gEfiStatusCodeRuntimeProtocolGuid,
327 DataRecordClass,
328 Record,
329 Size
330 );
331
332 ReleaseRecord (Record);
333 }
334
335 //
336 // Restore the nest status of report
337 //
338 InterlockedCompareExchange32 (&mLogDataHubStatus, 1, 0);
339 }
340
341
342 /**
343 Locate Data Hub Protocol and create event for logging data
344 as initialization for data hub status code worker.
345
346 @retval EFI_SUCCESS Initialization is successful.
347
348 **/
349 EFI_STATUS
350 DataHubStatusCodeInitializeWorker (
351 VOID
352 )
353 {
354 EFI_STATUS Status;
355
356 Status = gBS->LocateProtocol (
357 &gEfiDataHubProtocolGuid,
358 NULL,
359 (VOID **) &mDataHubProtocol
360 );
361 ASSERT_EFI_ERROR (Status);
362
363 //
364 // Create a Notify Event to log data in Data Hub
365 //
366 Status = gBS->CreateEvent (
367 EVT_NOTIFY_SIGNAL,
368 TPL_CALLBACK,
369 LogDataHubEventCallBack,
370 NULL,
371 &mLogDataHubEvent
372 );
373
374 ASSERT_EFI_ERROR (Status);
375
376 return EFI_SUCCESS;
377 }
378
379