blob: 14ad91c2a1a14c6a2e64c1319cd0755815bce53c [file] [log] [blame] [raw]
/*
* Copyright (C) 2000-2005 SWsoft. All rights reserved.
*
* This file may be distributed under the terms of the Q Public License
* as defined by Trolltech AS of Norway and appearing in the file
* LICENSE.QPL included in the packaging of this file.
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <ctype.h>
#include <errno.h>
#include "validate.h"
#include "ub.h"
#include "util.h"
#include "logger.h"
LOG_DATA
void usage()
{
printf("Usage: vzmemcheck [-v] [-A]\n");
}
void header(int verbose, int param)
{
if (param)
printf("Output values in Mbytes\n");
else
printf("Output values in %%\n");
if (verbose)
printf("veid ");
printf(" LowMem LowMem RAM MemSwap MemSwap Alloc Alloc Alloc\n");
if (verbose)
printf(" ");
printf(" util commit util util commit util commit limit\n");
return;
}
int calculate(int numerator, int verbose)
{
struct CRusage rutotal_comm, rutotal_utl;
struct CRusage ru_comm, ru_utl;
char str[STR_SIZE];
char name[STR_SIZE];
const char *fmt;
int veid, res, id, ret = 0, found = 0, new_veid = 0;
int exited = 0;
double r, rs, lm, k;
struct mem_struct mem;
unsigned long held, maxheld, barrier, limit;
FILE *fd;
struct ub_struct ub_s;
if ((fd = fopen(PROCUBC, "r")) == NULL) {
logger(0, errno, "Unable to open file " PROCUBC);
return 1;
}
if (get_mem(&mem.ram))
return 1;
if (get_swap(&mem.swap))
mem.swap = 1;
if (get_lowmem(&mem.lowmem))
return 1;
mem.lowmem *= 0.4;
memset(&ub_s, 0, sizeof(ub_s));
memset(&rutotal_comm, 0, sizeof(rutotal_comm));
memset(&rutotal_utl, 0, sizeof(rutotal_utl));
if (numerator) {
/* Convert to Mb */
k = 1.0 / (1024 * 1024);
} else {
/* Convert to % */
k = 100;
}
header(verbose, numerator);
while (!exited) {
if (fgets(str, sizeof(str), fd) == NULL) {
veid = new_veid;
found = 1;
str[0] = 0;
exited = 1;
} else {
if ((res = sscanf(str, "%d:", &id)) == 1) {
fmt = "%*lu:%s%lu%lu%lu%lu";
veid = new_veid;
new_veid = id;
found = 1;
} else {
fmt = "%s%lu%lu%lu%lu";
found = 0;
}
}
if (found && veid) {
if (!calc_ve_utilization(&ub_s, &ru_utl, &mem,
numerator))
{
ru_utl.low_mem *= k;
ru_utl.total_ram *= k;
ru_utl.mem_swap *= k;
ru_utl.alloc_mem *= k;
}
shift_ubs_param(&ub_s);
if (!calc_ve_commitment(&ub_s, &ru_comm, &mem,
numerator))
{
ru_comm.low_mem *= k;
ru_comm.total_ram *= k;
ru_comm.mem_swap *= k;
ru_comm.alloc_mem *= k;
ru_comm.alloc_mem_lim *= k;
}
if (verbose) {
printf("%-10d %7.2f %7.2f %7.2f %7.2f %7.2f"
" %7.2f %7.2f %7.2f\n", veid,
ru_utl.low_mem,
ru_comm.low_mem,
ru_utl.total_ram,
ru_utl.mem_swap,
ru_comm.mem_swap,
ru_utl.alloc_mem,
ru_comm.alloc_mem,
ru_comm.alloc_mem_lim);
}
inc_rusage(&rutotal_utl, &ru_utl);
inc_rusage(&rutotal_comm, &ru_comm);
free_ubs_limit(&ub_s);
}
if (!exited) {
if ((res = sscanf(str, fmt, name, &held, &maxheld,
&barrier, &limit)) != 5)
{
continue;
}
if ((res = get_ub_resid(name)) >= 0) {
unsigned long *par;
par = malloc(sizeof(*par) * 3);
par[0] = held;
par[1] = barrier;
par[2] = limit;
add_ubs_limit(&ub_s, res, par);
}
}
}
fclose(fd);
if (verbose) {
printf("-------------------------------------------------------------------------\n");
printf("Summary: ");
}
printf("%7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f\n",
rutotal_utl.low_mem,
rutotal_comm.low_mem,
rutotal_utl.total_ram,
rutotal_utl.mem_swap,
rutotal_comm.mem_swap,
rutotal_utl.alloc_mem,
rutotal_comm.alloc_mem,
rutotal_comm.alloc_mem_lim);
if (numerator) {
lm = mem.lowmem / (1024 * 1024);
r = mem.ram / (1024 * 1024);
rs = (mem.ram + mem.swap) / (1024 * 1024);
if (verbose)
printf(" ");
printf("%7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f\n",
lm, lm, r, rs, rs, rs, rs, rs);
}
return ret;
}
int main(int argc, char **argv)
{
int ret, opt, verbose = 0, numerator = 0;
while ((opt = getopt(argc, argv, "Avh")) > 0) {
switch(opt) {
case 'v':
verbose = 1;
break;
case 'A':
numerator = 1;
break;
case 'h':
usage();
exit(1);
break;
}
}
init_log(NULL, 0, 0, 0, 0, NULL);
get_pagesize();
ret = calculate(numerator, verbose);
exit(ret);
}