blob: 45fcb715a36b3f6a975600d41eb877b387b78417 [file] [log] [blame]
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02001#include "../perf.h"
2#include <stdlib.h>
3#include <stdio.h>
4#include <string.h>
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -02005#include "session.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02006#include "thread.h"
Adrian Hunter00447cc2014-10-30 16:09:42 +02007#include "thread-stack.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02008#include "util.h"
Frederic Weisbecker6e086432009-08-18 17:04:03 +02009#include "debug.h"
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020010#include "comm.h"
Namhyung Kim66f066d82014-10-06 09:46:00 +090011#include "unwind.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020012
Arnaldo Carvalho de Melo2f3027a2016-04-26 12:32:50 -030013#include <api/fs/fs.h>
14
Jiri Olsacddcef62014-04-09 20:54:29 +020015int thread__init_map_groups(struct thread *thread, struct machine *machine)
16{
17 struct thread *leader;
18 pid_t pid = thread->pid_;
19
Adrian Hunter1fcb8762014-07-14 13:02:25 +030020 if (pid == thread->tid || pid == -1) {
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030021 thread->mg = map_groups__new(machine);
Jiri Olsacddcef62014-04-09 20:54:29 +020022 } else {
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030023 leader = __machine__findnew_thread(machine, pid, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -030024 if (leader) {
Jiri Olsacddcef62014-04-09 20:54:29 +020025 thread->mg = map_groups__get(leader->mg);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -030026 thread__put(leader);
27 }
Jiri Olsacddcef62014-04-09 20:54:29 +020028 }
29
30 return thread->mg ? 0 : -1;
31}
32
Adrian Hunter99d725f2013-08-26 16:00:19 +030033struct thread *thread__new(pid_t pid, pid_t tid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020034{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020035 char *comm_str;
36 struct comm *comm;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030037 struct thread *thread = zalloc(sizeof(*thread));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020038
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030039 if (thread != NULL) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030040 thread->pid_ = pid;
41 thread->tid = tid;
42 thread->ppid = -1;
Adrian Hunterbf49c352014-07-22 16:17:24 +030043 thread->cpu = -1;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020044 INIT_LIST_HEAD(&thread->comm_list);
45
Namhyung Kim66f066d82014-10-06 09:46:00 +090046 if (unwind__prepare_access(thread) < 0)
47 goto err_thread;
48
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020049 comm_str = malloc(32);
50 if (!comm_str)
51 goto err_thread;
52
53 snprintf(comm_str, 32, ":%d", tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +030054 comm = comm__new(comm_str, 0, false);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020055 free(comm_str);
56 if (!comm)
57 goto err_thread;
58
59 list_add(&comm->list, &thread->comm_list);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -030060 atomic_set(&thread->refcnt, 1);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030061 RB_CLEAR_NODE(&thread->rb_node);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020062 }
63
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030064 return thread;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020065
66err_thread:
67 free(thread);
68 return NULL;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020069}
70
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030071void thread__delete(struct thread *thread)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030072{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020073 struct comm *comm, *tmp;
74
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030075 BUG_ON(!RB_EMPTY_NODE(&thread->rb_node));
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030076
Adrian Hunter00447cc2014-10-30 16:09:42 +020077 thread_stack__free(thread);
78
Adrian Hunter9608b842014-07-16 10:19:43 +030079 if (thread->mg) {
80 map_groups__put(thread->mg);
81 thread->mg = NULL;
82 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020083 list_for_each_entry_safe(comm, tmp, &thread->comm_list, list) {
84 list_del(&comm->list);
85 comm__free(comm);
86 }
Namhyung Kim66f066d82014-10-06 09:46:00 +090087 unwind__finish_access(thread);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020088
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030089 free(thread);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030090}
91
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030092struct thread *thread__get(struct thread *thread)
93{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030094 if (thread)
95 atomic_inc(&thread->refcnt);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030096 return thread;
97}
98
99void thread__put(struct thread *thread)
100{
Arnaldo Carvalho de Meloe1ed3a52015-04-07 11:59:50 -0300101 if (thread && atomic_dec_and_test(&thread->refcnt)) {
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300102 /*
103 * Remove it from the dead_threads list, as last reference
104 * is gone.
105 */
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300106 list_del_init(&thread->node);
107 thread__delete(thread);
108 }
109}
110
Namhyung Kim4dfced32013-09-13 16:28:57 +0900111struct comm *thread__comm(const struct thread *thread)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200112{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200113 if (list_empty(&thread->comm_list))
114 return NULL;
David S. Miller4385d582010-02-26 12:08:34 -0300115
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200116 return list_first_entry(&thread->comm_list, struct comm, list);
117}
118
Adrian Hunter65de51f2014-07-31 09:00:44 +0300119struct comm *thread__exec_comm(const struct thread *thread)
120{
121 struct comm *comm, *last = NULL;
122
123 list_for_each_entry(comm, &thread->comm_list, list) {
124 if (comm->exec)
125 return comm;
126 last = comm;
127 }
128
129 return last;
130}
131
Adrian Hunter65de51f2014-07-31 09:00:44 +0300132int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp,
133 bool exec)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200134{
135 struct comm *new, *curr = thread__comm(thread);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100136 int err;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200137
Adrian Huntera8480802014-11-11 16:16:41 +0200138 /* Override the default :tid entry */
139 if (!thread->comm_set) {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300140 err = comm__override(curr, str, timestamp, exec);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100141 if (err)
142 return err;
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100143 } else {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300144 new = comm__new(str, timestamp, exec);
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100145 if (!new)
146 return -ENOMEM;
147 list_add(&new->list, &thread->comm_list);
Namhyung Kim380b5142014-10-06 09:46:01 +0900148
149 if (exec)
150 unwind__flush_access(thread);
David S. Miller4385d582010-02-26 12:08:34 -0300151 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200152
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200153 thread->comm_set = true;
154
155 return 0;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200156}
157
Arnaldo Carvalho de Melo2f3027a2016-04-26 12:32:50 -0300158int thread__set_comm_from_proc(struct thread *thread)
159{
160 char path[64];
161 char *comm = NULL;
162 size_t sz;
163 int err = -1;
164
165 if (!(snprintf(path, sizeof(path), "%d/task/%d/comm",
166 thread->pid_, thread->tid) >= (int)sizeof(path)) &&
167 procfs__read_str(path, &comm, &sz) == 0) {
168 comm[sz - 1] = '\0';
169 err = thread__set_comm(thread, comm, 0);
170 }
171
172 return err;
173}
174
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200175const char *thread__comm_str(const struct thread *thread)
176{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200177 const struct comm *comm = thread__comm(thread);
178
179 if (!comm)
180 return NULL;
181
182 return comm__str(comm);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200183}
184
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200185/* CHECKME: it should probably better return the max comm len from its comm list */
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300186int thread__comm_len(struct thread *thread)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200187{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300188 if (!thread->comm_len) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200189 const char *comm = thread__comm_str(thread);
190 if (!comm)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200191 return 0;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200192 thread->comm_len = strlen(comm);
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200193 }
194
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300195 return thread->comm_len;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200196}
197
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300198size_t thread__fprintf(struct thread *thread, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200199{
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200200 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
Jiri Olsaacebd402014-07-14 23:46:47 +0200201 map_groups__fprintf(thread->mg, fp);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200202}
203
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300204void thread__insert_map(struct thread *thread, struct map *map)
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300205{
Jiri Olsaacebd402014-07-14 23:46:47 +0200206 map_groups__fixup_overlappings(thread->mg, map, stderr);
Arnaldo Carvalho de Melo93d57312014-03-21 17:57:01 -0300207 map_groups__insert(thread->mg, map);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200208}
209
Jiri Olsacddcef62014-04-09 20:54:29 +0200210static int thread__clone_map_groups(struct thread *thread,
211 struct thread *parent)
212{
213 int i;
214
215 /* This is new thread, we share map groups for process. */
216 if (thread->pid_ == parent->pid_)
217 return 0;
218
Adrian Hunter0d7e7ac2015-08-19 17:29:19 +0300219 if (thread->mg == parent->mg) {
220 pr_debug("broken map groups on thread %d/%d parent %d/%d\n",
221 thread->pid_, thread->tid, parent->pid_, parent->tid);
222 return 0;
223 }
224
Jiri Olsacddcef62014-04-09 20:54:29 +0200225 /* But this one is new process, copy maps. */
226 for (i = 0; i < MAP__NR_TYPES; ++i)
227 if (map_groups__clone(thread->mg, parent->mg, i) < 0)
228 return -ENOMEM;
229
230 return 0;
231}
232
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200233int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200234{
Jiri Olsacddcef62014-04-09 20:54:29 +0200235 int err;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200236
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200237 if (parent->comm_set) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200238 const char *comm = thread__comm_str(parent);
239 if (!comm)
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200240 return -ENOMEM;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200241 err = thread__set_comm(thread, comm, timestamp);
David Ahern8d00be82013-12-10 21:35:38 -0700242 if (err)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200243 return err;
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200244 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200245
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300246 thread->ppid = parent->tid;
Jiri Olsacddcef62014-04-09 20:54:29 +0200247 return thread__clone_map_groups(thread, parent);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200248}
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300249
250void thread__find_cpumode_addr_location(struct thread *thread,
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300251 enum map_type type, u64 addr,
252 struct addr_location *al)
253{
254 size_t i;
Eric Engestrom3b556bc2016-04-25 10:47:54 +0100255 const u8 cpumodes[] = {
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300256 PERF_RECORD_MISC_USER,
257 PERF_RECORD_MISC_KERNEL,
258 PERF_RECORD_MISC_GUEST_USER,
259 PERF_RECORD_MISC_GUEST_KERNEL
260 };
261
262 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300263 thread__find_addr_location(thread, cpumodes[i], type, addr, al);
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300264 if (al->map)
265 break;
266 }
267}