/*
* Copyright (C), 2000-2007 by the monit project group.
* All Rights Reserved.
*
* This program 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 3 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, see .
*/
#include
#ifdef HAVE_STDIO_H
#include
#endif
#ifdef HAVE_SYS_TYPES_H
#include
#endif
#ifdef HAVE_UNISTD_H
#include
#endif
#ifdef HAVE_SYS_STAT_H
#include
#endif
#ifdef HAVE_FCNTL_H
#include
#endif
#ifdef HAVE_STDLIB_H
#include
#endif
#ifdef TIME_WITH_SYS_TIME
#include
#ifdef HAVE_SYS_TIME_H
#include
#endif
#else
#include
#endif
#ifdef HAVE_STRING_H
#include
#endif
#ifdef HAVE_STRINGS_H
#include
#endif
#ifdef HAVE_ERRNO_H
#include
#endif
#ifdef HAVE_SYS_PARAM_H
#include
#endif
#define _RUSAGE_EXTENDED
#ifdef HAVE_SYS_PSTAT_H
#include
#endif
#ifdef HAVE_NLIST_H
#include
#endif
#include "monitor.h"
#include "process.h"
#include "process_sysdep.h"
#define NPROCS 10000
static struct pst_status psall[NPROCS];
static int page_size;
/**
* System dependent resource gathering code for HP/UX.
*
* @author Jan-Henrik Haukeland,
* @author Christian Hopp
* @author Joe Bryant
* @version \$Id: sysdep_HPUX.c,v 1.20 2007/07/25 12:54:32 hauk Exp $
*
* @file
*/
/*
* Helpful guide for implematation:
* "SunOS to HP-UX 9.05 Porting Guide" at
* http://www.interex.org/tech/9000/Tech/sun_hpux_port/portguide.html
*/
int init_process_info_sysdep(void) {
struct pst_dynamic psd;
struct pst_static pst;
if (pstat_getdynamic(&psd,sizeof(psd),(size_t)1,0)!=-1) {
num_cpus=psd.psd_proc_cnt;
} else {
return FALSE;
}
if (pstat_getstatic(&pst, sizeof(pst), (size_t) 1, 0) != -1) {
systeminfo.mem_kbyte_max=(unsigned long)(
(double)pst.physical_memory * (double)pst.page_size / 1024.0
);
page_size=pst.page_size;
} else {
return FALSE;
}
return TRUE;
}
/**
* This routine returns 'na' double precision floats containing
* the load averages in 'a'; at most 3 values will be returned.
* @param loadv destination of the load averages
* @param nelem number of averages
* @return: 0 if successful, -1 if failed (and all load averages are 0).
*/
int getloadavg_sysdep (double *a, int na) {
struct pst_dynamic psd;
if (pstat_getdynamic(&psd,sizeof(psd),(size_t)1,0)!=-1) {
switch (na) {
case 3:
a[2]=psd.psd_avg_15_min;
case 2:
a[1]=psd.psd_avg_5_min;
case 1:
a[0]=psd.psd_avg_1_min;
}
} else {
return FALSE;
}
return TRUE;
}
/**
* Read all processes of the proc files system to initialize
* the process tree (sysdep version... but should work for
* all procfs based unices)
* @param reference reference of ProcessTree
* @return treesize>0 if succeeded otherwise =0.
*/
int initprocesstree_sysdep(ProcessTree_T ** reference) {
int i;
int treesize;
ProcessTree_T *pt;
ASSERT(reference);
/* Gather process data */
if ((treesize=pstat_getproc(psall,
(size_t) NPROCS* sizeof(struct pst_status),
(size_t) NPROCS, 0))==-1) {
return 0;
}
/* Allocate the tree */
pt = xcalloc(sizeof(ProcessTree_T), treesize);
/* Inspect data */
for (i = 0; i < treesize; i++) {
pt[i].pid = psall[i].pst_pid;
pt[i].ppid = psall[i].pst_ppid;
/* get the actual time */
pt[i].time = get_float_time();
/*
* jiffies -> seconds = 1 / HZ
* HZ is defined in "asm/param.h" and it is usually 1/100s but on
* alpha system it is 1/1024s
*/
pt[i].cputime = ( psall[i].pst_utime + psall[i].pst_stime ) * 10 / HZ;
pt[i].mem_kbyte = (unsigned long)(((double)psall[i].pst_rssize)/1024.0 *
page_size);
/* State is Zombie -> then we are a Zombie ... clear or? (-: */
if ( psall[i].pst_stat || PS_ZOMBIE ) {
pt[i].status_flag |= PROCESS_ZOMBIE;
}
}
/* Return results */
* reference = pt;
return treesize;
}
/**
* This routine returns kbyte of real memory in use.
* @return: TRUE if successful, FALSE if failed (or not available)
*/
int used_system_memory_sysdep(SystemInfo_T *si) {
return FALSE;
}
/**
* This routine returns system/user CPU time in use.
* @return: TRUE if successful, FALSE if failed (or not available)
*/
int used_system_cpu_sysdep(SystemInfo_T *si) {
return FALSE;
}