-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPrlStat.cpp
209 lines (175 loc) · 6.44 KB
/
PrlStat.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*
* Copyright (c) 2015-2017, Parallels International GmbH
* Copyright (c) 2017-2019 Virtuozzo International GmbH. All rights reserved.
*
* This file is part of OpenVZ. OpenVZ is free software; you can redistribute
* it and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* Our contact details: Virtuozzo International GmbH, Vordergasse 59, 8200
* Schaffhausen, Switzerland.
*/
#include <PrlApiDisp.h>
#include <PrlApiStat.h>
#include <PrlPerfCounters.h>
#include "PrlSrv.h"
#include "Logger.h"
#include "Utils.h"
#include "PrlCleanup.h"
#ifdef _WIN_
#include <windows.h>
#include <conio.h>
#define snprintf _snprintf
#else
#include <unistd.h>
#include <stdio.h>
inline int _getch() { return getchar() ; }
#endif
#include <string.h>
#include <time.h>
#include "EventSyncObject.h"
static CEventSyncObject *s_evt = NULL;
static PRL_RESULT print_perfstats(PRL_HANDLE handle, const CmdParamData ¶m)
{
(void)param;
unsigned int param_count;
PRL_RESULT ret = PrlEvent_GetParamsCount(handle, ¶m_count);
if (PRL_FAILED(ret))
return prl_err(ret, "PrlEvent_GetParamsCount returned the following error: %s",
get_error_str(ret).c_str());
if (!param_count)
return PRL_ERR_SUCCESS;
// Print VM uuid if necessary
if (param.list_all) {
char uuid[NORMALIZED_UUID_LEN + 1] = {0};
PRL_UINT32 size = sizeof(uuid);
PRL_HANDLE hVm;
if (PRL_SUCCEEDED(PrlEvent_GetVm(handle, &hVm))) {
PrlVmCfg_GetUuid(hVm, uuid, &size);
PrlHandle_Free(hVm);
}
printf("%s\n", uuid);
}
for (unsigned int ndx = 0; ndx < param_count; ++ndx) {
PrlHandle hPrm;
ret = PrlEvent_GetParam(handle, ndx, hPrm.get_ptr());
if (PRL_FAILED(ret))
return prl_err(ret, "PrlEvent_GetParam returned the following error: %s",
get_error_str(ret).c_str());
char name_buff[1024];
unsigned int len = sizeof(name_buff) - 1;
ret = PrlEvtPrm_GetName(hPrm.get_handle(), name_buff, &len);
if (PRL_FAILED(ret))
return prl_err(ret, "PrlEvtPrm_GetName returned the following error: %s",
get_error_str(ret).c_str());
char val_buff[1024];
len = sizeof(val_buff) - 1;
val_buff[len] = 0;
PRL_PARAM_FIELD_DATA_TYPE nFieldType = PFD_UNKNOWN;
PrlEvtPrm_GetType(hPrm.get_handle(), &nFieldType);
if (nFieldType == PFD_BINARY) {
if (strncmp(name_buff, PRL_NET_CLASSFUL_TRAFFIC_PTRN, sizeof(PRL_NET_CLASSFUL_TRAFFIC_PTRN) - 1) == 0) {
PRL_STAT_NET_TRAFFIC net_stat_buf;
len = sizeof(PRL_STAT_NET_TRAFFIC);
if (PrlEvtPrm_GetBuffer(hPrm.get_handle(), &net_stat_buf, &len) == 0) {
for (unsigned int i = 0; i < PRL_TC_CLASS_MAX; i++)
fprintf(stdout, "\t%20s %2d %20llu %10u %20llu %10u\n", name_buff, i,
net_stat_buf.incoming[i], net_stat_buf.incoming_pkt[i],
net_stat_buf.outgoing[i], net_stat_buf.outgoing_pkt[i]);
}
}
} else {
ret = PrlEvtPrm_ToString(hPrm.get_handle(), val_buff, &len);
if (PRL_FAILED(ret))
return prl_err(ret, "PrlEvtPrm_ToString returned the following error: %s",
get_error_str(ret).c_str());
fprintf(stdout, "\t%s:\t%s\n", name_buff, val_buff);
}
}
return PRL_ERR_SUCCESS;
}
static PRL_RESULT perfstats_callback(PRL_HANDLE handle, void *user_data, PRL_EVENT_TYPE process_type)
{
PrlHandle clean(handle);
PRL_RESULT ret;
PRL_EVENT_TYPE e_type;
const CmdParamData ¶m = *(const CmdParamData*)user_data;
ret = PrlEvent_GetType(handle, &e_type);
if (PRL_FAILED(ret)) {
prl_log(L_DEBUG, "Warning! PrlSrv_Logoff failed: %s", get_error_str(ret).c_str());
return PRL_ERR_SUCCESS;
}
if (e_type != process_type)
return PRL_ERR_SUCCESS;
print_perfstats(handle, param);
if (s_evt)
s_evt->Signal();
return PRL_ERR_SUCCESS;
}
static PRL_RESULT perfstats_srv_callback(PRL_HANDLE handle, void *user_data)
{
return perfstats_callback(handle, user_data, PET_DSP_EVT_PERFSTATS);
}
static PRL_RESULT perfstats_vm_callback(PRL_HANDLE handle, void *user_data)
{
return perfstats_callback(handle, user_data, PET_DSP_EVT_VM_PERFSTATS);
}
int PrlSrv::print_statistics(const CmdParamData ¶m, PrlVm *vm)
{
PRL_RESULT ret;
std::string err;
if (param.list_all && !vm) {
ret = update_vm_list(param.vmtype);
if (PRL_FAILED(ret))
return ret;
}
if (!param.statistics.loop)
s_evt = new CEventSyncObject();
if (param.action == SrvPerfStatsAction) {
ret = PrlSrv_RegEventHandler(get_handle(), &perfstats_srv_callback, (void*)¶m);
if (PRL_FAILED(ret))
return prl_err(ret, "PrlSrv_RegEventHandler returned the following error: %s",
get_error_str(ret).c_str());
PrlHandle hJob(PrlSrv_SubscribeToPerfStats(get_handle(), param.statistics.filter.c_str()));
if (PRL_FAILED(get_job_retcode_predefined(hJob.get_handle(), err)))
return prl_err(ret, "PrlSrv_SubscribeToPerfStats returned the following error: %s", err.c_str());
}
if (param.action == VmPerfStatsAction || param.list_all) {
for (PrlVmList::iterator it = m_VmList.begin(), end = m_VmList.end(); it != end; ++it) {
if (!param.list_all && (*it) != vm)
continue;
ret = PrlVm_RegEventHandler((*it)->get_handle(), &perfstats_vm_callback, (void*)¶m);
if (PRL_FAILED(ret))
return prl_err(ret, "PrlVm_RegEventHandler returned the following error: %s",
get_error_str(ret).c_str());
PrlHandle hJob(PrlVm_SubscribeToPerfStats((*it)->get_handle(), param.statistics.filter.c_str()));
if (PRL_FAILED(get_job_retcode_predefined(hJob.get_handle(), err)))
return prl_err(ret, "PrlVm_SubscribeToPerfStats returned the following error: %s", err.c_str());
if (s_evt) {
s_evt->Wait(10000);
s_evt->Reset();
PrlVm_UnregEventHandler((*it)->get_handle(), &perfstats_vm_callback, (void*)¶m);
PrlHandle j(PrlVm_UnsubscribeFromPerfStats((*it)->get_handle()));
get_job_retcode_predefined(j.get_handle(), err);
}
}
}
if (param.statistics.loop) {
fgetc(stdin);
fprintf(stdout, "\n");
}
if (param.action == SrvPerfStatsAction)
PrlSrv_UnregEventHandler(get_handle(), &perfstats_srv_callback, NULL);
return 0;
}