This file is indexed.

/var/lib/pcp/testsuite/113 is in pcp-testsuite 3.9.10.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
#! /bin/sh
# PCP QA Test No. 113
# check filesys metrics against df and mount
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc.  All Rights Reserved.
#

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

# get standard filters
. ./common.product
. ./common.filter
. ./common.check

if [ $PCP_PLATFORM = solaris ]
then
    _notrun No filesys metrics for Solaris
elif [ $PCP_PLATFORM = linux ]
then
    loopcount=`$sudo losetup -a | wc -l`
    [ $loopcount -eq 0 ] || _notrun "System has active loop devices, bailing"
fi

status=0
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15

rm -f $seq.full

filesystems=`mount \
	     | sed -e 's/[(,)]//g' \
             | $PCP_AWK_PROG '
$4 == "type" && ($5 == "efs" || $5 == "xfs" || $5 == "ext2" || $5 == "ext3" || $5 == "ext4") { print $1 }
$4 == "hfs" { print $1 }'`

if [ -z "$filesystems" ]
then
    echo "Botch: cannot extract filesystems list from mount(1) output ..."
    mount
    sts=1
    exit
fi

rootdev=`df / | $PCP_AWK_PROG 'NR == 2 { print $1 }'`
echo "rootdev=$rootdev" >>$seq.full
if [ -z "$rootdev" ]
then
    echo "Arrgh, cannot get device for root fs from df(1) ..."
    df /
    exit
