]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/DebugLib.c
IntelFrameworkModulePkg: DebugAssert enhancement
[mirror_edk2.git] / IntelFrameworkModulePkg / Library / PeiDxeDebugLibReportStatusCode / DebugLib.c
... / ...
CommitLineData
1/** @file\r
2 Debug Library based on report status code library.\r
3\r
4 Note that if the debug message length is larger than the maximum allowable\r
5 record length, then the debug message will be ignored directly.\r
6\r
7 Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
8 This program and the accompanying materials\r
9 are licensed and made available under the terms and conditions of the BSD License\r
10 which accompanies this distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16**/\r
17\r
18#include <PiPei.h>\r
19\r
20#include <Guid/StatusCodeDataTypeId.h>\r
21#include <Guid/StatusCodeDataTypeDebug.h>\r
22\r
23#include <Library/DebugLib.h>\r
24#include <Library/BaseLib.h>\r
25#include <Library/BaseMemoryLib.h>\r
26#include <Library/ReportStatusCodeLib.h>\r
27#include <Library/PcdLib.h>\r
28#include <Library/DebugPrintErrorLevelLib.h>\r
29\r
30/**\r
31 Prints a debug message to the debug output device if the specified error level is enabled.\r
32\r
33 If any bit in ErrorLevel is also set in DebugPrintErrorLevelLib function \r
34 GetDebugPrintErrorLevel (), then print the message specified by Format and the \r
35 associated variable argument list to the debug output device.\r
36\r
37 If Format is NULL, then ASSERT().\r
38\r
39 If the length of the message string specificed by Format is larger than the maximum allowable\r
40 record length, then directly return and not print it.\r
41\r
42 @param ErrorLevel The error level of the debug message.\r
43 @param Format Format string for the debug message to print.\r
44 @param ... Variable argument list whose contents are accessed \r
45 based on the format string specified by Format.\r
46\r
47**/\r
48VOID\r
49EFIAPI\r
50DebugPrint (\r
51 IN UINTN ErrorLevel,\r
52 IN CONST CHAR8 *Format,\r
53 ...\r
54 )\r
55{\r
56 UINT64 Buffer[(EFI_STATUS_CODE_DATA_MAX_SIZE / sizeof (UINT64)) + 1];\r
57 EFI_DEBUG_INFO *DebugInfo;\r
58 UINTN TotalSize;\r
59 UINTN DestBufferSize;\r
60 VA_LIST VaListMarker;\r
61 BASE_LIST BaseListMarker;\r
62 CHAR8 *FormatString;\r
63 BOOLEAN Long;\r
64\r
65 //\r
66 // If Format is NULL, then ASSERT().\r
67 //\r
68 ASSERT (Format != NULL);\r
69\r
70 //\r
71 // Check driver Debug Level value and global debug level\r
72 //\r
73 if ((ErrorLevel & GetDebugPrintErrorLevel ()) == 0) {\r
74 return;\r
75 }\r
76\r
77 //\r
78 // Compute the total size of the record.\r
79 // Note that the passing-in format string and variable parameters will be constructed to \r
80 // the following layout:\r
81 //\r
82 // Buffer->|------------------------|\r
83 // | Padding | 4 bytes\r
84 // DebugInfo->|------------------------|\r
85 // | EFI_DEBUG_INFO | sizeof(EFI_DEBUG_INFO)\r
86 // BaseListMarker->|------------------------|\r
87 // | ... |\r
88 // | variable arguments | 12 * sizeof (UINT64)\r
89 // | ... |\r
90 // |------------------------|\r
91 // | Format String |\r
92 // |------------------------|<- (UINT8 *)Buffer + sizeof(Buffer)\r
93 //\r
94 TotalSize = 4 + sizeof (EFI_DEBUG_INFO) + 12 * sizeof (UINT64) + AsciiStrSize (Format);\r
95\r
96 //\r
97 // If the TotalSize is larger than the maximum record size, then return\r
98 //\r
99 if (TotalSize > sizeof (Buffer)) {\r
100 return;\r
101 }\r
102\r
103 //\r
104 // Fill in EFI_DEBUG_INFO\r
105 //\r
106 // Here we skip the first 4 bytes of Buffer, because we must ensure BaseListMarker is\r
107 // 64-bit aligned, otherwise retrieving 64-bit parameter from BaseListMarker will cause\r
108 // exception on IPF. Buffer starts at 64-bit aligned address, so skipping 4 types (sizeof(EFI_DEBUG_INFO))\r
109 // just makes address of BaseListMarker, which follows DebugInfo, 64-bit aligned.\r
110 //\r
111 DebugInfo = (EFI_DEBUG_INFO *)(Buffer) + 1;\r
112 DebugInfo->ErrorLevel = (UINT32)ErrorLevel;\r
113 BaseListMarker = (BASE_LIST)(DebugInfo + 1);\r
114 FormatString = (CHAR8 *)((UINT64 *)(DebugInfo + 1) + 12);\r
115\r
116 //\r
117 // Copy the Format string into the record\r
118 //\r
119 // According to the content structure of Buffer shown above, the size of\r
120 // the FormatString buffer is the size of Buffer minus the Padding\r
121 // (4 bytes), minus the size of EFI_DEBUG_INFO, minus the size of\r
122 // variable arguments (12 * sizeof (UINT64)).\r
123 //\r
124 DestBufferSize = sizeof (Buffer) - 4 - sizeof (EFI_DEBUG_INFO) - 12 * sizeof (UINT64);\r
125 AsciiStrCpyS (FormatString, DestBufferSize / sizeof (CHAR8), Format);\r
126\r
127 //\r
128 // The first 12 * sizeof (UINT64) bytes following EFI_DEBUG_INFO are for variable arguments\r
129 // of format in DEBUG string, which is followed by the DEBUG format string.\r
130 // Here we will process the variable arguments and pack them in this area.\r
131 //\r
132 VA_START (VaListMarker, Format);\r
133 for (; *Format != '\0'; Format++) {\r
134 //\r
135 // Only format with prefix % is processed.\r
136 //\r
137 if (*Format != '%') {\r
138 continue;\r
139 }\r
140 Long = FALSE;\r
141 //\r
142 // Parse Flags and Width\r
143 //\r
144 for (Format++; TRUE; Format++) {\r
145 if (*Format == '.' || *Format == '-' || *Format == '+' || *Format == ' ') {\r
146 //\r
147 // These characters in format field are omitted.\r
148 //\r
149 continue;\r
150 }\r
151 if (*Format >= '0' && *Format <= '9') {\r
152 //\r
153 // These characters in format field are omitted.\r
154 //\r
155 continue;\r
156 }\r
157 if (*Format == 'L' || *Format == 'l') {\r
158 //\r
159 // 'L" or "l" in format field means the number being printed is a UINT64\r
160 //\r
161 Long = TRUE;\r
162 continue;\r
163 }\r
164 if (*Format == '*') {\r
165 //\r
166 // '*' in format field means the precision of the field is specified by\r
167 // a UINTN argument in the argument list.\r
168 //\r
169 BASE_ARG (BaseListMarker, UINTN) = VA_ARG (VaListMarker, UINTN);\r
170 continue;\r
171 }\r
172 if (*Format == '\0') {\r
173 //\r
174 // Make no output if Format string terminates unexpectedly when\r
175 // looking up for flag, width, precision and type. \r
176 //\r
177 Format--;\r
178 }\r
179 //\r
180 // When valid argument type detected or format string terminates unexpectedly,\r
181 // the inner loop is done.\r
182 //\r
183 break;\r
184 }\r
185 \r
186 //\r
187 // Pack variable arguments into the storage area following EFI_DEBUG_INFO.\r
188 //\r
189 if ((*Format == 'p') && (sizeof (VOID *) > 4)) {\r
190 Long = TRUE;\r
191 }\r
192 if (*Format == 'p' || *Format == 'X' || *Format == 'x' || *Format == 'd' || *Format == 'u') {\r
193 if (Long) {\r
194 BASE_ARG (BaseListMarker, INT64) = VA_ARG (VaListMarker, INT64);\r
195 } else {\r
196 BASE_ARG (BaseListMarker, int) = VA_ARG (VaListMarker, int);\r
197 }\r
198 } else if (*Format == 's' || *Format == 'S' || *Format == 'a' || *Format == 'g' || *Format == 't') {\r
199 BASE_ARG (BaseListMarker, VOID *) = VA_ARG (VaListMarker, VOID *);\r
200 } else if (*Format == 'c') {\r
201 BASE_ARG (BaseListMarker, UINTN) = VA_ARG (VaListMarker, UINTN);\r
202 } else if (*Format == 'r') {\r
203 BASE_ARG (BaseListMarker, RETURN_STATUS) = VA_ARG (VaListMarker, RETURN_STATUS);\r
204 }\r
205\r
206 //\r
207 // If the converted BASE_LIST is larger than the 12 * sizeof (UINT64) allocated bytes, then ASSERT()\r
208 // This indicates that the DEBUG() macro is passing in more argument than can be handled by \r
209 // the EFI_DEBUG_INFO record\r
210 //\r
211 ASSERT ((CHAR8 *)BaseListMarker <= FormatString);\r
212\r
213 //\r
214 // If the converted BASE_LIST is larger than the 12 * sizeof (UINT64) allocated bytes, then return\r
215 //\r
216 if ((CHAR8 *)BaseListMarker > FormatString) {\r
217 VA_END (VaListMarker);\r
218 return;\r
219 }\r
220 }\r
221 VA_END (VaListMarker);\r
222\r
223 //\r
224 // Send the DebugInfo record\r
225 //\r
226 REPORT_STATUS_CODE_EX (\r
227 EFI_DEBUG_CODE,\r
228 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_DC_UNSPECIFIED),\r
229 0,\r
230 NULL,\r
231 &gEfiStatusCodeDataTypeDebugGuid,\r
232 DebugInfo,\r
233 TotalSize\r
234 );\r
235}\r
236\r
237/**\r
238 Prints an assert message containing a filename, line number, and description. \r
239 This may be followed by a breakpoint or a dead loop.\r
240\r
241 Print a message of the form "ASSERT <FileName>(<LineNumber>): <Description>\n"\r
242 to the debug output device. If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of \r
243 PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if \r
244 DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then \r
245 CpuDeadLoop() is called. If neither of these bits are set, then this function \r
246 returns immediately after the message is printed to the debug output device.\r
247 DebugAssert() must actively prevent recursion. If DebugAssert() is called while\r
248 processing another DebugAssert(), then DebugAssert() must return immediately.\r
249\r
250 If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.\r
251 If Description is NULL, then a <Description> string of "(NULL) Description" is printed.\r
252\r
253 @param FileName Pointer to the name of the source file that generated the assert condition.\r
254 @param LineNumber The line number in the source file that generated the assert condition\r
255 @param Description Pointer to the description of the assert condition.\r
256\r
257**/\r
258VOID\r
259EFIAPI\r
260DebugAssert (\r
261 IN CONST CHAR8 *FileName,\r
262 IN UINTN LineNumber,\r
263 IN CONST CHAR8 *Description\r
264 )\r
265{\r
266 UINT64 Buffer[EFI_STATUS_CODE_DATA_MAX_SIZE / sizeof(UINT64)];\r
267 EFI_DEBUG_ASSERT_DATA *AssertData;\r
268 UINTN HeaderSize;\r
269 UINTN TotalSize;\r
270 CHAR8 *Temp;\r
271 UINTN ModuleNameSize;\r
272 UINTN FileNameSize;\r
273 UINTN DescriptionSize;\r
274\r
275 //\r
276 // Get string size\r
277 //\r
278 HeaderSize = sizeof (EFI_DEBUG_ASSERT_DATA);\r
279 //\r
280 // Compute string size of module name enclosed by []\r
281 //\r
282 ModuleNameSize = 2 + AsciiStrSize (gEfiCallerBaseName);\r
283 FileNameSize = AsciiStrSize (FileName);\r
284 DescriptionSize = AsciiStrSize (Description);\r
285\r
286 //\r
287 // Make sure it will all fit in the passed in buffer.\r
288 //\r
289 if (HeaderSize + ModuleNameSize + FileNameSize + DescriptionSize > sizeof (Buffer)) {\r
290 //\r
291 // remove module name if it's too long to be filled into buffer\r
292 //\r
293 ModuleNameSize = 0;\r
294 if (HeaderSize + FileNameSize + DescriptionSize > sizeof (Buffer)) {\r
295 //\r
296 // FileName + Description is too long to be filled into buffer.\r
297 //\r
298 if (HeaderSize + FileNameSize < sizeof (Buffer)) {\r
299 //\r
300 // Description has enough buffer to be truncated.\r
301 //\r
302 DescriptionSize = sizeof (Buffer) - HeaderSize - FileNameSize;\r
303 } else {\r
304 //\r
305 // FileName is too long to be filled into buffer.\r
306 // FileName will be truncated. Reserved one byte for Description NULL terminator.\r
307 //\r
308 DescriptionSize = 1;\r
309 FileNameSize = sizeof (Buffer) - HeaderSize - DescriptionSize;\r
310 }\r
311 }\r
312 }\r
313 //\r
314 // Fill in EFI_DEBUG_ASSERT_DATA\r
315 //\r
316 AssertData = (EFI_DEBUG_ASSERT_DATA *)Buffer;\r
317 AssertData->LineNumber = (UINT32)LineNumber;\r
318 TotalSize = sizeof (EFI_DEBUG_ASSERT_DATA);\r
319\r
320 Temp = (CHAR8 *)(AssertData + 1);\r
321\r
322 //\r
323 // Copy Ascii [ModuleName].\r
324 //\r
325 if (ModuleNameSize != 0) {\r
326 CopyMem(Temp, "[", 1);\r
327 CopyMem(Temp + 1, gEfiCallerBaseName, ModuleNameSize - 3);\r
328 CopyMem(Temp + ModuleNameSize - 2, "] ", 2);\r
329 }\r
330\r
331 //\r
332 // Copy Ascii FileName including NULL terminator.\r
333 //\r
334 Temp = CopyMem (Temp + ModuleNameSize, FileName, FileNameSize);\r
335 Temp[FileNameSize - 1] = 0;\r
336 TotalSize += (ModuleNameSize + FileNameSize);\r
337\r
338 //\r
339 // Copy Ascii Description include NULL terminator.\r
340 //\r
341 Temp = CopyMem (Temp + FileNameSize, Description, DescriptionSize);\r
342 Temp[DescriptionSize - 1] = 0;\r
343 TotalSize += DescriptionSize;\r
344\r
345 REPORT_STATUS_CODE_EX (\r
346 (EFI_ERROR_CODE | EFI_ERROR_UNRECOVERED),\r
347 (EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_EC_ILLEGAL_SOFTWARE_STATE),\r
348 0,\r
349 NULL,\r
350 NULL,\r
351 AssertData,\r
352 TotalSize\r
353 );\r
354\r
355 //\r
356 // Generate a Breakpoint, DeadLoop, or NOP based on PCD settings\r
357 //\r
358 if ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED) != 0) {\r
359 CpuBreakpoint ();\r
360 } else if ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED) != 0) {\r
361 CpuDeadLoop ();\r
362 }\r
363}\r
364\r
365\r
366/**\r
367 Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.\r
368\r
369 This function fills Length bytes of Buffer with the value specified by \r
370 PcdDebugClearMemoryValue, and returns Buffer.\r
371\r
372 If Buffer is NULL, then ASSERT().\r
373 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). \r
374\r
375 @param Buffer Pointer to the target buffer to be filled with PcdDebugClearMemoryValue.\r
376 @param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue. \r
377\r
378 @return Buffer Pointer to the target buffer filled with PcdDebugClearMemoryValue.\r
379\r
380**/\r
381VOID *\r
382EFIAPI\r
383DebugClearMemory (\r
384 OUT VOID *Buffer,\r
385 IN UINTN Length\r
386 )\r
387{\r
388 ASSERT (Buffer != NULL);\r
389\r
390 return SetMem (Buffer, Length, PcdGet8 (PcdDebugClearMemoryValue));\r
391}\r
392\r
393\r
394/**\r
395 Returns TRUE if ASSERT() macros are enabled.\r
396\r
397 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of \r
398 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
399\r
400 @retval TRUE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set.\r
401 @retval FALSE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is clear.\r
402\r
403**/\r
404BOOLEAN\r
405EFIAPI\r
406DebugAssertEnabled (\r
407 VOID\r
408 )\r
409{\r
410 return (BOOLEAN) ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED) != 0);\r
411}\r
412\r
413\r
414/** \r
415 Returns TRUE if DEBUG() macros are enabled.\r
416\r
417 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of \r
418 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
419\r
420 @retval TRUE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is set.\r
421 @retval FALSE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is clear.\r
422\r
423**/\r
424BOOLEAN\r
425EFIAPI\r
426DebugPrintEnabled (\r
427 VOID\r
428 )\r
429{\r
430 return (BOOLEAN) ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_PRINT_ENABLED) != 0);\r
431}\r
432\r
433\r
434/** \r
435 Returns TRUE if DEBUG_CODE() macros are enabled.\r
436\r
437 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of \r
438 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
439\r
440 @retval TRUE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is set.\r
441 @retval FALSE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is clear.\r
442\r
443**/\r
444BOOLEAN\r
445EFIAPI\r
446DebugCodeEnabled (\r
447 VOID\r
448 )\r
449{\r
450 return (BOOLEAN) ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_CODE_ENABLED) != 0);\r
451}\r
452\r
453\r
454/** \r
455 Returns TRUE if DEBUG_CLEAR_MEMORY() macro is enabled.\r
456\r
457 This function returns TRUE if the DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of \r
458 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
459\r
460 @retval TRUE The DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is set.\r
461 @retval FALSE The DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is clear.\r
462\r
463**/\r
464BOOLEAN\r
465EFIAPI\r
466DebugClearMemoryEnabled (\r
467 VOID\r
468 )\r
469{\r
470 return (BOOLEAN) ((PcdGet8 (PcdDebugPropertyMask) & DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED) != 0);\r
471}\r
472\r
473/**\r
474 Returns TRUE if any one of the bit is set both in ErrorLevel and PcdFixedDebugPrintErrorLevel.\r
475\r
476 This function compares the bit mask of ErrorLevel and PcdFixedDebugPrintErrorLevel.\r
477\r
478 @retval TRUE Current ErrorLevel is supported.\r
479 @retval FALSE Current ErrorLevel is not supported.\r
480\r
481**/\r
482BOOLEAN\r
483EFIAPI\r
484DebugPrintLevelEnabled (\r
485 IN CONST UINTN ErrorLevel\r
486 )\r
487{\r
488 return (BOOLEAN) ((ErrorLevel & PcdGet32(PcdFixedDebugPrintErrorLevel)) != 0);\r
489}\r