[compiler-rt] [compiler-rt][rtsan] adding setlinebuf/setbuffer interception. (PR #122018)

David CARLIER via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 8 05:03:45 PST 2025


================
@@ -421,14 +421,36 @@ TEST_F(RtsanFileTest, SetvbufDieWhenRealtime) {
   FILE *f = fopen(GetTemporaryFilePath(), "w");
   EXPECT_THAT(f, Ne(nullptr));
 
-  auto Func = [&f, &buffer, &size]() {
-    int r = setvbuf(f, buffer, _IOFBF, size);
+  auto Func = [f, buffer, size]() {
+    int r = setvbuf(f, (char *)buffer, _IOFBF, size);
     EXPECT_THAT(r, Eq(0));
   };
 
   ExpectRealtimeDeath(Func, "setvbuf");
   ExpectNonRealtimeSurvival(Func);
 }
+
+TEST_F(RtsanFileTest, SetlinebufDieWhenRealtime) {
+  FILE *f = fopen(GetTemporaryFilePath(), "w");
+  EXPECT_THAT(f, Ne(nullptr));
+
+  auto Func = [f]() { setlinebuf(f); };
+
+  ExpectRealtimeDeath(Func, "setlinebuf");
+  ExpectNonRealtimeSurvival(Func);
+}
+
+TEST_F(RtsanFileTest, SetbufferDieWhenRealtime) {
+  char buffer[1024];
+  size_t size = sizeof(buffer);
+  FILE *f = fopen(GetTemporaryFilePath(), "w");
+  EXPECT_THAT(f, Ne(nullptr));
+
+  auto Func = [f, buffer, size]() { setbuffer(f, (char *)buffer, size); };
----------------
devnexen wrote:

e.g. 

```shell
/home/dcarlier/Contribs/llvm-project/compiler-rt/lib/rtsan/tests/rtsan_test_interceptors_posix.cpp:412:31: error: no matching function for call to 'setbuf'
  412 |   auto Func = [f, buffer]() { setbuf(f, buffer); };
      |                               ^~~~~~
/usr/include/stdio.h:334:13: note: candidate function not viable: no known conversion from 'const char[8192]' to 'char *__restrict' for 2nd argument
  334 | extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) __THROW
      |             ^                                  ~~~~~~~~~~~~~~~~~~~~~~
[100%] Generating RtsanNoInstTestObjects.gtest-all.cc.x86_64.
```

https://github.com/llvm/llvm-project/pull/122018


More information about the llvm-commits mailing list