forked from OpenCloudOS/perf-prof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
top.c
630 lines (559 loc) · 17.8 KB
/
top.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <time.h>
#include <signal.h>
#include <linux/compiler.h>
#include <termios.h>
#include <monitor.h>
#include <dlfcn.h>
#include <tep.h>
#include <linux/rblist.h>
#include <trace_helpers.h>
#include <stack_helpers.h>
#define TASK_COMM_LEN 16
static profiler top;
struct termios save;
static struct monitor_ctx {
struct perf_evlist *evlist;
struct tp_list *tp_list;
struct rblist top_list;
unsigned long nr_events;
char *EVENT; //toupper(env->event)
int nr_fields;
int nr_top_by;
struct {
char *field;
int len;
bool top_by;
} *fields;
char *key_name;// toupper(env->key)
int key_len;
bool show_comm; // show COMM
int ws_row;
int ws_col;
bool tty;
struct env *env;
} ctx;
struct top_info {
struct rb_node rbnode;
unsigned long long key; //int pid;
char comm[TASK_COMM_LEN];
unsigned long long counter[0];
};
static int top_info_node_cmp(struct rb_node *rbn, const void *entry)
{
struct top_info *t = container_of(rbn, struct top_info, rbnode);
const struct top_info *e = entry;
if (t->key > e->key)
return 1;
else if (t->key < e->key)
return -1;
else
return 0;
}
static struct rb_node *top_info_node_new(struct rblist *rlist, const void *new_entry)
{
int size = offsetof(struct top_info, counter[ctx.nr_fields]);
const struct top_info *e = new_entry;
struct top_info *t = malloc(size);
if (t) {
RB_CLEAR_NODE(&t->rbnode);
t->key = e->key;
memset(t->comm, 0, sizeof(t->comm));
memset((void *)t + sizeof(struct top_info), 0, size - sizeof(struct top_info));
return &t->rbnode;
} else
return NULL;
}
static void top_info_node_delete(struct rblist *rblist, struct rb_node *rb_node)
{
struct top_info *t = container_of(rb_node, struct top_info, rbnode);
free(t);
}
static void top_info_node_delete_empty(struct rblist *rblist, struct rb_node *rb_node)
{
}
static int top_info_sorted_node_cmp(struct rb_node *rbn, const void *entry)
{
struct top_info *t = container_of(rbn, struct top_info, rbnode);
const struct top_info *e = entry;
int i;
if (ctx.nr_top_by)
for (i = 0; i < ctx.nr_fields; i++) {
if (!ctx.fields[i].top_by)
continue;
if (t->counter[i] > e->counter[i])
return -1;
else if (t->counter[i] < e->counter[i])
return 1;
}
for (i = 0; i < ctx.nr_fields; i++) {
if (ctx.fields[i].top_by)
continue;
if (t->counter[i] > e->counter[i])
return -1;
else if (t->counter[i] < e->counter[i])
return 1;
}
return top_info_node_cmp(rbn, entry);
}
static struct rb_node *top_info_sorted_node_new(struct rblist *rlist, const void *new_entry)
{
struct top_info *t = (void *)new_entry;
RB_CLEAR_NODE(&t->rbnode);
return &t->rbnode;
}
static void set_term_quiet_input(struct termios *old)
{
struct termios tc;
tcgetattr(0, old);
tc = *old;
tc.c_lflag &= ~(ICANON | ECHO);
tc.c_cc[VMIN] = 0;
tc.c_cc[VTIME] = 0;
tcsetattr(0, TCSANOW, &tc);
}
static void sig_winch(int sig)
{
struct winsize size;
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) == 0) {
ctx.ws_row = size.ws_row;
ctx.ws_col = size.ws_col;
}
}
static int monitor_ctx_init(struct env *env)
{
struct tep_handle *tep;
int i, j, f = 0;
int len;
char *key_name = NULL;
if (!env->event)
return -1;
tep = tep__ref();
ctx.EVENT = strdup(env->event);
len = strlen(ctx.EVENT);
for (i = 0; i < len; i++)
ctx.EVENT[i] = (char)toupper(ctx.EVENT[i]);
ctx.tp_list = tp_list_new(env->event);
if (!ctx.tp_list)
return -1;
ctx.nr_fields = ctx.tp_list->nr_top;
ctx.fields = calloc(ctx.nr_fields, sizeof(*ctx.fields));
if (!ctx.fields)
return -1;
for (i = 0; i < ctx.tp_list->nr_tp; i++) {
struct tp *tp = &ctx.tp_list->tp[i];
for (j = 0; j < tp->nr_top; j++) {
char *field = (j == 0 && tp->alias) ? tp->alias : tp->top_add[j].field;
ctx.fields[f].field = ctx.EVENT + (field - env->event);
ctx.fields[f].len = strlen(field);
ctx.fields[f].field[ctx.fields[f].len] = '\0';
ctx.fields[f].top_by = tp->top_add[j].top_by;
if (ctx.fields[f].len < 12)
ctx.fields[f].len = 12;
if (ctx.fields[f].top_by)
ctx.nr_top_by ++;
f ++;
}
if (env->key && !tp->key) {
struct tep_event *event = tep_find_event_by_name(tep, tp->sys, tp->name);
if (!tep_find_any_field(event, env->key)) {
fprintf(stderr, "Cannot find %s field at %s:%s\n", env->key, tp->sys, tp->name);
return -1;
}
}
if (tp->key && !key_name) {
key_name = strdup(tp->key);
}
}
if (!key_name && env->key) {
key_name = strdup(env->key);
}
if (key_name) {
len = strlen(key_name);
for (i = 0; i < len; i++)
key_name[i] = (char)toupper(key_name[i]);
ctx.key_name = key_name;
// key!=PID, whether to display COMM is determined by the comm attr.
ctx.show_comm = !!ctx.tp_list->nr_comm;
} else {
ctx.key_name = strdup("PID");
// key=PID can display COMM
ctx.show_comm = true;
}
ctx.key_len = strlen(ctx.key_name);
if (ctx.key_len < 8)
ctx.key_len = 8;
rblist__init(&ctx.top_list);
ctx.top_list.node_cmp = top_info_node_cmp;
ctx.top_list.node_new = top_info_node_new;
ctx.top_list.node_delete = top_info_node_delete;
ctx.ws_row = ctx.ws_col = 0;
ctx.tty = false;
if (isatty(STDOUT_FILENO)) {
ctx.tty = true;
sig_winch(SIGWINCH);
signal(SIGWINCH, sig_winch);
set_term_quiet_input(&save);
printf("\033[?1049h\033[?25l\033[H\033[2J\n");
}
if (env->interval == 0)
env->interval = 1000;
ctx.env = env;
return 0;
}
static void monitor_ctx_exit(void)
{
if (ctx.tty) {
tcsetattr(0, TCSANOW, &save);
printf("\033[?25h\n\033[?1049l");
}
rblist__exit(&ctx.top_list);
free(ctx.fields);
free(ctx.EVENT);
free(ctx.key_name);
tp_list_free(ctx.tp_list);
tep__unref();
}
static int top_init(struct perf_evlist *evlist, struct env *env)
{
struct perf_event_attr attr = {
.type = PERF_TYPE_TRACEPOINT,
.config = 0,
.size = sizeof(struct perf_event_attr),
.sample_period = 1,
.sample_type = PERF_SAMPLE_TID | PERF_SAMPLE_TIME | PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD |
PERF_SAMPLE_RAW,
.read_format = 0,
.comm = 1,
.pinned = 1,
.disabled = 1,
.watermark = 1,
.wakeup_watermark = (top.pages << 12) / 2,
};
struct perf_evsel *evsel;
int i;
if (monitor_ctx_init(env) < 0)
return -1;
for (i = 0; i < ctx.tp_list->nr_tp; i++) {
struct tp *tp = &ctx.tp_list->tp[i];
attr.config = tp->id;
evsel = perf_evsel__new(&attr);
if (!evsel) {
return -1;
}
perf_evlist__add(evlist, evsel);
tp->evsel = evsel;
attr.comm = 0;
}
ctx.evlist = evlist;
return 0;
}
static int top_filter(struct perf_evlist *evlist, struct env *env)
{
int i, err;
for (i = 0; i < ctx.tp_list->nr_tp; i++) {
struct tp *tp = &ctx.tp_list->tp[i];
if (tp->filter && tp->filter[0]) {
err = perf_evsel__apply_filter(tp->evsel, tp->filter);
if (err < 0)
return err;
}
}
return 0;
}
static void top_interval(void);
static void top_exit(struct perf_evlist *evlist)
{
top_interval();
monitor_ctx_exit();
}
// in linux/perf_event.h
// PERF_SAMPLE_TID | PERF_SAMPLE_TIME | PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD | PERF_SAMPLE_RAW
struct sample_type_raw {
struct {
__u32 pid;
__u32 tid;
} tid_entry;
__u64 time;
struct {
__u32 cpu;
__u32 reserved;
} cpu_entry;
__u64 period;
struct {
__u32 size;
union {
__u8 data[0];
unsigned short common_type;
} __packed;
} raw;
};
static void top_sample(union perf_event *event, int instance)
{
struct sample_type_raw *raw = (void *)event->sample.array;
unsigned short common_type = raw->raw.common_type;
void *data = raw->raw.data;
int size = raw->raw.size;
struct tp *tp = NULL;
int field = 0;
struct tep_record record;
struct tep_handle *tep;
struct trace_seq s;
struct tep_event *e;
const char *key = "pid";
bool raw_comm = true;
int len, i;
struct top_info info;
struct rb_node *rbn;
struct top_info *p;
tep = tep__ref();
if (ctx.show_comm && !tep_is_pid_registered(tep, raw->tid_entry.tid))
tep__update_comm(NULL, raw->tid_entry.tid);
if (ctx.env->verbose >= VERBOSE_EVENT) {
print_time(stdout);
tep__print_event(raw->time/1000, raw->cpu_entry.cpu, data, size);
}
for (i = 0; i < ctx.tp_list->nr_tp; i++) {
struct tp *tmp = &ctx.tp_list->tp[i];
if (common_type == tmp->id) {
tp = tmp;
break;
} else
field += tmp->nr_top;
}
if (tp == NULL)
goto unref;
trace_seq_init(&s);
memset(&record, 0, sizeof(record));
record.ts = raw->time/1000;
record.cpu = raw->cpu_entry.cpu;
record.size = size;
record.data = data;
e = tep_find_event_by_record(tep, &record);
/*
* tp->key: show_comm = !!nr_comm, raw_comm = true;
* env->key: show_comm = !!nr_comm, raw_comm = true;
* "pid": show_comm = true, raw_comm = true;
* raw->tid: show_comm = true, raw_comm = false;
**/
if (tp->key)
key = tp->key;
else if (ctx.env->key)
key = ctx.env->key;
if (tep_get_field_val(&s, e, key, &record, &info.key, 0) < 0) {
info.key = raw->tid_entry.tid;
raw_comm = false;
}
rbn = rblist__findnew(&ctx.top_list, &info);
if (rbn) {
p = container_of(rbn, struct top_info, rbnode);
if (ctx.show_comm) {
if (p->comm[0] == 0) {
char *comm = NULL;
if (tp->comm || raw_comm)
comm = tep_get_field_raw(&s, e, tp->comm?:"comm", &record, &len, 0);
strncpy(p->comm, comm?:tep__pid_to_comm(raw->tid_entry.tid), sizeof(info.comm)-1);
p->comm[TASK_COMM_LEN-1] = '\0';
}
} else
p->comm[0] = '\0';
} else
goto destroy;
for (i = 0; i < tp->nr_top; i++, field++) {
unsigned long long counter;
if (!tp->top_add[i].event &&
tep_get_field_val(&s, e, tp->top_add[i].field, &record, &counter, 0) == 0) {
p->counter[field] += counter;
} else
p->counter[field] += 1;
}
ctx.nr_events ++;
destroy:
trace_seq_destroy(&s);
unref:
tep__unref();
}
static inline int top_print_time(const char *fmt)
{
char timebuff[64];
struct timeval tv;
gettimeofday(&tv, NULL);
strftime(timebuff, sizeof(timebuff), "%H:%M:%S", localtime(&tv.tv_sec));
return printf(fmt, timebuff);
}
static void top_interval(void)
{
struct rb_node *rbn;
struct top_info *t;
struct rblist sorted;
int row = 3;
int printed;
int i;
if (!ctx.tty)
print_time(stdout);
else {
printf("\033[H\033[2J\033[?25h\033[7m");
}
printed = top_print_time("perf-prof - %s ");
printed += printf("sample %lu events", ctx.nr_events);
printf("%*s\n", ctx.tty && ctx.ws_col>printed ? ctx.ws_col-printed : 0, "");
// PID FIELD FIELD ... COMM
printed = printf("%*s ", ctx.key_len, ctx.key_name);
for (i = 0; i < ctx.nr_fields; i++)
printed += printf("%*s ", ctx.fields[i].len, ctx.fields[i].field);
if (ctx.show_comm)
printed += printf("%-*s", TASK_COMM_LEN, "COMM");
printf("%*s\n", ctx.tty && ctx.ws_col>printed ? ctx.ws_col-printed : 0, "");
if (ctx.tty) printf("\033[0m");
//pid_list is empty still print header
if (rblist__empty(&ctx.top_list))
return;
rblist__init(&sorted);
sorted.node_cmp = top_info_sorted_node_cmp;
sorted.node_new = top_info_sorted_node_new;
sorted.node_delete = ctx.top_list.node_delete;
ctx.top_list.node_delete = top_info_node_delete_empty; //empty, not really delete
/* sort, remove from `ctx.pid_list', add to `sorted'. */
do {
rbn = rblist__entry(&ctx.top_list, 0);
t = container_of(rbn, struct top_info, rbnode);
rblist__remove_node(&ctx.top_list, rbn);
rblist__add_node(&sorted, t);
} while (!rblist__empty(&ctx.top_list));
do {
rbn = rblist__entry(&sorted, 0);
if (!ctx.tty || !ctx.ws_row || ++row < ctx.ws_row) {
t = container_of(rbn, struct top_info, rbnode);
if (t->key < 100000000UL)
printf("%*llu ", ctx.key_len, t->key);
else
printf("0x%*llx ", ctx.key_len, t->key);
for (i = 0; i < ctx.nr_fields; i++)
printf("%*llu ", ctx.fields[i].len, t->counter[i]);
if (ctx.show_comm)
printf("%-s", *(u64*)t->comm == 0x3e2e2e2e3c /*<...>*/ ? tep__pid_to_comm(t->key) : t->comm);
printf("\n");
}
rblist__remove_node(&sorted, rbn);
} while (!rblist__empty(&sorted));
ctx.top_list.node_delete = sorted.node_delete;
}
static void top_help(struct help_ctx *hctx)
{
struct env *env = hctx->env;
int i, j, k;
bool top_by, top_add;
bool has_key = false;
printf(PROGRAME " %s ", top.name);
printf("-e \"");
for (i = 0; i < hctx->nr_list; i++) {
for (j = 0; j < hctx->tp_list[i]->nr_tp; j++) {
struct tp *tp = &hctx->tp_list[i]->tp[j];
printf("%s:%s/%s/", tp->sys, tp->name, tp->filter&&tp->filter[0]?tp->filter:".");
top_by = false;
top_add = false;
if (tp->alias)
printf("alias=%s/", tp->alias);
if (tp->nr_top) {
for (k = 0; k < tp->nr_top; k++)
if (!tp->top_add[k].event) {
if (tp->top_add[k].top_by) {
top_by = true;
printf("top-by=%s/", tp->top_add[k].field?:".");
} else {
top_add = true;
printf("top-add=%s/", tp->top_add[k].field?:".");
}
}
}
if (tp->key) {
has_key = true;
printf("key=%s/", tp->key);
}
if (tp->comm) {
printf("comm=%s/", tp->comm);
}
if (!tp->alias || !top_by || !top_add || !tp->key || !tp->comm)
printf("[");
if (!tp->alias)
printf("alias=./");
if (!top_by)
printf("top-by=./");
if (!top_add)
printf("top-add=./");
if (!tp->key)
printf("key=./");
if (!tp->comm)
printf("comm=./");
if (!tp->alias || !top_by || !top_add || !tp->key || !tp->comm)
printf("]");
if (i != hctx->nr_list - 1 ||
j != hctx->tp_list[i]->nr_tp - 1)
printf(",");
}
}
printf("\" ");
if (env->key)
printf("-k %s ", env->key);
common_help(hctx, true, true, true, true, false, true, true);
if (!env->key && !has_key)
printf("[-k .] ");
common_help(hctx, false, true, true, true, false, true, true);
printf("\n");
}
static const char *top_desc[] = PROFILER_DESC("top",
"[OPTION...] -e EVENT[...] [-i INT] [-k key]",
"Display key-value counters in top mode.", "",
"SYNOPSIS",
" Get the key from the event 'key' ATTR. Default, key=pid. Get the value from",
" the event's 'top-by' or 'top-add' ATTR. Key is the counter and value is the",
" value of the counter. Therefore, from multiple events, multiple counters are",
" constructed with different keys. The same key, the value is accumulated.",
" Finally, display these counters in top mode.",
"",
" If the -e parameter specifies multiple events, the key ATTR of these events",
" must have the same meaning.",
"",
" For each event, multiple top-by and top-add ATTR can be specified.",
"",
" For events whose key has the meaning of pid, you can specify the 'comm' ATTR",
" to display the process name.",
"",
"EXAMPLES",
" "PROGRAME" top -e kvm:kvm_exit//key=exit_reason/ -i 1000",
" "PROGRAME" top -e irq:irq_handler_entry//key=irq/ -C 0",
" "PROGRAME" top -e sched:sched_stat_runtime//top-by=runtime/ -C 0 -i 1000",
" "PROGRAME" top -e sched:sched_stat_runtime//top-by=runtime/,sched:sched_switch//key=prev_pid/comm=prev_comm/ -C 0 -i 1000",
"",
"NOTE",
" Default, key=pid, comm=comm.",
"",
" -e sched:sched_stat_runtime//top-by=runtime/",
" -e sched:sched_stat_runtime//top-by=runtime/key=pid/comm=comm/",
"",
" Are the same.");
static const char *top_argv[] = PROFILER_ARGV("top",
PROFILER_ARGV_OPTION,
PROFILER_ARGV_PROFILER, "event", "key");
static profiler top = {
.name = "top",
.desc = top_desc,
.argv = top_argv,
.pages = 4,
.help = top_help,
.init = top_init,
.filter = top_filter,
.deinit = top_exit,
.interval = top_interval,
.comm = monitor_tep__comm,
.sample = top_sample,
};
PROFILER_REGISTER(top)