diff options
author | Kevin Krakauer <krakauer@google.com> | 2019-04-26 11:08:37 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-04-26 11:09:55 -0700 |
commit | 5f13338d30fb59241cf7f1aa6374c54c69677314 (patch) | |
tree | f56328cb60ebe16a337a555c381d87db8c287442 /test/syscalls | |
parent | f4d34b420bd30b9c3725f9247c9145808aab0ffb (diff) |
Fix reference counting bug in /proc/PID/fdinfo/.
PiperOrigin-RevId: 245452217
Change-Id: I7164d8f57fe34c17e601079eb9410a6d95af1869
Diffstat (limited to 'test/syscalls')
-rw-r--r-- | test/syscalls/linux/pipe.cc | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/test/syscalls/linux/pipe.cc b/test/syscalls/linux/pipe.cc index 4731157e8..c49ec9f09 100644 --- a/test/syscalls/linux/pipe.cc +++ b/test/syscalls/linux/pipe.cc @@ -455,24 +455,26 @@ TEST_F(PipeTest, LargeFile) { EXPECT_EQ(rflags, 0); } -// Test that accessing /proc/<PID>/fd/<FD> correctly decrements the refcount of -// that file descriptor. +// Test that accesses of /proc/<PID>/fd/<FD> and /proc/<PID>/fdinfo/<FD> +// correctly decrement the refcount of that file descriptor. TEST_F(PipeTest, ProcFDReleasesFile) { - int fds[2]; - ASSERT_THAT(pipe(fds), SyscallSucceeds()); - FileDescriptor rfd(fds[0]); - FileDescriptor wfd(fds[1]); - - // Stat the pipe FD, which shouldn't alter the refcount of the write end of - // the pipe. - struct stat wst; - ASSERT_THAT(lstat(absl::StrCat("/proc/self/fd/", wfd.get()).c_str(), &wst), - SyscallSucceeds()); - - // Close the write end of the pipe and ensure that read indicates EOF. - wfd.reset(); - char buf; - ASSERT_THAT(read(rfd.get(), &buf, 1), SyscallSucceedsWithValue(0)); + std::vector<std::string> paths = {"/proc/self/fd/", "/proc/self/fdinfo/"}; + for (const std::string& path : paths) { + int fds[2]; + ASSERT_THAT(pipe(fds), SyscallSucceeds()); + FileDescriptor rfd(fds[0]); + FileDescriptor wfd(fds[1]); + + // Stat the pipe FD, which shouldn't alter the refcount of the write end of + // the pipe. + struct stat wst; + ASSERT_THAT(lstat(absl::StrCat(path.c_str(), wfd.get()).c_str(), &wst), + SyscallSucceeds()); + // Close the write end of the pipe and ensure that read indicates EOF. + wfd.reset(); + char buf; + ASSERT_THAT(read(rfd.get(), &buf, 1), SyscallSucceedsWithValue(0)); + } } } // namespace |