1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/kernel.h>
7 #include <linux/zalloc.h>
11 #include "thread-stack.h"
13 #include "namespaces.h"
18 #include "callchain.h"
20 #include <api/fs/fs.h>
22 int thread__init_maps(struct thread *thread, struct machine *machine)
24 pid_t pid = thread->pid_;
26 if (pid == thread->tid || pid == -1) {
27 thread->maps = maps__new(machine);
29 struct thread *leader = __machine__findnew_thread(machine, pid, pid);
31 thread->maps = maps__get(leader->maps);
36 return thread->maps ? 0 : -1;
39 struct thread *thread__new(pid_t pid, pid_t tid)
43 struct thread *thread = zalloc(sizeof(*thread));
50 thread->guest_cpu = -1;
51 thread->lbr_stitch_enable = false;
52 INIT_LIST_HEAD(&thread->namespaces_list);
53 INIT_LIST_HEAD(&thread->comm_list);
54 init_rwsem(&thread->namespaces_lock);
55 init_rwsem(&thread->comm_lock);
57 comm_str = malloc(32);
61 snprintf(comm_str, 32, ":%d", tid);
62 comm = comm__new(comm_str, 0, false);
67 list_add(&comm->list, &thread->comm_list);
68 refcount_set(&thread->refcnt, 1);
69 RB_CLEAR_NODE(&thread->rb_node);
70 /* Thread holds first ref to nsdata. */
71 thread->nsinfo = nsinfo__new(pid);
72 srccode_state_init(&thread->srccode_state);
82 void thread__delete(struct thread *thread)
84 struct namespaces *namespaces, *tmp_namespaces;
85 struct comm *comm, *tmp_comm;
87 BUG_ON(!RB_EMPTY_NODE(&thread->rb_node));
89 thread_stack__free(thread);
92 maps__put(thread->maps);
95 down_write(&thread->namespaces_lock);
96 list_for_each_entry_safe(namespaces, tmp_namespaces,
97 &thread->namespaces_list, list) {
98 list_del_init(&namespaces->list);
99 namespaces__free(namespaces);
101 up_write(&thread->namespaces_lock);
103 down_write(&thread->comm_lock);
104 list_for_each_entry_safe(comm, tmp_comm, &thread->comm_list, list) {
105 list_del_init(&comm->list);
108 up_write(&thread->comm_lock);
110 nsinfo__zput(thread->nsinfo);
111 srccode_state_free(&thread->srccode_state);
113 exit_rwsem(&thread->namespaces_lock);
114 exit_rwsem(&thread->comm_lock);
115 thread__free_stitch_list(thread);
119 struct thread *thread__get(struct thread *thread)
122 refcount_inc(&thread->refcnt);
126 void thread__put(struct thread *thread)
128 if (thread && refcount_dec_and_test(&thread->refcnt)) {
130 * Remove it from the dead threads list, as last reference is
131 * gone, if it is in a dead threads list.
133 * We may not be there anymore if say, the machine where it was
134 * stored was already deleted, so we already removed it from
135 * the dead threads and some other piece of code still keeps a
138 * This is what 'perf sched' does and finally drops it in
139 * perf_sched__lat(), where it calls perf_sched__read_events(),
140 * that processes the events by creating a session and deleting
141 * it, which ends up destroying the list heads for the dead
142 * threads, but before it does that it removes all threads from
143 * it using list_del_init().
145 * So we need to check here if it is in a dead threads list and
146 * if so, remove it before finally deleting the thread, to avoid
147 * an use after free situation.
149 if (!list_empty(&thread->node))
150 list_del_init(&thread->node);
151 thread__delete(thread);
155 static struct namespaces *__thread__namespaces(const struct thread *thread)
157 if (list_empty(&thread->namespaces_list))
160 return list_first_entry(&thread->namespaces_list, struct namespaces, list);
163 struct namespaces *thread__namespaces(struct thread *thread)
165 struct namespaces *ns;
167 down_read(&thread->namespaces_lock);
168 ns = __thread__namespaces(thread);
169 up_read(&thread->namespaces_lock);
174 static int __thread__set_namespaces(struct thread *thread, u64 timestamp,
175 struct perf_record_namespaces *event)
177 struct namespaces *new, *curr = __thread__namespaces(thread);
179 new = namespaces__new(event);
183 list_add(&new->list, &thread->namespaces_list);
185 if (timestamp && curr) {
187 * setns syscall must have changed few or all the namespaces
188 * of this thread. Update end time for the namespaces
191 curr = list_next_entry(new, list);
192 curr->end_time = timestamp;
198 int thread__set_namespaces(struct thread *thread, u64 timestamp,
199 struct perf_record_namespaces *event)
203 down_write(&thread->namespaces_lock);
204 ret = __thread__set_namespaces(thread, timestamp, event);
205 up_write(&thread->namespaces_lock);
209 struct comm *thread__comm(const struct thread *thread)
211 if (list_empty(&thread->comm_list))
214 return list_first_entry(&thread->comm_list, struct comm, list);
217 struct comm *thread__exec_comm(const struct thread *thread)
219 struct comm *comm, *last = NULL, *second_last = NULL;
221 list_for_each_entry(comm, &thread->comm_list, list) {
229 * 'last' with no start time might be the parent's comm of a synthesized
230 * thread (created by processing a synthesized fork event). For a main
231 * thread, that is very probably wrong. Prefer a later comm to avoid
234 if (second_last && !last->start && thread->pid_ == thread->tid)
240 static int ____thread__set_comm(struct thread *thread, const char *str,
241 u64 timestamp, bool exec)
243 struct comm *new, *curr = thread__comm(thread);
245 /* Override the default :tid entry */
246 if (!thread->comm_set) {
247 int err = comm__override(curr, str, timestamp, exec);
251 new = comm__new(str, timestamp, exec);
254 list_add(&new->list, &thread->comm_list);
257 unwind__flush_access(thread->maps);
260 thread->comm_set = true;
265 int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp,
270 down_write(&thread->comm_lock);
271 ret = ____thread__set_comm(thread, str, timestamp, exec);
272 up_write(&thread->comm_lock);
276 int thread__set_comm_from_proc(struct thread *thread)
283 if (!(snprintf(path, sizeof(path), "%d/task/%d/comm",
284 thread->pid_, thread->tid) >= (int)sizeof(path)) &&
285 procfs__read_str(path, &comm, &sz) == 0) {
287 err = thread__set_comm(thread, comm, 0);
293 static const char *__thread__comm_str(const struct thread *thread)
295 const struct comm *comm = thread__comm(thread);
300 return comm__str(comm);
303 const char *thread__comm_str(struct thread *thread)
307 down_read(&thread->comm_lock);
308 str = __thread__comm_str(thread);
309 up_read(&thread->comm_lock);
314 static int __thread__comm_len(struct thread *thread, const char *comm)
318 thread->comm_len = strlen(comm);
320 return thread->comm_len;
323 /* CHECKME: it should probably better return the max comm len from its comm list */
324 int thread__comm_len(struct thread *thread)
326 int comm_len = thread->comm_len;
331 down_read(&thread->comm_lock);
332 comm = __thread__comm_str(thread);
333 comm_len = __thread__comm_len(thread, comm);
334 up_read(&thread->comm_lock);
340 size_t thread__fprintf(struct thread *thread, FILE *fp)
342 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
343 maps__fprintf(thread->maps, fp);
346 int thread__insert_map(struct thread *thread, struct map *map)
350 ret = unwind__prepare_access(thread->maps, map, NULL);
354 maps__fixup_overlappings(thread->maps, map, stderr);
355 return maps__insert(thread->maps, map);
358 static int __thread__prepare_access(struct thread *thread)
360 bool initialized = false;
362 struct maps *maps = thread->maps;
363 struct map_rb_node *rb_node;
365 down_read(maps__lock(maps));
367 maps__for_each_entry(maps, rb_node) {
368 err = unwind__prepare_access(thread->maps, rb_node->map, &initialized);
369 if (err || initialized)
373 up_read(maps__lock(maps));
378 static int thread__prepare_access(struct thread *thread)
382 if (dwarf_callchain_users)
383 err = __thread__prepare_access(thread);
388 static int thread__clone_maps(struct thread *thread, struct thread *parent, bool do_maps_clone)
390 /* This is new thread, we share map groups for process. */
391 if (thread->pid_ == parent->pid_)
392 return thread__prepare_access(thread);
394 if (thread->maps == parent->maps) {
395 pr_debug("broken map groups on thread %d/%d parent %d/%d\n",
396 thread->pid_, thread->tid, parent->pid_, parent->tid);
399 /* But this one is new process, copy maps. */
400 return do_maps_clone ? maps__clone(thread, parent->maps) : 0;
403 int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp, bool do_maps_clone)
405 if (parent->comm_set) {
406 const char *comm = thread__comm_str(parent);
410 err = thread__set_comm(thread, comm, timestamp);
415 thread->ppid = parent->tid;
416 return thread__clone_maps(thread, parent, do_maps_clone);
419 void thread__find_cpumode_addr_location(struct thread *thread, u64 addr,
420 struct addr_location *al)
423 const u8 cpumodes[] = {
424 PERF_RECORD_MISC_USER,
425 PERF_RECORD_MISC_KERNEL,
426 PERF_RECORD_MISC_GUEST_USER,
427 PERF_RECORD_MISC_GUEST_KERNEL
430 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) {
431 thread__find_symbol(thread, cpumodes[i], addr, al);
437 struct thread *thread__main_thread(struct machine *machine, struct thread *thread)
439 if (thread->pid_ == thread->tid)
440 return thread__get(thread);
442 if (thread->pid_ == -1)
445 return machine__find_thread(machine, thread->pid_, thread->pid_);
448 int thread__memcpy(struct thread *thread, struct machine *machine,
449 void *buf, u64 ip, int len, bool *is64bit)
451 u8 cpumode = PERF_RECORD_MISC_USER;
452 struct addr_location al;
456 if (machine__kernel_ip(machine, ip))
457 cpumode = PERF_RECORD_MISC_KERNEL;
459 if (!thread__find_map(thread, cpumode, ip, &al))
462 dso = map__dso(al.map);
464 if( !dso || dso->data.status == DSO_DATA_STATUS_ERROR || map__load(al.map) < 0)
467 offset = map__map_ip(al.map, ip);
469 *is64bit = dso->is_64_bit;
471 return dso__data_read_offset(dso, machine, offset, buf, len);
474 void thread__free_stitch_list(struct thread *thread)
476 struct lbr_stitch *lbr_stitch = thread->lbr_stitch;
477 struct stitch_list *pos, *tmp;
482 list_for_each_entry_safe(pos, tmp, &lbr_stitch->lists, node) {
483 list_del_init(&pos->node);
487 list_for_each_entry_safe(pos, tmp, &lbr_stitch->free_lists, node) {
488 list_del_init(&pos->node);
492 zfree(&lbr_stitch->prev_lbr_cursor);
493 zfree(&thread->lbr_stitch);