crashpad/util/linux/proc_task_reader_test.cc
Peter Boström 1aa478d161 Remove DISALLOW_* macros in crashpad
This change was partially scripted and partially done manually with vim
regex + manually placing the deleted constructors.

The script change looked for destructors in the public: section of a
class, if that existed the deleted constructors would go before the
destructor.

For manual placement I looked for any constructor in the public: section
of the corresponding class. If there wasn't one, then it would ideally
have gone as the first entry except below enums, classes and typedefs.
This may not have been perfect, but is hopefully good enough. Fingers
crossed.

#include "base/macros.h" is removed from files that don't use
ignore_result, which is the only other thing defined in base/macros.h.

Bug: chromium:1010217
Change-Id: I099526255a40b1ac1264904b4ece2f3f503c9418
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3171034
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Peter Boström <pbos@chromium.org>
2021-09-21 15:09:44 +00:00

162 lines
3.9 KiB
C++

// Copyright 2019 The Crashpad Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "util/linux/proc_task_reader.h"
#include "base/strings/stringprintf.h"
#include "gtest/gtest.h"
#include "test/multiprocess_exec.h"
#include "third_party/lss/lss.h"
#include "util/synchronization/semaphore.h"
#include "util/thread/thread.h"
namespace crashpad {
namespace test {
namespace {
bool FindThreadID(pid_t tid, const std::vector<pid_t>& threads) {
for (const auto& thread : threads) {
if (thread == tid) {
return true;
}
}
return false;
}
class ScopedBlockingThread : public Thread {
public:
ScopedBlockingThread() : tid_sem_(0), join_sem_(0), tid_(-1) {}
~ScopedBlockingThread() {
join_sem_.Signal();
Join();
}
pid_t ThreadID() {
tid_sem_.Wait();
return tid_;
}
private:
void ThreadMain() override {
tid_ = sys_gettid();
tid_sem_.Signal();
join_sem_.Wait();
}
Semaphore tid_sem_;
Semaphore join_sem_;
pid_t tid_;
};
TEST(ProcTaskReader, Self) {
std::vector<pid_t> tids;
ASSERT_TRUE(ReadThreadIDs(getpid(), &tids));
EXPECT_TRUE(FindThreadID(getpid(), tids));
EXPECT_TRUE(FindThreadID(sys_gettid(), tids));
ScopedBlockingThread thread1;
thread1.Start();
ScopedBlockingThread thread2;
thread2.Start();
pid_t thread1_tid = thread1.ThreadID();
pid_t thread2_tid = thread2.ThreadID();
tids.clear();
ASSERT_TRUE(ReadThreadIDs(getpid(), &tids));
EXPECT_TRUE(FindThreadID(getpid(), tids));
EXPECT_TRUE(FindThreadID(thread1_tid, tids));
EXPECT_TRUE(FindThreadID(thread2_tid, tids));
}
TEST(ProcTaskReader, BadPID) {
std::vector<pid_t> tids;
EXPECT_FALSE(ReadThreadIDs(-1, &tids));
tids.clear();
EXPECT_FALSE(ReadThreadIDs(0, &tids));
}
CRASHPAD_CHILD_TEST_MAIN(ProcTaskTestChild) {
FileHandle in = StdioFileHandle(StdioStream::kStandardInput);
FileHandle out = StdioFileHandle(StdioStream::kStandardOutput);
pid_t tid = getpid();
CheckedWriteFile(out, &tid, sizeof(tid));
tid = sys_gettid();
CheckedWriteFile(out, &tid, sizeof(tid));
ScopedBlockingThread thread1;
thread1.Start();
ScopedBlockingThread thread2;
thread2.Start();
tid = thread1.ThreadID();
CheckedWriteFile(out, &tid, sizeof(tid));
tid = thread2.ThreadID();
CheckedWriteFile(out, &tid, sizeof(tid));
CheckedReadFileAtEOF(in);
return 0;
}
class ProcTaskTest : public MultiprocessExec {
public:
ProcTaskTest() : MultiprocessExec() {
SetChildTestMainFunction("ProcTaskTestChild");
}
ProcTaskTest(const ProcTaskTest&) = delete;
ProcTaskTest& operator=(const ProcTaskTest&) = delete;
private:
bool ReadIDFromChild(std::vector<pid_t>* threads) {
pid_t tid;
if (!LoggingReadFileExactly(ReadPipeHandle(), &tid, sizeof(tid))) {
return false;
}
threads->push_back(tid);
return true;
}
void MultiprocessParent() override {
std::vector<pid_t> ids_to_find;
for (size_t id_count = 0; id_count < 4; ++id_count) {
ASSERT_TRUE(ReadIDFromChild(&ids_to_find));
}
std::vector<pid_t> threads;
ASSERT_TRUE(ReadThreadIDs(ChildPID(), &threads));
for (size_t index = 0; index < ids_to_find.size(); ++index) {
SCOPED_TRACE(
base::StringPrintf("index %zd, tid %d", index, ids_to_find[index]));
EXPECT_TRUE(FindThreadID(ids_to_find[index], threads));
}
}
};
TEST(ProcTaskReader, ReadChild) {
ProcTaskTest test;
test.Run();
}
} // namespace
} // namespace test
} // namespace crashpad