blob: 873ab505ca8071fdf38e2eb8b091e19553f165fc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02002#include "../perf.h"
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03003#include <errno.h>
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02004#include <stdlib.h>
5#include <stdio.h>
6#include <string.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -03007#include <linux/kernel.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -03008#include <linux/zalloc.h>
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -02009#include "session.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020010#include "thread.h"
Adrian Hunter00447cc2014-10-30 16:09:42 +020011#include "thread-stack.h"
Frederic Weisbecker6e086432009-08-18 17:04:03 +020012#include "debug.h"
Hari Bathinif3b36142017-03-08 02:11:43 +053013#include "namespaces.h"
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020014#include "comm.h"
Andi Kleen15325932019-03-06 17:55:35 -030015#include "map.h"
Arnaldo Carvalho de Melodaecf9e2019-01-28 00:03:34 +010016#include "symbol.h"
Namhyung Kim66f066d82014-10-06 09:46:00 +090017#include "unwind.h"
Jiri Olsa382619c2019-04-26 09:38:04 +020018#include "callchain.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020019
Arnaldo Carvalho de Melo2f3027a2016-04-26 12:32:50 -030020#include <api/fs/fs.h>
21
Jiri Olsacddcef62014-04-09 20:54:29 +020022int thread__init_map_groups(struct thread *thread, struct machine *machine)
23{
Jiri Olsacddcef62014-04-09 20:54:29 +020024 pid_t pid = thread->pid_;
25
Adrian Hunter1fcb8762014-07-14 13:02:25 +030026 if (pid == thread->tid || pid == -1) {
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030027 thread->mg = map_groups__new(machine);
Jiri Olsacddcef62014-04-09 20:54:29 +020028 } else {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -030029 struct thread *leader = __machine__findnew_thread(machine, pid, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -030030 if (leader) {
Jiri Olsacddcef62014-04-09 20:54:29 +020031 thread->mg = map_groups__get(leader->mg);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -030032 thread__put(leader);
33 }
Jiri Olsacddcef62014-04-09 20:54:29 +020034 }
35
36 return thread->mg ? 0 : -1;
37}
38
Adrian Hunter99d725f2013-08-26 16:00:19 +030039struct thread *thread__new(pid_t pid, pid_t tid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020040{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020041 char *comm_str;
42 struct comm *comm;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030043 struct thread *thread = zalloc(sizeof(*thread));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020044
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030045 if (thread != NULL) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030046 thread->pid_ = pid;
47 thread->tid = tid;
48 thread->ppid = -1;
Adrian Hunterbf49c352014-07-22 16:17:24 +030049 thread->cpu = -1;
Hari Bathinif3b36142017-03-08 02:11:43 +053050 INIT_LIST_HEAD(&thread->namespaces_list);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020051 INIT_LIST_HEAD(&thread->comm_list);
Kan Liangb32ee9e2017-09-29 07:47:52 -070052 init_rwsem(&thread->namespaces_lock);
53 init_rwsem(&thread->comm_lock);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020054
55 comm_str = malloc(32);
56 if (!comm_str)
57 goto err_thread;
58
59 snprintf(comm_str, 32, ":%d", tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +030060 comm = comm__new(comm_str, 0, false);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020061 free(comm_str);
62 if (!comm)
63 goto err_thread;
64
65 list_add(&comm->list, &thread->comm_list);
Elena Reshetovae34f5b12017-02-21 17:35:02 +020066 refcount_set(&thread->refcnt, 1);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030067 RB_CLEAR_NODE(&thread->rb_node);
Krister Johansen843ff372017-07-05 18:48:08 -070068 /* Thread holds first ref to nsdata. */
69 thread->nsinfo = nsinfo__new(pid);
Andi Kleendd2e18e2018-12-03 16:18:48 -080070 srccode_state_init(&thread->srccode_state);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020071 }
72
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030073 return thread;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020074
75err_thread:
76 free(thread);
77 return NULL;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020078}
79
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030080void thread__delete(struct thread *thread)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030081{
Hari Bathinif3b36142017-03-08 02:11:43 +053082 struct namespaces *namespaces, *tmp_namespaces;
83 struct comm *comm, *tmp_comm;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020084
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030085 BUG_ON(!RB_EMPTY_NODE(&thread->rb_node));
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030086
Adrian Hunter00447cc2014-10-30 16:09:42 +020087 thread_stack__free(thread);
88
Adrian Hunter9608b842014-07-16 10:19:43 +030089 if (thread->mg) {
90 map_groups__put(thread->mg);
91 thread->mg = NULL;
92 }
Kan Liangb32ee9e2017-09-29 07:47:52 -070093 down_write(&thread->namespaces_lock);
Hari Bathinif3b36142017-03-08 02:11:43 +053094 list_for_each_entry_safe(namespaces, tmp_namespaces,
95 &thread->namespaces_list, list) {
Arnaldo Carvalho de Meloe56fbc92019-07-04 12:13:46 -030096 list_del_init(&namespaces->list);
Hari Bathinif3b36142017-03-08 02:11:43 +053097 namespaces__free(namespaces);
98 }
Kan Liangb32ee9e2017-09-29 07:47:52 -070099 up_write(&thread->namespaces_lock);
100
101 down_write(&thread->comm_lock);
Hari Bathinif3b36142017-03-08 02:11:43 +0530102 list_for_each_entry_safe(comm, tmp_comm, &thread->comm_list, list) {
Arnaldo Carvalho de Meloe56fbc92019-07-04 12:13:46 -0300103 list_del_init(&comm->list);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200104 comm__free(comm);
105 }
Kan Liangb32ee9e2017-09-29 07:47:52 -0700106 up_write(&thread->comm_lock);
107
Namhyung Kim66f066d82014-10-06 09:46:00 +0900108 unwind__finish_access(thread);
Krister Johansen843ff372017-07-05 18:48:08 -0700109 nsinfo__zput(thread->nsinfo);
Andi Kleendd2e18e2018-12-03 16:18:48 -0800110 srccode_state_free(&thread->srccode_state);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200111
Kan Liangb32ee9e2017-09-29 07:47:52 -0700112 exit_rwsem(&thread->namespaces_lock);
113 exit_rwsem(&thread->comm_lock);
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300114 free(thread);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -0300115}
116
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300117struct thread *thread__get(struct thread *thread)
118{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300119 if (thread)
Elena Reshetovae34f5b12017-02-21 17:35:02 +0200120 refcount_inc(&thread->refcnt);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300121 return thread;
122}
123
124void thread__put(struct thread *thread)
125{
Elena Reshetovae34f5b12017-02-21 17:35:02 +0200126 if (thread && refcount_dec_and_test(&thread->refcnt)) {
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300127 /*
Arnaldo Carvalho de Melo4c00af02019-07-05 12:11:35 -0300128 * Remove it from the dead threads list, as last reference is
129 * gone, if it is in a dead threads list.
130 *
131 * We may not be there anymore if say, the machine where it was
132 * stored was already deleted, so we already removed it from
133 * the dead threads and some other piece of code still keeps a
134 * reference.
135 *
136 * This is what 'perf sched' does and finally drops it in
137 * perf_sched__lat(), where it calls perf_sched__read_events(),
138 * that processes the events by creating a session and deleting
139 * it, which ends up destroying the list heads for the dead
140 * threads, but before it does that it removes all threads from
141 * it using list_del_init().
142 *
143 * So we need to check here if it is in a dead threads list and
144 * if so, remove it before finally deleting the thread, to avoid
145 * an use after free situation.
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300146 */
Arnaldo Carvalho de Melo4c00af02019-07-05 12:11:35 -0300147 if (!list_empty(&thread->node))
148 list_del_init(&thread->node);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300149 thread__delete(thread);
150 }
151}
152
Namhyung Kim65841402019-05-22 14:32:48 +0900153static struct namespaces *__thread__namespaces(const struct thread *thread)
Hari Bathinif3b36142017-03-08 02:11:43 +0530154{
155 if (list_empty(&thread->namespaces_list))
156 return NULL;
157
158 return list_first_entry(&thread->namespaces_list, struct namespaces, list);
159}
160
Namhyung Kim7cb10a082019-05-27 15:11:49 +0900161struct namespaces *thread__namespaces(struct thread *thread)
Namhyung Kim65841402019-05-22 14:32:48 +0900162{
163 struct namespaces *ns;
164
Namhyung Kim7cb10a082019-05-27 15:11:49 +0900165 down_read(&thread->namespaces_lock);
Namhyung Kim65841402019-05-22 14:32:48 +0900166 ns = __thread__namespaces(thread);
Namhyung Kim7cb10a082019-05-27 15:11:49 +0900167 up_read(&thread->namespaces_lock);
Namhyung Kim65841402019-05-22 14:32:48 +0900168
169 return ns;
170}
171
Kan Liangb32ee9e2017-09-29 07:47:52 -0700172static int __thread__set_namespaces(struct thread *thread, u64 timestamp,
173 struct namespaces_event *event)
Hari Bathinif3b36142017-03-08 02:11:43 +0530174{
Namhyung Kim65841402019-05-22 14:32:48 +0900175 struct namespaces *new, *curr = __thread__namespaces(thread);
Hari Bathinif3b36142017-03-08 02:11:43 +0530176
177 new = namespaces__new(event);
178 if (!new)
179 return -ENOMEM;
180
181 list_add(&new->list, &thread->namespaces_list);
182
183 if (timestamp && curr) {
184 /*
185 * setns syscall must have changed few or all the namespaces
186 * of this thread. Update end time for the namespaces
187 * previously used.
188 */
189 curr = list_next_entry(new, list);
190 curr->end_time = timestamp;
191 }
192
193 return 0;
194}
195
Kan Liangb32ee9e2017-09-29 07:47:52 -0700196int thread__set_namespaces(struct thread *thread, u64 timestamp,
197 struct namespaces_event *event)
198{
199 int ret;
200
201 down_write(&thread->namespaces_lock);
202 ret = __thread__set_namespaces(thread, timestamp, event);
203 up_write(&thread->namespaces_lock);
204 return ret;
205}
206
Namhyung Kim4dfced32013-09-13 16:28:57 +0900207struct comm *thread__comm(const struct thread *thread)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200208{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200209 if (list_empty(&thread->comm_list))
210 return NULL;
David S. Miller4385d582010-02-26 12:08:34 -0300211
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200212 return list_first_entry(&thread->comm_list, struct comm, list);
213}
214
Adrian Hunter65de51f2014-07-31 09:00:44 +0300215struct comm *thread__exec_comm(const struct thread *thread)
216{
217 struct comm *comm, *last = NULL;
218
219 list_for_each_entry(comm, &thread->comm_list, list) {
220 if (comm->exec)
221 return comm;
222 last = comm;
223 }
224
225 return last;
226}
227
Kan Liangb32ee9e2017-09-29 07:47:52 -0700228static int ____thread__set_comm(struct thread *thread, const char *str,
229 u64 timestamp, bool exec)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200230{
231 struct comm *new, *curr = thread__comm(thread);
232
Adrian Huntera8480802014-11-11 16:16:41 +0200233 /* Override the default :tid entry */
234 if (!thread->comm_set) {
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -0300235 int err = comm__override(curr, str, timestamp, exec);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100236 if (err)
237 return err;
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100238 } else {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300239 new = comm__new(str, timestamp, exec);
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100240 if (!new)
241 return -ENOMEM;
242 list_add(&new->list, &thread->comm_list);
Namhyung Kim380b5142014-10-06 09:46:01 +0900243
244 if (exec)
245 unwind__flush_access(thread);
David S. Miller4385d582010-02-26 12:08:34 -0300246 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200247
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200248 thread->comm_set = true;
249
250 return 0;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200251}
252
Kan Liangb32ee9e2017-09-29 07:47:52 -0700253int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp,
254 bool exec)
255{
256 int ret;
257
258 down_write(&thread->comm_lock);
259 ret = ____thread__set_comm(thread, str, timestamp, exec);
260 up_write(&thread->comm_lock);
261 return ret;
262}
263
Arnaldo Carvalho de Melo2f3027a2016-04-26 12:32:50 -0300264int thread__set_comm_from_proc(struct thread *thread)
265{
266 char path[64];
267 char *comm = NULL;
268 size_t sz;
269 int err = -1;
270
271 if (!(snprintf(path, sizeof(path), "%d/task/%d/comm",
272 thread->pid_, thread->tid) >= (int)sizeof(path)) &&
273 procfs__read_str(path, &comm, &sz) == 0) {
274 comm[sz - 1] = '\0';
275 err = thread__set_comm(thread, comm, 0);
276 }
277
278 return err;
279}
280
Kan Liangb32ee9e2017-09-29 07:47:52 -0700281static const char *__thread__comm_str(const struct thread *thread)
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200282{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200283 const struct comm *comm = thread__comm(thread);
284
285 if (!comm)
286 return NULL;
287
288 return comm__str(comm);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200289}
290
Namhyung Kim7cb10a082019-05-27 15:11:49 +0900291const char *thread__comm_str(struct thread *thread)
Kan Liangb32ee9e2017-09-29 07:47:52 -0700292{
293 const char *str;
294
Namhyung Kim7cb10a082019-05-27 15:11:49 +0900295 down_read(&thread->comm_lock);
Kan Liangb32ee9e2017-09-29 07:47:52 -0700296 str = __thread__comm_str(thread);
Namhyung Kim7cb10a082019-05-27 15:11:49 +0900297 up_read(&thread->comm_lock);
Kan Liangb32ee9e2017-09-29 07:47:52 -0700298
299 return str;
300}
301
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200302/* CHECKME: it should probably better return the max comm len from its comm list */
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300303int thread__comm_len(struct thread *thread)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200304{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300305 if (!thread->comm_len) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200306 const char *comm = thread__comm_str(thread);
307 if (!comm)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200308 return 0;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200309 thread->comm_len = strlen(comm);
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200310 }
311
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300312 return thread->comm_len;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200313}
314
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300315size_t thread__fprintf(struct thread *thread, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200316{
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200317 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
Jiri Olsaacebd402014-07-14 23:46:47 +0200318 map_groups__fprintf(thread->mg, fp);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200319}
320
He Kuang8132a2a2016-06-03 03:33:13 +0000321int thread__insert_map(struct thread *thread, struct map *map)
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300322{
He Kuang8132a2a2016-06-03 03:33:13 +0000323 int ret;
324
Jiri Olsaa2873322016-07-04 14:16:22 +0200325 ret = unwind__prepare_access(thread, map, NULL);
He Kuang8132a2a2016-06-03 03:33:13 +0000326 if (ret)
327 return ret;
328
Jiri Olsaacebd402014-07-14 23:46:47 +0200329 map_groups__fixup_overlappings(thread->mg, map, stderr);
Arnaldo Carvalho de Melo93d57312014-03-21 17:57:01 -0300330 map_groups__insert(thread->mg, map);
He Kuang8132a2a2016-06-03 03:33:13 +0000331
332 return 0;
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200333}
334
Jiri Olsa6c502582016-07-04 14:16:23 +0200335static int __thread__prepare_access(struct thread *thread)
336{
337 bool initialized = false;
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300338 int err = 0;
339 struct maps *maps = &thread->mg->maps;
340 struct map *map;
Jiri Olsa6c502582016-07-04 14:16:23 +0200341
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300342 down_read(&maps->lock);
Jiri Olsa6c502582016-07-04 14:16:23 +0200343
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300344 for (map = maps__first(maps); map; map = map__next(map)) {
345 err = unwind__prepare_access(thread, map, &initialized);
346 if (err || initialized)
347 break;
Jiri Olsa6c502582016-07-04 14:16:23 +0200348 }
349
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300350 up_read(&maps->lock);
351
Jiri Olsa6c502582016-07-04 14:16:23 +0200352 return err;
353}
354
355static int thread__prepare_access(struct thread *thread)
356{
357 int err = 0;
358
Jiri Olsa382619c2019-04-26 09:38:04 +0200359 if (dwarf_callchain_users)
Jiri Olsa6c502582016-07-04 14:16:23 +0200360 err = __thread__prepare_access(thread);
361
362 return err;
363}
364
Jiri Olsacddcef62014-04-09 20:54:29 +0200365static int thread__clone_map_groups(struct thread *thread,
David Miller4f8f3822018-10-30 22:24:04 -0700366 struct thread *parent,
367 bool do_maps_clone)
Jiri Olsacddcef62014-04-09 20:54:29 +0200368{
Jiri Olsacddcef62014-04-09 20:54:29 +0200369 /* This is new thread, we share map groups for process. */
370 if (thread->pid_ == parent->pid_)
Jiri Olsa6c502582016-07-04 14:16:23 +0200371 return thread__prepare_access(thread);
Jiri Olsacddcef62014-04-09 20:54:29 +0200372
Adrian Hunter0d7e7ac2015-08-19 17:29:19 +0300373 if (thread->mg == parent->mg) {
374 pr_debug("broken map groups on thread %d/%d parent %d/%d\n",
375 thread->pid_, thread->tid, parent->pid_, parent->tid);
376 return 0;
377 }
Jiri Olsacddcef62014-04-09 20:54:29 +0200378 /* But this one is new process, copy maps. */
David Miller4f8f3822018-10-30 22:24:04 -0700379 return do_maps_clone ? map_groups__clone(thread, parent->mg) : 0;
Jiri Olsacddcef62014-04-09 20:54:29 +0200380}
381
David Miller4f8f3822018-10-30 22:24:04 -0700382int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp, bool do_maps_clone)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200383{
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200384 if (parent->comm_set) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200385 const char *comm = thread__comm_str(parent);
Arnaldo Carvalho de Melo18ef15c2016-10-03 11:07:24 -0300386 int err;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200387 if (!comm)
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200388 return -ENOMEM;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200389 err = thread__set_comm(thread, comm, timestamp);
David Ahern8d00be82013-12-10 21:35:38 -0700390 if (err)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200391 return err;
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200392 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200393
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300394 thread->ppid = parent->tid;
David Miller4f8f3822018-10-30 22:24:04 -0700395 return thread__clone_map_groups(thread, parent, do_maps_clone);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200396}
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300397
Arnaldo Carvalho de Melo26bd9332018-04-25 17:58:03 -0300398void thread__find_cpumode_addr_location(struct thread *thread, u64 addr,
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300399 struct addr_location *al)
400{
401 size_t i;
Eric Engestrom3b556bc2016-04-25 10:47:54 +0100402 const u8 cpumodes[] = {
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300403 PERF_RECORD_MISC_USER,
404 PERF_RECORD_MISC_KERNEL,
405 PERF_RECORD_MISC_GUEST_USER,
406 PERF_RECORD_MISC_GUEST_KERNEL
407 };
408
409 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) {
Arnaldo Carvalho de Melo26bd9332018-04-25 17:58:03 -0300410 thread__find_symbol(thread, cpumodes[i], addr, al);
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300411 if (al->map)
412 break;
413 }
414}
Andi Kleen480ca352016-05-23 17:52:24 -0700415
416struct thread *thread__main_thread(struct machine *machine, struct thread *thread)
417{
418 if (thread->pid_ == thread->tid)
419 return thread__get(thread);
420
421 if (thread->pid_ == -1)
422 return NULL;
423
424 return machine__find_thread(machine, thread->pid_, thread->pid_);
425}
Andi Kleen15325932019-03-06 17:55:35 -0300426
427int thread__memcpy(struct thread *thread, struct machine *machine,
428 void *buf, u64 ip, int len, bool *is64bit)
429{
430 u8 cpumode = PERF_RECORD_MISC_USER;
431 struct addr_location al;
432 long offset;
433
434 if (machine__kernel_ip(machine, ip))
435 cpumode = PERF_RECORD_MISC_KERNEL;
436
437 if (!thread__find_map(thread, cpumode, ip, &al) || !al.map->dso ||
438 al.map->dso->data.status == DSO_DATA_STATUS_ERROR ||
439 map__load(al.map) < 0)
440 return -1;
441
442 offset = al.map->map_ip(al.map, ip);
443 if (is64bit)
444 *is64bit = al.map->dso->is_64_bit;
445
446 return dso__data_read_offset(al.map->dso, machine, offset, buf, len);
447}