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