blob: a502a2392f93e82b891b5f94f87d6828b2ac1c0f [file] [log] [blame]
Yabin Cui60a0ea92015-07-22 20:30:43 -07001/*
2 * Copyright (C) 2015 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#ifndef SIMPLE_PERF_THREAD_TREE_H_
18#define SIMPLE_PERF_THREAD_TREE_H_
19
Yabin Cui60a0ea92015-07-22 20:30:43 -070020#include <stdint.h>
Yabin Cuic8485602015-08-20 15:04:39 -070021
22#include <limits>
Yabin Cui9d2ebcf2018-05-30 15:50:21 -070023#include <map>
Yabin Cuic8485602015-08-20 15:04:39 -070024#include <memory>
Yabin Cui9d2ebcf2018-05-30 15:50:21 -070025#include <unordered_map>
Yabin Cuic8485602015-08-20 15:04:39 -070026
Yabin Cui60a0ea92015-07-22 20:30:43 -070027#include "dso.h"
Yabin Cui767dd172016-06-02 21:02:43 -070028
Yabin Cuifaa7b922021-01-11 17:35:57 -080029namespace simpleperf {
30
Yabin Cui767dd172016-06-02 21:02:43 -070031struct Record;
Yabin Cui60a0ea92015-07-22 20:30:43 -070032
Yabin Cui003b2452016-09-29 15:32:45 -070033constexpr char DEFAULT_KERNEL_MMAP_NAME[] = "[kernel.kallsyms]";
Tomislav Novakf8c8bcb2024-07-12 10:16:06 -070034constexpr char DEFAULT_KERNEL_BPF_MMAP_NAME[] = "[bpf]";
Yabin Cui003b2452016-09-29 15:32:45 -070035constexpr char DEFAULT_EXECNAME_FOR_THREAD_MMAP[] = "//anon";
36
Yabin Cuicdc11a32018-03-20 15:29:03 -070037namespace map_flags {
38constexpr uint32_t PROT_JIT_SYMFILE_MAP = 0x4000;
39} // namespace map_flags
40
Yabin Cui60a0ea92015-07-22 20:30:43 -070041struct MapEntry {
42 uint64_t start_addr;
43 uint64_t len;
44 uint64_t pgoff;
Yabin Cuic8485602015-08-20 15:04:39 -070045 Dso* dso;
Yabin Cuib4212972016-05-25 14:08:05 -070046 bool in_kernel;
Yabin Cuicdc11a32018-03-20 15:29:03 -070047 uint32_t flags;
48
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +020049 MapEntry(uint64_t start_addr, uint64_t len, uint64_t pgoff, Dso* dso, bool in_kernel,
50 uint32_t flags = 0)
Yabin Cui9970a232016-06-29 12:18:11 -070051 : start_addr(start_addr),
52 len(len),
53 pgoff(pgoff),
Yabin Cui9970a232016-06-29 12:18:11 -070054 dso(dso),
Yabin Cuicdc11a32018-03-20 15:29:03 -070055 in_kernel(in_kernel),
56 flags(flags) {}
Yabin Cui9970a232016-06-29 12:18:11 -070057 MapEntry() {}
Yabin Cui547c60e2015-10-12 16:56:05 -070058
Yabin Cui9970a232016-06-29 12:18:11 -070059 uint64_t get_end_addr() const { return start_addr + len; }
Yabin Cui418ba0d2020-03-24 11:53:39 -070060
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +020061 uint64_t Contains(uint64_t addr) const { return addr >= start_addr && addr < get_end_addr(); }
Yabin Cui418ba0d2020-03-24 11:53:39 -070062
63 uint64_t GetVaddrInFile(uint64_t addr) const {
64 if (Contains(addr)) {
65 return dso->IpToVaddrInFile(addr, start_addr, pgoff);
66 }
67 return 0;
68 }
Yabin Cui60a0ea92015-07-22 20:30:43 -070069};
70
Christopher Ferris15933b62018-02-22 19:06:42 -080071struct MapSet {
Yabin Cui9d2ebcf2018-05-30 15:50:21 -070072 std::map<uint64_t, const MapEntry*> maps; // Map from start_addr to a MapEntry.
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +020073 uint64_t version = 0u; // incremented each time changing maps
Yabin Cui418ba0d2020-03-24 11:53:39 -070074
75 const MapEntry* FindMapByAddr(uint64_t addr) const;
Christopher Ferris15933b62018-02-22 19:06:42 -080076};
Yabin Cuiaa0dd192016-12-15 11:24:03 -080077
Yabin Cui60a0ea92015-07-22 20:30:43 -070078struct ThreadEntry {
79 int pid;
80 int tid;
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +020081 const char* comm; // It always refers to the latest comm.
Yabin Cui847f3fd2019-05-02 12:58:05 -070082 std::shared_ptr<MapSet> maps; // maps is shared by threads in the same process.
Yabin Cui60a0ea92015-07-22 20:30:43 -070083};
84
Yabin Cui8d005de2020-10-21 13:48:53 -070085struct FileFeature;
86
Yabin Cui767dd172016-06-02 21:02:43 -070087// ThreadTree contains thread information (in ThreadEntry) and mmap information
88// (in MapEntry) of the monitored threads. It also has interface to access
89// symbols in executable binaries mapped in the monitored threads.
Yabin Cui60a0ea92015-07-22 20:30:43 -070090class ThreadTree {
91 public:
Yabin Cui9970a232016-06-29 12:18:11 -070092 ThreadTree()
Yabin Cui15475e62016-07-14 13:26:19 -070093 : show_ip_for_unknown_symbol_(false),
Yabin Cui71b533b2016-07-21 12:29:47 -070094 show_mark_for_unknown_symbol_(false),
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +020095 unknown_symbol_("unknown", 0, std::numeric_limits<unsigned long long>::max()) {
Yabin Cuic36ea8b2018-04-16 18:21:40 -070096 unknown_dso_ = Dso::CreateDso(DSO_UNKNOWN_FILE, "unknown");
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +020097 unknown_map_ =
98 MapEntry(0, std::numeric_limits<unsigned long long>::max(), 0, unknown_dso_.get(), false);
Yabin Cuia447c0d2016-08-26 11:35:28 -070099 // We can't dump comm for pid 0 from /proc, so add it's name here.
Yabin Cuiaa0dd192016-12-15 11:24:03 -0800100 SetThreadName(0, 0, "swapper");
Yabin Cui60a0ea92015-07-22 20:30:43 -0700101 }
Yabin Cui561bf1b2020-11-03 12:11:07 -0800102 virtual ~ThreadTree() {}
Yabin Cui60a0ea92015-07-22 20:30:43 -0700103
Yabin Cui2b1cfec2023-05-01 09:53:34 -0700104 void DisableThreadExitRecords() { disable_thread_exit_records_ = true; }
Yabin Cuiaa0dd192016-12-15 11:24:03 -0800105 void SetThreadName(int pid, int tid, const std::string& comm);
Yabin Cui70fa40a2022-12-14 15:36:31 -0800106 bool ForkThread(int pid, int tid, int ppid, int ptid);
Yabin Cuia89a3742021-02-11 13:14:54 -0800107 virtual ThreadEntry* FindThread(int tid) const;
Yabin Cui60a0ea92015-07-22 20:30:43 -0700108 ThreadEntry* FindThreadOrNew(int pid, int tid);
Yabin Cui847f3fd2019-05-02 12:58:05 -0700109 void ExitThread(int pid, int tid);
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +0200110 void AddKernelMap(uint64_t start_addr, uint64_t len, uint64_t pgoff, const std::string& filename);
Yabin Cui418ba0d2020-03-24 11:53:39 -0700111 const MapSet& GetKernelMaps() { return kernel_maps_; }
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +0200112 void AddThreadMap(int pid, int tid, uint64_t start_addr, uint64_t len, uint64_t pgoff,
113 const std::string& filename, uint32_t flags = 0);
Evgeny Eltsin91dbae02020-08-27 15:46:09 +0200114
115 // Add process symbols that do not correspond to any real dso.
116 // For example, these might be symbols generated by a JIT.
117 void AddSymbolsForProcess(int pid, std::vector<Symbol>* symbols);
118
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +0200119 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip, bool in_kernel);
Yabin Cuib64a8632016-05-24 18:23:33 -0700120 // Find map for an ip address when we don't know whether it is in kernel.
121 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip);
Thiébaud Weksteen4848ee02020-10-23 16:06:59 +0200122 const Symbol* FindSymbol(const MapEntry* map, uint64_t ip, uint64_t* pvaddr_in_file,
123 Dso** pdso = nullptr);
Yabin Cui6965d422016-06-15 11:41:42 -0700124 const Symbol* FindKernelSymbol(uint64_t ip);
Yabin Cui98c75842017-04-28 13:43:08 -0700125 bool IsUnknownDso(const Dso* dso) const { return dso == unknown_dso_.get(); }
Yabin Cuidd9c9482016-07-11 16:27:52 -0700126 const Symbol* UnknownSymbol() const { return &unknown_symbol_; }
Yabin Cui60a0ea92015-07-22 20:30:43 -0700127
Yabin Cui15475e62016-07-14 13:26:19 -0700128 void ShowIpForUnknownSymbol() { show_ip_for_unknown_symbol_ = true; }
Yabin Cui71b533b2016-07-21 12:29:47 -0700129 void ShowMarkForUnknownSymbol() {
130 show_mark_for_unknown_symbol_ = true;
131 unknown_symbol_ = Symbol("*unknown", 0, ULLONG_MAX);
132 }
Yabin Cui767dd172016-06-02 21:02:43 -0700133 // Clear thread and map information, but keep loaded dso information. It saves
134 // the time to reload dso information.
135 void ClearThreadAndMap();
Yabin Cui90a547e2022-12-07 16:29:13 -0800136 bool AddDsoInfo(FileFeature& file);
Yabin Cui516a87c2018-03-26 17:34:00 -0700137 void AddDexFileOffset(const std::string& file_path, uint64_t dex_file_offset);
Yabin Cuic5b4a312016-10-24 13:38:38 -0700138
Yabin Cui767dd172016-06-02 21:02:43 -0700139 // Update thread tree with information provided by record.
140 void Update(const Record& record);
Yabin Cuib7f481f2015-10-23 19:48:42 -0700141
Yabin Cui78fddd12016-10-24 14:09:26 -0700142 std::vector<Dso*> GetAllDsos() const;
Yabin Cui9ce72af2021-06-17 11:38:25 -0700143 Dso* FindUserDsoOrNew(const std::string& filename, uint64_t start_addr = 0,
144 DsoType dso_type = DSO_ELF_FILE);
Yabin Cui78fddd12016-10-24 14:09:26 -0700145
Yabin Cui60a0ea92015-07-22 20:30:43 -0700146 private:
Yabin Cuiaa0dd192016-12-15 11:24:03 -0800147 ThreadEntry* CreateThread(int pid, int tid);
Yabin Cuif3da1ed2020-11-25 15:37:38 -0800148 Dso* FindKernelDsoOrNew();
149 Dso* FindKernelModuleDsoOrNew(const std::string& filename, uint64_t memory_start,
150 uint64_t memory_end);
Yabin Cui9ce72af2021-06-17 11:38:25 -0700151
Yabin Cui9d2ebcf2018-05-30 15:50:21 -0700152 const MapEntry* AllocateMap(const MapEntry& entry);
153 void InsertMap(MapSet& maps, const MapEntry& entry);
Yabin Cui60a0ea92015-07-22 20:30:43 -0700154
Evgeny Eltsin91dbae02020-08-27 15:46:09 +0200155 // Add thread maps to cover symbols in dso.
156 void AddThreadMapsForDsoSymbols(ThreadEntry* thread, Dso* dso);
157
Yabin Cui60a0ea92015-07-22 20:30:43 -0700158 std::unordered_map<int, std::unique_ptr<ThreadEntry>> thread_tree_;
159 std::vector<std::unique_ptr<std::string>> thread_comm_storage_;
160
Yabin Cuiaa0dd192016-12-15 11:24:03 -0800161 MapSet kernel_maps_;
Yabin Cui60a0ea92015-07-22 20:30:43 -0700162 std::vector<std::unique_ptr<MapEntry>> map_storage_;
163 MapEntry unknown_map_;
164
Yabin Cuic8485602015-08-20 15:04:39 -0700165 std::unique_ptr<Dso> kernel_dso_;
166 std::unordered_map<std::string, std::unique_ptr<Dso>> module_dso_tree_;
167 std::unordered_map<std::string, std::unique_ptr<Dso>> user_dso_tree_;
168 std::unique_ptr<Dso> unknown_dso_;
Yabin Cui15475e62016-07-14 13:26:19 -0700169 bool show_ip_for_unknown_symbol_;
Yabin Cui71b533b2016-07-21 12:29:47 -0700170 bool show_mark_for_unknown_symbol_;
Yabin Cuic8485602015-08-20 15:04:39 -0700171 Symbol unknown_symbol_;
Yabin Cui2b1cfec2023-05-01 09:53:34 -0700172 bool disable_thread_exit_records_ = false;
Yabin Cui60a0ea92015-07-22 20:30:43 -0700173};
174
Yabin Cui040f7b42016-04-13 21:28:54 -0700175} // namespace simpleperf
176
Yabin Cui60a0ea92015-07-22 20:30:43 -0700177#endif // SIMPLE_PERF_THREAD_TREE_H_