VirtualBox

source: vbox/trunk/src/VBox/Main/solaris/PerformanceSolaris.cpp@ 27608

Last change on this file since 27608 was 25416, checked in by vboxsync, 15 years ago

Main/PerformanceSolaris: #4555 - rectified comment on kstat availability.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.6 KB
Line 
1/* $Id: PerformanceSolaris.cpp 25416 2009-12-15 17:20:45Z 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
40namespace pm {
41
42class CollectorSolaris : public CollectorHAL
43{
44public:
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);
52private:
53 kstat_ctl_t *mKC;
54 kstat_t *mSysPages;
55 kstat_t *mZFSCache;
56};
57
58CollectorHAL *createHAL()
59{
60 return new CollectorSolaris();
61}
62
63// Collector HAL for Solaris
64
65
66CollectorSolaris::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
89CollectorSolaris::~CollectorSolaris()
90{
91 kstat_close(mKC);
92}
93
94int 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
133int 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
171int 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}
215int CollectorSolaris::getProcessMemoryUsage(RTPROCESS process, ULONG *used)
216{
217 int rc = VINF_SUCCESS;
218 char *pszName;
219 pid_t pid2;
220 char buf[80]; /* @todo: this should be tied to max allowed proc name. */
221 psinfo_t psinfo;
222
223 RTStrAPrintf(&pszName, "/proc/%d/psinfo", process);
224 Log(("Opening %s...\n", pszName));
225 int h = open(pszName, O_RDONLY);
226 RTStrFree(pszName);
227
228 if (h != -1)
229 {
230 if (read(h, &psinfo, sizeof(psinfo)) == sizeof(psinfo))
231 {
232 Assert((pid_t)process == psinfo.pr_pid);
233 *used = psinfo.pr_rssize;
234 }
235 else
236 {
237 Log(("read() -> %d\n", errno));
238 rc = VERR_FILE_IO_ERROR;
239 }
240 close(h);
241 }
242 else
243 {
244 Log(("open() -> %d\n", errno));
245 rc = VERR_ACCESS_DENIED;
246 }
247
248 return rc;
249}
250
251}
252
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette