File: 1290

package info (click to toggle)
pcp 7.1.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 252,748 kB
  • sloc: ansic: 1,483,656; sh: 182,366; xml: 160,462; cpp: 83,813; python: 24,980; perl: 18,327; yacc: 6,877; lex: 2,864; makefile: 2,738; awk: 165; fortran: 60; java: 52
file content (439 lines) | stat: -rwxr-xr-x 11,243 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#!/bin/sh
# PCP QA Test No. 1290
# Basic pmproxy functionality
#
# valgrind version of qa/294
#
# Copyright (c) 2005 Silicon Graphics, Inc.  All Rights Reserved.
# Copyright (c) 2021 Ken McDonell.  All Rights Reserved.
#

seq=`basename $0`
echo "QA output created by $seq"

# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check

_check_valgrind
which pmdumptext >/dev/null 2>&1 || _notrun "No installed pmdumptext binary"

#debug# tmp=`pwd`/tmp
signal=$PCP_BINADM_DIR/pmsignal
status=1	# failure is the default!
username=`id -u -n`
trap "_cleanup; $sudo rm -rf $tmp.*; exit \$status" 0 1 2 3 15

pmproxy_was_running=false
[ -f $PCP_RUN_DIR/pmproxy.pid ] && pmproxy_was_running=true
echo "pmproxy_was_running=$pmproxy_was_running" >>$seq_full
[ -f $PCP_RUN_DIR/pmproxy.pid ] && echo "pmproxy.pid: `cat $PCP_RUN_DIR/pmproxy.pid`" >>$seq_full

_cleanup()
{
    if [ ! -f $tmp.started ]
    then
	# valgrind never got our pmproxy started ...
	#
	for suff in out err
	do
	    echo "=== valgrind $suff ===" >>$seq_full
	    cat $tmp._valgrind.$suff >>$seq_full
	done
    fi
    echo "=== valgrind report ===" >>$seq_full
    cat $tmp._valgrind >>$seq_full
    if $pmproxy_was_running
    then
	echo "Restart pmproxy ..." >>$seq_full
	_service pmproxy restart >>$seq_full 2>&1
	_wait_for_pmproxy
    else
	echo "Stopping pmproxy ..." >>$seq_full
	_service pmproxy stop >>$seq_full 2>&1
    fi
}

# in addition to the ususal filtering tasks ..
# on slow VMs (like bozo-vm) we may need to dodge warnings
# from pmie's rule scheduler around pmcd reconnection ... the awk
# script at the end iof the pipeline does this.
#
_filter()
{
    sed \
	-e '/hinv/s/ [0-9][0-9]*$/ N/' \
	-e '/^[A-Z][a-z][a-z] [A-Z][a-z][a-z]  *[0-9][0-9]* [0-9][0-9]:[0-9][0-9]:[0-9][0-9]/{
# pmdumptext
s//DATE/
s/	[0-9][0-9.]*/	N/g
}' \
	-e '/^\[[A-Z][a-z][a-z] [A-Z][a-z][a-z]  *[0-9][0-9]* [0-9][0-9]:[0-9][0-9]:[0-9][0-9]]/{
# pmie trailer
s//[DATE]/
s/([0-9][0-9]*)/(PID)/
}' \
	-e '/expr_1/s/  *[0-9][0-9.]*/ N/g' \
	-e '/^@ [A-Z][a-z][a-z] [A-Z][a-z][a-z]  *[0-9][0-9]* [0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9][[0-9][0-9][0-9]/{
# pmstat header1
s//@ DATE/
}' \
	-e '/^   1 min   swpd   free   buff  cache   pi   po   bi   bo   in   cs  us  sy  id/{
# pmstat header3
s//   1 min   swpd   free   buff  cache   si   so   bi   bo   in   cs  us  sy  id/
}' \
	-e '/[0-9?][0-9.Kmg]*  *[0-9?][0-9.Kmg]*  *[0-9?][0-9.Kmg]*  *[0-9?][0-9.Kmg]*  *[0-9?][0-9.Kmg]*/{
# pmstat data
s/  *?/ ?/g
s/  *[0-9][0-9.Kmg]*/ N/g
}' \
    | _filter_me \
    | $PCP_AWK_PROG '
skip == 1 && /^[^ ]/		{ skip = 0 }
/^run: schedule eval/		{ skip = 1 }
/^sleepTight: negative/		{ skip = 1 }
/^Last sleepTight until:/	{ skip = 1 }
/^This sleepTight\() entry:/	{ skip = 1 }
/^Harvest children done:/	{ skip = 1 }
/^Want sleepTight until:/	{ skip = 1 }
/Task dump @/			{ skip = 1 }
skip == 0			{ print }'

}

