]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Library/UefiDebugLibStdErr/DebugLib.c
Fix bugs in StrStr() and AsciiStrStr().
[mirror_edk2.git] / MdePkg / Library / UefiDebugLibStdErr / DebugLib.c
... / ...
CommitLineData
1/** @file\r
2 UEFI Debug Lib that sends messages to the Standard Error Device in the EFI System Table.\r
3\r
4 Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13**/\r
14\r
15\r
16#include <Uefi.h>\r
17\r
18#include <Library/DebugLib.h>\r
19#include <Library/UefiBootServicesTableLib.h>\r
20#include <Library/PrintLib.h>\r
21#include <Library/PcdLib.h>\r
22#include <Library/BaseLib.h>\r
23#include <Library/BaseMemoryLib.h>\r
24\r
25//\r
26// Define the maximum debug and assert message length that this library supports \r
27//\r
28#define MAX_DEBUG_MESSAGE_LENGTH 0x100\r
29\r
30\r
31/**\r
32 Prints a debug message to the debug output device if the specified error level is enabled.\r
33\r
34 If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print \r
35 the message specified by Format and the associated variable argument list to \r
36 the debug output device.\r
37\r
38 If Format is NULL, then ASSERT().\r
39\r
40 @param ErrorLevel The error level of the debug message.\r
41 @param Format Format string for the debug message to print.\r
42 @param ... Variable argument list whose contents are accessed \r
43 based on the format string specified by Format.\r
44\r
45**/\r
46VOID\r
47EFIAPI\r
48DebugPrint (\r
49 IN UINTN ErrorLevel,\r
50 IN CONST CHAR8 *Format,\r
51 ...\r
52 )\r
53{\r
54 CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];\r
55 VA_LIST Marker;\r
56\r
57 //\r
58 // If Format is NULL, then ASSERT().\r
59 //\r
60 ASSERT (Format != NULL);\r
61\r
62 //\r
63 // Check driver debug mask value and global mask\r
64 //\r
65 if ((ErrorLevel & PcdGet32(PcdDebugPrintErrorLevel)) == 0) {\r
66 return;\r
67 }\r
68\r
69 //\r
70 // Convert the DEBUG() message to a Unicode String\r
71 //\r
72 VA_START (Marker, Format);\r
73 UnicodeVSPrintAsciiFormat (Buffer, MAX_DEBUG_MESSAGE_LENGTH, Format, Marker);\r
74 VA_END (Marker);\r
75\r
76 //\r
77 // Send the print string to the Standard Error device\r
78 //\r
79 if ((gST != NULL) && (gST->StdErr != NULL)) {\r
80 gST->StdErr->OutputString (gST->StdErr, Buffer);\r
81 }\r
82}\r
83\r
84\r
85/**\r
86 Prints an assert message containing a filename, line number, and description. \r
87 This may be followed by a breakpoint or a dead loop.\r
88\r
89 Print a message of the form "ASSERT <FileName>(<LineNumber>): <Description>\n"\r
90 to the debug output device. If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of \r
91 PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if \r
92 DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then \r
93 CpuDeadLoop() is called. If neither of these bits are set, then this function \r
94 returns immediately after the message is printed to the debug output device.\r
95 DebugAssert() must actively prevent recursion. If DebugAssert() is called while\r
96 processing another DebugAssert(), then DebugAssert() must return immediately.\r
97\r
98 If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.\r
99 If Description is NULL, then a <Description> string of "(NULL) Description" is printed.\r
100\r
101 @param FileName Pointer to the name of the source file that generated the assert condition.\r
102 @param LineNumber The line number in the source file that generated the assert condition\r
103 @param Description Pointer to the description of the assert condition.\r
104\r
105**/\r
106VOID\r
107EFIAPI\r
108DebugAssert (\r
109 IN CONST CHAR8 *FileName,\r
110 IN UINTN LineNumber,\r
111 IN CONST CHAR8 *Description\r
112 )\r
113{\r
114 CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];\r
115\r
116 //\r
117 // Generate the ASSERT() message in Unicode format\r
118 //\r
119 UnicodeSPrintAsciiFormat (\r
120 Buffer, \r
121 MAX_DEBUG_MESSAGE_LENGTH,\r
122 "ASSERT %a(%d): %a\n", \r
123 FileName, \r
124 LineNumber, \r
125 Description\r
126 );\r
127 \r
128 //\r
129 // Send the print string to the Standard Error device\r
130 //\r
131 if ((gST != NULL) && (gST->StdErr != NULL)) {\r
132 gST->StdErr->OutputString (gST->StdErr, Buffer);\r
133 }\r
134\r
135 //\r
136 // Generate a Breakpoint, DeadLoop, or NOP based on PCD settings\r
137 //\r
138 if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED) != 0) {\r
139 CpuBreakpoint ();\r
140 } else if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED) != 0) {\r
141 CpuDeadLoop ();\r
142 }\r
143}\r
144\r
145\r
146/**\r
147 Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.\r
148\r
149 This function fills Length bytes of Buffer with the value specified by \r
150 PcdDebugClearMemoryValue, and returns Buffer.\r
151\r
152 If Buffer is NULL, then ASSERT().\r
153 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). \r
154\r
155 @param Buffer Pointer to the target buffer to be filled with PcdDebugClearMemoryValue.\r
156 @param Length Number of bytes in Buffer to fill with zeros PcdDebugClearMemoryValue. \r
157\r
158 @return Buffer Pointer to the target buffer filled with PcdDebugClearMemoryValue.\r
159\r
160**/\r
161VOID *\r
162EFIAPI\r
163DebugClearMemory (\r
164 OUT VOID *Buffer,\r
165 IN UINTN Length\r
166 )\r
167{\r
168 //\r
169 // If Buffer is NULL, then ASSERT().\r
170 //\r
171 ASSERT (Buffer != NULL);\r
172\r
173 //\r
174 // SetMem() checks for the the ASSERT() condition on Length and returns Buffer\r
175 //\r
176 return SetMem (Buffer, Length, PcdGet8(PcdDebugClearMemoryValue));\r
177}\r
178\r
179\r
180/**\r
181 Returns TRUE if ASSERT() macros are enabled.\r
182\r
183 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of \r
184 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
185\r
186 @retval TRUE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is set.\r
187 @retval FALSE The DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED bit of PcdDebugProperyMask is clear.\r
188\r
189**/\r
190BOOLEAN\r
191EFIAPI\r
192DebugAssertEnabled (\r
193 VOID\r
194 )\r
195{\r
196 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED) != 0);\r
197}\r
198\r
199\r
200/** \r
201 Returns TRUE if DEBUG() macros are enabled.\r
202\r
203 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of \r
204 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
205\r
206 @retval TRUE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is set.\r
207 @retval FALSE The DEBUG_PROPERTY_DEBUG_PRINT_ENABLED bit of PcdDebugProperyMask is clear.\r
208\r
209**/\r
210BOOLEAN\r
211EFIAPI\r
212DebugPrintEnabled (\r
213 VOID\r
214 )\r
215{\r
216 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_PRINT_ENABLED) != 0);\r
217}\r
218\r
219\r
220/** \r
221 Returns TRUE if DEBUG_CODE() macros are enabled.\r
222\r
223 This function returns TRUE if the DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of \r
224 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
225\r
226 @retval TRUE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is set.\r
227 @retval FALSE The DEBUG_PROPERTY_DEBUG_CODE_ENABLED bit of PcdDebugProperyMask is clear.\r
228\r
229**/\r
230BOOLEAN\r
231EFIAPI\r
232DebugCodeEnabled (\r
233 VOID\r
234 )\r
235{\r
236 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_CODE_ENABLED) != 0);\r
237}\r
238\r
239\r
240/** \r
241 Returns TRUE if DEBUG_CLEAR_MEMORY() macro is enabled.\r
242\r
243 This function returns TRUE if the DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of \r
244 PcdDebugProperyMask is set. Otherwise FALSE is returned.\r
245\r
246 @retval TRUE The DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is set.\r
247 @retval FALSE The DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED bit of PcdDebugProperyMask is clear.\r
248\r
249**/\r
250BOOLEAN\r
251EFIAPI\r
252DebugClearMemoryEnabled (\r
253 VOID\r
254 )\r
255{\r
256 return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED) != 0);\r
257}\r