blob: dfd00c6dad6e68ad3dfde68cbb9e0b16a95f1fee [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
Jiri Olsacddcef62014-04-09 20:54:29 +020013int thread__init_map_groups(struct thread *thread, struct machine *machine)
14{
15 struct thread *leader;
16 pid_t pid = thread->pid_;
17
Adrian Hunter1fcb8762014-07-14 13:02:25 +030018 if (pid == thread->tid || pid == -1) {
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030019 thread->mg = map_groups__new(machine);
Jiri Olsacddcef62014-04-09 20:54:29 +020020 } else {
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030021 leader = __machine__findnew_thread(machine, pid, pid);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -030022 if (leader) {
Jiri Olsacddcef62014-04-09 20:54:29 +020023 thread->mg = map_groups__get(leader->mg);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -030024 thread__put(leader);
25 }
Jiri Olsacddcef62014-04-09 20:54:29 +020026 }
27
28 return thread->mg ? 0 : -1;
29}
30
Adrian Hunter99d725f2013-08-26 16:00:19 +030031struct thread *thread__new(pid_t pid, pid_t tid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020032{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020033 char *comm_str;
34 struct comm *comm;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030035 struct thread *thread = zalloc(sizeof(*thread));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020036
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030037 if (thread != NULL) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030038 thread->pid_ = pid;
39 thread->tid = tid;
40 thread->ppid = -1;
Adrian Hunterbf49c352014-07-22 16:17:24 +030041 thread->cpu = -1;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020042 INIT_LIST_HEAD(&thread->comm_list);
43
Namhyung Kim66f066d82014-10-06 09:46:00 +090044 if (unwind__prepare_access(thread) < 0)
45 goto err_thread;
46
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020047 comm_str = malloc(32);
48 if (!comm_str)
49 goto err_thread;
50
51 snprintf(comm_str, 32, ":%d", tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +030052 comm = comm__new(comm_str, 0, false);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020053 free(comm_str);
54 if (!comm)
55 goto err_thread;
56
57 list_add(&comm->list, &thread->comm_list);
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -030058 atomic_set(&thread->refcnt, 1);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030059 RB_CLEAR_NODE(&thread->rb_node);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020060 }
61
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030062 return thread;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020063
64err_thread:
65 free(thread);
66 return NULL;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020067}
68
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030069void thread__delete(struct thread *thread)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030070{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020071 struct comm *comm, *tmp;
72
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030073 BUG_ON(!RB_EMPTY_NODE(&thread->rb_node));
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030074
Adrian Hunter00447cc2014-10-30 16:09:42 +020075 thread_stack__free(thread);
76
Adrian Hunter9608b842014-07-16 10:19:43 +030077 if (thread->mg) {
78 map_groups__put(thread->mg);
79 thread->mg = NULL;
80 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020081 list_for_each_entry_safe(comm, tmp, &thread->comm_list, list) {
82 list_del(&comm->list);
83 comm__free(comm);
84 }
Namhyung Kim66f066d82014-10-06 09:46:00 +090085 unwind__finish_access(thread);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020086
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030087 free(thread);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030088}
89
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030090struct thread *thread__get(struct thread *thread)
91{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030092 if (thread)
93 atomic_inc(&thread->refcnt);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030094 return thread;
95}
96
97void thread__put(struct thread *thread)
98{
Arnaldo Carvalho de Meloe1ed3a52015-04-07 11:59:50 -030099 if (thread && atomic_dec_and_test(&thread->refcnt)) {
Arnaldo Carvalho de Meloabd82862015-12-11 19:11:23 -0300100 /*
101 * Remove it from the dead_threads list, as last reference
102 * is gone.
103 */
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300104 list_del_init(&thread->node);
105 thread__delete(thread);
106 }
107}
108
Namhyung Kim4dfced32013-09-13 16:28:57 +0900109struct comm *thread__comm(const struct thread *thread)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200110{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200111 if (list_empty(&thread->comm_list))
112 return NULL;
David S. Miller4385d582010-02-26 12:08:34 -0300113
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200114 return list_first_entry(&thread->comm_list, struct comm, list);
115}
116
Adrian Hunter65de51f2014-07-31 09:00:44 +0300117struct comm *thread__exec_comm(const struct thread *thread)
118{
119 struct comm *comm, *last = NULL;
120
121 list_for_each_entry(comm, &thread->comm_list, list) {
122 if (comm->exec)
123 return comm;
124 last = comm;
125 }
126
127 return last;
128}
129
Adrian Hunter65de51f2014-07-31 09:00:44 +0300130int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp,
131 bool exec)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200132{
133 struct comm *new, *curr = thread__comm(thread);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100134 int err;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200135
Adrian Huntera8480802014-11-11 16:16:41 +0200136 /* Override the default :tid entry */
137 if (!thread->comm_set) {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300138 err = comm__override(curr, str, timestamp, exec);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100139 if (err)
140 return err;
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100141 } else {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300142 new = comm__new(str, timestamp, exec);
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100143 if (!new)
144 return -ENOMEM;
145 list_add(&new->list, &thread->comm_list);
Namhyung Kim380b5142014-10-06 09:46:01 +0900146
147 if (exec)
148 unwind__flush_access(thread);
David S. Miller4385d582010-02-26 12:08:34 -0300149 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200150
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200151 thread->comm_set = true;
152
153 return 0;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200154}
155
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200156const char *thread__comm_str(const struct thread *thread)
157{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200158 const struct comm *comm = thread__comm(thread);
159
160 if (!comm)
161 return NULL;
162
163 return comm__str(comm);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200164}
165
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200166/* CHECKME: it should probably better return the max comm len from its comm list */
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300167int thread__comm_len(struct thread *thread)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200168{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300169 if (!thread->comm_len) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200170 const char *comm = thread__comm_str(thread);
171 if (!comm)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200172 return 0;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200173 thread->comm_len = strlen(comm);
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200174 }
175
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300176 return thread->comm_len;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200177}
178
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300179size_t thread__fprintf(struct thread *thread, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200180{
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200181 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
Jiri Olsaacebd402014-07-14 23:46:47 +0200182 map_groups__fprintf(thread->mg, fp);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200183}
184
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300185void thread__insert_map(struct thread *thread, struct map *map)
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300186{
Jiri Olsaacebd402014-07-14 23:46:47 +0200187 map_groups__fixup_overlappings(thread->mg, map, stderr);
Arnaldo Carvalho de Melo93d57312014-03-21 17:57:01 -0300188 map_groups__insert(thread->mg, map);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200189}
190
Jiri Olsacddcef62014-04-09 20:54:29 +0200191static int thread__clone_map_groups(struct thread *thread,
192 struct thread *parent)
193{
194 int i;
195
196 /* This is new thread, we share map groups for process. */
197 if (thread->pid_ == parent->pid_)
198 return 0;
199
Adrian Hunter0d7e7ac2015-08-19 17:29:19 +0300200 if (thread->mg == parent->mg) {
201 pr_debug("broken map groups on thread %d/%d parent %d/%d\n",
202 thread->pid_, thread->tid, parent->pid_, parent->tid);
203 return 0;
204 }
205
Jiri Olsacddcef62014-04-09 20:54:29 +0200206 /* But this one is new process, copy maps. */
207 for (i = 0; i < MAP__NR_TYPES; ++i)
208 if (map_groups__clone(thread->mg, parent->mg, i) < 0)
209 return -ENOMEM;
210
211 return 0;
212}
213
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200214int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200215{
Jiri Olsacddcef62014-04-09 20:54:29 +0200216 int err;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200217
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200218 if (parent->comm_set) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200219 const char *comm = thread__comm_str(parent);
220 if (!comm)
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200221 return -ENOMEM;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200222 err = thread__set_comm(thread, comm, timestamp);
David Ahern8d00be82013-12-10 21:35:38 -0700223 if (err)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200224 return err;
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200225 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200226
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300227 thread->ppid = parent->tid;
Jiri Olsacddcef62014-04-09 20:54:29 +0200228 return thread__clone_map_groups(thread, parent);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200229}
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300230
231void thread__find_cpumode_addr_location(struct thread *thread,
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300232 enum map_type type, u64 addr,
233 struct addr_location *al)
234{
235 size_t i;
236 const u8 const cpumodes[] = {
237 PERF_RECORD_MISC_USER,
238 PERF_RECORD_MISC_KERNEL,
239 PERF_RECORD_MISC_GUEST_USER,
240 PERF_RECORD_MISC_GUEST_KERNEL
241 };
242
243 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300244 thread__find_addr_location(thread, cpumodes[i], type, addr, al);
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300245 if (al->map)
246 break;
247 }
248}