_filter_me()
{
    sed \
	-e "s/`hostname`/MY_HOSTNAME/g" \
	-e "s/`hostname | sed -e 's/\..*//'`/MY_HOSTNAME/" \
	-e "s/local:/MY_HOSTNAME/" \
	-e "s/localhost\.localdomain/MY_HOSTNAME/" \
	-e "s/localhost/MY_HOSTNAME/" \
	-e "s#$PCP_VAR_DIR#PCP_VAR_DIR#g" \
	-e "s#$PCP_BINADM_DIR#PCP_BINADM_DIR#g" \
	-e "s#$PCP_SYSCONF_DIR/pmlogger/config.pmstat#TMP.logger.config#g" \
	-e "s,$tmp.config,TMP.logger.config,g" \
	-e "s/$username/USERNAME/g" \
	-e "s#$tmp#TMP#g"
}

_filter_report()
{
   _filter_valgrind | \
   sed -e '/^ERROR/d' \
   | _filter_me
}

_filter_pmproxy()
{
    sed \
	-e '/^__pmSetSocketIPC: fd=/d' \
	-e '/^__pmSetDataIPC:/d' \
	-e '/^__pmDataIPC: /d' \
	-e '/^IPC table fd/d' \
	-e '/^pmproxy: disabled time series, requires libuv support (missing)/d' \
    # end
}

# see comments below, ahead of where this is used ...
#
_filter_pmstat()
{
    tee -a $seq_full \
    | $PCP_AWK_PROG '
BEGIN	{ skip = 0; h1 = h2 = h3 = 0 }
skip == 1	{
	    if ($0 ~ /End of PCP archive/)
		skip = 0
	    else
		next
	}
NF == 0	{ print; next }
$2 == "DATE"	{
	    # heading line 1 only once
	    if (h1)
		next
	    h1 = 1
	}
$1 == "loadavg"	{
	    # heading line 2 only once
	    if (h2)
		next
	    h2 = 1
	}
$3 == "swpd"	{
	    # heading line 3 only once
	    if (h3)
		next
	    h3 = 1
	}
	{ n = q = 0
	  for (i = 1; i <= NF; i++) {
	    if ($i == "?") q++
	    if ($i == "N") n++
	  }
	  if (q > NF / 2) {
	    # more than half no data, skip this one
	    next
	  }
	  if (n == NF) {
	    if (skip == 0) {
		# only report first line of N N ... N
		skip = 1
	    }
	  }
	  print
	}'
}

_do()
{
    echo
    echo "+++ $* +++" | tee -a $seq_full | _filter_me
    if which $1 >/dev/null 2>&1
    then
	eval $* 2>&1 | tee -a $seq_full | _filter
	connects=`grep AcceptNewClient $tmp.log | wc -l | sed -e 's/  *//g'`
	disconnects=`grep DeleteClient $tmp.log | wc -l | sed -e 's/  *//g'`
	difference=$(($connects - $disconnects))
	echo "N connects"
	echo "N-$difference disconnects"
    else
	echo "Skipped, no $1 binary installed"
    fi
}

