VirtualBox

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

Last change on this file since 28851 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.4 KB
Line 
1/* $Id: PerformanceSolaris.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2
3/** @file
4 *
5 * VBox Solaris-specific Performance Classes implementation.
6 */
7
8/*
9 * Copyright (C) 2008 Oracle Corporation
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
20#undef _FILE_OFFSET_BITS
21#include <procfs.h>
22#include <stdio.h>
23#include <errno.h>
24#include <fcntl.h>
25#include <kstat.h>
26#include <sys/sysinfo.h>
27#include <sys/time.h>
28
29#include <iprt/err.h>
30#include <iprt/string.h>
31#include <iprt/alloc.h>
32#include <iprt/param.h>
33#include <VBox/log.h>
34#include "Performance.h"
35
36namespace pm {
37
38class CollectorSolaris : public CollectorHAL
39{
40public:
41 CollectorSolaris();
42 virtual ~CollectorSolaris();
43 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available);
44 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used);
45
46 virtual int getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle);
47 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
48private:
49 kstat_ctl_t *mKC;
50 kstat_t *mSysPages;
51 kstat_t *mZFSCache;
52};
53
54CollectorHAL *createHAL()
55{
56 return new CollectorSolaris();
57}
58
59// Collector HAL for Solaris
60
61
62CollectorSolaris::CollectorSolaris()
63 : mKC(0),
64 mSysPages(0),
65 mZFSCache(0)
66{
67 if ((mKC = kstat_open()) == 0)
68 {
69 Log(("kstat_open() -> %d\n", errno));
70 return;
71 }
72
73 if ((mSysPages = kstat_lookup(mKC, "unix", 0, "system_pages")) == 0)
74 {
75 Log(("kstat_lookup(system_pages) -> %d\n", errno));
76 return;
77 }
78
79 if ((mZFSCache = kstat_lookup(mKC, "zfs", 0, "arcstats")) == 0)
80 {
81 Log(("kstat_lookup(system_pages) -> %d\n", errno));
82 }
83}
84
85CollectorSolaris::~CollectorSolaris()
86{
87 kstat_close(mKC);
88}
89
90int CollectorSolaris::getRawHostCpuLoad(uint64_t *user, uint64_t *kernel, uint64_t *idle)
91{
92 int rc = VINF_SUCCESS;
93 kstat_t *ksp;
94 uint64_t tmpUser, tmpKernel, tmpIdle;
95 int cpus;
96 cpu_stat_t cpu_stats;
97
98 if (mKC == 0)
99 return VERR_INTERNAL_ERROR;
100
101 tmpUser = tmpKernel = tmpIdle = cpus = 0;
102 for (ksp = mKC->kc_chain; ksp != NULL; ksp = ksp->ks_next) {
103 if (strcmp(ksp->ks_module, "cpu_stat") == 0) {
104 if (kstat_read(mKC, ksp, &cpu_stats) == -1)
105 {
106 Log(("kstat_read() -> %d\n", errno));
107 return VERR_INTERNAL_ERROR;
108 }
109 ++cpus;
110 tmpUser += cpu_stats.cpu_sysinfo.cpu[CPU_USER];
111 tmpKernel += cpu_stats.cpu_sysinfo.cpu[CPU_KERNEL];
112 tmpIdle += cpu_stats.cpu_sysinfo.cpu[CPU_IDLE];
113 }
114 }
115
116 if (cpus == 0)
117 {
118 Log(("no cpu stats found!\n"));
119 return VERR_INTERNAL_ERROR;
120 }
121
122 if (user) *user = tmpUser;
123 if (kernel) *kernel = tmpKernel;
124 if (idle) *idle = tmpIdle;
125
126 return rc;
127}
128
129int CollectorSolaris::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total)
130{
131 int rc = VINF_SUCCESS;
132 char *pszName;
133 prusage_t prusage;
134
135 RTStrAPrintf(&pszName, "/proc/%d/usage", process);
136 Log(("Opening %s...\n", pszName));
137 int h = open(pszName, O_RDONLY);
138 RTStrFree(pszName);
139
140 if (h != -1)
141 {
142 if (read(h, &prusage, sizeof(prusage)) == sizeof(prusage))
143 {
144 //Assert((pid_t)process == pstatus.pr_pid);
145 //Log(("user=%u kernel=%u total=%u\n", prusage.pr_utime.tv_sec, prusage.pr_stime.tv_sec, prusage.pr_tstamp.tv_sec));
146 *user = (uint64_t)prusage.pr_utime.tv_sec * 1000000000 + prusage.pr_utime.tv_nsec;
147 *kernel = (uint64_t)prusage.pr_stime.tv_sec * 1000000000 + prusage.pr_stime.tv_nsec;
148 *total = (uint64_t)prusage.pr_tstamp.tv_sec * 1000000000 + prusage.pr_tstamp.tv_nsec;
149 //Log(("user=%llu kernel=%llu total=%llu\n", *user, *kernel, *total));
150 }
151 else
152 {
153 Log(("read() -> %d\n", errno));
154 rc = VERR_FILE_IO_ERROR;
155 }
156 close(h);
157 }
158 else
159 {
160 Log(("open() -> %d\n", errno));
161 rc = VERR_ACCESS_DENIED;
162 }
163
164 return rc;
165}
166
167int CollectorSolaris::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available)
168{
169 int rc = VINF_SUCCESS;
170
171 kstat_named_t *kn;
172
173 if (mKC == 0 || mSysPages == 0)
174 return VERR_INTERNAL_ERROR;
175
176 if (kstat_read(mKC, mSysPages, 0) == -1)
177 {
178 Log(("kstat_read(sys_pages) -> %d\n", errno));
179 return VERR_INTERNAL_ERROR;
180 }
181 if ((kn = (kstat_named_t *)kstat_data_lookup(mSysPages, "freemem")) == 0)
182 {
183 Log(("kstat_data_lookup(freemem) -> %d\n", errno));
184 return VERR_INTERNAL_ERROR;
185 }
186 *available = kn->value.ul * (PAGE_SIZE/1024);
187
188 if (kstat_read(mKC, mZFSCache, 0) != -1)
189 {
190 if (mZFSCache)
191 {
192 if ((kn = (kstat_named_t *)kstat_data_lookup(mZFSCache, "size")))
193 *available += (kn->value.ul / 1024);
194 else
195 Log(("kstat_data_lookup(size) -> %d\n", errno));
196 }
197 else
198 Log(("mZFSCache missing.\n"));
199 }
200
201 if ((kn = (kstat_named_t *)kstat_data_lookup(mSysPages, "physmem")) == 0)
202 {
203 Log(("kstat_data_lookup(physmem) -> %d\n", errno));
204 return VERR_INTERNAL_ERROR;
205 }
206 *total = kn->value.ul * (PAGE_SIZE/1024);
207 *used = *total - *available;
208
209 return rc;
210}
211int CollectorSolaris::getProcessMemoryUsage(RTPROCESS process, ULONG *used)
212{
213 int rc = VINF_SUCCESS;
214 char *pszName = NULL;
215 psinfo_t psinfo;
216
217 RTStrAPrintf(&pszName, "/proc/%d/psinfo", process);
218 Log(("Opening %s...\n", pszName));
219 int h = open(pszName, O_RDONLY);
220 RTStrFree(pszName);
221
222 if (h != -1)
223 {
224 if (read(h, &psinfo, sizeof(psinfo)) == sizeof(psinfo))
225 {
226 Assert((pid_t)process == psinfo.pr_pid);
227 *used = psinfo.pr_rssize;
228 }
229 else
230 {
231 Log(("read() -> %d\n", errno));
232 rc = VERR_FILE_IO_ERROR;
233 }
234 close(h);
235 }
236 else
237 {
238 Log(("open() -> %d\n", errno));
239 rc = VERR_ACCESS_DENIED;
240 }
241
242 return rc;
243}
244
245}
246
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