sigar/src/sigar_ptql.c

1890 lines
50 KiB
C
Raw Normal View History

2006-12-18 15:34:24 +08:00
/*
* Copyright (C) [2004, 2005, 2006], Hyperic, Inc.
* This file is part of SIGAR.
*
* SIGAR is free software; you can redistribute it and/or modify
* it under the terms version 2 of the GNU General Public License as
* published by the Free Software Foundation. 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA.
*/
#include "sigar.h"
#include "sigar_private.h"
#include "sigar_util.h"
#include "sigar_ptql.h"
#include "sigar_os.h"
2006-12-18 15:34:24 +08:00
2007-11-06 11:40:32 +08:00
#include <stdio.h>
2007-01-02 02:55:51 +08:00
#ifdef SIGAR_HAS_PCRE
#include "pcre.h"
#endif
/* See http://gcc.gnu.org/ml/libstdc++/2002-03/msg00164.html */
#if defined(WIN32) || (defined(__hpux) && defined(SIGAR_64BIT))
#define strtoull strtoul
#elif (defined(__hpux) && !defined(SIGAR_64BIT))
#define strtoull __strtoull
2007-03-12 06:23:11 +08:00
#else
#include <errno.h>
2006-12-31 08:21:27 +08:00
#endif
#define SIGAR_CLEAR_ERRNO() errno = 0
2007-03-12 06:18:04 +08:00
#define strtonum_failed(src, ptr) \
((src == ptr) || (errno == ERANGE) || (*ptr != '\0'))
2006-12-19 13:26:33 +08:00
typedef struct ptql_parse_branch_t ptql_parse_branch_t;
typedef struct ptql_branch_t ptql_branch_t;
2007-08-22 11:40:57 +08:00
/* adhere to calling convention, else risk stack corruption */
#ifdef WIN32
#define SIGAPI WINAPI
#else
#define SIGAPI
#endif
typedef int (SIGAPI *ptql_get_t)(sigar_t *sigar, sigar_pid_t pid, void *data);
2007-11-06 11:40:32 +08:00
typedef int (*ptql_branch_init_t)(ptql_parse_branch_t *parsed, ptql_branch_t *branch,
sigar_ptql_error_t *error);
2006-12-18 15:34:24 +08:00
2007-01-01 05:53:32 +08:00
typedef int (*ptql_op_ui64_t)(ptql_branch_t *branch,
sigar_uint64_t haystack,
sigar_uint64_t needle);
typedef int (*ptql_op_ui32_t)(ptql_branch_t *branch,
sigar_uint32_t haystack,
sigar_uint32_t needle);
2007-03-12 05:58:03 +08:00
typedef int (*ptql_op_dbl_t)(ptql_branch_t *branch,
double haystack,
double needle);
2007-01-01 05:53:32 +08:00
typedef int (*ptql_op_str_t)(ptql_branch_t *branch,
char *haystack,
char *needle);
typedef int (*ptql_op_chr_t)(ptql_branch_t *branch,
char haystack,
char needle);
2006-12-18 15:34:24 +08:00
typedef enum {
PTQL_VALUE_TYPE_UI64,
PTQL_VALUE_TYPE_UI32,
2007-03-12 05:58:03 +08:00
PTQL_VALUE_TYPE_DBL,
2006-12-18 15:34:24 +08:00
PTQL_VALUE_TYPE_CHR,
PTQL_VALUE_TYPE_STR,
PTQL_VALUE_TYPE_ANY
} ptql_value_type_t;
2007-01-02 02:44:20 +08:00
typedef enum {
PTQL_OP_EQ,
PTQL_OP_NE,
PTQL_OP_GT,
PTQL_OP_GE,
PTQL_OP_LT,
PTQL_OP_LE,
#define PTQL_OP_MAX_NSTR PTQL_OP_LE
PTQL_OP_EW, /* rest are string only */
PTQL_OP_SW,
PTQL_OP_RE,
PTQL_OP_CT,
PTQL_OP_MAX
} ptql_op_name_t;
2006-12-31 11:07:43 +08:00
#define PTQL_OP_FLAG_PARENT 1
2007-01-01 03:06:03 +08:00
#define PTQL_OP_FLAG_REF 2
#define PTQL_OP_FLAG_GLOB 4
2007-04-22 01:27:44 +08:00
#define PTQL_OP_FLAG_PID 8
#define PTQL_OP_FLAG_ICASE 16
2006-12-31 11:07:43 +08:00
2006-12-19 13:26:33 +08:00
struct ptql_parse_branch_t {
char *name;
char *attr;
char *op;
char *value;
2006-12-31 11:07:43 +08:00
unsigned int op_flags;
2006-12-19 13:26:33 +08:00
};
2006-12-18 15:34:24 +08:00
typedef struct {
char *name;
ptql_get_t get;
size_t offset;
unsigned int data_size;
ptql_value_type_t type;
2006-12-19 13:26:33 +08:00
ptql_branch_init_t init;
2006-12-18 15:34:24 +08:00
} ptql_lookup_t;
#define DATA_PTR(branch) \
((char *)branch->data.ptr + branch->lookup->offset)
2006-12-18 15:34:24 +08:00
#define IS_ICASE(branch) \
(branch->op_flags & PTQL_OP_FLAG_ICASE)
#define branch_strcmp(branch, s1, s2) \
(IS_ICASE(branch) ? strcasecmp(s1, s2) : strcmp(s1, s2))
#define branch_strncmp(branch, s1, s2, n) \
(IS_ICASE(branch) ? strncasecmp(s1, s2, n) : strncmp(s1, s2, n))
#define branch_strEQ(branch, s1, s2) \
(branch_strcmp(branch, s1, s2) == 0)
#define branch_strnEQ(branch, s1, s2, n) \
(branch_strncmp(branch, s1, s2, n) == 0)
2008-03-27 05:29:43 +08:00
#define branch_strstr(branch, s1, s2) \
(IS_ICASE(branch) ? sigar_strcasestr(s1, s2) : strstr(s1, s2))
#define IS_PID_SERVICE_QUERY(branch) \
(branch->flags >= PTQL_PID_SERVICE_NAME)
2007-01-02 02:31:06 +08:00
static void data_free(void *data)
{
free(data);
}
typedef union {
sigar_pid_t pid;
sigar_uint64_t ui64;
sigar_uint32_t ui32;
2007-03-12 05:58:03 +08:00
double dbl;
char chr[4];
char *str;
void *ptr;
} any_value_t;
2006-12-19 13:26:33 +08:00
struct ptql_branch_t {
2006-12-18 15:34:24 +08:00
ptql_lookup_t *lookup;
any_value_t data;
2006-12-18 15:34:24 +08:00
unsigned int data_size;
2007-01-02 02:31:06 +08:00
void (*data_free)(void *);
2006-12-22 13:52:23 +08:00
unsigned int flags;
2006-12-31 11:07:43 +08:00
unsigned int op_flags;
2007-01-02 02:44:20 +08:00
ptql_op_name_t op_name;
2006-12-18 15:34:24 +08:00
union {
ptql_op_ui64_t ui64;
ptql_op_ui32_t ui32;
2007-03-12 05:58:03 +08:00
ptql_op_dbl_t dbl;
2006-12-18 15:34:24 +08:00
ptql_op_chr_t chr;
ptql_op_str_t str;
} match;
any_value_t value;
2007-01-02 02:36:16 +08:00
void (*value_free)(void *);
2006-12-19 13:26:33 +08:00
};
2006-12-18 15:34:24 +08:00
typedef struct {
char *name;
ptql_lookup_t *members;
} ptql_entry_t;
typedef struct {
unsigned long number;
unsigned long size;
ptql_branch_t *data;
} ptql_branch_list_t;
struct sigar_ptql_query_t {
ptql_branch_list_t branches;
2007-04-22 10:27:12 +08:00
#ifdef PTQL_DEBUG
char *ptql;
#endif
2006-12-18 15:34:24 +08:00
};
/* XXX optimize */
static ptql_op_name_t ptql_op_code_get(char *op)
{
if (strEQ(op, "eq")) {
return PTQL_OP_EQ;
}
else if (strEQ(op, "ne")) {
return PTQL_OP_NE;
}
else if (strEQ(op, "gt")) {
return PTQL_OP_GT;
}
else if (strEQ(op, "ge")) {
return PTQL_OP_GE;
}
else if (strEQ(op, "lt")) {
return PTQL_OP_LT;
}
else if (strEQ(op, "le")) {
return PTQL_OP_LE;
}
else if (strEQ(op, "ew")) {
return PTQL_OP_EW;
}
else if (strEQ(op, "sw")) {
return PTQL_OP_SW;
}
else if (strEQ(op, "re")) {
return PTQL_OP_RE;
}
else if (strEQ(op, "ct")) {
return PTQL_OP_CT;
}
else {
return PTQL_OP_MAX;
}
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui64_eq(ptql_branch_t *branch,
sigar_uint64_t haystack, sigar_uint64_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack == needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui64_ne(ptql_branch_t *branch,
sigar_uint64_t haystack, sigar_uint64_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack != needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui64_gt(ptql_branch_t *branch,
sigar_uint64_t haystack, sigar_uint64_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack > needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui64_ge(ptql_branch_t *branch,
sigar_uint64_t haystack, sigar_uint64_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack >= needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui64_lt(ptql_branch_t *branch,
sigar_uint64_t haystack, sigar_uint64_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack < needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui64_le(ptql_branch_t *branch,
sigar_uint64_t haystack, sigar_uint64_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack <= needle;
}
static ptql_op_ui64_t ptql_op_ui64[] = {
ptql_op_ui64_eq,
ptql_op_ui64_ne,
ptql_op_ui64_gt,
ptql_op_ui64_ge,
ptql_op_ui64_lt,
ptql_op_ui64_le
};
2007-01-01 05:53:32 +08:00
static int ptql_op_ui32_eq(ptql_branch_t *branch,
sigar_uint32_t haystack, sigar_uint32_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack == needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui32_ne(ptql_branch_t *branch,
sigar_uint32_t haystack, sigar_uint32_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack != needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui32_gt(ptql_branch_t *branch,
sigar_uint32_t haystack, sigar_uint32_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack > needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui32_ge(ptql_branch_t *branch,
sigar_uint32_t haystack, sigar_uint32_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack >= needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui32_lt(ptql_branch_t *branch,
sigar_uint32_t haystack, sigar_uint32_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack < needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_ui32_le(ptql_branch_t *branch,
sigar_uint32_t haystack, sigar_uint32_t needle)
2006-12-18 15:34:24 +08:00
{
return haystack <= needle;
}
static ptql_op_ui32_t ptql_op_ui32[] = {
ptql_op_ui32_eq,
ptql_op_ui32_ne,
ptql_op_ui32_gt,
ptql_op_ui32_ge,
ptql_op_ui32_lt,
ptql_op_ui32_le
};
2007-03-12 05:58:03 +08:00
static int ptql_op_dbl_eq(ptql_branch_t *branch,
double haystack, double needle)
{
return haystack == needle;
}
static int ptql_op_dbl_ne(ptql_branch_t *branch,
double haystack, double needle)
{
return haystack != needle;
}
static int ptql_op_dbl_gt(ptql_branch_t *branch,
double haystack, double needle)
{
return haystack > needle;
}
static int ptql_op_dbl_ge(ptql_branch_t *branch,
double haystack, double needle)
{
return haystack >= needle;
}
static int ptql_op_dbl_lt(ptql_branch_t *branch,
double haystack, double needle)
{
return haystack < needle;
}
static int ptql_op_dbl_le(ptql_branch_t *branch,
double haystack, double needle)
{
return haystack <= needle;
}
static ptql_op_dbl_t ptql_op_dbl[] = {
ptql_op_dbl_eq,
ptql_op_dbl_ne,
ptql_op_dbl_gt,
ptql_op_dbl_ge,
ptql_op_dbl_lt,
ptql_op_dbl_le
};
2007-01-01 05:53:32 +08:00
static int ptql_op_str_eq(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
return branch_strEQ(branch, haystack, needle);
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_ne(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
return !branch_strEQ(branch, haystack, needle);
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_gt(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
return branch_strcmp(branch, haystack, needle) > 0;
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_ge(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
return branch_strcmp(branch, haystack, needle) >= 0;
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_lt(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
return branch_strcmp(branch, haystack, needle) < 0;
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_le(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
return branch_strcmp(branch, haystack, needle) <= 0;
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_ew(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
int nlen = strlen(needle);
int hlen = strlen(haystack);
int diff = hlen - nlen;
if (diff < 0) {
return 0;
}
return branch_strnEQ(branch, haystack + diff, needle, nlen);
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_sw(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
return branch_strnEQ(branch, haystack, needle, strlen(needle));
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_re(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
2007-01-02 02:55:51 +08:00
#ifdef SIGAR_HAS_PCRE
pcre *re = (pcre *)branch->value.ptr;
int len = strlen(haystack);
int rc =
pcre_exec(re, NULL, haystack, len, 0, 0, NULL, 0);
return rc >= 0;
#else
return 0;
#endif
2006-12-18 15:34:24 +08:00
}
2007-01-01 05:53:32 +08:00
static int ptql_op_str_ct(ptql_branch_t *branch,
char *haystack, char *needle)
2006-12-18 15:34:24 +08:00
{
2008-03-27 05:29:43 +08:00
return branch_strstr(branch, haystack, needle) != NULL;
2006-12-18 15:34:24 +08:00
}
static ptql_op_str_t ptql_op_str[] = {
ptql_op_str_eq,
ptql_op_str_ne,
ptql_op_str_gt,
ptql_op_str_ge,
ptql_op_str_lt,
ptql_op_str_le,
ptql_op_str_ew,
ptql_op_str_sw,
ptql_op_str_re,
ptql_op_str_ct
};
2007-01-01 05:53:32 +08:00
static int ptql_op_chr_eq(ptql_branch_t *branch,
char haystack, char needle)
2006-12-18 15:34:24 +08:00
{
return haystack == needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_chr_ne(ptql_branch_t *branch,
char haystack, char needle)
2006-12-18 15:34:24 +08:00
{
return haystack != needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_chr_gt(ptql_branch_t *branch,
char haystack, char needle)
2006-12-18 15:34:24 +08:00
{
return haystack > needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_chr_ge(ptql_branch_t *branch,
char haystack, char needle)
2006-12-18 15:34:24 +08:00
{
return haystack >= needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_chr_lt(ptql_branch_t *branch,
char haystack, char needle)
2006-12-18 15:34:24 +08:00
{
return haystack < needle;
}
2007-01-01 05:53:32 +08:00
static int ptql_op_chr_le(ptql_branch_t *branch,
char haystack, char needle)
2006-12-18 15:34:24 +08:00
{
return haystack <= needle;
}
static ptql_op_chr_t ptql_op_chr[] = {
ptql_op_chr_eq,
ptql_op_chr_ne,
ptql_op_chr_gt,
ptql_op_chr_ge,
ptql_op_chr_lt,
ptql_op_chr_le
};
#define PTQL_BRANCH_LIST_MAX 3
#define PTQL_BRANCH_LIST_GROW(branches) \
if ((branches)->number >= (branches)->size) { \
ptql_branch_list_grow(branches); \
}
static int ptql_branch_list_create(ptql_branch_list_t *branches)
{
branches->number = 0;
branches->size = PTQL_BRANCH_LIST_MAX;
branches->data = malloc(sizeof(*(branches->data)) *
branches->size);
return SIGAR_OK;
}
static int ptql_branch_list_grow(ptql_branch_list_t *branches)
{
branches->data =
realloc(branches->data,
sizeof(*(branches->data)) *
(branches->size + PTQL_BRANCH_LIST_MAX));
branches->size += PTQL_BRANCH_LIST_MAX;
return SIGAR_OK;
}
static int ptql_branch_list_destroy(ptql_branch_list_t *branches)
2006-12-18 15:34:24 +08:00
{
if (branches->size) {
int i;
for (i=0; i<branches->number; i++) {
ptql_branch_t *branch =
&branches->data[i];
if (branch->data_size && branch->data.ptr) {
branch->data_free(branch->data.ptr);
2006-12-18 15:34:24 +08:00
}
2006-12-19 11:23:53 +08:00
if (branch->lookup &&
2007-01-01 03:06:03 +08:00
(branch->lookup->type == PTQL_VALUE_TYPE_STR) &&
!(branch->op_flags & PTQL_OP_FLAG_REF))
2006-12-19 11:23:53 +08:00
{
2006-12-18 15:34:24 +08:00
if (branch->value.str) {
2007-01-02 02:36:16 +08:00
branch->value_free(branch->value.str);
2006-12-18 15:34:24 +08:00
}
}
}
free(branches->data);
branches->number = branches->size = 0;
}
return SIGAR_OK;
}
2007-11-06 11:40:32 +08:00
#ifdef WIN32
#define vsnprintf _vsnprintf
#endif
#define PTQL_ERRNAN \
ptql_error(error, "Query value '%s' is not a number", parsed->value)
static int ptql_error(sigar_ptql_error_t *error, const char *format, ...)
{
va_list args;
if (error != NULL) {
va_start(args, format);
vsnprintf(error->message, sizeof(error->message), format, args);
va_end(args);
}
return SIGAR_PTQL_MALFORMED_QUERY;
}
2006-12-19 13:26:33 +08:00
static int ptql_branch_init_any(ptql_parse_branch_t *parsed,
2007-11-06 11:40:32 +08:00
ptql_branch_t *branch,
sigar_ptql_error_t *error)
2006-12-19 13:26:33 +08:00
{
2007-06-27 09:10:12 +08:00
branch->data.str = sigar_strdup(parsed->attr);
2006-12-19 13:26:33 +08:00
branch->data_size = strlen(parsed->attr);
return SIGAR_OK;
}
static int ptql_str_match(sigar_t *sigar, ptql_branch_t *branch, char *value)
{
if (!branch->value.str) {
return 0;
}
#ifndef SIGAR_HAS_PCRE
if (branch->op_name == PTQL_OP_RE) {
if (sigar->ptql_re_impl) {
return sigar->ptql_re_impl(sigar->ptql_re_data,
value,
branch->value.str);
}
else {
return 0;
}
}
#endif
return branch->match.str(branch,
value,
branch->value.str);
}
2006-12-18 15:34:24 +08:00
static int ptql_branch_match(ptql_branch_t *branch)
{
switch (branch->lookup->type) {
case PTQL_VALUE_TYPE_UI64:
2007-01-01 05:53:32 +08:00
return branch->match.ui64(branch,
*(sigar_uint64_t *)DATA_PTR(branch),
2006-12-18 15:34:24 +08:00
branch->value.ui64);
case PTQL_VALUE_TYPE_UI32:
2007-01-01 05:53:32 +08:00
return branch->match.ui32(branch,
*(sigar_uint32_t *)DATA_PTR(branch),
2006-12-18 15:34:24 +08:00
branch->value.ui32);
2008-08-08 04:23:01 +08:00
case PTQL_VALUE_TYPE_DBL:
return branch->match.dbl(branch,
*(double *)DATA_PTR(branch),
branch->value.dbl);
2006-12-18 15:34:24 +08:00
case PTQL_VALUE_TYPE_CHR:
2007-01-01 05:53:32 +08:00
return branch->match.chr(branch,
*(char *)DATA_PTR(branch),
2006-12-18 15:34:24 +08:00
branch->value.chr[0]);
case PTQL_VALUE_TYPE_STR:
case PTQL_VALUE_TYPE_ANY:
2007-04-15 01:16:50 +08:00
if (!branch->value.str) {
return 0;
}
2007-01-01 05:53:32 +08:00
return branch->match.str(branch,
(char *)DATA_PTR(branch),
2006-12-18 15:34:24 +08:00
branch->value.str);
default:
return 0;
}
}
2007-01-01 03:06:03 +08:00
static int ptql_branch_match_ref(ptql_branch_t *branch, ptql_branch_t *ref)
{
switch (branch->lookup->type) {
case PTQL_VALUE_TYPE_UI64:
2007-01-01 05:53:32 +08:00
return branch->match.ui64(branch,
*(sigar_uint64_t *)DATA_PTR(branch),
2007-01-01 03:06:03 +08:00
*(sigar_uint64_t *)DATA_PTR(ref));
case PTQL_VALUE_TYPE_UI32:
2007-01-01 05:53:32 +08:00
return branch->match.ui32(branch,
*(sigar_uint32_t *)DATA_PTR(branch),
2007-01-01 03:06:03 +08:00
*(sigar_uint32_t *)DATA_PTR(ref));
2008-08-08 04:23:01 +08:00
case PTQL_VALUE_TYPE_DBL:
return branch->match.dbl(branch,
*(double *)DATA_PTR(branch),
*(double *)DATA_PTR(ref));
2007-01-01 03:06:03 +08:00
case PTQL_VALUE_TYPE_CHR:
2007-01-01 05:53:32 +08:00
return branch->match.chr(branch,
*(char *)DATA_PTR(branch),
2007-01-01 03:06:03 +08:00
*(char *)DATA_PTR(ref));
case PTQL_VALUE_TYPE_STR:
case PTQL_VALUE_TYPE_ANY:
2007-01-01 05:53:32 +08:00
return branch->match.str(branch,
(char *)DATA_PTR(branch),
2007-01-01 03:06:03 +08:00
(char *)DATA_PTR(ref));
default:
return 0;
}
}
2006-12-22 13:52:23 +08:00
enum {
PTQL_PID_PID,
PTQL_PID_FILE,
PTQL_PID_SUDO_FILE,
2008-06-01 11:39:25 +08:00
PTQL_PID_TCP_PORT,
PTQL_PID_UDP_PORT,
PTQL_PID_SERVICE_NAME,
PTQL_PID_SERVICE_DISPLAY,
2008-03-27 05:42:35 +08:00
PTQL_PID_SERVICE_PATH,
PTQL_PID_SERVICE_EXE
2006-12-22 13:52:23 +08:00
};
#ifdef SIGAR_64BIT
2007-06-03 01:37:05 +08:00
2007-03-12 06:44:30 +08:00
#define str2pid(value, ptr) strtoull(value, &ptr, 10)
2007-06-03 01:37:05 +08:00
#define pid_branch_match(branch, pid, match_pid) \
ptql_op_ui64[branch->op_name](branch, pid, match_pid)
#else
2007-06-03 01:37:05 +08:00
2007-03-12 06:44:30 +08:00
#define str2pid(value, ptr) strtoul(value, &ptr, 10)
2007-06-03 01:37:05 +08:00
#define pid_branch_match(branch, pid, match_pid) \
ptql_op_ui32[branch->op_name](branch, pid, match_pid)
#endif
#ifndef WIN32
2008-06-01 00:30:08 +08:00
#include <sys/stat.h>
int sigar_sudo_file2str(const char *fname, char *buffer, int buflen)
{
FILE *fp;
struct stat sb;
if (stat(fname, &sb) < 0) {
return errno;
}
if (sb.st_size > buflen) {
return ENOMEM;
}
snprintf(buffer, buflen, "sudo cat %s", fname);
if (!(fp = popen(buffer, "r"))) {
return errno;
}
(void)fgets(buffer, buflen, fp);
pclose(fp);
return SIGAR_OK;
}
#endif
static int ptql_branch_init_service(ptql_parse_branch_t *parsed,
ptql_branch_t *branch,
sigar_ptql_error_t *error)
{
branch->op_flags |= PTQL_OP_FLAG_PID;
if (strEQ(parsed->attr, "Name")) {
branch->flags = PTQL_PID_SERVICE_NAME;
}
else if (strEQ(parsed->attr, "DisplayName")) {
branch->flags = PTQL_PID_SERVICE_DISPLAY;
}
else if (strEQ(parsed->attr, "Path")) {
branch->flags = PTQL_PID_SERVICE_PATH;
}
2008-03-27 05:42:35 +08:00
else if (strEQ(parsed->attr, "Exe")) {
/* basename of Path */
branch->flags = PTQL_PID_SERVICE_EXE;
}
else {
return ptql_error(error, "Unsupported %s attribute: %s",
parsed->name, parsed->attr);
}
#ifdef WIN32
branch->data.str = sigar_strdup(parsed->value);
branch->data_size = strlen(parsed->value);
#endif
return SIGAR_OK;
}
2006-12-22 13:39:40 +08:00
static int ptql_branch_init_pid(ptql_parse_branch_t *parsed,
2007-11-06 11:40:32 +08:00
ptql_branch_t *branch,
sigar_ptql_error_t *error)
2006-12-22 13:39:40 +08:00
{
int use_sudo = 0;
2007-04-22 01:27:44 +08:00
branch->op_flags |= PTQL_OP_FLAG_PID;
2006-12-22 13:39:40 +08:00
if (strEQ(parsed->attr, "Pid")) {
2006-12-22 13:52:23 +08:00
branch->flags = PTQL_PID_PID;
2006-12-31 07:42:38 +08:00
if (strEQ(parsed->value, "$$")) {
branch->data.pid = getpid();
2006-12-31 07:42:38 +08:00
}
else {
2007-03-12 06:44:30 +08:00
char *ptr;
SIGAR_CLEAR_ERRNO();
2007-03-12 06:44:30 +08:00
branch->data.pid = str2pid(parsed->value, ptr);
if (strtonum_failed(parsed->value, ptr)) {
2007-11-06 11:40:32 +08:00
return PTQL_ERRNAN;
2007-03-12 06:44:30 +08:00
}
2006-12-31 07:42:38 +08:00
}
2006-12-22 13:39:40 +08:00
return SIGAR_OK;
}
else if (strEQ(parsed->attr, "PidFile") ||
(use_sudo = strEQ(parsed->attr, "SudoPidFile")))
{
branch->flags = use_sudo ? PTQL_PID_SUDO_FILE : PTQL_PID_FILE;
2007-06-27 09:10:12 +08:00
branch->data.str = sigar_strdup(parsed->value);
2006-12-22 13:39:40 +08:00
branch->data_size = strlen(parsed->value);
return SIGAR_OK;
}
return ptql_error(error, "Unsupported %s attribute: %s",
parsed->name, parsed->attr);
}
#ifdef WIN32
#define QUERY_SC_SIZE 8192
static int ptql_service_query_config(SC_HANDLE scm_handle,
char *name,
LPQUERY_SERVICE_CONFIG config)
{
int status;
DWORD bytes;
SC_HANDLE handle =
OpenService(scm_handle, name, SERVICE_QUERY_CONFIG);
if (!handle) {
return GetLastError();
}
if (QueryServiceConfig(handle, config, QUERY_SC_SIZE, &bytes)) {
status = SIGAR_OK;
}
else {
status = GetLastError();
}
CloseServiceHandle(handle);
return status;
}
2008-03-26 05:46:41 +08:00
static int sigar_services_walk(sigar_services_walker_t *walker,
ptql_branch_t *branch)
{
2008-03-07 10:27:20 +08:00
sigar_services_status_t ss;
char buffer[QUERY_SC_SIZE];
char exe[SIGAR_CMDLINE_MAX];
LPQUERY_SERVICE_CONFIG config = (LPQUERY_SERVICE_CONFIG)buffer;
2008-03-07 10:27:20 +08:00
DWORD i, status;
2008-03-07 10:27:20 +08:00
SIGAR_ZERO(&ss);
2008-03-26 05:46:41 +08:00
status = sigar_services_status_get(&ss, walker->flags);
2008-03-07 10:27:20 +08:00
if (status != SIGAR_OK) {
return status;
2006-12-22 13:39:40 +08:00
}
2008-03-07 10:27:20 +08:00
for (i=0; i<ss.count; i++) {
int status;
2008-03-27 05:42:35 +08:00
char *value = NULL;
2008-03-07 10:27:20 +08:00
char *name = ss.services[i].lpServiceName;
2008-03-27 01:06:32 +08:00
if (branch == NULL) {
/* no query, return all */
if (walker->add_service(walker, name) != SIGAR_OK) {
break;
}
continue;
}
switch (branch->flags) {
case PTQL_PID_SERVICE_DISPLAY:
2008-03-07 10:27:20 +08:00
value = ss.services[i].lpDisplayName;
break;
case PTQL_PID_SERVICE_PATH:
2008-03-27 05:42:35 +08:00
case PTQL_PID_SERVICE_EXE:
2008-03-07 10:27:20 +08:00
status = ptql_service_query_config(ss.handle, name, config);
if (status == SIGAR_OK) {
2008-03-27 05:42:35 +08:00
if (branch->flags == PTQL_PID_SERVICE_EXE) {
value =
sigar_service_exe_get(config->lpBinaryPathName,
exe, 1);
2008-03-27 05:42:35 +08:00
}
else {
2008-03-27 05:42:35 +08:00
value = config->lpBinaryPathName;
}
}
else {
continue;
}
break;
case PTQL_PID_SERVICE_NAME:
default:
value = name;
break;
}
2008-03-26 05:46:41 +08:00
if (ptql_str_match(walker->sigar, branch, value)) {
if (walker->add_service(walker, name) != SIGAR_OK) {
break;
}
}
}
2008-03-07 10:27:20 +08:00
sigar_services_status_close(&ss);
return SIGAR_OK;
2006-12-22 13:39:40 +08:00
}
2008-03-26 05:46:41 +08:00
static int ptql_pid_service_add(sigar_services_walker_t *walker,
char *name)
{
sigar_pid_t service_pid;
sigar_proc_list_t *proclist =
(sigar_proc_list_t *)walker->data;
int status =
sigar_service_pid_get(walker->sigar,
name,
&service_pid);
if (status == SIGAR_OK) {
SIGAR_PROC_LIST_GROW(proclist);
proclist->data[proclist->number++] = service_pid;
}
return SIGAR_OK;
}
static int ptql_pid_service_list_get(sigar_t *sigar,
ptql_branch_t *branch,
sigar_proc_list_t *proclist)
{
sigar_services_walker_t walker;
walker.sigar = sigar;
walker.flags = SERVICE_ACTIVE;
walker.data = proclist;
walker.add_service = ptql_pid_service_add;
return sigar_services_walk(&walker, branch);
}
2008-03-27 01:06:32 +08:00
int sigar_services_query(char *ptql,
sigar_ptql_error_t *error,
sigar_services_walker_t *walker)
{
int status;
sigar_ptql_query_t *query;
if (ptql == NULL) {
return sigar_services_walk(walker, NULL);
}
status = sigar_ptql_query_create(&query, (char *)ptql, error);
if (status != SIGAR_OK) {
return status;
}
if (query->branches.number == 1) {
ptql_branch_t *branch = &query->branches.data[0];
if (IS_PID_SERVICE_QUERY(branch)) {
status = sigar_services_walk(walker, branch);
}
else {
ptql_error(error, "Invalid Service query: %s", ptql);
status = SIGAR_PTQL_MALFORMED_QUERY;
}
2008-03-27 01:06:32 +08:00
}
else {
ptql_error(error, "Too many queries (%d), must be (1)",
query->branches.number);
status = SIGAR_PTQL_MALFORMED_QUERY;
}
sigar_ptql_query_destroy(query);
return status;
}
#endif
2006-12-22 13:39:40 +08:00
2008-06-01 11:39:25 +08:00
static int ptql_pid_port_get(sigar_t *sigar,
ptql_branch_t *branch,
sigar_pid_t *pid)
{
unsigned long port =
branch->data.ui32;
int status;
int proto =
branch->flags == PTQL_PID_UDP_PORT ?
SIGAR_NETCONN_UDP : SIGAR_NETCONN_TCP;
status =
sigar_proc_port_get(sigar, proto, port, pid);
return status;
}
2007-04-22 01:27:44 +08:00
static int ptql_pid_get(sigar_t *sigar,
ptql_branch_t *branch,
sigar_pid_t *pid)
2006-12-22 13:39:40 +08:00
{
if ((branch->flags == PTQL_PID_FILE) ||
(branch->flags == PTQL_PID_SUDO_FILE))
{
char *ptr, buffer[SIGAR_PATH_MAX+1];
const char *fname = (const char *)branch->data.str;
int status, len = sizeof(buffer)-1;
2006-12-22 13:39:40 +08:00
if (branch->flags == PTQL_PID_FILE) {
status = sigar_file2str(fname, buffer, len);
}
else {
#ifdef WIN32
return SIGAR_ENOTIMPL;
#else
status = sigar_sudo_file2str(fname, buffer, len);
#endif
}
2006-12-22 13:39:40 +08:00
if (status != SIGAR_OK) {
return status;
}
SIGAR_CLEAR_ERRNO();
2007-08-10 10:45:11 +08:00
*pid = str2pid(buffer, ptr);
if ((buffer == ptr) || (errno == ERANGE)) {
2007-04-16 07:26:09 +08:00
return errno;
2007-03-12 06:18:04 +08:00
}
2006-12-22 13:39:40 +08:00
}
else if (branch->flags == PTQL_PID_SERVICE_NAME) {
2006-12-22 13:52:23 +08:00
#ifdef WIN32
2007-03-12 05:50:23 +08:00
int status =
sigar_service_pid_get(sigar,
2007-04-22 01:27:44 +08:00
branch->data.str, pid);
2007-03-12 05:50:23 +08:00
if (status != SIGAR_OK) {
return status;
}
2006-12-22 13:52:23 +08:00
#else
2007-03-12 06:39:47 +08:00
return SIGAR_ENOTIMPL;
2006-12-22 13:52:23 +08:00
#endif
}
2008-06-01 11:39:25 +08:00
else if ((branch->flags == PTQL_PID_UDP_PORT) ||
(branch->flags == PTQL_PID_TCP_PORT))
{
int status = ptql_pid_port_get(sigar, branch, pid);
if (status != SIGAR_OK) {
return status;
}
}
2006-12-22 13:39:40 +08:00
else {
2007-04-22 01:27:44 +08:00
*pid = branch->data.pid;
}
return SIGAR_OK;
}
static int ptql_pid_list_get(sigar_t *sigar,
ptql_branch_t *branch,
sigar_proc_list_t *proclist)
2007-04-22 01:27:44 +08:00
{
int status, i;
2007-04-22 01:27:44 +08:00
sigar_pid_t match_pid;
if (IS_PID_SERVICE_QUERY(branch)) {
if ((branch->flags > PTQL_PID_SERVICE_NAME) ||
(branch->op_name != PTQL_OP_EQ))
{
2008-03-12 14:44:33 +08:00
#ifdef WIN32
return ptql_pid_service_list_get(sigar, branch, proclist);
2008-03-12 14:44:33 +08:00
#else
return SIGAR_OK; /* no matches */
#endif
}
}
status = ptql_pid_get(sigar, branch, &match_pid);
2007-04-22 01:27:44 +08:00
if (status != SIGAR_OK) {
/* XXX treated as non-match but would be nice to propagate */
return SIGAR_OK;
}
status = sigar_proc_list_get(sigar, NULL);
2007-04-22 01:27:44 +08:00
if (status != SIGAR_OK) {
return status;
2006-12-22 13:39:40 +08:00
}
for (i=0; i<sigar->pids->number; i++) {
sigar_pid_t pid = sigar->pids->data[i];
if (pid_branch_match(branch, pid, match_pid)) {
SIGAR_PROC_LIST_GROW(proclist);
proclist->data[proclist->number++] = pid;
}
}
2006-12-22 13:39:40 +08:00
return SIGAR_OK;
}
static int SIGAPI ptql_pid_match(sigar_t *sigar,
sigar_pid_t pid,
void *data)
{
/* query already used to filter proc_list */
return SIGAR_OK;
2006-12-22 13:39:40 +08:00
}
2006-12-19 14:08:03 +08:00
static int ptql_args_branch_init(ptql_parse_branch_t *parsed,
2007-11-06 11:40:32 +08:00
ptql_branch_t *branch,
sigar_ptql_error_t *error)
2006-12-19 14:08:03 +08:00
{
if (strEQ(parsed->attr, "*")) {
branch->op_flags |= PTQL_OP_FLAG_GLOB;
2006-12-19 14:08:03 +08:00
}
else {
char *end;
SIGAR_CLEAR_ERRNO();
branch->data.ui32 =
strtol(parsed->attr, &end, 10);
2006-12-19 14:08:03 +08:00
2007-03-12 06:18:04 +08:00
if (strtonum_failed(parsed->attr, end)) {
2006-12-19 14:08:03 +08:00
/* conversion failed */
2007-11-06 11:40:32 +08:00
return ptql_error(error, "%s is not a number", parsed->attr);
2006-12-19 14:08:03 +08:00
}
}
return SIGAR_OK;
}
2006-12-22 13:39:40 +08:00
2007-08-22 11:40:57 +08:00
static int SIGAPI ptql_args_match(sigar_t *sigar,
sigar_pid_t pid,
void *data)
2006-12-18 15:34:24 +08:00
{
ptql_branch_t *branch =
(ptql_branch_t *)data;
int status, matched=0;
sigar_proc_args_t args;
status = sigar_proc_args_get(sigar, pid, &args);
if (status != SIGAR_OK) {
return status;
}
if (branch->op_flags & PTQL_OP_FLAG_GLOB) {
2006-12-18 15:34:24 +08:00
int i;
for (i=0; i<args.number; i++) {
matched =
ptql_str_match(sigar, branch, args.data[i]);
2006-12-18 15:34:24 +08:00
if (matched) {
break;
}
}
}
else {
int num = branch->data.ui32;
2006-12-18 15:34:24 +08:00
/* e.g. find last element of args: Args.-1.eq=weblogic.Server */
if (num < 0) {
num += args.number;
}
if ((num >= 0) && (num < args.number)) {
matched =
ptql_str_match(sigar, branch, args.data[num]);
2006-12-18 15:34:24 +08:00
}
}
sigar_proc_args_destroy(sigar, &args);
return matched ? SIGAR_OK : !SIGAR_OK;
}
2006-12-19 11:23:53 +08:00
typedef struct {
const char *key;
int klen;
char *val;
int vlen;
} sigar_proc_env_entry_t;
static int sigar_proc_env_get_key(void *data,
const char *key, int klen,
char *val, int vlen)
{
sigar_proc_env_entry_t *entry =
(sigar_proc_env_entry_t *)data;
if ((entry->klen == klen) &&
(strcmp(entry->key, key) == 0))
{
entry->val = val;
entry->vlen = vlen;
return !SIGAR_OK; /* foundit; stop iterating */
}
return SIGAR_OK;
}
2007-08-22 11:40:57 +08:00
static int SIGAPI ptql_env_match(sigar_t *sigar,
sigar_pid_t pid,
void *data)
2006-12-19 11:23:53 +08:00
{
ptql_branch_t *branch =
(ptql_branch_t *)data;
int status, matched=0;
sigar_proc_env_t procenv;
sigar_proc_env_entry_t entry;
/* XXX ugh this is klunky */
entry.key = branch->data.str;
2006-12-19 11:23:53 +08:00
entry.klen = branch->data_size;
entry.val = NULL;
procenv.type = SIGAR_PROC_ENV_KEY;
procenv.key = branch->data.str;
2006-12-19 11:23:53 +08:00
procenv.klen = branch->data_size;
procenv.env_getter = sigar_proc_env_get_key;
procenv.data = &entry;
status = sigar_proc_env_get(sigar, pid, &procenv);
if (status != SIGAR_OK) {
return status;
}
else {
if (entry.val) {
matched =
ptql_str_match(sigar, branch, entry.val);
2006-12-19 11:23:53 +08:00
}
}
return matched ? SIGAR_OK : !SIGAR_OK;
}
2007-01-02 08:26:03 +08:00
static int ptql_branch_init_port(ptql_parse_branch_t *parsed,
2007-11-06 11:40:32 +08:00
ptql_branch_t *branch,
sigar_ptql_error_t *error)
2007-01-02 08:26:03 +08:00
{
2007-11-06 11:40:32 +08:00
char *ptr;
2007-06-03 01:46:51 +08:00
/* only 'eq' is supported here */
if (branch->op_name != PTQL_OP_EQ) {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "%s requires 'eq' operator",
parsed->name);
2007-06-03 01:46:51 +08:00
}
2007-01-02 08:26:03 +08:00
if (strEQ(parsed->attr, "tcp")) {
2008-06-01 11:39:25 +08:00
branch->flags = PTQL_PID_TCP_PORT;
2007-01-02 08:26:03 +08:00
}
else if (strEQ(parsed->attr, "udp")) {
2008-06-01 11:39:25 +08:00
branch->flags = PTQL_PID_TCP_PORT;
2007-01-02 08:26:03 +08:00
}
else {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Unsupported %s protocol: %s",
2008-06-01 11:39:25 +08:00
parsed->name, parsed->attr);
2007-01-02 08:26:03 +08:00
}
2008-06-01 11:39:25 +08:00
branch->op_flags |= PTQL_OP_FLAG_PID;
SIGAR_CLEAR_ERRNO();
2007-11-06 11:40:32 +08:00
branch->data.ui32 = strtoul(parsed->value, &ptr, 10);
if (strtonum_failed(parsed->value, ptr)) {
return PTQL_ERRNAN;
}
2007-01-02 08:26:03 +08:00
return SIGAR_OK;
}
2006-12-18 15:34:24 +08:00
#define PTQL_LOOKUP_ENTRY(cname, member, type) \
(ptql_get_t)sigar_##cname##_get, \
sigar_offsetof(sigar_##cname##_t, member), \
sizeof(sigar_##cname##_t), \
2006-12-19 13:26:33 +08:00
PTQL_VALUE_TYPE_##type, \
NULL
2006-12-18 15:34:24 +08:00
/* XXX uid/pid can be larger w/ 64bit mode */
#define PTQL_VALUE_TYPE_PID PTQL_VALUE_TYPE_UI32
#define PTQL_VALUE_TYPE_UID PTQL_VALUE_TYPE_UI32
static ptql_lookup_t PTQL_Time[] = {
{ "StartTime", PTQL_LOOKUP_ENTRY(proc_time, start_time, UI64) },
{ "User", PTQL_LOOKUP_ENTRY(proc_time, user, UI64) },
{ "Sys", PTQL_LOOKUP_ENTRY(proc_time, sys, UI64) },
{ "Total", PTQL_LOOKUP_ENTRY(proc_time, total, UI64) },
{ NULL }
};
2007-03-12 06:00:07 +08:00
static ptql_lookup_t PTQL_Cpu[] = {
{ "StartTime", PTQL_LOOKUP_ENTRY(proc_cpu, start_time, UI64) },
{ "User", PTQL_LOOKUP_ENTRY(proc_cpu, user, UI64) },
{ "Sys", PTQL_LOOKUP_ENTRY(proc_cpu, sys, UI64) },
{ "Total", PTQL_LOOKUP_ENTRY(proc_cpu, total, UI64) },
2008-08-08 04:23:01 +08:00
{ "Percent", PTQL_LOOKUP_ENTRY(proc_cpu, percent, DBL) },
2007-03-12 06:00:07 +08:00
{ NULL }
};
2006-12-18 15:34:24 +08:00
static ptql_lookup_t PTQL_CredName[] = {
{ "User", PTQL_LOOKUP_ENTRY(proc_cred_name, user, STR) },
{ "Group", PTQL_LOOKUP_ENTRY(proc_cred_name, group, STR) },
{ NULL }
};
static ptql_lookup_t PTQL_Mem[] = {
{ "Size", PTQL_LOOKUP_ENTRY(proc_mem, size, UI64) },
{ "Resident", PTQL_LOOKUP_ENTRY(proc_mem, resident, UI64) },
{ "Share", PTQL_LOOKUP_ENTRY(proc_mem, share, UI64) },
{ "MinorFaults", PTQL_LOOKUP_ENTRY(proc_mem, minor_faults, UI64) },
{ "MajorFaults", PTQL_LOOKUP_ENTRY(proc_mem, major_faults, UI64) },
{ "PageFaults", PTQL_LOOKUP_ENTRY(proc_mem, page_faults, UI64) },
{ NULL }
};
static ptql_lookup_t PTQL_Exe[] = {
{ "Name", PTQL_LOOKUP_ENTRY(proc_exe, name, STR) },
{ "Cwd", PTQL_LOOKUP_ENTRY(proc_exe, cwd, STR) },
{ NULL }
};
static ptql_lookup_t PTQL_Cred[] = {
{ "Uid", PTQL_LOOKUP_ENTRY(proc_cred, uid, UID) },
{ "Gid", PTQL_LOOKUP_ENTRY(proc_cred, gid, UID) },
{ "Euid", PTQL_LOOKUP_ENTRY(proc_cred, euid, UID) },
{ "Egid", PTQL_LOOKUP_ENTRY(proc_cred, egid, UID) },
{ NULL }
};
static ptql_lookup_t PTQL_State[] = {
{ "State", PTQL_LOOKUP_ENTRY(proc_state, state, CHR) },
{ "Name", PTQL_LOOKUP_ENTRY(proc_state, name, STR) },
{ "Ppid", PTQL_LOOKUP_ENTRY(proc_state, ppid, PID) },
{ "Tty", PTQL_LOOKUP_ENTRY(proc_state, tty, UI32) },
{ "Nice", PTQL_LOOKUP_ENTRY(proc_state, nice, UI32) },
{ "Priority", PTQL_LOOKUP_ENTRY(proc_state, priority, UI32) },
{ "Threads", PTQL_LOOKUP_ENTRY(proc_state, threads, UI64) },
{ "Processor", PTQL_LOOKUP_ENTRY(proc_state, processor, UI32) },
{ NULL }
};
static ptql_lookup_t PTQL_Fd[] = {
{ "Total", PTQL_LOOKUP_ENTRY(proc_fd, total, UI64) },
{ NULL }
};
static ptql_lookup_t PTQL_Args[] = {
2006-12-19 14:08:03 +08:00
{ NULL, ptql_args_match, 0, 0, PTQL_VALUE_TYPE_ANY, ptql_args_branch_init }
2006-12-18 15:34:24 +08:00
};
2006-12-19 11:23:53 +08:00
static ptql_lookup_t PTQL_Env[] = {
2006-12-19 13:26:33 +08:00
{ NULL, ptql_env_match, 0, 0, PTQL_VALUE_TYPE_ANY, ptql_branch_init_any }
2006-12-19 11:23:53 +08:00
};
2007-01-02 08:26:03 +08:00
static ptql_lookup_t PTQL_Port[] = {
2008-06-01 11:39:25 +08:00
{ NULL, ptql_pid_match, 0, 0, PTQL_VALUE_TYPE_ANY, ptql_branch_init_port }
2007-01-02 08:26:03 +08:00
};
2006-12-22 13:39:40 +08:00
static ptql_lookup_t PTQL_Pid[] = {
{ NULL, ptql_pid_match, 0, 0, PTQL_VALUE_TYPE_ANY, ptql_branch_init_pid }
};
static ptql_lookup_t PTQL_Service[] = {
{ NULL, ptql_pid_match, 0, 0, PTQL_VALUE_TYPE_ANY, ptql_branch_init_service }
};
2006-12-18 15:34:24 +08:00
static ptql_entry_t ptql_map[] = {
{ "Time", PTQL_Time },
2007-03-12 06:00:07 +08:00
{ "Cpu", PTQL_Cpu },
2006-12-18 15:34:24 +08:00
{ "CredName", PTQL_CredName },
{ "Mem", PTQL_Mem },
{ "Exe", PTQL_Exe },
{ "Cred", PTQL_Cred },
{ "State", PTQL_State },
{ "Fd", PTQL_Fd },
{ "Args", PTQL_Args },
2006-12-19 11:23:53 +08:00
{ "Env", PTQL_Env },
2007-01-02 08:26:03 +08:00
{ "Port", PTQL_Port },
2006-12-22 13:39:40 +08:00
{ "Pid", PTQL_Pid },
{ "Service", PTQL_Service },
2006-12-18 15:34:24 +08:00
{ NULL }
};
2007-11-06 11:40:32 +08:00
static int ptql_branch_parse(char *query, ptql_parse_branch_t *branch,
sigar_ptql_error_t *error)
2006-12-18 15:34:24 +08:00
{
char *ptr = strchr(query, '=');
if (!ptr) {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Missing '='");
2006-12-18 15:34:24 +08:00
}
2006-12-31 11:07:43 +08:00
branch->op_flags = 0;
2006-12-18 15:34:24 +08:00
*ptr = '\0';
branch->value = ++ptr;
if ((ptr = strchr(query, '.'))) {
*ptr = '\0';
branch->name = query;
query = ++ptr;
}
else {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Missing '.'");
2006-12-18 15:34:24 +08:00
}
if ((ptr = strchr(query, '.'))) {
*ptr = '\0';
branch->attr = query;
query = ++ptr;
}
else {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Missing '.'");
2006-12-18 15:34:24 +08:00
}
if (*query) {
2006-12-31 11:07:43 +08:00
char flag;
2007-03-02 22:09:13 +08:00
while (sigar_isupper((flag = *query))) {
2006-12-31 11:07:43 +08:00
switch (flag) {
case 'P':
branch->op_flags |= PTQL_OP_FLAG_PARENT;
break;
case 'I':
branch->op_flags |= PTQL_OP_FLAG_ICASE;
break;
2006-12-31 11:07:43 +08:00
default:
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Unsupported modifier: %c", flag);
2006-12-31 11:07:43 +08:00
}
++query;
}
2006-12-18 15:34:24 +08:00
branch->op = query;
}
else {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Missing query");
2006-12-18 15:34:24 +08:00
}
/* Pid.Service -> Service.Name */
if (strEQ(branch->attr, "Service")) {
branch->name = branch->attr;
branch->attr = "Name";
}
2006-12-18 15:34:24 +08:00
return SIGAR_OK;
}
static int ptql_branch_add(ptql_parse_branch_t *parsed,
2007-11-06 11:40:32 +08:00
ptql_branch_list_t *branches,
sigar_ptql_error_t *error)
2006-12-18 15:34:24 +08:00
{
2007-01-01 03:06:03 +08:00
ptql_branch_t *branch;
2006-12-18 15:34:24 +08:00
ptql_entry_t *entry = NULL;
ptql_lookup_t *lookup = NULL;
2007-01-02 02:27:00 +08:00
int i, is_set=0;
2007-03-12 06:14:50 +08:00
char *ptr;
2007-01-01 03:06:03 +08:00
PTQL_BRANCH_LIST_GROW(branches);
2006-12-18 15:34:24 +08:00
2007-01-01 03:06:03 +08:00
branch = &branches->data[branches->number++];
2007-08-11 10:49:00 +08:00
SIGAR_ZERO(branch);
2007-01-02 02:31:06 +08:00
branch->data_free = data_free;
2007-01-02 02:36:16 +08:00
branch->value_free = data_free;
2006-12-31 11:07:43 +08:00
branch->op_flags = parsed->op_flags;
2006-12-18 15:34:24 +08:00
2007-01-02 02:44:20 +08:00
branch->op_name = ptql_op_code_get(parsed->op);
if (branch->op_name == PTQL_OP_MAX) {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Unsupported operator: %s", parsed->op);
2006-12-18 15:34:24 +08:00
}
for (i=0; ptql_map[i].name; i++) {
if (strEQ(ptql_map[i].name, parsed->name)) {
entry = &ptql_map[i];
break;
}
}
if (!entry) {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Unsupported method: %s", parsed->name);
2006-12-18 15:34:24 +08:00
}
for (i=0; entry->members[i].name; i++) {
if (strEQ(entry->members[i].name, parsed->attr)) {
lookup = &entry->members[i];
break;
}
}
if (!lookup) {
if (entry->members[0].type == PTQL_VALUE_TYPE_ANY) {
/* Args, Env, etc. */
lookup = &entry->members[0];
}
else {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Unsupported %s attribute: %s",
parsed->name, parsed->attr);
2006-12-18 15:34:24 +08:00
}
}
2006-12-19 13:26:33 +08:00
if (lookup->init) {
2007-11-06 11:40:32 +08:00
int status = lookup->init(parsed, branch, error);
2006-12-19 13:26:33 +08:00
if (status != SIGAR_OK) {
return status;
}
}
2006-12-18 15:34:24 +08:00
branch->lookup = lookup;
if ((lookup->type < PTQL_VALUE_TYPE_STR) &&
2007-01-02 02:44:20 +08:00
(branch->op_name > PTQL_OP_MAX_NSTR))
2006-12-18 15:34:24 +08:00
{
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Unsupported operator '%s' for %s.%s",
parsed->op, parsed->name, parsed->attr);
2006-12-18 15:34:24 +08:00
}
2007-04-15 01:16:50 +08:00
if (*parsed->value == '$') {
2007-01-02 02:27:00 +08:00
is_set = 1;
2007-01-01 03:06:03 +08:00
2007-04-15 01:16:50 +08:00
if (branch->op_name == PTQL_OP_RE) {
/* not for use with .re */
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Unsupported operator '%s' with variable %s",
parsed->op, parsed->value);
2007-01-01 03:06:03 +08:00
}
2007-04-15 01:16:50 +08:00
if (sigar_isdigit(*(parsed->value+1))) {
branch->op_flags |= PTQL_OP_FLAG_REF;
parsed->op_flags = branch->op_flags; /* for use by caller */
2007-04-15 01:16:50 +08:00
branch->value.ui32 = atoi(parsed->value+1) - 1;
if (branch->value.ui32 >= branches->number) {
/* out-of-range */
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Variable %s out of range (%d)",
parsed->value, branches->number);
2007-04-15 01:16:50 +08:00
}
else if (branch->value.ui32 == branches->number-1) {
/* self reference */
2007-11-06 11:40:32 +08:00
return ptql_error(error, "Variable %s self reference",
parsed->value);
2007-04-15 01:16:50 +08:00
}
2007-01-01 03:06:03 +08:00
}
2007-04-15 01:16:50 +08:00
else {
if ((ptr = getenv(parsed->value+1))) {
2007-06-27 09:10:12 +08:00
branch->value.str = sigar_strdup(ptr);
2007-04-15 01:16:50 +08:00
}
else {
branch->value.str = NULL;
}
2007-01-02 02:55:51 +08:00
}
}
else if (branch->op_name == PTQL_OP_RE) {
#ifdef SIGAR_HAS_PCRE
2007-03-07 07:10:14 +08:00
const char *error;
int offset;
pcre *re =
pcre_compile(parsed->value, 0,
&error, &offset, NULL);
if (!re) {
2007-11-06 11:40:32 +08:00
/* XXX pcre_error ? */
return ptql_error(error, "Invalid regex");
2007-03-07 07:10:14 +08:00
}
is_set = 1;
branch->value.ptr = re;
branch->value_free = pcre_free;
2007-01-02 02:55:51 +08:00
#endif
2007-01-01 03:06:03 +08:00
}
2006-12-18 15:34:24 +08:00
switch (lookup->type) {
case PTQL_VALUE_TYPE_UI64:
2007-01-02 02:44:20 +08:00
branch->match.ui64 = ptql_op_ui64[branch->op_name];
2007-01-02 02:27:00 +08:00
if (!is_set) {
SIGAR_CLEAR_ERRNO();
2007-03-12 06:14:50 +08:00
branch->value.ui64 = strtoull(parsed->value, &ptr, 10);
if (strtonum_failed(parsed->value, ptr)) {
2007-11-06 11:40:32 +08:00
return PTQL_ERRNAN;
2007-03-12 06:14:50 +08:00
}
2007-01-01 03:06:03 +08:00
}
2006-12-18 15:34:24 +08:00
break;
case PTQL_VALUE_TYPE_UI32:
2007-01-02 02:44:20 +08:00
branch->match.ui32 = ptql_op_ui32[branch->op_name];
2007-01-02 02:27:00 +08:00
if (!is_set) {
SIGAR_CLEAR_ERRNO();
2007-03-12 06:14:50 +08:00
branch->value.ui32 = strtoul(parsed->value, &ptr, 10);
if (strtonum_failed(parsed->value, ptr)) {
2007-11-06 11:40:32 +08:00
return PTQL_ERRNAN;
2007-03-12 06:14:50 +08:00
}
2007-01-01 03:06:03 +08:00
}
2006-12-18 15:34:24 +08:00
break;
2007-03-12 05:58:03 +08:00
case PTQL_VALUE_TYPE_DBL:
branch->match.dbl = ptql_op_dbl[branch->op_name];
if (!is_set) {
SIGAR_CLEAR_ERRNO();
2007-03-12 06:14:50 +08:00
branch->value.dbl = strtod(parsed->value, &ptr);
if (strtonum_failed(parsed->value, ptr)) {
2007-11-06 11:40:32 +08:00
return PTQL_ERRNAN;
2007-03-12 06:14:50 +08:00
}
2007-03-12 05:58:03 +08:00
}
break;
2006-12-18 15:34:24 +08:00
case PTQL_VALUE_TYPE_CHR:
2007-01-02 02:44:20 +08:00
branch->match.chr = ptql_op_chr[branch->op_name];
2007-01-02 02:27:00 +08:00
if (!is_set) {
2007-03-12 06:06:22 +08:00
if (strlen(parsed->value) != 1) {
2007-11-06 11:40:32 +08:00
return ptql_error(error, "%s is not a char", parsed->value);
2007-03-12 06:06:22 +08:00
}
2007-01-01 03:06:03 +08:00
branch->value.chr[0] = parsed->value[0];
}
2006-12-18 15:34:24 +08:00
break;
case PTQL_VALUE_TYPE_STR:
case PTQL_VALUE_TYPE_ANY:
2007-01-02 02:44:20 +08:00
branch->match.str = ptql_op_str[branch->op_name];
2007-01-02 02:27:00 +08:00
if (!is_set) {
2007-06-27 09:10:12 +08:00
branch->value.str = sigar_strdup(parsed->value);
2007-01-01 03:06:03 +08:00
}
2006-12-18 15:34:24 +08:00
break;
}
return SIGAR_OK;
}
2006-12-18 16:19:42 +08:00
static int ptql_branch_compare(const void *b1, const void *b2)
{
/* XXX can do better */
ptql_branch_t *branch1 = (ptql_branch_t *)b1;
ptql_branch_t *branch2 = (ptql_branch_t *)b2;
return
branch1->lookup->type -
branch2->lookup->type;
}
SIGAR_DECLARE(int) sigar_ptql_query_create(sigar_ptql_query_t **queryp,
2007-11-06 11:40:32 +08:00
char *ptql,
sigar_ptql_error_t *error)
2006-12-18 15:34:24 +08:00
{
2007-06-27 09:10:12 +08:00
char *ptr, *ptql_copy = sigar_strdup(ptql);
2006-12-18 15:34:24 +08:00
int status = SIGAR_OK;
int has_ref = 0;
2006-12-18 15:34:24 +08:00
sigar_ptql_query_t *query =
2007-01-01 03:06:03 +08:00
*queryp = malloc(sizeof(*query));
2006-12-18 15:34:24 +08:00
2007-11-06 11:40:32 +08:00
(void)ptql_error(error, "Malformed query");
2007-04-22 10:27:12 +08:00
#ifdef PTQL_DEBUG
2007-06-27 09:10:12 +08:00
query->ptql = sigar_strdup(ptql);
2007-04-22 10:27:12 +08:00
#endif
2006-12-18 15:34:24 +08:00
ptql = ptql_copy;
ptql_branch_list_create(&query->branches);
do {
ptql_parse_branch_t parsed;
if ((ptr = strchr(ptql, ','))) {
*ptr = '\0';
}
2007-11-06 11:40:32 +08:00
status = ptql_branch_parse(ptql, &parsed, error);
2006-12-18 15:34:24 +08:00
if (status == SIGAR_OK) {
status =
2007-11-06 11:40:32 +08:00
ptql_branch_add(&parsed, &query->branches, error);
2006-12-18 15:34:24 +08:00
if (status != SIGAR_OK) {
break;
}
if (parsed.op_flags & PTQL_OP_FLAG_REF) {
has_ref = 1;
}
2006-12-18 15:34:24 +08:00
}
else {
break;
}
if (ptr) {
ptql = ++ptr;
}
else {
break;
}
} while (*ptql);
free(ptql_copy);
if (status != SIGAR_OK) {
sigar_ptql_query_destroy(query);
2006-12-18 15:34:24 +08:00
*queryp = NULL;
}
else if (!has_ref && (query->branches.number > 1)) {
2006-12-18 16:19:42 +08:00
qsort(query->branches.data,
query->branches.number,
sizeof(query->branches.data[0]),
ptql_branch_compare);
}
2006-12-18 15:34:24 +08:00
2007-11-06 11:40:32 +08:00
if (status == SIGAR_OK) {
(void)ptql_error(error, "OK");
}
2006-12-18 15:34:24 +08:00
return status;
}
SIGAR_DECLARE(int) sigar_ptql_query_destroy(sigar_ptql_query_t *query)
2006-12-18 15:34:24 +08:00
{
2007-04-22 10:27:12 +08:00
#ifdef PTQL_DEBUG
free(query->ptql);
#endif
ptql_branch_list_destroy(&query->branches);
2006-12-18 15:34:24 +08:00
free(query);
return SIGAR_OK;
}
SIGAR_DECLARE(void) sigar_ptql_re_impl_set(sigar_t *sigar, void *data,
sigar_ptql_re_impl_t impl)
{
sigar->ptql_re_data = data;
sigar->ptql_re_impl = impl;
}
2006-12-18 15:34:24 +08:00
SIGAR_DECLARE(int) sigar_ptql_query_match(sigar_t *sigar,
sigar_ptql_query_t *query,
2006-12-31 11:07:43 +08:00
sigar_pid_t query_pid)
2006-12-18 15:34:24 +08:00
{
int i;
for (i=0; i<query->branches.number; i++) {
2006-12-31 11:07:43 +08:00
sigar_pid_t pid = query_pid;
2006-12-18 15:34:24 +08:00
int status, matched=0;
ptql_branch_t *branch = &query->branches.data[i];
ptql_lookup_t *lookup = branch->lookup;
2006-12-31 11:07:43 +08:00
if (branch->op_flags & PTQL_OP_FLAG_PARENT) {
sigar_proc_state_t state;
status = sigar_proc_state_get(sigar, pid, &state);
if (status != SIGAR_OK) {
return status;
}
pid = state.ppid;
}
2006-12-18 15:34:24 +08:00
if (lookup->type == PTQL_VALUE_TYPE_ANY) {
/* Args, Env, etc. */
status = lookup->get(sigar, pid, branch);
if (status == SIGAR_OK) {
matched = 1;
}
}
else {
/* standard sigar_proc_*_get / structptr + offset */
if (!branch->data.ptr) {
2006-12-18 15:34:24 +08:00
branch->data_size = lookup->data_size;
branch->data.ptr = malloc(branch->data_size);
2006-12-18 15:34:24 +08:00
}
status = lookup->get(sigar, pid, branch->data.ptr);
2007-01-01 03:06:03 +08:00
if (status != SIGAR_OK) {
return status;
}
2006-12-18 15:34:24 +08:00
2007-01-01 03:06:03 +08:00
if (branch->op_flags & PTQL_OP_FLAG_REF) {
ptql_branch_t *ref =
&query->branches.data[branch->value.ui32];
matched = ptql_branch_match_ref(branch, ref);
2006-12-18 15:34:24 +08:00
}
#ifndef SIGAR_HAS_PCRE
else if (branch->lookup->type == PTQL_VALUE_TYPE_STR) {
matched = ptql_str_match(sigar, branch, (char *)DATA_PTR(branch));
}
#endif
2006-12-18 15:34:24 +08:00
else {
2007-01-01 03:06:03 +08:00
matched = ptql_branch_match(branch);
2006-12-18 15:34:24 +08:00
}
}
if (!matched) {
return 1;
}
}
return SIGAR_OK;
}
2007-04-22 02:04:47 +08:00
static int ptql_proc_list_get(sigar_t *sigar,
sigar_ptql_query_t *query,
sigar_proc_list_t **proclist)
{
int status;
int i;
*proclist = NULL;
for (i=0; i<query->branches.number; i++) {
ptql_branch_t *branch = &query->branches.data[i];
if (branch->op_flags & PTQL_OP_FLAG_PID) {
/* pre-filter pid list for Pid.* queries */
/* XXX multiple Pid.* may result in dups */
if (*proclist == NULL) {
*proclist = malloc(sizeof(**proclist));
SIGAR_ZERO(*proclist);
sigar_proc_list_create(*proclist);
}
status = ptql_pid_list_get(sigar, branch, *proclist);
if (status != SIGAR_OK) {
sigar_proc_list_destroy(sigar, *proclist);
free(*proclist);
return status;
}
}
}
if (*proclist) {
return SIGAR_OK;
}
status = sigar_proc_list_get(sigar, NULL);
if (status != SIGAR_OK) {
return status;
}
*proclist = sigar->pids;
return SIGAR_OK;
}
static int ptql_proc_list_destroy(sigar_t *sigar,
sigar_proc_list_t *proclist)
{
if (proclist != sigar->pids) {
sigar_proc_list_destroy(sigar, proclist);
free(proclist);
}
return SIGAR_OK;
}
2007-04-22 02:04:47 +08:00
SIGAR_DECLARE(int) sigar_ptql_query_find_process(sigar_t *sigar,
sigar_ptql_query_t *query,
sigar_pid_t *pid)
{
int status;
2007-04-22 02:04:47 +08:00
int i, matches=0;
2007-12-22 06:42:52 +08:00
sigar_proc_list_t *pids;
2007-04-22 02:04:47 +08:00
status = ptql_proc_list_get(sigar, query, &pids);
2007-04-22 02:04:47 +08:00
if (status != SIGAR_OK) {
return status;
}
2007-12-22 06:42:52 +08:00
for (i=0; i<pids->number; i++) {
2007-04-22 02:04:47 +08:00
int query_status =
2007-12-22 06:42:52 +08:00
sigar_ptql_query_match(sigar, query, pids->data[i]);
2007-04-22 02:04:47 +08:00
if (query_status == SIGAR_OK) {
2007-12-22 06:42:52 +08:00
*pid = pids->data[i];
2007-04-22 02:04:47 +08:00
matches++;
}
else if (query_status == SIGAR_ENOTIMPL) {
/* let caller know query is invalid. */
status = query_status;
break;
} /* else ok, e.g. permission denied */
}
ptql_proc_list_destroy(sigar, pids);
2007-04-22 02:04:47 +08:00
if (status != SIGAR_OK) {
return status;
}
if (matches == 1) {
return SIGAR_OK;
}
else if (matches == 0) {
sigar_strerror_set(sigar,
"Query did not match any processes");
}
else {
sigar_strerror_printf(sigar,
"Query matched multiple processes (%d)",
matches);
}
return -1;
}
2007-04-22 06:48:20 +08:00
2007-04-22 11:16:38 +08:00
SIGAR_DECLARE(int) sigar_ptql_query_find(sigar_t *sigar,
sigar_ptql_query_t *query,
sigar_proc_list_t *proclist)
2007-04-22 06:48:20 +08:00
{
int status;
int i;
2007-12-22 06:42:52 +08:00
sigar_proc_list_t *pids;
2007-04-22 06:48:20 +08:00
status = ptql_proc_list_get(sigar, query, &pids);
2007-04-22 06:48:20 +08:00
if (status != SIGAR_OK) {
return status;
}
2007-04-23 01:54:36 +08:00
sigar_proc_list_create(proclist);
2007-12-22 06:42:52 +08:00
for (i=0; i<pids->number; i++) {
2007-04-22 06:48:20 +08:00
int query_status =
2007-12-22 06:42:52 +08:00
sigar_ptql_query_match(sigar, query, pids->data[i]);
2007-04-22 06:48:20 +08:00
if (query_status == SIGAR_OK) {
SIGAR_PROC_LIST_GROW(proclist);
2007-12-22 06:42:52 +08:00
proclist->data[proclist->number++] = pids->data[i];
2007-04-22 06:48:20 +08:00
}
else if (query_status == SIGAR_ENOTIMPL) {
/* let caller know query is invalid. */
status = query_status;
break;
}
}
ptql_proc_list_destroy(sigar, pids);
2007-04-22 06:48:20 +08:00
if (status != SIGAR_OK) {
2007-04-22 11:54:04 +08:00
sigar_proc_list_destroy(sigar, proclist);
2007-04-22 06:48:20 +08:00
return status;
}
return SIGAR_OK;
}