]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - tools/perf/builtin-kvm.c
perf kvm: Rename perf_kvm to perf_kvm_stat
[mirror_ubuntu-hirsute-kernel.git] / tools / perf / builtin-kvm.c
CommitLineData
a1645ce1
ZY
1#include "builtin.h"
2#include "perf.h"
3
bcf6edcd 4#include "util/evsel.h"
a1645ce1
ZY
5#include "util/util.h"
6#include "util/cache.h"
7#include "util/symbol.h"
8#include "util/thread.h"
9#include "util/header.h"
10#include "util/session.h"
11
12#include "util/parse-options.h"
13#include "util/trace-event.h"
a1645ce1 14#include "util/debug.h"
bcf6edcd
XG
15#include "util/debugfs.h"
16#include "util/tool.h"
17#include "util/stat.h"
a1645ce1
ZY
18
19#include <sys/prctl.h>
20
21#include <semaphore.h>
22#include <pthread.h>
23#include <math.h>
24
d2709c7c
DH
25#include <asm/svm.h>
26#include <asm/vmx.h>
27#include <asm/kvm.h>
bcf6edcd
XG
28
29struct event_key {
30 #define INVALID_KEY (~0ULL)
31 u64 key;
32 int info;
33};
34
de332ac4
DA
35struct kvm_event_stats {
36 u64 time;
37 struct stats stats;
38};
39
40struct kvm_event {
41 struct list_head hash_entry;
42 struct rb_node rb;
43
44 struct event_key key;
45
46 struct kvm_event_stats total;
47
48 #define DEFAULT_VCPU_NUM 8
49 int max_vcpu;
50 struct kvm_event_stats *vcpu;
51};
52
53typedef int (*key_cmp_fun)(struct kvm_event*, struct kvm_event*, int);
54
55struct kvm_event_key {
56 const char *name;
57 key_cmp_fun key;
58};
59
60
3786063a 61struct perf_kvm_stat;
de332ac4 62
bcf6edcd 63struct kvm_events_ops {
14907e73
ACM
64 bool (*is_begin_event)(struct perf_evsel *evsel,
65 struct perf_sample *sample,
66 struct event_key *key);
67 bool (*is_end_event)(struct perf_evsel *evsel,
68 struct perf_sample *sample, struct event_key *key);
3786063a 69 void (*decode_key)(struct perf_kvm_stat *kvm, struct event_key *key,
de332ac4 70 char decode[20]);
bcf6edcd
XG
71 const char *name;
72};
73
de332ac4
DA
74struct exit_reasons_table {
75 unsigned long exit_code;
76 const char *reason;
77};
78
79#define EVENTS_BITS 12
80#define EVENTS_CACHE_SIZE (1UL << EVENTS_BITS)
81
3786063a 82struct perf_kvm_stat {
de332ac4
DA
83 struct perf_tool tool;
84 struct perf_session *session;
85
86 const char *file_name;
87 const char *report_event;
88 const char *sort_key;
89 int trace_vcpu;
90
91 struct exit_reasons_table *exit_reasons;
92 int exit_reasons_size;
93 const char *exit_reasons_isa;
94
95 struct kvm_events_ops *events_ops;
96 key_cmp_fun compare;
97 struct list_head kvm_events_cache[EVENTS_CACHE_SIZE];
98 u64 total_time;
99 u64 total_count;
100
101 struct rb_root result;
102};
103
104
14907e73
ACM
105static void exit_event_get_key(struct perf_evsel *evsel,
106 struct perf_sample *sample,
107 struct event_key *key)
bcf6edcd
XG
108{
109 key->info = 0;
14907e73 110 key->key = perf_evsel__intval(evsel, sample, "exit_reason");
bcf6edcd
XG
111}
112
14907e73 113static bool kvm_exit_event(struct perf_evsel *evsel)
bcf6edcd 114{
14907e73 115 return !strcmp(evsel->name, "kvm:kvm_exit");
bcf6edcd
XG
116}
117
14907e73
ACM
118static bool exit_event_begin(struct perf_evsel *evsel,
119 struct perf_sample *sample, struct event_key *key)
bcf6edcd 120{
14907e73
ACM
121 if (kvm_exit_event(evsel)) {
122 exit_event_get_key(evsel, sample, key);
bcf6edcd
XG
123 return true;
124 }
125
126 return false;
127}
128
14907e73 129static bool kvm_entry_event(struct perf_evsel *evsel)
bcf6edcd 130{
14907e73 131 return !strcmp(evsel->name, "kvm:kvm_entry");
bcf6edcd
XG
132}
133
14907e73
ACM
134static bool exit_event_end(struct perf_evsel *evsel,
135 struct perf_sample *sample __maybe_unused,
136 struct event_key *key __maybe_unused)
bcf6edcd 137{
14907e73 138 return kvm_entry_event(evsel);
bcf6edcd
XG
139}
140
de332ac4 141static struct exit_reasons_table vmx_exit_reasons[] = {
bcf6edcd
XG
142 VMX_EXIT_REASONS
143};
144
de332ac4 145static struct exit_reasons_table svm_exit_reasons[] = {
bcf6edcd
XG
146 SVM_EXIT_REASONS
147};
148
3786063a 149static const char *get_exit_reason(struct perf_kvm_stat *kvm, u64 exit_code)
bcf6edcd 150{
de332ac4
DA
151 int i = kvm->exit_reasons_size;
152 struct exit_reasons_table *tbl = kvm->exit_reasons;
bcf6edcd 153
de332ac4
DA
154 while (i--) {
155 if (tbl->exit_code == exit_code)
156 return tbl->reason;
157 tbl++;
bcf6edcd
XG
158 }
159
160 pr_err("unknown kvm exit code:%lld on %s\n",
de332ac4 161 (unsigned long long)exit_code, kvm->exit_reasons_isa);
bcf6edcd
XG
162 return "UNKNOWN";
163}
164
3786063a 165static void exit_event_decode_key(struct perf_kvm_stat *kvm,
de332ac4
DA
166 struct event_key *key,
167 char decode[20])
bcf6edcd 168{
de332ac4 169 const char *exit_reason = get_exit_reason(kvm, key->key);
bcf6edcd
XG
170
171 scnprintf(decode, 20, "%s", exit_reason);
172}
173
174static struct kvm_events_ops exit_events = {
175 .is_begin_event = exit_event_begin,
176 .is_end_event = exit_event_end,
177 .decode_key = exit_event_decode_key,
178 .name = "VM-EXIT"
179};
180
de332ac4
DA
181/*
182 * For the mmio events, we treat:
183 * the time of MMIO write: kvm_mmio(KVM_TRACE_MMIO_WRITE...) -> kvm_entry
184 * the time of MMIO read: kvm_exit -> kvm_mmio(KVM_TRACE_MMIO_READ...).
185 */
14907e73
ACM
186static void mmio_event_get_key(struct perf_evsel *evsel, struct perf_sample *sample,
187 struct event_key *key)
bcf6edcd 188{
14907e73
ACM
189 key->key = perf_evsel__intval(evsel, sample, "gpa");
190 key->info = perf_evsel__intval(evsel, sample, "type");
bcf6edcd
XG
191}
192
193#define KVM_TRACE_MMIO_READ_UNSATISFIED 0
194#define KVM_TRACE_MMIO_READ 1
195#define KVM_TRACE_MMIO_WRITE 2
196
14907e73
ACM
197static bool mmio_event_begin(struct perf_evsel *evsel,
198 struct perf_sample *sample, struct event_key *key)
bcf6edcd
XG
199{
200 /* MMIO read begin event in kernel. */
14907e73 201 if (kvm_exit_event(evsel))
bcf6edcd
XG
202 return true;
203
204 /* MMIO write begin event in kernel. */
14907e73
ACM
205 if (!strcmp(evsel->name, "kvm:kvm_mmio") &&
206 perf_evsel__intval(evsel, sample, "type") == KVM_TRACE_MMIO_WRITE) {
207 mmio_event_get_key(evsel, sample, key);
bcf6edcd
XG
208 return true;
209 }
210
211 return false;
212}
213
14907e73
ACM
214static bool mmio_event_end(struct perf_evsel *evsel, struct perf_sample *sample,
215 struct event_key *key)
bcf6edcd
XG
216{
217 /* MMIO write end event in kernel. */
14907e73 218 if (kvm_entry_event(evsel))
bcf6edcd
XG
219 return true;
220
221 /* MMIO read end event in kernel.*/
14907e73
ACM
222 if (!strcmp(evsel->name, "kvm:kvm_mmio") &&
223 perf_evsel__intval(evsel, sample, "type") == KVM_TRACE_MMIO_READ) {
224 mmio_event_get_key(evsel, sample, key);
bcf6edcd
XG
225 return true;
226 }
227
228 return false;
229}
230
3786063a 231static void mmio_event_decode_key(struct perf_kvm_stat *kvm __maybe_unused,
de332ac4
DA
232 struct event_key *key,
233 char decode[20])
bcf6edcd
XG
234{
235 scnprintf(decode, 20, "%#lx:%s", (unsigned long)key->key,
236 key->info == KVM_TRACE_MMIO_WRITE ? "W" : "R");
237}
238
239static struct kvm_events_ops mmio_events = {
240 .is_begin_event = mmio_event_begin,
241 .is_end_event = mmio_event_end,
242 .decode_key = mmio_event_decode_key,
243 .name = "MMIO Access"
244};
245
246 /* The time of emulation pio access is from kvm_pio to kvm_entry. */
14907e73
ACM
247static void ioport_event_get_key(struct perf_evsel *evsel,
248 struct perf_sample *sample,
249 struct event_key *key)
bcf6edcd 250{
14907e73
ACM
251 key->key = perf_evsel__intval(evsel, sample, "port");
252 key->info = perf_evsel__intval(evsel, sample, "rw");
bcf6edcd
XG
253}
254
14907e73
ACM
255static bool ioport_event_begin(struct perf_evsel *evsel,
256 struct perf_sample *sample,
257 struct event_key *key)
bcf6edcd 258{
14907e73
ACM
259 if (!strcmp(evsel->name, "kvm:kvm_pio")) {
260 ioport_event_get_key(evsel, sample, key);
bcf6edcd
XG
261 return true;
262 }
263
264 return false;
265}
266
14907e73
ACM
267static bool ioport_event_end(struct perf_evsel *evsel,
268 struct perf_sample *sample __maybe_unused,
bcf6edcd
XG
269 struct event_key *key __maybe_unused)
270{
14907e73 271 return kvm_entry_event(evsel);
bcf6edcd
XG
272}
273
3786063a 274static void ioport_event_decode_key(struct perf_kvm_stat *kvm __maybe_unused,
de332ac4
DA
275 struct event_key *key,
276 char decode[20])
bcf6edcd
XG
277{
278 scnprintf(decode, 20, "%#llx:%s", (unsigned long long)key->key,
279 key->info ? "POUT" : "PIN");
280}
281
282static struct kvm_events_ops ioport_events = {
283 .is_begin_event = ioport_event_begin,
284 .is_end_event = ioport_event_end,
285 .decode_key = ioport_event_decode_key,
286 .name = "IO Port Access"
287};
288
3786063a 289static bool register_kvm_events_ops(struct perf_kvm_stat *kvm)
bcf6edcd
XG
290{
291 bool ret = true;
292
de332ac4
DA
293 if (!strcmp(kvm->report_event, "vmexit"))
294 kvm->events_ops = &exit_events;
295 else if (!strcmp(kvm->report_event, "mmio"))
296 kvm->events_ops = &mmio_events;
297 else if (!strcmp(kvm->report_event, "ioport"))
298 kvm->events_ops = &ioport_events;
bcf6edcd 299 else {
de332ac4 300 pr_err("Unknown report event:%s\n", kvm->report_event);
bcf6edcd
XG
301 ret = false;
302 }
303
304 return ret;
305}
306
bcf6edcd
XG
307struct vcpu_event_record {
308 int vcpu_id;
309 u64 start_time;
310 struct kvm_event *last_event;
311};
312
bcf6edcd 313
3786063a 314static void init_kvm_event_record(struct perf_kvm_stat *kvm)
bcf6edcd
XG
315{
316 int i;
317
318 for (i = 0; i < (int)EVENTS_CACHE_SIZE; i++)
de332ac4 319 INIT_LIST_HEAD(&kvm->kvm_events_cache[i]);
bcf6edcd
XG
320}
321
322static int kvm_events_hash_fn(u64 key)
323{
324 return key & (EVENTS_CACHE_SIZE - 1);
325}
326
327static bool kvm_event_expand(struct kvm_event *event, int vcpu_id)
328{
329 int old_max_vcpu = event->max_vcpu;
330
331 if (vcpu_id < event->max_vcpu)
332 return true;
333
334 while (event->max_vcpu <= vcpu_id)
335 event->max_vcpu += DEFAULT_VCPU_NUM;
336
337 event->vcpu = realloc(event->vcpu,
338 event->max_vcpu * sizeof(*event->vcpu));
339 if (!event->vcpu) {
340 pr_err("Not enough memory\n");
341 return false;
342 }
343
344 memset(event->vcpu + old_max_vcpu, 0,
345 (event->max_vcpu - old_max_vcpu) * sizeof(*event->vcpu));
346 return true;
347}
348
349static struct kvm_event *kvm_alloc_init_event(struct event_key *key)
350{
351 struct kvm_event *event;
352
353 event = zalloc(sizeof(*event));
354 if (!event) {
355 pr_err("Not enough memory\n");
356 return NULL;
357 }
358
359 event->key = *key;
360 return event;
361}
362
3786063a 363static struct kvm_event *find_create_kvm_event(struct perf_kvm_stat *kvm,
de332ac4 364 struct event_key *key)
bcf6edcd
XG
365{
366 struct kvm_event *event;
367 struct list_head *head;
368
369 BUG_ON(key->key == INVALID_KEY);
370
de332ac4 371 head = &kvm->kvm_events_cache[kvm_events_hash_fn(key->key)];
bcf6edcd
XG
372 list_for_each_entry(event, head, hash_entry)
373 if (event->key.key == key->key && event->key.info == key->info)
374 return event;
375
376 event = kvm_alloc_init_event(key);
377 if (!event)
378 return NULL;
379
380 list_add(&event->hash_entry, head);
381 return event;
382}
383
3786063a 384static bool handle_begin_event(struct perf_kvm_stat *kvm,
de332ac4 385 struct vcpu_event_record *vcpu_record,
bcf6edcd
XG
386 struct event_key *key, u64 timestamp)
387{
388 struct kvm_event *event = NULL;
389
390 if (key->key != INVALID_KEY)
de332ac4 391 event = find_create_kvm_event(kvm, key);
bcf6edcd
XG
392
393 vcpu_record->last_event = event;
394 vcpu_record->start_time = timestamp;
395 return true;
396}
397
398static void
399kvm_update_event_stats(struct kvm_event_stats *kvm_stats, u64 time_diff)
400{
401 kvm_stats->time += time_diff;
402 update_stats(&kvm_stats->stats, time_diff);
403}
404
405static double kvm_event_rel_stddev(int vcpu_id, struct kvm_event *event)
406{
407 struct kvm_event_stats *kvm_stats = &event->total;
408
409 if (vcpu_id != -1)
410 kvm_stats = &event->vcpu[vcpu_id];
411
412 return rel_stddev_stats(stddev_stats(&kvm_stats->stats),
413 avg_stats(&kvm_stats->stats));
414}
415
416static bool update_kvm_event(struct kvm_event *event, int vcpu_id,
417 u64 time_diff)
418{
419 kvm_update_event_stats(&event->total, time_diff);
420
421 if (!kvm_event_expand(event, vcpu_id))
422 return false;
423
424 kvm_update_event_stats(&event->vcpu[vcpu_id], time_diff);
425 return true;
426}
427
3786063a 428static bool handle_end_event(struct perf_kvm_stat *kvm,
de332ac4
DA
429 struct vcpu_event_record *vcpu_record,
430 struct event_key *key,
431 u64 timestamp)
bcf6edcd
XG
432{
433 struct kvm_event *event;
434 u64 time_begin, time_diff;
435
436 event = vcpu_record->last_event;
437 time_begin = vcpu_record->start_time;
438
439 /* The begin event is not caught. */
440 if (!time_begin)
441 return true;
442
443 /*
444 * In some case, the 'begin event' only records the start timestamp,
445 * the actual event is recognized in the 'end event' (e.g. mmio-event).
446 */
447
448 /* Both begin and end events did not get the key. */
449 if (!event && key->key == INVALID_KEY)
450 return true;
451
452 if (!event)
de332ac4 453 event = find_create_kvm_event(kvm, key);
bcf6edcd
XG
454
455 if (!event)
456 return false;
457
458 vcpu_record->last_event = NULL;
459 vcpu_record->start_time = 0;
460
461 BUG_ON(timestamp < time_begin);
462
463 time_diff = timestamp - time_begin;
464 return update_kvm_event(event, vcpu_record->vcpu_id, time_diff);
465}
466
14907e73
ACM
467static
468struct vcpu_event_record *per_vcpu_record(struct thread *thread,
469 struct perf_evsel *evsel,
470 struct perf_sample *sample)
bcf6edcd
XG
471{
472 /* Only kvm_entry records vcpu id. */
14907e73 473 if (!thread->priv && kvm_entry_event(evsel)) {
bcf6edcd
XG
474 struct vcpu_event_record *vcpu_record;
475
14907e73 476 vcpu_record = zalloc(sizeof(*vcpu_record));
bcf6edcd 477 if (!vcpu_record) {
14907e73 478 pr_err("%s: Not enough memory\n", __func__);
bcf6edcd
XG
479 return NULL;
480 }
481
14907e73 482 vcpu_record->vcpu_id = perf_evsel__intval(evsel, sample, "vcpu_id");
bcf6edcd
XG
483 thread->priv = vcpu_record;
484 }
485
14907e73 486 return thread->priv;
bcf6edcd
XG
487}
488
3786063a 489static bool handle_kvm_event(struct perf_kvm_stat *kvm,
de332ac4
DA
490 struct thread *thread,
491 struct perf_evsel *evsel,
14907e73 492 struct perf_sample *sample)
bcf6edcd
XG
493{
494 struct vcpu_event_record *vcpu_record;
495 struct event_key key = {.key = INVALID_KEY};
496
14907e73 497 vcpu_record = per_vcpu_record(thread, evsel, sample);
bcf6edcd
XG
498 if (!vcpu_record)
499 return true;
500
de332ac4
DA
501 if (kvm->events_ops->is_begin_event(evsel, sample, &key))
502 return handle_begin_event(kvm, vcpu_record, &key, sample->time);
bcf6edcd 503
de332ac4
DA
504 if (kvm->events_ops->is_end_event(evsel, sample, &key))
505 return handle_end_event(kvm, vcpu_record, &key, sample->time);
bcf6edcd
XG
506
507 return true;
508}
509
bcf6edcd
XG
510#define GET_EVENT_KEY(func, field) \
511static u64 get_event_ ##func(struct kvm_event *event, int vcpu) \
512{ \
513 if (vcpu == -1) \
514 return event->total.field; \
515 \
516 if (vcpu >= event->max_vcpu) \
517 return 0; \
518 \
519 return event->vcpu[vcpu].field; \
520}
521
522#define COMPARE_EVENT_KEY(func, field) \
523GET_EVENT_KEY(func, field) \
524static int compare_kvm_event_ ## func(struct kvm_event *one, \
525 struct kvm_event *two, int vcpu)\
526{ \
527 return get_event_ ##func(one, vcpu) > \
528 get_event_ ##func(two, vcpu); \
529}
530
531GET_EVENT_KEY(time, time);
532COMPARE_EVENT_KEY(count, stats.n);
533COMPARE_EVENT_KEY(mean, stats.mean);
534
535#define DEF_SORT_NAME_KEY(name, compare_key) \
536 { #name, compare_kvm_event_ ## compare_key }
537
538static struct kvm_event_key keys[] = {
539 DEF_SORT_NAME_KEY(sample, count),
540 DEF_SORT_NAME_KEY(time, mean),
541 { NULL, NULL }
542};
543
3786063a 544static bool select_key(struct perf_kvm_stat *kvm)
bcf6edcd
XG
545{
546 int i;
547
548 for (i = 0; keys[i].name; i++) {
de332ac4
DA
549 if (!strcmp(keys[i].name, kvm->sort_key)) {
550 kvm->compare = keys[i].key;
bcf6edcd
XG
551 return true;
552 }
553 }
554
de332ac4 555 pr_err("Unknown compare key:%s\n", kvm->sort_key);
bcf6edcd
XG
556 return false;
557}
558
de332ac4
DA
559static void insert_to_result(struct rb_root *result, struct kvm_event *event,
560 key_cmp_fun bigger, int vcpu)
bcf6edcd 561{
de332ac4 562 struct rb_node **rb = &result->rb_node;
bcf6edcd
XG
563 struct rb_node *parent = NULL;
564 struct kvm_event *p;
565
566 while (*rb) {
567 p = container_of(*rb, struct kvm_event, rb);
568 parent = *rb;
569
570 if (bigger(event, p, vcpu))
571 rb = &(*rb)->rb_left;
572 else
573 rb = &(*rb)->rb_right;
574 }
575
576 rb_link_node(&event->rb, parent, rb);
de332ac4 577 rb_insert_color(&event->rb, result);
bcf6edcd
XG
578}
579
3786063a
XG
580static void
581update_total_count(struct perf_kvm_stat *kvm, struct kvm_event *event)
bcf6edcd 582{
de332ac4
DA
583 int vcpu = kvm->trace_vcpu;
584
585 kvm->total_count += get_event_count(event, vcpu);
586 kvm->total_time += get_event_time(event, vcpu);
bcf6edcd
XG
587}
588
589static bool event_is_valid(struct kvm_event *event, int vcpu)
590{
591 return !!get_event_count(event, vcpu);
592}
593
3786063a 594static void sort_result(struct perf_kvm_stat *kvm)
bcf6edcd
XG
595{
596 unsigned int i;
de332ac4 597 int vcpu = kvm->trace_vcpu;
bcf6edcd
XG
598 struct kvm_event *event;
599
600 for (i = 0; i < EVENTS_CACHE_SIZE; i++)
de332ac4 601 list_for_each_entry(event, &kvm->kvm_events_cache[i], hash_entry)
bcf6edcd 602 if (event_is_valid(event, vcpu)) {
de332ac4
DA
603 update_total_count(kvm, event);
604 insert_to_result(&kvm->result, event,
605 kvm->compare, vcpu);
bcf6edcd
XG
606 }
607}
608
609/* returns left most element of result, and erase it */
de332ac4 610static struct kvm_event *pop_from_result(struct rb_root *result)
bcf6edcd 611{
de332ac4 612 struct rb_node *node = rb_first(result);
bcf6edcd
XG
613
614 if (!node)
615 return NULL;
616
de332ac4 617 rb_erase(node, result);
bcf6edcd
XG
618 return container_of(node, struct kvm_event, rb);
619}
620
621static void print_vcpu_info(int vcpu)
622{
623 pr_info("Analyze events for ");
624
625 if (vcpu == -1)
626 pr_info("all VCPUs:\n\n");
627 else
628 pr_info("VCPU %d:\n\n", vcpu);
629}
630
3786063a 631static void print_result(struct perf_kvm_stat *kvm)
bcf6edcd
XG
632{
633 char decode[20];
634 struct kvm_event *event;
de332ac4 635 int vcpu = kvm->trace_vcpu;
bcf6edcd
XG
636
637 pr_info("\n\n");
638 print_vcpu_info(vcpu);
de332ac4 639 pr_info("%20s ", kvm->events_ops->name);
bcf6edcd
XG
640 pr_info("%10s ", "Samples");
641 pr_info("%9s ", "Samples%");
642
643 pr_info("%9s ", "Time%");
644 pr_info("%16s ", "Avg time");
645 pr_info("\n\n");
646
de332ac4 647 while ((event = pop_from_result(&kvm->result))) {
bcf6edcd
XG
648 u64 ecount, etime;
649
650 ecount = get_event_count(event, vcpu);
651 etime = get_event_time(event, vcpu);
652
de332ac4 653 kvm->events_ops->decode_key(kvm, &event->key, decode);
bcf6edcd
XG
654 pr_info("%20s ", decode);
655 pr_info("%10llu ", (unsigned long long)ecount);
de332ac4
DA
656 pr_info("%8.2f%% ", (double)ecount / kvm->total_count * 100);
657 pr_info("%8.2f%% ", (double)etime / kvm->total_time * 100);
bcf6edcd
XG
658 pr_info("%9.2fus ( +-%7.2f%% )", (double)etime / ecount/1e3,
659 kvm_event_rel_stddev(vcpu, event));
660 pr_info("\n");
661 }
662
663 pr_info("\nTotal Samples:%lld, Total events handled time:%.2fus.\n\n",
de332ac4 664 (unsigned long long)kvm->total_count, kvm->total_time / 1e3);
bcf6edcd
XG
665}
666
de332ac4 667static int process_sample_event(struct perf_tool *tool,
bcf6edcd
XG
668 union perf_event *event,
669 struct perf_sample *sample,
670 struct perf_evsel *evsel,
671 struct machine *machine)
672{
673 struct thread *thread = machine__findnew_thread(machine, sample->tid);
3786063a
XG
674 struct perf_kvm_stat *kvm = container_of(tool, struct perf_kvm_stat,
675 tool);
bcf6edcd
XG
676
677 if (thread == NULL) {
678 pr_debug("problem processing %d event, skipping it.\n",
679 event->header.type);
680 return -1;
681 }
682
de332ac4 683 if (!handle_kvm_event(kvm, thread, evsel, sample))
bcf6edcd
XG
684 return -1;
685
686 return 0;
687}
688
bcf6edcd
XG
689static int get_cpu_isa(struct perf_session *session)
690{
2f9e97aa 691 char *cpuid = session->header.env.cpuid;
bcf6edcd
XG
692 int isa;
693
bcf6edcd
XG
694 if (strstr(cpuid, "Intel"))
695 isa = 1;
696 else if (strstr(cpuid, "AMD"))
697 isa = 0;
698 else {
699 pr_err("CPU %s is not supported.\n", cpuid);
700 isa = -ENOTSUP;
701 }
702
bcf6edcd
XG
703 return isa;
704}
705
3786063a 706static int read_events(struct perf_kvm_stat *kvm)
bcf6edcd 707{
bcf6edcd
XG
708 int ret;
709
de332ac4
DA
710 struct perf_tool eops = {
711 .sample = process_sample_event,
712 .comm = perf_event__process_comm,
713 .ordered_samples = true,
714 };
715
716 kvm->tool = eops;
717 kvm->session = perf_session__new(kvm->file_name, O_RDONLY, 0, false,
718 &kvm->tool);
719 if (!kvm->session) {
bcf6edcd
XG
720 pr_err("Initializing perf session failed\n");
721 return -EINVAL;
722 }
723
de332ac4 724 if (!perf_session__has_traces(kvm->session, "kvm record"))
bcf6edcd
XG
725 return -EINVAL;
726
727 /*
728 * Do not use 'isa' recorded in kvm_exit tracepoint since it is not
729 * traced in the old kernel.
730 */
de332ac4 731 ret = get_cpu_isa(kvm->session);
bcf6edcd
XG
732
733 if (ret < 0)
734 return ret;
735
de332ac4
DA
736 if (ret == 1) {
737 kvm->exit_reasons = vmx_exit_reasons;
738 kvm->exit_reasons_size = ARRAY_SIZE(vmx_exit_reasons);
739 kvm->exit_reasons_isa = "VMX";
740 }
bcf6edcd 741
de332ac4 742 return perf_session__process_events(kvm->session, &kvm->tool);
bcf6edcd
XG
743}
744
745static bool verify_vcpu(int vcpu)
746{
747 if (vcpu != -1 && vcpu < 0) {
748 pr_err("Invalid vcpu:%d.\n", vcpu);
749 return false;
750 }
751
752 return true;
753}
754
3786063a 755static int kvm_events_report_vcpu(struct perf_kvm_stat *kvm)
bcf6edcd
XG
756{
757 int ret = -EINVAL;
de332ac4 758 int vcpu = kvm->trace_vcpu;
bcf6edcd
XG
759
760 if (!verify_vcpu(vcpu))
761 goto exit;
762
de332ac4 763 if (!select_key(kvm))
bcf6edcd
XG
764 goto exit;
765
de332ac4 766 if (!register_kvm_events_ops(kvm))
bcf6edcd
XG
767 goto exit;
768
de332ac4 769 init_kvm_event_record(kvm);
bcf6edcd
XG
770 setup_pager();
771
de332ac4 772 ret = read_events(kvm);
bcf6edcd
XG
773 if (ret)
774 goto exit;
775
de332ac4
DA
776 sort_result(kvm);
777 print_result(kvm);
778
bcf6edcd
XG
779exit:
780 return ret;
781}
782
783static const char * const record_args[] = {
784 "record",
785 "-R",
786 "-f",
787 "-m", "1024",
788 "-c", "1",
789 "-e", "kvm:kvm_entry",
790 "-e", "kvm:kvm_exit",
791 "-e", "kvm:kvm_mmio",
792 "-e", "kvm:kvm_pio",
793};
794
795#define STRDUP_FAIL_EXIT(s) \
796 ({ char *_p; \
797 _p = strdup(s); \
798 if (!_p) \
799 return -ENOMEM; \
800 _p; \
801 })
802
3786063a
XG
803static int
804kvm_events_record(struct perf_kvm_stat *kvm, int argc, const char **argv)
bcf6edcd
XG
805{
806 unsigned int rec_argc, i, j;
807 const char **rec_argv;
808
809 rec_argc = ARRAY_SIZE(record_args) + argc + 2;
810 rec_argv = calloc(rec_argc + 1, sizeof(char *));
811
812 if (rec_argv == NULL)
813 return -ENOMEM;
814
815 for (i = 0; i < ARRAY_SIZE(record_args); i++)
816 rec_argv[i] = STRDUP_FAIL_EXIT(record_args[i]);
817
818 rec_argv[i++] = STRDUP_FAIL_EXIT("-o");
de332ac4 819 rec_argv[i++] = STRDUP_FAIL_EXIT(kvm->file_name);
bcf6edcd
XG
820
821 for (j = 1; j < (unsigned int)argc; j++, i++)
822 rec_argv[i] = argv[j];
823
824 return cmd_record(i, rec_argv, NULL);
825}
826
3786063a
XG
827static int
828kvm_events_report(struct perf_kvm_stat *kvm, int argc, const char **argv)
de332ac4
DA
829{
830 const struct option kvm_events_report_options[] = {
831 OPT_STRING(0, "event", &kvm->report_event, "report event",
832 "event for reporting: vmexit, mmio, ioport"),
833 OPT_INTEGER(0, "vcpu", &kvm->trace_vcpu,
834 "vcpu id to report"),
835 OPT_STRING('k', "key", &kvm->sort_key, "sort-key",
836 "key for sorting: sample(sort by samples number)"
837 " time (sort by avg time)"),
838 OPT_END()
839 };
bcf6edcd 840
de332ac4
DA
841 const char * const kvm_events_report_usage[] = {
842 "perf kvm stat report [<options>]",
843 NULL
844 };
bcf6edcd 845
bcf6edcd
XG
846 symbol__init();
847
848 if (argc) {
849 argc = parse_options(argc, argv,
850 kvm_events_report_options,
851 kvm_events_report_usage, 0);
852 if (argc)
853 usage_with_options(kvm_events_report_usage,
854 kvm_events_report_options);
855 }
856
de332ac4 857 return kvm_events_report_vcpu(kvm);
bcf6edcd
XG
858}
859
860static void print_kvm_stat_usage(void)
861{
862 printf("Usage: perf kvm stat <command>\n\n");
863
864 printf("# Available commands:\n");
865 printf("\trecord: record kvm events\n");
866 printf("\treport: report statistical data of kvm events\n");
867
868 printf("\nOtherwise, it is the alias of 'perf stat':\n");
869}
870
3786063a 871static int kvm_cmd_stat(const char *file_name, int argc, const char **argv)
bcf6edcd 872{
3786063a
XG
873 struct perf_kvm_stat kvm = {
874 .file_name = file_name,
875
876 .trace_vcpu = -1,
877 .report_event = "vmexit",
878 .sort_key = "sample",
879
880 .exit_reasons = svm_exit_reasons,
881 .exit_reasons_size = ARRAY_SIZE(svm_exit_reasons),
882 .exit_reasons_isa = "SVM",
883 };
884
bcf6edcd
XG
885 if (argc == 1) {
886 print_kvm_stat_usage();
887 goto perf_stat;
888 }
889
890 if (!strncmp(argv[1], "rec", 3))
3786063a 891 return kvm_events_record(&kvm, argc - 1, argv + 1);
bcf6edcd
XG
892
893 if (!strncmp(argv[1], "rep", 3))
3786063a 894 return kvm_events_report(&kvm, argc - 1 , argv + 1);
bcf6edcd
XG
895
896perf_stat:
897 return cmd_stat(argc, argv, NULL);
898}
899
3786063a 900static int __cmd_record(const char *file_name, int argc, const char **argv)
a1645ce1
ZY
901{
902 int rec_argc, i = 0, j;
903 const char **rec_argv;
904
905 rec_argc = argc + 2;
906 rec_argv = calloc(rec_argc + 1, sizeof(char *));
907 rec_argv[i++] = strdup("record");
908 rec_argv[i++] = strdup("-o");
3786063a 909 rec_argv[i++] = strdup(file_name);
a1645ce1
ZY
910 for (j = 1; j < argc; j++, i++)
911 rec_argv[i] = argv[j];
912
913 BUG_ON(i != rec_argc);
914
915 return cmd_record(i, rec_argv, NULL);
916}
917
3786063a 918static int __cmd_report(const char *file_name, int argc, const char **argv)
a1645ce1
ZY
919{
920 int rec_argc, i = 0, j;
921 const char **rec_argv;
922
923 rec_argc = argc + 2;
924 rec_argv = calloc(rec_argc + 1, sizeof(char *));
925 rec_argv[i++] = strdup("report");
926 rec_argv[i++] = strdup("-i");
3786063a 927 rec_argv[i++] = strdup(file_name);
a1645ce1
ZY
928 for (j = 1; j < argc; j++, i++)
929 rec_argv[i] = argv[j];
930
931 BUG_ON(i != rec_argc);
932
933 return cmd_report(i, rec_argv, NULL);
934}
935
3786063a
XG
936static int
937__cmd_buildid_list(const char *file_name, int argc, const char **argv)
a1645ce1
ZY
938{
939 int rec_argc, i = 0, j;
940 const char **rec_argv;
941
942 rec_argc = argc + 2;
943 rec_argv = calloc(rec_argc + 1, sizeof(char *));
944 rec_argv[i++] = strdup("buildid-list");
945 rec_argv[i++] = strdup("-i");
3786063a 946 rec_argv[i++] = strdup(file_name);
a1645ce1
ZY
947 for (j = 1; j < argc; j++, i++)
948 rec_argv[i] = argv[j];
949
950 BUG_ON(i != rec_argc);
951
952 return cmd_buildid_list(i, rec_argv, NULL);
953}
954
1d037ca1 955int cmd_kvm(int argc, const char **argv, const char *prefix __maybe_unused)
a1645ce1 956{
3786063a 957 const char *file_name;
de332ac4
DA
958
959 const struct option kvm_options[] = {
3786063a 960 OPT_STRING('i', "input", &file_name, "file",
de332ac4 961 "Input file name"),
3786063a 962 OPT_STRING('o', "output", &file_name, "file",
de332ac4
DA
963 "Output file name"),
964 OPT_BOOLEAN(0, "guest", &perf_guest,
965 "Collect guest os data"),
966 OPT_BOOLEAN(0, "host", &perf_host,
967 "Collect host os data"),
968 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
969 "guest mount directory under which every guest os"
970 " instance has a subdir"),
971 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
972 "file", "file saving guest os vmlinux"),
973 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
974 "file", "file saving guest os /proc/kallsyms"),
975 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
976 "file", "file saving guest os /proc/modules"),
977 OPT_END()
978 };
979
980
981 const char * const kvm_usage[] = {
982 "perf kvm [<options>] {top|record|report|diff|buildid-list|stat}",
983 NULL
984 };
985
1aed2671
JR
986 perf_host = 0;
987 perf_guest = 1;
a1645ce1
ZY
988
989 argc = parse_options(argc, argv, kvm_options, kvm_usage,
990 PARSE_OPT_STOP_AT_NON_OPTION);
991 if (!argc)
992 usage_with_options(kvm_usage, kvm_options);
993
994 if (!perf_host)
995 perf_guest = 1;
996
3786063a 997 if (!file_name) {
a1645ce1 998 if (perf_host && !perf_guest)
3786063a 999 file_name = strdup("perf.data.host");
a1645ce1 1000 else if (!perf_host && perf_guest)
3786063a 1001 file_name = strdup("perf.data.guest");
a1645ce1 1002 else
3786063a 1003 file_name = strdup("perf.data.kvm");
de332ac4 1004
3786063a 1005 if (!file_name) {
de332ac4
DA
1006 pr_err("Failed to allocate memory for filename\n");
1007 return -ENOMEM;
1008 }
a1645ce1
ZY
1009 }
1010
1011 if (!strncmp(argv[0], "rec", 3))
3786063a 1012 return __cmd_record(file_name, argc, argv);
a1645ce1 1013 else if (!strncmp(argv[0], "rep", 3))
3786063a 1014 return __cmd_report(file_name, argc, argv);
a1645ce1
ZY
1015 else if (!strncmp(argv[0], "diff", 4))
1016 return cmd_diff(argc, argv, NULL);
1017 else if (!strncmp(argv[0], "top", 3))
1018 return cmd_top(argc, argv, NULL);
1019 else if (!strncmp(argv[0], "buildid-list", 12))
3786063a 1020 return __cmd_buildid_list(file_name, argc, argv);
bcf6edcd 1021 else if (!strncmp(argv[0], "stat", 4))
3786063a 1022 return kvm_cmd_stat(file_name, argc, argv);
a1645ce1
ZY
1023 else
1024 usage_with_options(kvm_usage, kvm_options);
1025
1026 return 0;
1027}