Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 1 | #include "../perf.h" |
| 2 | #include <stdlib.h> |
| 3 | #include <stdio.h> |
| 4 | #include <string.h> |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 5 | #include "session.h" |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 6 | #include "thread.h" |
| 7 | #include "util.h" |
Frederic Weisbecker | 6e08643 | 2009-08-18 17:04:03 +0200 | [diff] [blame] | 8 | #include "debug.h" |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 9 | |
Gui Jianfeng | c214909 | 2010-06-16 13:21:44 +0800 | [diff] [blame] | 10 | /* Skip "." and ".." directories */ |
| 11 | static int filter(const struct dirent *dir) |
| 12 | { |
| 13 | if (dir->d_name[0] == '.') |
| 14 | return 0; |
| 15 | else |
| 16 | return 1; |
| 17 | } |
| 18 | |
Zhang, Yanmin | d6d901c | 2010-03-18 11:36:05 -0300 | [diff] [blame] | 19 | int find_all_tid(int pid, pid_t ** all_tid) |
| 20 | { |
| 21 | char name[256]; |
| 22 | int items; |
| 23 | struct dirent **namelist = NULL; |
| 24 | int ret = 0; |
| 25 | int i; |
| 26 | |
| 27 | sprintf(name, "/proc/%d/task", pid); |
Gui Jianfeng | c214909 | 2010-06-16 13:21:44 +0800 | [diff] [blame] | 28 | items = scandir(name, &namelist, filter, NULL); |
Zhang, Yanmin | d6d901c | 2010-03-18 11:36:05 -0300 | [diff] [blame] | 29 | if (items <= 0) |
| 30 | return -ENOENT; |
| 31 | *all_tid = malloc(sizeof(pid_t) * items); |
| 32 | if (!*all_tid) { |
| 33 | ret = -ENOMEM; |
| 34 | goto failure; |
| 35 | } |
| 36 | |
| 37 | for (i = 0; i < items; i++) |
| 38 | (*all_tid)[i] = atoi(namelist[i]->d_name); |
| 39 | |
| 40 | ret = items; |
| 41 | |
| 42 | failure: |
| 43 | for (i=0; i<items; i++) |
| 44 | free(namelist[i]); |
| 45 | free(namelist); |
| 46 | |
| 47 | return ret; |
| 48 | } |
| 49 | |
Frederic Weisbecker | 97ea1a7 | 2009-10-08 21:04:17 +0200 | [diff] [blame] | 50 | static struct thread *thread__new(pid_t pid) |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 51 | { |
Arnaldo Carvalho de Melo | 3647948 | 2009-11-24 12:05:16 -0200 | [diff] [blame] | 52 | struct thread *self = zalloc(sizeof(*self)); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 53 | |
| 54 | if (self != NULL) { |
Arnaldo Carvalho de Melo | 9958e1f | 2009-12-11 14:50:36 -0200 | [diff] [blame] | 55 | map_groups__init(&self->mg); |
| 56 | self->pid = pid; |
Frederic Weisbecker | 97ea1a7 | 2009-10-08 21:04:17 +0200 | [diff] [blame] | 57 | self->comm = malloc(32); |
| 58 | if (self->comm) |
| 59 | snprintf(self->comm, 32, ":%d", self->pid); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | return self; |
| 63 | } |
| 64 | |
| 65 | int thread__set_comm(struct thread *self, const char *comm) |
| 66 | { |
David S. Miller | 4385d58 | 2010-02-26 12:08:34 -0300 | [diff] [blame] | 67 | int err; |
| 68 | |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 69 | if (self->comm) |
| 70 | free(self->comm); |
| 71 | self->comm = strdup(comm); |
David S. Miller | 4385d58 | 2010-02-26 12:08:34 -0300 | [diff] [blame] | 72 | err = self->comm == NULL ? -ENOMEM : 0; |
| 73 | if (!err) { |
| 74 | self->comm_set = true; |
| 75 | map_groups__flush(&self->mg); |
| 76 | } |
| 77 | return err; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 78 | } |
| 79 | |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 80 | int thread__comm_len(struct thread *self) |
| 81 | { |
| 82 | if (!self->comm_len) { |
| 83 | if (!self->comm) |
| 84 | return 0; |
| 85 | self->comm_len = strlen(self->comm); |
| 86 | } |
| 87 | |
| 88 | return self->comm_len; |
| 89 | } |
| 90 | |
Arnaldo Carvalho de Melo | 95011c6 | 2009-11-27 16:29:20 -0200 | [diff] [blame] | 91 | static size_t thread__fprintf(struct thread *self, FILE *fp) |
| 92 | { |
Arnaldo Carvalho de Melo | 9958e1f | 2009-12-11 14:50:36 -0200 | [diff] [blame] | 93 | return fprintf(fp, "Thread %d %s\n", self->pid, self->comm) + |
Arnaldo Carvalho de Melo | c6e718f | 2010-03-26 12:11:06 -0300 | [diff] [blame] | 94 | map_groups__fprintf(&self->mg, verbose, fp); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 95 | } |
| 96 | |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 97 | struct thread *perf_session__findnew(struct perf_session *self, pid_t pid) |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 98 | { |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 99 | struct rb_node **p = &self->threads.rb_node; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 100 | struct rb_node *parent = NULL; |
| 101 | struct thread *th; |
| 102 | |
| 103 | /* |
| 104 | * Font-end cache - PID lookups come in blocks, |
| 105 | * so most of the time we dont have to look up |
| 106 | * the full rbtree: |
| 107 | */ |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 108 | if (self->last_match && self->last_match->pid == pid) |
| 109 | return self->last_match; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 110 | |
| 111 | while (*p != NULL) { |
| 112 | parent = *p; |
| 113 | th = rb_entry(parent, struct thread, rb_node); |
| 114 | |
| 115 | if (th->pid == pid) { |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 116 | self->last_match = th; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 117 | return th; |
| 118 | } |
| 119 | |
| 120 | if (pid < th->pid) |
| 121 | p = &(*p)->rb_left; |
| 122 | else |
| 123 | p = &(*p)->rb_right; |
| 124 | } |
| 125 | |
Frederic Weisbecker | 97ea1a7 | 2009-10-08 21:04:17 +0200 | [diff] [blame] | 126 | th = thread__new(pid); |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 127 | if (th != NULL) { |
| 128 | rb_link_node(&th->rb_node, parent, p); |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 129 | rb_insert_color(&th->rb_node, &self->threads); |
| 130 | self->last_match = th; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | return th; |
| 134 | } |
| 135 | |
Arnaldo Carvalho de Melo | 1b46cdd | 2009-09-28 14:48:46 -0300 | [diff] [blame] | 136 | void thread__insert_map(struct thread *self, struct map *map) |
| 137 | { |
Arnaldo Carvalho de Melo | c6e718f | 2010-03-26 12:11:06 -0300 | [diff] [blame] | 138 | map_groups__fixup_overlappings(&self->mg, map, verbose, stderr); |
Arnaldo Carvalho de Melo | 9958e1f | 2009-12-11 14:50:36 -0200 | [diff] [blame] | 139 | map_groups__insert(&self->mg, map); |
Arnaldo Carvalho de Melo | 95011c6 | 2009-11-27 16:29:20 -0200 | [diff] [blame] | 140 | } |
| 141 | |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 142 | int thread__fork(struct thread *self, struct thread *parent) |
| 143 | { |
Arnaldo Carvalho de Melo | 95011c6 | 2009-11-27 16:29:20 -0200 | [diff] [blame] | 144 | int i; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 145 | |
Arnaldo Carvalho de Melo | faa5c5c | 2010-02-19 23:02:07 -0200 | [diff] [blame] | 146 | if (parent->comm_set) { |
| 147 | if (self->comm) |
| 148 | free(self->comm); |
| 149 | self->comm = strdup(parent->comm); |
| 150 | if (!self->comm) |
| 151 | return -ENOMEM; |
| 152 | self->comm_set = true; |
| 153 | } |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 154 | |
Arnaldo Carvalho de Melo | 95011c6 | 2009-11-27 16:29:20 -0200 | [diff] [blame] | 155 | for (i = 0; i < MAP__NR_TYPES; ++i) |
Arnaldo Carvalho de Melo | 9958e1f | 2009-12-11 14:50:36 -0200 | [diff] [blame] | 156 | if (map_groups__clone(&self->mg, &parent->mg, i) < 0) |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 157 | return -ENOMEM; |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 158 | return 0; |
| 159 | } |
| 160 | |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 161 | size_t perf_session__fprintf(struct perf_session *self, FILE *fp) |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 162 | { |
| 163 | size_t ret = 0; |
| 164 | struct rb_node *nd; |
| 165 | |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 166 | for (nd = rb_first(&self->threads); nd; nd = rb_next(nd)) { |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 167 | struct thread *pos = rb_entry(nd, struct thread, rb_node); |
| 168 | |
| 169 | ret += thread__fprintf(pos, fp); |
| 170 | } |
| 171 | |
| 172 | return ret; |
| 173 | } |