_do_config()
{
    cat >$tmp.config <<End-of-File
log advisory on default {
    kernel.all.load
    swap.used
    mem.util.free
    mem.util.bufmem
    mem.bufmem
    mem.util.cached
    swap.in
    swap.pagesin
    swap.out
    swap.pagesout
    disk.all.blkread
    disk.all.blkwrite
    kernel.all.intr
    kernel.all.intr.non_vme
    kernel.all.pswitch
    kernel.all.cpu
}
End-of-File
}

$PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep -E '[P]PID|/[p]mproxy( |$)' >>$seq_full
if ! _service pmproxy stop >/dev/null 2>&1; then _exit 1; fi
$sudo $signal -s KILL -a pmproxy >/dev/null 2>&1
$PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep -E '[P]PID|/[p]mproxy( |$)' >>$seq_full

mkdir -p $tmp.rundir
PCP_RUN_DIR=$tmp.rundir; export PCP_RUN_DIR
proxyargs="-Dcontext -U $username"

__extra=''
# copied from _run_valgrind (which we cannot use here) ...
#
# extract version number I.J.K ... ignore anything after that,
# e.g. .SVN or .SVN-Debian for Debian-based distros
#
__version=`valgrind --version | sed -e 's/valgrind-//' -e 's/\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/'`
valgrind --help >$tmp.valgrind.help 2>&1
grep -q .--vgdb= <$tmp.valgrind.help && __extra="$__extra --vgdb=no"
grep -q .--show-error-list= <$tmp.valgrind.help && __extra="$__extra --show-error-list=yes"
if grep -q .--show-leak-kinds= <$tmp.valgrind.help
then
    __extra="$__extra --show-leak-kinds=definite"
else
    if grep -q .--show-possibly-lost= <$tmp.valgrind.help
    then
        __extra="$__extra --show-reachable=no --show-possibly-lost=no"
    else
        __extra="$__extra --show-reachable=no"
    fi
fi
if [ -f $here/valgrind-suppress-$__version ]
then
    __extra="$__extra --suppressions=$here/valgrind-suppress-$__version"
    echo "Warning: using extra $__extra" >>$seq_full
else
    echo "Warning: no extra suppressions found for valgrind version $__version" >>$seq_full
fi
# skip valgrind errors in upstream non-PCP code, like libvalkey ...
# (seen on vm11 Debian 10.13)
# ... same suppressions as for qa/1662
#
cat <<'End-of-File' >$tmp.suppress
{
   sds.c: % operator: v seems well defined, so maybe valgrind botch
   Memcheck:Cond
   fun:__umoddi3
   fun:sdsll2str
   fun:sdscatfmt
   fun:keys_series_label
   ...
   fun:keys_series_labelset
   fun:keys_series_metadata
   fun:keys_series_metric
   ...
}
{
   sds.c: / operator: ditto
   Memcheck:Cond
   fun:__udivdi3
   fun:sdsll2str
   fun:sdscatfmt
   fun:keys_series_label
   ...
   fun:keys_series_labelset
   fun:keys_series_metadata
   fun:keys_series_metric
   ...
}
{
   sds.c: conditional: value and v seems well defined, so maybe valgrind botch
   Memcheck:Cond
   fun:sdsll2str
   fun:sdscatfmt
   fun:keys_series_label
   ...
   fun:keys_series_labelset
   fun:keys_series_metadata
   fun:keys_series_metric
   ...
}
{
   sds.c: same as above when we don't have symbols
   Memcheck:Cond
   ...
   fun:sdscatfmt
   ...
   fun:pmSeriesDiscoverValues
   ...
}
{
   net.c: uninitialized buffer on async i/o path
   Memcheck:Param
   socketcall.send(msg)
   fun:send
   fun:redisNetWrite
   fun:redisBufferWrite
   fun:redisAsyncWrite
   ...
}
{
   net.c: same as above when we don't have symbols
   Memcheck:Param
   socketcall.send(msg)
   fun:send
   ...
   fun:uv__io_poll
   fun:uv_run
   ...
}
End-of-File
__extra="$__extra --suppressions=$tmp.suppress"
valgrind \
    --trace-children=yes \
    --leak-check=full --read-var-info=yes --gen-suppressions=all \
    --show-leak-kinds=all \
    --suppressions=$here/valgrind-suppress $__extra \
    --log-file=$tmp._valgrind \
	$PCP_BINADM_DIR/pmproxy $proxyargs -l $tmp.log \
	    2>$tmp._valgrind.err >$tmp._valgrind.out &

