| /* |
| * Copyright (C) 2024 The Android Open Source Project |
| * |
| * 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 "src/trace_redaction/redact_task_newtask.h" |
| #include "perfetto/protozero/scattered_heap_buffer.h" |
| #include "test/gtest_and_gmock.h" |
| |
| #include "protos/perfetto/trace/ftrace/ftrace_event.gen.h" |
| #include "protos/perfetto/trace/ftrace/task.gen.h" |
| #include "protos/perfetto/trace/ftrace/task.pbzero.h" |
| |
| namespace perfetto::trace_redaction { |
| |
| namespace { |
| constexpr uint64_t kUidA = 1; |
| constexpr uint64_t kUidB = 2; |
| |
| constexpr int32_t kNoParent = 10; |
| constexpr int32_t kPidA = 11; |
| constexpr int32_t kPidB = 12; |
| |
| constexpr std::string_view kCommA = "comm-a"; |
| |
| } // namespace |
| |
| // Tests which nested messages and fields are removed. |
| class RedactTaskNewTaskTest : public testing::Test { |
| protected: |
| void SetUp() override { |
| timeline_ = std::make_unique<ProcessThreadTimeline>(); |
| timeline_->Append( |
| ProcessThreadTimeline::Event::Open(0, kPidA, kNoParent, kUidA)); |
| timeline_->Append( |
| ProcessThreadTimeline::Event::Open(0, kPidB, kNoParent, kUidB)); |
| timeline_->Sort(); |
| |
| // This test breaks the rules for task_newtask and the timeline. The |
| // timeline will report the task existing before the new task event. This |
| // should not happen in the field, but it makes the test more robust. |
| protozero::HeapBuffered<protos::pbzero::FtraceEvent> event; |
| event->set_timestamp(123456789); |
| event->set_pid(kPidA); |
| |
| auto* new_task = event->set_task_newtask(); |
| new_task->set_comm(kCommA.data(), kCommA.size()); |
| new_task->set_pid(kPidA); |
| |
| event_string_ = event.SerializeAsString(); |
| } |
| |
| const std::string& event_string() const { return event_string_; } |
| |
| std::unique_ptr<ProcessThreadTimeline> timeline() { |
| return std::move(timeline_); |
| } |
| |
| private: |
| std::string event_string_; |
| |
| std::unique_ptr<ProcessThreadTimeline> timeline_; |
| }; |
| |
| TEST_F(RedactTaskNewTaskTest, RejectMissingPackageUid) { |
| RedactTaskNewTask redact; |
| |
| Context context; |
| context.timeline = std::make_unique<ProcessThreadTimeline>(); |
| |
| protos::pbzero::FtraceEvent::Decoder event_decoder(event_string()); |
| protozero::HeapBuffered<protos::pbzero::FtraceEvent> event_message; |
| |
| auto result = |
| redact.Redact(context, event_decoder, event_decoder.task_newtask(), |
| event_message.get()); |
| ASSERT_FALSE(result.ok()); |
| } |
| |
| TEST_F(RedactTaskNewTaskTest, RejectMissingTimeline) { |
| RedactTaskNewTask redact; |
| |
| Context context; |
| context.package_uid = kUidA; |
| |
| protos::pbzero::FtraceEvent::Decoder event_decoder(event_string()); |
| protozero::HeapBuffered<protos::pbzero::FtraceEvent> event_message; |
| |
| auto result = |
| redact.Redact(context, event_decoder, event_decoder.task_newtask(), |
| event_message.get()); |
| ASSERT_FALSE(result.ok()); |
| } |
| |
| TEST_F(RedactTaskNewTaskTest, PidInPackageKeepsComm) { |
| RedactTaskNewTask redact; |
| |
| // Because Uid A is the target, when Pid A starts (new task event), it should |
| // keep its comm value. |
| Context context; |
| context.package_uid = kUidA; |
| context.timeline = timeline(); |
| |
| protos::pbzero::FtraceEvent::Decoder event_decoder(event_string()); |
| protozero::HeapBuffered<protos::pbzero::FtraceEvent> event_message; |
| |
| auto result = |
| redact.Redact(context, event_decoder, event_decoder.task_newtask(), |
| event_message.get()); |
| ASSERT_TRUE(result.ok()); |
| |
| protos::gen::FtraceEvent redacted_event; |
| redacted_event.ParseFromString(event_message.SerializeAsString()); |
| |
| ASSERT_TRUE(redacted_event.has_task_newtask()); |
| ASSERT_TRUE(redacted_event.task_newtask().has_comm()); |
| ASSERT_EQ(redacted_event.task_newtask().comm(), kCommA); |
| } |
| |
| TEST_F(RedactTaskNewTaskTest, PidOutsidePackageLosesComm) { |
| RedactTaskNewTask redact; |
| |
| // Because Uid B is the target, when Pid A starts (new task event), it should |
| // lose its comm value. |
| Context context; |
| context.package_uid = kUidB; |
| context.timeline = timeline(); |
| |
| protos::pbzero::FtraceEvent::Decoder event_decoder(event_string()); |
| protozero::HeapBuffered<protos::pbzero::FtraceEvent> event_message; |
| |
| auto result = |
| redact.Redact(context, event_decoder, event_decoder.task_newtask(), |
| event_message.get()); |
| ASSERT_TRUE(result.ok()); |
| |
| protos::gen::FtraceEvent redacted_event; |
| redacted_event.ParseFromString(event_message.SerializeAsString()); |
| |
| ASSERT_TRUE(redacted_event.has_task_newtask()); |
| ASSERT_TRUE(redacted_event.task_newtask().has_comm()); |
| ASSERT_TRUE(redacted_event.task_newtask().comm().empty()); |
| } |
| |
| } // namespace perfetto::trace_redaction |