blob: 6e0189df2b3baf96a34ac3053098bc9b331d9a7e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03002#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03003#include <inttypes.h>
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09004#include "builtin.h"
5#include "perf.h"
6
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -03007#include "util/evlist.h"
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03008#include "util/evsel.h"
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09009#include "util/util.h"
10#include "util/cache.h"
11#include "util/symbol.h"
12#include "util/thread.h"
13#include "util/header.h"
14
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060015#include <subcmd/parse-options.h>
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090016#include "util/trace-event.h"
17
18#include "util/debug.h"
19#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020020#include "util/tool.h"
Jiri Olsaf5fc1412013-10-15 16:27:32 +020021#include "util/data.h"
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090022
23#include <sys/types.h>
24#include <sys/prctl.h>
25#include <semaphore.h>
26#include <pthread.h>
27#include <math.h>
28#include <limits.h>
29
30#include <linux/list.h>
31#include <linux/hash.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030032#include <linux/kernel.h>
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090033
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090034static struct perf_session *session;
35
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090036/* based on kernel/lockdep.c */
37#define LOCKHASH_BITS 12
38#define LOCKHASH_SIZE (1UL << LOCKHASH_BITS)
39
40static struct list_head lockhash_table[LOCKHASH_SIZE];
41
42#define __lockhashfn(key) hash_long((unsigned long)key, LOCKHASH_BITS)
43#define lockhashentry(key) (lockhash_table + __lockhashfn((key)))
44
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090045struct lock_stat {
Ingo Molnar59f411b2010-01-31 08:27:58 +010046 struct list_head hash_entry;
47 struct rb_node rb; /* used for sorting */
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090048
Ingo Molnar59f411b2010-01-31 08:27:58 +010049 /*
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -030050 * FIXME: perf_evsel__intval() returns u64,
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090051 * so address of lockdep_map should be dealed as 64bit.
Ingo Molnar59f411b2010-01-31 08:27:58 +010052 * Is there more better solution?
53 */
54 void *addr; /* address of lockdep_map, used as ID */
55 char *name; /* for strcpy(), we cannot use const */
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090056
Ingo Molnar59f411b2010-01-31 08:27:58 +010057 unsigned int nr_acquire;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090058 unsigned int nr_acquired;
Ingo Molnar59f411b2010-01-31 08:27:58 +010059 unsigned int nr_contended;
60 unsigned int nr_release;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090061
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090062 unsigned int nr_readlock;
63 unsigned int nr_trylock;
Davidlohr Buesof37376c2013-09-08 19:19:19 -070064
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090065 /* these times are in nano sec. */
Davidlohr Buesof37376c2013-09-08 19:19:19 -070066 u64 avg_wait_time;
Ingo Molnar59f411b2010-01-31 08:27:58 +010067 u64 wait_time_total;
68 u64 wait_time_min;
69 u64 wait_time_max;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090070
71 int discard; /* flag of blacklist */
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090072};
73
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090074/*
75 * States of lock_seq_stat
76 *
77 * UNINITIALIZED is required for detecting first event of acquire.
78 * As the nature of lock events, there is no guarantee
79 * that the first event for the locks are acquire,
80 * it can be acquired, contended or release.
81 */
82#define SEQ_STATE_UNINITIALIZED 0 /* initial state */
83#define SEQ_STATE_RELEASED 1
84#define SEQ_STATE_ACQUIRING 2
85#define SEQ_STATE_ACQUIRED 3
86#define SEQ_STATE_READ_ACQUIRED 4
87#define SEQ_STATE_CONTENDED 5
88
89/*
90 * MAX_LOCK_DEPTH
91 * Imported from include/linux/sched.h.
92 * Should this be synchronized?
93 */
94#define MAX_LOCK_DEPTH 48
95
96/*
97 * struct lock_seq_stat:
98 * Place to put on state of one lock sequence
99 * 1) acquire -> acquired -> release
100 * 2) acquire -> contended -> acquired -> release
101 * 3) acquire (with read or try) -> release
102 * 4) Are there other patterns?
103 */
104struct lock_seq_stat {
105 struct list_head list;
106 int state;
107 u64 prev_event_time;
108 void *addr;
109
110 int read_count;
111};
112
113struct thread_stat {
114 struct rb_node rb;
115
116 u32 tid;
117 struct list_head seq_list;
118};
119
120static struct rb_root thread_stats;
121
122static struct thread_stat *thread_stat_find(u32 tid)
123{
124 struct rb_node *node;
125 struct thread_stat *st;
126
127 node = thread_stats.rb_node;
128 while (node) {
129 st = container_of(node, struct thread_stat, rb);
130 if (st->tid == tid)
131 return st;
132 else if (tid < st->tid)
133 node = node->rb_left;
134 else
135 node = node->rb_right;
136 }
137
138 return NULL;
139}
140
141static void thread_stat_insert(struct thread_stat *new)
142{
143 struct rb_node **rb = &thread_stats.rb_node;
144 struct rb_node *parent = NULL;
145 struct thread_stat *p;
146
147 while (*rb) {
148 p = container_of(*rb, struct thread_stat, rb);
149 parent = *rb;
150
151 if (new->tid < p->tid)
152 rb = &(*rb)->rb_left;
153 else if (new->tid > p->tid)
154 rb = &(*rb)->rb_right;
155 else
156 BUG_ON("inserting invalid thread_stat\n");
157 }
158
159 rb_link_node(&new->rb, parent, rb);
160 rb_insert_color(&new->rb, &thread_stats);
161}
162
163static struct thread_stat *thread_stat_findnew_after_first(u32 tid)
164{
165 struct thread_stat *st;
166
167 st = thread_stat_find(tid);
168 if (st)
169 return st;
170
171 st = zalloc(sizeof(struct thread_stat));
David Ahern33d6aef2012-08-26 12:24:43 -0600172 if (!st) {
173 pr_err("memory allocation failed\n");
174 return NULL;
175 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900176
177 st->tid = tid;
178 INIT_LIST_HEAD(&st->seq_list);
179
180 thread_stat_insert(st);
181
182 return st;
183}
184
185static struct thread_stat *thread_stat_findnew_first(u32 tid);
186static struct thread_stat *(*thread_stat_findnew)(u32 tid) =
187 thread_stat_findnew_first;
188
189static struct thread_stat *thread_stat_findnew_first(u32 tid)
190{
191 struct thread_stat *st;
192
193 st = zalloc(sizeof(struct thread_stat));
David Ahern33d6aef2012-08-26 12:24:43 -0600194 if (!st) {
195 pr_err("memory allocation failed\n");
196 return NULL;
197 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900198 st->tid = tid;
199 INIT_LIST_HEAD(&st->seq_list);
200
201 rb_link_node(&st->rb, NULL, &thread_stats.rb_node);
202 rb_insert_color(&st->rb, &thread_stats);
203
204 thread_stat_findnew = thread_stat_findnew_after_first;
205 return st;
206}
207
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900208/* build simple key function one is bigger than two */
Ingo Molnar59f411b2010-01-31 08:27:58 +0100209#define SINGLE_KEY(member) \
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900210 static int lock_stat_key_ ## member(struct lock_stat *one, \
211 struct lock_stat *two) \
212 { \
213 return one->member > two->member; \
214 }
215
216SINGLE_KEY(nr_acquired)
217SINGLE_KEY(nr_contended)
Davidlohr Buesof37376c2013-09-08 19:19:19 -0700218SINGLE_KEY(avg_wait_time)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900219SINGLE_KEY(wait_time_total)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900220SINGLE_KEY(wait_time_max)
221
Marcin Slusarz9df03ab2011-02-22 18:47:15 +0100222static int lock_stat_key_wait_time_min(struct lock_stat *one,
223 struct lock_stat *two)
224{
225 u64 s1 = one->wait_time_min;
226 u64 s2 = two->wait_time_min;
227 if (s1 == ULLONG_MAX)
228 s1 = 0;
229 if (s2 == ULLONG_MAX)
230 s2 = 0;
231 return s1 > s2;
232}
233
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900234struct lock_key {
235 /*
236 * name: the value for specify by user
237 * this should be simpler than raw name of member
238 * e.g. nr_acquired -> acquired, wait_time_total -> wait_total
239 */
Ingo Molnar59f411b2010-01-31 08:27:58 +0100240 const char *name;
241 int (*key)(struct lock_stat*, struct lock_stat*);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900242};
243
Ingo Molnar59f411b2010-01-31 08:27:58 +0100244static const char *sort_key = "acquired";
245
246static int (*compare)(struct lock_stat *, struct lock_stat *);
247
248static struct rb_root result; /* place to store sorted data */
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900249
250#define DEF_KEY_LOCK(name, fn_suffix) \
251 { #name, lock_stat_key_ ## fn_suffix }
252struct lock_key keys[] = {
253 DEF_KEY_LOCK(acquired, nr_acquired),
254 DEF_KEY_LOCK(contended, nr_contended),
Davidlohr Buesof37376c2013-09-08 19:19:19 -0700255 DEF_KEY_LOCK(avg_wait, avg_wait_time),
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900256 DEF_KEY_LOCK(wait_total, wait_time_total),
257 DEF_KEY_LOCK(wait_min, wait_time_min),
258 DEF_KEY_LOCK(wait_max, wait_time_max),
259
260 /* extra comparisons much complicated should be here */
261
262 { NULL, NULL }
263};
264
David Ahern33d6aef2012-08-26 12:24:43 -0600265static int select_key(void)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900266{
267 int i;
268
269 for (i = 0; keys[i].name; i++) {
270 if (!strcmp(keys[i].name, sort_key)) {
271 compare = keys[i].key;
David Ahern33d6aef2012-08-26 12:24:43 -0600272 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900273 }
274 }
275
David Ahern33d6aef2012-08-26 12:24:43 -0600276 pr_err("Unknown compare key: %s\n", sort_key);
277
278 return -1;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900279}
280
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900281static void insert_to_result(struct lock_stat *st,
Ingo Molnar59f411b2010-01-31 08:27:58 +0100282 int (*bigger)(struct lock_stat *, struct lock_stat *))
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900283{
284 struct rb_node **rb = &result.rb_node;
285 struct rb_node *parent = NULL;
286 struct lock_stat *p;
287
288 while (*rb) {
289 p = container_of(*rb, struct lock_stat, rb);
290 parent = *rb;
291
292 if (bigger(st, p))
293 rb = &(*rb)->rb_left;
294 else
295 rb = &(*rb)->rb_right;
296 }
297
298 rb_link_node(&st->rb, parent, rb);
299 rb_insert_color(&st->rb, &result);
300}
301
302/* returns left most element of result, and erase it */
303static struct lock_stat *pop_from_result(void)
304{
305 struct rb_node *node = result.rb_node;
306
307 if (!node)
308 return NULL;
309
310 while (node->rb_left)
311 node = node->rb_left;
312
313 rb_erase(node, &result);
314 return container_of(node, struct lock_stat, rb);
315}
316
Ingo Molnar59f411b2010-01-31 08:27:58 +0100317static struct lock_stat *lock_stat_findnew(void *addr, const char *name)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900318{
319 struct list_head *entry = lockhashentry(addr);
320 struct lock_stat *ret, *new;
321
322 list_for_each_entry(ret, entry, hash_entry) {
323 if (ret->addr == addr)
324 return ret;
325 }
326
327 new = zalloc(sizeof(struct lock_stat));
328 if (!new)
329 goto alloc_failed;
330
331 new->addr = addr;
332 new->name = zalloc(sizeof(char) * strlen(name) + 1);
Davidlohr Bueso0a98c7f2013-09-08 19:19:15 -0700333 if (!new->name) {
334 free(new);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900335 goto alloc_failed;
Davidlohr Bueso0a98c7f2013-09-08 19:19:15 -0700336 }
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900337
Davidlohr Bueso0a98c7f2013-09-08 19:19:15 -0700338 strcpy(new->name, name);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900339 new->wait_time_min = ULLONG_MAX;
340
341 list_add(&new->hash_entry, entry);
342 return new;
343
344alloc_failed:
David Ahern33d6aef2012-08-26 12:24:43 -0600345 pr_err("memory allocation failed\n");
346 return NULL;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900347}
348
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900349struct trace_lock_handler {
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300350 int (*acquire_event)(struct perf_evsel *evsel,
351 struct perf_sample *sample);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900352
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300353 int (*acquired_event)(struct perf_evsel *evsel,
354 struct perf_sample *sample);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900355
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300356 int (*contended_event)(struct perf_evsel *evsel,
357 struct perf_sample *sample);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900358
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300359 int (*release_event)(struct perf_evsel *evsel,
360 struct perf_sample *sample);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900361};
362
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900363static struct lock_seq_stat *get_seq(struct thread_stat *ts, void *addr)
364{
365 struct lock_seq_stat *seq;
366
367 list_for_each_entry(seq, &ts->seq_list, list) {
368 if (seq->addr == addr)
369 return seq;
370 }
371
372 seq = zalloc(sizeof(struct lock_seq_stat));
David Ahern33d6aef2012-08-26 12:24:43 -0600373 if (!seq) {
374 pr_err("memory allocation failed\n");
375 return NULL;
376 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900377 seq->state = SEQ_STATE_UNINITIALIZED;
378 seq->addr = addr;
379
380 list_add(&seq->list, &ts->seq_list);
381 return seq;
382}
383
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200384enum broken_state {
385 BROKEN_ACQUIRE,
386 BROKEN_ACQUIRED,
387 BROKEN_CONTENDED,
388 BROKEN_RELEASE,
389 BROKEN_MAX,
390};
391
392static int bad_hist[BROKEN_MAX];
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900393
Frederic Weisbecker84c7a212010-05-05 23:57:25 +0200394enum acquire_flags {
395 TRY_LOCK = 1,
396 READ_LOCK = 2,
397};
398
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300399static int report_lock_acquire_event(struct perf_evsel *evsel,
400 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900401{
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300402 void *addr;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900403 struct lock_stat *ls;
404 struct thread_stat *ts;
405 struct lock_seq_stat *seq;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300406 const char *name = perf_evsel__strval(evsel, sample, "name");
407 u64 tmp = perf_evsel__intval(evsel, sample, "lockdep_addr");
408 int flag = perf_evsel__intval(evsel, sample, "flag");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900409
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300410 memcpy(&addr, &tmp, sizeof(void *));
411
412 ls = lock_stat_findnew(addr, name);
David Ahern33d6aef2012-08-26 12:24:43 -0600413 if (!ls)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700414 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900415 if (ls->discard)
David Ahern33d6aef2012-08-26 12:24:43 -0600416 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900417
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300418 ts = thread_stat_findnew(sample->tid);
David Ahern33d6aef2012-08-26 12:24:43 -0600419 if (!ts)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700420 return -ENOMEM;
David Ahern33d6aef2012-08-26 12:24:43 -0600421
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300422 seq = get_seq(ts, addr);
David Ahern33d6aef2012-08-26 12:24:43 -0600423 if (!seq)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700424 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900425
426 switch (seq->state) {
427 case SEQ_STATE_UNINITIALIZED:
428 case SEQ_STATE_RELEASED:
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300429 if (!flag) {
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900430 seq->state = SEQ_STATE_ACQUIRING;
431 } else {
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300432 if (flag & TRY_LOCK)
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900433 ls->nr_trylock++;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300434 if (flag & READ_LOCK)
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900435 ls->nr_readlock++;
436 seq->state = SEQ_STATE_READ_ACQUIRED;
437 seq->read_count = 1;
438 ls->nr_acquired++;
439 }
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900440 break;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900441 case SEQ_STATE_READ_ACQUIRED:
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300442 if (flag & READ_LOCK) {
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900443 seq->read_count++;
444 ls->nr_acquired++;
445 goto end;
446 } else {
447 goto broken;
448 }
449 break;
450 case SEQ_STATE_ACQUIRED:
451 case SEQ_STATE_ACQUIRING:
452 case SEQ_STATE_CONTENDED:
453broken:
454 /* broken lock sequence, discard it */
455 ls->discard = 1;
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200456 bad_hist[BROKEN_ACQUIRE]++;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900457 list_del(&seq->list);
458 free(seq);
459 goto end;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900460 default:
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900461 BUG_ON("Unknown state of lock sequence found!\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900462 break;
463 }
464
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900465 ls->nr_acquire++;
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300466 seq->prev_event_time = sample->time;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900467end:
David Ahern33d6aef2012-08-26 12:24:43 -0600468 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900469}
470
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300471static int report_lock_acquired_event(struct perf_evsel *evsel,
472 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900473{
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300474 void *addr;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900475 struct lock_stat *ls;
476 struct thread_stat *ts;
477 struct lock_seq_stat *seq;
478 u64 contended_term;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300479 const char *name = perf_evsel__strval(evsel, sample, "name");
480 u64 tmp = perf_evsel__intval(evsel, sample, "lockdep_addr");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900481
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300482 memcpy(&addr, &tmp, sizeof(void *));
483
484 ls = lock_stat_findnew(addr, name);
David Ahern33d6aef2012-08-26 12:24:43 -0600485 if (!ls)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700486 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900487 if (ls->discard)
David Ahern33d6aef2012-08-26 12:24:43 -0600488 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900489
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300490 ts = thread_stat_findnew(sample->tid);
David Ahern33d6aef2012-08-26 12:24:43 -0600491 if (!ts)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700492 return -ENOMEM;
David Ahern33d6aef2012-08-26 12:24:43 -0600493
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300494 seq = get_seq(ts, addr);
David Ahern33d6aef2012-08-26 12:24:43 -0600495 if (!seq)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700496 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900497
498 switch (seq->state) {
499 case SEQ_STATE_UNINITIALIZED:
500 /* orphan event, do nothing */
David Ahern33d6aef2012-08-26 12:24:43 -0600501 return 0;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900502 case SEQ_STATE_ACQUIRING:
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900503 break;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900504 case SEQ_STATE_CONTENDED:
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300505 contended_term = sample->time - seq->prev_event_time;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900506 ls->wait_time_total += contended_term;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900507 if (contended_term < ls->wait_time_min)
508 ls->wait_time_min = contended_term;
Frederic Weisbecker90c0e5f2010-05-07 02:33:42 +0200509 if (ls->wait_time_max < contended_term)
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900510 ls->wait_time_max = contended_term;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900511 break;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900512 case SEQ_STATE_RELEASED:
513 case SEQ_STATE_ACQUIRED:
514 case SEQ_STATE_READ_ACQUIRED:
515 /* broken lock sequence, discard it */
516 ls->discard = 1;
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200517 bad_hist[BROKEN_ACQUIRED]++;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900518 list_del(&seq->list);
519 free(seq);
520 goto end;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900521 default:
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900522 BUG_ON("Unknown state of lock sequence found!\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900523 break;
524 }
525
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900526 seq->state = SEQ_STATE_ACQUIRED;
527 ls->nr_acquired++;
Davidlohr Buesof37376c2013-09-08 19:19:19 -0700528 ls->avg_wait_time = ls->nr_contended ? ls->wait_time_total/ls->nr_contended : 0;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300529 seq->prev_event_time = sample->time;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900530end:
David Ahern33d6aef2012-08-26 12:24:43 -0600531 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900532}
533
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300534static int report_lock_contended_event(struct perf_evsel *evsel,
535 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900536{
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300537 void *addr;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900538 struct lock_stat *ls;
539 struct thread_stat *ts;
540 struct lock_seq_stat *seq;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300541 const char *name = perf_evsel__strval(evsel, sample, "name");
542 u64 tmp = perf_evsel__intval(evsel, sample, "lockdep_addr");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900543
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300544 memcpy(&addr, &tmp, sizeof(void *));
545
546 ls = lock_stat_findnew(addr, name);
David Ahern33d6aef2012-08-26 12:24:43 -0600547 if (!ls)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700548 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900549 if (ls->discard)
David Ahern33d6aef2012-08-26 12:24:43 -0600550 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900551
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300552 ts = thread_stat_findnew(sample->tid);
David Ahern33d6aef2012-08-26 12:24:43 -0600553 if (!ts)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700554 return -ENOMEM;
David Ahern33d6aef2012-08-26 12:24:43 -0600555
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300556 seq = get_seq(ts, addr);
David Ahern33d6aef2012-08-26 12:24:43 -0600557 if (!seq)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700558 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900559
560 switch (seq->state) {
561 case SEQ_STATE_UNINITIALIZED:
562 /* orphan event, do nothing */
David Ahern33d6aef2012-08-26 12:24:43 -0600563 return 0;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900564 case SEQ_STATE_ACQUIRING:
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900565 break;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900566 case SEQ_STATE_RELEASED:
567 case SEQ_STATE_ACQUIRED:
568 case SEQ_STATE_READ_ACQUIRED:
569 case SEQ_STATE_CONTENDED:
570 /* broken lock sequence, discard it */
571 ls->discard = 1;
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200572 bad_hist[BROKEN_CONTENDED]++;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900573 list_del(&seq->list);
574 free(seq);
575 goto end;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900576 default:
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900577 BUG_ON("Unknown state of lock sequence found!\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900578 break;
579 }
580
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900581 seq->state = SEQ_STATE_CONTENDED;
582 ls->nr_contended++;
Davidlohr Buesof37376c2013-09-08 19:19:19 -0700583 ls->avg_wait_time = ls->wait_time_total/ls->nr_contended;
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300584 seq->prev_event_time = sample->time;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900585end:
David Ahern33d6aef2012-08-26 12:24:43 -0600586 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900587}
588
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300589static int report_lock_release_event(struct perf_evsel *evsel,
590 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900591{
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300592 void *addr;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900593 struct lock_stat *ls;
594 struct thread_stat *ts;
595 struct lock_seq_stat *seq;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300596 const char *name = perf_evsel__strval(evsel, sample, "name");
597 u64 tmp = perf_evsel__intval(evsel, sample, "lockdep_addr");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900598
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300599 memcpy(&addr, &tmp, sizeof(void *));
600
601 ls = lock_stat_findnew(addr, name);
David Ahern33d6aef2012-08-26 12:24:43 -0600602 if (!ls)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700603 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900604 if (ls->discard)
David Ahern33d6aef2012-08-26 12:24:43 -0600605 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900606
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300607 ts = thread_stat_findnew(sample->tid);
David Ahern33d6aef2012-08-26 12:24:43 -0600608 if (!ts)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700609 return -ENOMEM;
David Ahern33d6aef2012-08-26 12:24:43 -0600610
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300611 seq = get_seq(ts, addr);
David Ahern33d6aef2012-08-26 12:24:43 -0600612 if (!seq)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700613 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900614
615 switch (seq->state) {
616 case SEQ_STATE_UNINITIALIZED:
617 goto end;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900618 case SEQ_STATE_ACQUIRED:
619 break;
620 case SEQ_STATE_READ_ACQUIRED:
621 seq->read_count--;
622 BUG_ON(seq->read_count < 0);
623 if (!seq->read_count) {
624 ls->nr_release++;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900625 goto end;
626 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900627 break;
628 case SEQ_STATE_ACQUIRING:
629 case SEQ_STATE_CONTENDED:
630 case SEQ_STATE_RELEASED:
631 /* broken lock sequence, discard it */
632 ls->discard = 1;
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200633 bad_hist[BROKEN_RELEASE]++;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900634 goto free_seq;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900635 default:
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900636 BUG_ON("Unknown state of lock sequence found!\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900637 break;
638 }
639
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900640 ls->nr_release++;
641free_seq:
642 list_del(&seq->list);
643 free(seq);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900644end:
David Ahern33d6aef2012-08-26 12:24:43 -0600645 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900646}
647
648/* lock oriented handlers */
649/* TODO: handlers for CPU oriented, thread oriented */
Ingo Molnar59f411b2010-01-31 08:27:58 +0100650static struct trace_lock_handler report_lock_ops = {
651 .acquire_event = report_lock_acquire_event,
652 .acquired_event = report_lock_acquired_event,
653 .contended_event = report_lock_contended_event,
654 .release_event = report_lock_release_event,
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900655};
656
657static struct trace_lock_handler *trace_handler;
658
David Ahern33d6aef2012-08-26 12:24:43 -0600659static int perf_evsel__process_lock_acquire(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300660 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900661{
Ingo Molnar59f411b2010-01-31 08:27:58 +0100662 if (trace_handler->acquire_event)
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300663 return trace_handler->acquire_event(evsel, sample);
664 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900665}
666
David Ahern33d6aef2012-08-26 12:24:43 -0600667static int perf_evsel__process_lock_acquired(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300668 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900669{
David Ahern33d6aef2012-08-26 12:24:43 -0600670 if (trace_handler->acquired_event)
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300671 return trace_handler->acquired_event(evsel, sample);
672 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900673}
674
David Ahern33d6aef2012-08-26 12:24:43 -0600675static int perf_evsel__process_lock_contended(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300676 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900677{
David Ahern33d6aef2012-08-26 12:24:43 -0600678 if (trace_handler->contended_event)
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300679 return trace_handler->contended_event(evsel, sample);
680 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900681}
682
David Ahern33d6aef2012-08-26 12:24:43 -0600683static int perf_evsel__process_lock_release(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300684 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900685{
David Ahern33d6aef2012-08-26 12:24:43 -0600686 if (trace_handler->release_event)
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300687 return trace_handler->release_event(evsel, sample);
688 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900689}
690
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200691static void print_bad_events(int bad, int total)
692{
693 /* Output for debug, this have to be removed */
694 int i;
695 const char *name[4] =
696 { "acquire", "acquired", "contended", "release" };
697
698 pr_info("\n=== output for debug===\n\n");
Frederic Weisbecker5efe08c2010-05-06 04:55:22 +0200699 pr_info("bad: %d, total: %d\n", bad, total);
Davidlohr Bueso60a25cb2013-09-08 19:19:18 -0700700 pr_info("bad rate: %.2f %%\n", (double)bad / (double)total * 100);
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200701 pr_info("histogram of events caused bad sequence\n");
702 for (i = 0; i < BROKEN_MAX; i++)
703 pr_info(" %10s: %d\n", name[i], bad_hist[i]);
704}
705
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900706/* TODO: various way to print, coloring, nano or milli sec */
707static void print_result(void)
708{
709 struct lock_stat *st;
710 char cut_name[20];
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900711 int bad, total;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900712
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900713 pr_info("%20s ", "Name");
714 pr_info("%10s ", "acquired");
715 pr_info("%10s ", "contended");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900716
Davidlohr Buesof37376c2013-09-08 19:19:19 -0700717 pr_info("%15s ", "avg wait (ns)");
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900718 pr_info("%15s ", "total wait (ns)");
719 pr_info("%15s ", "max wait (ns)");
720 pr_info("%15s ", "min wait (ns)");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900721
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900722 pr_info("\n\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900723
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900724 bad = total = 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900725 while ((st = pop_from_result())) {
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900726 total++;
727 if (st->discard) {
728 bad++;
729 continue;
730 }
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900731 bzero(cut_name, 20);
732
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900733 if (strlen(st->name) < 16) {
734 /* output raw name */
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900735 pr_info("%20s ", st->name);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900736 } else {
737 strncpy(cut_name, st->name, 16);
738 cut_name[16] = '.';
739 cut_name[17] = '.';
740 cut_name[18] = '.';
741 cut_name[19] = '\0';
742 /* cut off name for saving output style */
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900743 pr_info("%20s ", cut_name);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900744 }
745
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900746 pr_info("%10u ", st->nr_acquired);
747 pr_info("%10u ", st->nr_contended);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900748
Davidlohr Buesof37376c2013-09-08 19:19:19 -0700749 pr_info("%15" PRIu64 " ", st->avg_wait_time);
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200750 pr_info("%15" PRIu64 " ", st->wait_time_total);
751 pr_info("%15" PRIu64 " ", st->wait_time_max);
752 pr_info("%15" PRIu64 " ", st->wait_time_min == ULLONG_MAX ?
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900753 0 : st->wait_time_min);
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900754 pr_info("\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900755 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900756
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200757 print_bad_events(bad, total);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900758}
759
Arnaldo Carvalho de Melo80354582010-05-17 15:51:10 -0300760static bool info_threads, info_map;
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900761
762static void dump_threads(void)
763{
764 struct thread_stat *st;
765 struct rb_node *node;
766 struct thread *t;
767
768 pr_info("%10s: comm\n", "Thread ID");
769
770 node = rb_first(&thread_stats);
771 while (node) {
772 st = container_of(node, struct thread_stat, rb);
773 t = perf_session__findnew(session, st->tid);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200774 pr_info("%10d: %s\n", st->tid, thread__comm_str(t));
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900775 node = rb_next(node);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300776 thread__put(t);
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900777 };
778}
779
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900780static void dump_map(void)
781{
782 unsigned int i;
783 struct lock_stat *st;
784
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900785 pr_info("Address of instance: name of class\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900786 for (i = 0; i < LOCKHASH_SIZE; i++) {
787 list_for_each_entry(st, &lockhash_table[i], hash_entry) {
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900788 pr_info(" %p: %s\n", st->addr, st->name);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900789 }
790 }
791}
792
David Ahern33d6aef2012-08-26 12:24:43 -0600793static int dump_info(void)
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900794{
David Ahern33d6aef2012-08-26 12:24:43 -0600795 int rc = 0;
796
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900797 if (info_threads)
798 dump_threads();
799 else if (info_map)
800 dump_map();
David Ahern33d6aef2012-08-26 12:24:43 -0600801 else {
802 rc = -1;
803 pr_err("Unknown type of information\n");
804 }
805
806 return rc;
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900807}
808
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300809typedef int (*tracepoint_handler)(struct perf_evsel *evsel,
810 struct perf_sample *sample);
811
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300812static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200813 union perf_event *event,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300814 struct perf_sample *sample,
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300815 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200816 struct machine *machine)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200817{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300818 int err = 0;
Adrian Hunter314add62013-08-27 11:23:03 +0300819 struct thread *thread = machine__findnew_thread(machine, sample->pid,
820 sample->tid);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200821
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200822 if (thread == NULL) {
823 pr_debug("problem processing %d event, skipping it.\n",
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200824 event->header.type);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200825 return -1;
826 }
827
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -0300828 if (evsel->handler != NULL) {
829 tracepoint_handler f = evsel->handler;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300830 err = f(evsel, sample);
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300831 }
832
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300833 thread__put(thread);
834
835 return err;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200836}
837
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900838static void sort_result(void)
839{
840 unsigned int i;
841 struct lock_stat *st;
842
843 for (i = 0; i < LOCKHASH_SIZE; i++) {
844 list_for_each_entry(st, &lockhash_table[i], hash_entry) {
845 insert_to_result(st, compare);
846 }
847 }
848}
849
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700850static const struct perf_evsel_str_handler lock_tracepoints[] = {
851 { "lock:lock_acquire", perf_evsel__process_lock_acquire, }, /* CONFIG_LOCKDEP */
852 { "lock:lock_acquired", perf_evsel__process_lock_acquired, }, /* CONFIG_LOCKDEP, CONFIG_LOCK_STAT */
853 { "lock:lock_contended", perf_evsel__process_lock_contended, }, /* CONFIG_LOCKDEP, CONFIG_LOCK_STAT */
854 { "lock:lock_release", perf_evsel__process_lock_release, }, /* CONFIG_LOCKDEP */
855};
856
Yunlong Songc4ac7322015-04-02 21:47:14 +0800857static bool force;
858
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700859static int __cmd_report(bool display_info)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900860{
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700861 int err = -EINVAL;
862 struct perf_tool eops = {
863 .sample = process_sample_event,
864 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +0530865 .namespaces = perf_event__process_namespaces,
Jiri Olsa0a8cb852014-07-06 14:18:21 +0200866 .ordered_events = true,
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700867 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100868 struct perf_data data = {
Jiri Olsaeae8ad82017-01-23 22:25:41 +0100869 .file = {
870 .path = input_name,
871 },
872 .mode = PERF_DATA_MODE_READ,
873 .force = force,
Jiri Olsaf5fc1412013-10-15 16:27:32 +0200874 };
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700875
Jiri Olsa8ceb41d2017-01-23 22:07:59 +0100876 session = perf_session__new(&data, false, &eops);
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700877 if (!session) {
878 pr_err("Initializing perf session failed\n");
Taeung Song52e028342014-09-24 10:33:37 +0900879 return -1;
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700880 }
881
Namhyung Kim0a7e6d12014-08-12 15:40:45 +0900882 symbol__init(&session->header.env);
Namhyung Kim6fd6c6b2014-08-12 15:40:40 +0900883
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700884 if (!perf_session__has_traces(session, "lock record"))
885 goto out_delete;
886
887 if (perf_session__set_tracepoints_handlers(session, lock_tracepoints)) {
888 pr_err("Initializing perf session tracepoint handlers failed\n");
889 goto out_delete;
890 }
891
892 if (select_key())
893 goto out_delete;
894
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300895 err = perf_session__process_events(session);
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700896 if (err)
897 goto out_delete;
898
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900899 setup_pager();
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700900 if (display_info) /* used for info subcommand */
901 err = dump_info();
902 else {
903 sort_result();
904 print_result();
905 }
David Ahern33d6aef2012-08-26 12:24:43 -0600906
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -0700907out_delete:
908 perf_session__delete(session);
909 return err;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900910}
911
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900912static int __cmd_record(int argc, const char **argv)
913{
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300914 const char *record_args[] = {
Jiri Olsa4a4d3712013-06-05 13:37:21 +0200915 "record", "-R", "-m", "1024", "-c", "1",
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300916 };
Davidlohr Bueso0a98c7f2013-09-08 19:19:15 -0700917 unsigned int rec_argc, i, j, ret;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900918 const char **rec_argv;
919
David Ahernd25dcba2012-08-09 10:35:37 -0600920 for (i = 0; i < ARRAY_SIZE(lock_tracepoints); i++) {
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300921 if (!is_valid_tracepoint(lock_tracepoints[i].name)) {
David Ahernd25dcba2012-08-09 10:35:37 -0600922 pr_err("tracepoint %s is not enabled. "
923 "Are CONFIG_LOCKDEP and CONFIG_LOCK_STAT enabled?\n",
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300924 lock_tracepoints[i].name);
David Ahernd25dcba2012-08-09 10:35:37 -0600925 return 1;
926 }
927 }
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900928
David Ahernd25dcba2012-08-09 10:35:37 -0600929 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
930 /* factor of 2 is for -e in front of each tracepoint */
931 rec_argc += 2 * ARRAY_SIZE(lock_tracepoints);
932
933 rec_argv = calloc(rec_argc + 1, sizeof(char *));
Davidlohr Bueso0a98c7f2013-09-08 19:19:15 -0700934 if (!rec_argv)
Chris Samuelce47dc52010-11-13 13:35:06 +1100935 return -ENOMEM;
936
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900937 for (i = 0; i < ARRAY_SIZE(record_args); i++)
938 rec_argv[i] = strdup(record_args[i]);
939
David Ahernd25dcba2012-08-09 10:35:37 -0600940 for (j = 0; j < ARRAY_SIZE(lock_tracepoints); j++) {
941 rec_argv[i++] = "-e";
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300942 rec_argv[i++] = strdup(lock_tracepoints[j].name);
David Ahernd25dcba2012-08-09 10:35:37 -0600943 }
944
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900945 for (j = 1; j < (unsigned int)argc; j++, i++)
946 rec_argv[i] = argv[j];
947
948 BUG_ON(i != rec_argc);
949
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300950 ret = cmd_record(i, rec_argv);
Davidlohr Bueso0a98c7f2013-09-08 19:19:15 -0700951 free(rec_argv);
952 return ret;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900953}
954
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300955int cmd_lock(int argc, const char **argv)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900956{
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300957 const struct option lock_options[] = {
958 OPT_STRING('i', "input", &input_name, "file", "input file name"),
959 OPT_INCR('v', "verbose", &verbose, "be more verbose (show symbol address, etc)"),
960 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, "dump raw trace in ASCII"),
Arnaldo Carvalho de Melob40e3612017-03-17 11:16:02 -0300961 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300962 OPT_END()
963 };
Changbin Du249eed52017-03-17 13:53:42 +0800964
965 const struct option info_options[] = {
966 OPT_BOOLEAN('t', "threads", &info_threads,
967 "dump thread list in perf.data"),
968 OPT_BOOLEAN('m', "map", &info_map,
969 "map of lock instances (address:name table)"),
Changbin Du249eed52017-03-17 13:53:42 +0800970 OPT_PARENT(lock_options)
971 };
972
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300973 const struct option report_options[] = {
974 OPT_STRING('k', "key", &sort_key, "acquired",
Davidlohr Buesof37376c2013-09-08 19:19:19 -0700975 "key for sorting (acquired / contended / avg_wait / wait_total / wait_max / wait_min)"),
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300976 /* TODO: type */
Changbin Du249eed52017-03-17 13:53:42 +0800977 OPT_PARENT(lock_options)
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300978 };
Changbin Du249eed52017-03-17 13:53:42 +0800979
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300980 const char * const info_usage[] = {
981 "perf lock info [<options>]",
982 NULL
983 };
Ramkumar Ramachandraa2368c32014-03-14 23:17:53 -0400984 const char *const lock_subcommands[] = { "record", "report", "script",
985 "info", NULL };
986 const char *lock_usage[] = {
987 NULL,
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300988 NULL
989 };
990 const char * const report_usage[] = {
991 "perf lock report [<options>]",
992 NULL
993 };
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900994 unsigned int i;
David Ahern33d6aef2012-08-26 12:24:43 -0600995 int rc = 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900996
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900997 for (i = 0; i < LOCKHASH_SIZE; i++)
998 INIT_LIST_HEAD(lockhash_table + i);
999
Ramkumar Ramachandraa2368c32014-03-14 23:17:53 -04001000 argc = parse_options_subcommand(argc, argv, lock_options, lock_subcommands,
1001 lock_usage, PARSE_OPT_STOP_AT_NON_OPTION);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09001002 if (!argc)
1003 usage_with_options(lock_usage, lock_options);
1004
1005 if (!strncmp(argv[0], "rec", 3)) {
1006 return __cmd_record(argc, argv);
Ingo Molnar59f411b2010-01-31 08:27:58 +01001007 } else if (!strncmp(argv[0], "report", 6)) {
1008 trace_handler = &report_lock_ops;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09001009 if (argc) {
1010 argc = parse_options(argc, argv,
Ingo Molnar59f411b2010-01-31 08:27:58 +01001011 report_options, report_usage, 0);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09001012 if (argc)
Ingo Molnar59f411b2010-01-31 08:27:58 +01001013 usage_with_options(report_usage, report_options);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09001014 }
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -07001015 rc = __cmd_report(false);
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001016 } else if (!strcmp(argv[0], "script")) {
1017 /* Aliased to 'perf script' */
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001018 return cmd_script(argc, argv);
Hitoshi Mitake26242d82010-05-03 14:12:00 +09001019 } else if (!strcmp(argv[0], "info")) {
1020 if (argc) {
1021 argc = parse_options(argc, argv,
1022 info_options, info_usage, 0);
1023 if (argc)
1024 usage_with_options(info_usage, info_options);
1025 }
Ingo Molnar59f411b2010-01-31 08:27:58 +01001026 /* recycling report_lock_ops */
1027 trace_handler = &report_lock_ops;
Davidlohr Bueso375eb2b2013-09-08 19:19:16 -07001028 rc = __cmd_report(true);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09001029 } else {
1030 usage_with_options(lock_usage, lock_options);
1031 }
1032
David Ahern33d6aef2012-08-26 12:24:43 -06001033 return rc;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09001034}