fi
if [ -L "$rootdev" ]
then
    if which realpath >/dev/null 2>&1
    then
	symroot=`realpath $rootdev`
    else
	symroot=`ls -l $rootdev | sed -e 's/.*-> //'`
	if [ -z "$symroot" ]
	then
	    echo "Arrgh, cannot get symlink for device for root fs ..."
	    ls -l $rootdev
	    exit
	fi
	case "$symroot"
	in
	    ../*)
		# handle case like ...
		# /dev/disk/by-uuid/467793a8-5191-4940-90fb-38a6f28b035d -> ../../sda1
		dir=`dirname $rootdev`
		while true
		do
		    case "$symroot"
		    in
		    	../*)
			    dir=`echo $dir | sed -e 's@/[^/]*$@@'`
			    symroot=`echo $symroot | sed -e 's@\.\./\([^.]\)@\1@'`
			    ;;
			*)
			    symroot=${dir}/${symroot}
			    break
			    ;;
		    esac
		done
		;;
	esac
    fi
    echo "symroot=$symroot" >>$seq.full
    rootdev=$symroot
fi

# disk name aliases are a real pain ...
#
mount \
| sed \
    -e '/ type proc/d' \
    -e '/ type sysfs/d' \
    -e '/ type devpts/d' \
    -e '/ type devtmpfs/d' \
    -e '/ type tmpfs/d' \
    -e '/ type debugfs/d' \
    -e '/ type autofs/d' \
    -e '/ type securityfs/d' \
    -e '/ type selinuxfs/d' \
    -e '/ type rpc_pipefs/d' \
    -e '/ type fusectl/d' \
    -e '/ type binfmt_misc/d' \
    -e '/ type fuse.gvfs-fuse-daemon/d' \
    -e '/ type cgroup/d' \
    -e '/ type hugetlbfs/d' \
    -e '/ type mqueue/d' \
    -e '/ type rootfs/d' \
    -e 's/[ 	].*//' \
| while read dev
do
    [ ! -L $dev ] && continue
    [ "$dev" = "/dev/root" ] && continue
    echo "mount device: $dev" >>$seq.full
    if which realpathx >/dev/null 2>&1
    then
	sym=`realpath $dev`
    else
	sym=`ls -l $dev | sed -e 's/.*-> //'`
	if [ -z "$sym" ]
	then
	    echo "Arrgh, cannot get symlink for device for fs ..."
	    ls -l $dev
	    exit
	fi
	case "$sym"
	in
	    ../*)
		# handle case like ...
		# /dev/disk/by-uuid/467793a8-5191-4940-90fb-38a6f28b035d -> ../../sda1
		dir=`dirname $dev`
		while true
		do
		    case "$sym"
		    in
		    	../*)
			    dir=`echo $dir | sed -e 's@/[^/]*$@@'`
			    sym=`echo $sym | sed -e 's@\.\./\([^.]\)@\1@'`
			    ;;
			*)
			    sym=${dir}/${sym}
			    break
			    ;;
		    esac
		done
		;;
	esac
    fi
    echo "sym=$sym" >>$seq.full
    link=$sym
    [ "$link" != "$dev" ] && echo "s;$dev;$link;" >>$tmp.map
done

if [ -f $tmp.map ]
then
    # need longest prefix replacements first ... ~ should sort "high"
    #
    sed -e 's/;/~/' $tmp.map \
    | LC_COLLATE=POSIX sort \
    | sed -e 's/~/;/' >$tmp.tmp
    mv $tmp.tmp $tmp.map
else
    echo "s;$rootdev;/dev/root;" >>$tmp.map
fi

if grep "s;$rootdev;" $tmp.map >/dev/null
then
    # already have a mapping for this one
    :
else
    echo "s;$rootdev;/dev/root;" >>$tmp.map
fi

echo "-- map --" >>$seq.full
cat $tmp.map >>$seq.full

numval=`pmprobe -v filesys.avail 2>/dev/null | $PCP_AWK_PROG '{print $2}'`
if [ ! -z "$numval" -a "$numval" -gt 0 ]
then
    # better match for df "free" if available on Linux
    #
    free=filesys.avail
else
    free=filesys.free
fi

echo "-- pcp --" >>$seq.full
pminfo -f filesys >>$seq.full

pminfo -f \
    filesys.capacity \
    filesys.used \
    $free \
    filesys.maxfiles \
    filesys.usedfiles \
    filesys.freefiles \
    filesys.mountdir \
    filesys.full \
| sed \
    -e '/"devfs"/d' \
    -e '/"map -hosts"/d' \
    -e '/"map auto_home"/d' \
    -e "s/$free/filesys.free/" \
    -e 's/\[//g' -e 's/\]//g' \
    -e 's/\"//g' \
| $PCP_AWK_PROG '
/^[ \t]*$/	{next}
/^filesys/	{metric=$1}
$1 == "inst" { printf "%s_%s %s\n", metric, $4, $6 }' \
| LC_COLLATE=POSIX sort > $tmp.1

echo "-- pcp-filtered-1 --" >>$seq.full
cat $tmp.1 >>$seq.full

# map symbolic link names and /dev/root for pcp output
#
sed -f $tmp.map $tmp.1 | LC_COLLATE=POSIX sort >$tmp.tmp
mv $tmp.tmp $tmp.1

echo "-- pcp-filtered-2 --" >>$seq.full
cat $tmp.1 >>$seq.full

(for f in $filesystems
do
    if [ $PCP_PLATFORM = irix ]
    then
	df -lki $f \
	| $PCP_AWK_PROG '
/^Filesystem/	{next}
		{
		  dev="'$f'"
		  printf "%s_%s %d\n", "filesys.capacity",  dev, $3
		  printf "%s_%s %d\n", "filesys.used", dev, $4
		  printf "%s_%s %d\n", "filesys.free", dev, $5
		  printf "%s_%s %d\n", "filesys.maxfiles", dev, $7+$8
		  printf "%s_%s %d\n", "filesys.usedfiles", dev, $7
		  printf "%s_%s %d\n", "filesys.freefiles", dev, $8
		  printf "%s_%s %d\n", "filesys.mountdir", dev, $10
		}' 
    elif [ $PCP_PLATFORM = linux -o $PCP_PLATFORM = darwin ]
    then
	$sudo df -lk \
	| grep $f \
	| $PCP_AWK_PROG '
BEGIN		{ dev="'$f'" }
NF == 1		{ next }
NF == 6		{ printf "%s_%s %d\n", "filesys.capacity",  dev, $2
		  printf "%s_%s %d\n", "filesys.used", dev, $3
		  printf "%s_%s %d\n", "filesys.free", dev, $4
		  printf "%s_%s %d\n", "filesys.mountdir", dev, $6
		}
NF == 5		{ printf "%s_%s %d\n", "filesys.capacity",  dev, $1
		  printf "%s_%s %d\n", "filesys.used", dev, $2
		  printf "%s_%s %d\n", "filesys.free", dev, $3
		  printf "%s_%s %d\n", "filesys.mountdir", dev, $5
		}'
	$sudo df -li \
	| grep $f \
	| $PCP_AWK_PROG '
BEGIN		{ dev="'$f'" }
NF == 1		{ next }
NF == 6		{ printf "%s_%s %d\n", "filesys.maxfiles",  dev, $2
		  printf "%s_%s %d\n", "filesys.usedfiles", dev, $3
		  printf "%s_%s %d\n", "filesys.freefiles", dev, $4
		}
NF == 5		{ printf "%s_%s %d\n", "filesys.maxfiles",  dev, $1
		  printf "%s_%s %d\n", "filesys.usedfiles", dev, $2
		  printf "%s_%s %d\n", "filesys.freefiles", dev, $3
		}
NF == 9		{ printf "%s_%s %d\n", "filesys.maxfiles",  dev, $6+$7
		  printf "%s_%s %d\n", "filesys.usedfiles", dev, $6
		  printf "%s_%s %d\n", "filesys.freefiles", dev, $7
		}'
    else
	echo "Blah, what sort df magic is needed for a \"$PCP_PLATFORM\" system?" >&2
	status=1
	exit
    fi
done) | LC_COLLATE=POSIX sort > $tmp.2

# map symbolic link names and /dev/root for df output
#
sed -f $tmp.map $tmp.2 | LC_COLLATE=POSIX sort >$tmp.tmp
mv $tmp.tmp $tmp.2

echo "-- df --" >>$seq.full
$sudo df -li >>$seq.full 2>&1
echo "-- df-filtered --" >>$seq.full
cat $tmp.2 >>$seq.full

LC_COLLATE=POSIX join -a2 -1 1 $tmp.1 $tmp.2 \
| $PCP_AWK_PROG '{
    a=$2; b=$3; d=a-b;
    if (d<0) d = -d;
    if (d > 5 && d>a/100) {
	print "'$0' : Diff of more than 5 in total and 1 percent: ", $0
	err++
    }
}
END {
    exit err
}'

status=$?
if [ $status != 0 ]
then
    echo $0 =========== pcp output ==============
    cat $tmp.1
    echo $0 =========== df output ==============
    cat $tmp.2
    echo $0 exit status $status
fi

exit $status