blob: 13e8408210179766d79329b91ec92fbcc584ef33 [file] [log] [blame]
Yabin Cui26968e62017-01-30 11:34:24 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "InplaceSamplerClient.h"
18
Yabin Cuib92bae82017-02-10 12:07:29 -080019#include <algorithm>
Yabin Cui26968e62017-01-30 11:34:24 -080020
21#include "environment.h"
Yabin Cuib92bae82017-02-10 12:07:29 -080022#include "inplace_sampler_lib.h"
Yabin Cui26968e62017-01-30 11:34:24 -080023#include "utils.h"
24
25static constexpr uint64_t EVENT_ID_FOR_INPLACE_SAMPLER = ULONG_MAX;
26
27std::unique_ptr<InplaceSamplerClient> InplaceSamplerClient::Create(const perf_event_attr& attr,
28 pid_t pid,
29 const std::set<pid_t>& tids) {
30 if (pid == -1) {
31 LOG(ERROR) << "inplace-sampler can't monitor system wide events.";
32 return nullptr;
33 }
34 std::unique_ptr<InplaceSamplerClient> sampler(new InplaceSamplerClient(attr, pid, tids));
35 if (!sampler->ConnectServer()) {
36 return nullptr;
37 }
Yabin Cui26968e62017-01-30 11:34:24 -080038 return sampler;
39}
40
41InplaceSamplerClient::InplaceSamplerClient(const perf_event_attr& attr, pid_t pid,
42 const std::set<pid_t>& tids)
Yabin Cuib92bae82017-02-10 12:07:29 -080043 : attr_(attr), pid_(pid), tids_(tids), got_start_profiling_reply_msg_(false) {
44 if (attr_.freq) {
45 sample_freq_ = attr_.sample_freq;
46 } else {
47 sample_freq_ = std::max(1u, static_cast<uint32_t>(1000000000 / attr_.sample_period));
48 }
Yabin Cui26968e62017-01-30 11:34:24 -080049}
50
51uint64_t InplaceSamplerClient::Id() const {
52 return EVENT_ID_FOR_INPLACE_SAMPLER;
53}
54
55bool InplaceSamplerClient::ConnectServer() {
Yabin Cuib92bae82017-02-10 12:07:29 -080056 std::string server_path = "inplace_sampler_server_" + std::to_string(pid_);
57 // Try to connect server in 1s.
58 uint64_t timeout = GetSystemClock() + 10000000000ull;
59 while (GetSystemClock() < timeout) {
60 conn_ = UnixSocketConnection::Connect(server_path, true);
61 if (conn_ != nullptr) {
62 return true;
63 }
64 usleep(10);
65 }
66 LOG(ERROR) << "Can't find inplace_sampler_server for process " << pid_;
67 return false;
Yabin Cui26968e62017-01-30 11:34:24 -080068}
69
70bool InplaceSamplerClient::StartPolling(IOEventLoop& loop,
71 const std::function<bool(Record*)>& record_callback,
72 const std::function<bool()>& close_callback) {
73 record_callback_ = record_callback;
Yabin Cuib92bae82017-02-10 12:07:29 -080074 CHECK(conn_ != nullptr);
75 auto read_callback = [&](const UnixSocketMessage& msg) {
76 return HandleMessage(msg);
77 };
78 if (!conn_->PrepareForIO(loop, read_callback, close_callback)) {
79 return false;
80 }
81 if (!SendStartProfilingMessage()) {
82 return false;
83 }
84 // If the inplace sampler doesn't reply in 3 seconds, report the error.
85 timeval tv;
86 tv.tv_sec = 3;
87 tv.tv_usec = 0;
88 auto check_reply_callback = [this]() {
89 if (!got_start_profiling_reply_msg_) {
90 LOG(ERROR) << "can't receive START_PROFILING_REPLY from process " << pid_;
Yabin Cui26968e62017-01-30 11:34:24 -080091 return false;
92 }
Yabin Cuib92bae82017-02-10 12:07:29 -080093 return true;
94 };
95 return loop.AddPeriodicEvent(tv, check_reply_callback);
96}
97
98bool InplaceSamplerClient::SendStartProfilingMessage() {
99 std::string options;
100 options += "freq=" + std::to_string(sample_freq_);
101 if (attr_.sample_type & PERF_SAMPLE_CALLCHAIN) {
102 options += " dump_callchain=1";
103 }
104 if (!tids_.empty()) {
105 options += " tids=";
106 bool first = true;
107 for (auto& tid : tids_) {
108 if (first) {
109 first = false;
110 } else {
111 options.push_back(',');
112 }
113 options += std::to_string(tid);
Yabin Cui26968e62017-01-30 11:34:24 -0800114 }
Yabin Cuib92bae82017-02-10 12:07:29 -0800115 }
116 size_t size = sizeof(UnixSocketMessage) + options.size() + 1;
117 std::unique_ptr<char[]> data(new char[size]);
118 UnixSocketMessage* msg = reinterpret_cast<UnixSocketMessage*>(data.get());
119 msg->len = size;
120 msg->type = START_PROFILING;
121 strcpy(msg->data, options.c_str());
122 return conn_->SendMessage(*msg, true);
123}
124
125bool InplaceSamplerClient::StopProfiling(IOEventLoop& loop,
126 const std::function<bool()>& close_callback) {
127 auto read_callback = [&](const UnixSocketMessage& msg) {
128 return HandleMessage(msg);
129 };
130 if (!conn_->PrepareForIO(loop, read_callback, close_callback)) {
131 return false;
132 }
133 // Notify inplace sampler to send buffered data and close the connection.
134 UnixSocketMessage msg;
135 msg.len = sizeof(UnixSocketMessage);
136 msg.type = END_PROFILING;
137 return conn_->SendMessage(msg, true);
138}
139
140bool InplaceSamplerClient::HandleMessage(const UnixSocketMessage& msg) {
141 const char* p = msg.data;
142 if (msg.type == START_PROFILING_REPLY) {
143 got_start_profiling_reply_msg_ = true;
144 if (strcmp(p, "ok") != 0) {
145 LOG(ERROR) << "receive reply from inplace_sampler_server of " << pid_ << ": " << p;
146 return false;
147 }
148 } else if (msg.type == THREAD_INFO) {
149 uint64_t time;
150 uint32_t tid;
151 MoveFromBinaryFormat(time, p);
152 MoveFromBinaryFormat(tid, p);
153 CommRecord r(attr_, pid_, tid, p, Id(), time);
Yabin Cui26968e62017-01-30 11:34:24 -0800154 if (!record_callback_(&r)) {
155 return false;
156 }
Yabin Cuib92bae82017-02-10 12:07:29 -0800157 } else if (msg.type == MAP_INFO) {
158 uint64_t time;
159 uint64_t start;
160 uint64_t len;
161 uint64_t pgoff;
162 MoveFromBinaryFormat(time, p);
163 MoveFromBinaryFormat(start, p);
164 MoveFromBinaryFormat(len, p);
165 MoveFromBinaryFormat(pgoff, p);
166 MmapRecord r(attr_, false, pid_, pid_, start, len, pgoff, p, Id(), time);
167 if (!record_callback_(&r)) {
168 return false;
169 }
170 } else if (msg.type == SAMPLE_INFO) {
171 uint64_t time;
172 uint32_t tid;
173 uint32_t period;
174 uint32_t ip_nr;
175 MoveFromBinaryFormat(time, p);
176 MoveFromBinaryFormat(tid, p);
177 MoveFromBinaryFormat(period, p);
178 MoveFromBinaryFormat(ip_nr, p);
179 std::vector<uint64_t> ips(ip_nr);
180 MoveFromBinaryFormat(ips.data(), ip_nr, p);
181 // Don't know which cpu tid is running on, use cpu 0.
182 SampleRecord r(attr_, Id(), ips[0], pid_, tid, time, 0, period, ips);
183 if (!record_callback_(&r)) {
184 return false;
185 }
186 } else {
187 LOG(ERROR) << "Unexpected msg type: " << msg.type;
188 return false;
189 }
190 return true;
Yabin Cui26968e62017-01-30 11:34:24 -0800191}