/* * Copyright (C) 2015 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 "event_type.h" #include #include #include #include #include #include #include #include #include #include #include "environment.h" #include "ETMRecorder.h" #include "event_attr.h" #include "utils.h" using namespace simpleperf; struct EventFormat { EventFormat(const std::string& name, const std::string& attr, int shift) : name(name), attr(attr), shift(shift) { } std::string name; std::string attr; int shift; }; #define EVENT_TYPE_TABLE_ENTRY(name, type, config, description, limited_arch) \ {name, type, config, description, limited_arch}, static const std::vector static_event_type_array = { #include "event_type_table.h" }; static std::string tracepoint_events; static std::set g_event_types; static uint32_t g_etm_event_type; bool SetTracepointEventsFilePath(const std::string& filepath) { if (!android::base::ReadFileToString(filepath, &tracepoint_events)) { PLOG(ERROR) << "Failed to read " << filepath; return false; } return true; } std::string GetTracepointEvents() { std::string result; for (auto& event : GetAllEventTypes()) { if (event.type != PERF_TYPE_TRACEPOINT) { continue; } if (!result.empty()) { result.push_back('\n'); } result += android::base::StringPrintf("%s %" PRIu64, event.name.c_str(), event.config); } return result; } static std::vector GetTracepointEventTypesFromString(const std::string& s) { std::vector result; for (auto& line : android::base::Split(s, "\n")) { std::vector items = android::base::Split(line, " "); CHECK_EQ(items.size(), 2u); std::string event_name = items[0]; uint64_t id; CHECK(android::base::ParseUint(items[1].c_str(), &id)); result.push_back(EventType(event_name, PERF_TYPE_TRACEPOINT, id, "", "")); } return result; } static std::vector GetTracepointEventTypesFromTraceFs() { std::vector result; const char* tracefs_dir = GetTraceFsDir(); if (tracefs_dir == nullptr) { return result; } const std::string tracepoint_dirname = tracefs_dir + std::string("/events"); for (const auto& system_name : GetSubDirs(tracepoint_dirname)) { std::string system_path = tracepoint_dirname + "/" + system_name; for (const auto& event_name : GetSubDirs(system_path)) { std::string id_path = system_path + "/" + event_name + "/id"; std::string id_content; if (!android::base::ReadFileToString(id_path, &id_content)) { continue; } char* endptr; uint64_t id = strtoull(id_content.c_str(), &endptr, 10); if (endptr == id_content.c_str()) { LOG(DEBUG) << "unexpected id '" << id_content << "' in " << id_path; continue; } result.push_back(EventType(system_name + ":" + event_name, PERF_TYPE_TRACEPOINT, id, "", "")); } } return result; } static std::vector GetTracepointEventTypes() { std::vector result; if (!tracepoint_events.empty()) { result = GetTracepointEventTypesFromString(tracepoint_events); } else { result = GetTracepointEventTypesFromTraceFs(); } std::sort(result.begin(), result.end(), [](const EventType& type1, const EventType& type2) { return type1.name < type2.name; }); return result; } static std::vector ParseEventFormats(const std::string& evtdev_path) { std::vector v; std::string formats_dirname = evtdev_path + "/format/"; for (const auto& format_name : GetEntriesInDir(formats_dirname)) { std::string format_path = formats_dirname + format_name; std::string format_content; if (!android::base::ReadFileToString(format_path, &format_content)) { continue; } // format files look like below (currently only 'config' is supported) : // # cat armv8_pmuv3/format/event // config:0-15 int shift; if (sscanf(format_content.c_str(), "config:%d", &shift) != 1) { LOG(DEBUG) << "Invalid or unsupported event format: " << format_content; continue; } v.emplace_back(EventFormat(format_name, "config", shift)); } return v; } static uint64_t MakeEventConfig(const std::string& event_str, std::vector& formats) { uint64_t config = 0; // event files might have multiple terms, but usually have a term like: // # cat armv8_pmuv3/events/cpu_cycles // event=0x011 for (auto& s : android::base::Split(event_str, ",")) { auto pos = s.find('='); if (pos == std::string::npos) continue; auto format = s.substr(0, pos); long val; if (!android::base::ParseInt(android::base::Trim(s.substr(pos+1)), &val)) { LOG(DEBUG) << "Invalid event format '" << s << "'"; continue; } for (auto& f : formats) { if (f.name == format) { if (f.attr != "config") { LOG(DEBUG) << "cannot support other attribute: " << s; return ~0ULL; } config |= val << f.shift; break; } } } return config; } static std::vector GetPmuEventTypes() { std::vector result; const std::string evtsrc_dirname = "/sys/bus/event_source/devices/"; for (const auto& device_name : GetSubDirs(evtsrc_dirname)) { std::string evtdev_path = evtsrc_dirname + device_name; std::string type_path = evtdev_path + "/type"; std::string type_content; if (!android::base::ReadFileToString(type_path, &type_content)) { LOG(DEBUG) << "cannot read event type: " << device_name; continue; } uint64_t type_id = strtoull(type_content.c_str(), NULL, 10); std::vector formats = ParseEventFormats(evtdev_path); std::string events_dirname = evtdev_path + "/events/"; for (const auto& event_name : GetEntriesInDir(events_dirname)) { std::string event_path = events_dirname + event_name; std::string event_content; if (!android::base::ReadFileToString(event_path, &event_content)) { LOG(DEBUG) << "cannot read event content in " << event_name; continue; } uint64_t config = MakeEventConfig(event_content, formats); if (config == ~0ULL) { LOG(DEBUG) << "cannot handle config format in " << event_name; continue; } result.emplace_back(EventType(device_name + "/" + event_name + "/", type_id, config, "", "")); } } return result; } std::vector EventType::GetPmuCpumask() { std::vector empty_result; if (!IsPmuEvent()) return empty_result; std::string pmu = name.substr(0, name.find('/')); std::string cpumask_path = "/sys/bus/event_source/devices/" + pmu + "/cpumask"; std::string cpumask_content; if (!android::base::ReadFileToString(cpumask_path, &cpumask_content)) { LOG(DEBUG) << "cannot read cpumask content in " << pmu; return empty_result; } return GetCpusFromString(cpumask_content); } std::string ScopedEventTypes::BuildString(const std::vector& event_types) { std::string result; for (auto type : event_types) { if (!result.empty()) { result.push_back('\n'); } result += android::base::StringPrintf("%s,%u,%" PRIu64, type->name.c_str(), type->type, type->config); } return result; } ScopedEventTypes::ScopedEventTypes(const std::string& event_type_str) { saved_event_types_ = std::move(g_event_types); saved_etm_event_type_ = g_etm_event_type; g_event_types.clear(); for (auto& s : android::base::Split(event_type_str, "\n")) { std::string name = s.substr(0, s.find(',')); uint32_t type; uint64_t config; sscanf(s.c_str() + name.size(), ",%u,%" PRIu64, &type, &config); if (name == "cs-etm") { g_etm_event_type = type; } g_event_types.emplace(name, type, config, "", ""); } } ScopedEventTypes::~ScopedEventTypes() { g_event_types = std::move(saved_event_types_); g_etm_event_type = saved_etm_event_type_; } const std::set& GetAllEventTypes() { if (g_event_types.empty()) { g_event_types.insert(static_event_type_array.begin(), static_event_type_array.end()); std::vector tracepoint_array = GetTracepointEventTypes(); g_event_types.insert(tracepoint_array.begin(), tracepoint_array.end()); std::vector pmu_array = GetPmuEventTypes(); g_event_types.insert(pmu_array.begin(), pmu_array.end()); #if defined(__linux__) std::unique_ptr etm_type = ETMRecorder::GetInstance().BuildEventType(); if (etm_type) { g_etm_event_type = etm_type->type; g_event_types.emplace(std::move(*etm_type)); } #endif } return g_event_types; } const EventType* FindEventTypeByName(const std::string& name, bool report_error) { const auto& event_types = GetAllEventTypes(); auto it = event_types.find(EventType(name, 0, 0, "", "")); if (it != event_types.end()) { return &*it; } if (!name.empty() && name[0] == 'r') { char* end; uint64_t config = strtoull(&name[1], &end, 16); if (end != &name[1] && *end == '\0') { auto result = g_event_types.emplace(name, PERF_TYPE_RAW, config, "", ""); CHECK(result.second); return &*(result.first); } } if (report_error) { LOG(ERROR) << "Unknown event_type '" << name << "', try `simpleperf list` to list all possible event type names"; } return nullptr; } std::unique_ptr ParseEventType(const std::string& event_type_str) { static std::string modifier_characters = "ukhGHp"; std::unique_ptr event_type_modifier(new EventTypeAndModifier); event_type_modifier->name = event_type_str; std::string event_type_name = event_type_str; std::string modifier; size_t comm_pos = event_type_str.rfind(':'); if (comm_pos != std::string::npos) { bool match_modifier = true; for (size_t i = comm_pos + 1; i < event_type_str.size(); ++i) { char c = event_type_str[i]; if (c != ' ' && modifier_characters.find(c) == std::string::npos) { match_modifier = false; break; } } if (match_modifier) { event_type_name = event_type_str.substr(0, comm_pos); modifier = event_type_str.substr(comm_pos + 1); } } const EventType* event_type = FindEventTypeByName(event_type_name); if (event_type == nullptr) { // Try if the modifier belongs to the event type name, like some tracepoint events. if (!modifier.empty()) { event_type_name = event_type_str; modifier.clear(); event_type = FindEventTypeByName(event_type_name); } if (event_type == nullptr) { return nullptr; } } event_type_modifier->event_type = *event_type; if (modifier.find_first_of("ukh") != std::string::npos) { event_type_modifier->exclude_user = true; event_type_modifier->exclude_kernel = true; event_type_modifier->exclude_hv = true; } if (modifier.find_first_of("GH") != std::string::npos) { event_type_modifier->exclude_guest = true; event_type_modifier->exclude_host = true; } for (auto& c : modifier) { switch (c) { case 'u': event_type_modifier->exclude_user = false; break; case 'k': event_type_modifier->exclude_kernel = false; break; case 'h': event_type_modifier->exclude_hv = false; break; case 'G': event_type_modifier->exclude_guest = false; break; case 'H': event_type_modifier->exclude_host = false; break; case 'p': event_type_modifier->precise_ip++; break; case ' ': break; default: LOG(ERROR) << "Unknown event type modifier '" << c << "'"; } } event_type_modifier->modifier = modifier; return event_type_modifier; } bool IsEtmEventType(uint32_t type) { return g_etm_event_type != 0 && type == g_etm_event_type; }