blob: 0a9ae8014729c085ffd2872e2bc13871f79c9908 [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);
Jiri Olsacddcef62014-04-09 20:54:29 +020022 if (leader)
23 thread->mg = map_groups__get(leader->mg);
24 }
25
26 return thread->mg ? 0 : -1;
27}
28
Adrian Hunter99d725f2013-08-26 16:00:19 +030029struct thread *thread__new(pid_t pid, pid_t tid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020030{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020031 char *comm_str;
32 struct comm *comm;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030033 struct thread *thread = zalloc(sizeof(*thread));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020034
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030035 if (thread != NULL) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030036 thread->pid_ = pid;
37 thread->tid = tid;
38 thread->ppid = -1;
Adrian Hunterbf49c352014-07-22 16:17:24 +030039 thread->cpu = -1;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020040 INIT_LIST_HEAD(&thread->comm_list);
41
Namhyung Kim66f066d82014-10-06 09:46:00 +090042 if (unwind__prepare_access(thread) < 0)
43 goto err_thread;
44
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020045 comm_str = malloc(32);
46 if (!comm_str)
47 goto err_thread;
48
49 snprintf(comm_str, 32, ":%d", tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +030050 comm = comm__new(comm_str, 0, false);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020051 free(comm_str);
52 if (!comm)
53 goto err_thread;
54
55 list_add(&comm->list, &thread->comm_list);
Arnaldo Carvalho de Meloe1ed3a52015-04-07 11:59:50 -030056 atomic_set(&thread->refcnt, 0);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030057 RB_CLEAR_NODE(&thread->rb_node);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020058 }
59
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030060 return thread;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020061
62err_thread:
63 free(thread);
64 return NULL;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020065}
66
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030067void thread__delete(struct thread *thread)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030068{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020069 struct comm *comm, *tmp;
70
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030071 BUG_ON(!RB_EMPTY_NODE(&thread->rb_node));
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030072
Adrian Hunter00447cc2014-10-30 16:09:42 +020073 thread_stack__free(thread);
74
Adrian Hunter9608b842014-07-16 10:19:43 +030075 if (thread->mg) {
76 map_groups__put(thread->mg);
77 thread->mg = NULL;
78 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020079 list_for_each_entry_safe(comm, tmp, &thread->comm_list, list) {
80 list_del(&comm->list);
81 comm__free(comm);
82 }
Namhyung Kim66f066d82014-10-06 09:46:00 +090083 unwind__finish_access(thread);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020084
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030085 free(thread);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030086}
87
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030088struct thread *thread__get(struct thread *thread)
89{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030090 if (thread)
91 atomic_inc(&thread->refcnt);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030092 return thread;
93}
94
95void thread__put(struct thread *thread)
96{
Arnaldo Carvalho de Meloe1ed3a52015-04-07 11:59:50 -030097 if (thread && atomic_dec_and_test(&thread->refcnt)) {
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030098 list_del_init(&thread->node);
99 thread__delete(thread);
100 }
101}
102
Namhyung Kim4dfced32013-09-13 16:28:57 +0900103struct comm *thread__comm(const struct thread *thread)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200104{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200105 if (list_empty(&thread->comm_list))
106 return NULL;
David S. Miller4385d582010-02-26 12:08:34 -0300107
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200108 return list_first_entry(&thread->comm_list, struct comm, list);
109}
110
Adrian Hunter65de51f2014-07-31 09:00:44 +0300111struct comm *thread__exec_comm(const struct thread *thread)
112{
113 struct comm *comm, *last = NULL;
114
115 list_for_each_entry(comm, &thread->comm_list, list) {
116 if (comm->exec)
117 return comm;
118 last = comm;
119 }
120
121 return last;
122}
123
Adrian Hunter65de51f2014-07-31 09:00:44 +0300124int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp,
125 bool exec)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200126{
127 struct comm *new, *curr = thread__comm(thread);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100128 int err;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200129
Adrian Huntera8480802014-11-11 16:16:41 +0200130 /* Override the default :tid entry */
131 if (!thread->comm_set) {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300132 err = comm__override(curr, str, timestamp, exec);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100133 if (err)
134 return err;
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100135 } else {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300136 new = comm__new(str, timestamp, exec);
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100137 if (!new)
138 return -ENOMEM;
139 list_add(&new->list, &thread->comm_list);
Namhyung Kim380b5142014-10-06 09:46:01 +0900140
141 if (exec)
142 unwind__flush_access(thread);
David S. Miller4385d582010-02-26 12:08:34 -0300143 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200144
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200145 thread->comm_set = true;
146
147 return 0;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200148}
149
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200150const char *thread__comm_str(const struct thread *thread)
151{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200152 const struct comm *comm = thread__comm(thread);
153
154 if (!comm)
155 return NULL;
156
157 return comm__str(comm);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200158}
159
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200160/* CHECKME: it should probably better return the max comm len from its comm list */
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300161int thread__comm_len(struct thread *thread)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200162{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300163 if (!thread->comm_len) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200164 const char *comm = thread__comm_str(thread);
165 if (!comm)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200166 return 0;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200167 thread->comm_len = strlen(comm);
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200168 }
169
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300170 return thread->comm_len;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200171}
172
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300173size_t thread__fprintf(struct thread *thread, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200174{
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200175 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
Jiri Olsaacebd402014-07-14 23:46:47 +0200176 map_groups__fprintf(thread->mg, fp);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200177}
178
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300179void thread__insert_map(struct thread *thread, struct map *map)
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300180{
Jiri Olsaacebd402014-07-14 23:46:47 +0200181 map_groups__fixup_overlappings(thread->mg, map, stderr);
Arnaldo Carvalho de Melo93d57312014-03-21 17:57:01 -0300182 map_groups__insert(thread->mg, map);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200183}
184
Jiri Olsacddcef62014-04-09 20:54:29 +0200185static int thread__clone_map_groups(struct thread *thread,
186 struct thread *parent)
187{
188 int i;
189
190 /* This is new thread, we share map groups for process. */
191 if (thread->pid_ == parent->pid_)
192 return 0;
193
Adrian Hunter0d7e7ac2015-08-19 17:29:19 +0300194 if (thread->mg == parent->mg) {
195 pr_debug("broken map groups on thread %d/%d parent %d/%d\n",
196 thread->pid_, thread->tid, parent->pid_, parent->tid);
197 return 0;
198 }
199
Jiri Olsacddcef62014-04-09 20:54:29 +0200200 /* But this one is new process, copy maps. */
201 for (i = 0; i < MAP__NR_TYPES; ++i)
202 if (map_groups__clone(thread->mg, parent->mg, i) < 0)
203 return -ENOMEM;
204
205 return 0;
206}
207
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200208int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200209{
Jiri Olsacddcef62014-04-09 20:54:29 +0200210 int err;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200211
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200212 if (parent->comm_set) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200213 const char *comm = thread__comm_str(parent);
214 if (!comm)
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200215 return -ENOMEM;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200216 err = thread__set_comm(thread, comm, timestamp);
David Ahern8d00be82013-12-10 21:35:38 -0700217 if (err)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200218 return err;
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200219 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200220
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300221 thread->ppid = parent->tid;
Jiri Olsacddcef62014-04-09 20:54:29 +0200222 return thread__clone_map_groups(thread, parent);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200223}
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300224
225void thread__find_cpumode_addr_location(struct thread *thread,
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300226 enum map_type type, u64 addr,
227 struct addr_location *al)
228{
229 size_t i;
230 const u8 const cpumodes[] = {
231 PERF_RECORD_MISC_USER,
232 PERF_RECORD_MISC_KERNEL,
233 PERF_RECORD_MISC_GUEST_USER,
234 PERF_RECORD_MISC_GUEST_KERNEL
235 };
236
237 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300238 thread__find_addr_location(thread, cpumodes[i], type, addr, al);
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300239 if (al->map)
240 break;
241 }
242}