# assume default port ...
#
rm -f $tmp.started
_wait_for_pmproxy 44322 $tmp.log || _exit 1
touch $tmp.started

PMPROXY_HOST=localhost; export PMPROXY_HOST
$PCP_BINADM_DIR/pmcd_wait -t 5sec -h localhost@localhost
$PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep -E '[P]PID|/[p]mproxy( |$)' >>$seq_full
cat $tmp.log >> $seq_full

# on a slow VM, valgrind can be painful, so a little more patience may
# be required
#
PMCD_REQUEST_TIMEOUT=20; export PMCD_REQUEST_TIMEOUT

# real QA test starts here
_do pminfo -h $PMPROXY_HOST -d pmcd.agent
_do pminfo -h $PMPROXY_HOST -f sample.hordes
_do pmprobe -v -h localhost hinv.ncpu
_do pmval -h `hostname` -t 0.5 -s 3 sample.bin

echo "kernel.all.load;" >$tmp.in
_do pmie -h $PMPROXY_HOST -c $tmp.in -v -t 0.5 -T 1.75 
echo "kernel.all.cpu.user :localhost;" >$tmp.in
_do pmie -h $PMPROXY_HOST -c $tmp.in -v -t 0.5 -T 1.75 
_do pmdumptext -h `hostname` -t 0.5 -s 2 sample.string.hullo
_do pmdumptext -t 0.5 -s 2 localhost:sample.string.hullo
_do pmdumptext -t 0.5 -s 2 `hostname`:kernel.all.load

# Note: there used to be special casing for Darwin/Solaris platforms
# here.  This is wrong, pmstat must still run on these platforms and
# produce no values for some columns.

_do pmstat -h $PMPROXY_HOST -t 0.5 -s 2
_do_config 
# and compared to the non-valgrind version, we have to run pmlogger
# for more samples to make sure we get at least some good data
#
_do pmlogger -h localhost -c $tmp.config -t 0.5sec -s 8 -l $tmp.logger.log $tmp.arch
# and compared to the non-valgrind version, we need to cull out
# the no data available rows and deal with non-determinism in
# the number of reported data available samples, and only
# output the pmstat headings once
#
_do pmstat -t 0.5sec -a $tmp.arch -z 2>&1 \
| _filter_pmstat

# for debugging this test ...
#
pmdumplog -Lm -z $tmp.arch >>$seq_full 2>&1
#pmstat -Dfetch,interp -S +0.4sec -t 0.5sec -a $tmp.arch -z >>$seq_full 2>&1

( echo ""; echo "=== pmproxy.log ===" ) >>$seq_full
cat $tmp.log >>$seq_full

# stop pmproxy and harvest output ...
#
$sudo $signal -s KILL -a pmproxy >>$seq_full 2>&1
sleep 2
# valgrind goes by different names ... valgrind, valgrind.bin, ...
# kill 'em all!
#
$PCP_PS_PROG $PCP_PS_ALL_FLAGS \
| sed -n -e '/\/[v]algrind.*\/pmproxy/{
s/^[^ ][^ ]* *//
s/ .*//
p
}' \
| while read pid
do
    echo "Killing PID $pid ..." >>$seq_full
    $sudo $signal -s KILL $pid >>$seq_full 2>&1
done
wait

# also copied from _run_valgrind (which we cannot use here) ...
#
echo
echo "=== pmproxy std out ==="
cat $tmp._valgrind.out
echo "=== pmproxy std err ==="
cat $tmp._valgrind.err
echo "=== filtered valgrind report ==="
cat $tmp._valgrind | _filter_report

# success, all done
status=0
exit