public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-5490] libsanitizer: Readd __ubsan_handle_function_type_mismatch_v1{, _abort}
@ 2023-11-15 11:50 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2023-11-15 11:50 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:95710d75ec8b12a4981a71de7de270fb1ade8fd2

commit r14-5490-g95710d75ec8b12a4981a71de7de270fb1ade8fd2
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Wed Nov 15 12:49:10 2023 +0100

    libsanitizer: Readd __ubsan_handle_function_type_mismatch_v1{,_abort}
    
    So that we don't have to bump libubsan.so.1 SONAME, the following patch
    reverts part of the changes which removed two handlers.  While we don't
    actually use them from GCC, we shouldn't remove supported entrypoints
    unless SONAME is changed (removal of __interceptor_* or ___interceptor_*
    is fine).  This is the only removal, other libraries just added some
    symbols.
    
    2023-11-15  Jakub Jelinek  <jakub@redhat.com>
    
            * ubsan/ubsan_handlers_cxx.h (FunctionTypeMismatchData): Forward
            declare.
            (__ubsan_handle_function_type_mismatch_v1,
            __ubsan_handle_function_type_mismatch_v1_abort): Declare.
            * ubsan/ubsan_handlers_cxx.cpp (handleFunctionTypeMismatch,
            __ubsan_handle_function_type_mismatch_v1,
            __ubsan_handle_function_type_mismatch_v1_abort): New functions readded
            for backwards compatibility from older ubsan.
            * ubsan/ubsan_interface.inc (__ubsan_handle_function_type_mismatch_v1,
            __ubsan_handle_function_type_mismatch_v1_abort): Readd.

Diff:
---
 libsanitizer/ubsan/ubsan_handlers_cxx.cpp | 44 +++++++++++++++++++++++++++++++
 libsanitizer/ubsan/ubsan_handlers_cxx.h   | 13 +++++++++
 libsanitizer/ubsan/ubsan_interface.inc    |  2 ++
 3 files changed, 59 insertions(+)

diff --git a/libsanitizer/ubsan/ubsan_handlers_cxx.cpp b/libsanitizer/ubsan/ubsan_handlers_cxx.cpp
index 206a0bb485a..0317a3d1428 100644
--- a/libsanitizer/ubsan/ubsan_handlers_cxx.cpp
+++ b/libsanitizer/ubsan/ubsan_handlers_cxx.cpp
@@ -156,6 +156,50 @@ void __ubsan_handle_cfi_bad_type(CFICheckFailData *Data, ValueHandle Vtable,
     Diag(Loc, DL_Note, ET, "check failed in %0, vtable located in %1")
         << SrcModule << DstModule;
 }
+
+static bool handleFunctionTypeMismatch(FunctionTypeMismatchData *Data,
+                                       ValueHandle Function,
+                                       ValueHandle calleeRTTI,
+                                       ValueHandle fnRTTI, ReportOptions Opts) {
+  if (checkTypeInfoEquality(reinterpret_cast<void *>(calleeRTTI),
+                            reinterpret_cast<void *>(fnRTTI)))
+    return false;
+
+  SourceLocation CallLoc = Data->Loc.acquire();
+  ErrorType ET = ErrorType::FunctionTypeMismatch;
+
+  if (ignoreReport(CallLoc, Opts, ET))
+    return true;
+
+  ScopedReport R(Opts, CallLoc, ET);
+
+  SymbolizedStackHolder FLoc(getSymbolizedLocation(Function));
+  const char *FName = FLoc.get()->info.function;
+  if (!FName)
+    FName = "(unknown)";
+
+  Diag(CallLoc, DL_Error, ET,
+       "call to function %0 through pointer to incorrect function type %1")
+      << FName << Data->Type;
+  Diag(FLoc, DL_Note, ET, "%0 defined here") << FName;
+  return true;
+}
+
+void __ubsan_handle_function_type_mismatch_v1(FunctionTypeMismatchData *Data,
+                                              ValueHandle Function,
+                                              ValueHandle calleeRTTI,
+                                              ValueHandle fnRTTI) {
+  GET_REPORT_OPTIONS(false);
+  handleFunctionTypeMismatch(Data, Function, calleeRTTI, fnRTTI, Opts);
+}
+
+void __ubsan_handle_function_type_mismatch_v1_abort(
+    FunctionTypeMismatchData *Data, ValueHandle Function,
+    ValueHandle calleeRTTI, ValueHandle fnRTTI) {
+  GET_REPORT_OPTIONS(true);
+  if (handleFunctionTypeMismatch(Data, Function, calleeRTTI, fnRTTI, Opts))
+    Die();
+}
 }  // namespace __ubsan
 
 #endif // CAN_SANITIZE_UB
diff --git a/libsanitizer/ubsan/ubsan_handlers_cxx.h b/libsanitizer/ubsan/ubsan_handlers_cxx.h
index 71695cbdc09..f6f24e8d63c 100644
--- a/libsanitizer/ubsan/ubsan_handlers_cxx.h
+++ b/libsanitizer/ubsan/ubsan_handlers_cxx.h
@@ -33,6 +33,19 @@ void __ubsan_handle_dynamic_type_cache_miss(
 extern "C" SANITIZER_INTERFACE_ATTRIBUTE
 void __ubsan_handle_dynamic_type_cache_miss_abort(
   DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash);
+
+struct FunctionTypeMismatchData;
+
+extern "C" SANITIZER_INTERFACE_ATTRIBUTE void
+__ubsan_handle_function_type_mismatch_v1(FunctionTypeMismatchData *Data,
+                                         ValueHandle Val,
+                                         ValueHandle calleeRTTI,
+                                         ValueHandle fnRTTI);
+extern "C" SANITIZER_INTERFACE_ATTRIBUTE void
+__ubsan_handle_function_type_mismatch_v1_abort(FunctionTypeMismatchData *Data,
+                                               ValueHandle Val,
+                                               ValueHandle calleeRTTI,
+                                               ValueHandle fnRTTI);
 }
 
 #endif // UBSAN_HANDLERS_CXX_H
diff --git a/libsanitizer/ubsan/ubsan_interface.inc b/libsanitizer/ubsan/ubsan_interface.inc
index cb27feb5d7e..f95f71af3ed 100644
--- a/libsanitizer/ubsan/ubsan_interface.inc
+++ b/libsanitizer/ubsan/ubsan_interface.inc
@@ -21,6 +21,8 @@ INTERFACE_FUNCTION(__ubsan_handle_dynamic_type_cache_miss)
 INTERFACE_FUNCTION(__ubsan_handle_dynamic_type_cache_miss_abort)
 INTERFACE_FUNCTION(__ubsan_handle_float_cast_overflow)
 INTERFACE_FUNCTION(__ubsan_handle_float_cast_overflow_abort)
+INTERFACE_FUNCTION(__ubsan_handle_function_type_mismatch_v1)
+INTERFACE_FUNCTION(__ubsan_handle_function_type_mismatch_v1_abort)
 INTERFACE_FUNCTION(__ubsan_handle_function_type_mismatch)
 INTERFACE_FUNCTION(__ubsan_handle_function_type_mismatch_abort)
 INTERFACE_FUNCTION(__ubsan_handle_implicit_conversion)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-11-15 11:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-15 11:50 [gcc r14-5490] libsanitizer: Readd __ubsan_handle_function_type_mismatch_v1{, _abort} Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).