xref: /illumos-gate/usr/src/uts/intel/io/vmm/vmm_stat.c (revision 8130f8e1)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2011 NetApp, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30 
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33 
34 #include <sys/param.h>
35 #include <sys/kernel.h>
36 #include <sys/systm.h>
37 #include <sys/kmem.h>
38 
39 #include <machine/vmm.h>
40 #include "vmm_util.h"
41 #include "vmm_stat.h"
42 
43 /*
44  * 'vst_num_elems' is the total number of addressable statistic elements
45  * 'vst_num_types' is the number of unique statistic types
46  *
47  * It is always true that 'vst_num_elems' is greater than or equal to
48  * 'vst_num_types'. This is because a stat type may represent more than
49  * one element (for e.g. VMM_STAT_ARRAY).
50  */
51 static int vst_num_elems, vst_num_types;
52 static struct vmm_stat_type *vsttab[MAX_VMM_STAT_ELEMS];
53 
54 #define	vst_size	((size_t)vst_num_elems * sizeof (uint64_t))
55 
56 void
57 vmm_stat_register(void *arg)
58 {
59 	struct vmm_stat_type *vst = arg;
60 
61 	/* We require all stats to identify themselves with a description */
62 	if (vst->desc == NULL)
63 		return;
64 
65 	if (vst->scope == VMM_STAT_SCOPE_INTEL && !vmm_is_intel())
66 		return;
67 
68 	if (vst->scope == VMM_STAT_SCOPE_AMD && !vmm_is_svm())
69 		return;
70 
71 	if (vst_num_elems + vst->nelems >= MAX_VMM_STAT_ELEMS) {
72 		printf("Cannot accommodate vmm stat type \"%s\"!\n", vst->desc);
73 		return;
74 	}
75 
76 	vst->index = vst_num_elems;
77 	vst_num_elems += vst->nelems;
78 
79 	vsttab[vst_num_types++] = vst;
80 }
81 
82 int
83 vmm_stat_copy(struct vm *vm, int vcpu, int index, int count, int *num_stats,
84     uint64_t *buf)
85 {
86 	struct vmm_stat_type *vst;
87 	uint64_t *stats;
88 	int i, tocopy;
89 
90 	if (vcpu < 0 || vcpu >= vm_get_maxcpus(vm))
91 		return (EINVAL);
92 
93 	if (index < 0 || count < 0)
94 		return (EINVAL);
95 
96 	if (index > vst_num_elems)
97 		return (ENOENT);
98 
99 	if (index == vst_num_elems) {
100 		*num_stats = 0;
101 		return (0);
102 	}
103 
104 	tocopy = min(vst_num_elems - index, count);
105 
106 	/* Let stats functions update their counters */
107 	for (i = 0; i < vst_num_types; i++) {
108 		vst = vsttab[i];
109 		if (vst->func != NULL)
110 			(*vst->func)(vm, vcpu, vst);
111 	}
112 
113 	/* Copy over the stats */
114 	stats = vcpu_stats(vm, vcpu);
115 	memcpy(buf, stats + index, tocopy * sizeof (stats[0]));
116 	*num_stats = tocopy;
117 	return (0);
118 }
119 
120 void *
121 vmm_stat_alloc(void)
122 {
123 	return (kmem_alloc(vst_size, KM_SLEEP));
124 }
125 
126 void
127 vmm_stat_init(void *vp)
128 {
129 	bzero(vp, vst_size);
130 }
131 
132 void
133 vmm_stat_free(void *vp)
134 {
135 	kmem_free(vp, vst_size);
136 }
137 
138 int
139 vmm_stat_desc_copy(int index, char *buf, int bufsize)
140 {
141 	int i;
142 	struct vmm_stat_type *vst;
143 
144 	for (i = 0; i < vst_num_types; i++) {
145 		vst = vsttab[i];
146 		if (index >= vst->index && index < vst->index + vst->nelems) {
147 			if (vst->nelems > 1) {
148 				(void) snprintf(buf, bufsize, "%s[%d]",
149 				    vst->desc, index - vst->index);
150 			} else {
151 				(void) strlcpy(buf, vst->desc, bufsize);
152 			}
153 			return (0);	/* found it */
154 		}
155 	}
156 
157 	return (EINVAL);
158 }
159 
160 /* global statistics */
161 VMM_STAT(VCPU_MIGRATIONS, "vcpu migration across host cpus");
162 VMM_STAT(VMEXIT_COUNT, "total number of vm exits");
163 VMM_STAT(VMEXIT_EXTINT, "vm exits due to external interrupt");
164 VMM_STAT(VMEXIT_HLT, "number of times hlt was intercepted");
165 VMM_STAT(VMEXIT_CR_ACCESS, "number of times %cr access was intercepted");
166 VMM_STAT(VMEXIT_RDMSR, "number of times rdmsr was intercepted");
167 VMM_STAT(VMEXIT_WRMSR, "number of times wrmsr was intercepted");
168 VMM_STAT(VMEXIT_MTRAP, "number of monitor trap exits");
169 VMM_STAT(VMEXIT_PAUSE, "number of times pause was intercepted");
170 VMM_STAT(VMEXIT_INTR_WINDOW, "vm exits due to interrupt window opening");
171 VMM_STAT(VMEXIT_NMI_WINDOW, "vm exits due to nmi window opening");
172 VMM_STAT(VMEXIT_INOUT, "number of times in/out was intercepted");
173 VMM_STAT(VMEXIT_CPUID, "number of times cpuid was intercepted");
174 VMM_STAT(VMEXIT_NESTED_FAULT, "vm exits due to nested page fault");
175 VMM_STAT(VMEXIT_MMIO_EMUL, "vm exits for mmio emulation");
176 VMM_STAT(VMEXIT_UNKNOWN, "number of vm exits for unknown reason");
177 VMM_STAT(VMEXIT_ASTPENDING, "number of times astpending at exit");
178 VMM_STAT(VMEXIT_REQIDLE, "number of times idle requested at exit");
179 VMM_STAT(VMEXIT_EXCEPTION, "number of vm exits due to exceptions");
180 VMM_STAT(VMEXIT_RUN_STATE, "number of vm exits due to run_state change");
181