re PR rtl-optimization/91976 (RTL check: expected code 'const_int', have 'reg' in...
[official-gcc.git] / libsanitizer / ubsan / ubsan_handlers.cpp
blob6099e3631e7342e0547809b087a55a310b6d701a
1 //===-- ubsan_handlers.cpp ------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Error logging entry points for the UBSan runtime.
11 //===----------------------------------------------------------------------===//
13 #include "ubsan_platform.h"
14 #if CAN_SANITIZE_UB
15 #include "ubsan_handlers.h"
16 #include "ubsan_diag.h"
17 #include "ubsan_flags.h"
18 #include "ubsan_monitor.h"
20 #include "sanitizer_common/sanitizer_common.h"
22 using namespace __sanitizer;
23 using namespace __ubsan;
25 namespace __ubsan {
26 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) {
27 // We are not allowed to skip error report: if we are in unrecoverable
28 // handler, we have to terminate the program right now, and therefore
29 // have to print some diagnostic.
31 // Even if source location is disabled, it doesn't mean that we have
32 // already report an error to the user: some concurrently running
33 // thread could have acquired it, but not yet printed the report.
34 if (Opts.FromUnrecoverableHandler)
35 return false;
36 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename());
39 const char *TypeCheckKinds[] = {
40 "load of", "store to", "reference binding to", "member access within",
41 "member call on", "constructor call on", "downcast of", "downcast of",
42 "upcast of", "cast to virtual base of", "_Nonnull binding to",
43 "dynamic operation on"};
46 static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer,
47 ReportOptions Opts) {
48 Location Loc = Data->Loc.acquire();
50 uptr Alignment = (uptr)1 << Data->LogAlignment;
51 ErrorType ET;
52 if (!Pointer)
53 ET = ErrorType::NullPointerUse;
54 else if (Pointer & (Alignment - 1))
55 ET = ErrorType::MisalignedPointerUse;
56 else
57 ET = ErrorType::InsufficientObjectSize;
59 // Use the SourceLocation from Data to track deduplication, even if it's
60 // invalid.
61 if (ignoreReport(Loc.getSourceLocation(), Opts, ET))
62 return;
64 SymbolizedStackHolder FallbackLoc;
65 if (Data->Loc.isInvalid()) {
66 FallbackLoc.reset(getCallerLocation(Opts.pc));
67 Loc = FallbackLoc;
70 ScopedReport R(Opts, Loc, ET);
72 switch (ET) {
73 case ErrorType::NullPointerUse:
74 Diag(Loc, DL_Error, ET, "%0 null pointer of type %1")
75 << TypeCheckKinds[Data->TypeCheckKind] << Data->Type;
76 break;
77 case ErrorType::MisalignedPointerUse:
78 Diag(Loc, DL_Error, ET, "%0 misaligned address %1 for type %3, "
79 "which requires %2 byte alignment")
80 << TypeCheckKinds[Data->TypeCheckKind] << (void *)Pointer << Alignment
81 << Data->Type;
82 break;
83 case ErrorType::InsufficientObjectSize:
84 Diag(Loc, DL_Error, ET, "%0 address %1 with insufficient space "
85 "for an object of type %2")
86 << TypeCheckKinds[Data->TypeCheckKind] << (void *)Pointer << Data->Type;
87 break;
88 default:
89 UNREACHABLE("unexpected error type!");
92 if (Pointer)
93 Diag(Pointer, DL_Note, ET, "pointer points here");
96 void __ubsan::__ubsan_handle_type_mismatch_v1(TypeMismatchData *Data,
97 ValueHandle Pointer) {
98 GET_REPORT_OPTIONS(false);
99 handleTypeMismatchImpl(Data, Pointer, Opts);
101 void __ubsan::__ubsan_handle_type_mismatch_v1_abort(TypeMismatchData *Data,
102 ValueHandle Pointer) {
103 GET_REPORT_OPTIONS(true);
104 handleTypeMismatchImpl(Data, Pointer, Opts);
105 Die();
108 static void handleAlignmentAssumptionImpl(AlignmentAssumptionData *Data,
109 ValueHandle Pointer,
110 ValueHandle Alignment,
111 ValueHandle Offset,
112 ReportOptions Opts) {
113 Location Loc = Data->Loc.acquire();
114 SourceLocation AssumptionLoc = Data->AssumptionLoc.acquire();
116 ErrorType ET = ErrorType::AlignmentAssumption;
118 if (ignoreReport(Loc.getSourceLocation(), Opts, ET))
119 return;
121 ScopedReport R(Opts, Loc, ET);
123 uptr RealPointer = Pointer - Offset;
124 uptr LSB = LeastSignificantSetBitIndex(RealPointer);
125 uptr ActualAlignment = uptr(1) << LSB;
127 uptr Mask = Alignment - 1;
128 uptr MisAlignmentOffset = RealPointer & Mask;
130 if (!Offset) {
131 Diag(Loc, DL_Error, ET,
132 "assumption of %0 byte alignment for pointer of type %1 failed")
133 << Alignment << Data->Type;
134 } else {
135 Diag(Loc, DL_Error, ET,
136 "assumption of %0 byte alignment (with offset of %1 byte) for pointer "
137 "of type %2 failed")
138 << Alignment << Offset << Data->Type;
141 if (!AssumptionLoc.isInvalid())
142 Diag(AssumptionLoc, DL_Note, ET, "alignment assumption was specified here");
144 Diag(RealPointer, DL_Note, ET,
145 "%0address is %1 aligned, misalignment offset is %2 bytes")
146 << (Offset ? "offset " : "") << ActualAlignment << MisAlignmentOffset;
149 void __ubsan::__ubsan_handle_alignment_assumption(AlignmentAssumptionData *Data,
150 ValueHandle Pointer,
151 ValueHandle Alignment,
152 ValueHandle Offset) {
153 GET_REPORT_OPTIONS(false);
154 handleAlignmentAssumptionImpl(Data, Pointer, Alignment, Offset, Opts);
156 void __ubsan::__ubsan_handle_alignment_assumption_abort(
157 AlignmentAssumptionData *Data, ValueHandle Pointer, ValueHandle Alignment,
158 ValueHandle Offset) {
159 GET_REPORT_OPTIONS(true);
160 handleAlignmentAssumptionImpl(Data, Pointer, Alignment, Offset, Opts);
161 Die();
164 /// \brief Common diagnostic emission for various forms of integer overflow.
165 template <typename T>
166 static void handleIntegerOverflowImpl(OverflowData *Data, ValueHandle LHS,
167 const char *Operator, T RHS,
168 ReportOptions Opts) {
169 SourceLocation Loc = Data->Loc.acquire();
170 bool IsSigned = Data->Type.isSignedIntegerTy();
171 ErrorType ET = IsSigned ? ErrorType::SignedIntegerOverflow
172 : ErrorType::UnsignedIntegerOverflow;
174 if (ignoreReport(Loc, Opts, ET))
175 return;
177 // If this is an unsigned overflow in non-fatal mode, potentially ignore it.
178 if (!IsSigned && !Opts.FromUnrecoverableHandler &&
179 flags()->silence_unsigned_overflow)
180 return;
182 ScopedReport R(Opts, Loc, ET);
184 Diag(Loc, DL_Error, ET, "%0 integer overflow: "
185 "%1 %2 %3 cannot be represented in type %4")
186 << (IsSigned ? "signed" : "unsigned") << Value(Data->Type, LHS)
187 << Operator << RHS << Data->Type;
190 #define UBSAN_OVERFLOW_HANDLER(handler_name, op, unrecoverable) \
191 void __ubsan::handler_name(OverflowData *Data, ValueHandle LHS, \
192 ValueHandle RHS) { \
193 GET_REPORT_OPTIONS(unrecoverable); \
194 handleIntegerOverflowImpl(Data, LHS, op, Value(Data->Type, RHS), Opts); \
195 if (unrecoverable) \
196 Die(); \
199 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_add_overflow, "+", false)
200 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_add_overflow_abort, "+", true)
201 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_sub_overflow, "-", false)
202 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_sub_overflow_abort, "-", true)
203 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_mul_overflow, "*", false)
204 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_mul_overflow_abort, "*", true)
206 static void handleNegateOverflowImpl(OverflowData *Data, ValueHandle OldVal,
207 ReportOptions Opts) {
208 SourceLocation Loc = Data->Loc.acquire();
209 bool IsSigned = Data->Type.isSignedIntegerTy();
210 ErrorType ET = IsSigned ? ErrorType::SignedIntegerOverflow
211 : ErrorType::UnsignedIntegerOverflow;
213 if (ignoreReport(Loc, Opts, ET))
214 return;
216 if (!IsSigned && flags()->silence_unsigned_overflow)
217 return;
219 ScopedReport R(Opts, Loc, ET);
221 if (IsSigned)
222 Diag(Loc, DL_Error, ET,
223 "negation of %0 cannot be represented in type %1; "
224 "cast to an unsigned type to negate this value to itself")
225 << Value(Data->Type, OldVal) << Data->Type;
226 else
227 Diag(Loc, DL_Error, ET, "negation of %0 cannot be represented in type %1")
228 << Value(Data->Type, OldVal) << Data->Type;
231 void __ubsan::__ubsan_handle_negate_overflow(OverflowData *Data,
232 ValueHandle OldVal) {
233 GET_REPORT_OPTIONS(false);
234 handleNegateOverflowImpl(Data, OldVal, Opts);
236 void __ubsan::__ubsan_handle_negate_overflow_abort(OverflowData *Data,
237 ValueHandle OldVal) {
238 GET_REPORT_OPTIONS(true);
239 handleNegateOverflowImpl(Data, OldVal, Opts);
240 Die();
243 static void handleDivremOverflowImpl(OverflowData *Data, ValueHandle LHS,
244 ValueHandle RHS, ReportOptions Opts) {
245 SourceLocation Loc = Data->Loc.acquire();
246 Value LHSVal(Data->Type, LHS);
247 Value RHSVal(Data->Type, RHS);
249 ErrorType ET;
250 if (RHSVal.isMinusOne())
251 ET = ErrorType::SignedIntegerOverflow;
252 else if (Data->Type.isIntegerTy())
253 ET = ErrorType::IntegerDivideByZero;
254 else
255 ET = ErrorType::FloatDivideByZero;
257 if (ignoreReport(Loc, Opts, ET))
258 return;
260 ScopedReport R(Opts, Loc, ET);
262 switch (ET) {
263 case ErrorType::SignedIntegerOverflow:
264 Diag(Loc, DL_Error, ET,
265 "division of %0 by -1 cannot be represented in type %1")
266 << LHSVal << Data->Type;
267 break;
268 default:
269 Diag(Loc, DL_Error, ET, "division by zero");
270 break;
274 void __ubsan::__ubsan_handle_divrem_overflow(OverflowData *Data,
275 ValueHandle LHS, ValueHandle RHS) {
276 GET_REPORT_OPTIONS(false);
277 handleDivremOverflowImpl(Data, LHS, RHS, Opts);
279 void __ubsan::__ubsan_handle_divrem_overflow_abort(OverflowData *Data,
280 ValueHandle LHS,
281 ValueHandle RHS) {
282 GET_REPORT_OPTIONS(true);
283 handleDivremOverflowImpl(Data, LHS, RHS, Opts);
284 Die();
287 static void handleShiftOutOfBoundsImpl(ShiftOutOfBoundsData *Data,
288 ValueHandle LHS, ValueHandle RHS,
289 ReportOptions Opts) {
290 SourceLocation Loc = Data->Loc.acquire();
291 Value LHSVal(Data->LHSType, LHS);
292 Value RHSVal(Data->RHSType, RHS);
294 ErrorType ET;
295 if (RHSVal.isNegative() ||
296 RHSVal.getPositiveIntValue() >= Data->LHSType.getIntegerBitWidth())
297 ET = ErrorType::InvalidShiftExponent;
298 else
299 ET = ErrorType::InvalidShiftBase;
301 if (ignoreReport(Loc, Opts, ET))
302 return;
304 ScopedReport R(Opts, Loc, ET);
306 if (ET == ErrorType::InvalidShiftExponent) {
307 if (RHSVal.isNegative())
308 Diag(Loc, DL_Error, ET, "shift exponent %0 is negative") << RHSVal;
309 else
310 Diag(Loc, DL_Error, ET,
311 "shift exponent %0 is too large for %1-bit type %2")
312 << RHSVal << Data->LHSType.getIntegerBitWidth() << Data->LHSType;
313 } else {
314 if (LHSVal.isNegative())
315 Diag(Loc, DL_Error, ET, "left shift of negative value %0") << LHSVal;
316 else
317 Diag(Loc, DL_Error, ET,
318 "left shift of %0 by %1 places cannot be represented in type %2")
319 << LHSVal << RHSVal << Data->LHSType;
323 void __ubsan::__ubsan_handle_shift_out_of_bounds(ShiftOutOfBoundsData *Data,
324 ValueHandle LHS,
325 ValueHandle RHS) {
326 GET_REPORT_OPTIONS(false);
327 handleShiftOutOfBoundsImpl(Data, LHS, RHS, Opts);
329 void __ubsan::__ubsan_handle_shift_out_of_bounds_abort(
330 ShiftOutOfBoundsData *Data,
331 ValueHandle LHS,
332 ValueHandle RHS) {
333 GET_REPORT_OPTIONS(true);
334 handleShiftOutOfBoundsImpl(Data, LHS, RHS, Opts);
335 Die();
338 static void handleOutOfBoundsImpl(OutOfBoundsData *Data, ValueHandle Index,
339 ReportOptions Opts) {
340 SourceLocation Loc = Data->Loc.acquire();
341 ErrorType ET = ErrorType::OutOfBoundsIndex;
343 if (ignoreReport(Loc, Opts, ET))
344 return;
346 ScopedReport R(Opts, Loc, ET);
348 Value IndexVal(Data->IndexType, Index);
349 Diag(Loc, DL_Error, ET, "index %0 out of bounds for type %1")
350 << IndexVal << Data->ArrayType;
353 void __ubsan::__ubsan_handle_out_of_bounds(OutOfBoundsData *Data,
354 ValueHandle Index) {
355 GET_REPORT_OPTIONS(false);
356 handleOutOfBoundsImpl(Data, Index, Opts);
358 void __ubsan::__ubsan_handle_out_of_bounds_abort(OutOfBoundsData *Data,
359 ValueHandle Index) {
360 GET_REPORT_OPTIONS(true);
361 handleOutOfBoundsImpl(Data, Index, Opts);
362 Die();
365 static void handleBuiltinUnreachableImpl(UnreachableData *Data,
366 ReportOptions Opts) {
367 ErrorType ET = ErrorType::UnreachableCall;
368 ScopedReport R(Opts, Data->Loc, ET);
369 Diag(Data->Loc, DL_Error, ET,
370 "execution reached an unreachable program point");
373 void __ubsan::__ubsan_handle_builtin_unreachable(UnreachableData *Data) {
374 GET_REPORT_OPTIONS(true);
375 handleBuiltinUnreachableImpl(Data, Opts);
376 Die();
379 static void handleMissingReturnImpl(UnreachableData *Data, ReportOptions Opts) {
380 ErrorType ET = ErrorType::MissingReturn;
381 ScopedReport R(Opts, Data->Loc, ET);
382 Diag(Data->Loc, DL_Error, ET,
383 "execution reached the end of a value-returning function "
384 "without returning a value");
387 void __ubsan::__ubsan_handle_missing_return(UnreachableData *Data) {
388 GET_REPORT_OPTIONS(true);
389 handleMissingReturnImpl(Data, Opts);
390 Die();
393 static void handleVLABoundNotPositive(VLABoundData *Data, ValueHandle Bound,
394 ReportOptions Opts) {
395 SourceLocation Loc = Data->Loc.acquire();
396 ErrorType ET = ErrorType::NonPositiveVLAIndex;
398 if (ignoreReport(Loc, Opts, ET))
399 return;
401 ScopedReport R(Opts, Loc, ET);
403 Diag(Loc, DL_Error, ET, "variable length array bound evaluates to "
404 "non-positive value %0")
405 << Value(Data->Type, Bound);
408 void __ubsan::__ubsan_handle_vla_bound_not_positive(VLABoundData *Data,
409 ValueHandle Bound) {
410 GET_REPORT_OPTIONS(false);
411 handleVLABoundNotPositive(Data, Bound, Opts);
413 void __ubsan::__ubsan_handle_vla_bound_not_positive_abort(VLABoundData *Data,
414 ValueHandle Bound) {
415 GET_REPORT_OPTIONS(true);
416 handleVLABoundNotPositive(Data, Bound, Opts);
417 Die();
420 static bool looksLikeFloatCastOverflowDataV1(void *Data) {
421 // First field is either a pointer to filename or a pointer to a
422 // TypeDescriptor.
423 u8 *FilenameOrTypeDescriptor;
424 internal_memcpy(&FilenameOrTypeDescriptor, Data,
425 sizeof(FilenameOrTypeDescriptor));
427 // Heuristic: For float_cast_overflow, the TypeKind will be either TK_Integer
428 // (0x0), TK_Float (0x1) or TK_Unknown (0xff). If both types are known,
429 // adding both bytes will be 0 or 1 (for BE or LE). If it were a filename,
430 // adding two printable characters will not yield such a value. Otherwise,
431 // if one of them is 0xff, this is most likely TK_Unknown type descriptor.
432 u16 MaybeFromTypeKind =
433 FilenameOrTypeDescriptor[0] + FilenameOrTypeDescriptor[1];
434 return MaybeFromTypeKind < 2 || FilenameOrTypeDescriptor[0] == 0xff ||
435 FilenameOrTypeDescriptor[1] == 0xff;
438 static void handleFloatCastOverflow(void *DataPtr, ValueHandle From,
439 ReportOptions Opts) {
440 SymbolizedStackHolder CallerLoc;
441 Location Loc;
442 const TypeDescriptor *FromType, *ToType;
443 ErrorType ET = ErrorType::FloatCastOverflow;
445 if (looksLikeFloatCastOverflowDataV1(DataPtr)) {
446 auto Data = reinterpret_cast<FloatCastOverflowData *>(DataPtr);
447 CallerLoc.reset(getCallerLocation(Opts.pc));
448 Loc = CallerLoc;
449 FromType = &Data->FromType;
450 ToType = &Data->ToType;
451 } else {
452 auto Data = reinterpret_cast<FloatCastOverflowDataV2 *>(DataPtr);
453 SourceLocation SLoc = Data->Loc.acquire();
454 if (ignoreReport(SLoc, Opts, ET))
455 return;
456 Loc = SLoc;
457 FromType = &Data->FromType;
458 ToType = &Data->ToType;
461 ScopedReport R(Opts, Loc, ET);
463 Diag(Loc, DL_Error, ET,
464 "%0 is outside the range of representable values of type %2")
465 << Value(*FromType, From) << *FromType << *ToType;
468 void __ubsan::__ubsan_handle_float_cast_overflow(void *Data, ValueHandle From) {
469 GET_REPORT_OPTIONS(false);
470 handleFloatCastOverflow(Data, From, Opts);
472 void __ubsan::__ubsan_handle_float_cast_overflow_abort(void *Data,
473 ValueHandle From) {
474 GET_REPORT_OPTIONS(true);
475 handleFloatCastOverflow(Data, From, Opts);
476 Die();
479 static void handleLoadInvalidValue(InvalidValueData *Data, ValueHandle Val,
480 ReportOptions Opts) {
481 SourceLocation Loc = Data->Loc.acquire();
482 // This check could be more precise if we used different handlers for
483 // -fsanitize=bool and -fsanitize=enum.
484 bool IsBool = (0 == internal_strcmp(Data->Type.getTypeName(), "'bool'")) ||
485 (0 == internal_strncmp(Data->Type.getTypeName(), "'BOOL'", 6));
486 ErrorType ET =
487 IsBool ? ErrorType::InvalidBoolLoad : ErrorType::InvalidEnumLoad;
489 if (ignoreReport(Loc, Opts, ET))
490 return;
492 ScopedReport R(Opts, Loc, ET);
494 Diag(Loc, DL_Error, ET,
495 "load of value %0, which is not a valid value for type %1")
496 << Value(Data->Type, Val) << Data->Type;
499 void __ubsan::__ubsan_handle_load_invalid_value(InvalidValueData *Data,
500 ValueHandle Val) {
501 GET_REPORT_OPTIONS(false);
502 handleLoadInvalidValue(Data, Val, Opts);
504 void __ubsan::__ubsan_handle_load_invalid_value_abort(InvalidValueData *Data,
505 ValueHandle Val) {
506 GET_REPORT_OPTIONS(true);
507 handleLoadInvalidValue(Data, Val, Opts);
508 Die();
511 static void handleImplicitConversion(ImplicitConversionData *Data,
512 ReportOptions Opts, ValueHandle Src,
513 ValueHandle Dst) {
514 SourceLocation Loc = Data->Loc.acquire();
515 ErrorType ET = ErrorType::GenericUB;
517 const TypeDescriptor &SrcTy = Data->FromType;
518 const TypeDescriptor &DstTy = Data->ToType;
520 bool SrcSigned = SrcTy.isSignedIntegerTy();
521 bool DstSigned = DstTy.isSignedIntegerTy();
523 switch (Data->Kind) {
524 case ICCK_IntegerTruncation: { // Legacy, no longer used.
525 // Let's figure out what it should be as per the new types, and upgrade.
526 // If both types are unsigned, then it's an unsigned truncation.
527 // Else, it is a signed truncation.
528 if (!SrcSigned && !DstSigned) {
529 ET = ErrorType::ImplicitUnsignedIntegerTruncation;
530 } else {
531 ET = ErrorType::ImplicitSignedIntegerTruncation;
533 break;
535 case ICCK_UnsignedIntegerTruncation:
536 ET = ErrorType::ImplicitUnsignedIntegerTruncation;
537 break;
538 case ICCK_SignedIntegerTruncation:
539 ET = ErrorType::ImplicitSignedIntegerTruncation;
540 break;
541 case ICCK_IntegerSignChange:
542 ET = ErrorType::ImplicitIntegerSignChange;
543 break;
544 case ICCK_SignedIntegerTruncationOrSignChange:
545 ET = ErrorType::ImplicitSignedIntegerTruncationOrSignChange;
546 break;
549 if (ignoreReport(Loc, Opts, ET))
550 return;
552 ScopedReport R(Opts, Loc, ET);
554 // FIXME: is it possible to dump the values as hex with fixed width?
556 Diag(Loc, DL_Error, ET,
557 "implicit conversion from type %0 of value %1 (%2-bit, %3signed) to "
558 "type %4 changed the value to %5 (%6-bit, %7signed)")
559 << SrcTy << Value(SrcTy, Src) << SrcTy.getIntegerBitWidth()
560 << (SrcSigned ? "" : "un") << DstTy << Value(DstTy, Dst)
561 << DstTy.getIntegerBitWidth() << (DstSigned ? "" : "un");
564 void __ubsan::__ubsan_handle_implicit_conversion(ImplicitConversionData *Data,
565 ValueHandle Src,
566 ValueHandle Dst) {
567 GET_REPORT_OPTIONS(false);
568 handleImplicitConversion(Data, Opts, Src, Dst);
570 void __ubsan::__ubsan_handle_implicit_conversion_abort(
571 ImplicitConversionData *Data, ValueHandle Src, ValueHandle Dst) {
572 GET_REPORT_OPTIONS(true);
573 handleImplicitConversion(Data, Opts, Src, Dst);
574 Die();
577 static void handleInvalidBuiltin(InvalidBuiltinData *Data, ReportOptions Opts) {
578 SourceLocation Loc = Data->Loc.acquire();
579 ErrorType ET = ErrorType::InvalidBuiltin;
581 if (ignoreReport(Loc, Opts, ET))
582 return;
584 ScopedReport R(Opts, Loc, ET);
586 Diag(Loc, DL_Error, ET,
587 "passing zero to %0, which is not a valid argument")
588 << ((Data->Kind == BCK_CTZPassedZero) ? "ctz()" : "clz()");
591 void __ubsan::__ubsan_handle_invalid_builtin(InvalidBuiltinData *Data) {
592 GET_REPORT_OPTIONS(true);
593 handleInvalidBuiltin(Data, Opts);
595 void __ubsan::__ubsan_handle_invalid_builtin_abort(InvalidBuiltinData *Data) {
596 GET_REPORT_OPTIONS(true);
597 handleInvalidBuiltin(Data, Opts);
598 Die();
601 static void handleNonNullReturn(NonNullReturnData *Data, SourceLocation *LocPtr,
602 ReportOptions Opts, bool IsAttr) {
603 if (!LocPtr)
604 UNREACHABLE("source location pointer is null!");
606 SourceLocation Loc = LocPtr->acquire();
607 ErrorType ET = ErrorType::InvalidNullReturn;
609 if (ignoreReport(Loc, Opts, ET))
610 return;
612 ScopedReport R(Opts, Loc, ET);
614 Diag(Loc, DL_Error, ET,
615 "null pointer returned from function declared to never return null");
616 if (!Data->AttrLoc.isInvalid())
617 Diag(Data->AttrLoc, DL_Note, ET, "%0 specified here")
618 << (IsAttr ? "returns_nonnull attribute"
619 : "_Nonnull return type annotation");
622 void __ubsan::__ubsan_handle_nonnull_return_v1(NonNullReturnData *Data,
623 SourceLocation *LocPtr) {
624 GET_REPORT_OPTIONS(false);
625 handleNonNullReturn(Data, LocPtr, Opts, true);
628 void __ubsan::__ubsan_handle_nonnull_return_v1_abort(NonNullReturnData *Data,
629 SourceLocation *LocPtr) {
630 GET_REPORT_OPTIONS(true);
631 handleNonNullReturn(Data, LocPtr, Opts, true);
632 Die();
635 void __ubsan::__ubsan_handle_nullability_return_v1(NonNullReturnData *Data,
636 SourceLocation *LocPtr) {
637 GET_REPORT_OPTIONS(false);
638 handleNonNullReturn(Data, LocPtr, Opts, false);
641 void __ubsan::__ubsan_handle_nullability_return_v1_abort(
642 NonNullReturnData *Data, SourceLocation *LocPtr) {
643 GET_REPORT_OPTIONS(true);
644 handleNonNullReturn(Data, LocPtr, Opts, false);
645 Die();
648 static void handleNonNullArg(NonNullArgData *Data, ReportOptions Opts,
649 bool IsAttr) {
650 SourceLocation Loc = Data->Loc.acquire();
651 ErrorType ET = ErrorType::InvalidNullArgument;
653 if (ignoreReport(Loc, Opts, ET))
654 return;
656 ScopedReport R(Opts, Loc, ET);
658 Diag(Loc, DL_Error, ET,
659 "null pointer passed as argument %0, which is declared to "
660 "never be null")
661 << Data->ArgIndex;
662 if (!Data->AttrLoc.isInvalid())
663 Diag(Data->AttrLoc, DL_Note, ET, "%0 specified here")
664 << (IsAttr ? "nonnull attribute" : "_Nonnull type annotation");
667 void __ubsan::__ubsan_handle_nonnull_arg(NonNullArgData *Data) {
668 GET_REPORT_OPTIONS(false);
669 handleNonNullArg(Data, Opts, true);
672 void __ubsan::__ubsan_handle_nonnull_arg_abort(NonNullArgData *Data) {
673 GET_REPORT_OPTIONS(true);
674 handleNonNullArg(Data, Opts, true);
675 Die();
678 void __ubsan::__ubsan_handle_nullability_arg(NonNullArgData *Data) {
679 GET_REPORT_OPTIONS(false);
680 handleNonNullArg(Data, Opts, false);
683 void __ubsan::__ubsan_handle_nullability_arg_abort(NonNullArgData *Data) {
684 GET_REPORT_OPTIONS(true);
685 handleNonNullArg(Data, Opts, false);
686 Die();
689 static void handlePointerOverflowImpl(PointerOverflowData *Data,
690 ValueHandle Base,
691 ValueHandle Result,
692 ReportOptions Opts) {
693 SourceLocation Loc = Data->Loc.acquire();
694 ErrorType ET = ErrorType::PointerOverflow;
696 if (ignoreReport(Loc, Opts, ET))
697 return;
699 ScopedReport R(Opts, Loc, ET);
701 if ((sptr(Base) >= 0) == (sptr(Result) >= 0)) {
702 if (Base > Result)
703 Diag(Loc, DL_Error, ET,
704 "addition of unsigned offset to %0 overflowed to %1")
705 << (void *)Base << (void *)Result;
706 else
707 Diag(Loc, DL_Error, ET,
708 "subtraction of unsigned offset from %0 overflowed to %1")
709 << (void *)Base << (void *)Result;
710 } else {
711 Diag(Loc, DL_Error, ET,
712 "pointer index expression with base %0 overflowed to %1")
713 << (void *)Base << (void *)Result;
717 void __ubsan::__ubsan_handle_pointer_overflow(PointerOverflowData *Data,
718 ValueHandle Base,
719 ValueHandle Result) {
720 GET_REPORT_OPTIONS(false);
721 handlePointerOverflowImpl(Data, Base, Result, Opts);
724 void __ubsan::__ubsan_handle_pointer_overflow_abort(PointerOverflowData *Data,
725 ValueHandle Base,
726 ValueHandle Result) {
727 GET_REPORT_OPTIONS(true);
728 handlePointerOverflowImpl(Data, Base, Result, Opts);
729 Die();
732 static void handleCFIBadIcall(CFICheckFailData *Data, ValueHandle Function,
733 ReportOptions Opts) {
734 if (Data->CheckKind != CFITCK_ICall && Data->CheckKind != CFITCK_NVMFCall)
735 Die();
737 SourceLocation Loc = Data->Loc.acquire();
738 ErrorType ET = ErrorType::CFIBadType;
740 if (ignoreReport(Loc, Opts, ET))
741 return;
743 ScopedReport R(Opts, Loc, ET);
745 const char *CheckKindStr = Data->CheckKind == CFITCK_NVMFCall
746 ? "non-virtual pointer to member function call"
747 : "indirect function call";
748 Diag(Loc, DL_Error, ET,
749 "control flow integrity check for type %0 failed during %1")
750 << Data->Type << CheckKindStr;
752 SymbolizedStackHolder FLoc(getSymbolizedLocation(Function));
753 const char *FName = FLoc.get()->info.function;
754 if (!FName)
755 FName = "(unknown)";
756 Diag(FLoc, DL_Note, ET, "%0 defined here") << FName;
758 // If the failure involved different DSOs for the check location and icall
759 // target, report the DSO names.
760 const char *DstModule = FLoc.get()->info.module;
761 if (!DstModule)
762 DstModule = "(unknown)";
764 const char *SrcModule = Symbolizer::GetOrInit()->GetModuleNameForPc(Opts.pc);
765 if (!SrcModule)
766 SrcModule = "(unknown)";
768 if (internal_strcmp(SrcModule, DstModule))
769 Diag(Loc, DL_Note, ET,
770 "check failed in %0, destination function located in %1")
771 << SrcModule << DstModule;
774 namespace __ubsan {
776 #ifdef UBSAN_CAN_USE_CXXABI
778 #ifdef _WIN32
780 extern "C" void __ubsan_handle_cfi_bad_type_default(CFICheckFailData *Data,
781 ValueHandle Vtable,
782 bool ValidVtable,
783 ReportOptions Opts) {
784 Die();
787 WIN_WEAK_ALIAS(__ubsan_handle_cfi_bad_type, __ubsan_handle_cfi_bad_type_default)
788 #else
789 SANITIZER_WEAK_ATTRIBUTE
790 #endif
791 void __ubsan_handle_cfi_bad_type(CFICheckFailData *Data, ValueHandle Vtable,
792 bool ValidVtable, ReportOptions Opts);
794 #else
795 void __ubsan_handle_cfi_bad_type(CFICheckFailData *Data, ValueHandle Vtable,
796 bool ValidVtable, ReportOptions Opts) {
797 Die();
799 #endif
801 } // namespace __ubsan
803 void __ubsan::__ubsan_handle_cfi_bad_icall(CFIBadIcallData *CallData,
804 ValueHandle Function) {
805 GET_REPORT_OPTIONS(false);
806 CFICheckFailData Data = {CFITCK_ICall, CallData->Loc, CallData->Type};
807 handleCFIBadIcall(&Data, Function, Opts);
810 void __ubsan::__ubsan_handle_cfi_bad_icall_abort(CFIBadIcallData *CallData,
811 ValueHandle Function) {
812 GET_REPORT_OPTIONS(true);
813 CFICheckFailData Data = {CFITCK_ICall, CallData->Loc, CallData->Type};
814 handleCFIBadIcall(&Data, Function, Opts);
815 Die();
818 void __ubsan::__ubsan_handle_cfi_check_fail(CFICheckFailData *Data,
819 ValueHandle Value,
820 uptr ValidVtable) {
821 GET_REPORT_OPTIONS(false);
822 if (Data->CheckKind == CFITCK_ICall || Data->CheckKind == CFITCK_NVMFCall)
823 handleCFIBadIcall(Data, Value, Opts);
824 else
825 __ubsan_handle_cfi_bad_type(Data, Value, ValidVtable, Opts);
828 void __ubsan::__ubsan_handle_cfi_check_fail_abort(CFICheckFailData *Data,
829 ValueHandle Value,
830 uptr ValidVtable) {
831 GET_REPORT_OPTIONS(true);
832 if (Data->CheckKind == CFITCK_ICall || Data->CheckKind == CFITCK_NVMFCall)
833 handleCFIBadIcall(Data, Value, Opts);
834 else
835 __ubsan_handle_cfi_bad_type(Data, Value, ValidVtable, Opts);
836 Die();
839 #endif // CAN_SANITIZE_UB