sigar/src/sigar_ptql.c

1481 lines
38 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-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
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);
2006-12-19 13:26:33 +08:00
typedef int (*ptql_branch_init_t)(ptql_parse_branch_t *parsed, ptql_branch_t *branch);
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
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
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 strEQ(haystack, needle);
}
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 !strEQ(haystack, needle);
}
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 strcmp(haystack, needle) > 0;
}
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 strcmp(haystack, needle) >= 0;
}
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 strcmp(haystack, needle) < 0;
}
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 strcmp(haystack, needle) <= 0;
}
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 strnEQ(haystack + diff, needle, nlen);
}
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 strnEQ(haystack, needle, strlen(needle));
}
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
{
return strstr(haystack, needle) != NULL;
}
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;
}
2006-12-19 13:26:33 +08:00
static int ptql_branch_init_any(ptql_parse_branch_t *parsed,
ptql_branch_t *branch)
{
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);
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));
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_SERVICE
};
#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
2006-12-22 13:39:40 +08:00
static int ptql_branch_init_pid(ptql_parse_branch_t *parsed,
ptql_branch_t *branch)
{
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;
branch->data.pid = str2pid(parsed->value, ptr);
if (strtonum_failed(parsed->value, ptr)) {
2007-04-16 07:26:09 +08:00
return EINVAL;
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")) {
2006-12-22 13:52:23 +08:00
branch->flags = 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;
}
2006-12-22 13:52:23 +08:00
else if (strEQ(parsed->attr, "Service")) {
branch->flags = PTQL_PID_SERVICE;
#ifdef WIN32
2007-06-27 09:10:12 +08:00
branch->data.str = sigar_strdup(parsed->value);
2006-12-22 13:52:23 +08:00
branch->data_size = strlen(parsed->value);
#endif
2007-03-12 06:39:47 +08:00
return SIGAR_OK;
2006-12-22 13:52:23 +08:00
}
2006-12-22 13:39:40 +08:00
else {
2007-04-16 07:26:09 +08:00
return EINVAL;
2006-12-22 13:39:40 +08:00
}
}
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
{
2007-03-12 06:18:04 +08:00
char *ptr;
2006-12-22 13:39:40 +08:00
2006-12-22 13:52:23 +08:00
if (branch->flags == PTQL_PID_FILE) {
2006-12-22 13:39:40 +08:00
char buffer[SIGAR_PATH_MAX+1];
int status =
sigar_file2str((const char *)branch->data.str,
2006-12-22 13:39:40 +08:00
buffer, sizeof(buffer)-1);
if (status != SIGAR_OK) {
return status;
}
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
}
2006-12-22 13:52:23 +08:00
else if (branch->flags == PTQL_PID_SERVICE) {
#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
}
2006-12-22 13:39:40 +08:00
else {
2007-04-22 01:27:44 +08:00
*pid = branch->data.pid;
}
return SIGAR_OK;
}
2007-08-22 11:40:57 +08:00
static int SIGAPI ptql_pid_match(sigar_t *sigar,
sigar_pid_t pid,
void *data)
2007-04-22 01:27:44 +08:00
{
ptql_branch_t *branch =
(ptql_branch_t *)data;
2007-04-22 01:27:44 +08:00
sigar_pid_t match_pid;
int matched;
2007-04-22 01:27:44 +08:00
int status =
ptql_pid_get(sigar, branch, &match_pid);
2007-04-22 01:27:44 +08:00
if (status != SIGAR_OK) {
return status;
2006-12-22 13:39:40 +08:00
}
2007-06-03 01:37:05 +08:00
matched = pid_branch_match(branch, pid, match_pid);
return matched ? SIGAR_OK : 1;
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,
ptql_branch_t *branch)
{
if (strEQ(parsed->attr, "*")) {
branch->op_flags |= PTQL_OP_FLAG_GLOB;
2006-12-19 14:08:03 +08:00
}
else {
char *end;
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-04-16 07:26:09 +08:00
return errno;
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,
ptql_branch_t *branch)
{
2007-06-03 01:46:51 +08:00
/* only 'eq' is supported here */
if (branch->op_name != PTQL_OP_EQ) {
return SIGAR_PTQL_MALFORMED_QUERY;
}
2007-01-02 08:26:03 +08:00
if (strEQ(parsed->attr, "tcp")) {
branch->flags = SIGAR_NETCONN_TCP;
}
else if (strEQ(parsed->attr, "udp")) {
branch->flags = SIGAR_NETCONN_UDP;
}
else {
2007-04-16 07:26:09 +08:00
return EINVAL;
2007-01-02 08:26:03 +08:00
}
branch->data.ui32 = atoi(parsed->value); /*XXX*/
2007-01-02 08:26:03 +08:00
return SIGAR_OK;
}
2007-08-22 11:40:57 +08:00
static int SIGAPI ptql_port_match(sigar_t *sigar,
sigar_pid_t pid,
void *data)
2007-01-02 08:26:03 +08:00
{
ptql_branch_t *branch =
(ptql_branch_t *)data;
unsigned long port =
branch->data.ui32;
2007-01-02 08:26:03 +08:00
int status;
sigar_pid_t match_pid=0;
status =
sigar_proc_port_get(sigar, branch->flags, port, &match_pid);
if (status != SIGAR_OK) {
return status;
}
return (pid == match_pid) ? SIGAR_OK : !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) },
{ "Percent", PTQL_LOOKUP_ENTRY(proc_cpu, total, DBL) },
{ 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[] = {
{ NULL, ptql_port_match, 0, 0, PTQL_VALUE_TYPE_ANY, ptql_branch_init_port }
};
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 }
};
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 },
2006-12-18 15:34:24 +08:00
{ NULL }
};
static int ptql_branch_parse(char *query, ptql_parse_branch_t *branch)
{
char *ptr = strchr(query, '=');
if (!ptr) {
return SIGAR_PTQL_MALFORMED_QUERY;
}
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 {
return SIGAR_PTQL_MALFORMED_QUERY;
}
if ((ptr = strchr(query, '.'))) {
*ptr = '\0';
branch->attr = query;
query = ++ptr;
}
else {
return SIGAR_PTQL_MALFORMED_QUERY;
}
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;
default:
2007-04-16 07:26:09 +08:00
return EINVAL;
2006-12-31 11:07:43 +08:00
}
++query;
}
2006-12-18 15:34:24 +08:00
branch->op = query;
}
else {
return SIGAR_PTQL_MALFORMED_QUERY;
}
return SIGAR_OK;
}
static int ptql_branch_add(ptql_parse_branch_t *parsed,
2007-01-01 03:06:03 +08:00
ptql_branch_list_t *branches)
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) {
2006-12-18 15:34:24 +08:00
return SIGAR_PTQL_MALFORMED_QUERY;
}
for (i=0; ptql_map[i].name; i++) {
if (strEQ(ptql_map[i].name, parsed->name)) {
entry = &ptql_map[i];
break;
}
}
if (!entry) {
return SIGAR_PTQL_MALFORMED_QUERY;
}
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 {
return SIGAR_PTQL_MALFORMED_QUERY;
}
}
2006-12-19 13:26:33 +08:00
if (lookup->init) {
int status = lookup->init(parsed, branch);
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
{
return SIGAR_PTQL_MALFORMED_QUERY;
}
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-01-01 03:06:03 +08:00
return SIGAR_PTQL_MALFORMED_QUERY;
}
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 */
return SIGAR_PTQL_MALFORMED_QUERY;
}
else if (branch->value.ui32 == branches->number-1) {
/* self reference */
return SIGAR_PTQL_MALFORMED_QUERY;
}
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) {
return SIGAR_PTQL_MALFORMED_QUERY;
}
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) {
2007-03-12 06:14:50 +08:00
branch->value.ui64 = strtoull(parsed->value, &ptr, 10);
if (strtonum_failed(parsed->value, ptr)) {
2007-04-16 07:26:09 +08:00
return errno;
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) {
2007-03-12 06:14:50 +08:00
branch->value.ui32 = strtoul(parsed->value, &ptr, 10);
if (strtonum_failed(parsed->value, ptr)) {
2007-04-16 07:26:09 +08:00
return errno;
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) {
2007-03-12 06:14:50 +08:00
branch->value.dbl = strtod(parsed->value, &ptr);
if (strtonum_failed(parsed->value, ptr)) {
2007-04-16 07:26:09 +08:00
return errno;
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) {
return SIGAR_PTQL_MALFORMED_QUERY;
}
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,
2006-12-18 15:34:24 +08:00
char *ptql)
{
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-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';
}
status = ptql_branch_parse(ptql, &parsed);
if (status == SIGAR_OK) {
status =
2007-01-01 03:06:03 +08:00
ptql_branch_add(&parsed, &query->branches);
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
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
SIGAR_DECLARE(int) sigar_ptql_query_find_process(sigar_t *sigar,
sigar_ptql_query_t *query,
sigar_pid_t *pid)
{
sigar_proc_list_t pids;
int status;
2007-04-22 02:04:47 +08:00
int i, matches=0;
if ((query->branches.number == 1) &&
(query->branches.data[0].op_flags & PTQL_OP_FLAG_PID))
{
/* avoid scanning the process list for single Pid.* queries */
return ptql_pid_get(sigar, &query->branches.data[0], pid);
}
status = sigar_proc_list_get(sigar, &pids);
2007-04-22 02:04:47 +08:00
if (status != SIGAR_OK) {
return status;
}
for (i=0; i<pids.number; i++) {
int query_status =
sigar_ptql_query_match(sigar, query, pids.data[i]);
if (query_status == SIGAR_OK) {
*pid = pids.data[i];
matches++;
}
else if (query_status == SIGAR_ENOTIMPL) {
/* let caller know query is invalid. */
status = query_status;
break;
} /* else ok, e.g. permission denied */
}
sigar_proc_list_destroy(sigar, &pids);
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
{
sigar_proc_list_t pids;
int status;
int i;
status = sigar_proc_list_get(sigar, &pids);
if (status != SIGAR_OK) {
return status;
}
2007-04-23 01:54:36 +08:00
sigar_proc_list_create(proclist);
2007-04-22 06:48:20 +08:00
for (i=0; i<pids.number; i++) {
int query_status =
sigar_ptql_query_match(sigar, query, pids.data[i]);
if (query_status == SIGAR_OK) {
SIGAR_PROC_LIST_GROW(proclist);
proclist->data[proclist->number++] = pids.data[i];
}
else if (query_status == SIGAR_ENOTIMPL) {
/* let caller know query is invalid. */
status = query_status;
break;
}
}
sigar_proc_list_destroy(sigar, &pids);
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;
}