>From 1eb15d88e6148e49cd3a3de5c9a62e353517e5c8 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Thu, 15 Oct 2009 13:10:18 +0100 Subject: [PATCH 7/8] Add CONNECT substitution s. Allow CONNECT to be substituted in any s in order to pass the correct libvirt URI down to actions such as virsh. The correct way to run virsh is now: virsh -r CONNECT cmd [...] which substitutes as either: virsh -r --connect 'uri' cmd [...] or: virsh -r cmd [...] Note that you should always run virsh readonly (-r option). Also corrects the documentation: ID should be VMID. Also this cleans up the string replacement code and ensures that it doesn't leak memory on failure. --- docs/man/vhostmd.8 | 24 ++++++++++--- vhostmd.xml | 6 ++-- vhostmd/metric.c | 93 ++++++++++++++++++++++++++++++++++----------------- 3 files changed, 83 insertions(+), 40 deletions(-) diff --git a/docs/man/vhostmd.8 b/docs/man/vhostmd.8 index 6eca1dd..dfcb301 100644 --- a/docs/man/vhostmd.8 +++ b/docs/man/vhostmd.8 @@ -137,12 +137,24 @@ host and vm. Currently, the metric element contains 3 elements: name, action, and variable. The name element defines the metric's name. The action element describes a -command or pipeline of commands used to gather the metric. For metrics of -vm context, the tokens NAME, ID, and UUID may be used where these attributes -of a VM are normally provided in a command. When the metric is sampled, these -tokens will be substituted with the actual name, ID, or UUID of the vm currently -being sampled by vhostmd. If the metric type is xml, action is expected to -retrun valid metric XML as defined below in "XML Format of Content". +command or pipeline of commands used to gather the metric. + +Any element can contain the magic token CONNECT which is +replaced with the string "--connect 'uri'" where uri is the libvirt +connection URI (specified on the command line to vhostmd as the -c +option). If it wasn't specified, then the token CONNECT is +substituted with the empty string. This allows you to write virsh +commands like this: + + virsh -r CONNECT command ... + +For metrics of vm context, the tokens NAME, VMID, and UUID may be used +where these attributes of a VM are normally provided in a command. +When the metric is sampled, these tokens will be substituted with the +actual name, ID, or UUID of the vm currently being sampled by vhostmd. + +If the metric type is xml, action is expected to return valid metric +XML as defined below in "XML Format of Content". .SH Metrics Disk Format diff --git a/vhostmd.xml b/vhostmd.xml index c97e838..6f56b58 100644 --- a/vhostmd.xml +++ b/vhostmd.xml @@ -35,7 +35,7 @@ within the vm element. HostName - virsh hostname | tr -d '[:space:]' + virsh CONNECT hostname | tr -d '[:space:]' VirtualizationVendor @@ -83,12 +83,12 @@ within the vm element. TotalCPUTime - virsh dominfo 0 | sed 's/: */:/' | \ + virsh CONNECT dominfo 0 | sed 's/: */:/' | \ gawk -F: '/CPU time/ {print $2;}' TotalCPUTime - virsh dominfo NAME | sed 's/: */:/' | \ + virsh CONNECT dominfo NAME | sed 's/: */:/' | \ gawk -F: '/CPU time/ {print $2;}' diff --git a/vhostmd/metric.c b/vhostmd/metric.c index 9407e0c..80c042f 100644 --- a/vhostmd/metric.c +++ b/vhostmd/metric.c @@ -30,31 +30,64 @@ #include "util.h" #include "metric.h" +static char *replace (char *str, const char *patt, const char *format, ...) +{ + char *repl = NULL; + char *old_str; + va_list args; + int r; + + va_start (args, format); + r = vasprintf (&repl, format, args); + va_end (args); + if (r == -1) { + vu_log (VHOSTMD_ERR, "vasprintf failed: %m"); + free (repl); + return NULL; + } + + old_str = str; + str = vu_str_replace (old_str, patt, repl); + if (str == NULL) { + vu_log (VHOSTMD_ERR, "vu_str_replace failed: %m"); + free (old_str); + return NULL; + } + + return str; +} + static int metric_action_subst(metric *m, char **action) { - char *str; - char *temp; - char *domid; + char *temp; - if ((str = vu_str_replace(m->action, "NAME", m->vm->name)) == NULL) - return -1; + temp = strdup (m->action); + if (temp == NULL) { + vu_log (VHOSTMD_ERR, "strdup: %m"); + return -1; + } - temp = str; - if (asprintf(&domid, "%d", m->vm->id) == -1) - return -1; - if ((str = vu_str_replace(temp, "VMID", domid)) == NULL) - return -1; - free(domid); - free(temp); + if (libvirt_uri) { + temp = replace (temp, "CONNECT", "--connect '%s'", libvirt_uri); + if (temp == NULL) return -1; + } else { + temp = replace (temp, "CONNECT", ""); + if (temp == NULL) return -1; + } - temp = str; - if ((str = vu_str_replace(temp, "UUID", m->vm->uuid)) == NULL) - return -1; - free(temp); + if (m->ctx == METRIC_CONTEXT_VM) { + temp = replace (temp, "NAME", "%s", m->vm->name); + if (temp == NULL) return -1; - *action = str; + temp = replace (temp, "VMID", "%d", m->vm->id); + if (temp == NULL) return -1; - return 0; + temp = replace (temp, "UUID", "%s", m->vm->uuid); + if (temp == NULL) return -1; + } + + *action = temp; + return 0; } /* @@ -208,29 +241,27 @@ int metric_value_get(metric *m) FILE *fp = NULL; int ret = -1; size_t len; + char *cmd = NULL; if (m->pf) { ret = m->pf(m); return ret; } - if (m->ctx == METRIC_CONTEXT_VM) { - char *cmd = NULL; + if (metric_action_subst(m, &cmd)) { + vu_log(VHOSTMD_ERR, "Failed action 'KEYWORD' substitution"); + return ret; + } + + fp = popen (cmd, "r"); - if (metric_action_subst(m, &cmd)) { - vu_log(VHOSTMD_ERR, "Failed action 'KEYWORD' substitution"); - return ret; - } - fp = popen(cmd, "r"); + if (fp == NULL) { + vu_log(VHOSTMD_ERR, "Command failed: %s", cmd); free(cmd); + return ret; } - else { - fp = popen(m->action, "r"); - } + free(cmd); - if (fp == NULL) - return ret; - if (m->type == M_XML) len = 2048; else -- 1.6.5.rc2