1 //===-- sanitizer_printf.cc -----------------------------------------------===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===----------------------------------------------------------------------===//
8 // This file is shared between AddressSanitizer and ThreadSanitizer.
10 // Internal printf function, used inside run-time libraries.
11 // We can't use libc printf because we intercept some of the functions used
13 //===----------------------------------------------------------------------===//
15 #include "sanitizer_common.h"
16 #include "sanitizer_flags.h"
17 #include "sanitizer_libc.h"
22 #if SANITIZER_WINDOWS && defined(_MSC_VER) && _MSC_VER < 1800 && \
24 # define va_copy(dst, src) ((dst) = (src))
27 namespace __sanitizer
{
29 StaticSpinMutex CommonSanitizerReportMutex
;
31 static int AppendChar(char **buff
, const char *buff_end
, char c
) {
32 if (*buff
< buff_end
) {
39 // Appends number in a given base to buffer. If its length is less than
40 // |minimal_num_length|, it is padded with leading zeroes or spaces, depending
41 // on the value of |pad_with_zero|.
42 static int AppendNumber(char **buff
, const char *buff_end
, u64 absolute_value
,
43 u8 base
, u8 minimal_num_length
, bool pad_with_zero
,
45 uptr
const kMaxLen
= 30;
46 RAW_CHECK(base
== 10 || base
== 16);
47 RAW_CHECK(base
== 10 || !negative
);
48 RAW_CHECK(absolute_value
|| !negative
);
49 RAW_CHECK(minimal_num_length
< kMaxLen
);
51 if (negative
&& minimal_num_length
)
53 if (negative
&& pad_with_zero
)
54 result
+= AppendChar(buff
, buff_end
, '-');
55 uptr num_buffer
[kMaxLen
];
58 RAW_CHECK_MSG((uptr
)pos
< kMaxLen
, "AppendNumber buffer overflow");
59 num_buffer
[pos
++] = absolute_value
% base
;
60 absolute_value
/= base
;
61 } while (absolute_value
> 0);
62 if (pos
< minimal_num_length
) {
63 // Make sure compiler doesn't insert call to memset here.
64 internal_memset(&num_buffer
[pos
], 0,
65 sizeof(num_buffer
[0]) * (minimal_num_length
- pos
));
66 pos
= minimal_num_length
;
70 for (; pos
>= 0 && num_buffer
[pos
] == 0; pos
--) {
71 char c
= (pad_with_zero
|| pos
== 0) ? '0' : ' ';
72 result
+= AppendChar(buff
, buff_end
, c
);
74 if (negative
&& !pad_with_zero
) result
+= AppendChar(buff
, buff_end
, '-');
75 for (; pos
>= 0; pos
--) {
76 char digit
= static_cast<char>(num_buffer
[pos
]);
77 result
+= AppendChar(buff
, buff_end
, (digit
< 10) ? '0' + digit
83 static int AppendUnsigned(char **buff
, const char *buff_end
, u64 num
, u8 base
,
84 u8 minimal_num_length
, bool pad_with_zero
) {
85 return AppendNumber(buff
, buff_end
, num
, base
, minimal_num_length
,
86 pad_with_zero
, false /* negative */);
89 static int AppendSignedDecimal(char **buff
, const char *buff_end
, s64 num
,
90 u8 minimal_num_length
, bool pad_with_zero
) {
91 bool negative
= (num
< 0);
92 return AppendNumber(buff
, buff_end
, (u64
)(negative
? -num
: num
), 10,
93 minimal_num_length
, pad_with_zero
, negative
);
96 static int AppendString(char **buff
, const char *buff_end
, int precision
,
102 if (precision
>= 0 && result
>= precision
)
104 result
+= AppendChar(buff
, buff_end
, *s
);
109 static int AppendPointer(char **buff
, const char *buff_end
, u64 ptr_value
) {
111 result
+= AppendString(buff
, buff_end
, -1, "0x");
112 result
+= AppendUnsigned(buff
, buff_end
, ptr_value
, 16,
113 SANITIZER_POINTER_FORMAT_LENGTH
, true);
117 int VSNPrintf(char *buff
, int buff_length
,
118 const char *format
, va_list args
) {
119 static const char *kPrintfFormatsHelp
=
120 "Supported Printf formats: %([0-9]*)?(z|ll)?{d,u,x}; %p; %(\\.\\*)?s; %c\n";
122 RAW_CHECK(buff_length
> 0);
123 const char *buff_end
= &buff
[buff_length
- 1];
124 const char *cur
= format
;
126 for (; *cur
; cur
++) {
128 result
+= AppendChar(&buff
, buff_end
, *cur
);
132 bool have_width
= (*cur
>= '0' && *cur
<= '9');
133 bool pad_with_zero
= (*cur
== '0');
136 while (*cur
>= '0' && *cur
<= '9') {
137 width
= width
* 10 + *cur
++ - '0';
140 bool have_precision
= (cur
[0] == '.' && cur
[1] == '*');
142 if (have_precision
) {
144 precision
= va_arg(args
, int);
146 bool have_z
= (*cur
== 'z');
148 bool have_ll
= !have_z
&& (cur
[0] == 'l' && cur
[1] == 'l');
152 bool have_flags
= have_width
| have_z
| have_ll
;
153 // Only %s supports precision for now
154 CHECK(!(precision
>= 0 && *cur
!= 's'));
157 dval
= have_ll
? va_arg(args
, s64
)
158 : have_z
? va_arg(args
, sptr
)
160 result
+= AppendSignedDecimal(&buff
, buff_end
, dval
, width
,
166 uval
= have_ll
? va_arg(args
, u64
)
167 : have_z
? va_arg(args
, uptr
)
168 : va_arg(args
, unsigned);
169 result
+= AppendUnsigned(&buff
, buff_end
, uval
,
170 (*cur
== 'u') ? 10 : 16, width
, pad_with_zero
);
174 RAW_CHECK_MSG(!have_flags
, kPrintfFormatsHelp
);
175 result
+= AppendPointer(&buff
, buff_end
, va_arg(args
, uptr
));
179 RAW_CHECK_MSG(!have_flags
, kPrintfFormatsHelp
);
180 result
+= AppendString(&buff
, buff_end
, precision
, va_arg(args
, char*));
184 RAW_CHECK_MSG(!have_flags
, kPrintfFormatsHelp
);
185 result
+= AppendChar(&buff
, buff_end
, va_arg(args
, int));
189 RAW_CHECK_MSG(!have_flags
, kPrintfFormatsHelp
);
190 result
+= AppendChar(&buff
, buff_end
, '%');
194 RAW_CHECK_MSG(false, kPrintfFormatsHelp
);
198 RAW_CHECK(buff
<= buff_end
);
199 AppendChar(&buff
, buff_end
+ 1, '\0');
203 static void (*PrintfAndReportCallback
)(const char *);
204 void SetPrintfAndReportCallback(void (*callback
)(const char *)) {
205 PrintfAndReportCallback
= callback
;
208 // Can be overriden in frontend.
209 #if SANITIZER_SUPPORTS_WEAK_HOOKS
210 SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
211 void OnPrint(const char *str
) {
214 #elif defined(SANITIZER_GO) && defined(TSAN_EXTERNAL_HOOKS)
215 void OnPrint(const char *str
);
217 void OnPrint(const char *str
) {
222 static void CallPrintfAndReportCallback(const char *str
) {
224 if (PrintfAndReportCallback
)
225 PrintfAndReportCallback(str
);
228 static void SharedPrintfCode(bool append_pid
, const char *format
,
231 va_copy(args2
, args
);
232 const int kLen
= 16 * 1024;
233 // |local_buffer| is small enough not to overflow the stack and/or violate
234 // the stack limit enforced by TSan (-Wframe-larger-than=512). On the other
235 // hand, the bigger the buffer is, the more the chance the error report will
237 char local_buffer
[400];
239 char *buffer
= local_buffer
;
240 int buffer_size
= ARRAY_SIZE(local_buffer
);
241 // First try to print a message using a local buffer, and then fall back to
243 for (int use_mmap
= 0; use_mmap
< 2; use_mmap
++) {
246 va_copy(args
, args2
);
247 buffer
= (char*)MmapOrDie(kLen
, "Report");
251 // Check that data fits into the current buffer.
252 # define CHECK_NEEDED_LENGTH \
253 if (needed_length >= buffer_size) { \
254 if (!use_mmap) continue; \
255 RAW_CHECK_MSG(needed_length < kLen, \
256 "Buffer in Report is too short!\n"); \
259 int pid
= internal_getpid();
260 const char *exe_name
= GetProcessName();
261 if (common_flags()->log_exe_name
&& exe_name
) {
262 needed_length
+= internal_snprintf(buffer
, buffer_size
,
266 needed_length
+= internal_snprintf(buffer
+ needed_length
,
267 buffer_size
- needed_length
,
271 needed_length
+= VSNPrintf(buffer
+ needed_length
,
272 buffer_size
- needed_length
, format
, args
);
274 // If the message fit into the buffer, print it and exit.
276 # undef CHECK_NEEDED_LENGTH
279 if (common_flags()->log_to_syslog
)
280 WriteToSyslog(buffer
);
281 CallPrintfAndReportCallback(buffer
);
282 // If we had mapped any memory, clean up.
283 if (buffer
!= local_buffer
)
284 UnmapOrDie((void *)buffer
, buffer_size
);
289 void Printf(const char *format
, ...) {
291 va_start(args
, format
);
292 SharedPrintfCode(false, format
, args
);
296 // Like Printf, but prints the current PID before the output string.
298 void Report(const char *format
, ...) {
300 va_start(args
, format
);
301 SharedPrintfCode(true, format
, args
);
305 // Writes at most "length" symbols to "buffer" (including trailing '\0').
306 // Returns the number of symbols that should have been written to buffer
307 // (not including trailing '\0'). Thus, the string is truncated
308 // iff return value is not less than "length".
310 int internal_snprintf(char *buffer
, uptr length
, const char *format
, ...) {
312 va_start(args
, format
);
313 int needed_length
= VSNPrintf(buffer
, length
, format
, args
);
315 return needed_length
;
319 void InternalScopedString::append(const char *format
, ...) {
320 CHECK_LT(length_
, size());
322 va_start(args
, format
);
323 VSNPrintf(data() + length_
, size() - length_
, format
, args
);
325 length_
+= internal_strlen(data() + length_
);
326 CHECK_LT(length_
, size());
329 } // namespace __sanitizer