1 // SPDX-License-Identifier: GPL-2.0 2 #include <errno.h> 3 #include <stdlib.h> 4 #include <stdio.h> 5 #include <string.h> 6 #include <linux/kernel.h> 7 #include <linux/zalloc.h> 8 #include "session.h" 9 #include "thread.h" 10 #include "thread-stack.h" 11 #include "debug.h" 12 #include "namespaces.h" 13 #include "comm.h" 14 #include "map.h" 15 #include "symbol.h" 16 #include "unwind.h" 17 #include "callchain.h" 18 19 #include <api/fs/fs.h> 20 21 int thread__init_map_groups(struct thread *thread, struct machine *machine) 22 { 23 pid_t pid = thread->pid_; 24 25 if (pid == thread->tid || pid == -1) { 26 thread->mg = map_groups__new(machine); 27 } else { 28 struct thread *leader = __machine__findnew_thread(machine, pid, pid); 29 if (leader) { 30 thread->mg = map_groups__get(leader->mg); 31 thread__put(leader); 32 } 33 } 34 35 return thread->mg ? 0 : -1; 36 } 37 38 struct thread *thread__new(pid_t pid, pid_t tid) 39 { 40 char *comm_str; 41 struct comm *comm; 42 struct thread *thread = zalloc(sizeof(*thread)); 43 44 if (thread != NULL) { 45 thread->pid_ = pid; 46 thread->tid = tid; 47 thread->ppid = -1; 48 thread->cpu = -1; 49 INIT_LIST_HEAD(&thread->namespaces_list); 50 INIT_LIST_HEAD(&thread->comm_list); 51 init_rwsem(&thread->namespaces_lock); 52 init_rwsem(&thread->comm_lock); 53 54 comm_str = malloc(32); 55 if (!comm_str) 56 goto err_thread; 57 58 snprintf(comm_str, 32, ":%d", tid); 59 comm = comm__new(comm_str, 0, false); 60 free(comm_str); 61 if (!comm) 62 goto err_thread; 63 64 list_add(&comm->list, &thread->comm_list); 65 refcount_set(&thread->refcnt, 1); 66 RB_CLEAR_NODE(&thread->rb_node); 67 /* Thread holds first ref to nsdata. */ 68 thread->nsinfo = nsinfo__new(pid); 69 srccode_state_init(&thread->srccode_state); 70 } 71 72 return thread; 73 74 err_thread: 75 free(thread); 76 return NULL; 77 } 78 79 void thread__delete(struct thread *thread) 80 { 81 struct namespaces *namespaces, *tmp_namespaces; 82 struct comm *comm, *tmp_comm; 83 84 BUG_ON(!RB_EMPTY_NODE(&thread->rb_node)); 85 86 thread_stack__free(thread); 87 88 if (thread->mg) { 89 map_groups__put(thread->mg); 90 thread->mg = NULL; 91 } 92 down_write(&thread->namespaces_lock); 93 list_for_each_entry_safe(namespaces, tmp_namespaces, 94 &thread->namespaces_list, list) { 95 list_del_init(&namespaces->list); 96 namespaces__free(namespaces); 97 } 98 up_write(&thread->namespaces_lock); 99 100 down_write(&thread->comm_lock); 101 list_for_each_entry_safe(comm, tmp_comm, &thread->comm_list, list) { 102 list_del_init(&comm->list); 103 comm__free(comm); 104 } 105 up_write(&thread->comm_lock); 106 107 nsinfo__zput(thread->nsinfo); 108 srccode_state_free(&thread->srccode_state); 109 110 exit_rwsem(&thread->namespaces_lock); 111 exit_rwsem(&thread->comm_lock); 112 free(thread); 113 } 114 115 struct thread *thread__get(struct thread *thread) 116 { 117 if (thread) 118 refcount_inc(&thread->refcnt); 119 return thread; 120 } 121 122 void thread__put(struct thread *thread) 123 { 124 if (thread && refcount_dec_and_test(&thread->refcnt)) { 125 /* 126 * Remove it from the dead threads list, as last reference is 127 * gone, if it is in a dead threads list. 128 * 129 * We may not be there anymore if say, the machine where it was 130 * stored was already deleted, so we already removed it from 131 * the dead threads and some other piece of code still keeps a 132 * reference. 133 * 134 * This is what 'perf sched' does and finally drops it in 135 * perf_sched__lat(), where it calls perf_sched__read_events(), 136 * that processes the events by creating a session and deleting 137 * it, which ends up destroying the list heads for the dead 138 * threads, but before it does that it removes all threads from 139 * it using list_del_init(). 140 * 141 * So we need to check here if it is in a dead threads list and 142 * if so, remove it before finally deleting the thread, to avoid 143 * an use after free situation. 144 */ 145 if (!list_empty(&thread->node)) 146 list_del_init(&thread->node); 147 thread__delete(thread); 148 } 149 } 150 151 static struct namespaces *__thread__namespaces(const struct thread *thread) 152 { 153 if (list_empty(&thread->namespaces_list)) 154 return NULL; 155 156 return list_first_entry(&thread->namespaces_list, struct namespaces, list); 157 } 158 159 struct namespaces *thread__namespaces(struct thread *thread) 160 { 161 struct namespaces *ns; 162 163 down_read(&thread->namespaces_lock); 164 ns = __thread__namespaces(thread); 165 up_read(&thread->namespaces_lock); 166 167 return ns; 168 } 169 170 static int __thread__set_namespaces(struct thread *thread, u64 timestamp, 171 struct perf_record_namespaces *event) 172 { 173 struct namespaces *new, *curr = __thread__namespaces(thread); 174 175 new = namespaces__new(event); 176 if (!new) 177 return -ENOMEM; 178 179 list_add(&new->list, &thread->namespaces_list); 180 181 if (timestamp && curr) { 182 /* 183 * setns syscall must have changed few or all the namespaces 184 * of this thread. Update end time for the namespaces 185 * previously used. 186 */ 187 curr = list_next_entry(new, list); 188 curr->end_time = timestamp; 189 } 190 191 return 0; 192 } 193 194 int thread__set_namespaces(struct thread *thread, u64 timestamp, 195 struct perf_record_namespaces *event) 196 { 197 int ret; 198 199 down_write(&thread->namespaces_lock); 200 ret = __thread__set_namespaces(thread, timestamp, event); 201 up_write(&thread->namespaces_lock); 202 return ret; 203 } 204 205 struct comm *thread__comm(const struct thread *thread) 206 { 207 if (list_empty(&thread->comm_list)) 208 return NULL; 209 210 return list_first_entry(&thread->comm_list, struct comm, list); 211 } 212 213 struct comm *thread__exec_comm(const struct thread *thread) 214 { 215 struct comm *comm, *last = NULL, *second_last = NULL; 216 217 list_for_each_entry(comm, &thread->comm_list, list) { 218 if (comm->exec) 219 return comm; 220 second_last = last; 221 last = comm; 222 } 223 224 /* 225 * 'last' with no start time might be the parent's comm of a synthesized 226 * thread (created by processing a synthesized fork event). For a main 227 * thread, that is very probably wrong. Prefer a later comm to avoid 228 * that case. 229 */ 230 if (second_last && !last->start && thread->pid_ == thread->tid) 231 return second_last; 232 233 return last; 234 } 235 236 static int ____thread__set_comm(struct thread *thread, const char *str, 237 u64 timestamp, bool exec) 238 { 239 struct comm *new, *curr = thread__comm(thread); 240 241 /* Override the default :tid entry */ 242 if (!thread->comm_set) { 243 int err = comm__override(curr, str, timestamp, exec); 244 if (err) 245 return err; 246 } else { 247 new = comm__new(str, timestamp, exec); 248 if (!new) 249 return -ENOMEM; 250 list_add(&new->list, &thread->comm_list); 251 252 if (exec) 253 unwind__flush_access(thread->mg); 254 } 255 256 thread->comm_set = true; 257 258 return 0; 259 } 260 261 int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp, 262 bool exec) 263 { 264 int ret; 265 266 down_write(&thread->comm_lock); 267 ret = ____thread__set_comm(thread, str, timestamp, exec); 268 up_write(&thread->comm_lock); 269 return ret; 270 } 271 272 int thread__set_comm_from_proc(struct thread *thread) 273 { 274 char path[64]; 275 char *comm = NULL; 276 size_t sz; 277 int err = -1; 278 279 if (!(snprintf(path, sizeof(path), "%d/task/%d/comm", 280 thread->pid_, thread->tid) >= (int)sizeof(path)) && 281 procfs__read_str(path, &comm, &sz) == 0) { 282 comm[sz - 1] = '\0'; 283 err = thread__set_comm(thread, comm, 0); 284 } 285 286 return err; 287 } 288 289 static const char *__thread__comm_str(const struct thread *thread) 290 { 291 const struct comm *comm = thread__comm(thread); 292 293 if (!comm) 294 return NULL; 295 296 return comm__str(comm); 297 } 298 299 const char *thread__comm_str(struct thread *thread) 300 { 301 const char *str; 302 303 down_read(&thread->comm_lock); 304 str = __thread__comm_str(thread); 305 up_read(&thread->comm_lock); 306 307 return str; 308 } 309 310 /* CHECKME: it should probably better return the max comm len from its comm list */ 311 int thread__comm_len(struct thread *thread) 312 { 313 if (!thread->comm_len) { 314 const char *comm = thread__comm_str(thread); 315 if (!comm) 316 return 0; 317 thread->comm_len = strlen(comm); 318 } 319 320 return thread->comm_len; 321 } 322 323 size_t thread__fprintf(struct thread *thread, FILE *fp) 324 { 325 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) + 326 map_groups__fprintf(thread->mg, fp); 327 } 328 329 int thread__insert_map(struct thread *thread, struct map *map) 330 { 331 int ret; 332 333 ret = unwind__prepare_access(thread->mg, map, NULL); 334 if (ret) 335 return ret; 336 337 map_groups__fixup_overlappings(thread->mg, map, stderr); 338 map_groups__insert(thread->mg, map); 339 340 return 0; 341 } 342 343 static int __thread__prepare_access(struct thread *thread) 344 { 345 bool initialized = false; 346 int err = 0; 347 struct maps *maps = &thread->mg->maps; 348 struct map *map; 349 350 down_read(&maps->lock); 351 352 for (map = maps__first(maps); map; map = map__next(map)) { 353 err = unwind__prepare_access(thread->mg, map, &initialized); 354 if (err || initialized) 355 break; 356 } 357 358 up_read(&maps->lock); 359 360 return err; 361 } 362 363 static int thread__prepare_access(struct thread *thread) 364 { 365 int err = 0; 366 367 if (dwarf_callchain_users) 368 err = __thread__prepare_access(thread); 369 370 return err; 371 } 372 373 static int thread__clone_map_groups(struct thread *thread, 374 struct thread *parent, 375 bool do_maps_clone) 376 { 377 /* This is new thread, we share map groups for process. */ 378 if (thread->pid_ == parent->pid_) 379 return thread__prepare_access(thread); 380 381 if (thread->mg == parent->mg) { 382 pr_debug("broken map groups on thread %d/%d parent %d/%d\n", 383 thread->pid_, thread->tid, parent->pid_, parent->tid); 384 return 0; 385 } 386 /* But this one is new process, copy maps. */ 387 return do_maps_clone ? map_groups__clone(thread, parent->mg) : 0; 388 } 389 390 int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp, bool do_maps_clone) 391 { 392 if (parent->comm_set) { 393 const char *comm = thread__comm_str(parent); 394 int err; 395 if (!comm) 396 return -ENOMEM; 397 err = thread__set_comm(thread, comm, timestamp); 398 if (err) 399 return err; 400 } 401 402 thread->ppid = parent->tid; 403 return thread__clone_map_groups(thread, parent, do_maps_clone); 404 } 405 406 void thread__find_cpumode_addr_location(struct thread *thread, u64 addr, 407 struct addr_location *al) 408 { 409 size_t i; 410 const u8 cpumodes[] = { 411 PERF_RECORD_MISC_USER, 412 PERF_RECORD_MISC_KERNEL, 413 PERF_RECORD_MISC_GUEST_USER, 414 PERF_RECORD_MISC_GUEST_KERNEL 415 }; 416 417 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) { 418 thread__find_symbol(thread, cpumodes[i], addr, al); 419 if (al->map) 420 break; 421 } 422 } 423 424 struct thread *thread__main_thread(struct machine *machine, struct thread *thread) 425 { 426 if (thread->pid_ == thread->tid) 427 return thread__get(thread); 428 429 if (thread->pid_ == -1) 430 return NULL; 431 432 return machine__find_thread(machine, thread->pid_, thread->pid_); 433 } 434 435 int thread__memcpy(struct thread *thread, struct machine *machine, 436 void *buf, u64 ip, int len, bool *is64bit) 437 { 438 u8 cpumode = PERF_RECORD_MISC_USER; 439 struct addr_location al; 440 long offset; 441 442 if (machine__kernel_ip(machine, ip)) 443 cpumode = PERF_RECORD_MISC_KERNEL; 444 445 if (!thread__find_map(thread, cpumode, ip, &al) || !al.map->dso || 446 al.map->dso->data.status == DSO_DATA_STATUS_ERROR || 447 map__load(al.map) < 0) 448 return -1; 449 450 offset = al.map->map_ip(al.map, ip); 451 if (is64bit) 452 *is64bit = al.map->dso->is_64_bit; 453 454 return dso__data_read_offset(al.map->dso, machine, offset, buf, len); 455 } 456