1 | /* $Id: PerformanceSolaris.cpp 27670 2010-03-24 15:19:25Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VBox Solaris-specific Performance Classes implementation.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | *
|
---|
19 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
20 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
21 | * additional information or have any questions.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #undef _FILE_OFFSET_BITS
|
---|
25 | #include <procfs.h>
|
---|
26 | #include <stdio.h>
|
---|
27 | #include <errno.h>
|
---|
28 | #include <fcntl.h>
|
---|
29 | #include <kstat.h>
|
---|
30 | #include <sys/sysinfo.h>
|
---|
31 | #include <sys/time.h>
|
---|
32 |
|
---|
33 | #include <iprt/err.h>
|
---|
34 | #include <iprt/string.h>
|
---|
35 | #include <iprt/alloc.h>
|
---|
36 | #include <iprt/param.h>
|
---|
37 | #include <VBox/log.h>
|
---|
38 | #include "Performance.h"
|
---|
39 |
|
---|
40 | namespace pm {
|
---|
41 |
|
---|
42 | class CollectorSolaris : public CollectorHAL
|
---|
43 | {
|
---|
44 | public:
|
---|
45 | CollectorSolaris();
|
---|
46 | virtual ~CollectorSolaris();
|
---|
47 | virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available);
|
---|
48 | virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used);
|
---|
49 |
|
---|
50 | virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
|
---|
51 | virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
|
---|
52 | private:
|
---|
53 | kstat_ctl_t *mKC;
|
---|
54 | kstat_t *mSysPages;
|
---|
55 | kstat_t *mZFSCache;
|
---|
56 | };
|
---|
57 |
|
---|
58 | CollectorHAL *createHAL()
|
---|
59 | {
|
---|
60 | return new CollectorSolaris();
|
---|
61 | }
|
---|
62 |
|
---|
63 | // Collector HAL for Solaris
|
---|
64 |
|
---|
65 |
|
---|
66 | CollectorSolaris::CollectorSolaris()
|
---|
67 | : mKC(0),
|
---|
68 | mSysPages(0),
|
---|
69 | mZFSCache(0)
|
---|
70 | {
|
---|
71 | if ((mKC = kstat_open()) == 0)
|
---|
72 | {
|
---|
73 | Log(("kstat_open() -> %d\n", errno));
|
---|
74 | return;
|
---|
75 | }
|
---|
76 |
|
---|
77 | if ((mSysPages = kstat_lookup(mKC, "unix", 0, "system_pages")) == 0)
|
---|
78 | {
|
---|
79 | Log(("kstat_lookup(system_pages) -> %d\n", errno));
|
---|
80 | return;
|
---|
81 | }
|
---|
82 |
|
---|
83 | if ((mZFSCache = kstat_lookup(mKC, "zfs", 0, "arcstats")) == 0)
|
---|
84 | {
|
---|
85 | Log(("kstat_lookup(system_pages) -> %d\n", errno));
|
---|
86 | }
|
---|
87 | }
|
---|
88 |
|
---|
89 | CollectorSolaris::~CollectorSolaris()
|
---|
90 | {
|
---|
91 | kstat_close(mKC);
|
---|
92 | }
|
---|
93 |
|
---|
94 | int CollectorSolaris::getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle)
|
---|
95 | {
|
---|
96 | int rc = VINF_SUCCESS;
|
---|
97 | kstat_t *ksp;
|
---|
98 | uint64_t tmpUser, tmpKernel, tmpIdle;
|
---|
99 | int cpus;
|
---|
100 | cpu_stat_t cpu_stats;
|
---|
101 |
|
---|
102 | if (mKC == 0)
|
---|
103 | return VERR_INTERNAL_ERROR;
|
---|
104 |
|
---|
105 | tmpUser = tmpKernel = tmpIdle = cpus = 0;
|
---|
106 | for (ksp = mKC->kc_chain; ksp != NULL; ksp = ksp->ks_next) {
|
---|
107 | if (strcmp(ksp->ks_module, "cpu_stat") == 0) {
|
---|
108 | if (kstat_read(mKC, ksp, &cpu_stats) == -1)
|
---|
109 | {
|
---|
110 | Log(("kstat_read() -> %d\n", errno));
|
---|
111 | return VERR_INTERNAL_ERROR;
|
---|
112 | }
|
---|
113 | ++cpus;
|
---|
114 | tmpUser += cpu_stats.cpu_sysinfo.cpu[CPU_USER];
|
---|
115 | tmpKernel += cpu_stats.cpu_sysinfo.cpu[CPU_KERNEL];
|
---|
116 | tmpIdle += cpu_stats.cpu_sysinfo.cpu[CPU_IDLE];
|
---|
117 | }
|
---|
118 | }
|
---|
119 |
|
---|
120 | if (cpus == 0)
|
---|
121 | {
|
---|
122 | Log(("no cpu stats found!\n"));
|
---|
123 | return VERR_INTERNAL_ERROR;
|
---|
124 | }
|
---|
125 |
|
---|
126 | if (user) *user = tmpUser;
|
---|
127 | if (kernel) *kernel = tmpKernel;
|
---|
128 | if (idle) *idle = tmpIdle;
|
---|
129 |
|
---|
130 | return rc;
|
---|
131 | }
|
---|
132 |
|
---|
133 | int CollectorSolaris::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total)
|
---|
134 | {
|
---|
135 | int rc = VINF_SUCCESS;
|
---|
136 | char *pszName;
|
---|
137 | prusage_t prusage;
|
---|
138 |
|
---|
139 | RTStrAPrintf(&pszName, "/proc/%d/usage", process);
|
---|
140 | Log(("Opening %s...\n", pszName));
|
---|
141 | int h = open(pszName, O_RDONLY);
|
---|
142 | RTStrFree(pszName);
|
---|
143 |
|
---|
144 | if (h != -1)
|
---|
145 | {
|
---|
146 | if (read(h, &prusage, sizeof(prusage)) == sizeof(prusage))
|
---|
147 | {
|
---|
148 | //Assert((pid_t)process == pstatus.pr_pid);
|
---|
149 | //Log(("user=%u kernel=%u total=%u\n", prusage.pr_utime.tv_sec, prusage.pr_stime.tv_sec, prusage.pr_tstamp.tv_sec));
|
---|
150 | *user = (uint64_t)prusage.pr_utime.tv_sec * 1000000000 + prusage.pr_utime.tv_nsec;
|
---|
151 | *kernel = (uint64_t)prusage.pr_stime.tv_sec * 1000000000 + prusage.pr_stime.tv_nsec;
|
---|
152 | *total = (uint64_t)prusage.pr_tstamp.tv_sec * 1000000000 + prusage.pr_tstamp.tv_nsec;
|
---|
153 | //Log(("user=%llu kernel=%llu total=%llu\n", *user, *kernel, *total));
|
---|
154 | }
|
---|
155 | else
|
---|
156 | {
|
---|
157 | Log(("read() -> %d\n", errno));
|
---|
158 | rc = VERR_FILE_IO_ERROR;
|
---|
159 | }
|
---|
160 | close(h);
|
---|
161 | }
|
---|
162 | else
|
---|
163 | {
|
---|
164 | Log(("open() -> %d\n", errno));
|
---|
165 | rc = VERR_ACCESS_DENIED;
|
---|
166 | }
|
---|
167 |
|
---|
168 | return rc;
|
---|
169 | }
|
---|
170 |
|
---|
171 | int CollectorSolaris::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available)
|
---|
172 | {
|
---|
173 | int rc = VINF_SUCCESS;
|
---|
174 |
|
---|
175 | kstat_named_t *kn;
|
---|
176 |
|
---|
177 | if (mKC == 0 || mSysPages == 0)
|
---|
178 | return VERR_INTERNAL_ERROR;
|
---|
179 |
|
---|
180 | if (kstat_read(mKC, mSysPages, 0) == -1)
|
---|
181 | {
|
---|
182 | Log(("kstat_read(sys_pages) -> %d\n", errno));
|
---|
183 | return VERR_INTERNAL_ERROR;
|
---|
184 | }
|
---|
185 | if ((kn = (kstat_named_t *)kstat_data_lookup(mSysPages, "freemem")) == 0)
|
---|
186 | {
|
---|
187 | Log(("kstat_data_lookup(freemem) -> %d\n", errno));
|
---|
188 | return VERR_INTERNAL_ERROR;
|
---|
189 | }
|
---|
190 | *available = kn->value.ul * (PAGE_SIZE/1024);
|
---|
191 |
|
---|
192 | if (kstat_read(mKC, mZFSCache, 0) != -1)
|
---|
193 | {
|
---|
194 | if (mZFSCache)
|
---|
195 | {
|
---|
196 | if ((kn = (kstat_named_t *)kstat_data_lookup(mZFSCache, "size")))
|
---|
197 | *available += (kn->value.ul / 1024);
|
---|
198 | else
|
---|
199 | Log(("kstat_data_lookup(size) -> %d\n", errno));
|
---|
200 | }
|
---|
201 | else
|
---|
202 | Log(("mZFSCache missing.\n"));
|
---|
203 | }
|
---|
204 |
|
---|
205 | if ((kn = (kstat_named_t *)kstat_data_lookup(mSysPages, "physmem")) == 0)
|
---|
206 | {
|
---|
207 | Log(("kstat_data_lookup(physmem) -> %d\n", errno));
|
---|
208 | return VERR_INTERNAL_ERROR;
|
---|
209 | }
|
---|
210 | *total = kn->value.ul * (PAGE_SIZE/1024);
|
---|
211 | *used = *total - *available;
|
---|
212 |
|
---|
213 | return rc;
|
---|
214 | }
|
---|
215 | int CollectorSolaris::getProcessMemoryUsage(RTPROCESS process, ULONG *used)
|
---|
216 | {
|
---|
217 | int rc = VINF_SUCCESS;
|
---|
218 | char *pszName = NULL;
|
---|
219 | psinfo_t psinfo;
|
---|
220 |
|
---|
221 | RTStrAPrintf(&pszName, "/proc/%d/psinfo", process);
|
---|
222 | Log(("Opening %s...\n", pszName));
|
---|
223 | int h = open(pszName, O_RDONLY);
|
---|
224 | RTStrFree(pszName);
|
---|
225 |
|
---|
226 | if (h != -1)
|
---|
227 | {
|
---|
228 | if (read(h, &psinfo, sizeof(psinfo)) == sizeof(psinfo))
|
---|
229 | {
|
---|
230 | Assert((pid_t)process == psinfo.pr_pid);
|
---|
231 | *used = psinfo.pr_rssize;
|
---|
232 | }
|
---|
233 | else
|
---|
234 | {
|
---|
235 | Log(("read() -> %d\n", errno));
|
---|
236 | rc = VERR_FILE_IO_ERROR;
|
---|
237 | }
|
---|
238 | close(h);
|
---|
239 | }
|
---|
240 | else
|
---|
241 | {
|
---|
242 | Log(("open() -> %d\n", errno));
|
---|
243 | rc = VERR_ACCESS_DENIED;
|
---|
244 | }
|
---|
245 |
|
---|
246 | return rc;
|
---|
247 | }
|
---|
248 |
|
---|
249 | }
|
---|
250 |
|
---|