[compiler-rt] r277458 - [tsan] Fix behavior of realloc(nullptr, 0) on Darwin

Kuba Brecka via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 2 07:22:12 PDT 2016


Author: kuba.brecka
Date: Tue Aug  2 09:22:12 2016
New Revision: 277458

URL: http://llvm.org/viewvc/llvm-project?rev=277458&view=rev
Log:
[tsan] Fix behavior of realloc(nullptr, 0) on Darwin

On Darwin, there are some apps that rely on realloc(nullptr, 0) returning a valid pointer. TSan currently returns nullptr in this case, let's fix it to avoid breaking binary compatibility.

Differential Revision: https://reviews.llvm.org/D22800


Added:
    compiler-rt/trunk/test/tsan/Darwin/realloc-zero.cc
Modified:
    compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc?rev=277458&r1=277457&r2=277458&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc Tue Aug  2 09:22:12 2016
@@ -195,20 +195,16 @@ void OnUserFree(ThreadState *thr, uptr p
 }
 
 void *user_realloc(ThreadState *thr, uptr pc, void *p, uptr sz) {
-  void *p2 = 0;
   // FIXME: Handle "shrinking" more efficiently,
   // it seems that some software actually does this.
-  if (sz) {
-    p2 = user_alloc(thr, pc, sz);
-    if (p2 == 0)
-      return 0;
-    if (p) {
-      uptr oldsz = user_alloc_usable_size(p);
-      internal_memcpy(p2, p, min(oldsz, sz));
-    }
-  }
-  if (p)
+  void *p2 = user_alloc(thr, pc, sz);
+  if (p2 == 0)
+    return 0;
+  if (p) {
+    uptr oldsz = user_alloc_usable_size(p);
+    internal_memcpy(p2, p, min(oldsz, sz));
     user_free(thr, pc, p);
+  }
   return p2;
 }
 

Added: compiler-rt/trunk/test/tsan/Darwin/realloc-zero.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/Darwin/realloc-zero.cc?rev=277458&view=auto
==============================================================================
--- compiler-rt/trunk/test/tsan/Darwin/realloc-zero.cc (added)
+++ compiler-rt/trunk/test/tsan/Darwin/realloc-zero.cc Tue Aug  2 09:22:12 2016
@@ -0,0 +1,20 @@
+// Test that realloc(nullptr, 0) return a non-NULL pointer.
+
+// RUN: %clang_tsan %s -o %t
+// RUN: %run %t 2>&1 | FileCheck %s
+
+#include <malloc/malloc.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/mman.h>
+
+int main() {
+  void *p = realloc(nullptr, 0);
+  if (!p) {
+    abort();
+  }
+  fprintf(stderr, "Okay.\n");
+  return 0;
+}
+
+// CHECK: Okay.




More information about the llvm-commits mailing list