Compare commits
No commits in common. "c8" and "imports/c8-beta/pcp-5.3.7-16.el8" have entirely different histories.
c8
...
imports/c8
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
||||
SOURCES/pcp-5.3.7.src.tar.gz
|
||||
SOURCES/redhat-bugzilla-2219731-hacluster-metrics.patch
|
||||
|
@ -1,2 +1 @@
|
||||
a0a05bf501b016cb859fb211ae60ce18be2bbd99 SOURCES/pcp-5.3.7.src.tar.gz
|
||||
bb84c58586e078343c975ed61a8b53d4fd4393e8 SOURCES/redhat-bugzilla-2219731-hacluster-metrics.patch
|
||||
|
@ -1,326 +0,0 @@
|
||||
commit c226e98096c7bdb6296a96257439724e1f68217e
|
||||
Author: Nathan Scott <nathans@redhat.com>
|
||||
Date: Tue Apr 26 12:00:32 2022 +1000
|
||||
|
||||
libpcp: optimize indom handling in fetchgroup code
|
||||
|
||||
Looking into some pcp-ss issues I immediately encountered a
|
||||
noticable elapsed time difference between executing just ss
|
||||
versus pcp-ss. It turned out it was due to fetchgroup code
|
||||
not really understanding how the underlying indom APIs work
|
||||
and repeatedly refreshing shared indoms (all metrics in the
|
||||
pcp-ss tool actually share one indom) once for every metric
|
||||
that happens to use that indom - i.e. many times per fetch.
|
||||
|
||||
These changes resulted in a 5x speedup in pcp-ss and it now
|
||||
completes instantly as expected. Additionally, we use alot
|
||||
less memory now for the many-metrics-sharing-an-indom case.
|
||||
|
||||
diff -Naurp pcp-5.3.7.patched/src/libpcp/src/fetchgroup.c pcp-5.3.7/src/libpcp/src/fetchgroup.c
|
||||
--- pcp-5.3.7.patched/src/libpcp/src/fetchgroup.c 2022-04-05 09:05:43.000000000 +1000
|
||||
+++ pcp-5.3.7/src/libpcp/src/fetchgroup.c 2023-03-08 18:46:43.486916630 +1100
|
||||
@@ -34,6 +34,19 @@
|
||||
/* ------------------------------------------------------------------------ */
|
||||
|
||||
/*
|
||||
+ * Cache to avoid unnecessary repeated calls to pmGetInDom for individual
|
||||
+ * instance domains. This involves a round trip to pmcd and it does not
|
||||
+ * change frequently (certainly not for processing results of one sample).
|
||||
+ */
|
||||
+struct __pmInDomCache {
|
||||
+ pmInDom indom;
|
||||
+ int *codes; /* saved from pmGetInDom */
|
||||
+ char **names;
|
||||
+ unsigned int size;
|
||||
+ int refreshed;
|
||||
+};
|
||||
+
|
||||
+/*
|
||||
* An individual fetch-group is a linked list of requests tied to a
|
||||
* particular pcp context (which the fetchgroup owns). NB: This is
|
||||
* opaque to the PMAPI client.
|
||||
@@ -43,8 +56,10 @@ struct __pmFetchGroup {
|
||||
int wrap; /* wrap-handling flag, set at fg-create-time */
|
||||
pmResult *prevResult;
|
||||
struct __pmFetchGroupItem *items;
|
||||
+ struct __pmInDomCache *unique_indoms;
|
||||
pmID *unique_pmids;
|
||||
size_t num_unique_pmids;
|
||||
+ size_t num_unique_indoms;
|
||||
};
|
||||
|
||||
/*
|
||||
@@ -81,9 +96,6 @@ struct __pmFetchGroupItem {
|
||||
struct {
|
||||
pmID metric_pmid;
|
||||
pmDesc metric_desc;
|
||||
- int *indom_codes; /* saved from pmGetInDom */
|
||||
- char **indom_names;
|
||||
- unsigned indom_size;
|
||||
struct __pmFetchGroupConversionSpec conv;
|
||||
int *output_inst_codes; /* NB: may be NULL */
|
||||
char **output_inst_names; /* NB: may be NULL */
|
||||
@@ -168,9 +180,7 @@ pmfg_add_pmid(pmFG pmfg, pmID pmid)
|
||||
/*
|
||||
* Populate given pmFGI item structure based on common lookup &
|
||||
* verification for pmfg inputs. Adjust instance profile to
|
||||
- * include requested instance. If it's a derived metric, we
|
||||
- * don't know what instance domain(s) it could involve, so we
|
||||
- * clear the instance profile entirely.
|
||||
+ * include requested instance.
|
||||
*/
|
||||
static int
|
||||
pmfg_lookup_item(const char *metric, const char *instance, pmFGI item)
|
||||
@@ -206,9 +216,12 @@ pmfg_lookup_item(const char *metric, con
|
||||
|
||||
/* Same for a whole indom. Add the whole instance profile. */
|
||||
static int
|
||||
-pmfg_lookup_indom(const char *metric, pmFGI item)
|
||||
+pmfg_lookup_indom(pmFG pmfg, const char *metric, pmFGI item)
|
||||
{
|
||||
- int sts;
|
||||
+ struct __pmInDomCache *indoms;
|
||||
+ pmInDom indom;
|
||||
+ size_t size;
|
||||
+ int i, sts;
|
||||
|
||||
assert(item != NULL);
|
||||
assert(item->type == pmfg_indom);
|
||||
@@ -221,14 +234,34 @@ pmfg_lookup_indom(const char *metric, pm
|
||||
return sts;
|
||||
|
||||
/* As a convenience to users, we also accept non-indom'd metrics */
|
||||
- if (item->u.indom.metric_desc.indom == PM_INDOM_NULL)
|
||||
+ if ((indom = item->u.indom.metric_desc.indom) == PM_INDOM_NULL)
|
||||
return 0;
|
||||
|
||||
/*
|
||||
+ * Insert into the instance domain cache if not seen previously
|
||||
+ */
|
||||
+ for (i = 0; i < pmfg->num_unique_indoms; i++) {
|
||||
+ if (pmfg->unique_indoms[i].indom == indom)
|
||||
+ return 0;
|
||||
+ }
|
||||
+
|
||||
+ size = sizeof(struct __pmInDomCache) * (pmfg->num_unique_indoms + 1);
|
||||
+ indoms = realloc(pmfg->unique_indoms, size);
|
||||
+
|
||||
+ if (indoms == NULL)
|
||||
+ return -ENOMEM;
|
||||
+ pmfg->unique_indoms = indoms;
|
||||
+ pmfg->unique_indoms[pmfg->num_unique_indoms].indom = indom;
|
||||
+ pmfg->unique_indoms[pmfg->num_unique_indoms].codes = NULL;
|
||||
+ pmfg->unique_indoms[pmfg->num_unique_indoms].names = NULL;
|
||||
+ pmfg->unique_indoms[pmfg->num_unique_indoms].refreshed = 0;
|
||||
+ pmfg->num_unique_indoms++;
|
||||
+
|
||||
+ /*
|
||||
* Add all instances; this will override any other past or future
|
||||
* piecemeal instance requests from __pmExtendFetchGroup_lookup.
|
||||
*/
|
||||
- return pmAddProfile(item->u.indom.metric_desc.indom, 0, NULL);
|
||||
+ return pmAddProfile(indom, 0, NULL);
|
||||
}
|
||||
|
||||
/* Same for an event field. */
|
||||
@@ -581,7 +614,7 @@ pmfg_reinit_indom(pmFGI item)
|
||||
|
||||
if (item->u.indom.output_inst_names)
|
||||
for (i = 0; i < item->u.indom.output_maxnum; i++)
|
||||
- item->u.indom.output_inst_names[i] = NULL; /* break ref into indom_names[] */
|
||||
+ item->u.indom.output_inst_names[i] = NULL; /* ptr into names[] */
|
||||
|
||||
if (item->u.indom.output_stss)
|
||||
for (i = 0; i < item->u.indom.output_maxnum; i++)
|
||||
@@ -857,11 +890,11 @@ pmfg_fetch_timestamp(pmFG pmfg, pmFGI it
|
||||
static void
|
||||
pmfg_fetch_indom(pmFG pmfg, pmFGI item, pmResult *newResult)
|
||||
{
|
||||
- int sts = 0;
|
||||
- int i;
|
||||
- unsigned j;
|
||||
- int need_indom_refresh;
|
||||
+ int i, sts = 0;
|
||||
+ unsigned int j, k;
|
||||
+ struct __pmInDomCache *cache;
|
||||
const pmValueSet *iv;
|
||||
+ pmInDom indom;
|
||||
|
||||
assert(item != NULL);
|
||||
assert(item->type == pmfg_indom);
|
||||
@@ -901,36 +934,43 @@ pmfg_fetch_indom(pmFG pmfg, pmFGI item,
|
||||
|
||||
/*
|
||||
* Analyze newResult to see whether it only contains instances we
|
||||
- * already know. This is unfortunately an O(N**2) operation. It
|
||||
- * could be made a bit faster if we build a pmGetInDom()- variant
|
||||
- * that provides instances in sorted order.
|
||||
+ * already know.
|
||||
*/
|
||||
- need_indom_refresh = 0;
|
||||
- if (item->u.indom.output_inst_names) { /* Caller interested at all? */
|
||||
- for (j = 0; j < (unsigned)iv->numval; j++) {
|
||||
- unsigned k;
|
||||
- for (k = 0; k < item->u.indom.indom_size; k++)
|
||||
- if (item->u.indom.indom_codes[k] == iv->vlist[j].inst)
|
||||
+ cache = NULL;
|
||||
+ indom = item->u.indom.metric_desc.indom;
|
||||
+ for (j = 0; j < pmfg->num_unique_indoms; j++) {
|
||||
+ if (indom != pmfg->unique_indoms[j].indom)
|
||||
+ continue;
|
||||
+ cache = &pmfg->unique_indoms[j];
|
||||
+ break;
|
||||
+ }
|
||||
+ if (cache && cache->refreshed &&
|
||||
+ item->u.indom.output_inst_names) { /* Caller interested at all? */
|
||||
+ for (j = 0; j < (unsigned int)iv->numval; j++) {
|
||||
+ for (k = 0; k < cache->size; k++)
|
||||
+ if (cache->codes[k] == iv->vlist[j].inst)
|
||||
break;
|
||||
- if (k >= item->u.indom.indom_size) {
|
||||
- need_indom_refresh = 1;
|
||||
+ if (k >= cache->size) {
|
||||
+ cache->refreshed = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
- if (need_indom_refresh) {
|
||||
- free(item->u.indom.indom_codes);
|
||||
- free(item->u.indom.indom_names);
|
||||
- sts = pmGetInDom(item->u.indom.metric_desc.indom,
|
||||
- &item->u.indom.indom_codes, &item->u.indom.indom_names);
|
||||
+ if (cache && !cache->refreshed) {
|
||||
+ cache->refreshed = 1;
|
||||
+ free(cache->codes);
|
||||
+ free(cache->names);
|
||||
+ sts = pmGetInDom(indom, &cache->codes, &cache->names);
|
||||
if (sts < 1) {
|
||||
/* Need to manually clear; pmGetInDom claims they are undefined. */
|
||||
- item->u.indom.indom_codes = NULL;
|
||||
- item->u.indom.indom_names = NULL;
|
||||
- item->u.indom.indom_size = 0;
|
||||
+ cache->codes = NULL;
|
||||
+ cache->names = NULL;
|
||||
+ cache->size = 0;
|
||||
}
|
||||
else {
|
||||
- item->u.indom.indom_size = sts;
|
||||
+ if (sts < 0)
|
||||
+ cache->refreshed = 0;
|
||||
+ cache->size = sts;
|
||||
}
|
||||
/*
|
||||
* NB: Even if the pmGetInDom failed, we can proceed with
|
||||
@@ -965,18 +1005,19 @@ pmfg_fetch_indom(pmFG pmfg, pmFGI item,
|
||||
* results from pmGetIndom.
|
||||
*/
|
||||
if (item->u.indom.output_inst_names) {
|
||||
- unsigned k;
|
||||
-
|
||||
- for (k = 0; k < item->u.indom.indom_size; k++) {
|
||||
- if (item->u.indom.indom_codes[k] == jv->inst) {
|
||||
- /*
|
||||
- * NB: copy the indom name char* by value.
|
||||
- * The user is not supposed to modify / free this pointer,
|
||||
- * or use it after a subsequent fetch or delete operation.
|
||||
- */
|
||||
- item->u.indom.output_inst_names[j] =
|
||||
- item->u.indom.indom_names[k];
|
||||
- break;
|
||||
+ if (cache == NULL)
|
||||
+ item->u.indom.output_inst_names[j] = NULL;
|
||||
+ else {
|
||||
+ for (k = 0; k < cache->size; k++) {
|
||||
+ if (cache->codes[k] == jv->inst) {
|
||||
+ /*
|
||||
+ * NB: copy the indom name char* by value.
|
||||
+ * User may not modify / free this pointer,
|
||||
+ * nor use it after subsequent fetch / delete.
|
||||
+ */
|
||||
+ item->u.indom.output_inst_names[j] = cache->names[k];
|
||||
+ break;
|
||||
+ }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1201,8 +1242,7 @@ out:
|
||||
static int
|
||||
pmfg_clear_profile(pmFG pmfg)
|
||||
{
|
||||
- int sts;
|
||||
- pmFGI item;
|
||||
+ int i, sts;
|
||||
|
||||
sts = pmUseContext(pmfg->ctx);
|
||||
if (sts != 0)
|
||||
@@ -1216,10 +1256,9 @@ pmfg_clear_profile(pmFG pmfg)
|
||||
* Any errors here are benign (or rather there's nothing we can do
|
||||
* about 'em), so ignore pmDelProfile() return value.
|
||||
*/
|
||||
- for (item = pmfg->items; item; item = item->next) {
|
||||
- if (item->u.item.metric_desc.indom != PM_INDOM_NULL)
|
||||
- (void)pmDelProfile(item->u.item.metric_desc.indom, 0, NULL);
|
||||
- }
|
||||
+ for (i = 0; i < pmfg->num_unique_indoms; i++)
|
||||
+ (void)pmDelProfile(pmfg->unique_indoms[i].indom, 0, NULL);
|
||||
+
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1434,7 +1473,7 @@ pmExtendFetchGroup_indom(pmFG pmfg,
|
||||
|
||||
item->type = pmfg_indom;
|
||||
|
||||
- sts = pmfg_lookup_indom(metric, item);
|
||||
+ sts = pmfg_lookup_indom(pmfg, metric, item);
|
||||
if (sts != 0)
|
||||
goto out;
|
||||
|
||||
@@ -1615,7 +1654,6 @@ pmFetchGroup(pmFG pmfg)
|
||||
|
||||
if (pmfg == NULL)
|
||||
return -EINVAL;
|
||||
-
|
||||
/*
|
||||
* Walk the fetchgroup, reinitializing every output spot, regardless of
|
||||
* later errors.
|
||||
@@ -1705,6 +1743,7 @@ int
|
||||
pmClearFetchGroup(pmFG pmfg)
|
||||
{
|
||||
pmFGI item;
|
||||
+ size_t n;
|
||||
|
||||
if (pmfg == NULL)
|
||||
return -EINVAL;
|
||||
@@ -1719,8 +1758,6 @@ pmClearFetchGroup(pmFG pmfg)
|
||||
break;
|
||||
case pmfg_indom:
|
||||
pmfg_reinit_indom(item);
|
||||
- free(item->u.indom.indom_codes);
|
||||
- free(item->u.indom.indom_names);
|
||||
break;
|
||||
case pmfg_event:
|
||||
pmfg_reinit_event(item);
|
||||
@@ -1739,11 +1776,21 @@ pmClearFetchGroup(pmFG pmfg)
|
||||
if (pmfg->prevResult)
|
||||
pmFreeResult(pmfg->prevResult);
|
||||
pmfg->prevResult = NULL;
|
||||
+
|
||||
if (pmfg->unique_pmids)
|
||||
free(pmfg->unique_pmids);
|
||||
pmfg->unique_pmids = NULL;
|
||||
pmfg->num_unique_pmids = 0;
|
||||
|
||||
+ for (n = 0; n < pmfg->num_unique_indoms; n++) {
|
||||
+ free(pmfg->unique_indoms[n].codes);
|
||||
+ free(pmfg->unique_indoms[n].names);
|
||||
+ }
|
||||
+ if (pmfg->unique_indoms)
|
||||
+ free(pmfg->unique_indoms);
|
||||
+ pmfg->unique_indoms = NULL;
|
||||
+ pmfg->num_unique_indoms = 0;
|
||||
+
|
||||
return pmfg_clear_profile(pmfg);
|
||||
}
|
||||
|
@ -1,317 +0,0 @@
|
||||
commit 1e216d84c6b95b4f9cb7ee6b5adf9591f8af37d5
|
||||
Author: Nathan Scott <nathans@redhat.com>
|
||||
Date: Wed Dec 7 11:40:43 2022 +1100
|
||||
|
||||
pmdaopenmetrics: validate given names before using them for metrics
|
||||
|
||||
Its possible pmdaopenmetrics is fed garbage accidentally, e.g. in the
|
||||
case where a /metrics end point is not made visible and an HTTP error
|
||||
response is returned (misconfiguration).
|
||||
|
||||
Failure to safeguard this results in the generation of diagnostics in
|
||||
the openmetrics PMDA log file at an alarming rate until all available
|
||||
filesystem space is completely consumed. It can also result in bogus
|
||||
metric names being exposed to PMAPI clients.
|
||||
|
||||
This commit both adds new safeguards and scales back diagnostic noise
|
||||
from the agent. In some places it switches to more appropriate APIs
|
||||
for the level of logging being performed (esp. debug messages).
|
||||
|
||||
Resolves Red Hat BZ #2139325
|
||||
|
||||
diff -Naurp pcp-5.3.7.orig/qa/1191.out pcp-5.3.7/qa/1191.out
|
||||
--- pcp-5.3.7.orig/qa/1191.out 2021-11-01 13:02:26.000000000 +1100
|
||||
+++ pcp-5.3.7/qa/1191.out 2023-03-09 11:49:42.372413973 +1100
|
||||
@@ -10884,13 +10884,6 @@ GC Wall Time for b5be5b9f_b0f1_47de_b436
|
||||
inst [0 or "0 collector_name:Copy"] value 24462465
|
||||
inst [1 or "1 collector_name:MSC"] value 49519
|
||||
|
||||
-openmetrics.vmware_exporter.[root@ci-vm-10-0-138-196 [vmware_host_net_usage_average]
|
||||
- Data Type: double InDom: PM_INDOM_NULL 0xffffffff
|
||||
- Semantics: instant Units: none
|
||||
-Help:
|
||||
-vmware_host_net_usage_average
|
||||
-Error: Try again. Information not currently available
|
||||
-
|
||||
openmetrics.vmware_exporter.vmware_datastore_accessible [VMWare datastore accessible (true / false)]
|
||||
Data Type: double InDom: 144.35859 0x24008c13
|
||||
Semantics: instant Units: none
|
||||
diff -Naurp pcp-5.3.7.orig/qa/1221.out pcp-5.3.7/qa/1221.out
|
||||
--- pcp-5.3.7.orig/qa/1221.out 2021-11-01 13:02:26.000000000 +1100
|
||||
+++ pcp-5.3.7/qa/1221.out 2023-03-09 11:49:42.382414004 +1100
|
||||
@@ -7105,9 +7105,6 @@ openmetrics.thermostat.tms_jvm_gc_b5be5b
|
||||
inst [0 or "0 collector_name:Copy"] labels {"agent":"openmetrics","collector_name":"Copy","domainname":DOMAINNAME,"groupid":NUM,"hostname":HOSTNAME,"instname":"0 collector_name:Copy","machineid":MACHINEID,"source":"thermostat","url":FILEURL,"userid":NUM}
|
||||
inst [1 or "1 collector_name:MSC"] labels {"agent":"openmetrics","collector_name":"MSC","domainname":DOMAINNAME,"groupid":NUM,"hostname":HOSTNAME,"instname":"1 collector_name:MSC","machineid":MACHINEID,"source":"thermostat","url":FILEURL,"userid":NUM}
|
||||
|
||||
-openmetrics.vmware_exporter.[root@ci-vm-10-0-138-196
|
||||
- labels {"agent":"openmetrics","domainname":DOMAINNAME,"groupid":NUM,"hostname":HOSTNAME,"machineid":MACHINEID,"source":"vmware_exporter","url":FILEURL,"userid":NUM}
|
||||
-
|
||||
openmetrics.vmware_exporter.vmware_datastore_accessible
|
||||
labels {"agent":"openmetrics","dc_name":"ha-datacenter","domainname":DOMAINNAME,"ds_cluster":"","ds_name":"name008","groupid":NUM,"hostname":HOSTNAME,"machineid":MACHINEID,"source":"vmware_exporter","url":FILEURL,"userid":NUM}
|
||||
inst [0 or "0 dc_name:ha-datacenter ds_cluster: ds_name:name026"] labels {"agent":"openmetrics","dc_name":"ha-datacenter","domainname":DOMAINNAME,"ds_cluster":"","ds_name":"name026","groupid":NUM,"hostname":HOSTNAME,"instname":"0 dc_name:ha-datacenter ds_cluster: ds_name:name026","machineid":MACHINEID,"source":"vmware_exporter","url":FILEURL,"userid":NUM}
|
||||
@@ -15331,9 +15328,6 @@ openmetrics.thermostat.tms_jvm_gc_b5be5b
|
||||
inst [0 or "0 collector_name:Copy"] labels {"agent":"openmetrics","collector_name":"Copy","domainname":DOMAINNAME,"groupid":NUM,"hostname":HOSTNAME,"instname":"0 collector_name:Copy","machineid":MACHINEID,"source":"thermostat","url":FILEURL,"userid":NUM}
|
||||
inst [1 or "1 collector_name:MSC"] labels {"agent":"openmetrics","collector_name":"MSC","domainname":DOMAINNAME,"groupid":NUM,"hostname":HOSTNAME,"instname":"1 collector_name:MSC","machineid":MACHINEID,"source":"thermostat","url":FILEURL,"userid":NUM}
|
||||
|
||||
-openmetrics.vmware_exporter.[root@ci-vm-10-0-138-196
|
||||
- labels {"agent":"openmetrics","domainname":DOMAINNAME,"groupid":NUM,"hostname":HOSTNAME,"machineid":MACHINEID,"source":"vmware_exporter","url":FILEURL,"userid":NUM}
|
||||
-
|
||||
openmetrics.vmware_exporter.vmware_datastore_accessible
|
||||
labels {"agent":"openmetrics","dc_name":"ha-datacenter","domainname":DOMAINNAME,"ds_cluster":"","ds_name":"name008","groupid":NUM,"hostname":HOSTNAME,"machineid":MACHINEID,"source":"vmware_exporter","url":FILEURL,"userid":NUM}
|
||||
inst [0 or "0 dc_name:ha-datacenter ds_cluster: ds_name:name026"] labels {"agent":"openmetrics","dc_name":"ha-datacenter","domainname":DOMAINNAME,"ds_cluster":"","ds_name":"name026","groupid":NUM,"hostname":HOSTNAME,"instname":"0 dc_name:ha-datacenter ds_cluster: ds_name:name026","machineid":MACHINEID,"source":"vmware_exporter","url":FILEURL,"userid":NUM}
|
||||
diff -Naurp pcp-5.3.7.orig/qa/1342 pcp-5.3.7/qa/1342
|
||||
--- pcp-5.3.7.orig/qa/1342 2021-02-17 15:27:41.000000000 +1100
|
||||
+++ pcp-5.3.7/qa/1342 2023-03-09 11:49:42.382414004 +1100
|
||||
@@ -99,6 +99,8 @@ echo == Note: check $seq.full for log en
|
||||
echo == pmdaopenmetrics LOG == >>$here/$seq.full
|
||||
cat $PCP_LOG_DIR/pmcd/openmetrics.log >>$here/$seq.full
|
||||
|
||||
+# cleanup preparing for remove (else error messages here)
|
||||
+$sudo rm $PCP_PMDAS_DIR/openmetrics/config.d/simple_metric.*
|
||||
_pmdaopenmetrics_remove
|
||||
|
||||
# success, all done
|
||||
diff -Naurp pcp-5.3.7.orig/qa/1727 pcp-5.3.7/qa/1727
|
||||
--- pcp-5.3.7.orig/qa/1727 2021-09-23 14:19:12.000000000 +1000
|
||||
+++ pcp-5.3.7/qa/1727 2023-03-09 11:49:42.382414004 +1100
|
||||
@@ -2,6 +2,7 @@
|
||||
# PCP QA Test No. 1727
|
||||
# Test duplicate instname labels in /metrics webapi when a context
|
||||
# level label such as "hostname" is explicitly specified.
|
||||
+# Test invalid OpenMetrics metric names also.
|
||||
#
|
||||
# Copyright (c) 2021 Red Hat. All Rights Reserved.
|
||||
#
|
||||
@@ -54,8 +55,17 @@ echo '# TYPE somemetric gauge'
|
||||
echo 'somemetric{hostname="$MYHOST"} 1234'
|
||||
EOF
|
||||
|
||||
-chmod 755 $tmp.script
|
||||
+cat <<EOF >$tmp.badxml
|
||||
+#! /bin/bash
|
||||
+
|
||||
+cat $here/sadist/891688-dash-time.xml
|
||||
+echo '# TYPE somemetric gauge'
|
||||
+echo 'somemetric{hostname="$MYHOST"} 1234'
|
||||
+EOF
|
||||
+
|
||||
+chmod 755 $tmp.script $tmp.badxml
|
||||
$sudo mv $tmp.script $PCP_PMDAS_DIR/openmetrics/config.d/duplicate_instname_label.sh
|
||||
+$sudo mv $tmp.badxml $PCP_PMDAS_DIR/openmetrics/config.d/invalid_metrics_badinput.sh
|
||||
|
||||
_pmdaopenmetrics_install
|
||||
if ! _pmdaopenmetrics_wait_for_metric openmetrics.control.calls
|
||||
@@ -68,6 +78,14 @@ echo; echo === /metrics webapi listing.
|
||||
curl -Gs 'http://localhost:44322/metrics?names=openmetrics.duplicate_instname_label.somemetric' \
|
||||
| _filter_openmetrics_labels
|
||||
|
||||
+echo; echo === verify metric name validity using pminfo
|
||||
+pminfo -v openmetrics
|
||||
+
|
||||
+# squash errors for a clean uninstall
|
||||
+$sudo rm $PCP_PMDAS_DIR/openmetrics/config.d/invalid_metrics_badinput.sh
|
||||
+# capture openmetrics log for posterity
|
||||
+cat $PCP_LOG_DIR/pmcd/openmetrics.log >> $here/$seq.full
|
||||
+
|
||||
_pmdaopenmetrics_remove
|
||||
|
||||
# success, all done
|
||||
diff -Naurp pcp-5.3.7.orig/qa/1727.out pcp-5.3.7/qa/1727.out
|
||||
--- pcp-5.3.7.orig/qa/1727.out 2021-09-13 14:40:08.000000000 +1000
|
||||
+++ pcp-5.3.7/qa/1727.out 2023-03-09 11:49:42.382414004 +1100
|
||||
@@ -8,6 +8,8 @@ QA output created by 1727
|
||||
# TYPE openmetrics_duplicate_instname_label_somemetric gauge
|
||||
openmetrics_duplicate_instname_label_somemetric{hostname=HOSTNAME,instid="0",instname="0 hostname:HOSTNAME",domainname=DOMAINNAME,machineid=MACHINEID,source="duplicate_instname_label"} 1234
|
||||
|
||||
+=== verify metric name validity using pminfo
|
||||
+
|
||||
=== remove openmetrics agent ===
|
||||
Culling the Performance Metrics Name Space ...
|
||||
openmetrics ... done
|
||||
diff -Naurp pcp-5.3.7.orig/qa/openmetrics/samples/vmware_exporter.txt pcp-5.3.7/qa/openmetrics/samples/vmware_exporter.txt
|
||||
--- pcp-5.3.7.orig/qa/openmetrics/samples/vmware_exporter.txt 2021-11-01 13:02:26.000000000 +1100
|
||||
+++ pcp-5.3.7/qa/openmetrics/samples/vmware_exporter.txt 2023-03-09 11:49:42.382414004 +1100
|
||||
@@ -1035,25 +1035,6 @@ vmware_host_net_errorsTx_summation{clust
|
||||
# HELP vmware_host_net_usage_average vmware_host_net_usage_average
|
||||
# TYPE vmware_host_net_usage_average gauge
|
||||
vmware_host_net_usage_average{cluster_name="",dc_name="ha-datacenter",host_name="SOMEHOSTNAME"} 3.0
|
||||
-[root@ci-vm-10-0-138-196 ~]# curl -Gs http://localhost:9272/metrics > curl.txt
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]#
|
||||
-[root@ci-vm-10-0-138-196 ~]# cat curl.txt
|
||||
# HELP vmware_vm_power_state VMWare VM Power state (On / Off)
|
||||
# TYPE vmware_vm_power_state gauge
|
||||
vmware_vm_power_state{cluster_name="",dc_name="ha-datacenter",ds_name="name026",host_name="SOMEHOSTNAME",vm_name="name023-sat61-client"} 0.0
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmdas/openmetrics/pmdaopenmetrics.python pcp-5.3.7/src/pmdas/openmetrics/pmdaopenmetrics.python
|
||||
--- pcp-5.3.7.orig/src/pmdas/openmetrics/pmdaopenmetrics.python 2022-04-05 09:05:43.000000000 +1000
|
||||
+++ pcp-5.3.7/src/pmdas/openmetrics/pmdaopenmetrics.python 2023-03-09 11:49:42.382414004 +1100
|
||||
@@ -122,7 +122,7 @@ class Metric(object):
|
||||
# c_units = c_api.pmUnits_int(self.munits.dimSpace, self.munits.dimTime, self.munits.dimCount,
|
||||
# self.munits.scaleSpace, self.munits.scaleTime, self.munits.scaleCount)
|
||||
|
||||
- self.source.pmda.log("Metric: adding new metric %s pmid=%s type=%d sem=%d singular=%s mindom=0x%x labels=%s" %
|
||||
+ self.source.pmda.debug("Metric: adding metric %s pmid=%s type=%d sem=%d singular=%s mindom=0x%x labels=%s" %
|
||||
(name, pmContext.pmIDStr(self.pmid), self.mtype, self.msem, self.singular, self.mindom, self.labels))
|
||||
|
||||
self.obj = pmdaMetric(self.pmid, self.mtype, self.mindom, self.msem, self.munits)
|
||||
@@ -565,6 +565,7 @@ class Source(object):
|
||||
self.cluster = cluster # unique/persistent id# for nickname
|
||||
self.path = path # pathname to .url or executable file
|
||||
self.url = None
|
||||
+ self.parse_error = False
|
||||
self.parse_url_time = 0 # timestamp of config file when it was last parsed
|
||||
self.is_scripted = is_scripted
|
||||
self.pmda = thispmda # the shared pmda
|
||||
@@ -659,6 +660,19 @@ class Source(object):
|
||||
self.pmda.log("instname_labels returning %s" % naming_labels) if self.pmda.dbg else None
|
||||
return naming_labels
|
||||
|
||||
+ def valid_metric_name(self, name):
|
||||
+ '''
|
||||
+ Check validity of given metric name component:
|
||||
+ - only contains alphanumerics and/or underscores
|
||||
+ (colon removed later, allowed through here);
|
||||
+ - only starts with an alphabetic character.
|
||||
+ '''
|
||||
+ if not name[0].isalpha():
|
||||
+ return False
|
||||
+ if not re.sub('[_.:]', '', name).isalnum():
|
||||
+ return False
|
||||
+ return True
|
||||
+
|
||||
def parse_metric_line(self, line, pcpline, helpline, typeline):
|
||||
'''
|
||||
Parse the sample line, identify/create corresponding metric & instance.
|
||||
@@ -687,8 +701,10 @@ class Source(object):
|
||||
# Nb: filter pattern is applied only to the leaf component of the full metric name
|
||||
if self.check_filter(sp.name, "METRIC") != "INCLUDE":
|
||||
self.pmda.log("Metric %s excluded by config filters" % fullname)
|
||||
- return
|
||||
+ return True
|
||||
else:
|
||||
+ if not self.valid_metric_name(sp.name):
|
||||
+ raise ValueError('invalid metric name: ' + sp.name)
|
||||
# new metric
|
||||
metricnum = self.pmids_table.intern_lookup_value(sp.name)
|
||||
# check if the config specifies metadata for this metric
|
||||
@@ -708,24 +724,32 @@ class Source(object):
|
||||
else:
|
||||
m.store_inst(naming_labels, sp.value)
|
||||
self.pmda.set_notify_change()
|
||||
+ except ValueError as e:
|
||||
+ if not self.parse_error:
|
||||
+ self.pmda.err("cannot parse name in %s: %s" % (line, e))
|
||||
+ self.parse_error = True # one-time-only error diagnostic
|
||||
+ return False
|
||||
except Exception as e:
|
||||
+ if self.pmda.dbg:
|
||||
+ traceback.print_exc() # traceback can be handy here
|
||||
self.pmda.err("cannot parse/store %s: %s" % (line, e))
|
||||
- traceback.print_exc() # traceback can be handy here
|
||||
-
|
||||
+ return False
|
||||
+ return True
|
||||
|
||||
def parse_lines(self, text):
|
||||
- '''Refresh all the metric metadata as it is found, including creating
|
||||
- new metrics. Store away metric values for subsequent
|
||||
- fetch()es. Parse errors may result in exceptions.
|
||||
- That's OK, we don't try heroics to parse non-compliant
|
||||
- data. Return number of metrics extracted.
|
||||
'''
|
||||
-
|
||||
+ Refresh all the metric metadata as it is found, including creating
|
||||
+ new metrics. Store away metric values for subsequent fetch()es.
|
||||
+ Input parse errors result in exceptions and early termination.
|
||||
+ That's OK, we don't try heroics to parse non-compliant data.
|
||||
+ Return number of metrics extracted.
|
||||
+ '''
|
||||
num_metrics = 0
|
||||
lines = text.splitlines()
|
||||
pcpline = None
|
||||
helpline = None
|
||||
typeline = None
|
||||
+ badness = False
|
||||
state = "metadata"
|
||||
for line in lines:
|
||||
self.pmda.debug("line: %s state: %s" % (line, state)) if self.pmda.dbg else None
|
||||
@@ -762,9 +786,15 @@ class Source(object):
|
||||
# NB: could verify helpline/typeline lp[2] matches,
|
||||
# but we don't have to go out of our way to support
|
||||
# non-compliant exporters.
|
||||
- self.parse_metric_line(l, pcpline, helpline, typeline)
|
||||
+ if not self.parse_metric_line(l, pcpline, helpline, typeline):
|
||||
+ badness = True
|
||||
+ break # bad metric line, skip the remainder of this file
|
||||
num_metrics += 1
|
||||
|
||||
+ # clear one-time-only error diagnostic if the situation is now resolved
|
||||
+ if not badness:
|
||||
+ self.parse_error = False
|
||||
+
|
||||
# NB: this logic only ever -adds- Metrics to a Source. If a source
|
||||
# stops supplying some metrics, then a PCP app will see a PM_ERR_INST
|
||||
# coming back when it tries to fetch them. We could perhaps keep the
|
||||
@@ -842,7 +872,7 @@ class Source(object):
|
||||
metadata = line.split(' ')[1:]
|
||||
self.metadatalist.append(metadata)
|
||||
else:
|
||||
- self.pmda.log('Warning: %s ignored unrecognised config entry "%s"' % (self.url, line))
|
||||
+ self.pmda.err('%s ignored unrecognised config entry "%s"' % (self.url, line))
|
||||
|
||||
self.pmda.debug("DEBUG url: %s HEADERS: %s" % (self.url, self.headers)) if self.pmda.dbg else None
|
||||
self.pmda.debug("DEBUG url: %s FILTERS: %s" % (self.url, self.filterlist)) if self.pmda.dbg else None
|
||||
@@ -911,8 +941,7 @@ class Source(object):
|
||||
except Exception as e:
|
||||
self.pmda.stats_status[self.cluster] = 'failed to fetch URL or execute script %s: %s' % (self.path, e)
|
||||
self.pmda.stats_status_code[self.cluster] = status_code
|
||||
- self.pmda.debug('Warning: cannot fetch URL or execute script %s: %s' % (self.path, e)) if self.pmda.dbg else None
|
||||
- return
|
||||
+ self.pmda.debug('cannot fetch URL or execute script %s: %s' % (self.path, e))
|
||||
|
||||
def refresh2(self, timeout):
|
||||
'''
|
||||
@@ -950,7 +979,7 @@ class Source(object):
|
||||
self.pmda.log("fetch: item=%d inst=%d m.mname=%s" % (item, inst, m.mname)) if self.pmda.dbg else None
|
||||
return m.fetch_inst(inst)
|
||||
except Exception as e:
|
||||
- self.pmda.log("Warning: cannot fetch item %d inst %d: %s" % (item, inst, e))
|
||||
+ self.pmda.debug("cannot fetch item %d inst %d: %s" % (item, inst, e))
|
||||
return [c_api.PM_ERR_AGAIN, 0]
|
||||
|
||||
class OpenMetricsPMDA(PMDA):
|
||||
@@ -1468,7 +1497,7 @@ class OpenMetricsPMDA(PMDA):
|
||||
|
||||
def debug(self, s):
|
||||
if self.dbg:
|
||||
- super(OpenMetricsPMDA, self).log("debug: " + s)
|
||||
+ super(OpenMetricsPMDA, self).dbg(s)
|
||||
|
||||
def log(self, message):
|
||||
PMDA.log(message)
|
||||
@@ -1526,8 +1555,9 @@ if __name__ == '__main__':
|
||||
if args.nosort:
|
||||
sort_conf_list = False
|
||||
|
||||
- pmdadir = os.path.join(os.getenv('PCP_PMDAS_DIR'), args.root)
|
||||
if not args.config.startswith("/"):
|
||||
+ pmdadir = os.getenv('PCP_PMDAS_DIR') or '/'
|
||||
+ pmdadir = os.path.join(pmdadir, args.root)
|
||||
args.config = os.path.join(pmdadir, args.config)
|
||||
|
||||
# This PMDA starts up in the "notready" state, see the Install script where
|
@ -1,706 +0,0 @@
|
||||
commit f4e34cd32bc73b53c2fc94c8deb670044d9d18d6
|
||||
Author: Nathan Scott <nathans@redhat.com>
|
||||
Date: Wed Dec 7 12:17:19 2022 +1100
|
||||
|
||||
pmdanfsclient: fix srcport handling for rdma and udp mounts
|
||||
|
||||
This bug fix kindly brought to you by the good folk at Penn State Uni.
|
||||
Regression test update by myself but the real fix came from others.
|
||||
|
||||
Resolves Red Hat BZ #2150889
|
||||
|
||||
diff --git a/qa/798.out.32 b/qa/798.out.32
|
||||
index 8db1b9896..854d667a2 100644
|
||||
--- a/qa/798.out.32
|
||||
+++ b/qa/798.out.32
|
||||
@@ -165,6 +165,110 @@ pmInDom: 62.0
|
||||
dbpmda>
|
||||
Log for pmdanfsclient on HOST ...
|
||||
Log finished ...
|
||||
+=== Test case: mountstats-el8.7-rdma.qa
|
||||
+dbpmda> open pipe $PYTHON pmdanfsclient.python
|
||||
+Start $PYTHON PMDA: $PYTHON pmdanfsclient.python
|
||||
+dbpmda> # on some platforms this may take a while ...
|
||||
+dbpmda> wait 2
|
||||
+dbpmda> getdesc on
|
||||
+dbpmda> desc nfsclient.export
|
||||
+PMID: 62.0.1
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> desc nfsclient.mountpoint
|
||||
+PMID: 62.0.2
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> desc nfsclient.options.string
|
||||
+PMID: 62.1.1
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> desc nfsclient.options.proto
|
||||
+PMID: 62.1.24
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> desc nfsclient.options.vers
|
||||
+PMID: 62.1.6
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> fetch nfsclient.export
|
||||
+PMID(s): 62.0.1
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.0.1 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "example.com:/group"
|
||||
+ inst [N or ???] value "example.com:/home"
|
||||
+ inst [N or ???] value "example.com:/icds"
|
||||
+ inst [N or ???] value "example.com:/icds-pcp-data"
|
||||
+ inst [N or ???] value "example.com:/icds-prod"
|
||||
+ inst [N or ???] value "example.com:/icds-test"
|
||||
+ inst [N or ???] value "example.com:/work"
|
||||
+dbpmda> fetch nfsclient.mountpoint
|
||||
+PMID(s): 62.0.2
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.0.2 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "/storage/group"
|
||||
+ inst [N or ???] value "/storage/home"
|
||||
+ inst [N or ???] value "/storage/icds"
|
||||
+ inst [N or ???] value "/storage/pcp-data"
|
||||
+ inst [N or ???] value "/storage/prod"
|
||||
+ inst [N or ???] value "/storage/test"
|
||||
+ inst [N or ???] value "/storage/work"
|
||||
+dbpmda> fetch nfsclient.options.string
|
||||
+PMID(s): 62.1.1
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.1.1 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.1,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.18,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.23,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.27,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.29,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.6,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.7,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+dbpmda> fetch nfsclient.options.proto
|
||||
+PMID(s): 62.1.24
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.1.24 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+dbpmda> fetch nfsclient.options.vers
|
||||
+PMID(s): 62.1.6
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.1.6 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+dbpmda> fetch nfsclient.options.vers
|
||||
+PMID(s): 62.1.6
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.1.6 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+dbpmda> instance 62.0
|
||||
+pmInDom: 62.0
|
||||
+[ X] inst: X name: "/storage/group"
|
||||
+[X+1] inst: X+1 name: "/storage/home"
|
||||
+[X+2] inst: X+2 name: "/storage/icds"
|
||||
+[X+3] inst: X+3 name: "/storage/pcp-data"
|
||||
+[X+4] inst: X+4 name: "/storage/prod"
|
||||
+[X+5] inst: X+5 name: "/storage/test"
|
||||
+[X+6] inst: X+6 name: "/storage/work"
|
||||
+dbpmda>
|
||||
+Log for pmdanfsclient on HOST ...
|
||||
+Log finished ...
|
||||
=== Test case: mountstats.qa
|
||||
dbpmda> open pipe $PYTHON pmdanfsclient.python
|
||||
Start $PYTHON PMDA: $PYTHON pmdanfsclient.python
|
||||
diff --git a/qa/798.out.64 b/qa/798.out.64
|
||||
index 6b6a4b73c..860fa582e 100644
|
||||
--- a/qa/798.out.64
|
||||
+++ b/qa/798.out.64
|
||||
@@ -165,6 +165,110 @@ pmInDom: 62.0
|
||||
dbpmda>
|
||||
Log for pmdanfsclient on HOST ...
|
||||
Log finished ...
|
||||
+=== Test case: mountstats-el8.7-rdma.qa
|
||||
+dbpmda> open pipe $PYTHON pmdanfsclient.python
|
||||
+Start $PYTHON PMDA: $PYTHON pmdanfsclient.python
|
||||
+dbpmda> # on some platforms this may take a while ...
|
||||
+dbpmda> wait 2
|
||||
+dbpmda> getdesc on
|
||||
+dbpmda> desc nfsclient.export
|
||||
+PMID: 62.0.1
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> desc nfsclient.mountpoint
|
||||
+PMID: 62.0.2
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> desc nfsclient.options.string
|
||||
+PMID: 62.1.1
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> desc nfsclient.options.proto
|
||||
+PMID: 62.1.24
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> desc nfsclient.options.vers
|
||||
+PMID: 62.1.6
|
||||
+ Data Type: string InDom: 62.0 0xf800000
|
||||
+ Semantics: instant Units: none
|
||||
+dbpmda> fetch nfsclient.export
|
||||
+PMID(s): 62.0.1
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.0.1 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "example.com:/group"
|
||||
+ inst [N or ???] value "example.com:/home"
|
||||
+ inst [N or ???] value "example.com:/icds"
|
||||
+ inst [N or ???] value "example.com:/icds-pcp-data"
|
||||
+ inst [N or ???] value "example.com:/icds-prod"
|
||||
+ inst [N or ???] value "example.com:/icds-test"
|
||||
+ inst [N or ???] value "example.com:/work"
|
||||
+dbpmda> fetch nfsclient.mountpoint
|
||||
+PMID(s): 62.0.2
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.0.2 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "/storage/group"
|
||||
+ inst [N or ???] value "/storage/home"
|
||||
+ inst [N or ???] value "/storage/icds"
|
||||
+ inst [N or ???] value "/storage/pcp-data"
|
||||
+ inst [N or ???] value "/storage/prod"
|
||||
+ inst [N or ???] value "/storage/test"
|
||||
+ inst [N or ???] value "/storage/work"
|
||||
+dbpmda> fetch nfsclient.options.string
|
||||
+PMID(s): 62.1.1
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.1.1 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.1,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.18,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.23,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.27,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.29,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.6,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+ inst [N or ???] value "rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.7,mountvers=3,mountport=0,mountproto=tcp,local_lock=all"
|
||||
+dbpmda> fetch nfsclient.options.proto
|
||||
+PMID(s): 62.1.24
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.1.24 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+ inst [N or ???] value "rdma"
|
||||
+dbpmda> fetch nfsclient.options.vers
|
||||
+PMID(s): 62.1.6
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.1.6 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+dbpmda> fetch nfsclient.options.vers
|
||||
+PMID(s): 62.1.6
|
||||
+__pmResult ... numpmid: 1
|
||||
+ 62.1.6 (<noname>): numval: 7 valfmt: 1 vlist[]:
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+ inst [N or ???] value "3"
|
||||
+dbpmda> instance 62.0
|
||||
+pmInDom: 62.0
|
||||
+[ X] inst: X name: "/storage/group"
|
||||
+[X+1] inst: X+1 name: "/storage/home"
|
||||
+[X+2] inst: X+2 name: "/storage/icds"
|
||||
+[X+3] inst: X+3 name: "/storage/pcp-data"
|
||||
+[X+4] inst: X+4 name: "/storage/prod"
|
||||
+[X+5] inst: X+5 name: "/storage/test"
|
||||
+[X+6] inst: X+6 name: "/storage/work"
|
||||
+dbpmda>
|
||||
+Log for pmdanfsclient on HOST ...
|
||||
+Log finished ...
|
||||
=== Test case: mountstats.qa
|
||||
dbpmda> open pipe $PYTHON pmdanfsclient.python
|
||||
Start $PYTHON PMDA: $PYTHON pmdanfsclient.python
|
||||
diff --git a/qa/nfsclient/mountstats-el8.7-rdma.qa b/qa/nfsclient/mountstats-el8.7-rdma.qa
|
||||
new file mode 100644
|
||||
index 000000000..98dd836a1
|
||||
--- /dev/null
|
||||
+++ b/qa/nfsclient/mountstats-el8.7-rdma.qa
|
||||
@@ -0,0 +1,437 @@
|
||||
+device proc mounted on /proc with fstype proc
|
||||
+device devtmpfs mounted on /dev with fstype devtmpfs
|
||||
+device securityfs mounted on /sys/kernel/security with fstype securityfs
|
||||
+device tmpfs mounted on /dev/shm with fstype tmpfs
|
||||
+device devpts mounted on /dev/pts with fstype devpts
|
||||
+device tmpfs mounted on /run with fstype tmpfs
|
||||
+device tmpfs mounted on /sys/fs/cgroup with fstype tmpfs
|
||||
+device cgroup mounted on /sys/fs/cgroup/systemd with fstype cgroup
|
||||
+device pstore mounted on /sys/fs/pstore with fstype pstore
|
||||
+device efivarfs mounted on /sys/firmware/efi/efivars with fstype efivarfs
|
||||
+device bpf mounted on /sys/fs/bpf with fstype bpf
|
||||
+device cgroup mounted on /sys/fs/cgroup/hugetlb with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/cpu,cpuacct with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/memory with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/freezer with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/devices with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/net_cls,net_prio with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/perf_event with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/rdma with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/cpuset with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/pids with fstype cgroup
|
||||
+device cgroup mounted on /sys/fs/cgroup/blkio with fstype cgroup
|
||||
+device configfs mounted on /sys/kernel/config with fstype configfs
|
||||
+device rootfs mounted on / with fstype tmpfs
|
||||
+device rw mounted on /.sllocal/log with fstype tmpfs
|
||||
+device rpc_pipefs mounted on /var/lib/nfs/rpc_pipefs with fstype rpc_pipefs
|
||||
+device hugetlbfs mounted on /dev/hugepages with fstype hugetlbfs
|
||||
+device debugfs mounted on /sys/kernel/debug with fstype debugfs
|
||||
+device mqueue mounted on /dev/mqueue with fstype mqueue
|
||||
+device systemd-1 mounted on /proc/sys/fs/binfmt_misc with fstype autofs
|
||||
+device binfmt_misc mounted on /proc/sys/fs/binfmt_misc with fstype binfmt_misc
|
||||
+device fusectl mounted on /sys/fs/fuse/connections with fstype fusectl
|
||||
+device /dev/sda3 mounted on /tmp with fstype xfs
|
||||
+device /dev/sda1 mounted on /var/log with fstype xfs
|
||||
+device /dev/sda2 mounted on /var/tmp with fstype xfs
|
||||
+device tracefs mounted on /sys/kernel/debug/tracing with fstype tracefs
|
||||
+device example.com:/icds-prod mounted on /storage/prod with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.30,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 3 36 0 0 3 8 44 0 0 3 0 0 0 0 3 0 0 3 0 0 0 0 0 0 0 0 0
|
||||
+ bytes: 5086 0 0 0 5086 0 4 0
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 1 0 0 5 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 3 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 3 3 0 3 0 0 0 0 0 0 0 268 0 0 0 0 0 0 11 0 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 3 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 3 3 0 3 0 0 0 1 4220 0 0 28 0 0 0 0 0 0 11 1 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 3 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 3 3 0 3 0 0 1 0 4746 4746 0 72 0 0 0 0 0 0 11 1 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 3 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 18 0 19 0
|
||||
+ GETATTR: 3 3 0 276 336 0 0 0 0
|
||||
+ SETATTR: 0 0 0 0 0 0 0 0 0
|
||||
+ LOOKUP: 8 8 0 852 1600 16 1 17 1
|
||||
+ ACCESS: 7 7 0 672 840 10 1 11 0
|
||||
+ READLINK: 1 1 0 92 148 5 0 5 0
|
||||
+ READ: 3 3 0 312 5472 0 1 1 0
|
||||
+ WRITE: 0 0 0 0 0 0 0 0 0
|
||||
+ CREATE: 0 0 0 0 0 0 0 0 0
|
||||
+ MKDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ SYMLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 0 0 0 0 0 0 0 0 0
|
||||
+ RMDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ RENAME: 0 0 0 0 0 0 0 0 0
|
||||
+ LINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIRPLUS: 0 0 0 0 0 0 0 0 0
|
||||
+ FSSTAT: 0 0 0 0 0 0 0 0 0
|
||||
+ FSINFO: 2 2 0 184 328 6 0 6 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/icds-test mounted on /storage/test with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.24,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ bytes: 0 0 0 0 0 0 0 0
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 1 0 0 3 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0
|
||||
+ xprt: rdma 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ xprt: rdma 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ xprt: rdma 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ xprt: rdma 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ xprt: rdma 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ xprt: rdma 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 6 0 6 0
|
||||
+ GETATTR: 0 0 0 0 0 0 0 0 0
|
||||
+ SETATTR: 0 0 0 0 0 0 0 0 0
|
||||
+ LOOKUP: 0 0 0 0 0 0 0 0 0
|
||||
+ ACCESS: 0 0 0 0 0 0 0 0 0
|
||||
+ READLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READ: 0 0 0 0 0 0 0 0 0
|
||||
+ WRITE: 0 0 0 0 0 0 0 0 0
|
||||
+ CREATE: 0 0 0 0 0 0 0 0 0
|
||||
+ MKDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ SYMLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 0 0 0 0 0 0 0 0 0
|
||||
+ RMDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ RENAME: 0 0 0 0 0 0 0 0 0
|
||||
+ LINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIRPLUS: 0 0 0 0 0 0 0 0 0
|
||||
+ FSSTAT: 0 0 0 0 0 0 0 0 0
|
||||
+ FSINFO: 2 2 0 184 328 6 0 6 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/icds mounted on /storage/icds with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.25,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 2 191 0 0 3 13 207 0 0 30 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ bytes: 2452 0 0 0 2555904 0 624 0
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 1 0 0 12 12 0 12 0 0 6 0 352256 352256 0 0 0 0 0 0 0 0 11 6 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 10 10 0 10 0 0 5 0 184320 184320 0 0 0 0 0 0 0 0 11 5 0 0
|
||||
+ xprt: rdma 0 0 2 0 0 10 10 0 10 0 0 4 0 225280 225280 0 0 0 0 0 0 0 0 22 4 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 9 9 0 9 0 0 6 0 294912 294912 0 0 0 0 0 0 0 0 11 6 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 9 9 0 9 0 0 7 0 339968 339968 0 0 0 0 0 0 0 0 11 7 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 9 9 0 9 0 0 7 0 352256 352256 0 0 0 0 0 0 0 0 11 7 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 9 9 0 9 0 0 7 0 405504 405504 0 0 0 0 0 0 0 0 11 7 0 0
|
||||
+ xprt: rdma 0 0 1 0 0 9 9 0 9 0 0 7 0 401408 401408 0 0 0 0 0 0 0 0 11 7 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 5 0 5 0
|
||||
+ GETATTR: 2 2 0 188 224 11 0 11 0
|
||||
+ SETATTR: 0 0 0 0 0 0 0 0 0
|
||||
+ LOOKUP: 13 13 0 1364 1952 15 3 19 5
|
||||
+ ACCESS: 9 9 0 864 1080 16 1 18 0
|
||||
+ READLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READ: 49 49 0 5096 2562176 0 15 17 0
|
||||
+ WRITE: 0 0 0 0 0 0 0 0 0
|
||||
+ CREATE: 0 0 0 0 0 0 0 0 0
|
||||
+ MKDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ SYMLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 0 0 0 0 0 0 0 0 0
|
||||
+ RMDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ RENAME: 0 0 0 0 0 0 0 0 0
|
||||
+ LINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIRPLUS: 0 0 0 0 0 0 0 0 0
|
||||
+ FSSTAT: 0 0 0 0 0 0 0 0 0
|
||||
+ FSINFO: 2 2 0 184 328 5 0 5 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/group mounted on /storage/group with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.1,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 359470 11669975 26864 99083 237241 104622 12074173 76552450 12372 24061401 0 184482 64402 15675 250513 4475 60207 205420 0 13655 41997395 0 0 0 0 0 0
|
||||
+ bytes: 5990252963873 271047280191 0 0 1730835995062 212213971093 422603768 51862807
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 111 1 28 5001450 5001450 0 16468960 244630485 411153 4499604 2419 216488884485 216363618297 705084 2119278 0 610 0 0 0 0 4422 4913176 0 0
|
||||
+ xprt: rdma 0 0 110 1 28 5000369 5000369 0 16473884 244723520 411409 4497949 2419 216448785625 216324215309 744372 2220863 0 584 0 0 0 0 4466 4911777 0 0
|
||||
+ xprt: rdma 0 0 110 1 12 5001230 5001230 0 16466569 244632808 411122 4499109 2294 216463811427 216346453699 725596 2162884 0 656 0 0 0 0 4642 4912525 0 0
|
||||
+ xprt: rdma 0 0 114 1 12 5000643 5000643 0 16476687 244518169 411370 4498397 2400 216437529332 216314007816 754588 2166359 0 638 0 0 0 0 4675 4912167 0 0
|
||||
+ xprt: rdma 0 0 113 0 12 5001675 5001675 0 16476119 244839819 411304 4499163 2420 216552802382 216427322070 674092 2054877 0 666 0 0 0 0 4796 4912887 0 0
|
||||
+ xprt: rdma 0 0 112 1 62 5001928 5001928 0 16478906 244718584 411345 4499807 2449 216598144747 216470930799 709516 2049733 0 629 0 0 0 0 4664 4913601 0 0
|
||||
+ xprt: rdma 0 0 108 0 62 5000620 5000620 0 16457063 244260204 411118 4498680 2347 216410122025 216289485037 742848 2157015 0 618 0 0 0 0 4488 4912145 0 0
|
||||
+ xprt: rdma 0 0 105 0 62 5001170 5001170 0 16465684 244462170 411102 4499474 2363 216499718003 216377867059 774804 2218299 0 664 0 0 0 0 4532 4912939 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 6 0 6 0
|
||||
+ GETATTR: 359470 359470 0 37679148 40260640 6615 68172 77464 0
|
||||
+ SETATTR: 21554 21554 0 3038404 775944 123 18549 18914 0
|
||||
+ LOOKUP: 116511 116511 0 14261900 8782176 956 41688 44033 90189
|
||||
+ ACCESS: 64375 64375 0 7046576 7725000 886 14014 15459 0
|
||||
+ READLINK: 736 736 0 79416 104332 2 249 269 0
|
||||
+ READ: 36019499 36019499 0 4279070464 1735446589952 406570 26116356 27160896 0
|
||||
+ WRITE: 3304938 3304938 0 212624926960 528790080 1195907908 50317800 1246575394 0
|
||||
+ CREATE: 77879 77879 0 11891764 19937024 494 299155 303286 0
|
||||
+ MKDIR: 2201 2201 0 325500 545856 26 7601 7669 80
|
||||
+ SYMLINK: 4 4 0 768 1024 0 13 13 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 15039 15039 0 1895992 541404 46 25825 26057 0
|
||||
+ RMDIR: 1859 1859 0 223452 66924 4 3096 3127 3
|
||||
+ RENAME: 6525 6525 0 1219928 287100 79 13674 13918 0
|
||||
+ LINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIR: 5842 5842 0 747112 19898184 14 7271 7470 0
|
||||
+ READDIRPLUS: 9028 9028 0 1164116 74659892 169 17053 17575 0
|
||||
+ FSSTAT: 113 113 0 11856 18984 34 126 162 0
|
||||
+ FSINFO: 2 2 0 184 328 6 0 6 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/home mounted on /storage/home with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.7,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 1431711 44943044 116357 137881 1036341 97602 45725153 741968 1060 314347 7 82823 747343 132339 751136 4247 9781 660494 0 1621 659329 139 0 0 0 0 0
|
||||
+ bytes: 31191656856 2345480650 0 0 13941630626 2386575218 3519989 615297
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 299 2 19 314383 314383 0 360317 2824 6031 38731 7094 2143783391 1741491091 2076748 3911658 0 48 0 0 0 0 3652 51856 0 0
|
||||
+ xprt: rdma 0 0 306 2 19 314284 314284 0 359761 3339 6178 38680 7086 2138653820 1737586668 2122588 3993750 0 53 0 0 0 0 3729 51944 0 0
|
||||
+ xprt: rdma 0 0 305 2 19 314534 314534 0 360342 3020 6127 39049 7491 2177604450 1749298514 2178016 4057012 0 51 0 0 0 0 3718 52667 0 0
|
||||
+ xprt: rdma 0 0 304 2 19 314570 314568 2 687294 2628 6152 38977 6977 2151798321 1756744897 2311096 3945741 0 45 0 0 0 0 3707 52106 0 0
|
||||
+ xprt: rdma 0 0 301 3 19 314546 314545 1 495960 2588 6045 38911 7196 2164869636 1756151804 1995156 3909706 0 48 0 0 0 0 3674 52152 0 0
|
||||
+ xprt: rdma 0 0 300 2 19 314597 314597 0 361338 2792 6190 39020 6968 2150734096 1755759176 2129072 3997461 0 47 0 0 0 0 3663 52178 0 0
|
||||
+ xprt: rdma 0 0 300 2 19 314532 314532 0 360982 2603 6177 38991 7215 2162670305 1752241557 2106240 4097289 0 45 0 0 0 0 3663 52383 0 0
|
||||
+ xprt: rdma 0 0 299 2 19 314696 314696 0 360978 2938 6117 38938 7297 2164527924 1748297356 2332620 3915498 0 51 0 0 0 0 3652 52352 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 5 0 5 0
|
||||
+ GETATTR: 1431711 1431711 0 152340376 160351352 23887 262978 318138 5
|
||||
+ SETATTR: 134526 134526 0 20992092 4842936 592 62889 65101 0
|
||||
+ LOOKUP: 105669 105669 0 13828636 11957600 1842 36086 41336 61002
|
||||
+ ACCESS: 228039 228039 0 26382944 27364652 2814 47214 53250 7
|
||||
+ READLINK: 1627 1627 0 170916 228932 15 337 391 0
|
||||
+ READ: 420683 420683 0 50800636 13995575392 7785 255480 270435 0
|
||||
+ WRITE: 87100 87100 0 2397805952 13936000 172750 365004 540345 0
|
||||
+ CREATE: 29307 29307 0 4889564 7501712 111 49570 50330 4
|
||||
+ MKDIR: 7156 7156 0 1067212 1800036 15 11511 11613 145
|
||||
+ SYMLINK: 446 446 0 82020 113516 1 682 688 3
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 5852 5852 0 836620 210672 17 13008 13133 0
|
||||
+ RMDIR: 2417 2417 0 277660 87012 5 3319 3357 54
|
||||
+ RENAME: 2882 2882 0 542372 126808 62 26287 26407 0
|
||||
+ LINK: 212 212 0 32072 26288 0 420 425 0
|
||||
+ READDIR: 26 26 0 3348 156548 0 81 82 0
|
||||
+ READDIRPLUS: 46977 46977 0 6063288 86387612 202 55663 58039 0
|
||||
+ FSSTAT: 2784 2784 0 291028 467712 28 3651 4047 0
|
||||
+ FSINFO: 2 2 0 184 328 5 0 5 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/icds mounted on /storage/icds with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.23,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 1504197 4360204878 3573 11827 998351 46870 4361262723 0 13 86345 0 0 412964 0 810302 0 0 787954 0 0 0 0 0 0 0 0 0
|
||||
+ bytes: 2473882007460 0 0 0 3117996888 0 781324 0
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 9 0 15 218040 218040 0 220710 0 0 10661 757 426647800 380864004 0 2882858 0 0 0 0 0 0 99 11418 0 0
|
||||
+ xprt: rdma 0 0 11 0 20 217911 217911 0 220214 0 0 10742 764 434579499 388755611 0 2968495 0 0 0 0 0 0 121 11506 0 0
|
||||
+ xprt: rdma 0 0 11 0 20 218423 218423 0 220758 0 0 10858 830 439053205 388939529 0 2997186 0 0 0 0 0 0 121 11688 0 0
|
||||
+ xprt: rdma 0 0 10 0 20 217656 217656 0 220142 0 0 10798 776 439744412 392148264 0 2965342 0 0 0 0 0 0 110 11574 0 0
|
||||
+ xprt: rdma 0 0 10 0 20 218280 218280 0 220648 0 0 10783 764 433088272 387536212 0 2916853 0 0 0 0 0 0 110 11547 0 0
|
||||
+ xprt: rdma 0 0 10 0 15 217897 217897 0 220528 0 0 10800 744 432500217 387918105 0 3035589 0 0 0 0 0 0 110 11544 0 0
|
||||
+ xprt: rdma 0 0 9 0 15 218233 218233 0 220901 0 0 10876 786 437891918 390297186 0 2843850 0 0 0 0 0 0 99 11662 0 0
|
||||
+ xprt: rdma 0 0 9 0 15 218287 218287 0 221066 0 0 10817 799 438124667 390593603 0 2900001 0 0 0 0 0 0 99 11616 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 5 0 5 0
|
||||
+ GETATTR: 1504197 1504197 0 159348668 168470064 5823 250532 346757 0
|
||||
+ SETATTR: 0 0 0 0 0 0 0 0 0
|
||||
+ LOOKUP: 47852 47852 0 6159548 5950144 134 18038 23896 24837
|
||||
+ ACCESS: 79076 79076 0 8750456 9487564 188 14705 18515 389
|
||||
+ READLINK: 331 331 0 36048 45912 1 109 121 0
|
||||
+ READ: 106156 106156 0 12595328 3131627640 2442 102180 106716 0
|
||||
+ WRITE: 0 0 0 0 0 0 0 0 0
|
||||
+ CREATE: 972 972 0 159400 34992 4 1815 1875 972
|
||||
+ MKDIR: 130 130 0 18948 4680 0 259 260 130
|
||||
+ SYMLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 0 0 0 0 0 0 0 0 0
|
||||
+ RMDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ RENAME: 0 0 0 0 0 0 0 0 0
|
||||
+ LINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIRPLUS: 5863 5863 0 765784 12555964 21 6882 7339 0
|
||||
+ FSSTAT: 120 120 0 13172 20160 0 86 88 0
|
||||
+ FSINFO: 2 2 0 184 328 5 0 5 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/work mounted on /storage/work with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.18,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 963419 23064824 4957 23437 498893 36863 23579290 20398227 3127 191254 348 187305 207697 6261 405125 1210 0 394647 0 3923 18843784 3 0 0 0 0 0
|
||||
+ bytes: 41568180225 14269941286 0 0 23191576124 14729236454 5668359 3684526
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 111 1 1 231044 231042 2 873131 366580 33899 45806 1273 2967035298 2901558270 7296576 1169614 0 47 0 0 0 0 1529 80978 0 0
|
||||
+ xprt: rdma 0 0 106 0 1 231329 231328 1 717682 361947 33828 45455 1262 2952240311 2887232063 7392372 1221754 0 52 0 0 0 0 1474 80545 0 0
|
||||
+ xprt: rdma 0 0 106 1 6 231078 231078 0 485645 363676 33786 45721 1320 2967925402 2899619554 7176800 1189264 0 48 0 0 0 0 1474 80827 0 0
|
||||
+ xprt: rdma 0 0 109 0 6 231226 231226 0 486538 362707 33929 45482 1274 2956234946 2890484558 7294244 1190630 0 44 0 0 0 0 1507 80685 0 0
|
||||
+ xprt: rdma 0 0 109 0 1 231464 231464 0 486184 367681 33875 45789 1233 2968915191 2906173167 7325356 1151195 0 42 0 0 0 0 1507 80897 0 0
|
||||
+ xprt: rdma 0 0 110 0 1 231566 231566 0 485613 362833 33801 45688 1245 2967609016 2903914028 7186764 1166808 0 43 0 0 0 0 1518 80734 0 0
|
||||
+ xprt: rdma 0 0 107 0 1 231285 231285 0 485205 365643 33905 45719 1299 2968468178 2901567814 7074060 1190420 0 47 0 0 0 0 1485 80923 0 0
|
||||
+ xprt: rdma 0 0 109 1 1 231926 231926 0 487042 369268 33760 45696 1286 2970922269 2904447457 7343684 1204180 0 45 0 0 0 0 1507 80742 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 6 0 6 0
|
||||
+ GETATTR: 963419 963419 0 101370948 107902704 15461 186184 213618 3
|
||||
+ SETATTR: 8104 8104 0 1151604 291744 47 11806 11970 0
|
||||
+ LOOKUP: 42796 42796 0 5399836 4859232 622 14626 15832 24620
|
||||
+ ACCESS: 45471 45471 0 4949688 5456520 1051 8791 10504 1
|
||||
+ READLINK: 14 14 0 1500 1908 0 3 3 0
|
||||
+ READ: 371033 371033 0 43379708 23239084264 2450 276265 283119 0
|
||||
+ WRITE: 390214 390214 0 14779478604 62433744 3531147 2810230 6351526 4
|
||||
+ CREATE: 14579 14579 0 2254256 3731564 70 47115 47475 3
|
||||
+ MKDIR: 2317 2317 0 378616 591172 17 9179 9302 9
|
||||
+ SYMLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 903 903 0 121280 32508 7 1340 1364 0
|
||||
+ RMDIR: 1 1 0 116 36 0 2 2 1
|
||||
+ RENAME: 1691 1691 0 336668 74404 14 2998 3057 0
|
||||
+ LINK: 71 71 0 12064 8804 0 91 92 0
|
||||
+ READDIR: 4 4 0 512 15012 0 27 28 0
|
||||
+ READDIRPLUS: 6573 6573 0 845980 12381640 70 7615 8194 0
|
||||
+ FSSTAT: 49 49 0 5256 8232 56 41 99 0
|
||||
+ FSINFO: 2 2 0 184 328 5 0 6 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/icds-prod mounted on /storage/prod with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.27,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 216327 953839 0 2 94628 41 977594 0 0 32 0 0 7792 0 176250 0 0 90732 0 0 0 0 0 0 0 0 0
|
||||
+ bytes: 900620338 0 0 0 317803 0 96 0
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 1 0 120 27117 27117 0 27120 0 0 3 0 44329 44329 0 0 0 0 0 0 0 0 11 3 0 0
|
||||
+ xprt: rdma 0 0 1 0 120 27117 27117 0 27121 0 0 5 1 110959 82199 0 0 0 0 0 0 0 0 11 6 0 0
|
||||
+ xprt: rdma 0 0 1 0 28 27114 27114 0 27115 0 0 1 0 13215 13215 0 4239 0 0 0 0 0 0 11 1 0 0
|
||||
+ xprt: rdma 0 0 1 0 28 27113 27113 0 27113 0 0 2 0 61752 61752 0 395 0 0 0 0 0 0 11 2 0 0
|
||||
+ xprt: rdma 0 0 1 0 120 27115 27115 0 27118 0 0 2 1 24412 20192 0 3380 0 0 0 0 0 0 11 3 0 0
|
||||
+ xprt: rdma 0 0 1 0 120 27113 27113 0 27114 0 0 4 0 24016 24016 0 1518 0 0 0 0 0 0 11 4 0 0
|
||||
+ xprt: rdma 0 0 1 0 120 27115 27115 0 27119 0 0 3 1 118321 55597 0 518 0 0 0 0 0 0 11 4 0 0
|
||||
+ xprt: rdma 0 0 1 0 120 27113 27113 0 27114 0 0 2 1 75257 10593 0 0 0 0 0 0 0 0 11 3 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 5 0 5 0
|
||||
+ GETATTR: 216327 216327 0 19911140 24228624 790 44005 48809 0
|
||||
+ SETATTR: 0 0 0 0 0 0 0 0 0
|
||||
+ LOOKUP: 45 45 0 5016 7200 16 15 32 15
|
||||
+ ACCESS: 494 494 0 49128 59280 17 148 169 0
|
||||
+ READLINK: 1 1 0 92 148 0 0 0 0
|
||||
+ READ: 32 32 0 3392 321932 1 28 30 0
|
||||
+ WRITE: 0 0 0 0 0 0 0 0 0
|
||||
+ CREATE: 0 0 0 0 0 0 0 0 0
|
||||
+ MKDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ SYMLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 0 0 0 0 0 0 0 0 0
|
||||
+ RMDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ RENAME: 0 0 0 0 0 0 0 0 0
|
||||
+ LINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIRPLUS: 2 2 0 236 3940 0 3 3 0
|
||||
+ FSSTAT: 11 11 0 1136 1848 0 8 8 0
|
||||
+ FSINFO: 2 2 0 184 328 5 0 6 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/icds-test mounted on /storage/test with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.29,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 11 226 0 0 0 6 260 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
+ bytes: 0 0 0 0 0 0 0 0
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 5 0 0 7 7 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 0 0 0
|
||||
+ xprt: rdma 0 0 6 0 0 6 6 0 6 0 0 0 1 28932 172 0 0 0 0 0 0 0 0 66 1 0 0
|
||||
+ xprt: rdma 0 0 5 0 0 5 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 0 0 0
|
||||
+ xprt: rdma 0 0 5 0 0 5 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 0 0 0
|
||||
+ xprt: rdma 0 0 5 0 0 5 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 0 0 0
|
||||
+ xprt: rdma 0 0 4 0 0 4 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0
|
||||
+ xprt: rdma 0 0 4 0 0 4 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0
|
||||
+ xprt: rdma 0 0 4 0 0 4 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 6 0 6 0
|
||||
+ GETATTR: 11 11 0 1156 1232 174 4 178 0
|
||||
+ SETATTR: 0 0 0 0 0 0 0 0 0
|
||||
+ LOOKUP: 6 6 0 740 192 35 2 37 6
|
||||
+ ACCESS: 6 6 0 652 720 99 2 102 0
|
||||
+ READLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READ: 0 0 0 0 0 0 0 0 0
|
||||
+ WRITE: 0 0 0 0 0 0 0 0 0
|
||||
+ CREATE: 0 0 0 0 0 0 0 0 0
|
||||
+ MKDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ SYMLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 0 0 0 0 0 0 0 0 0
|
||||
+ RMDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ RENAME: 0 0 0 0 0 0 0 0 0
|
||||
+ LINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIRPLUS: 0 0 0 0 0 0 0 0 0
|
||||
+ FSSTAT: 12 12 0 1240 2016 109 6 116 0
|
||||
+ FSINFO: 2 2 0 184 328 5 0 6 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device example.com:/icds-pcp-data mounted on /storage/pcp-data with fstype nfs statvers=1.1
|
||||
+ opts: rw,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=rdma,nconnect=8,port=20049,timeo=600,retrans=2,sec=sys,mountaddr=10.6.159.6,mountvers=3,mountport=0,mountproto=tcp,local_lock=all
|
||||
+ age: 1166720
|
||||
+ caps: caps=0x10003fcf,wtmult=4096,dtsize=65536,bsize=0,namlen=255
|
||||
+ sec: flavor=1,pseudoflavor=1
|
||||
+ events: 6699 70747 708 20599 2762 2253 102622 720956 1 5508 0 37492 1710 163 1296 0 0 1194 0 0 720956 0 0 0 0 0 0
|
||||
+ bytes: 1920695637 2068044591 0 0 1319950703 2143394964 322276 542160
|
||||
+ RPC iostats version: 1.1 p/v: 100003/3 (nfs)
|
||||
+ xprt: rdma 0 0 1 0 163 11491 11491 0 11791 0 5235 2523 200 173699455 165053291 995572 0 0 0 0 0 0 0 11 7958 0 0
|
||||
+ xprt: rdma 0 0 1 0 163 11490 11490 0 11783 0 5227 2523 206 174106340 165126008 1038128 0 0 0 0 0 0 0 11 7956 0 0
|
||||
+ xprt: rdma 0 0 1 0 102 11490 11490 0 11795 0 5201 2531 215 174949903 165380715 1042544 0 0 0 0 0 0 0 11 7947 0 0
|
||||
+ xprt: rdma 0 0 1 0 102 11490 11490 0 11803 0 5249 2530 198 173876087 165402039 1006656 2100 0 0 0 0 0 0 11 7977 0 0
|
||||
+ xprt: rdma 0 0 1 0 102 11490 11490 0 11809 0 5227 2522 200 173699084 165094476 1049444 1968 0 0 0 0 0 0 11 7949 0 0
|
||||
+ xprt: rdma 0 0 1 0 43 11490 11490 0 11796 0 5213 2527 208 174387760 165255764 1003696 1736 0 0 0 0 0 0 11 7948 0 0
|
||||
+ xprt: rdma 0 0 1 0 43 11490 11490 0 11812 0 5229 2520 208 174061854 164930038 1022056 0 0 0 0 0 0 0 11 7957 0 0
|
||||
+ xprt: rdma 0 0 1 0 43 11490 11490 0 11797 0 5218 2519 216 174643548 164999120 1041756 0 0 0 0 0 0 0 11 7953 0 0
|
||||
+ per-op statistics
|
||||
+ NULL: 1 1 0 40 24 5 0 5 0
|
||||
+ GETATTR: 6699 6699 0 658876 750288 34 1459 1700 0
|
||||
+ SETATTR: 878 878 0 112776 31608 3 378 409 0
|
||||
+ LOOKUP: 1631 1631 0 188400 64096 16 372 413 1569
|
||||
+ ACCESS: 952 952 0 95396 114240 20 197 241 0
|
||||
+ READLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READ: 20198 20198 0 2204072 1322536072 1049 7547 9069 0
|
||||
+ WRITE: 57666 57666 0 2149857320 9226560 1838 115379 120554 0
|
||||
+ CREATE: 826 826 0 99672 211456 3 1352 1378 0
|
||||
+ MKDIR: 15 15 0 2048 3840 0 32 32 0
|
||||
+ SYMLINK: 0 0 0 0 0 0 0 0 0
|
||||
+ MKNOD: 0 0 0 0 0 0 0 0 0
|
||||
+ REMOVE: 715 715 0 74796 25740 5 967 995 0
|
||||
+ RMDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ RENAME: 2 2 0 304 88 0 3 3 0
|
||||
+ LINK: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIR: 0 0 0 0 0 0 0 0 0
|
||||
+ READDIRPLUS: 700 700 0 84356 1157640 5 532 602 0
|
||||
+ FSSTAT: 684 684 0 65712 114912 8 750 794 0
|
||||
+ FSINFO: 2 2 0 184 328 5 0 5 0
|
||||
+ PATHCONF: 0 0 0 0 0 0 0 0 0
|
||||
+ COMMIT: 0 0 0 0 0 0 0 0 0
|
||||
+
|
||||
+device scratch mounted on /scratch with fstype gpfs
|
||||
diff --git a/src/pmdas/nfsclient/pmdanfsclient.python b/src/pmdas/nfsclient/pmdanfsclient.python
|
||||
index 8e96e9031..786d95845 100644
|
||||
--- a/src/pmdas/nfsclient/pmdanfsclient.python
|
||||
+++ b/src/pmdas/nfsclient/pmdanfsclient.python
|
||||
@@ -585,7 +585,7 @@ class NFSCLIENTPMDA(PMDA):
|
||||
client.xprt.sending_u = self.longs(values[12])
|
||||
client.xprt.pending_u = self.longs(values[13])
|
||||
elif xprt_prot == 'udp':
|
||||
- client.xprt.srcport = values[1]
|
||||
+ client.xprt.srcport = self.chars(values[1])
|
||||
client.xprt.bind_count = self.longs(values[2])
|
||||
client.xprt.sends = self.longs(values[3])
|
||||
client.xprt.recvs = self.longs(values[4])
|
||||
@@ -596,7 +596,7 @@ class NFSCLIENTPMDA(PMDA):
|
||||
client.xprt.sending_u = self.longs(values[9])
|
||||
client.xprt.pending_u = self.longs(values[10])
|
||||
elif xprt_prot == 'rdma':
|
||||
- client.xprt.srcport = values[1]
|
||||
+ client.xprt.srcport = self.chars(values[1])
|
||||
client.xprt.bind_count = self.longs(values[2])
|
||||
client.xprt.connect_count = self.longs(values[3])
|
||||
client.xprt.connect_time = self.longs(values[4])
|
File diff suppressed because it is too large
Load Diff
@ -1,94 +0,0 @@
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmdas/bcc/Upgrade pcp-5.3.7/src/pmdas/bcc/Upgrade
|
||||
--- pcp-5.3.7.orig/src/pmdas/bcc/Upgrade 2021-08-16 14:12:25.000000000 +1000
|
||||
+++ pcp-5.3.7/src/pmdas/bcc/Upgrade 2023-07-10 16:25:31.904767032 +1000
|
||||
@@ -26,8 +26,11 @@ then
|
||||
else
|
||||
sed -i -e "s,^\(bcc.*binary\),\1 notready,g" $PCP_PMCDCONF_PATH
|
||||
fi
|
||||
- sed -i \
|
||||
- -e "s,python $PCP_PMDAS_DIR/bcc/,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/bcc/,g" \
|
||||
- $PCP_PMCDCONF_PATH 2>/dev/null
|
||||
+ if grep -q '^bcc.*python ' "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
+ then
|
||||
+ sed -i \
|
||||
+ -e "s,python $PCP_PMDAS_DIR/bcc/,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/bcc/,g" \
|
||||
+ $PCP_PMCDCONF_PATH 2>/dev/null
|
||||
+ fi
|
||||
fi
|
||||
exit 0
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmdas/kvm/Upgrade pcp-5.3.7/src/pmdas/kvm/Upgrade
|
||||
--- pcp-5.3.7.orig/src/pmdas/kvm/Upgrade 2019-02-06 17:16:29.000000000 +1100
|
||||
+++ pcp-5.3.7/src/pmdas/kvm/Upgrade 2023-07-10 16:25:31.904767032 +1000
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
. $PCP_DIR/etc/pcp.env
|
||||
|
||||
-if grep -q ^kvm "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
+if grep -q '^kvm.*perl.*' "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
then
|
||||
sed -i -e "s,perl $PCP_PMDAS_DIR/kvm/pmdakvm.pl,$PCP_PMDAS_DIR/kvm/pmdakvm -d 95,g" $PCP_PMCDCONF_PATH 2>/dev/null
|
||||
fi
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmdas/mssql/Upgrade pcp-5.3.7/src/pmdas/mssql/Upgrade
|
||||
--- pcp-5.3.7.orig/src/pmdas/mssql/Upgrade 2021-08-16 14:12:25.000000000 +1000
|
||||
+++ pcp-5.3.7/src/pmdas/mssql/Upgrade 2023-07-10 16:25:31.904767032 +1000
|
||||
@@ -17,14 +17,20 @@
|
||||
|
||||
. $PCP_DIR/etc/pcp.env
|
||||
|
||||
-if grep -q ^mssql "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
+if grep -q '^mssql.*perl ' "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
then
|
||||
sed -i \
|
||||
- -e "s,python $PCP_PMDAS_DIR/mssql/,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/mssql/,g" \
|
||||
-e "s,perl $PCP_PMDAS_DIR/mssql/pmdamssql.pl,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/mssql/pmdamssql.python,g" \
|
||||
$PCP_PMCDCONF_PATH 2>/dev/null
|
||||
fi
|
||||
|
||||
+if grep -q '^mssql.*python ' "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
+then
|
||||
+ sed -i \
|
||||
+ -e "s,python $PCP_PMDAS_DIR/mssql/,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/mssql/,g" \
|
||||
+ $PCP_PMCDCONF_PATH 2>/dev/null
|
||||
+fi
|
||||
+
|
||||
perlpath=`which $PCP_PERL_PROG`
|
||||
original="$PCP_PMDAS_DIR/mssql/mssql.conf"
|
||||
upgraded="$PCP_PMDAS_DIR/mssql/mssql.conf.tmp"
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmdas/openmetrics/Upgrade pcp-5.3.7/src/pmdas/openmetrics/Upgrade
|
||||
--- pcp-5.3.7.orig/src/pmdas/openmetrics/Upgrade 2021-08-16 14:12:25.000000000 +1000
|
||||
+++ pcp-5.3.7/src/pmdas/openmetrics/Upgrade 2023-07-10 16:25:31.904767032 +1000
|
||||
@@ -36,7 +36,7 @@ then
|
||||
rm -f "$PCP_VAR_DIR/pmns/prometheus" 2>/dev/null
|
||||
fi
|
||||
|
||||
-if grep -q ^openmetrics "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
+if grep -q '^openmetrics.*python ' "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
then
|
||||
sed -i -e "s,python $PCP_PMDAS_DIR/openmetrics/,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/openmetrics/,g" $PCP_PMCDCONF_PATH 2>/dev/null
|
||||
fi
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmdas/postgresql/Upgrade pcp-5.3.7/src/pmdas/postgresql/Upgrade
|
||||
--- pcp-5.3.7.orig/src/pmdas/postgresql/Upgrade 2021-08-16 14:12:25.000000000 +1000
|
||||
+++ pcp-5.3.7/src/pmdas/postgresql/Upgrade 2023-07-10 16:25:31.914767070 +1000
|
||||
@@ -17,14 +17,20 @@
|
||||
|
||||
. $PCP_DIR/etc/pcp.env
|
||||
|
||||
-if grep -q ^postgresql "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
+if grep -q '^postgresql.*perl ' "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
then
|
||||
sed -i \
|
||||
- -e "s,python $PCP_PMDAS_DIR/postgresql/,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/postgresql/,g" \
|
||||
-e "s,perl $PCP_PMDAS_DIR/postgresql/pmdapostgresql.pl,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/postgresql/pmdapostgresql.python,g" \
|
||||
$PCP_PMCDCONF_PATH 2>/dev/null
|
||||
fi
|
||||
|
||||
+if grep -q '^postgresql.*python ' "$PCP_PMCDCONF_PATH" 2>/dev/null
|
||||
+then
|
||||
+ sed -i \
|
||||
+ -e "s,python $PCP_PMDAS_DIR/postgresql/,$PCP_PYTHON_PROG $PCP_PMDAS_DIR/postgresql/,g" \
|
||||
+ $PCP_PMCDCONF_PATH 2>/dev/null
|
||||
+fi
|
||||
+
|
||||
perlpath=`which $PCP_PERL_PROG`
|
||||
original="$PCP_PMDAS_DIR/postgresql/postgresql.conf"
|
||||
upgraded="$PCP_PMDAS_DIR/postgresql/pmdapostgresql.conf"
|
@ -1,34 +0,0 @@
|
||||
commit ce6112399ebf0ff39069a34bc9286242c875555e
|
||||
Author: adam kaminski <adam@adamkaminski.com>
|
||||
Date: Fri Feb 9 12:49:34 2024 -0500
|
||||
|
||||
pmapi.py : fix for struct_time() and day of year out of range on yyyy-01-01
|
||||
|
||||
Fix for `day of year out of range` on 2024-01-01, due to self.tm_yday - 1, which returns `[2024, 1, 1, 2, 3, 0, 0, -1, 0]`. The range for tm_yday should be [1, 366].
|
||||
|
||||
# timedatectl set-ntp false
|
||||
# timedatectl set-time "2024-01-01 00:00:00"
|
||||
# /usr/libexec/pcp/bin/pcp-mpstat -P ALL -t 1 -s 2
|
||||
Traceback (most recent call last):
|
||||
File "/usr/libexec/pcp/bin/pcp-mpstat", line 653, in <module>
|
||||
sts = manager.run()
|
||||
File "/usr/lib64/python3.6/site-packages/pcp/pmcc.py", line 687, in run
|
||||
self._printer.report(self)
|
||||
File "/usr/libexec/pcp/bin/pcp-mpstat", line 606, in report
|
||||
self.print_machine_info(group, manager)
|
||||
File "/usr/libexec/pcp/bin/pcp-mpstat", line 585, in print_machine_info
|
||||
time_string = time.strftime("%x", timestamp.struct_time())
|
||||
ValueError: day of year out of range
|
||||
|
||||
diff -Naurp pcp-5.3.7.orig/src/python/pcp/pmapi.py pcp-5.3.7/src/python/pcp/pmapi.py
|
||||
--- pcp-5.3.7.orig/src/python/pcp/pmapi.py 2022-04-05 09:05:43.000000000 +1000
|
||||
+++ pcp-5.3.7/src/python/pcp/pmapi.py 2024-08-08 09:56:16.298625548 +1000
|
||||
@@ -299,7 +299,7 @@ class tm(Structure):
|
||||
pywday = 6
|
||||
stlist = [self.tm_year + 1900, self.tm_mon + 1, self.tm_mday,
|
||||
self.tm_hour, self.tm_min, self.tm_sec,
|
||||
- pywday, self.tm_yday - 1, self.tm_isdst]
|
||||
+ pywday, self.tm_yday + 1, self.tm_isdst]
|
||||
return time.struct_time(stlist)
|
||||
|
||||
def __str__(self):
|
@ -1,27 +0,0 @@
|
||||
commit 3bde240a2acc85e63e2f7813330713dd9b59386e
|
||||
Author: Nathan Scott <nathans@redhat.com>
|
||||
Date: Wed Mar 27 14:51:28 2024 +1100
|
||||
|
||||
pmproxy: disable Redis protocol proxying by default
|
||||
|
||||
If a redis-server has been locked down in terms of connections,
|
||||
we want to prevent pmproxy from being allowed to send arbitrary
|
||||
RESP commands to it.
|
||||
|
||||
This protocol proxying doesn't affect PCP functionality at all,
|
||||
its more of a developer/sysadmin convenience when Redis used in
|
||||
cluster mode (relatively uncommon compared to localhost mode).
|
||||
|
||||
diff --git a/src/pmproxy/pmproxy.conf b/src/pmproxy/pmproxy.conf
|
||||
index e54891792e..4cbc1c96af 100644
|
||||
--- a/src/pmproxy/pmproxy.conf
|
||||
+++ b/src/pmproxy/pmproxy.conf
|
||||
@@ -29,7 +29,7 @@ pcp.enabled = true
|
||||
http.enabled = true
|
||||
|
||||
# support Redis protocol proxying
|
||||
-redis.enabled = true
|
||||
+redis.enabled = false
|
||||
|
||||
# support SSL/TLS protocol wrapping
|
||||
secure.enabled = true
|
@ -1,320 +0,0 @@
|
||||
diff -Naurp pcp-5.3.7.orig/qa/src/test_pcp_sockets.python pcp-5.3.7/qa/src/test_pcp_sockets.python
|
||||
--- pcp-5.3.7.orig/qa/src/test_pcp_sockets.python 1970-01-01 10:00:00.000000000 +1000
|
||||
+++ pcp-5.3.7/qa/src/test_pcp_sockets.python 2024-09-09 13:47:06.848083320 +1000
|
||||
@@ -0,0 +1,23 @@
|
||||
+import socket
|
||||
+import cpmapi as api
|
||||
+from pcp import pmapi
|
||||
+
|
||||
+address = 'localhost'
|
||||
+port = 44321
|
||||
+
|
||||
+c = []
|
||||
+for i in range(0, 1234):
|
||||
+ print('context', i)
|
||||
+ ctx = pmapi.pmContext(api.PM_CONTEXT_HOST, "local:")
|
||||
+ print('created', i)
|
||||
+ c.append(ctx)
|
||||
+
|
||||
+s = []
|
||||
+for i in range(0, 1234):
|
||||
+ sock = socket.socket()
|
||||
+ print('socket', i)
|
||||
+ sock.connect((address, port))
|
||||
+ print('connect', i)
|
||||
+ sock.send(b"abba\r") # -- gives a too-large PDU
|
||||
+ print('send', i)
|
||||
+ # s.append(sock) # -- exercise pduread: timeout
|
||||
diff -Naurp pcp-5.3.7.orig/src/libpcp/src/pdu.c pcp-5.3.7/src/libpcp/src/pdu.c
|
||||
--- pcp-5.3.7.orig/src/libpcp/src/pdu.c 2022-04-05 09:05:43.000000000 +1000
|
||||
+++ pcp-5.3.7/src/libpcp/src/pdu.c 2024-09-09 13:47:06.869083364 +1000
|
||||
@@ -186,10 +186,7 @@ pduread(int fd, char *buf, int len, int
|
||||
* Need all parts of the PDU to be received by dead_hand
|
||||
* This enforces a low overall timeout for the whole PDU
|
||||
* (as opposed to just a timeout for individual calls to
|
||||
- * recv). A more invasive alternative (better) approach
|
||||
- * would see all I/O performed in the main event loop,
|
||||
- * and I/O routines transformed to continuation-passing
|
||||
- * style.
|
||||
+ * recv).
|
||||
*/
|
||||
gettimeofday(&dead_hand, NULL);
|
||||
dead_hand.tv_sec += wait.tv_sec;
|
||||
@@ -499,9 +496,10 @@ PM_FAULT_RETURN(PM_ERR_TIMEOUT);
|
||||
if (len == -1) {
|
||||
if (! __pmSocketClosed()) {
|
||||
char errmsg[PM_MAXERRMSGLEN];
|
||||
- pmNotifyErr(LOG_ERR, "%s: fd=%d hdr read: len=%d: %s",
|
||||
- "__pmGetPDU", fd, len,
|
||||
- pmErrStr_r(-oserror(), errmsg, sizeof(errmsg)));
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ pmNotifyErr(LOG_ERR, "%s: fd=%d hdr read: len=%d: %s",
|
||||
+ "__pmGetPDU", fd, len,
|
||||
+ pmErrStr_r(-oserror(), errmsg, sizeof(errmsg)));
|
||||
}
|
||||
}
|
||||
else if (len >= (int)sizeof(php->len)) {
|
||||
@@ -520,15 +518,17 @@ PM_FAULT_RETURN(PM_ERR_TIMEOUT);
|
||||
}
|
||||
else if (len < 0) {
|
||||
char errmsg[PM_MAXERRMSGLEN];
|
||||
- pmNotifyErr(LOG_ERR, "%s: fd=%d hdr read: len=%d: %s",
|
||||
- "__pmGetPDU", fd, len,
|
||||
- pmErrStr_r(len, errmsg, sizeof(errmsg)));
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ pmNotifyErr(LOG_ERR, "%s: fd=%d hdr read: len=%d: %s",
|
||||
+ "__pmGetPDU", fd, len,
|
||||
+ pmErrStr_r(len, errmsg, sizeof(errmsg)));
|
||||
__pmUnpinPDUBuf(pdubuf);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
else if (len > 0) {
|
||||
- pmNotifyErr(LOG_ERR, "%s: fd=%d hdr read: bad len=%d",
|
||||
- "__pmGetPDU", fd, len);
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ pmNotifyErr(LOG_ERR, "%s: fd=%d hdr read: bad len=%d",
|
||||
+ "__pmGetPDU", fd, len);
|
||||
__pmUnpinPDUBuf(pdubuf);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
@@ -547,8 +547,9 @@ check_read_len:
|
||||
* PDU length indicates insufficient bytes for a PDU header
|
||||
* ... looks like DOS attack like PV 935490
|
||||
*/
|
||||
- pmNotifyErr(LOG_ERR, "%s: fd=%d illegal PDU len=%d in hdr",
|
||||
- "__pmGetPDU", fd, php->len);
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ pmNotifyErr(LOG_ERR, "%s: fd=%d illegal PDU len=%d in hdr",
|
||||
+ "__pmGetPDU", fd, php->len);
|
||||
__pmUnpinPDUBuf(pdubuf);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
@@ -559,16 +560,18 @@ check_read_len:
|
||||
* (note, pmcd and pmdas have to be able to _send_ large PDUs,
|
||||
* e.g. for a pmResult or instance domain enquiry)
|
||||
*/
|
||||
- if (len < (int)(sizeof(php->len) + sizeof(php->type)))
|
||||
- /* PDU too short to provide a valid type */
|
||||
- pmNotifyErr(LOG_ERR, "%s: fd=%d bad PDU len=%d in hdr "
|
||||
- "exceeds maximum client PDU size (%d)",
|
||||
- "__pmGetPDU", fd, php->len, ceiling);
|
||||
- else
|
||||
- pmNotifyErr(LOG_ERR, "%s: fd=%d type=0x%x bad PDU len=%d in hdr "
|
||||
- "exceeds maximum client PDU size (%d)",
|
||||
- "__pmGetPDU", fd, (unsigned)ntohl(php->type),
|
||||
- php->len, ceiling);
|
||||
+ if (pmDebugOptions.pdu) {
|
||||
+ if (len < (int)(sizeof(php->len) + sizeof(php->type)))
|
||||
+ /* PDU too short to provide a valid type */
|
||||
+ pmNotifyErr(LOG_ERR, "%s: fd=%d bad PDU len=%d in hdr"
|
||||
+ " exceeds maximum client PDU size (%d)",
|
||||
+ "__pmGetPDU", fd, php->len, ceiling);
|
||||
+ else
|
||||
+ pmNotifyErr(LOG_ERR, "%s: fd=%d type=0x%x bad PDU len=%d in hdr"
|
||||
+ " exceeds maximum client PDU size (%d)",
|
||||
+ "__pmGetPDU", fd, (unsigned)ntohl(php->type),
|
||||
+ php->len, ceiling);
|
||||
+ }
|
||||
__pmUnpinPDUBuf(pdubuf);
|
||||
return PM_ERR_TOOBIG;
|
||||
}
|
||||
@@ -608,6 +611,10 @@ check_read_len:
|
||||
__pmUnpinPDUBuf(pdubuf);
|
||||
return PM_ERR_TIMEOUT;
|
||||
}
|
||||
+ else if (!pmDebugOptions.pdu) {
|
||||
+ __pmUnpinPDUBuf(pdubuf);
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
else if (len < 0) {
|
||||
char errmsg[PM_MAXERRMSGLEN];
|
||||
pmNotifyErr(LOG_ERR, "%s: fd=%d data read: len=%d: %s",
|
||||
@@ -641,7 +648,8 @@ check_read_len:
|
||||
* PDU type is bad ... could be a possible mem leak attack like
|
||||
* https://bugzilla.redhat.com/show_bug.cgi?id=841319
|
||||
*/
|
||||
- pmNotifyErr(LOG_ERR, "%s: fd=%d illegal PDU type=%d in hdr",
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ pmNotifyErr(LOG_ERR, "%s: fd=%d illegal PDU type=%d in hdr",
|
||||
"__pmGetPDU", fd, php->type);
|
||||
__pmUnpinPDUBuf(pdubuf);
|
||||
return PM_ERR_IPC;
|
||||
diff -Naurp pcp-5.3.7.orig/src/libpcp_web/src/load.h pcp-5.3.7/src/libpcp_web/src/load.h
|
||||
--- pcp-5.3.7.orig/src/libpcp_web/src/load.h 2021-02-17 15:27:41.000000000 +1100
|
||||
+++ pcp-5.3.7/src/libpcp_web/src/load.h 2024-09-09 13:45:56.531933622 +1000
|
||||
@@ -42,8 +42,9 @@ typedef struct context {
|
||||
unsigned int setup : 1; /* context established */
|
||||
unsigned int cached : 1; /* context/source in cache */
|
||||
unsigned int garbage : 1; /* context pending removal */
|
||||
+ unsigned int inactive: 1; /* context removal deferred */
|
||||
unsigned int updated : 1; /* context labels are updated */
|
||||
- unsigned int padding : 4; /* zero-filled struct padding */
|
||||
+ unsigned int padding : 3; /* zero-filled struct padding */
|
||||
unsigned int refcount : 16; /* currently-referenced counter */
|
||||
unsigned int timeout; /* context timeout in milliseconds */
|
||||
uv_timer_t timer;
|
||||
diff -Naurp pcp-5.3.7.orig/src/libpcp_web/src/webgroup.c pcp-5.3.7/src/libpcp_web/src/webgroup.c
|
||||
--- pcp-5.3.7.orig/src/libpcp_web/src/webgroup.c 2024-09-09 13:44:34.166748200 +1000
|
||||
+++ pcp-5.3.7/src/libpcp_web/src/webgroup.c 2024-09-09 13:45:56.531933622 +1000
|
||||
@@ -134,9 +134,18 @@ webgroup_timeout_context(uv_timer_t *arg
|
||||
* is returned to zero by the caller, or background cleanup
|
||||
* finds this context and cleans it.
|
||||
*/
|
||||
- if (cp->refcount == 0 && cp->garbage == 0) {
|
||||
- cp->garbage = 1;
|
||||
- uv_timer_stop(&cp->timer);
|
||||
+ if (cp->refcount == 0) {
|
||||
+ if (cp->garbage == 0) {
|
||||
+ cp->garbage = 1;
|
||||
+ uv_timer_stop(&cp->timer);
|
||||
+ }
|
||||
+ } else {
|
||||
+ /*
|
||||
+ * Context timed out but still referenced, must wait
|
||||
+ * until the caller releases its reference (shortly)
|
||||
+ * before beginning garbage collection process.
|
||||
+ */
|
||||
+ cp->inactive = 1;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -298,20 +307,28 @@ webgroup_garbage_collect(struct webgroup
|
||||
dictIterator *iterator;
|
||||
dictEntry *entry;
|
||||
context_t *cp;
|
||||
- unsigned int count = 0, drops = 0;
|
||||
+ unsigned int count = 0, drops = 0, garbageset = 0, inactiveset = 0;
|
||||
|
||||
if (pmDebugOptions.http || pmDebugOptions.libweb)
|
||||
- fprintf(stderr, "%s: started\n", "webgroup_garbage_collect");
|
||||
+ fprintf(stderr, "%s: started for groups %p\n",
|
||||
+ "webgroup_garbage_collect", groups);
|
||||
|
||||
/* do context GC if we get the lock (else don't block here) */
|
||||
if (uv_mutex_trylock(&groups->mutex) == 0) {
|
||||
iterator = dictGetSafeIterator(groups->contexts);
|
||||
for (entry = dictNext(iterator); entry;) {
|
||||
cp = (context_t *)dictGetVal(entry);
|
||||
+ if (cp->privdata != groups)
|
||||
+ continue;
|
||||
entry = dictNext(iterator);
|
||||
- if (cp->garbage && cp->privdata == groups) {
|
||||
+ if (cp->garbage)
|
||||
+ garbageset++;
|
||||
+ if (cp->inactive && cp->refcount == 0)
|
||||
+ inactiveset++;
|
||||
+ if (cp->garbage || (cp->inactive && cp->refcount == 0)) {
|
||||
if (pmDebugOptions.http || pmDebugOptions.libweb)
|
||||
- fprintf(stderr, "GC context %u (%p)\n", cp->randomid, cp);
|
||||
+ fprintf(stderr, "GC dropping context %u (%p)\n",
|
||||
+ cp->randomid, cp);
|
||||
uv_mutex_unlock(&groups->mutex);
|
||||
webgroup_drop_context(cp, groups);
|
||||
uv_mutex_lock(&groups->mutex);
|
||||
@@ -324,7 +341,8 @@ webgroup_garbage_collect(struct webgroup
|
||||
/* if dropping the last remaining context, do cleanup */
|
||||
if (groups->active && drops == count) {
|
||||
if (pmDebugOptions.http || pmDebugOptions.libweb)
|
||||
- fprintf(stderr, "%s: freezing\n", "webgroup_garbage_collect");
|
||||
+ fprintf(stderr, "%s: freezing groups %p\n",
|
||||
+ "webgroup_garbage_collect", groups);
|
||||
webgroup_timers_stop(groups);
|
||||
}
|
||||
uv_mutex_unlock(&groups->mutex);
|
||||
@@ -334,8 +352,10 @@ webgroup_garbage_collect(struct webgroup
|
||||
mmv_set(groups->map, groups->metrics[WEBGROUP_GC_COUNT], &count);
|
||||
|
||||
if (pmDebugOptions.http || pmDebugOptions.libweb)
|
||||
- fprintf(stderr, "%s: finished [%u drops from %u entries]\n",
|
||||
- "webgroup_garbage_collect", drops, count);
|
||||
+ fprintf(stderr, "%s: finished [%u drops from %u entries,"
|
||||
+ " %u garbageset, %u inactiveset]\n",
|
||||
+ "webgroup_garbage_collect", drops, count,
|
||||
+ garbageset, inactiveset);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -354,7 +374,7 @@ webgroup_use_context(struct context *cp,
|
||||
int sts;
|
||||
struct webgroups *gp = (struct webgroups *)cp->privdata;
|
||||
|
||||
- if (cp->garbage == 0) {
|
||||
+ if (cp->garbage == 0 && cp->inactive == 0) {
|
||||
if (cp->setup == 0) {
|
||||
if ((sts = pmReconnectContext(cp->context)) < 0) {
|
||||
infofmt(*message, "cannot reconnect context: %s",
|
||||
@@ -424,7 +444,7 @@ webgroup_lookup_context(pmWebGroupSettin
|
||||
*status = -ENOTCONN;
|
||||
return NULL;
|
||||
}
|
||||
- if (cp->garbage == 0) {
|
||||
+ if (cp->garbage == 0 && cp->inactive == 0) {
|
||||
access.username = cp->username;
|
||||
access.password = cp->password;
|
||||
access.realm = cp->realm;
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmcd/src/client.c pcp-5.3.7/src/pmcd/src/client.c
|
||||
--- pcp-5.3.7.orig/src/pmcd/src/client.c 2018-01-15 15:49:13.000000000 +1100
|
||||
+++ pcp-5.3.7/src/pmcd/src/client.c 2024-09-09 13:47:06.870083366 +1000
|
||||
@@ -74,7 +74,8 @@ NotifyEndContext(int ctx)
|
||||
ClientInfo *
|
||||
AcceptNewClient(int reqfd)
|
||||
{
|
||||
- static unsigned int seq = 0;
|
||||
+ static unsigned int seq, saved, count;
|
||||
+ static struct timeval then;
|
||||
int i, fd;
|
||||
__pmSockLen addrlen;
|
||||
struct timeval now;
|
||||
@@ -83,21 +84,30 @@ AcceptNewClient(int reqfd)
|
||||
addrlen = __pmSockAddrSize();
|
||||
fd = __pmAccept(reqfd, client[i].addr, &addrlen);
|
||||
if (fd == -1) {
|
||||
- if (neterror() == EPERM) {
|
||||
- pmNotifyErr(LOG_NOTICE, "AcceptNewClient(%d): "
|
||||
- "Permission Denied\n", reqfd);
|
||||
- }
|
||||
- else if (neterror() == ECONNABORTED) {
|
||||
+ if (neterror() == ECONNABORTED) {
|
||||
/* quietly ignore this one ... */
|
||||
;
|
||||
}
|
||||
else {
|
||||
- /*
|
||||
- * unexpected ... ignore the client (we used to kill off pmcd
|
||||
- * but that seems way too extreme)
|
||||
+ /* Permission denied or an unexpected error (e.g. EMFILE)
|
||||
+ * - rate limit the logging and make this client go away.
|
||||
*/
|
||||
- pmNotifyErr(LOG_ERR, "AcceptNewClient(%d): Unexpected error from __pmAccept: %d: %s\n",
|
||||
- reqfd, neterror(), netstrerror());
|
||||
+ pmtimevalNow(&now);
|
||||
+ if (neterror() != saved || now.tv_sec > then.tv_sec + 60) {
|
||||
+ if (neterror() == EPERM)
|
||||
+ pmNotifyErr(LOG_NOTICE, "AcceptNewClient(%d): "
|
||||
+ "Permission Denied (%d suppressed)\n",
|
||||
+ reqfd, count);
|
||||
+ else
|
||||
+ pmNotifyErr(LOG_ERR, "AcceptNewClient(%d): "
|
||||
+ "Accept error (%d suppressed): %d: %s\n",
|
||||
+ reqfd, count, neterror(), netstrerror());
|
||||
+ saved = neterror();
|
||||
+ count = 0;
|
||||
+ } else {
|
||||
+ count++;
|
||||
+ }
|
||||
+ then = now;
|
||||
}
|
||||
client[i].fd = -1;
|
||||
DeleteClient(&client[i]);
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmcd/src/pmcd.c pcp-5.3.7/src/pmcd/src/pmcd.c
|
||||
--- pcp-5.3.7.orig/src/pmcd/src/pmcd.c 2021-10-13 10:48:23.000000000 +1100
|
||||
+++ pcp-5.3.7/src/pmcd/src/pmcd.c 2024-09-09 13:47:06.871083368 +1000
|
||||
@@ -685,7 +685,7 @@ HandleReadyAgents(__pmFdSet *readyFds)
|
||||
}
|
||||
|
||||
static void
|
||||
-CheckNewClient(__pmFdSet * fdset, int rfd, int family)
|
||||
+CheckNewClient(__pmFdSet *fdset, int rfd, int family)
|
||||
{
|
||||
int s, sts, accepted = 1;
|
||||
__uint32_t challenge;
|
File diff suppressed because it is too large
Load Diff
@ -1,403 +0,0 @@
|
||||
diff -Naurp pcp-5.3.7.orig/qa/1518 pcp-5.3.7/qa/1518
|
||||
--- pcp-5.3.7.orig/qa/1518 1970-01-01 10:00:00.000000000 +1000
|
||||
+++ pcp-5.3.7/qa/1518 2024-09-09 13:13:14.561437414 +1000
|
||||
@@ -0,0 +1,75 @@
|
||||
+#!/bin/sh
|
||||
+# PCP QA Test No. 1518
|
||||
+# SUSE Issue A)
|
||||
+# __pmDecodeValueSet() Miscalculates Available Buffer Space
|
||||
+# Leading to a Possible Heap Corruption
|
||||
+#
|
||||
+# Copyright (c) 2024 Ken McDonell. All Rights Reserved.
|
||||
+# Copyright (c) 2024 Matthias Gerstner. All Rights Reserved.
|
||||
+#
|
||||
+
|
||||
+if [ $# -eq 0 ]
|
||||
+then
|
||||
+ seq=`basename $0`
|
||||
+ echo "QA output created by $seq"
|
||||
+else
|
||||
+ # use $seq from caller, unless not set
|
||||
+ [ -n "$seq" ] || seq=`basename $0`
|
||||
+ echo "QA output created by `basename $0` $*"
|
||||
+fi
|
||||
+
|
||||
+# get standard environment, filters and checks
|
||||
+. ./common.product
|
||||
+. ./common.filter
|
||||
+. ./common.check
|
||||
+
|
||||
+$sudo rm -rf $tmp $tmp.* $seq.full
|
||||
+
|
||||
+which nc >/dev/null 2>&1 || _notrun "no nc executable installed"
|
||||
+_check_valgrind
|
||||
+
|
||||
+_cleanup()
|
||||
+{
|
||||
+ cat pmcd.log >>$here/$seq.full
|
||||
+ cd $here
|
||||
+ $sudo rm -rf $tmp $tmp.*
|
||||
+}
|
||||
+
|
||||
+status=0 # success is the default!
|
||||
+trap "_cleanup; exit \$status" 0 1 2 3 15
|
||||
+
|
||||
+_filter()
|
||||
+{
|
||||
+ sed \
|
||||
+ -e '/^Command: /d' \
|
||||
+ # end
|
||||
+}
|
||||
+
|
||||
+mkdir $tmp || exit 1
|
||||
+cd $tmp
|
||||
+grep sampledso $PCP_PMCDCONF_PATH >pmcd.conf
|
||||
+cat pmcd.conf >>$here/$seq.full
|
||||
+port=`_find_free_port`
|
||||
+echo "port=$port" >>$here/$seq.full
|
||||
+
|
||||
+# real QA test starts here
|
||||
+valgrind $PCP_BINADM_DIR/pmcd -f -Dpdu -c ./pmcd.conf -s ./pmcd.socket -p $port >out 2>err &
|
||||
+valgrind_pid=$!
|
||||
+sleep 2
|
||||
+pmcd_pid=`$PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep '[p]mcd -f -Dpdu' | $PCP_AWK_PROG '{ print $2 }'`
|
||||
+echo "pmcd_pid=$pmcd_pid" >>$here/$seq.full
|
||||
+nc -N -U ./pmcd.socket <$here/binary/decode-value-set-out-of-bound-write 2>&1 \
|
||||
+| od -c >>$here/$seq.full
|
||||
+sleep 2
|
||||
+kill -TERM $pmcd_pid
|
||||
+wait
|
||||
+
|
||||
+echo "expect error to be logged ..."
|
||||
+grep __pmDecodeValueSet pmcd.log
|
||||
+
|
||||
+echo
|
||||
+echo "and no valgrind badness ..."
|
||||
+cat out err | _filter_valgrind | _filter
|
||||
+
|
||||
+# success, all done
|
||||
+exit
|
||||
diff -Naurp pcp-5.3.7.orig/qa/1518.out pcp-5.3.7/qa/1518.out
|
||||
--- pcp-5.3.7.orig/qa/1518.out 1970-01-01 10:00:00.000000000 +1000
|
||||
+++ pcp-5.3.7/qa/1518.out 2024-09-09 13:13:14.561437414 +1000
|
||||
@@ -0,0 +1,11 @@
|
||||
+QA output created by 1518
|
||||
+expect error to be logged ...
|
||||
+__pmDecodeValueSet: PM_ERR_IPC: pmid[0] value[0] vindex=1020 (max=255)
|
||||
+
|
||||
+and no valgrind badness ...
|
||||
+Memcheck, a memory error detector
|
||||
+LEAK SUMMARY:
|
||||
+definitely lost: 0 bytes in 0 blocks
|
||||
+indirectly lost: 0 bytes in 0 blocks
|
||||
+Rerun with --leak-check=full to see details of leaked memory
|
||||
+ERROR SUMMARY: 0 errors from 0 contexts ...
|
||||
diff -Naurp pcp-5.3.7.orig/qa/group pcp-5.3.7/qa/group
|
||||
--- pcp-5.3.7.orig/qa/group 2024-09-09 13:11:13.796450545 +1000
|
||||
+++ pcp-5.3.7/qa/group 2024-09-09 13:13:49.419437747 +1000
|
||||
@@ -1847,6 +1847,7 @@ x11
|
||||
1490 python local labels
|
||||
1495 pmlogrewrite labels pmdumplog local
|
||||
1511 pmcd local pmda.sample
|
||||
+1518 pmcd libpcp local
|
||||
1530 pmda.zfs local valgrind
|
||||
1531 pmda.zfs local valgrind
|
||||
1532 pmda.zfs local
|
||||
diff -Naurp pcp-5.3.7.orig/src/libpcp/src/endian.c pcp-5.3.7/src/libpcp/src/endian.c
|
||||
--- pcp-5.3.7.orig/src/libpcp/src/endian.c 2022-04-05 09:05:43.000000000 +1000
|
||||
+++ pcp-5.3.7/src/libpcp/src/endian.c 2024-09-09 13:20:56.967560588 +1000
|
||||
@@ -268,13 +268,17 @@ ntohEventArray(pmValueBlock * const vb,
|
||||
}
|
||||
|
||||
void
|
||||
-__ntohpmValueBlock(pmValueBlock * const vb)
|
||||
+__ntohpmValueBlock_hdr(pmValueBlock * const vb)
|
||||
{
|
||||
unsigned int *ip = (unsigned int *)vb;
|
||||
|
||||
/* Swab the first word, which contain vtype and vlen */
|
||||
*ip = ntohl(*ip);
|
||||
+}
|
||||
|
||||
+void
|
||||
+__ntohpmValueBlock_buf(pmValueBlock * const vb)
|
||||
+{
|
||||
switch (vb->vtype) {
|
||||
case PM_TYPE_U64:
|
||||
case PM_TYPE_64:
|
||||
@@ -298,6 +302,13 @@ __ntohpmValueBlock(pmValueBlock * const
|
||||
break;
|
||||
}
|
||||
}
|
||||
+
|
||||
+void
|
||||
+__ntohpmValueBlock(pmValueBlock * const vb)
|
||||
+{
|
||||
+ __ntohpmValueBlock_hdr(vb);
|
||||
+ __ntohpmValueBlock_buf(vb);
|
||||
+}
|
||||
#endif
|
||||
|
||||
#ifndef __htonpmPDUInfo
|
||||
diff -Naurp pcp-5.3.7.orig/src/libpcp/src/internal.h pcp-5.3.7/src/libpcp/src/internal.h
|
||||
--- pcp-5.3.7.orig/src/libpcp/src/internal.h 2022-04-05 09:05:43.000000000 +1000
|
||||
+++ pcp-5.3.7/src/libpcp/src/internal.h 2024-09-09 13:21:44.336608061 +1000
|
||||
@@ -60,6 +60,8 @@ extern int __pmGetDate(struct timespec *
|
||||
#define __ntohpmLabel(a) /* noop */
|
||||
#define __htonpmValueBlock(a) /* noop */
|
||||
#define __ntohpmValueBlock(a) /* noop */
|
||||
+#define __ntohpmValueBlock_hdr(a) /* noop */
|
||||
+#define __ntohpmValueBlock_buf(a) /* noop */
|
||||
#define __htonpmTimespec(a) /* noop */
|
||||
#define __ntohpmTimespec(a) /* noop */
|
||||
#define __htonpmTimestamp(a) /* noop */
|
||||
@@ -94,6 +96,8 @@ extern void __htonpmLabel(pmLabel * cons
|
||||
extern void __ntohpmLabel(pmLabel * const) _PCP_HIDDEN;
|
||||
extern void __htonpmValueBlock(pmValueBlock * const) _PCP_HIDDEN;
|
||||
extern void __ntohpmValueBlock(pmValueBlock * const) _PCP_HIDDEN;
|
||||
+extern void __ntohpmValueBlock_hdr(pmValueBlock * const) _PCP_HIDDEN;
|
||||
+extern void __ntohpmValueBlock_buf(pmValueBlock * const) _PCP_HIDDEN;
|
||||
extern void __htonpmTimespec(pmTimespec * const ) _PCP_HIDDEN;
|
||||
extern void __ntohpmTimespec(pmTimespec * const ) _PCP_HIDDEN;
|
||||
extern void __htonpmTimestamp(__pmTimestamp * const );
|
||||
diff -Naurp pcp-5.3.7.orig/src/libpcp/src/p_result.c pcp-5.3.7/src/libpcp/src/p_result.c
|
||||
--- pcp-5.3.7.orig/src/libpcp/src/p_result.c 2022-04-05 09:05:43.000000000 +1000
|
||||
+++ pcp-5.3.7/src/libpcp/src/p_result.c 2024-09-09 13:27:16.651969214 +1000
|
||||
@@ -277,6 +277,135 @@ __pmSendHighResResult(int fd, int from,
|
||||
return __pmSendHighResResult_ctx(NULL, fd, from, result);
|
||||
}
|
||||
|
||||
+/* Check that a network encoded event array is within a given buffer size */
|
||||
+int
|
||||
+__pmEventArrayCheck(pmValueBlock * const vb, int highres, int pmid, int value, size_t check)
|
||||
+{
|
||||
+ char *base;
|
||||
+ int r; /* records */
|
||||
+ int p; /* parameters in a record ... */
|
||||
+ int nrecords;
|
||||
+ int nparams;
|
||||
+
|
||||
+ if (highres) {
|
||||
+ pmHighResEventArray *hreap = (pmHighResEventArray *)vb;
|
||||
+ base = (char *)&hreap->ea_record[0];
|
||||
+ if (base > (char *)vb + check) {
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ fprintf(stderr, "__pmEventArrayCheck #1: PM_ERR_IPC: pmid[%d] value[%d] highres event records past end of PDU buffer\n",
|
||||
+ pmid, value);
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+ nrecords = ntohl(hreap->ea_nrecords);
|
||||
+ }
|
||||
+ else {
|
||||
+ pmEventArray *eap = (pmEventArray *)vb;
|
||||
+ base = (char *)&eap->ea_record[0];
|
||||
+ if (base > (char *)vb + check) {
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ fprintf(stderr, "__pmEventArrayCheck #2: PM_ERR_IPC: pmid[%d] value[%d] event records past end of PDU buffer\n",
|
||||
+ pmid, value);
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+ nrecords = ntohl(eap->ea_nrecords);
|
||||
+ }
|
||||
+
|
||||
+ /* walk packed event record array */
|
||||
+ for (r = 0; r < nrecords; r++) {
|
||||
+ unsigned int flags, type;
|
||||
+ size_t size, remaining;
|
||||
+
|
||||
+ remaining = check - (base - (char *)vb);
|
||||
+ if (highres) {
|
||||
+ pmHighResEventRecord *hrerp = (pmHighResEventRecord *)base;
|
||||
+ size = sizeof(hrerp->er_timestamp) + sizeof(hrerp->er_flags) +
|
||||
+ sizeof(hrerp->er_nparams);
|
||||
+ if (size > remaining) {
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ fprintf(stderr, "__pmEventArrayCheck #3: PM_ERR_IPC: pmid[%d] value[%d] record[%d] highres event record past end of PDU buffer\n",
|
||||
+ pmid, value, r);
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+ nparams = ntohl(hrerp->er_nparams);
|
||||
+ flags = ntohl(hrerp->er_flags);
|
||||
+ }
|
||||
+ else {
|
||||
+ pmEventRecord *erp = (pmEventRecord *)base;
|
||||
+ size = sizeof(erp->er_timestamp) + sizeof(erp->er_flags) +
|
||||
+ sizeof(erp->er_nparams);
|
||||
+ if (size > remaining) {
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ fprintf(stderr, "__pmEventArrayCheck #4: PM_ERR_IPC: pmid[%d] value[%d] record[%d] event record past end of PDU buffer\n",
|
||||
+ pmid, value, r);
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+ nparams = ntohl(erp->er_nparams);
|
||||
+ flags = ntohl(erp->er_flags);
|
||||
+ }
|
||||
+
|
||||
+ if (flags & PM_EVENT_FLAG_MISSED)
|
||||
+ nparams = 0;
|
||||
+
|
||||
+ base += size;
|
||||
+ remaining = check - (base - (char *)vb);
|
||||
+
|
||||
+ for (p = 0; p < nparams; p++) {
|
||||
+ __uint32_t *tp; /* points to int holding vtype/vlen */
|
||||
+ pmEventParameter *epp = (pmEventParameter *)base;
|
||||
+
|
||||
+ if (sizeof(pmEventParameter) > remaining) {
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ fprintf(stderr, "__pmEventArrayCheck #5: PM_ERR_IPC: pmid[%d] value[%d] record[%d] param[%d] event record past end of PDU buffer\n",
|
||||
+ pmid, value, r, p);
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+
|
||||
+ tp = (__uint32_t *)&epp->ep_pmid;
|
||||
+ tp++; /* now points to ep_type/ep_len */
|
||||
+ *tp = ntohl(*tp);
|
||||
+ type = epp->ep_type;
|
||||
+ size = epp->ep_len;
|
||||
+ *tp = htonl(*tp); /* leave the buffer how we found it */
|
||||
+
|
||||
+ if (sizeof(pmID) + size > remaining) {
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ fprintf(stderr, "__pmEventArrayCheck #6: PM_ERR_IPC: pmid[%d] value[%d] record[%d] param[%d] event record past end of PDU buffer\n",
|
||||
+ pmid, value, r, p);
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+
|
||||
+ base += sizeof(pmID) + PM_PDU_SIZE_BYTES(size);
|
||||
+
|
||||
+ /*
|
||||
+ * final check for the types below, ep_len should be 4 or
|
||||
+ * 8, but a malformed PDU could have smaller ep_len values
|
||||
+ * and then unpacking these types risk going past the end
|
||||
+ * of the PDU buffer
|
||||
+ */
|
||||
+ size = 0;
|
||||
+ switch (type) {
|
||||
+ case PM_TYPE_32:
|
||||
+ case PM_TYPE_U32:
|
||||
+ case PM_TYPE_FLOAT:
|
||||
+ size = 4; /* 32-bit types */
|
||||
+ break;
|
||||
+ case PM_TYPE_64:
|
||||
+ case PM_TYPE_U64:
|
||||
+ case PM_TYPE_DOUBLE:
|
||||
+ size = 8; /* 64-bit types */
|
||||
+ break;
|
||||
+ }
|
||||
+ if (size > 0 && sizeof(pmID) + size > remaining) {
|
||||
+ if (pmDebugOptions.pdu)
|
||||
+ fprintf(stderr, "__pmEventArrayCheck #7: PM_ERR_IPC: pmid[%d] value[%d] record[%d] param[%d] event record past end of PDU buffer\n",
|
||||
+ pmid, value, r, p);
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
#if defined(HAVE_64BIT_PTR)
|
||||
static int
|
||||
__pmDecodeValueSet(__pmPDU *pdubuf, int pdulen, __pmPDU *data, char *pduend,
|
||||
@@ -290,7 +419,7 @@ __pmDecodeValueSet(__pmPDU *pdubuf, int
|
||||
int i, j;
|
||||
/*
|
||||
* Note: all sizes are in units of bytes ... beware that 'data' is in
|
||||
- * units of __pmPDU
|
||||
+ * units of __pmPDU (four bytes)
|
||||
*/
|
||||
int vsize; /* size of vlist_t's in PDU buffer */
|
||||
int nvsize; /* size of pmValue's after decode */
|
||||
@@ -368,11 +497,10 @@ __pmDecodeValueSet(__pmPDU *pdubuf, int
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
vindex = ntohl(pduvp->value.lval);
|
||||
- if (vindex < 0 || vindex > pdulen) {
|
||||
+ if (vindex < 0 || (char *)&pdubuf[vindex] >= pduend) {
|
||||
if (pmDebugOptions.pdu && pmDebugOptions.desperate)
|
||||
- fprintf(stderr, "%s: Bad: pmid[%d] value[%d] "
|
||||
- "vindex=%d\n",
|
||||
- "__pmDecodeValueSet", i, j, vindex);
|
||||
+ fprintf(stderr, "__pmDecodeValueSet: PM_ERR_IPC: pmid[%d] value[%d] vindex=%d (max=%ld)\n",
|
||||
+ i, j, vindex, (long)((pduend-(char *)pdubuf) / sizeof(pdubuf[0])-1));
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
pduvbp = (pmValueBlock *)&pdubuf[vindex];
|
||||
@@ -387,7 +515,7 @@ __pmDecodeValueSet(__pmPDU *pdubuf, int
|
||||
"__pmDecodeValueSet", i, j);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
- __ntohpmValueBlock(pduvbp);
|
||||
+ __ntohpmValueBlock_hdr(pduvbp);
|
||||
if (pduvbp->vlen < PM_VAL_HDR_SIZE ||
|
||||
pduvbp->vlen > pdulen) {
|
||||
if (pmDebugOptions.pdu && pmDebugOptions.desperate)
|
||||
@@ -396,13 +524,20 @@ __pmDecodeValueSet(__pmPDU *pdubuf, int
|
||||
i, j, pduvbp->vlen);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
- if (pduvbp->vlen > (size_t)(pduend - (char *)pduvbp)) {
|
||||
+ if (pduvbp->vlen > check) {
|
||||
if (pmDebugOptions.pdu && pmDebugOptions.desperate)
|
||||
fprintf(stderr, "%s: Bad: pmid[%d] value[%d] "
|
||||
"pduvp past end of PDU buffer\n",
|
||||
"__pmDecodeValueSet", i, j);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
+ if (pduvbp->vtype == PM_TYPE_HIGHRES_EVENT ||
|
||||
+ pduvbp->vtype == PM_TYPE_EVENT) {
|
||||
+ vindex = (pduvbp->vtype == PM_TYPE_HIGHRES_EVENT);
|
||||
+ if (__pmEventArrayCheck(pduvbp, vindex, i, j, check) < 0)
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+ __ntohpmValueBlock_buf(pduvbp);
|
||||
vbsize += PM_PDU_SIZE_BYTES(pduvbp->vlen);
|
||||
if (pmDebugOptions.pdu && pmDebugOptions.desperate) {
|
||||
fprintf(stderr, " len: %d type: %d",
|
||||
@@ -635,11 +770,10 @@ __pmDecodeValueSet(__pmPDU *pdubuf, int
|
||||
} else {
|
||||
/* salvage pmValueBlocks from end of PDU */
|
||||
vindex = ntohl(pduvp->value.lval);
|
||||
- if (vindex < 0 || vindex > pdulen) {
|
||||
+ if (vindex < 0 || (char *)&pdubuf[vindex] >= pduend) {
|
||||
if (pmDebugOptions.pdu && pmDebugOptions.desperate)
|
||||
- fprintf(stderr, "%s: Bad: pmid[%d] value[%d] "
|
||||
- "vindex=%d\n",
|
||||
- "__pmDecodeValueSet", i, j, vindex);
|
||||
+ fprintf(stderr, "__pmDecodeValueSet: PM_ERR_IPC: pmid[%d] value[%d] vindex=%d (max=%ld)\n",
|
||||
+ i, j, vindex, (long)((pduend-(char *)pdubuf) / sizeof(pdubuf[0])-1));
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
pduvbp = (pmValueBlock *)&pdubuf[vindex];
|
||||
@@ -654,7 +788,8 @@ __pmDecodeValueSet(__pmPDU *pdubuf, int
|
||||
"__pmDecodeValueSet", i, j);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
- __ntohpmValueBlock(pduvbp);
|
||||
+
|
||||
+ __ntohpmValueBlock_hdr(pduvbp);
|
||||
if (pduvbp->vlen < PM_VAL_HDR_SIZE ||
|
||||
pduvbp->vlen > pdulen) {
|
||||
if (pmDebugOptions.pdu && pmDebugOptions.desperate)
|
||||
@@ -663,13 +798,20 @@ __pmDecodeValueSet(__pmPDU *pdubuf, int
|
||||
i, j, pduvbp->vlen);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
- if (pduvbp->vlen > (size_t)(pduend - (char *)pduvbp)) {
|
||||
+ if (pduvbp->vlen > check) {
|
||||
if (pmDebugOptions.pdu && pmDebugOptions.desperate)
|
||||
fprintf(stderr, "%s: Bad: pmid[%d] value[%d] "
|
||||
"pduvp past end of PDU buffer\n",
|
||||
"__pmDecodeValueSet", i, j);
|
||||
return PM_ERR_IPC;
|
||||
}
|
||||
+ if (pduvbp->vtype == PM_TYPE_HIGHRES_EVENT ||
|
||||
+ pduvbp->vtype == PM_TYPE_EVENT) {
|
||||
+ vindex = (pduvbp->vtype == PM_TYPE_HIGHRES_EVENT);
|
||||
+ if (__pmEventArrayCheck(pduvbp, vindex, i, j, check) < 0)
|
||||
+ return PM_ERR_IPC;
|
||||
+ }
|
||||
+ __ntohpmValueBlock_buf(pduvbp);
|
||||
pduvp->value.pval = pduvbp;
|
||||
}
|
||||
}
|
@ -1,99 +0,0 @@
|
||||
diff -Naurp pcp-5.3.7.orig/qa/640 pcp-5.3.7/qa/640
|
||||
--- pcp-5.3.7.orig/qa/640 2017-08-17 10:54:57.000000000 +1000
|
||||
+++ pcp-5.3.7/qa/640 2024-09-09 13:41:12.440235947 +1000
|
||||
@@ -6,6 +6,10 @@
|
||||
# years; so we now simply check the right permissions are in place
|
||||
# and move right along...
|
||||
#
|
||||
+# Aug 2024 update
|
||||
+# SuSE Issue G identifies another possible exploit, so try that
|
||||
+# as well.
|
||||
+#
|
||||
# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
|
||||
#
|
||||
|
||||
@@ -17,13 +21,54 @@ echo "QA output created by $seq"
|
||||
. ./common.filter
|
||||
. ./common.check
|
||||
|
||||
-status=0 # success is the default!
|
||||
-trap "$sudo rm -f $tmp.*; exit \$status" 0 1 2 3 15
|
||||
+rm -f $seq.full
|
||||
+ls -li $PCP_LOG_DIR/NOTICES $tmp/badness >>$seq.full 2>&1
|
||||
+
|
||||
+_cleanup()
|
||||
+{
|
||||
+ if [ -f $PCP_LOG_DIR/NOTICES.$seq ]
|
||||
+ then
|
||||
+ $sudo rm -f $PCP_LOG_DIR/NOTICES
|
||||
+ $sudo mv $PCP_LOG_DIR/NOTICES.$seq $PCP_LOG_DIR/NOTICES
|
||||
+ fi
|
||||
+ ls -li $PCP_LOG_DIR/NOTICES $tmp/badness >>$seq.full 2>&1
|
||||
+ $sudo rm -rf $tmp $tmp.*
|
||||
+}
|
||||
+
|
||||
+status=1 # failure is the default!
|
||||
+trap "_cleanup; exit \$status" 0 1 2 3 15
|
||||
+
|
||||
+_filter()
|
||||
+{
|
||||
+ sed \
|
||||
+ -e "s@$PCP_LOG_DIR@PCP_LOG_DIR@g" \
|
||||
+ -e '/^pmpost:/s/\[.*]/[DATE]/' \
|
||||
+ # end
|
||||
+}
|
||||
|
||||
# real QA test starts here
|
||||
pmpost=$PCP_BINADM_DIR/pmpost
|
||||
-echo "Using pmpost binary: $pmpost" > $seq.full
|
||||
+echo "Using pmpost binary: $pmpost" >>$seq.full
|
||||
test -u "$pmpost" && echo "FAIL: pmpost has setuid bit set"
|
||||
test -g "$pmpost" && echo "FAIL: pmpost has setgid bit set"
|
||||
+
|
||||
+$sudo mkdir $tmp || exit
|
||||
+$sudo chmod 700 $tmp || exit
|
||||
+$sudo -u $PCP_USER mv $PCP_LOG_DIR/NOTICES $PCP_LOG_DIR/NOTICES.$seq
|
||||
+
|
||||
+$sudo -u $PCP_USER ln -s $tmp/badness $PCP_LOG_DIR/NOTICES >>$seq.full
|
||||
+$pmpost ordinary user 2>&1 | _filter
|
||||
+$sudo ls -li $PCP_LOG_DIR/NOTICES $tmp/badness >>$seq.full 2>&1
|
||||
+$sudo -u pcp $pmpost pcp user 2>&1 | _filter
|
||||
+$sudo ls -li $PCP_LOG_DIR/NOTICES $tmp/badness >>$seq.full 2>&1
|
||||
+$sudo $pmpost root user 2>&1 | _filter
|
||||
+$sudo ls -li $PCP_LOG_DIR/NOTICES $tmp/badness >>$seq.full 2>&1
|
||||
+if $sudo test -f $tmp/badness
|
||||
+then
|
||||
+ $sudo cat $tmp/badness
|
||||
+fi
|
||||
+
|
||||
echo "Test complete"
|
||||
+
|
||||
+status=0
|
||||
exit
|
||||
diff -Naurp pcp-5.3.7.orig/qa/640.out pcp-5.3.7/qa/640.out
|
||||
--- pcp-5.3.7.orig/qa/640.out 2017-08-17 10:54:57.000000000 +1000
|
||||
+++ pcp-5.3.7/qa/640.out 2024-09-09 13:41:12.440235947 +1000
|
||||
@@ -1,2 +1,5 @@
|
||||
QA output created by 640
|
||||
+pmpost: unposted message: [DATE] ordinary user
|
||||
+pmpost: unposted message: [DATE] pcp user
|
||||
+pmpost: unposted message: [DATE] root user
|
||||
Test complete
|
||||
diff -Naurp pcp-5.3.7.orig/src/pmpost/pmpost.c pcp-5.3.7/src/pmpost/pmpost.c
|
||||
--- pcp-5.3.7.orig/src/pmpost/pmpost.c 2021-02-17 15:27:41.000000000 +1100
|
||||
+++ pcp-5.3.7/src/pmpost/pmpost.c 2024-09-09 13:41:12.440235947 +1000
|
||||
@@ -141,8 +141,12 @@ main(int argc, char **argv)
|
||||
goto oops;
|
||||
}
|
||||
|
||||
- if ((fd = open(notices, O_WRONLY|O_APPEND, 0)) < 0) {
|
||||
- if ((fd = open(notices, O_WRONLY|O_CREAT|O_APPEND, 0664)) < 0) {
|
||||
+ if ((fd = open(notices, O_WRONLY|O_APPEND|O_NOFOLLOW, 0)) < 0) {
|
||||
+ if (oserror() == ELOOP) {
|
||||
+ /* last component is symlink => attack? ... bail! */
|
||||
+ goto oops;
|
||||
+ }
|
||||
+ if ((fd = open(notices, O_WRONLY|O_CREAT|O_APPEND|O_NOFOLLOW, 0664)) < 0) {
|
||||
fprintf(stderr, "pmpost: cannot open or create file \"%s\": %s\n",
|
||||
notices, osstrerror());
|
||||
goto oops;
|
@ -1,74 +0,0 @@
|
||||
diff -Naurp pcp-5.3.7.orig/src/selinux/pcp.fc pcp-5.3.7/src/selinux/pcp.fc
|
||||
--- pcp-5.3.7.orig/src/selinux/pcp.fc 2023-11-21 13:25:11.689247531 +1100
|
||||
+++ pcp-5.3.7/src/selinux/pcp.fc 2023-11-21 14:12:48.080744232 +1100
|
||||
@@ -1,36 +1,32 @@
|
||||
-/etc/rc\.d/init\.d/pmcd -- gen_context(system_u:object_r:pcp_pmcd_initrc_exec_t,s0)
|
||||
-/etc/rc\.d/init\.d/pmlogger -- gen_context(system_u:object_r:pcp_pmlogger_initrc_exec_t,s0)
|
||||
-/etc/rc\.d/init\.d/pmproxy -- gen_context(system_u:object_r:pcp_pmproxy_initrc_exec_t,s0)
|
||||
-/etc/rc\.d/init\.d/pmie -- gen_context(system_u:object_r:pcp_pmie_initrc_exec_t,s0)
|
||||
-
|
||||
/usr/bin/pmie -- gen_context(system_u:object_r:pcp_pmie_exec_t,s0)
|
||||
-/usr/bin/pmcd -- gen_context(system_u:object_r:pcp_pmcd_exec_t,s0)
|
||||
/usr/bin/pmlogger -- gen_context(system_u:object_r:pcp_pmlogger_exec_t,s0)
|
||||
-/usr/bin/pmproxy -- gen_context(system_u:object_r:pcp_pmproxy_exec_t,s0)
|
||||
-
|
||||
|
||||
/usr/libexec/pcp/bin/pmcd -- gen_context(system_u:object_r:pcp_pmcd_exec_t,s0)
|
||||
-/usr/libexec/pcp/bin/pmlogger -- gen_context(system_u:object_r:pcp_pmlogger_exec_t,s0)
|
||||
/usr/libexec/pcp/bin/pmproxy -- gen_context(system_u:object_r:pcp_pmproxy_exec_t,s0)
|
||||
-/usr/libexec/pcp/bin/pmie -- gen_context(system_u:object_r:pcp_pmie_exec_t,s0)
|
||||
+
|
||||
+/usr/libexec/pcp/bin/pmie_check -- gen_context(system_u:object_r:pcp_pmie_exec_t,s0)
|
||||
+/usr/libexec/pcp/bin/pmie_daily -- gen_context(system_u:object_r:pcp_pmie_exec_t,s0)
|
||||
+/usr/libexec/pcp/bin/pmie_farm -- gen_context(system_u:object_r:pcp_pmie_exec_t,s0)
|
||||
+/usr/libexec/pcp/bin/pmlogger_check -- gen_context(system_u:object_r:pcp_pmlogger_exec_t,s0)
|
||||
+/usr/libexec/pcp/bin/pmlogger_daily -- gen_context(system_u:object_r:pcp_pmlogger_exec_t,s0)
|
||||
+/usr/libexec/pcp/bin/pmlogger_farm -- gen_context(system_u:object_r:pcp_pmlogger_exec_t,s0)
|
||||
|
||||
/usr/libexec/pcp/lib/pmcd -- gen_context(system_u:object_r:pcp_pmcd_initrc_exec_t,s0)
|
||||
/usr/libexec/pcp/lib/pmlogger -- gen_context(system_u:object_r:pcp_pmlogger_initrc_exec_t,s0)
|
||||
/usr/libexec/pcp/lib/pmproxy -- gen_context(system_u:object_r:pcp_pmproxy_initrc_exec_t,s0)
|
||||
/usr/libexec/pcp/lib/pmie -- gen_context(system_u:object_r:pcp_pmie_initrc_exec_t,s0)
|
||||
|
||||
-/usr/share/pcp/lib/pmie -- gen_context(system_u:object_r:pcp_pmie_exec_t,s0)
|
||||
-
|
||||
-/usr/share/pcp/lib/pmlogger -- gen_context(system_u:object_r:pcp_pmlogger_exec_t,s0)
|
||||
+/usr/share/pcp/lib/pmcd -- gen_context(system_u:object_r:pcp_pmcd_exec_t,s0)
|
||||
+/usr/share/pcp/lib/pmproxy -- gen_context(system_u:object_r:pcp_pmproxy_exec_t,s0)
|
||||
+/usr/share/pcp/lib/pmie -- gen_context(system_u:object_r:pcp_pmie_exec_t,s0)
|
||||
+/usr/share/pcp/lib/pmlogger -- gen_context(system_u:object_r:pcp_pmlogger_exec_t,s0)
|
||||
|
||||
/var/lib/pcp(/.*)? gen_context(system_u:object_r:pcp_var_lib_t,s0)
|
||||
|
||||
/var/lib/pcp/pmdas/.*/Install -- gen_context(system_u:object_r:pcp_plugin_exec_t,s0)
|
||||
-/var/lib/pcp/pmdas/.*/Remove -- gen_context(system_u:object_r:pcp_plugin_exec_t,s0)
|
||||
+/var/lib/pcp/pmdas/.*/Remove -- gen_context(system_u:object_r:pcp_plugin_exec_t,s0)
|
||||
/var/lib/pcp/pmdas/.*/Upgrade -- gen_context(system_u:object_r:pcp_plugin_exec_t,s0)
|
||||
|
||||
/var/log/pcp(/.*)? gen_context(system_u:object_r:pcp_log_t,s0)
|
||||
|
||||
/var/run/pcp(/.*)? gen_context(system_u:object_r:pcp_var_run_t,s0)
|
||||
-/var/run/pmcd\.socket -- gen_context(system_u:object_r:pcp_var_run_t,s0)
|
||||
-/var/run/pmlogger\.primary\.socket -l gen_context(system_u:object_r:pcp_var_run_t,s0)
|
||||
diff -Naurp pcp-5.3.7.orig/src/selinux/pcp.te pcp-5.3.7/src/selinux/pcp.te
|
||||
--- pcp-5.3.7.orig/src/selinux/pcp.te 2023-11-21 13:25:11.690247528 +1100
|
||||
+++ pcp-5.3.7/src/selinux/pcp.te 2023-11-21 14:13:03.855770809 +1100
|
||||
@@ -279,6 +279,7 @@ allow pcp_pmlogger_t pcp_pmcd_t:unix_str
|
||||
allow pcp_pmlogger_t self:unix_dgram_socket create_socket_perms;
|
||||
|
||||
allow pcp_pmlogger_t pcp_pmlogger_exec_t:file execute_no_trans;
|
||||
+allow pcp_pmlogger_t ldconfig_exec_t:file { execute execute_no_trans };
|
||||
|
||||
dontaudit pcp_pmlogger_t self:cap_userns { sys_ptrace };
|
||||
|
||||
@@ -313,6 +314,10 @@ optional_policy(`
|
||||
rpm_script_signal(pcp_pmlogger_t)
|
||||
')
|
||||
|
||||
+optional_policy(`
|
||||
+ userdom_setattr_user_home_content_files(pcp_pmlogger_t)
|
||||
+')
|
||||
+
|
||||
########################################
|
||||
#
|
||||
# pcp_plugin local policy
|
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
Name: pcp
|
||||
Version: 5.3.7
|
||||
Release: 22%{?dist}
|
||||
Release: 16%{?dist}
|
||||
Summary: System-level performance monitoring and performance management
|
||||
License: GPLv2+ and LGPLv2+ and CC-BY
|
||||
URL: https://pcp.io
|
||||
@ -18,21 +18,7 @@ Patch7: redhat-bugzilla-2093751-sudoers-docs.patch
|
||||
Patch8: redhat-bugzilla-2101574-farm-config.patch
|
||||
Patch9: redhat-bugzilla-2135314-pmfind-fix.patch
|
||||
Patch10: redhat-bugzilla-2139012-pmdasnmp-config.patch
|
||||
Patch11: redhat-bugzilla-1981886-pcp-ss-fetchgroup.patch
|
||||
Patch12: redhat-bugzilla-2159207-pmproxy-rollup-fixes.patch
|
||||
Patch13: redhat-bugzilla-2139325-openmetrics-in-grafana.patch
|
||||
Patch14: redhat-bugzilla-2150889-nfsclient-srcport.patch
|
||||
Patch15: redhat-bugzilla-2219731-hacluster-metrics.patch
|
||||
Patch16: redhat-bugzilla-2211263-pmcd-conf-rewrite.patch
|
||||
Patch17: redhat-build-jsonsl.patch
|
||||
Patch18: redhat-issues-RHEL-7507-pmdaopenmetrics-quoting.patch
|
||||
Patch19: redhat-issues-RHEL-7501-pmlogger_farm-selinux-policy.patch
|
||||
Patch20: redhat-issues-RHEL-30715-pmproxy-resp-proxy-disabled.patch
|
||||
Patch21: redhat-issues-RHEL-29708-python-day-of-year-range.patch
|
||||
Patch22: redhat-issues-RHEL-57796-pmcd-pmstore-corruption.patch
|
||||
Patch23: redhat-issues-RHEL-57799-pmpost-symlink-handling.patch
|
||||
Patch24: redhat-issues-RHEL-34586-pmproxy-pmcd-fd-leak.patch
|
||||
Patch25: redhat-issues-RHEL-57788-pmdahacluster-update.patch
|
||||
Patch11: redhat-build-jsonsl.patch
|
||||
|
||||
# The additional linker flags break out-of-tree PMDAs.
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2043092
|
||||
@ -44,13 +30,11 @@ Patch25: redhat-issues-RHEL-57788-pmdahacluster-update.patch
|
||||
%global __python2 python
|
||||
%endif
|
||||
|
||||
# UsrMerge was completed in EL 7, however the latest 'hostname' package in EL 7 contains "Provides: /bin/hostname". Likewise for /bin/ps from procps[-ng] packages.
|
||||
# UsrMerge was completed in EL 7, however the latest 'hostname' package in EL 7 contains "Provides: /bin/hostname"
|
||||
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 17
|
||||
%global _hostname_executable /usr/bin/hostname
|
||||
%global _ps_executable /usr/bin/ps
|
||||
%else
|
||||
%global _hostname_executable /bin/hostname
|
||||
%global _ps_executable /bin/ps
|
||||
%endif
|
||||
|
||||
%global disable_perl 0
|
||||
@ -301,8 +285,7 @@ BuildRequires: perl-devel perl(strict)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) perl(LWP::UserAgent) perl(JSON)
|
||||
BuildRequires: perl(Time::HiRes) perl(Digest::MD5)
|
||||
BuildRequires: perl(XML::LibXML) perl(File::Slurp)
|
||||
BuildRequires: %{_hostname_executable}
|
||||
BuildRequires: %{_ps_executable}
|
||||
BuildRequires: man %{_hostname_executable}
|
||||
%if !%{disable_systemd}
|
||||
BuildRequires: systemd-devel systemd-rpm-macros
|
||||
%endif
|
||||
@ -316,8 +299,7 @@ BuildRequires: qt5-qtsvg-devel
|
||||
%endif
|
||||
%endif
|
||||
|
||||
Requires: bash xz gawk sed grep coreutils diffutils findutils
|
||||
Requires: which %{_hostname_executable} %{_ps_executable}
|
||||
Requires: bash xz gawk sed grep findutils which %{_hostname_executable}
|
||||
Requires: pcp-libs = %{version}-%{release}
|
||||
|
||||
%if !%{disable_selinux}
|
||||
@ -2302,8 +2284,21 @@ interface rules, type enforcement and file context adjustments for an
|
||||
updated policy package.
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
%patch4 -p1
|
||||
%patch5 -p1
|
||||
%patch6 -p1
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
|
||||
%build
|
||||
# the buildsubdir macro gets defined in %setup and is apparently only available in the next step (i.e. the %build step)
|
||||
@ -3375,32 +3370,6 @@ fi
|
||||
%files zeroconf -f pcp-zeroconf-files.rpm
|
||||
|
||||
%changelog
|
||||
* Mon Sep 09 2024 Nathan Scott <nathans@redhat.com> - 5.3.7-22
|
||||
- Fix buffer sizing checks in pmstore PDU handling (RHEL-57796)
|
||||
- Guard against symlink attacks in pmpost program (RHEL-57799)
|
||||
- Fix libpcp_web webgroup slow request refcounting (RHEL-58002)
|
||||
- Update pmdahacluster for newer crm_mon versions (RHEL-57788)
|
||||
|
||||
* Thu Aug 08 2024 Nathan Scott <nathans@redhat.com> - 5.3.7-21
|
||||
- Fix python API day-of-year out of range bug (RHEL-29708)
|
||||
- Added spec deps on ps and diffutils for diff (RHEL-17081)
|
||||
|
||||
* Wed Apr 17 2024 Nathan Scott <nathans@redhat.com> - 5.3.7-20
|
||||
- Disable RESP proxying by default in pmproxy (RHEL-30715)
|
||||
|
||||
* Tue Nov 21 2023 Nathan Scott <nathans@redhat.com> - 5.3.7-19
|
||||
- Fix OpenMetrics PMDA mishandling systemd metrics (RHEL-7507)
|
||||
- Additional pmlogger_farm service SELinux policy (RHEL-7501)
|
||||
|
||||
* Wed Jul 05 2023 Nathan Scott <nathans@redhat.com> - 5.3.7-18
|
||||
- Improve pmproxy handling large HTTP requests (BZ 2159207)
|
||||
- Fix hacluster metrics with current Pacemaker (BZ 2219731)
|
||||
- Ensure pmcd.conf not needlessly over written (BZ 2211263)
|
||||
|
||||
* Thu Mar 09 2023 Nathan Scott <nathans@redhat.com> - 5.3.7-17
|
||||
- Harden pmdaopenmetrics metric name validator (BZ 2139325)
|
||||
- Fix issues in pmdanfsclient srcport handling (BZ 2150889)
|
||||
|
||||
* Thu Nov 17 2022 Nathan Scott <nathans@redhat.com> - 5.3.7-16
|
||||
- Ensure SNMP metrics config symlink installed (BZ 2139012)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user