blob: 2227e2f42c09d8e72243afa2fe892230b4417c4f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08002#include "builtin.h"
3#include "perf.h"
4
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -03005#include "util/build-id.h"
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08006#include "util/evsel.h"
David Ahern1afe1d12013-08-05 21:41:34 -04007#include "util/evlist.h"
Arnaldo Carvalho de Meloe0fcfb02019-09-23 12:20:38 -03008#include "util/mmap.h"
Arnaldo Carvalho de Melob0742e92017-04-18 11:08:10 -03009#include "util/term.h"
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080010#include "util/symbol.h"
11#include "util/thread.h"
12#include "util/header.h"
13#include "util/session.h"
David Ahern2e73f002013-08-05 21:41:37 -040014#include "util/intlist.h"
Arnaldo Carvalho de Melofa0d9842019-08-30 12:52:25 -030015#include <subcmd/pager.h>
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060016#include <subcmd/parse-options.h>
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080017#include "util/trace-event.h"
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080018#include "util/debug.h"
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080019#include "util/tool.h"
20#include "util/stat.h"
Arnaldo Carvalho de Meloea49e012019-09-18 11:36:13 -030021#include "util/synthetic-events.h"
David Ahern1afe1d12013-08-05 21:41:34 -040022#include "util/top.h"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020023#include "util/data.h"
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -030024#include "util/ordered-events.h"
Anju T Sudhakar8067b3d2019-07-18 23:47:47 +053025#include "util/kvm-stat.h"
Arnaldo Carvalho de Melofa0d9842019-08-30 12:52:25 -030026#include "ui/ui.h"
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080027
28#include <sys/prctl.h>
David Ahern87419c92013-10-29 10:43:16 -060029#ifdef HAVE_TIMERFD_SUPPORT
David Ahern1afe1d12013-08-05 21:41:34 -040030#include <sys/timerfd.h>
David Ahern87419c92013-10-29 10:43:16 -060031#endif
Arnaldo Carvalho de Meloc5e40272017-04-19 16:12:39 -030032#include <sys/time.h>
Arnaldo Carvalho de Melobafae982018-01-22 16:42:16 -030033#include <sys/types.h>
34#include <sys/stat.h>
35#include <fcntl.h>
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080036
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +053037#include <linux/err.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030038#include <linux/kernel.h>
Arnaldo Carvalho de Melofa0d9842019-08-30 12:52:25 -030039#include <linux/string.h>
Arnaldo Carvalho de Melobd48c632016-08-05 15:40:30 -030040#include <linux/time64.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030041#include <linux/zalloc.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030042#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030043#include <inttypes.h>
Arnaldo Carvalho de Melo42087352017-04-19 19:06:30 -030044#include <poll.h>
David Ahern1afe1d12013-08-05 21:41:34 -040045#include <termios.h>
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080046#include <semaphore.h>
Arnaldo Carvalho de Melo9607ad32017-04-19 15:49:18 -030047#include <signal.h>
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080048#include <math.h>
49
Arnaldo Carvalho de Melobb8c16d2017-04-19 16:15:13 -030050static const char *get_filename_for_perf_kvm(void)
51{
52 const char *filename;
53
54 if (perf_host && !perf_guest)
55 filename = strdup("perf.data.host");
56 else if (!perf_host && perf_guest)
57 filename = strdup("perf.data.guest");
58 else
59 filename = strdup("perf.data.kvm");
60
61 return filename;
62}
63
Alexander Yaryginda50ad62014-07-03 17:59:49 +040064#ifdef HAVE_KVM_STAT_SUPPORT
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080065
Jiri Olsa32dcd022019-07-21 13:23:51 +020066void exit_event_get_key(struct evsel *evsel,
Alexander Yarygin9daa8122014-07-03 18:29:05 +040067 struct perf_sample *sample,
68 struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080069{
70 key->info = 0;
Hemant Kumar162607e2016-01-28 12:03:04 +053071 key->key = perf_evsel__intval(evsel, sample, kvm_exit_reason);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080072}
73
Jiri Olsa32dcd022019-07-21 13:23:51 +020074bool kvm_exit_event(struct evsel *evsel)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080075{
Hemant Kumar162607e2016-01-28 12:03:04 +053076 return !strcmp(evsel->name, kvm_exit_trace);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080077}
78
Jiri Olsa32dcd022019-07-21 13:23:51 +020079bool exit_event_begin(struct evsel *evsel,
Alexander Yarygin9daa8122014-07-03 18:29:05 +040080 struct perf_sample *sample, struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080081{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -030082 if (kvm_exit_event(evsel)) {
83 exit_event_get_key(evsel, sample, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080084 return true;
85 }
86
87 return false;
88}
89
Jiri Olsa32dcd022019-07-21 13:23:51 +020090bool kvm_entry_event(struct evsel *evsel)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080091{
Hemant Kumar162607e2016-01-28 12:03:04 +053092 return !strcmp(evsel->name, kvm_entry_trace);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080093}
94
Jiri Olsa32dcd022019-07-21 13:23:51 +020095bool exit_event_end(struct evsel *evsel,
Alexander Yarygin9daa8122014-07-03 18:29:05 +040096 struct perf_sample *sample __maybe_unused,
97 struct event_key *key __maybe_unused)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080098{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -030099 return kvm_entry_event(evsel);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800100}
101
Alexander Yarygindf74c132014-07-03 17:59:50 +0400102static const char *get_exit_reason(struct perf_kvm_stat *kvm,
103 struct exit_reasons_table *tbl,
104 u64 exit_code)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800105{
Alexander Yarygindf74c132014-07-03 17:59:50 +0400106 while (tbl->reason != NULL) {
David Ahernde332ac2012-10-02 22:09:53 -0600107 if (tbl->exit_code == exit_code)
108 return tbl->reason;
109 tbl++;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800110 }
111
112 pr_err("unknown kvm exit code:%lld on %s\n",
David Ahernde332ac2012-10-02 22:09:53 -0600113 (unsigned long long)exit_code, kvm->exit_reasons_isa);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800114 return "UNKNOWN";
115}
116
Alexander Yarygin9daa8122014-07-03 18:29:05 +0400117void exit_event_decode_key(struct perf_kvm_stat *kvm,
118 struct event_key *key,
119 char *decode)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800120{
Alexander Yarygin3be8e2a2014-07-03 18:29:07 +0400121 const char *exit_reason = get_exit_reason(kvm, key->exit_reasons,
Alexander Yarygindf74c132014-07-03 17:59:50 +0400122 key->key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800123
Hemant Kumar162607e2016-01-28 12:03:04 +0530124 scnprintf(decode, decode_str_len, "%s", exit_reason);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800125}
126
Xiao Guangrong37860632012-11-15 14:17:01 +0800127static bool register_kvm_events_ops(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800128{
Alexander Yarygin9daa8122014-07-03 18:29:05 +0400129 struct kvm_reg_events_ops *events_ops = kvm_reg_events_ops;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800130
Alexander Yarygin9daa8122014-07-03 18:29:05 +0400131 for (events_ops = kvm_reg_events_ops; events_ops->name; events_ops++) {
132 if (!strcmp(events_ops->name, kvm->report_event)) {
133 kvm->events_ops = events_ops->ops;
134 return true;
135 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800136 }
137
Alexander Yarygin9daa8122014-07-03 18:29:05 +0400138 return false;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800139}
140
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800141struct vcpu_event_record {
142 int vcpu_id;
143 u64 start_time;
144 struct kvm_event *last_event;
145};
146
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800147
Xiao Guangrong37860632012-11-15 14:17:01 +0800148static void init_kvm_event_record(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800149{
David Ahernb880dee2012-10-08 11:17:30 -0600150 unsigned int i;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800151
David Ahernb880dee2012-10-08 11:17:30 -0600152 for (i = 0; i < EVENTS_CACHE_SIZE; i++)
David Ahernde332ac2012-10-02 22:09:53 -0600153 INIT_LIST_HEAD(&kvm->kvm_events_cache[i]);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800154}
155
David Ahern87419c92013-10-29 10:43:16 -0600156#ifdef HAVE_TIMERFD_SUPPORT
David Ahern1afe1d12013-08-05 21:41:34 -0400157static void clear_events_cache_stats(struct list_head *kvm_events_cache)
158{
159 struct list_head *head;
160 struct kvm_event *event;
161 unsigned int i;
David Ahern62d04db2013-08-05 21:41:35 -0400162 int j;
David Ahern1afe1d12013-08-05 21:41:34 -0400163
164 for (i = 0; i < EVENTS_CACHE_SIZE; i++) {
165 head = &kvm_events_cache[i];
166 list_for_each_entry(event, head, hash_entry) {
167 /* reset stats for event */
David Ahern62d04db2013-08-05 21:41:35 -0400168 event->total.time = 0;
169 init_stats(&event->total.stats);
170
171 for (j = 0; j < event->max_vcpu; ++j) {
172 event->vcpu[j].time = 0;
173 init_stats(&event->vcpu[j].stats);
174 }
David Ahern1afe1d12013-08-05 21:41:34 -0400175 }
176 }
177}
David Ahern87419c92013-10-29 10:43:16 -0600178#endif
David Ahern1afe1d12013-08-05 21:41:34 -0400179
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800180static int kvm_events_hash_fn(u64 key)
181{
182 return key & (EVENTS_CACHE_SIZE - 1);
183}
184
185static bool kvm_event_expand(struct kvm_event *event, int vcpu_id)
186{
187 int old_max_vcpu = event->max_vcpu;
David Ahern6ca5f302013-05-25 18:24:46 -0600188 void *prev;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800189
190 if (vcpu_id < event->max_vcpu)
191 return true;
192
193 while (event->max_vcpu <= vcpu_id)
194 event->max_vcpu += DEFAULT_VCPU_NUM;
195
David Ahern6ca5f302013-05-25 18:24:46 -0600196 prev = event->vcpu;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800197 event->vcpu = realloc(event->vcpu,
198 event->max_vcpu * sizeof(*event->vcpu));
199 if (!event->vcpu) {
David Ahern6ca5f302013-05-25 18:24:46 -0600200 free(prev);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800201 pr_err("Not enough memory\n");
202 return false;
203 }
204
205 memset(event->vcpu + old_max_vcpu, 0,
206 (event->max_vcpu - old_max_vcpu) * sizeof(*event->vcpu));
207 return true;
208}
209
210static struct kvm_event *kvm_alloc_init_event(struct event_key *key)
211{
212 struct kvm_event *event;
213
214 event = zalloc(sizeof(*event));
215 if (!event) {
216 pr_err("Not enough memory\n");
217 return NULL;
218 }
219
220 event->key = *key;
Alexander Yaryginacb61fc2014-04-09 16:21:59 +0200221 init_stats(&event->total.stats);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800222 return event;
223}
224
Xiao Guangrong37860632012-11-15 14:17:01 +0800225static struct kvm_event *find_create_kvm_event(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600226 struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800227{
228 struct kvm_event *event;
229 struct list_head *head;
230
231 BUG_ON(key->key == INVALID_KEY);
232
David Ahernde332ac2012-10-02 22:09:53 -0600233 head = &kvm->kvm_events_cache[kvm_events_hash_fn(key->key)];
David Ahern355afe82012-10-08 11:17:32 -0600234 list_for_each_entry(event, head, hash_entry) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800235 if (event->key.key == key->key && event->key.info == key->info)
236 return event;
David Ahern355afe82012-10-08 11:17:32 -0600237 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800238
239 event = kvm_alloc_init_event(key);
240 if (!event)
241 return NULL;
242
243 list_add(&event->hash_entry, head);
244 return event;
245}
246
Xiao Guangrong37860632012-11-15 14:17:01 +0800247static bool handle_begin_event(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600248 struct vcpu_event_record *vcpu_record,
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800249 struct event_key *key, u64 timestamp)
250{
251 struct kvm_event *event = NULL;
252
253 if (key->key != INVALID_KEY)
David Ahernde332ac2012-10-02 22:09:53 -0600254 event = find_create_kvm_event(kvm, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800255
256 vcpu_record->last_event = event;
257 vcpu_record->start_time = timestamp;
258 return true;
259}
260
261static void
262kvm_update_event_stats(struct kvm_event_stats *kvm_stats, u64 time_diff)
263{
264 kvm_stats->time += time_diff;
265 update_stats(&kvm_stats->stats, time_diff);
266}
267
268static double kvm_event_rel_stddev(int vcpu_id, struct kvm_event *event)
269{
270 struct kvm_event_stats *kvm_stats = &event->total;
271
272 if (vcpu_id != -1)
273 kvm_stats = &event->vcpu[vcpu_id];
274
275 return rel_stddev_stats(stddev_stats(&kvm_stats->stats),
276 avg_stats(&kvm_stats->stats));
277}
278
279static bool update_kvm_event(struct kvm_event *event, int vcpu_id,
280 u64 time_diff)
281{
David Ahern2aa8eab2012-10-08 11:17:35 -0600282 if (vcpu_id == -1) {
283 kvm_update_event_stats(&event->total, time_diff);
284 return true;
285 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800286
287 if (!kvm_event_expand(event, vcpu_id))
288 return false;
289
290 kvm_update_event_stats(&event->vcpu[vcpu_id], time_diff);
291 return true;
292}
293
Alexander Yarygin3be8e2a2014-07-03 18:29:07 +0400294static bool is_child_event(struct perf_kvm_stat *kvm,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200295 struct evsel *evsel,
Alexander Yarygin3be8e2a2014-07-03 18:29:07 +0400296 struct perf_sample *sample,
297 struct event_key *key)
298{
299 struct child_event_ops *child_ops;
300
301 child_ops = kvm->events_ops->child_ops;
302
303 if (!child_ops)
304 return false;
305
306 for (; child_ops->name; child_ops++) {
307 if (!strcmp(evsel->name, child_ops->name)) {
308 child_ops->get_key(evsel, sample, key);
309 return true;
310 }
311 }
312
313 return false;
314}
315
316static bool handle_child_event(struct perf_kvm_stat *kvm,
317 struct vcpu_event_record *vcpu_record,
318 struct event_key *key,
319 struct perf_sample *sample __maybe_unused)
320{
321 struct kvm_event *event = NULL;
322
323 if (key->key != INVALID_KEY)
324 event = find_create_kvm_event(kvm, key);
325
326 vcpu_record->last_event = event;
327
328 return true;
329}
330
Alexander Yarygin54c801ff72014-07-03 18:29:06 +0400331static bool skip_event(const char *event)
332{
333 const char * const *skip_events;
334
335 for (skip_events = kvm_skip_events; *skip_events; skip_events++)
336 if (!strcmp(event, *skip_events))
337 return true;
338
339 return false;
340}
341
Xiao Guangrong37860632012-11-15 14:17:01 +0800342static bool handle_end_event(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600343 struct vcpu_event_record *vcpu_record,
344 struct event_key *key,
David Ahern70f7b4a2013-08-07 21:56:38 -0400345 struct perf_sample *sample)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800346{
347 struct kvm_event *event;
348 u64 time_begin, time_diff;
David Ahern2aa8eab2012-10-08 11:17:35 -0600349 int vcpu;
350
351 if (kvm->trace_vcpu == -1)
352 vcpu = -1;
353 else
354 vcpu = vcpu_record->vcpu_id;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800355
356 event = vcpu_record->last_event;
357 time_begin = vcpu_record->start_time;
358
359 /* The begin event is not caught. */
360 if (!time_begin)
361 return true;
362
363 /*
364 * In some case, the 'begin event' only records the start timestamp,
365 * the actual event is recognized in the 'end event' (e.g. mmio-event).
366 */
367
368 /* Both begin and end events did not get the key. */
369 if (!event && key->key == INVALID_KEY)
370 return true;
371
372 if (!event)
David Ahernde332ac2012-10-02 22:09:53 -0600373 event = find_create_kvm_event(kvm, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800374
375 if (!event)
376 return false;
377
378 vcpu_record->last_event = NULL;
379 vcpu_record->start_time = 0;
380
David Ahern1afe1d12013-08-05 21:41:34 -0400381 /* seems to happen once in a while during live mode */
David Ahern70f7b4a2013-08-07 21:56:38 -0400382 if (sample->time < time_begin) {
David Ahern1afe1d12013-08-05 21:41:34 -0400383 pr_debug("End time before begin time; skipping event.\n");
384 return true;
385 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800386
David Ahern70f7b4a2013-08-07 21:56:38 -0400387 time_diff = sample->time - time_begin;
388
389 if (kvm->duration && time_diff > kvm->duration) {
Hemant Kumar162607e2016-01-28 12:03:04 +0530390 char decode[decode_str_len];
David Ahern70f7b4a2013-08-07 21:56:38 -0400391
392 kvm->events_ops->decode_key(kvm, &event->key, decode);
Alexander Yarygin54c801ff72014-07-03 18:29:06 +0400393 if (!skip_event(decode)) {
David Ahern70f7b4a2013-08-07 21:56:38 -0400394 pr_info("%" PRIu64 " VM %d, vcpu %d: %s event took %" PRIu64 "usec\n",
395 sample->time, sample->pid, vcpu_record->vcpu_id,
Arnaldo Carvalho de Meloc05a6e12016-08-08 15:10:44 -0300396 decode, time_diff / NSEC_PER_USEC);
David Ahern70f7b4a2013-08-07 21:56:38 -0400397 }
398 }
399
David Ahern2aa8eab2012-10-08 11:17:35 -0600400 return update_kvm_event(event, vcpu, time_diff);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800401}
402
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300403static
404struct vcpu_event_record *per_vcpu_record(struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200405 struct evsel *evsel,
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300406 struct perf_sample *sample)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800407{
408 /* Only kvm_entry records vcpu id. */
Namhyung Kim69e865c2014-10-06 09:46:02 +0900409 if (!thread__priv(thread) && kvm_entry_event(evsel)) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800410 struct vcpu_event_record *vcpu_record;
411
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300412 vcpu_record = zalloc(sizeof(*vcpu_record));
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800413 if (!vcpu_record) {
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300414 pr_err("%s: Not enough memory\n", __func__);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800415 return NULL;
416 }
417
Hemant Kumar162607e2016-01-28 12:03:04 +0530418 vcpu_record->vcpu_id = perf_evsel__intval(evsel, sample,
419 vcpu_id_str);
Namhyung Kim69e865c2014-10-06 09:46:02 +0900420 thread__set_priv(thread, vcpu_record);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800421 }
422
Namhyung Kim69e865c2014-10-06 09:46:02 +0900423 return thread__priv(thread);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800424}
425
Xiao Guangrong37860632012-11-15 14:17:01 +0800426static bool handle_kvm_event(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600427 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200428 struct evsel *evsel,
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300429 struct perf_sample *sample)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800430{
431 struct vcpu_event_record *vcpu_record;
Alexander Yarygin3be8e2a2014-07-03 18:29:07 +0400432 struct event_key key = { .key = INVALID_KEY,
433 .exit_reasons = kvm->exit_reasons };
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800434
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300435 vcpu_record = per_vcpu_record(thread, evsel, sample);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800436 if (!vcpu_record)
437 return true;
438
David Ahern2aa8eab2012-10-08 11:17:35 -0600439 /* only process events for vcpus user cares about */
440 if ((kvm->trace_vcpu != -1) &&
441 (kvm->trace_vcpu != vcpu_record->vcpu_id))
442 return true;
443
David Ahernde332ac2012-10-02 22:09:53 -0600444 if (kvm->events_ops->is_begin_event(evsel, sample, &key))
445 return handle_begin_event(kvm, vcpu_record, &key, sample->time);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800446
Alexander Yarygin3be8e2a2014-07-03 18:29:07 +0400447 if (is_child_event(kvm, evsel, sample, &key))
448 return handle_child_event(kvm, vcpu_record, &key, sample);
449
David Ahernde332ac2012-10-02 22:09:53 -0600450 if (kvm->events_ops->is_end_event(evsel, sample, &key))
David Ahern70f7b4a2013-08-07 21:56:38 -0400451 return handle_end_event(kvm, vcpu_record, &key, sample);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800452
453 return true;
454}
455
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800456#define GET_EVENT_KEY(func, field) \
457static u64 get_event_ ##func(struct kvm_event *event, int vcpu) \
458{ \
459 if (vcpu == -1) \
460 return event->total.field; \
461 \
462 if (vcpu >= event->max_vcpu) \
463 return 0; \
464 \
465 return event->vcpu[vcpu].field; \
466}
467
468#define COMPARE_EVENT_KEY(func, field) \
469GET_EVENT_KEY(func, field) \
470static int compare_kvm_event_ ## func(struct kvm_event *one, \
471 struct kvm_event *two, int vcpu)\
472{ \
473 return get_event_ ##func(one, vcpu) > \
474 get_event_ ##func(two, vcpu); \
475}
476
477GET_EVENT_KEY(time, time);
478COMPARE_EVENT_KEY(count, stats.n);
479COMPARE_EVENT_KEY(mean, stats.mean);
David Ahern62d04db2013-08-05 21:41:35 -0400480GET_EVENT_KEY(max, stats.max);
481GET_EVENT_KEY(min, stats.min);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800482
483#define DEF_SORT_NAME_KEY(name, compare_key) \
484 { #name, compare_kvm_event_ ## compare_key }
485
486static struct kvm_event_key keys[] = {
487 DEF_SORT_NAME_KEY(sample, count),
488 DEF_SORT_NAME_KEY(time, mean),
489 { NULL, NULL }
490};
491
Xiao Guangrong37860632012-11-15 14:17:01 +0800492static bool select_key(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800493{
494 int i;
495
496 for (i = 0; keys[i].name; i++) {
David Ahernde332ac2012-10-02 22:09:53 -0600497 if (!strcmp(keys[i].name, kvm->sort_key)) {
498 kvm->compare = keys[i].key;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800499 return true;
500 }
501 }
502
David Ahernde332ac2012-10-02 22:09:53 -0600503 pr_err("Unknown compare key:%s\n", kvm->sort_key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800504 return false;
505}
506
David Ahernde332ac2012-10-02 22:09:53 -0600507static void insert_to_result(struct rb_root *result, struct kvm_event *event,
508 key_cmp_fun bigger, int vcpu)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800509{
David Ahernde332ac2012-10-02 22:09:53 -0600510 struct rb_node **rb = &result->rb_node;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800511 struct rb_node *parent = NULL;
512 struct kvm_event *p;
513
514 while (*rb) {
515 p = container_of(*rb, struct kvm_event, rb);
516 parent = *rb;
517
518 if (bigger(event, p, vcpu))
519 rb = &(*rb)->rb_left;
520 else
521 rb = &(*rb)->rb_right;
522 }
523
524 rb_link_node(&event->rb, parent, rb);
David Ahernde332ac2012-10-02 22:09:53 -0600525 rb_insert_color(&event->rb, result);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800526}
527
Xiao Guangrong37860632012-11-15 14:17:01 +0800528static void
529update_total_count(struct perf_kvm_stat *kvm, struct kvm_event *event)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800530{
David Ahernde332ac2012-10-02 22:09:53 -0600531 int vcpu = kvm->trace_vcpu;
532
533 kvm->total_count += get_event_count(event, vcpu);
534 kvm->total_time += get_event_time(event, vcpu);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800535}
536
537static bool event_is_valid(struct kvm_event *event, int vcpu)
538{
539 return !!get_event_count(event, vcpu);
540}
541
Xiao Guangrong37860632012-11-15 14:17:01 +0800542static void sort_result(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800543{
544 unsigned int i;
David Ahernde332ac2012-10-02 22:09:53 -0600545 int vcpu = kvm->trace_vcpu;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800546 struct kvm_event *event;
547
David Ahern355afe82012-10-08 11:17:32 -0600548 for (i = 0; i < EVENTS_CACHE_SIZE; i++) {
549 list_for_each_entry(event, &kvm->kvm_events_cache[i], hash_entry) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800550 if (event_is_valid(event, vcpu)) {
David Ahernde332ac2012-10-02 22:09:53 -0600551 update_total_count(kvm, event);
552 insert_to_result(&kvm->result, event,
553 kvm->compare, vcpu);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800554 }
David Ahern355afe82012-10-08 11:17:32 -0600555 }
556 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800557}
558
559/* returns left most element of result, and erase it */
David Ahernde332ac2012-10-02 22:09:53 -0600560static struct kvm_event *pop_from_result(struct rb_root *result)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800561{
David Ahernde332ac2012-10-02 22:09:53 -0600562 struct rb_node *node = rb_first(result);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800563
564 if (!node)
565 return NULL;
566
David Ahernde332ac2012-10-02 22:09:53 -0600567 rb_erase(node, result);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800568 return container_of(node, struct kvm_event, rb);
569}
570
David Ahern1afe1d12013-08-05 21:41:34 -0400571static void print_vcpu_info(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800572{
David Ahern1afe1d12013-08-05 21:41:34 -0400573 int vcpu = kvm->trace_vcpu;
574
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800575 pr_info("Analyze events for ");
576
Alexander Yarygin1f3e5b52014-09-01 17:44:55 +0400577 if (kvm->opts.target.system_wide)
578 pr_info("all VMs, ");
579 else if (kvm->opts.target.pid)
580 pr_info("pid(s) %s, ", kvm->opts.target.pid);
581 else
582 pr_info("dazed and confused on what is monitored, ");
David Ahern1afe1d12013-08-05 21:41:34 -0400583
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800584 if (vcpu == -1)
585 pr_info("all VCPUs:\n\n");
586 else
587 pr_info("VCPU %d:\n\n", vcpu);
588}
589
David Ahern1afe1d12013-08-05 21:41:34 -0400590static void show_timeofday(void)
591{
592 char date[64];
593 struct timeval tv;
594 struct tm ltime;
595
596 gettimeofday(&tv, NULL);
597 if (localtime_r(&tv.tv_sec, &ltime)) {
598 strftime(date, sizeof(date), "%H:%M:%S", &ltime);
599 pr_info("%s.%06ld", date, tv.tv_usec);
600 } else
601 pr_info("00:00:00.000000");
602
603 return;
604}
605
Xiao Guangrong37860632012-11-15 14:17:01 +0800606static void print_result(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800607{
Hemant Kumar162607e2016-01-28 12:03:04 +0530608 char decode[decode_str_len];
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800609 struct kvm_event *event;
David Ahernde332ac2012-10-02 22:09:53 -0600610 int vcpu = kvm->trace_vcpu;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800611
David Ahern1afe1d12013-08-05 21:41:34 -0400612 if (kvm->live) {
613 puts(CONSOLE_CLEAR);
614 show_timeofday();
615 }
616
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800617 pr_info("\n\n");
David Ahern1afe1d12013-08-05 21:41:34 -0400618 print_vcpu_info(kvm);
Hemant Kumar162607e2016-01-28 12:03:04 +0530619 pr_info("%*s ", decode_str_len, kvm->events_ops->name);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800620 pr_info("%10s ", "Samples");
621 pr_info("%9s ", "Samples%");
622
623 pr_info("%9s ", "Time%");
Christian Borntraegerb048a242014-07-31 13:13:51 +0200624 pr_info("%11s ", "Min Time");
625 pr_info("%11s ", "Max Time");
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800626 pr_info("%16s ", "Avg time");
627 pr_info("\n\n");
628
David Ahernde332ac2012-10-02 22:09:53 -0600629 while ((event = pop_from_result(&kvm->result))) {
David Ahern62d04db2013-08-05 21:41:35 -0400630 u64 ecount, etime, max, min;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800631
632 ecount = get_event_count(event, vcpu);
633 etime = get_event_time(event, vcpu);
David Ahern62d04db2013-08-05 21:41:35 -0400634 max = get_event_max(event, vcpu);
635 min = get_event_min(event, vcpu);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800636
David Ahernde332ac2012-10-02 22:09:53 -0600637 kvm->events_ops->decode_key(kvm, &event->key, decode);
Hemant Kumar162607e2016-01-28 12:03:04 +0530638 pr_info("%*s ", decode_str_len, decode);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800639 pr_info("%10llu ", (unsigned long long)ecount);
David Ahernde332ac2012-10-02 22:09:53 -0600640 pr_info("%8.2f%% ", (double)ecount / kvm->total_count * 100);
641 pr_info("%8.2f%% ", (double)etime / kvm->total_time * 100);
Arnaldo Carvalho de Meloc05a6e12016-08-08 15:10:44 -0300642 pr_info("%9.2fus ", (double)min / NSEC_PER_USEC);
643 pr_info("%9.2fus ", (double)max / NSEC_PER_USEC);
644 pr_info("%9.2fus ( +-%7.2f%% )", (double)etime / ecount / NSEC_PER_USEC,
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800645 kvm_event_rel_stddev(vcpu, event));
646 pr_info("\n");
647 }
648
David Aherne4f76372012-10-08 11:17:34 -0600649 pr_info("\nTotal Samples:%" PRIu64 ", Total events handled time:%.2fus.\n\n",
Arnaldo Carvalho de Meloc05a6e12016-08-08 15:10:44 -0300650 kvm->total_count, kvm->total_time / (double)NSEC_PER_USEC);
David Ahern1afe1d12013-08-05 21:41:34 -0400651
652 if (kvm->lost_events)
653 pr_info("\nLost events: %" PRIu64 "\n\n", kvm->lost_events);
654}
655
David Ahern87419c92013-10-29 10:43:16 -0600656#ifdef HAVE_TIMERFD_SUPPORT
David Ahern1afe1d12013-08-05 21:41:34 -0400657static int process_lost_event(struct perf_tool *tool,
658 union perf_event *event __maybe_unused,
659 struct perf_sample *sample __maybe_unused,
660 struct machine *machine __maybe_unused)
661{
662 struct perf_kvm_stat *kvm = container_of(tool, struct perf_kvm_stat, tool);
663
664 kvm->lost_events++;
665 return 0;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800666}
David Ahern87419c92013-10-29 10:43:16 -0600667#endif
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800668
David Ahern2e73f002013-08-05 21:41:37 -0400669static bool skip_sample(struct perf_kvm_stat *kvm,
670 struct perf_sample *sample)
671{
672 if (kvm->pid_list && intlist__find(kvm->pid_list, sample->pid) == NULL)
673 return true;
674
675 return false;
676}
677
David Ahernde332ac2012-10-02 22:09:53 -0600678static int process_sample_event(struct perf_tool *tool,
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800679 union perf_event *event,
680 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200681 struct evsel *evsel,
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800682 struct machine *machine)
683{
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300684 int err = 0;
David Ahern2e73f002013-08-05 21:41:37 -0400685 struct thread *thread;
Xiao Guangrong37860632012-11-15 14:17:01 +0800686 struct perf_kvm_stat *kvm = container_of(tool, struct perf_kvm_stat,
687 tool);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800688
David Ahern2e73f002013-08-05 21:41:37 -0400689 if (skip_sample(kvm, sample))
690 return 0;
691
Adrian Hunter314add62013-08-27 11:23:03 +0300692 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800693 if (thread == NULL) {
694 pr_debug("problem processing %d event, skipping it.\n",
695 event->header.type);
696 return -1;
697 }
698
David Ahernde332ac2012-10-02 22:09:53 -0600699 if (!handle_kvm_event(kvm, thread, evsel, sample))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300700 err = -1;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800701
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300702 thread__put(thread);
703 return err;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800704}
705
David Ahern1afe1d12013-08-05 21:41:34 -0400706static int cpu_isa_config(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800707{
David Ahern1afe1d12013-08-05 21:41:34 -0400708 char buf[64], *cpuid;
Alexander Yarygin65c647a2014-07-03 17:59:51 +0400709 int err;
David Ahern1afe1d12013-08-05 21:41:34 -0400710
711 if (kvm->live) {
712 err = get_cpuid(buf, sizeof(buf));
713 if (err != 0) {
Alexander Yarygin65c647a2014-07-03 17:59:51 +0400714 pr_err("Failed to look up CPU type\n");
David Ahern1afe1d12013-08-05 21:41:34 -0400715 return err;
716 }
717 cpuid = buf;
718 } else
719 cpuid = kvm->session->header.env.cpuid;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800720
Alexander Yarygin65c647a2014-07-03 17:59:51 +0400721 if (!cpuid) {
722 pr_err("Failed to look up CPU type\n");
723 return -EINVAL;
724 }
725
726 err = cpu_isa_init(kvm, cpuid);
727 if (err == -ENOTSUP)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800728 pr_err("CPU %s is not supported.\n", cpuid);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800729
Alexander Yarygin65c647a2014-07-03 17:59:51 +0400730 return err;
David Ahern1afe1d12013-08-05 21:41:34 -0400731}
732
733static bool verify_vcpu(int vcpu)
734{
735 if (vcpu != -1 && vcpu < 0) {
736 pr_err("Invalid vcpu:%d.\n", vcpu);
737 return false;
738 }
739
740 return true;
741}
742
David Ahern87419c92013-10-29 10:43:16 -0600743#ifdef HAVE_TIMERFD_SUPPORT
David Ahern1afe1d12013-08-05 21:41:34 -0400744/* keeping the max events to a modest level to keep
745 * the processing of samples per mmap smooth.
746 */
747#define PERF_KVM__MAX_EVENTS_PER_MMAP 25
748
749static s64 perf_kvm__mmap_read_idx(struct perf_kvm_stat *kvm, int idx,
750 u64 *mmap_time)
751{
Jiri Olsa63503db2019-07-21 13:23:52 +0200752 struct evlist *evlist = kvm->evlist;
David Ahern1afe1d12013-08-05 21:41:34 -0400753 union perf_event *event;
Jiri Olsaa5830532019-07-27 20:30:53 +0200754 struct mmap *md;
Jiri Olsa93d10af2017-08-03 13:21:14 +0200755 u64 timestamp;
David Ahern1afe1d12013-08-05 21:41:34 -0400756 s64 n = 0;
757 int err;
758
759 *mmap_time = ULLONG_MAX;
Kan Liang53172f92018-03-01 18:08:58 -0500760 md = &evlist->mmap[idx];
Kan Liangb9bae2c2018-03-06 10:36:07 -0500761 err = perf_mmap__read_init(md);
Kan Liang53172f92018-03-01 18:08:58 -0500762 if (err < 0)
763 return (err == -EAGAIN) ? 0 : -1;
764
Kan Liang0019dc872018-03-06 10:36:06 -0500765 while ((event = perf_mmap__read_event(md)) != NULL) {
Kan Liang53172f92018-03-01 18:08:58 -0500766 err = perf_evlist__parse_sample_timestamp(evlist, event, &timestamp);
David Ahern1afe1d12013-08-05 21:41:34 -0400767 if (err) {
Kan Liangd6ace3d2018-03-06 10:36:05 -0500768 perf_mmap__consume(md);
David Ahern1afe1d12013-08-05 21:41:34 -0400769 pr_err("Failed to parse sample\n");
770 return -1;
771 }
772
Jiri Olsa93d10af2017-08-03 13:21:14 +0200773 err = perf_session__queue_event(kvm->session, event, timestamp, 0);
Zhouyi Zhou8e50d382013-10-24 15:43:33 +0800774 /*
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -0300775 * FIXME: Here we can't consume the event, as perf_session__queue_event will
Zhouyi Zhou8e50d382013-10-24 15:43:33 +0800776 * point to it, and it'll get possibly overwritten by the kernel.
777 */
Kan Liangd6ace3d2018-03-06 10:36:05 -0500778 perf_mmap__consume(md);
Zhouyi Zhou8e50d382013-10-24 15:43:33 +0800779
David Ahern1afe1d12013-08-05 21:41:34 -0400780 if (err) {
781 pr_err("Failed to enqueue sample: %d\n", err);
782 return -1;
783 }
784
785 /* save time stamp of our first sample for this mmap */
786 if (n == 0)
Jiri Olsa93d10af2017-08-03 13:21:14 +0200787 *mmap_time = timestamp;
David Ahern1afe1d12013-08-05 21:41:34 -0400788
789 /* limit events per mmap handled all at once */
790 n++;
791 if (n == PERF_KVM__MAX_EVENTS_PER_MMAP)
792 break;
793 }
794
Kan Liang53172f92018-03-01 18:08:58 -0500795 perf_mmap__read_done(md);
David Ahern1afe1d12013-08-05 21:41:34 -0400796 return n;
797}
798
799static int perf_kvm__mmap_read(struct perf_kvm_stat *kvm)
800{
801 int i, err, throttled = 0;
802 s64 n, ntotal = 0;
803 u64 flush_time = ULLONG_MAX, mmap_time;
804
Jiri Olsac976ee12019-07-30 13:04:59 +0200805 for (i = 0; i < kvm->evlist->core.nr_mmaps; i++) {
David Ahern1afe1d12013-08-05 21:41:34 -0400806 n = perf_kvm__mmap_read_idx(kvm, i, &mmap_time);
807 if (n < 0)
808 return -1;
809
810 /* flush time is going to be the minimum of all the individual
811 * mmap times. Essentially, we flush all the samples queued up
812 * from the last pass under our minimal start time -- that leaves
813 * a very small race for samples to come in with a lower timestamp.
814 * The ioctl to return the perf_clock timestamp should close the
815 * race entirely.
816 */
817 if (mmap_time < flush_time)
818 flush_time = mmap_time;
819
820 ntotal += n;
821 if (n == PERF_KVM__MAX_EVENTS_PER_MMAP)
822 throttled = 1;
823 }
824
825 /* flush queue after each round in which we processed events */
826 if (ntotal) {
Arnaldo Carvalho de Melod704ebd2015-03-03 12:37:54 -0300827 struct ordered_events *oe = &kvm->session->ordered_events;
828
829 oe->next_flush = flush_time;
830 err = ordered_events__flush(oe, OE_FLUSH__ROUND);
David Ahern1afe1d12013-08-05 21:41:34 -0400831 if (err) {
832 if (kvm->lost_events)
833 pr_info("\nLost events: %" PRIu64 "\n\n",
834 kvm->lost_events);
835 return err;
836 }
837 }
838
839 return throttled;
840}
841
842static volatile int done;
843
844static void sig_handler(int sig __maybe_unused)
845{
846 done = 1;
847}
848
849static int perf_kvm__timerfd_create(struct perf_kvm_stat *kvm)
850{
851 struct itimerspec new_value;
852 int rc = -1;
853
854 kvm->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK);
855 if (kvm->timerfd < 0) {
856 pr_err("timerfd_create failed\n");
857 goto out;
858 }
859
860 new_value.it_value.tv_sec = kvm->display_time;
861 new_value.it_value.tv_nsec = 0;
862 new_value.it_interval.tv_sec = kvm->display_time;
863 new_value.it_interval.tv_nsec = 0;
864
865 if (timerfd_settime(kvm->timerfd, 0, &new_value, NULL) != 0) {
866 pr_err("timerfd_settime failed: %d\n", errno);
867 close(kvm->timerfd);
868 goto out;
869 }
870
871 rc = 0;
872out:
873 return rc;
874}
875
876static int perf_kvm__handle_timerfd(struct perf_kvm_stat *kvm)
877{
878 uint64_t c;
879 int rc;
880
881 rc = read(kvm->timerfd, &c, sizeof(uint64_t));
882 if (rc < 0) {
883 if (errno == EAGAIN)
884 return 0;
885
886 pr_err("Failed to read timer fd: %d\n", errno);
887 return -1;
888 }
889
890 if (rc != sizeof(uint64_t)) {
891 pr_err("Error reading timer fd - invalid size returned\n");
892 return -1;
893 }
894
895 if (c != 1)
896 pr_debug("Missed timer beats: %" PRIu64 "\n", c-1);
897
898 /* update display */
899 sort_result(kvm);
900 print_result(kvm);
901
902 /* reset counts */
903 clear_events_cache_stats(kvm->kvm_events_cache);
904 kvm->total_count = 0;
905 kvm->total_time = 0;
906 kvm->lost_events = 0;
907
908 return 0;
909}
910
911static int fd_set_nonblock(int fd)
912{
913 long arg = 0;
914
915 arg = fcntl(fd, F_GETFL);
916 if (arg < 0) {
917 pr_err("Failed to get current flags for fd %d\n", fd);
918 return -1;
919 }
920
921 if (fcntl(fd, F_SETFL, arg | O_NONBLOCK) < 0) {
922 pr_err("Failed to set non-block option on fd %d\n", fd);
923 return -1;
924 }
925
926 return 0;
927}
928
Jiri Olsad5b41302014-08-11 10:50:09 +0200929static int perf_kvm__handle_stdin(void)
David Ahern1afe1d12013-08-05 21:41:34 -0400930{
931 int c;
932
David Ahern1afe1d12013-08-05 21:41:34 -0400933 c = getc(stdin);
David Ahern1afe1d12013-08-05 21:41:34 -0400934 if (c == 'q')
935 return 1;
936
937 return 0;
938}
939
940static int kvm_events_live_report(struct perf_kvm_stat *kvm)
941{
Jiri Olsa1ca72262014-10-01 18:00:29 +0200942 int nr_stdin, ret, err = -EINVAL;
Jiri Olsad5b41302014-08-11 10:50:09 +0200943 struct termios save;
David Ahern1afe1d12013-08-05 21:41:34 -0400944
945 /* live flag must be set first */
946 kvm->live = true;
947
948 ret = cpu_isa_config(kvm);
949 if (ret < 0)
950 return ret;
951
952 if (!verify_vcpu(kvm->trace_vcpu) ||
953 !select_key(kvm) ||
954 !register_kvm_events_ops(kvm)) {
955 goto out;
956 }
957
Jiri Olsad5b41302014-08-11 10:50:09 +0200958 set_term_quiet_input(&save);
David Ahern1afe1d12013-08-05 21:41:34 -0400959 init_kvm_event_record(kvm);
960
David Ahern1afe1d12013-08-05 21:41:34 -0400961 signal(SIGINT, sig_handler);
962 signal(SIGTERM, sig_handler);
963
David Ahern1afe1d12013-08-05 21:41:34 -0400964 /* add timer fd */
965 if (perf_kvm__timerfd_create(kvm) < 0) {
966 err = -1;
967 goto out;
968 }
969
Jiri Olsaf4009e72019-08-16 16:00:45 +0200970 if (evlist__add_pollfd(kvm->evlist, kvm->timerfd) < 0)
Arnaldo Carvalho de Melo0a04c9e2014-08-18 17:12:30 -0300971 goto out;
972
Jiri Olsaf4009e72019-08-16 16:00:45 +0200973 nr_stdin = evlist__add_pollfd(kvm->evlist, fileno(stdin));
Jiri Olsa0cae0132014-10-01 18:00:28 +0200974 if (nr_stdin < 0)
Arnaldo Carvalho de Melo0a04c9e2014-08-18 17:12:30 -0300975 goto out;
976
David Ahern1afe1d12013-08-05 21:41:34 -0400977 if (fd_set_nonblock(fileno(stdin)) != 0)
978 goto out;
979
980 /* everything is good - enable the events and process */
Jiri Olsa1c87f162019-07-21 13:24:08 +0200981 evlist__enable(kvm->evlist);
David Ahern1afe1d12013-08-05 21:41:34 -0400982
983 while (!done) {
Jiri Olsa40cb2d52019-08-06 11:28:02 +0200984 struct fdarray *fda = &kvm->evlist->core.pollfd;
David Ahern1afe1d12013-08-05 21:41:34 -0400985 int rc;
986
987 rc = perf_kvm__mmap_read(kvm);
988 if (rc < 0)
989 break;
990
991 err = perf_kvm__handle_timerfd(kvm);
992 if (err)
993 goto out;
994
Jiri Olsa1ca72262014-10-01 18:00:29 +0200995 if (fda->entries[nr_stdin].revents & POLLIN)
Jiri Olsad5b41302014-08-11 10:50:09 +0200996 done = perf_kvm__handle_stdin();
David Ahern1afe1d12013-08-05 21:41:34 -0400997
998 if (!rc && !done)
Jiri Olsa1ca72262014-10-01 18:00:29 +0200999 err = fdarray__poll(fda, 100);
David Ahern1afe1d12013-08-05 21:41:34 -04001000 }
1001
Jiri Olsae74676d2019-07-21 13:24:09 +02001002 evlist__disable(kvm->evlist);
David Ahern1afe1d12013-08-05 21:41:34 -04001003
1004 if (err == 0) {
1005 sort_result(kvm);
1006 print_result(kvm);
1007 }
1008
1009out:
1010 if (kvm->timerfd >= 0)
1011 close(kvm->timerfd);
1012
Jiri Olsad5b41302014-08-11 10:50:09 +02001013 tcsetattr(0, TCSAFLUSH, &save);
David Ahern1afe1d12013-08-05 21:41:34 -04001014 return err;
1015}
1016
1017static int kvm_live_open_events(struct perf_kvm_stat *kvm)
1018{
1019 int err, rc = -1;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001020 struct evsel *pos;
Jiri Olsa63503db2019-07-21 13:23:52 +02001021 struct evlist *evlist = kvm->evlist;
Masami Hiramatsuf9f33fd2014-08-14 02:22:51 +00001022 char sbuf[STRERR_BUFSIZE];
David Ahern1afe1d12013-08-05 21:41:34 -04001023
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -03001024 perf_evlist__config(evlist, &kvm->opts, NULL);
David Ahern1afe1d12013-08-05 21:41:34 -04001025
1026 /*
1027 * Note: exclude_{guest,host} do not apply here.
1028 * This command processes KVM tracepoints from host only
1029 */
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001030 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001031 struct perf_event_attr *attr = &pos->core.attr;
David Ahern1afe1d12013-08-05 21:41:34 -04001032
1033 /* make sure these *are* set */
Adrian Huntere71aa282013-09-06 22:40:12 +03001034 perf_evsel__set_sample_bit(pos, TID);
1035 perf_evsel__set_sample_bit(pos, TIME);
1036 perf_evsel__set_sample_bit(pos, CPU);
1037 perf_evsel__set_sample_bit(pos, RAW);
David Ahern1afe1d12013-08-05 21:41:34 -04001038 /* make sure these are *not*; want as small a sample as possible */
Adrian Huntere71aa282013-09-06 22:40:12 +03001039 perf_evsel__reset_sample_bit(pos, PERIOD);
1040 perf_evsel__reset_sample_bit(pos, IP);
1041 perf_evsel__reset_sample_bit(pos, CALLCHAIN);
1042 perf_evsel__reset_sample_bit(pos, ADDR);
1043 perf_evsel__reset_sample_bit(pos, READ);
David Ahern1afe1d12013-08-05 21:41:34 -04001044 attr->mmap = 0;
1045 attr->comm = 0;
1046 attr->task = 0;
1047
1048 attr->sample_period = 1;
1049
1050 attr->watermark = 0;
1051 attr->wakeup_events = 1000;
1052
1053 /* will enable all once we are ready */
1054 attr->disabled = 1;
1055 }
1056
Jiri Olsa474ddc42019-07-21 13:24:06 +02001057 err = evlist__open(evlist);
David Ahern1afe1d12013-08-05 21:41:34 -04001058 if (err < 0) {
Masami Hiramatsuf9f33fd2014-08-14 02:22:51 +00001059 printf("Couldn't create the events: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03001060 str_error_r(errno, sbuf, sizeof(sbuf)));
David Ahern1afe1d12013-08-05 21:41:34 -04001061 goto out;
1062 }
1063
Jiri Olsa9521b5f2019-07-28 12:45:35 +02001064 if (evlist__mmap(evlist, kvm->opts.mmap_pages) < 0) {
Masami Hiramatsuf9f33fd2014-08-14 02:22:51 +00001065 ui__error("Failed to mmap the events: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03001066 str_error_r(errno, sbuf, sizeof(sbuf)));
Jiri Olsa750b4ed2019-07-21 13:24:07 +02001067 evlist__close(evlist);
David Ahern1afe1d12013-08-05 21:41:34 -04001068 goto out;
1069 }
1070
1071 rc = 0;
1072
1073out:
1074 return rc;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001075}
David Ahern87419c92013-10-29 10:43:16 -06001076#endif
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001077
Xiao Guangrong37860632012-11-15 14:17:01 +08001078static int read_events(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001079{
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001080 int ret;
1081
David Ahernde332ac2012-10-02 22:09:53 -06001082 struct perf_tool eops = {
1083 .sample = process_sample_event,
1084 .comm = perf_event__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05301085 .namespaces = perf_event__process_namespaces,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001086 .ordered_events = true,
David Ahernde332ac2012-10-02 22:09:53 -06001087 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001088 struct perf_data file = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001089 .path = kvm->file_name,
1090 .mode = PERF_DATA_MODE_READ,
1091 .force = kvm->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001092 };
David Ahernde332ac2012-10-02 22:09:53 -06001093
1094 kvm->tool = eops;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001095 kvm->session = perf_session__new(&file, false, &kvm->tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05301096 if (IS_ERR(kvm->session)) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001097 pr_err("Initializing perf session failed\n");
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05301098 return PTR_ERR(kvm->session);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001099 }
1100
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001101 symbol__init(&kvm->session->header.env);
Namhyung Kim14d37f32014-08-12 15:40:39 +09001102
Taeung Song41b98362015-07-01 00:18:44 +09001103 if (!perf_session__has_traces(kvm->session, "kvm record")) {
1104 ret = -EINVAL;
1105 goto out_delete;
1106 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001107
1108 /*
1109 * Do not use 'isa' recorded in kvm_exit tracepoint since it is not
1110 * traced in the old kernel.
1111 */
David Ahern1afe1d12013-08-05 21:41:34 -04001112 ret = cpu_isa_config(kvm);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001113 if (ret < 0)
Taeung Song41b98362015-07-01 00:18:44 +09001114 goto out_delete;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001115
Taeung Song41b98362015-07-01 00:18:44 +09001116 ret = perf_session__process_events(kvm->session);
1117
1118out_delete:
1119 perf_session__delete(kvm->session);
1120 return ret;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001121}
1122
David Ahern2e73f002013-08-05 21:41:37 -04001123static int parse_target_str(struct perf_kvm_stat *kvm)
1124{
Alexander Yarygin3ae4a762014-09-01 17:44:53 +04001125 if (kvm->opts.target.pid) {
1126 kvm->pid_list = intlist__new(kvm->opts.target.pid);
David Ahern2e73f002013-08-05 21:41:37 -04001127 if (kvm->pid_list == NULL) {
1128 pr_err("Error parsing process id string\n");
1129 return -EINVAL;
1130 }
1131 }
1132
1133 return 0;
1134}
1135
Xiao Guangrong37860632012-11-15 14:17:01 +08001136static int kvm_events_report_vcpu(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001137{
1138 int ret = -EINVAL;
David Ahernde332ac2012-10-02 22:09:53 -06001139 int vcpu = kvm->trace_vcpu;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001140
David Ahern2e73f002013-08-05 21:41:37 -04001141 if (parse_target_str(kvm) != 0)
1142 goto exit;
1143
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001144 if (!verify_vcpu(vcpu))
1145 goto exit;
1146
David Ahernde332ac2012-10-02 22:09:53 -06001147 if (!select_key(kvm))
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001148 goto exit;
1149
David Ahernde332ac2012-10-02 22:09:53 -06001150 if (!register_kvm_events_ops(kvm))
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001151 goto exit;
1152
David Ahernde332ac2012-10-02 22:09:53 -06001153 init_kvm_event_record(kvm);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001154 setup_pager();
1155
David Ahernde332ac2012-10-02 22:09:53 -06001156 ret = read_events(kvm);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001157 if (ret)
1158 goto exit;
1159
David Ahernde332ac2012-10-02 22:09:53 -06001160 sort_result(kvm);
1161 print_result(kvm);
1162
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001163exit:
1164 return ret;
1165}
1166
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001167#define STRDUP_FAIL_EXIT(s) \
1168 ({ char *_p; \
1169 _p = strdup(s); \
1170 if (!_p) \
1171 return -ENOMEM; \
1172 _p; \
1173 })
1174
Hemant Kumar066d3592016-01-28 12:03:06 +05301175int __weak setup_kvm_events_tp(struct perf_kvm_stat *kvm __maybe_unused)
1176{
1177 return 0;
1178}
1179
Xiao Guangrong37860632012-11-15 14:17:01 +08001180static int
1181kvm_events_record(struct perf_kvm_stat *kvm, int argc, const char **argv)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001182{
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001183 unsigned int rec_argc, i, j, events_tp_size;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001184 const char **rec_argv;
David Ahern8fdd84c2013-08-02 14:05:42 -06001185 const char * const record_args[] = {
1186 "record",
1187 "-R",
David Ahern8fdd84c2013-08-02 14:05:42 -06001188 "-m", "1024",
1189 "-c", "1",
1190 };
Namhyung Kimf45d20f2014-10-23 00:15:47 +09001191 const char * const kvm_stat_record_usage[] = {
1192 "perf kvm stat record [<options>]",
1193 NULL
1194 };
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001195 const char * const *events_tp;
Hemant Kumar066d3592016-01-28 12:03:06 +05301196 int ret;
1197
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001198 events_tp_size = 0;
Hemant Kumar066d3592016-01-28 12:03:06 +05301199 ret = setup_kvm_events_tp(kvm);
1200 if (ret < 0) {
1201 pr_err("Unable to setup the kvm tracepoints\n");
1202 return ret;
1203 }
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001204
1205 for (events_tp = kvm_events_tp; *events_tp; events_tp++)
1206 events_tp_size++;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001207
David Ahern8fdd84c2013-08-02 14:05:42 -06001208 rec_argc = ARRAY_SIZE(record_args) + argc + 2 +
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001209 2 * events_tp_size;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001210 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1211
1212 if (rec_argv == NULL)
1213 return -ENOMEM;
1214
1215 for (i = 0; i < ARRAY_SIZE(record_args); i++)
1216 rec_argv[i] = STRDUP_FAIL_EXIT(record_args[i]);
1217
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001218 for (j = 0; j < events_tp_size; j++) {
David Ahern8fdd84c2013-08-02 14:05:42 -06001219 rec_argv[i++] = "-e";
1220 rec_argv[i++] = STRDUP_FAIL_EXIT(kvm_events_tp[j]);
1221 }
1222
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001223 rec_argv[i++] = STRDUP_FAIL_EXIT("-o");
David Ahernde332ac2012-10-02 22:09:53 -06001224 rec_argv[i++] = STRDUP_FAIL_EXIT(kvm->file_name);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001225
1226 for (j = 1; j < (unsigned int)argc; j++, i++)
1227 rec_argv[i] = argv[j];
1228
Namhyung Kimf45d20f2014-10-23 00:15:47 +09001229 set_option_flag(record_options, 'e', "event", PARSE_OPT_HIDDEN);
1230 set_option_flag(record_options, 0, "filter", PARSE_OPT_HIDDEN);
1231 set_option_flag(record_options, 'R', "raw-samples", PARSE_OPT_HIDDEN);
1232
1233 set_option_flag(record_options, 'F', "freq", PARSE_OPT_DISABLED);
1234 set_option_flag(record_options, 0, "group", PARSE_OPT_DISABLED);
1235 set_option_flag(record_options, 'g', NULL, PARSE_OPT_DISABLED);
1236 set_option_flag(record_options, 0, "call-graph", PARSE_OPT_DISABLED);
1237 set_option_flag(record_options, 'd', "data", PARSE_OPT_DISABLED);
1238 set_option_flag(record_options, 'T', "timestamp", PARSE_OPT_DISABLED);
1239 set_option_flag(record_options, 'P', "period", PARSE_OPT_DISABLED);
1240 set_option_flag(record_options, 'n', "no-samples", PARSE_OPT_DISABLED);
1241 set_option_flag(record_options, 'N', "no-buildid-cache", PARSE_OPT_DISABLED);
1242 set_option_flag(record_options, 'B', "no-buildid", PARSE_OPT_DISABLED);
1243 set_option_flag(record_options, 'G', "cgroup", PARSE_OPT_DISABLED);
1244 set_option_flag(record_options, 'b', "branch-any", PARSE_OPT_DISABLED);
1245 set_option_flag(record_options, 'j', "branch-filter", PARSE_OPT_DISABLED);
1246 set_option_flag(record_options, 'W', "weight", PARSE_OPT_DISABLED);
1247 set_option_flag(record_options, 0, "transaction", PARSE_OPT_DISABLED);
1248
1249 record_usage = kvm_stat_record_usage;
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001250 return cmd_record(i, rec_argv);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001251}
1252
Xiao Guangrong37860632012-11-15 14:17:01 +08001253static int
1254kvm_events_report(struct perf_kvm_stat *kvm, int argc, const char **argv)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001255{
David Ahernde332ac2012-10-02 22:09:53 -06001256 const struct option kvm_events_report_options[] = {
1257 OPT_STRING(0, "event", &kvm->report_event, "report event",
Alexander Yarygin3be8e2a2014-07-03 18:29:07 +04001258 "event for reporting: vmexit, "
1259 "mmio (x86 only), ioport (x86 only)"),
David Ahernde332ac2012-10-02 22:09:53 -06001260 OPT_INTEGER(0, "vcpu", &kvm->trace_vcpu,
1261 "vcpu id to report"),
1262 OPT_STRING('k', "key", &kvm->sort_key, "sort-key",
1263 "key for sorting: sample(sort by samples number)"
1264 " time (sort by avg time)"),
Alexander Yarygin3ae4a762014-09-01 17:44:53 +04001265 OPT_STRING('p', "pid", &kvm->opts.target.pid, "pid",
David Ahern2e73f002013-08-05 21:41:37 -04001266 "analyze events only for given process id(s)"),
Yunlong Song8cc5ec1f2015-04-02 21:47:13 +08001267 OPT_BOOLEAN('f', "force", &kvm->force, "don't complain, do it"),
David Ahernde332ac2012-10-02 22:09:53 -06001268 OPT_END()
1269 };
1270
1271 const char * const kvm_events_report_usage[] = {
1272 "perf kvm stat report [<options>]",
1273 NULL
1274 };
1275
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001276 if (argc) {
1277 argc = parse_options(argc, argv,
1278 kvm_events_report_options,
1279 kvm_events_report_usage, 0);
1280 if (argc)
1281 usage_with_options(kvm_events_report_usage,
1282 kvm_events_report_options);
1283 }
1284
Alexander Yaryginf1819572014-09-01 17:44:54 +04001285 if (!kvm->opts.target.pid)
1286 kvm->opts.target.system_wide = true;
1287
David Ahernde332ac2012-10-02 22:09:53 -06001288 return kvm_events_report_vcpu(kvm);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001289}
1290
David Ahern87419c92013-10-29 10:43:16 -06001291#ifdef HAVE_TIMERFD_SUPPORT
Jiri Olsa63503db2019-07-21 13:23:52 +02001292static struct evlist *kvm_live_event_list(void)
David Ahern1afe1d12013-08-05 21:41:34 -04001293{
Jiri Olsa63503db2019-07-21 13:23:52 +02001294 struct evlist *evlist;
David Ahern1afe1d12013-08-05 21:41:34 -04001295 char *tp, *name, *sys;
David Ahern1afe1d12013-08-05 21:41:34 -04001296 int err = -1;
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001297 const char * const *events_tp;
David Ahern1afe1d12013-08-05 21:41:34 -04001298
Jiri Olsa0f98b112019-07-21 13:23:55 +02001299 evlist = evlist__new();
David Ahern1afe1d12013-08-05 21:41:34 -04001300 if (evlist == NULL)
1301 return NULL;
1302
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001303 for (events_tp = kvm_events_tp; *events_tp; events_tp++) {
David Ahern1afe1d12013-08-05 21:41:34 -04001304
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001305 tp = strdup(*events_tp);
David Ahern1afe1d12013-08-05 21:41:34 -04001306 if (tp == NULL)
1307 goto out;
1308
1309 /* split tracepoint into subsystem and name */
1310 sys = tp;
1311 name = strchr(tp, ':');
1312 if (name == NULL) {
1313 pr_err("Error parsing %s tracepoint: subsystem delimiter not found\n",
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001314 *events_tp);
David Ahern1afe1d12013-08-05 21:41:34 -04001315 free(tp);
1316 goto out;
1317 }
1318 *name = '\0';
1319 name++;
1320
1321 if (perf_evlist__add_newtp(evlist, sys, name, NULL)) {
Alexander Yarygin9daa8122014-07-03 18:29:05 +04001322 pr_err("Failed to add %s tracepoint to the list\n", *events_tp);
David Ahern1afe1d12013-08-05 21:41:34 -04001323 free(tp);
1324 goto out;
1325 }
1326
1327 free(tp);
1328 }
1329
1330 err = 0;
1331
1332out:
1333 if (err) {
Jiri Olsac12995a2019-07-21 13:23:56 +02001334 evlist__delete(evlist);
David Ahern1afe1d12013-08-05 21:41:34 -04001335 evlist = NULL;
1336 }
1337
1338 return evlist;
1339}
1340
1341static int kvm_events_live(struct perf_kvm_stat *kvm,
1342 int argc, const char **argv)
1343{
1344 char errbuf[BUFSIZ];
1345 int err;
1346
1347 const struct option live_options[] = {
1348 OPT_STRING('p', "pid", &kvm->opts.target.pid, "pid",
1349 "record events on existing process id"),
Jiri Olsa994a1f72013-09-01 12:36:12 +02001350 OPT_CALLBACK('m', "mmap-pages", &kvm->opts.mmap_pages, "pages",
1351 "number of mmap data pages",
1352 perf_evlist__parse_mmap_pages),
David Ahern1afe1d12013-08-05 21:41:34 -04001353 OPT_INCR('v', "verbose", &verbose,
1354 "be more verbose (show counter open errors, etc)"),
1355 OPT_BOOLEAN('a', "all-cpus", &kvm->opts.target.system_wide,
1356 "system-wide collection from all CPUs"),
1357 OPT_UINTEGER('d', "display", &kvm->display_time,
1358 "time in seconds between display updates"),
1359 OPT_STRING(0, "event", &kvm->report_event, "report event",
Alexander Yarygin99d348a2014-12-10 14:28:10 +01001360 "event for reporting: "
1361 "vmexit, mmio (x86 only), ioport (x86 only)"),
David Ahern1afe1d12013-08-05 21:41:34 -04001362 OPT_INTEGER(0, "vcpu", &kvm->trace_vcpu,
1363 "vcpu id to report"),
1364 OPT_STRING('k', "key", &kvm->sort_key, "sort-key",
1365 "key for sorting: sample(sort by samples number)"
1366 " time (sort by avg time)"),
David Ahern70f7b4a2013-08-07 21:56:38 -04001367 OPT_U64(0, "duration", &kvm->duration,
Alexander Yarygin3be8e2a2014-07-03 18:29:07 +04001368 "show events other than"
1369 " HLT (x86 only) or Wait state (s390 only)"
1370 " that take longer than duration usecs"),
Mark Drayton3fcb10e2018-12-04 12:34:20 -08001371 OPT_UINTEGER(0, "proc-map-timeout", &proc_map_timeout,
Kan Liang9d9cad72015-06-17 09:51:11 -04001372 "per thread proc mmap processing timeout in ms"),
David Ahern1afe1d12013-08-05 21:41:34 -04001373 OPT_END()
1374 };
1375 const char * const live_usage[] = {
1376 "perf kvm stat live [<options>]",
1377 NULL
1378 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001379 struct perf_data data = {
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001380 .mode = PERF_DATA_MODE_WRITE,
1381 };
David Ahern1afe1d12013-08-05 21:41:34 -04001382
1383
1384 /* event handling */
1385 kvm->tool.sample = process_sample_event;
1386 kvm->tool.comm = perf_event__process_comm;
1387 kvm->tool.exit = perf_event__process_exit;
1388 kvm->tool.fork = perf_event__process_fork;
1389 kvm->tool.lost = process_lost_event;
Hari Bathinif3b36142017-03-08 02:11:43 +05301390 kvm->tool.namespaces = perf_event__process_namespaces;
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001391 kvm->tool.ordered_events = true;
David Ahern1afe1d12013-08-05 21:41:34 -04001392 perf_tool__fill_defaults(&kvm->tool);
1393
1394 /* set defaults */
1395 kvm->display_time = 1;
1396 kvm->opts.user_interval = 1;
1397 kvm->opts.mmap_pages = 512;
1398 kvm->opts.target.uses_mmap = false;
1399 kvm->opts.target.uid_str = NULL;
1400 kvm->opts.target.uid = UINT_MAX;
1401
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001402 symbol__init(NULL);
David Ahern1afe1d12013-08-05 21:41:34 -04001403 disable_buildid_cache();
1404
1405 use_browser = 0;
David Ahern1afe1d12013-08-05 21:41:34 -04001406
1407 if (argc) {
1408 argc = parse_options(argc, argv, live_options,
1409 live_usage, 0);
1410 if (argc)
1411 usage_with_options(live_usage, live_options);
1412 }
1413
David Ahern70f7b4a2013-08-07 21:56:38 -04001414 kvm->duration *= NSEC_PER_USEC; /* convert usec to nsec */
1415
David Ahern1afe1d12013-08-05 21:41:34 -04001416 /*
1417 * target related setups
1418 */
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001419 err = target__validate(&kvm->opts.target);
David Ahern1afe1d12013-08-05 21:41:34 -04001420 if (err) {
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001421 target__strerror(&kvm->opts.target, err, errbuf, BUFSIZ);
David Ahern1afe1d12013-08-05 21:41:34 -04001422 ui__warning("%s", errbuf);
1423 }
1424
Arnaldo Carvalho de Melo602ad872013-11-12 16:46:16 -03001425 if (target__none(&kvm->opts.target))
David Ahern1afe1d12013-08-05 21:41:34 -04001426 kvm->opts.target.system_wide = true;
1427
1428
1429 /*
1430 * generate the event list
1431 */
Hemant Kumar066d3592016-01-28 12:03:06 +05301432 err = setup_kvm_events_tp(kvm);
1433 if (err < 0) {
1434 pr_err("Unable to setup the kvm tracepoints\n");
1435 return err;
1436 }
1437
David Ahern1afe1d12013-08-05 21:41:34 -04001438 kvm->evlist = kvm_live_event_list();
1439 if (kvm->evlist == NULL) {
1440 err = -1;
1441 goto out;
1442 }
1443
David Ahern1afe1d12013-08-05 21:41:34 -04001444 if (perf_evlist__create_maps(kvm->evlist, &kvm->opts.target) < 0)
1445 usage_with_options(live_usage, live_options);
1446
1447 /*
1448 * perf session
1449 */
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001450 kvm->session = perf_session__new(&data, false, &kvm->tool);
Mamatha Inamdar6ef81c52019-08-22 12:50:49 +05301451 if (IS_ERR(kvm->session)) {
1452 err = PTR_ERR(kvm->session);
David Ahern1afe1d12013-08-05 21:41:34 -04001453 goto out;
1454 }
1455 kvm->session->evlist = kvm->evlist;
1456 perf_session__set_id_hdr_size(kvm->session);
Alexander Yarygin673d6592014-10-03 18:40:12 +04001457 ordered_events__set_copy_on_queue(&kvm->session->ordered_events, true);
Arnaldo Carvalho de Meloa33fbd52013-11-11 11:36:12 -03001458 machine__synthesize_threads(&kvm->session->machines.host, &kvm->opts.target,
Jiri Olsa03617c22019-07-21 13:24:42 +02001459 kvm->evlist->core.threads, false, 1);
David Ahern1afe1d12013-08-05 21:41:34 -04001460 err = kvm_live_open_events(kvm);
1461 if (err)
1462 goto out;
1463
1464 err = kvm_events_live_report(kvm);
1465
1466out:
Arnaldo Carvalho de Meloe1446552016-06-22 10:02:16 -03001467 perf_session__delete(kvm->session);
David Ahern1afe1d12013-08-05 21:41:34 -04001468 kvm->session = NULL;
Jiri Olsac12995a2019-07-21 13:23:56 +02001469 evlist__delete(kvm->evlist);
David Ahern1afe1d12013-08-05 21:41:34 -04001470
1471 return err;
1472}
David Ahern87419c92013-10-29 10:43:16 -06001473#endif
David Ahern1afe1d12013-08-05 21:41:34 -04001474
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001475static void print_kvm_stat_usage(void)
1476{
1477 printf("Usage: perf kvm stat <command>\n\n");
1478
1479 printf("# Available commands:\n");
1480 printf("\trecord: record kvm events\n");
1481 printf("\treport: report statistical data of kvm events\n");
David Ahern1afe1d12013-08-05 21:41:34 -04001482 printf("\tlive: live reporting of statistical data of kvm events\n");
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001483
1484 printf("\nOtherwise, it is the alias of 'perf stat':\n");
1485}
1486
Xiao Guangrong37860632012-11-15 14:17:01 +08001487static int kvm_cmd_stat(const char *file_name, int argc, const char **argv)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001488{
Xiao Guangrong37860632012-11-15 14:17:01 +08001489 struct perf_kvm_stat kvm = {
1490 .file_name = file_name,
1491
1492 .trace_vcpu = -1,
1493 .report_event = "vmexit",
1494 .sort_key = "sample",
1495
Xiao Guangrong37860632012-11-15 14:17:01 +08001496 };
1497
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001498 if (argc == 1) {
1499 print_kvm_stat_usage();
1500 goto perf_stat;
1501 }
1502
1503 if (!strncmp(argv[1], "rec", 3))
Xiao Guangrong37860632012-11-15 14:17:01 +08001504 return kvm_events_record(&kvm, argc - 1, argv + 1);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001505
1506 if (!strncmp(argv[1], "rep", 3))
Xiao Guangrong37860632012-11-15 14:17:01 +08001507 return kvm_events_report(&kvm, argc - 1 , argv + 1);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001508
David Ahern87419c92013-10-29 10:43:16 -06001509#ifdef HAVE_TIMERFD_SUPPORT
David Ahern1afe1d12013-08-05 21:41:34 -04001510 if (!strncmp(argv[1], "live", 4))
1511 return kvm_events_live(&kvm, argc - 1 , argv + 1);
David Ahern87419c92013-10-29 10:43:16 -06001512#endif
David Ahern1afe1d12013-08-05 21:41:34 -04001513
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001514perf_stat:
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001515 return cmd_stat(argc, argv);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001516}
Alexander Yaryginda50ad62014-07-03 17:59:49 +04001517#endif /* HAVE_KVM_STAT_SUPPORT */
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001518
Anju T Sudhakar124eb5f2019-07-18 23:47:48 +05301519int __weak kvm_add_default_arch_event(int *argc __maybe_unused,
1520 const char **argv __maybe_unused)
1521{
1522 return 0;
1523}
1524
Xiao Guangrong37860632012-11-15 14:17:01 +08001525static int __cmd_record(const char *file_name, int argc, const char **argv)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001526{
Anju T Sudhakar124eb5f2019-07-18 23:47:48 +05301527 int rec_argc, i = 0, j, ret;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001528 const char **rec_argv;
1529
Anju T Sudhakar124eb5f2019-07-18 23:47:48 +05301530 ret = kvm_add_default_arch_event(&argc, argv);
1531 if (ret)
1532 return -EINVAL;
1533
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001534 rec_argc = argc + 2;
1535 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1536 rec_argv[i++] = strdup("record");
1537 rec_argv[i++] = strdup("-o");
Xiao Guangrong37860632012-11-15 14:17:01 +08001538 rec_argv[i++] = strdup(file_name);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001539 for (j = 1; j < argc; j++, i++)
1540 rec_argv[i] = argv[j];
1541
1542 BUG_ON(i != rec_argc);
1543
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001544 return cmd_record(i, rec_argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001545}
1546
Xiao Guangrong37860632012-11-15 14:17:01 +08001547static int __cmd_report(const char *file_name, int argc, const char **argv)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001548{
1549 int rec_argc, i = 0, j;
1550 const char **rec_argv;
1551
1552 rec_argc = argc + 2;
1553 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1554 rec_argv[i++] = strdup("report");
1555 rec_argv[i++] = strdup("-i");
Xiao Guangrong37860632012-11-15 14:17:01 +08001556 rec_argv[i++] = strdup(file_name);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001557 for (j = 1; j < argc; j++, i++)
1558 rec_argv[i] = argv[j];
1559
1560 BUG_ON(i != rec_argc);
1561
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001562 return cmd_report(i, rec_argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001563}
1564
Xiao Guangrong37860632012-11-15 14:17:01 +08001565static int
1566__cmd_buildid_list(const char *file_name, int argc, const char **argv)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001567{
1568 int rec_argc, i = 0, j;
1569 const char **rec_argv;
1570
1571 rec_argc = argc + 2;
1572 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1573 rec_argv[i++] = strdup("buildid-list");
1574 rec_argv[i++] = strdup("-i");
Xiao Guangrong37860632012-11-15 14:17:01 +08001575 rec_argv[i++] = strdup(file_name);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001576 for (j = 1; j < argc; j++, i++)
1577 rec_argv[i] = argv[j];
1578
1579 BUG_ON(i != rec_argc);
1580
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001581 return cmd_buildid_list(i, rec_argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001582}
1583
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001584int cmd_kvm(int argc, const char **argv)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001585{
Arnaldo Carvalho de Melo20914ce52012-12-19 10:59:29 -03001586 const char *file_name = NULL;
David Ahernde332ac2012-10-02 22:09:53 -06001587 const struct option kvm_options[] = {
Xiao Guangrong37860632012-11-15 14:17:01 +08001588 OPT_STRING('i', "input", &file_name, "file",
David Ahernde332ac2012-10-02 22:09:53 -06001589 "Input file name"),
Xiao Guangrong37860632012-11-15 14:17:01 +08001590 OPT_STRING('o', "output", &file_name, "file",
David Ahernde332ac2012-10-02 22:09:53 -06001591 "Output file name"),
1592 OPT_BOOLEAN(0, "guest", &perf_guest,
1593 "Collect guest os data"),
1594 OPT_BOOLEAN(0, "host", &perf_host,
1595 "Collect host os data"),
1596 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
1597 "guest mount directory under which every guest os"
1598 " instance has a subdir"),
1599 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
1600 "file", "file saving guest os vmlinux"),
1601 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
1602 "file", "file saving guest os /proc/kallsyms"),
1603 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
1604 "file", "file saving guest os /proc/modules"),
Dongsheng Yang100b9072013-12-09 12:15:11 -05001605 OPT_INCR('v', "verbose", &verbose,
1606 "be more verbose (show counter open errors, etc)"),
David Ahernde332ac2012-10-02 22:09:53 -06001607 OPT_END()
1608 };
1609
Ramkumar Ramachandra09a71b92014-03-03 20:26:36 -05001610 const char *const kvm_subcommands[] = { "top", "record", "report", "diff",
1611 "buildid-list", "stat", NULL };
1612 const char *kvm_usage[] = { NULL, NULL };
David Ahernde332ac2012-10-02 22:09:53 -06001613
Joerg Roedel1aed2672012-01-04 17:54:20 +01001614 perf_host = 0;
1615 perf_guest = 1;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001616
Ramkumar Ramachandra09a71b92014-03-03 20:26:36 -05001617 argc = parse_options_subcommand(argc, argv, kvm_options, kvm_subcommands, kvm_usage,
1618 PARSE_OPT_STOP_AT_NON_OPTION);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001619 if (!argc)
1620 usage_with_options(kvm_usage, kvm_options);
1621
1622 if (!perf_host)
1623 perf_guest = 1;
1624
Xiao Guangrong37860632012-11-15 14:17:01 +08001625 if (!file_name) {
Dongsheng Yange1a2b172013-12-06 17:25:51 -05001626 file_name = get_filename_for_perf_kvm();
David Ahernde332ac2012-10-02 22:09:53 -06001627
Xiao Guangrong37860632012-11-15 14:17:01 +08001628 if (!file_name) {
David Ahernde332ac2012-10-02 22:09:53 -06001629 pr_err("Failed to allocate memory for filename\n");
1630 return -ENOMEM;
1631 }
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001632 }
1633
1634 if (!strncmp(argv[0], "rec", 3))
Xiao Guangrong37860632012-11-15 14:17:01 +08001635 return __cmd_record(file_name, argc, argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001636 else if (!strncmp(argv[0], "rep", 3))
Xiao Guangrong37860632012-11-15 14:17:01 +08001637 return __cmd_report(file_name, argc, argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001638 else if (!strncmp(argv[0], "diff", 4))
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001639 return cmd_diff(argc, argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001640 else if (!strncmp(argv[0], "top", 3))
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03001641 return cmd_top(argc, argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001642 else if (!strncmp(argv[0], "buildid-list", 12))
Xiao Guangrong37860632012-11-15 14:17:01 +08001643 return __cmd_buildid_list(file_name, argc, argv);
Alexander Yaryginda50ad62014-07-03 17:59:49 +04001644#ifdef HAVE_KVM_STAT_SUPPORT
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001645 else if (!strncmp(argv[0], "stat", 4))
Xiao Guangrong37860632012-11-15 14:17:01 +08001646 return kvm_cmd_stat(file_name, argc, argv);
Xiao Guangrong73210902012-11-19 16:19:21 +08001647#endif
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001648 else
1649 usage_with_options(kvm_usage, kvm_options);
1650
1651 return 0;
1652}