1 //===-- ubsan_handlers.cpp ------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 // Error logging entry points for the UBSan runtime.
11 //===----------------------------------------------------------------------===//
13 #include "ubsan_platform.h"
15 #include "ubsan_handlers.h"
16 #include "ubsan_diag.h"
17 #include "ubsan_flags.h"
18 #include "ubsan_monitor.h"
19 #include "ubsan_value.h"
21 #include "sanitizer_common/sanitizer_common.h"
23 using namespace __sanitizer
;
24 using namespace __ubsan
;
27 bool ignoreReport(SourceLocation SLoc
, ReportOptions Opts
, ErrorType ET
) {
28 // We are not allowed to skip error report: if we are in unrecoverable
29 // handler, we have to terminate the program right now, and therefore
30 // have to print some diagnostic.
32 // Even if source location is disabled, it doesn't mean that we have
33 // already report an error to the user: some concurrently running
34 // thread could have acquired it, but not yet printed the report.
35 if (Opts
.FromUnrecoverableHandler
)
37 return SLoc
.isDisabled() || IsPCSuppressed(ET
, Opts
.pc
, SLoc
.getFilename());
40 /// Situations in which we might emit a check for the suitability of a
41 /// pointer or glvalue. Needs to be kept in sync with CodeGenFunction.h in
44 /// Checking the operand of a load. Must be suitably sized and aligned.
46 /// Checking the destination of a store. Must be suitably sized and aligned.
48 /// Checking the bound value in a reference binding. Must be suitably sized
49 /// and aligned, but is not required to refer to an object (until the
50 /// reference is used), per core issue 453.
52 /// Checking the object expression in a non-static data member access. Must
53 /// be an object within its lifetime.
55 /// Checking the 'this' pointer for a call to a non-static member function.
56 /// Must be an object within its lifetime.
58 /// Checking the 'this' pointer for a constructor call.
60 /// Checking the operand of a static_cast to a derived pointer type. Must be
61 /// null or an object within its lifetime.
63 /// Checking the operand of a static_cast to a derived reference type. Must
64 /// be an object within its lifetime.
65 TCK_DowncastReference
,
66 /// Checking the operand of a cast to a base object. Must be suitably sized
69 /// Checking the operand of a cast to a virtual base object. Must be an
70 /// object within its lifetime.
71 TCK_UpcastToVirtualBase
,
72 /// Checking the value assigned to a _Nonnull pointer. Must not be null.
74 /// Checking the operand of a dynamic_cast or a typeid expression. Must be
75 /// null or an object within its lifetime.
79 extern const char *const TypeCheckKinds
[] = {
80 "load of", "store to", "reference binding to", "member access within",
81 "member call on", "constructor call on", "downcast of", "downcast of",
82 "upcast of", "cast to virtual base of", "_Nonnull binding to",
83 "dynamic operation on"};
86 static void handleTypeMismatchImpl(TypeMismatchData
*Data
, ValueHandle Pointer
,
88 Location Loc
= Data
->Loc
.acquire();
90 uptr Alignment
= (uptr
)1 << Data
->LogAlignment
;
93 ET
= (Data
->TypeCheckKind
== TCK_NonnullAssign
)
94 ? ErrorType::NullPointerUseWithNullability
95 : ErrorType::NullPointerUse
;
96 else if (Pointer
& (Alignment
- 1))
97 ET
= ErrorType::MisalignedPointerUse
;
99 ET
= ErrorType::InsufficientObjectSize
;
101 // Use the SourceLocation from Data to track deduplication, even if it's
103 if (ignoreReport(Loc
.getSourceLocation(), Opts
, ET
))
106 SymbolizedStackHolder FallbackLoc
;
107 if (Data
->Loc
.isInvalid()) {
108 FallbackLoc
.reset(getCallerLocation(Opts
.pc
));
112 ScopedReport
R(Opts
, Loc
, ET
);
115 case ErrorType::NullPointerUse
:
116 case ErrorType::NullPointerUseWithNullability
:
117 Diag(Loc
, DL_Error
, ET
, "%0 null pointer of type %1")
118 << TypeCheckKinds
[Data
->TypeCheckKind
] << Data
->Type
;
120 case ErrorType::MisalignedPointerUse
:
121 Diag(Loc
, DL_Error
, ET
, "%0 misaligned address %1 for type %3, "
122 "which requires %2 byte alignment")
123 << TypeCheckKinds
[Data
->TypeCheckKind
] << (void *)Pointer
<< Alignment
126 case ErrorType::InsufficientObjectSize
:
127 Diag(Loc
, DL_Error
, ET
, "%0 address %1 with insufficient space "
128 "for an object of type %2")
129 << TypeCheckKinds
[Data
->TypeCheckKind
] << (void *)Pointer
<< Data
->Type
;
132 UNREACHABLE("unexpected error type!");
136 Diag(Pointer
, DL_Note
, ET
, "pointer points here");
139 void __ubsan::__ubsan_handle_type_mismatch_v1(TypeMismatchData
*Data
,
140 ValueHandle Pointer
) {
141 GET_REPORT_OPTIONS(false);
142 handleTypeMismatchImpl(Data
, Pointer
, Opts
);
144 void __ubsan::__ubsan_handle_type_mismatch_v1_abort(TypeMismatchData
*Data
,
145 ValueHandle Pointer
) {
146 GET_REPORT_OPTIONS(true);
147 handleTypeMismatchImpl(Data
, Pointer
, Opts
);
151 static void handleAlignmentAssumptionImpl(AlignmentAssumptionData
*Data
,
153 ValueHandle Alignment
,
155 ReportOptions Opts
) {
156 Location Loc
= Data
->Loc
.acquire();
157 SourceLocation AssumptionLoc
= Data
->AssumptionLoc
.acquire();
159 ErrorType ET
= ErrorType::AlignmentAssumption
;
161 if (ignoreReport(Loc
.getSourceLocation(), Opts
, ET
))
164 ScopedReport
R(Opts
, Loc
, ET
);
166 uptr RealPointer
= Pointer
- Offset
;
167 uptr LSB
= LeastSignificantSetBitIndex(RealPointer
);
168 uptr ActualAlignment
= uptr(1) << LSB
;
170 uptr Mask
= Alignment
- 1;
171 uptr MisAlignmentOffset
= RealPointer
& Mask
;
174 Diag(Loc
, DL_Error
, ET
,
175 "assumption of %0 byte alignment for pointer of type %1 failed")
176 << Alignment
<< Data
->Type
;
178 Diag(Loc
, DL_Error
, ET
,
179 "assumption of %0 byte alignment (with offset of %1 byte) for pointer "
181 << Alignment
<< Offset
<< Data
->Type
;
184 if (!AssumptionLoc
.isInvalid())
185 Diag(AssumptionLoc
, DL_Note
, ET
, "alignment assumption was specified here");
187 Diag(RealPointer
, DL_Note
, ET
,
188 "%0address is %1 aligned, misalignment offset is %2 bytes")
189 << (Offset
? "offset " : "") << ActualAlignment
<< MisAlignmentOffset
;
192 void __ubsan::__ubsan_handle_alignment_assumption(AlignmentAssumptionData
*Data
,
194 ValueHandle Alignment
,
195 ValueHandle Offset
) {
196 GET_REPORT_OPTIONS(false);
197 handleAlignmentAssumptionImpl(Data
, Pointer
, Alignment
, Offset
, Opts
);
199 void __ubsan::__ubsan_handle_alignment_assumption_abort(
200 AlignmentAssumptionData
*Data
, ValueHandle Pointer
, ValueHandle Alignment
,
201 ValueHandle Offset
) {
202 GET_REPORT_OPTIONS(true);
203 handleAlignmentAssumptionImpl(Data
, Pointer
, Alignment
, Offset
, Opts
);
207 /// \brief Common diagnostic emission for various forms of integer overflow.
208 template <typename T
>
209 static void handleIntegerOverflowImpl(OverflowData
*Data
, ValueHandle LHS
,
210 const char *Operator
, T RHS
,
211 ReportOptions Opts
) {
212 SourceLocation Loc
= Data
->Loc
.acquire();
213 bool IsSigned
= Data
->Type
.isSignedIntegerTy();
214 ErrorType ET
= IsSigned
? ErrorType::SignedIntegerOverflow
215 : ErrorType::UnsignedIntegerOverflow
;
217 if (ignoreReport(Loc
, Opts
, ET
))
220 // If this is an unsigned overflow in non-fatal mode, potentially ignore it.
221 if (!IsSigned
&& !Opts
.FromUnrecoverableHandler
&&
222 flags()->silence_unsigned_overflow
)
225 ScopedReport
R(Opts
, Loc
, ET
);
227 Diag(Loc
, DL_Error
, ET
, "%0 integer overflow: "
228 "%1 %2 %3 cannot be represented in type %4")
229 << (IsSigned
? "signed" : "unsigned") << Value(Data
->Type
, LHS
)
230 << Operator
<< RHS
<< Data
->Type
;
233 #define UBSAN_OVERFLOW_HANDLER(handler_name, op, unrecoverable) \
234 void __ubsan::handler_name(OverflowData *Data, ValueHandle LHS, \
236 GET_REPORT_OPTIONS(unrecoverable); \
237 handleIntegerOverflowImpl(Data, LHS, op, Value(Data->Type, RHS), Opts); \
242 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_add_overflow
, "+", false)
243 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_add_overflow_abort
, "+", true)
244 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_sub_overflow
, "-", false)
245 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_sub_overflow_abort
, "-", true)
246 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_mul_overflow
, "*", false)
247 UBSAN_OVERFLOW_HANDLER(__ubsan_handle_mul_overflow_abort
, "*", true)
249 static void handleNegateOverflowImpl(OverflowData
*Data
, ValueHandle OldVal
,
250 ReportOptions Opts
) {
251 SourceLocation Loc
= Data
->Loc
.acquire();
252 bool IsSigned
= Data
->Type
.isSignedIntegerTy();
253 ErrorType ET
= IsSigned
? ErrorType::SignedIntegerOverflow
254 : ErrorType::UnsignedIntegerOverflow
;
256 if (ignoreReport(Loc
, Opts
, ET
))
259 if (!IsSigned
&& flags()->silence_unsigned_overflow
)
262 ScopedReport
R(Opts
, Loc
, ET
);
265 Diag(Loc
, DL_Error
, ET
,
266 "negation of %0 cannot be represented in type %1; "
267 "cast to an unsigned type to negate this value to itself")
268 << Value(Data
->Type
, OldVal
) << Data
->Type
;
270 Diag(Loc
, DL_Error
, ET
, "negation of %0 cannot be represented in type %1")
271 << Value(Data
->Type
, OldVal
) << Data
->Type
;
274 void __ubsan::__ubsan_handle_negate_overflow(OverflowData
*Data
,
275 ValueHandle OldVal
) {
276 GET_REPORT_OPTIONS(false);
277 handleNegateOverflowImpl(Data
, OldVal
, Opts
);
279 void __ubsan::__ubsan_handle_negate_overflow_abort(OverflowData
*Data
,
280 ValueHandle OldVal
) {
281 GET_REPORT_OPTIONS(true);
282 handleNegateOverflowImpl(Data
, OldVal
, Opts
);
286 static void handleDivremOverflowImpl(OverflowData
*Data
, ValueHandle LHS
,
287 ValueHandle RHS
, ReportOptions Opts
) {
288 SourceLocation Loc
= Data
->Loc
.acquire();
289 Value
LHSVal(Data
->Type
, LHS
);
290 Value
RHSVal(Data
->Type
, RHS
);
293 if (RHSVal
.isMinusOne())
294 ET
= ErrorType::SignedIntegerOverflow
;
295 else if (Data
->Type
.isIntegerTy())
296 ET
= ErrorType::IntegerDivideByZero
;
298 ET
= ErrorType::FloatDivideByZero
;
300 if (ignoreReport(Loc
, Opts
, ET
))
303 ScopedReport
R(Opts
, Loc
, ET
);
306 case ErrorType::SignedIntegerOverflow
:
307 Diag(Loc
, DL_Error
, ET
,
308 "division of %0 by -1 cannot be represented in type %1")
309 << LHSVal
<< Data
->Type
;
312 Diag(Loc
, DL_Error
, ET
, "division by zero");
317 void __ubsan::__ubsan_handle_divrem_overflow(OverflowData
*Data
,
318 ValueHandle LHS
, ValueHandle RHS
) {
319 GET_REPORT_OPTIONS(false);
320 handleDivremOverflowImpl(Data
, LHS
, RHS
, Opts
);
322 void __ubsan::__ubsan_handle_divrem_overflow_abort(OverflowData
*Data
,
325 GET_REPORT_OPTIONS(true);
326 handleDivremOverflowImpl(Data
, LHS
, RHS
, Opts
);
330 static void handleShiftOutOfBoundsImpl(ShiftOutOfBoundsData
*Data
,
331 ValueHandle LHS
, ValueHandle RHS
,
332 ReportOptions Opts
) {
333 SourceLocation Loc
= Data
->Loc
.acquire();
334 Value
LHSVal(Data
->LHSType
, LHS
);
335 Value
RHSVal(Data
->RHSType
, RHS
);
338 if (RHSVal
.isNegative() ||
339 RHSVal
.getPositiveIntValue() >= Data
->LHSType
.getIntegerBitWidth())
340 ET
= ErrorType::InvalidShiftExponent
;
342 ET
= ErrorType::InvalidShiftBase
;
344 if (ignoreReport(Loc
, Opts
, ET
))
347 ScopedReport
R(Opts
, Loc
, ET
);
349 if (ET
== ErrorType::InvalidShiftExponent
) {
350 if (RHSVal
.isNegative())
351 Diag(Loc
, DL_Error
, ET
, "shift exponent %0 is negative") << RHSVal
;
353 Diag(Loc
, DL_Error
, ET
,
354 "shift exponent %0 is too large for %1-bit type %2")
355 << RHSVal
<< Data
->LHSType
.getIntegerBitWidth() << Data
->LHSType
;
357 if (LHSVal
.isNegative())
358 Diag(Loc
, DL_Error
, ET
, "left shift of negative value %0") << LHSVal
;
360 Diag(Loc
, DL_Error
, ET
,
361 "left shift of %0 by %1 places cannot be represented in type %2")
362 << LHSVal
<< RHSVal
<< Data
->LHSType
;
366 void __ubsan::__ubsan_handle_shift_out_of_bounds(ShiftOutOfBoundsData
*Data
,
369 GET_REPORT_OPTIONS(false);
370 handleShiftOutOfBoundsImpl(Data
, LHS
, RHS
, Opts
);
372 void __ubsan::__ubsan_handle_shift_out_of_bounds_abort(
373 ShiftOutOfBoundsData
*Data
,
376 GET_REPORT_OPTIONS(true);
377 handleShiftOutOfBoundsImpl(Data
, LHS
, RHS
, Opts
);
381 static void handleOutOfBoundsImpl(OutOfBoundsData
*Data
, ValueHandle Index
,
382 ReportOptions Opts
) {
383 SourceLocation Loc
= Data
->Loc
.acquire();
384 ErrorType ET
= ErrorType::OutOfBoundsIndex
;
386 if (ignoreReport(Loc
, Opts
, ET
))
389 ScopedReport
R(Opts
, Loc
, ET
);
391 Value
IndexVal(Data
->IndexType
, Index
);
392 Diag(Loc
, DL_Error
, ET
, "index %0 out of bounds for type %1")
393 << IndexVal
<< Data
->ArrayType
;
396 void __ubsan::__ubsan_handle_out_of_bounds(OutOfBoundsData
*Data
,
398 GET_REPORT_OPTIONS(false);
399 handleOutOfBoundsImpl(Data
, Index
, Opts
);
401 void __ubsan::__ubsan_handle_out_of_bounds_abort(OutOfBoundsData
*Data
,
403 GET_REPORT_OPTIONS(true);
404 handleOutOfBoundsImpl(Data
, Index
, Opts
);
408 static void handleBuiltinUnreachableImpl(UnreachableData
*Data
,
409 ReportOptions Opts
) {
410 ErrorType ET
= ErrorType::UnreachableCall
;
411 ScopedReport
R(Opts
, Data
->Loc
, ET
);
412 Diag(Data
->Loc
, DL_Error
, ET
,
413 "execution reached an unreachable program point");
416 void __ubsan::__ubsan_handle_builtin_unreachable(UnreachableData
*Data
) {
417 GET_REPORT_OPTIONS(true);
418 handleBuiltinUnreachableImpl(Data
, Opts
);
422 static void handleMissingReturnImpl(UnreachableData
*Data
, ReportOptions Opts
) {
423 ErrorType ET
= ErrorType::MissingReturn
;
424 ScopedReport
R(Opts
, Data
->Loc
, ET
);
425 Diag(Data
->Loc
, DL_Error
, ET
,
426 "execution reached the end of a value-returning function "
427 "without returning a value");
430 void __ubsan::__ubsan_handle_missing_return(UnreachableData
*Data
) {
431 GET_REPORT_OPTIONS(true);
432 handleMissingReturnImpl(Data
, Opts
);
436 static void handleVLABoundNotPositive(VLABoundData
*Data
, ValueHandle Bound
,
437 ReportOptions Opts
) {
438 SourceLocation Loc
= Data
->Loc
.acquire();
439 ErrorType ET
= ErrorType::NonPositiveVLAIndex
;
441 if (ignoreReport(Loc
, Opts
, ET
))
444 ScopedReport
R(Opts
, Loc
, ET
);
446 Diag(Loc
, DL_Error
, ET
, "variable length array bound evaluates to "
447 "non-positive value %0")
448 << Value(Data
->Type
, Bound
);
451 void __ubsan::__ubsan_handle_vla_bound_not_positive(VLABoundData
*Data
,
453 GET_REPORT_OPTIONS(false);
454 handleVLABoundNotPositive(Data
, Bound
, Opts
);
456 void __ubsan::__ubsan_handle_vla_bound_not_positive_abort(VLABoundData
*Data
,
458 GET_REPORT_OPTIONS(true);
459 handleVLABoundNotPositive(Data
, Bound
, Opts
);
463 static bool looksLikeFloatCastOverflowDataV1(void *Data
) {
464 // First field is either a pointer to filename or a pointer to a
466 u8
*FilenameOrTypeDescriptor
;
467 internal_memcpy(&FilenameOrTypeDescriptor
, Data
,
468 sizeof(FilenameOrTypeDescriptor
));
470 // Heuristic: For float_cast_overflow, the TypeKind will be either TK_Integer
471 // (0x0), TK_Float (0x1) or TK_Unknown (0xff). If both types are known,
472 // adding both bytes will be 0 or 1 (for BE or LE). If it were a filename,
473 // adding two printable characters will not yield such a value. Otherwise,
474 // if one of them is 0xff, this is most likely TK_Unknown type descriptor.
475 u16 MaybeFromTypeKind
=
476 FilenameOrTypeDescriptor
[0] + FilenameOrTypeDescriptor
[1];
477 return MaybeFromTypeKind
< 2 || FilenameOrTypeDescriptor
[0] == 0xff ||
478 FilenameOrTypeDescriptor
[1] == 0xff;
481 static void handleFloatCastOverflow(void *DataPtr
, ValueHandle From
,
482 ReportOptions Opts
) {
483 SymbolizedStackHolder CallerLoc
;
485 const TypeDescriptor
*FromType
, *ToType
;
486 ErrorType ET
= ErrorType::FloatCastOverflow
;
488 if (looksLikeFloatCastOverflowDataV1(DataPtr
)) {
489 auto Data
= reinterpret_cast<FloatCastOverflowData
*>(DataPtr
);
490 CallerLoc
.reset(getCallerLocation(Opts
.pc
));
492 FromType
= &Data
->FromType
;
493 ToType
= &Data
->ToType
;
495 auto Data
= reinterpret_cast<FloatCastOverflowDataV2
*>(DataPtr
);
496 SourceLocation SLoc
= Data
->Loc
.acquire();
497 if (ignoreReport(SLoc
, Opts
, ET
))
500 FromType
= &Data
->FromType
;
501 ToType
= &Data
->ToType
;
504 ScopedReport
R(Opts
, Loc
, ET
);
506 Diag(Loc
, DL_Error
, ET
,
507 "%0 is outside the range of representable values of type %2")
508 << Value(*FromType
, From
) << *FromType
<< *ToType
;
511 void __ubsan::__ubsan_handle_float_cast_overflow(void *Data
, ValueHandle From
) {
512 GET_REPORT_OPTIONS(false);
513 handleFloatCastOverflow(Data
, From
, Opts
);
515 void __ubsan::__ubsan_handle_float_cast_overflow_abort(void *Data
,
517 GET_REPORT_OPTIONS(true);
518 handleFloatCastOverflow(Data
, From
, Opts
);
522 static void handleLoadInvalidValue(InvalidValueData
*Data
, ValueHandle Val
,
523 ReportOptions Opts
) {
524 SourceLocation Loc
= Data
->Loc
.acquire();
525 // This check could be more precise if we used different handlers for
526 // -fsanitize=bool and -fsanitize=enum.
527 bool IsBool
= (0 == internal_strcmp(Data
->Type
.getTypeName(), "'bool'")) ||
528 (0 == internal_strncmp(Data
->Type
.getTypeName(), "'BOOL'", 6));
530 IsBool
? ErrorType::InvalidBoolLoad
: ErrorType::InvalidEnumLoad
;
532 if (ignoreReport(Loc
, Opts
, ET
))
535 ScopedReport
R(Opts
, Loc
, ET
);
537 Diag(Loc
, DL_Error
, ET
,
538 "load of value %0, which is not a valid value for type %1")
539 << Value(Data
->Type
, Val
) << Data
->Type
;
542 void __ubsan::__ubsan_handle_load_invalid_value(InvalidValueData
*Data
,
544 GET_REPORT_OPTIONS(false);
545 handleLoadInvalidValue(Data
, Val
, Opts
);
547 void __ubsan::__ubsan_handle_load_invalid_value_abort(InvalidValueData
*Data
,
549 GET_REPORT_OPTIONS(true);
550 handleLoadInvalidValue(Data
, Val
, Opts
);
554 static void handleImplicitConversion(ImplicitConversionData
*Data
,
555 ReportOptions Opts
, ValueHandle Src
,
557 SourceLocation Loc
= Data
->Loc
.acquire();
558 ErrorType ET
= ErrorType::GenericUB
;
560 const TypeDescriptor
&SrcTy
= Data
->FromType
;
561 const TypeDescriptor
&DstTy
= Data
->ToType
;
563 bool SrcSigned
= SrcTy
.isSignedIntegerTy();
564 bool DstSigned
= DstTy
.isSignedIntegerTy();
566 switch (Data
->Kind
) {
567 case ICCK_IntegerTruncation
: { // Legacy, no longer used.
568 // Let's figure out what it should be as per the new types, and upgrade.
569 // If both types are unsigned, then it's an unsigned truncation.
570 // Else, it is a signed truncation.
571 if (!SrcSigned
&& !DstSigned
) {
572 ET
= ErrorType::ImplicitUnsignedIntegerTruncation
;
574 ET
= ErrorType::ImplicitSignedIntegerTruncation
;
578 case ICCK_UnsignedIntegerTruncation
:
579 ET
= ErrorType::ImplicitUnsignedIntegerTruncation
;
581 case ICCK_SignedIntegerTruncation
:
582 ET
= ErrorType::ImplicitSignedIntegerTruncation
;
584 case ICCK_IntegerSignChange
:
585 ET
= ErrorType::ImplicitIntegerSignChange
;
587 case ICCK_SignedIntegerTruncationOrSignChange
:
588 ET
= ErrorType::ImplicitSignedIntegerTruncationOrSignChange
;
592 if (ignoreReport(Loc
, Opts
, ET
))
595 ScopedReport
R(Opts
, Loc
, ET
);
597 // FIXME: is it possible to dump the values as hex with fixed width?
599 Diag(Loc
, DL_Error
, ET
,
600 "implicit conversion from type %0 of value %1 (%2-bit, %3signed) to "
601 "type %4 changed the value to %5 (%6-bit, %7signed)")
602 << SrcTy
<< Value(SrcTy
, Src
) << SrcTy
.getIntegerBitWidth()
603 << (SrcSigned
? "" : "un") << DstTy
<< Value(DstTy
, Dst
)
604 << DstTy
.getIntegerBitWidth() << (DstSigned
? "" : "un");
607 void __ubsan::__ubsan_handle_implicit_conversion(ImplicitConversionData
*Data
,
610 GET_REPORT_OPTIONS(false);
611 handleImplicitConversion(Data
, Opts
, Src
, Dst
);
613 void __ubsan::__ubsan_handle_implicit_conversion_abort(
614 ImplicitConversionData
*Data
, ValueHandle Src
, ValueHandle Dst
) {
615 GET_REPORT_OPTIONS(true);
616 handleImplicitConversion(Data
, Opts
, Src
, Dst
);
620 static void handleInvalidBuiltin(InvalidBuiltinData
*Data
, ReportOptions Opts
) {
621 SourceLocation Loc
= Data
->Loc
.acquire();
622 ErrorType ET
= ErrorType::InvalidBuiltin
;
624 if (ignoreReport(Loc
, Opts
, ET
))
627 ScopedReport
R(Opts
, Loc
, ET
);
629 Diag(Loc
, DL_Error
, ET
,
630 "passing zero to %0, which is not a valid argument")
631 << ((Data
->Kind
== BCK_CTZPassedZero
) ? "ctz()" : "clz()");
634 void __ubsan::__ubsan_handle_invalid_builtin(InvalidBuiltinData
*Data
) {
635 GET_REPORT_OPTIONS(true);
636 handleInvalidBuiltin(Data
, Opts
);
638 void __ubsan::__ubsan_handle_invalid_builtin_abort(InvalidBuiltinData
*Data
) {
639 GET_REPORT_OPTIONS(true);
640 handleInvalidBuiltin(Data
, Opts
);
644 static void handleInvalidObjCCast(InvalidObjCCast
*Data
, ValueHandle Pointer
,
645 ReportOptions Opts
) {
646 SourceLocation Loc
= Data
->Loc
.acquire();
647 ErrorType ET
= ErrorType::InvalidObjCCast
;
649 if (ignoreReport(Loc
, Opts
, ET
))
652 ScopedReport
R(Opts
, Loc
, ET
);
654 const char *GivenClass
= getObjCClassName(Pointer
);
655 const char *GivenClassStr
= GivenClass
? GivenClass
: "<unknown type>";
657 Diag(Loc
, DL_Error
, ET
,
658 "invalid ObjC cast, object is a '%0', but expected a %1")
659 << GivenClassStr
<< Data
->ExpectedType
;
662 void __ubsan::__ubsan_handle_invalid_objc_cast(InvalidObjCCast
*Data
,
663 ValueHandle Pointer
) {
664 GET_REPORT_OPTIONS(false);
665 handleInvalidObjCCast(Data
, Pointer
, Opts
);
667 void __ubsan::__ubsan_handle_invalid_objc_cast_abort(InvalidObjCCast
*Data
,
668 ValueHandle Pointer
) {
669 GET_REPORT_OPTIONS(true);
670 handleInvalidObjCCast(Data
, Pointer
, Opts
);
674 static void handleNonNullReturn(NonNullReturnData
*Data
, SourceLocation
*LocPtr
,
675 ReportOptions Opts
, bool IsAttr
) {
677 UNREACHABLE("source location pointer is null!");
679 SourceLocation Loc
= LocPtr
->acquire();
680 ErrorType ET
= IsAttr
? ErrorType::InvalidNullReturn
681 : ErrorType::InvalidNullReturnWithNullability
;
683 if (ignoreReport(Loc
, Opts
, ET
))
686 ScopedReport
R(Opts
, Loc
, ET
);
688 Diag(Loc
, DL_Error
, ET
,
689 "null pointer returned from function declared to never return null");
690 if (!Data
->AttrLoc
.isInvalid())
691 Diag(Data
->AttrLoc
, DL_Note
, ET
, "%0 specified here")
692 << (IsAttr
? "returns_nonnull attribute"
693 : "_Nonnull return type annotation");
696 void __ubsan::__ubsan_handle_nonnull_return_v1(NonNullReturnData
*Data
,
697 SourceLocation
*LocPtr
) {
698 GET_REPORT_OPTIONS(false);
699 handleNonNullReturn(Data
, LocPtr
, Opts
, true);
702 void __ubsan::__ubsan_handle_nonnull_return_v1_abort(NonNullReturnData
*Data
,
703 SourceLocation
*LocPtr
) {
704 GET_REPORT_OPTIONS(true);
705 handleNonNullReturn(Data
, LocPtr
, Opts
, true);
709 void __ubsan::__ubsan_handle_nullability_return_v1(NonNullReturnData
*Data
,
710 SourceLocation
*LocPtr
) {
711 GET_REPORT_OPTIONS(false);
712 handleNonNullReturn(Data
, LocPtr
, Opts
, false);
715 void __ubsan::__ubsan_handle_nullability_return_v1_abort(
716 NonNullReturnData
*Data
, SourceLocation
*LocPtr
) {
717 GET_REPORT_OPTIONS(true);
718 handleNonNullReturn(Data
, LocPtr
, Opts
, false);
722 static void handleNonNullArg(NonNullArgData
*Data
, ReportOptions Opts
,
724 SourceLocation Loc
= Data
->Loc
.acquire();
725 ErrorType ET
= IsAttr
? ErrorType::InvalidNullArgument
726 : ErrorType::InvalidNullArgumentWithNullability
;
728 if (ignoreReport(Loc
, Opts
, ET
))
731 ScopedReport
R(Opts
, Loc
, ET
);
733 Diag(Loc
, DL_Error
, ET
,
734 "null pointer passed as argument %0, which is declared to "
737 if (!Data
->AttrLoc
.isInvalid())
738 Diag(Data
->AttrLoc
, DL_Note
, ET
, "%0 specified here")
739 << (IsAttr
? "nonnull attribute" : "_Nonnull type annotation");
742 void __ubsan::__ubsan_handle_nonnull_arg(NonNullArgData
*Data
) {
743 GET_REPORT_OPTIONS(false);
744 handleNonNullArg(Data
, Opts
, true);
747 void __ubsan::__ubsan_handle_nonnull_arg_abort(NonNullArgData
*Data
) {
748 GET_REPORT_OPTIONS(true);
749 handleNonNullArg(Data
, Opts
, true);
753 void __ubsan::__ubsan_handle_nullability_arg(NonNullArgData
*Data
) {
754 GET_REPORT_OPTIONS(false);
755 handleNonNullArg(Data
, Opts
, false);
758 void __ubsan::__ubsan_handle_nullability_arg_abort(NonNullArgData
*Data
) {
759 GET_REPORT_OPTIONS(true);
760 handleNonNullArg(Data
, Opts
, false);
764 static void handlePointerOverflowImpl(PointerOverflowData
*Data
,
767 ReportOptions Opts
) {
768 SourceLocation Loc
= Data
->Loc
.acquire();
771 if (Base
== 0 && Result
== 0)
772 ET
= ErrorType::NullptrWithOffset
;
773 else if (Base
== 0 && Result
!= 0)
774 ET
= ErrorType::NullptrWithNonZeroOffset
;
775 else if (Base
!= 0 && Result
== 0)
776 ET
= ErrorType::NullptrAfterNonZeroOffset
;
778 ET
= ErrorType::PointerOverflow
;
780 if (ignoreReport(Loc
, Opts
, ET
))
783 ScopedReport
R(Opts
, Loc
, ET
);
785 if (ET
== ErrorType::NullptrWithOffset
) {
786 Diag(Loc
, DL_Error
, ET
, "applying zero offset to null pointer");
787 } else if (ET
== ErrorType::NullptrWithNonZeroOffset
) {
788 Diag(Loc
, DL_Error
, ET
, "applying non-zero offset %0 to null pointer")
790 } else if (ET
== ErrorType::NullptrAfterNonZeroOffset
) {
793 "applying non-zero offset to non-null pointer %0 produced null pointer")
795 } else if ((sptr(Base
) >= 0) == (sptr(Result
) >= 0)) {
797 Diag(Loc
, DL_Error
, ET
,
798 "addition of unsigned offset to %0 overflowed to %1")
799 << (void *)Base
<< (void *)Result
;
801 Diag(Loc
, DL_Error
, ET
,
802 "subtraction of unsigned offset from %0 overflowed to %1")
803 << (void *)Base
<< (void *)Result
;
805 Diag(Loc
, DL_Error
, ET
,
806 "pointer index expression with base %0 overflowed to %1")
807 << (void *)Base
<< (void *)Result
;
811 void __ubsan::__ubsan_handle_pointer_overflow(PointerOverflowData
*Data
,
813 ValueHandle Result
) {
814 GET_REPORT_OPTIONS(false);
815 handlePointerOverflowImpl(Data
, Base
, Result
, Opts
);
818 void __ubsan::__ubsan_handle_pointer_overflow_abort(PointerOverflowData
*Data
,
820 ValueHandle Result
) {
821 GET_REPORT_OPTIONS(true);
822 handlePointerOverflowImpl(Data
, Base
, Result
, Opts
);
826 static void handleCFIBadIcall(CFICheckFailData
*Data
, ValueHandle Function
,
827 ReportOptions Opts
) {
828 if (Data
->CheckKind
!= CFITCK_ICall
&& Data
->CheckKind
!= CFITCK_NVMFCall
)
831 SourceLocation Loc
= Data
->Loc
.acquire();
832 ErrorType ET
= ErrorType::CFIBadType
;
834 if (ignoreReport(Loc
, Opts
, ET
))
837 ScopedReport
R(Opts
, Loc
, ET
);
839 const char *CheckKindStr
= Data
->CheckKind
== CFITCK_NVMFCall
840 ? "non-virtual pointer to member function call"
841 : "indirect function call";
842 Diag(Loc
, DL_Error
, ET
,
843 "control flow integrity check for type %0 failed during %1")
844 << Data
->Type
<< CheckKindStr
;
846 SymbolizedStackHolder
FLoc(getSymbolizedLocation(Function
));
847 const char *FName
= FLoc
.get()->info
.function
;
850 Diag(FLoc
, DL_Note
, ET
, "%0 defined here") << FName
;
852 // If the failure involved different DSOs for the check location and icall
853 // target, report the DSO names.
854 const char *DstModule
= FLoc
.get()->info
.module
;
856 DstModule
= "(unknown)";
858 const char *SrcModule
= Symbolizer::GetOrInit()->GetModuleNameForPc(Opts
.pc
);
860 SrcModule
= "(unknown)";
862 if (internal_strcmp(SrcModule
, DstModule
))
863 Diag(Loc
, DL_Note
, ET
,
864 "check failed in %0, destination function located in %1")
865 << SrcModule
<< DstModule
;
870 #ifdef UBSAN_CAN_USE_CXXABI
874 extern "C" void __ubsan_handle_cfi_bad_type_default(CFICheckFailData
*Data
,
877 ReportOptions Opts
) {
881 WIN_WEAK_ALIAS(__ubsan_handle_cfi_bad_type
, __ubsan_handle_cfi_bad_type_default
)
883 SANITIZER_WEAK_ATTRIBUTE
885 void __ubsan_handle_cfi_bad_type(CFICheckFailData
*Data
, ValueHandle Vtable
,
886 bool ValidVtable
, ReportOptions Opts
);
889 void __ubsan_handle_cfi_bad_type(CFICheckFailData
*Data
, ValueHandle Vtable
,
890 bool ValidVtable
, ReportOptions Opts
) {
895 } // namespace __ubsan
897 void __ubsan::__ubsan_handle_cfi_bad_icall(CFIBadIcallData
*CallData
,
898 ValueHandle Function
) {
899 GET_REPORT_OPTIONS(false);
900 CFICheckFailData Data
= {CFITCK_ICall
, CallData
->Loc
, CallData
->Type
};
901 handleCFIBadIcall(&Data
, Function
, Opts
);
904 void __ubsan::__ubsan_handle_cfi_bad_icall_abort(CFIBadIcallData
*CallData
,
905 ValueHandle Function
) {
906 GET_REPORT_OPTIONS(true);
907 CFICheckFailData Data
= {CFITCK_ICall
, CallData
->Loc
, CallData
->Type
};
908 handleCFIBadIcall(&Data
, Function
, Opts
);
912 void __ubsan::__ubsan_handle_cfi_check_fail(CFICheckFailData
*Data
,
915 GET_REPORT_OPTIONS(false);
916 if (Data
->CheckKind
== CFITCK_ICall
|| Data
->CheckKind
== CFITCK_NVMFCall
)
917 handleCFIBadIcall(Data
, Value
, Opts
);
919 __ubsan_handle_cfi_bad_type(Data
, Value
, ValidVtable
, Opts
);
922 void __ubsan::__ubsan_handle_cfi_check_fail_abort(CFICheckFailData
*Data
,
925 GET_REPORT_OPTIONS(true);
926 if (Data
->CheckKind
== CFITCK_ICall
|| Data
->CheckKind
== CFITCK_NVMFCall
)
927 handleCFIBadIcall(Data
, Value
, Opts
);
929 __ubsan_handle_cfi_bad_type(Data
, Value
, ValidVtable
, Opts
);
933 #endif // CAN_SANITIZE_UB