Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 2 | #include "../perf.h" |
Arnaldo Carvalho de Melo | a43783a | 2017-04-18 10:46:11 -0300 | [diff] [blame] | 3 | #include <errno.h> |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 4 | #include <stdlib.h> |
| 5 | #include <stdio.h> |
| 6 | #include <string.h> |
Arnaldo Carvalho de Melo | 877a7a1 | 2017-04-17 11:39:06 -0300 | [diff] [blame] | 7 | #include <linux/kernel.h> |
Arnaldo Carvalho de Melo | 7f7c536 | 2019-07-04 11:32:27 -0300 | [diff] [blame] | 8 | #include <linux/zalloc.h> |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 9 | #include "session.h" |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 10 | #include "thread.h" |
Adrian Hunter | 00447cc | 2014-10-30 16:09:42 +0200 | [diff] [blame] | 11 | #include "thread-stack.h" |
Frederic Weisbecker | 6e08643 | 2009-08-18 17:04:03 +0200 | [diff] [blame] | 12 | #include "debug.h" |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 13 | #include "namespaces.h" |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 14 | #include "comm.h" |
Andi Kleen | 1532593 | 2019-03-06 17:55:35 -0300 | [diff] [blame] | 15 | #include "map.h" |
Arnaldo Carvalho de Melo | daecf9e | 2019-01-28 00:03:34 +0100 | [diff] [blame] | 16 | #include "symbol.h" |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 17 | #include "unwind.h" |
Jiri Olsa | 382619c | 2019-04-26 09:38:04 +0200 | [diff] [blame] | 18 | #include "callchain.h" |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 19 | |
Arnaldo Carvalho de Melo | 2f3027a | 2016-04-26 12:32:50 -0300 | [diff] [blame] | 20 | #include <api/fs/fs.h> |
| 21 | |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 22 | int thread__init_map_groups(struct thread *thread, struct machine *machine) |
| 23 | { |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 24 | pid_t pid = thread->pid_; |
| 25 | |
Adrian Hunter | 1fcb876 | 2014-07-14 13:02:25 +0300 | [diff] [blame] | 26 | if (pid == thread->tid || pid == -1) { |
Arnaldo Carvalho de Melo | 11246c7 | 2014-10-21 17:29:02 -0300 | [diff] [blame] | 27 | thread->mg = map_groups__new(machine); |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 28 | } else { |
Arnaldo Carvalho de Melo | 18ef15c | 2016-10-03 11:07:24 -0300 | [diff] [blame] | 29 | struct thread *leader = __machine__findnew_thread(machine, pid, pid); |
Arnaldo Carvalho de Melo | abd8286 | 2015-12-11 19:11:23 -0300 | [diff] [blame] | 30 | if (leader) { |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 31 | thread->mg = map_groups__get(leader->mg); |
Arnaldo Carvalho de Melo | abd8286 | 2015-12-11 19:11:23 -0300 | [diff] [blame] | 32 | thread__put(leader); |
| 33 | } |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | return thread->mg ? 0 : -1; |
| 37 | } |
| 38 | |
Adrian Hunter | 99d725f | 2013-08-26 16:00:19 +0300 | [diff] [blame] | 39 | struct thread *thread__new(pid_t pid, pid_t tid) |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 40 | { |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 41 | char *comm_str; |
| 42 | struct comm *comm; |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 43 | struct thread *thread = zalloc(sizeof(*thread)); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 44 | |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 45 | if (thread != NULL) { |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 46 | thread->pid_ = pid; |
| 47 | thread->tid = tid; |
| 48 | thread->ppid = -1; |
Adrian Hunter | bf49c35 | 2014-07-22 16:17:24 +0300 | [diff] [blame] | 49 | thread->cpu = -1; |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 50 | INIT_LIST_HEAD(&thread->namespaces_list); |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 51 | INIT_LIST_HEAD(&thread->comm_list); |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 52 | init_rwsem(&thread->namespaces_lock); |
| 53 | init_rwsem(&thread->comm_lock); |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 54 | |
| 55 | comm_str = malloc(32); |
| 56 | if (!comm_str) |
| 57 | goto err_thread; |
| 58 | |
| 59 | snprintf(comm_str, 32, ":%d", tid); |
Adrian Hunter | 65de51f | 2014-07-31 09:00:44 +0300 | [diff] [blame] | 60 | comm = comm__new(comm_str, 0, false); |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 61 | free(comm_str); |
| 62 | if (!comm) |
| 63 | goto err_thread; |
| 64 | |
| 65 | list_add(&comm->list, &thread->comm_list); |
Elena Reshetova | e34f5b1 | 2017-02-21 17:35:02 +0200 | [diff] [blame] | 66 | refcount_set(&thread->refcnt, 1); |
Arnaldo Carvalho de Melo | b91fc39 | 2015-04-06 20:43:22 -0300 | [diff] [blame] | 67 | RB_CLEAR_NODE(&thread->rb_node); |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 68 | /* Thread holds first ref to nsdata. */ |
| 69 | thread->nsinfo = nsinfo__new(pid); |
Andi Kleen | dd2e18e | 2018-12-03 16:18:48 -0800 | [diff] [blame] | 70 | srccode_state_init(&thread->srccode_state); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 71 | } |
| 72 | |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 73 | return thread; |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 74 | |
| 75 | err_thread: |
| 76 | free(thread); |
| 77 | return NULL; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 78 | } |
| 79 | |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 80 | void thread__delete(struct thread *thread) |
Arnaldo Carvalho de Melo | 591765f | 2010-07-30 18:28:42 -0300 | [diff] [blame] | 81 | { |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 82 | struct namespaces *namespaces, *tmp_namespaces; |
| 83 | struct comm *comm, *tmp_comm; |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 84 | |
Arnaldo Carvalho de Melo | b91fc39 | 2015-04-06 20:43:22 -0300 | [diff] [blame] | 85 | BUG_ON(!RB_EMPTY_NODE(&thread->rb_node)); |
Arnaldo Carvalho de Melo | b91fc39 | 2015-04-06 20:43:22 -0300 | [diff] [blame] | 86 | |
Adrian Hunter | 00447cc | 2014-10-30 16:09:42 +0200 | [diff] [blame] | 87 | thread_stack__free(thread); |
| 88 | |
Adrian Hunter | 9608b84 | 2014-07-16 10:19:43 +0300 | [diff] [blame] | 89 | if (thread->mg) { |
| 90 | map_groups__put(thread->mg); |
| 91 | thread->mg = NULL; |
| 92 | } |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 93 | down_write(&thread->namespaces_lock); |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 94 | list_for_each_entry_safe(namespaces, tmp_namespaces, |
| 95 | &thread->namespaces_list, list) { |
Arnaldo Carvalho de Melo | e56fbc9 | 2019-07-04 12:13:46 -0300 | [diff] [blame] | 96 | list_del_init(&namespaces->list); |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 97 | namespaces__free(namespaces); |
| 98 | } |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 99 | up_write(&thread->namespaces_lock); |
| 100 | |
| 101 | down_write(&thread->comm_lock); |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 102 | list_for_each_entry_safe(comm, tmp_comm, &thread->comm_list, list) { |
Arnaldo Carvalho de Melo | e56fbc9 | 2019-07-04 12:13:46 -0300 | [diff] [blame] | 103 | list_del_init(&comm->list); |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 104 | comm__free(comm); |
| 105 | } |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 106 | up_write(&thread->comm_lock); |
| 107 | |
Namhyung Kim | 66f066d8 | 2014-10-06 09:46:00 +0900 | [diff] [blame] | 108 | unwind__finish_access(thread); |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 109 | nsinfo__zput(thread->nsinfo); |
Andi Kleen | dd2e18e | 2018-12-03 16:18:48 -0800 | [diff] [blame] | 110 | srccode_state_free(&thread->srccode_state); |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 111 | |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 112 | exit_rwsem(&thread->namespaces_lock); |
| 113 | exit_rwsem(&thread->comm_lock); |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 114 | free(thread); |
Arnaldo Carvalho de Melo | 591765f | 2010-07-30 18:28:42 -0300 | [diff] [blame] | 115 | } |
| 116 | |
Arnaldo Carvalho de Melo | f3b623b | 2015-03-02 22:21:35 -0300 | [diff] [blame] | 117 | struct thread *thread__get(struct thread *thread) |
| 118 | { |
Arnaldo Carvalho de Melo | b91fc39 | 2015-04-06 20:43:22 -0300 | [diff] [blame] | 119 | if (thread) |
Elena Reshetova | e34f5b1 | 2017-02-21 17:35:02 +0200 | [diff] [blame] | 120 | refcount_inc(&thread->refcnt); |
Arnaldo Carvalho de Melo | f3b623b | 2015-03-02 22:21:35 -0300 | [diff] [blame] | 121 | return thread; |
| 122 | } |
| 123 | |
| 124 | void thread__put(struct thread *thread) |
| 125 | { |
Elena Reshetova | e34f5b1 | 2017-02-21 17:35:02 +0200 | [diff] [blame] | 126 | if (thread && refcount_dec_and_test(&thread->refcnt)) { |
Arnaldo Carvalho de Melo | abd8286 | 2015-12-11 19:11:23 -0300 | [diff] [blame] | 127 | /* |
Arnaldo Carvalho de Melo | 4c00af0 | 2019-07-05 12:11:35 -0300 | [diff] [blame] | 128 | * 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 Melo | abd8286 | 2015-12-11 19:11:23 -0300 | [diff] [blame] | 146 | */ |
Arnaldo Carvalho de Melo | 4c00af0 | 2019-07-05 12:11:35 -0300 | [diff] [blame] | 147 | if (!list_empty(&thread->node)) |
| 148 | list_del_init(&thread->node); |
Arnaldo Carvalho de Melo | f3b623b | 2015-03-02 22:21:35 -0300 | [diff] [blame] | 149 | thread__delete(thread); |
| 150 | } |
| 151 | } |
| 152 | |
Namhyung Kim | 6584140 | 2019-05-22 14:32:48 +0900 | [diff] [blame] | 153 | static struct namespaces *__thread__namespaces(const struct thread *thread) |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 154 | { |
| 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 Kim | 7cb10a08 | 2019-05-27 15:11:49 +0900 | [diff] [blame] | 161 | struct namespaces *thread__namespaces(struct thread *thread) |
Namhyung Kim | 6584140 | 2019-05-22 14:32:48 +0900 | [diff] [blame] | 162 | { |
| 163 | struct namespaces *ns; |
| 164 | |
Namhyung Kim | 7cb10a08 | 2019-05-27 15:11:49 +0900 | [diff] [blame] | 165 | down_read(&thread->namespaces_lock); |
Namhyung Kim | 6584140 | 2019-05-22 14:32:48 +0900 | [diff] [blame] | 166 | ns = __thread__namespaces(thread); |
Namhyung Kim | 7cb10a08 | 2019-05-27 15:11:49 +0900 | [diff] [blame] | 167 | up_read(&thread->namespaces_lock); |
Namhyung Kim | 6584140 | 2019-05-22 14:32:48 +0900 | [diff] [blame] | 168 | |
| 169 | return ns; |
| 170 | } |
| 171 | |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 172 | static int __thread__set_namespaces(struct thread *thread, u64 timestamp, |
| 173 | struct namespaces_event *event) |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 174 | { |
Namhyung Kim | 6584140 | 2019-05-22 14:32:48 +0900 | [diff] [blame] | 175 | struct namespaces *new, *curr = __thread__namespaces(thread); |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 176 | |
| 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 Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 196 | int 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 Kim | 4dfced3 | 2013-09-13 16:28:57 +0900 | [diff] [blame] | 207 | struct comm *thread__comm(const struct thread *thread) |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 208 | { |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 209 | if (list_empty(&thread->comm_list)) |
| 210 | return NULL; |
David S. Miller | 4385d58 | 2010-02-26 12:08:34 -0300 | [diff] [blame] | 211 | |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 212 | return list_first_entry(&thread->comm_list, struct comm, list); |
| 213 | } |
| 214 | |
Adrian Hunter | 65de51f | 2014-07-31 09:00:44 +0300 | [diff] [blame] | 215 | struct 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 Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 228 | static int ____thread__set_comm(struct thread *thread, const char *str, |
| 229 | u64 timestamp, bool exec) |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 230 | { |
| 231 | struct comm *new, *curr = thread__comm(thread); |
| 232 | |
Adrian Hunter | a848080 | 2014-11-11 16:16:41 +0200 | [diff] [blame] | 233 | /* Override the default :tid entry */ |
| 234 | if (!thread->comm_set) { |
Arnaldo Carvalho de Melo | 18ef15c | 2016-10-03 11:07:24 -0300 | [diff] [blame] | 235 | int err = comm__override(curr, str, timestamp, exec); |
Frederic Weisbecker | 3178f58 | 2014-01-14 16:37:14 +0100 | [diff] [blame] | 236 | if (err) |
| 237 | return err; |
Frederic Weisbecker | a5285ad | 2013-11-16 02:02:09 +0100 | [diff] [blame] | 238 | } else { |
Adrian Hunter | 65de51f | 2014-07-31 09:00:44 +0300 | [diff] [blame] | 239 | new = comm__new(str, timestamp, exec); |
Frederic Weisbecker | a5285ad | 2013-11-16 02:02:09 +0100 | [diff] [blame] | 240 | if (!new) |
| 241 | return -ENOMEM; |
| 242 | list_add(&new->list, &thread->comm_list); |
Namhyung Kim | 380b514 | 2014-10-06 09:46:01 +0900 | [diff] [blame] | 243 | |
| 244 | if (exec) |
| 245 | unwind__flush_access(thread); |
David S. Miller | 4385d58 | 2010-02-26 12:08:34 -0300 | [diff] [blame] | 246 | } |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 247 | |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 248 | thread->comm_set = true; |
| 249 | |
| 250 | return 0; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 251 | } |
| 252 | |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 253 | int __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 Melo | 2f3027a | 2016-04-26 12:32:50 -0300 | [diff] [blame] | 264 | int 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 Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 281 | static const char *__thread__comm_str(const struct thread *thread) |
Frederic Weisbecker | b9c5143 | 2013-09-11 14:46:56 +0200 | [diff] [blame] | 282 | { |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 283 | const struct comm *comm = thread__comm(thread); |
| 284 | |
| 285 | if (!comm) |
| 286 | return NULL; |
| 287 | |
| 288 | return comm__str(comm); |
Frederic Weisbecker | b9c5143 | 2013-09-11 14:46:56 +0200 | [diff] [blame] | 289 | } |
| 290 | |
Namhyung Kim | 7cb10a08 | 2019-05-27 15:11:49 +0900 | [diff] [blame] | 291 | const char *thread__comm_str(struct thread *thread) |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 292 | { |
| 293 | const char *str; |
| 294 | |
Namhyung Kim | 7cb10a08 | 2019-05-27 15:11:49 +0900 | [diff] [blame] | 295 | down_read(&thread->comm_lock); |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 296 | str = __thread__comm_str(thread); |
Namhyung Kim | 7cb10a08 | 2019-05-27 15:11:49 +0900 | [diff] [blame] | 297 | up_read(&thread->comm_lock); |
Kan Liang | b32ee9e | 2017-09-29 07:47:52 -0700 | [diff] [blame] | 298 | |
| 299 | return str; |
| 300 | } |
| 301 | |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 302 | /* CHECKME: it should probably better return the max comm len from its comm list */ |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 303 | int thread__comm_len(struct thread *thread) |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 304 | { |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 305 | if (!thread->comm_len) { |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 306 | const char *comm = thread__comm_str(thread); |
| 307 | if (!comm) |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 308 | return 0; |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 309 | thread->comm_len = strlen(comm); |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 310 | } |
| 311 | |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 312 | return thread->comm_len; |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 313 | } |
| 314 | |
Arnaldo Carvalho de Melo | 3f067dc | 2012-12-07 17:39:39 -0300 | [diff] [blame] | 315 | size_t thread__fprintf(struct thread *thread, FILE *fp) |
Arnaldo Carvalho de Melo | 95011c6 | 2009-11-27 16:29:20 -0200 | [diff] [blame] | 316 | { |
Frederic Weisbecker | b9c5143 | 2013-09-11 14:46:56 +0200 | [diff] [blame] | 317 | return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) + |
Jiri Olsa | acebd40 | 2014-07-14 23:46:47 +0200 | [diff] [blame] | 318 | map_groups__fprintf(thread->mg, fp); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 319 | } |
| 320 | |
He Kuang | 8132a2a | 2016-06-03 03:33:13 +0000 | [diff] [blame] | 321 | int thread__insert_map(struct thread *thread, struct map *map) |
Arnaldo Carvalho de Melo | 1b46cdd | 2009-09-28 14:48:46 -0300 | [diff] [blame] | 322 | { |
He Kuang | 8132a2a | 2016-06-03 03:33:13 +0000 | [diff] [blame] | 323 | int ret; |
| 324 | |
Jiri Olsa | a287332 | 2016-07-04 14:16:22 +0200 | [diff] [blame] | 325 | ret = unwind__prepare_access(thread, map, NULL); |
He Kuang | 8132a2a | 2016-06-03 03:33:13 +0000 | [diff] [blame] | 326 | if (ret) |
| 327 | return ret; |
| 328 | |
Jiri Olsa | acebd40 | 2014-07-14 23:46:47 +0200 | [diff] [blame] | 329 | map_groups__fixup_overlappings(thread->mg, map, stderr); |
Arnaldo Carvalho de Melo | 93d5731 | 2014-03-21 17:57:01 -0300 | [diff] [blame] | 330 | map_groups__insert(thread->mg, map); |
He Kuang | 8132a2a | 2016-06-03 03:33:13 +0000 | [diff] [blame] | 331 | |
| 332 | return 0; |
Arnaldo Carvalho de Melo | 95011c6 | 2009-11-27 16:29:20 -0200 | [diff] [blame] | 333 | } |
| 334 | |
Jiri Olsa | 6c50258 | 2016-07-04 14:16:23 +0200 | [diff] [blame] | 335 | static int __thread__prepare_access(struct thread *thread) |
| 336 | { |
| 337 | bool initialized = false; |
Arnaldo Carvalho de Melo | 3183f8c | 2018-04-26 16:52:34 -0300 | [diff] [blame] | 338 | int err = 0; |
| 339 | struct maps *maps = &thread->mg->maps; |
| 340 | struct map *map; |
Jiri Olsa | 6c50258 | 2016-07-04 14:16:23 +0200 | [diff] [blame] | 341 | |
Arnaldo Carvalho de Melo | 3183f8c | 2018-04-26 16:52:34 -0300 | [diff] [blame] | 342 | down_read(&maps->lock); |
Jiri Olsa | 6c50258 | 2016-07-04 14:16:23 +0200 | [diff] [blame] | 343 | |
Arnaldo Carvalho de Melo | 3183f8c | 2018-04-26 16:52:34 -0300 | [diff] [blame] | 344 | 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 Olsa | 6c50258 | 2016-07-04 14:16:23 +0200 | [diff] [blame] | 348 | } |
| 349 | |
Arnaldo Carvalho de Melo | 3183f8c | 2018-04-26 16:52:34 -0300 | [diff] [blame] | 350 | up_read(&maps->lock); |
| 351 | |
Jiri Olsa | 6c50258 | 2016-07-04 14:16:23 +0200 | [diff] [blame] | 352 | return err; |
| 353 | } |
| 354 | |
| 355 | static int thread__prepare_access(struct thread *thread) |
| 356 | { |
| 357 | int err = 0; |
| 358 | |
Jiri Olsa | 382619c | 2019-04-26 09:38:04 +0200 | [diff] [blame] | 359 | if (dwarf_callchain_users) |
Jiri Olsa | 6c50258 | 2016-07-04 14:16:23 +0200 | [diff] [blame] | 360 | err = __thread__prepare_access(thread); |
| 361 | |
| 362 | return err; |
| 363 | } |
| 364 | |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 365 | static int thread__clone_map_groups(struct thread *thread, |
David Miller | 4f8f382 | 2018-10-30 22:24:04 -0700 | [diff] [blame] | 366 | struct thread *parent, |
| 367 | bool do_maps_clone) |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 368 | { |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 369 | /* This is new thread, we share map groups for process. */ |
| 370 | if (thread->pid_ == parent->pid_) |
Jiri Olsa | 6c50258 | 2016-07-04 14:16:23 +0200 | [diff] [blame] | 371 | return thread__prepare_access(thread); |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 372 | |
Adrian Hunter | 0d7e7ac | 2015-08-19 17:29:19 +0300 | [diff] [blame] | 373 | 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 Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 378 | /* But this one is new process, copy maps. */ |
David Miller | 4f8f382 | 2018-10-30 22:24:04 -0700 | [diff] [blame] | 379 | return do_maps_clone ? map_groups__clone(thread, parent->mg) : 0; |
Jiri Olsa | cddcef6 | 2014-04-09 20:54:29 +0200 | [diff] [blame] | 380 | } |
| 381 | |
David Miller | 4f8f382 | 2018-10-30 22:24:04 -0700 | [diff] [blame] | 382 | int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp, bool do_maps_clone) |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 383 | { |
Arnaldo Carvalho de Melo | faa5c5c | 2010-02-19 23:02:07 -0200 | [diff] [blame] | 384 | if (parent->comm_set) { |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 385 | const char *comm = thread__comm_str(parent); |
Arnaldo Carvalho de Melo | 18ef15c | 2016-10-03 11:07:24 -0300 | [diff] [blame] | 386 | int err; |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 387 | if (!comm) |
Arnaldo Carvalho de Melo | faa5c5c | 2010-02-19 23:02:07 -0200 | [diff] [blame] | 388 | return -ENOMEM; |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 389 | err = thread__set_comm(thread, comm, timestamp); |
David Ahern | 8d00be8 | 2013-12-10 21:35:38 -0700 | [diff] [blame] | 390 | if (err) |
Frederic Weisbecker | 1902efe | 2013-09-11 16:56:44 +0200 | [diff] [blame] | 391 | return err; |
Arnaldo Carvalho de Melo | faa5c5c | 2010-02-19 23:02:07 -0200 | [diff] [blame] | 392 | } |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 393 | |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 394 | thread->ppid = parent->tid; |
David Miller | 4f8f382 | 2018-10-30 22:24:04 -0700 | [diff] [blame] | 395 | return thread__clone_map_groups(thread, parent, do_maps_clone); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 396 | } |
Arnaldo Carvalho de Melo | 52a3cb8 | 2014-03-11 16:16:49 -0300 | [diff] [blame] | 397 | |
Arnaldo Carvalho de Melo | 26bd933 | 2018-04-25 17:58:03 -0300 | [diff] [blame] | 398 | void thread__find_cpumode_addr_location(struct thread *thread, u64 addr, |
Arnaldo Carvalho de Melo | 52a3cb8 | 2014-03-11 16:16:49 -0300 | [diff] [blame] | 399 | struct addr_location *al) |
| 400 | { |
| 401 | size_t i; |
Eric Engestrom | 3b556bc | 2016-04-25 10:47:54 +0100 | [diff] [blame] | 402 | const u8 cpumodes[] = { |
Arnaldo Carvalho de Melo | 52a3cb8 | 2014-03-11 16:16:49 -0300 | [diff] [blame] | 403 | 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 Melo | 26bd933 | 2018-04-25 17:58:03 -0300 | [diff] [blame] | 410 | thread__find_symbol(thread, cpumodes[i], addr, al); |
Arnaldo Carvalho de Melo | 52a3cb8 | 2014-03-11 16:16:49 -0300 | [diff] [blame] | 411 | if (al->map) |
| 412 | break; |
| 413 | } |
| 414 | } |
Andi Kleen | 480ca35 | 2016-05-23 17:52:24 -0700 | [diff] [blame] | 415 | |
| 416 | struct 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 Kleen | 1532593 | 2019-03-06 17:55:35 -0300 | [diff] [blame] | 426 | |
| 427 | int 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 | } |