This file is indexed.

/var/lib/pcp/testsuite/340 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
#! /bin/sh
# PCP QA Test No. 340
# PMCD denies all access?
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc.  All Rights Reserved.
#

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

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

perl -e "use PCP::PMDA" >/dev/null 2>&1
test $? -eq 0 || _notrun "PCP::PMDA perl module is not installed"

status=1	# failure is the default!

[ -z "$PCP_PMLOGGERCONTROL_PATH" ] && \
	PCP_PMLOGGERCONTROL_PATH="$PCP_SYSCONF_DIR/pmlogger/control"

_filter_pminfo()
{
    sed \
      -e 's/Connection reset by peer/No permission to perform requested operation/'
}

# real QA test starts here

config=$PCP_PMCDCONF_PATH
oconfig=$tmp.oconfig
me=`_get_fqdn`
_needclean=true

cleanup()
{
    if $_needclean
    then
        _needclean=false
	[ -f $oconfig ] && $sudo cp $oconfig $config
	_change_config pmlogger on
	$sudo $PCP_RC_DIR/pcp restart | _filter_pcp_start
	_wait_for_pmcd
	_wait_for_pmlogger
    fi

    if $_chkconfig_pmlogger_on
    then
	[ -f $tmp.control ] && \
	    $sudo cp $tmp.control $PCP_PMLOGGERCONTROL_PATH
	$sudo $PCP_RC_DIR/pcp restart | _filter_pcp_start
	_wait_for_pmcd
	_wait_for_pmlogger
    	_chkconfig_pmlogger_on=false
    fi
    	
    $sudo rm -f $tmp.*
    exit $status
}

trap "cleanup; exit \$status" 0 1 2 3 15

rm -f $seq.full

# real QA test starts here
dov1hosts=true

# disable all pmloggers ...
_chkconfig_pmlogger_on=true
$sudo cp $PCP_PMLOGGERCONTROL_PATH $tmp.control
cat <<End-of-File >$tmp.tmp
# dummy file created by qa/$seq on `date`
# the goal here is to have a controlled primary logger that does
# not make requests to pmcd!
\$version=1.1
LOCALHOSTNAME y n $PCP_LOG_DIR/pmlogger/LOCALHOSTNAME -c /dev/null
End-of-File
$sudo cp $tmp.tmp $PCP_PMLOGGERCONTROL_PATH
#_change_config pmlogger off

$sudo cp $config $oconfig

other1=bogus
other2=bogus

other1=`./getpmcdhosts -n 1 -L -v 'pcp=1' 2>$tmp.err`
if [ -z "$other1" ]
then
    echo "[test configuration only for v2 hosts]"
    dov1hosts=false
    rm -f $seq.out ; ln $seq-v2.out $seq.out
else
    rm -f $seq.out ; ln $seq-v1v2.out $seq.out
fi

other2=`./getpmcdhosts -n 1 -L -v 'pcp>=2' 2>$tmp.err`
if [ -z "$other2" ]
then
    # Unable to find remote PCP 2.x host
    cat $tmp.err >$seq.notrun
    exit
fi

echo "other1=$other1" >>$seq.full
echo "other2=$other2" >>$seq.full

list1=
if $dov1hosts
then
    list1=`_all_hostnames $other1`
    if [ -z "$list1" ]
    then
	echo "Error: failed to expand hostnames for other1=\"$other1\""
	exit
    fi
    echo "V1 list1=$list1" >>$seq.full
    list2=`_all_hostnames $other2`
    if [ -z "$list2" ]
    then
	echo "Error: failed to expand hostnames for other2=\"$other2\""
	exit
    fi
    echo "V1 list2=$list2" >>$seq.full

    cat >$tmp.access <<End-Of-File

[access]
disallow $list1 : all;
disallow $list2 : all;
allow * :	   all;
End-Of-File
else
    list2=`_all_hostnames $other2`
    if [ -z "$list2" ]
    then
	echo "Error: failed to expand hostnames for other2=\"$other2\""
	exit
    fi
    echo "V2 list2=$list2" >>$seq.full

    cat >$tmp.access <<End-Of-File

[access]
disallow $list2 : all;
allow * :	   all;
End-Of-File
fi
sed -e '/\[access]/q' $oconfig  \
| sed -e '/\[access]/d' >$tmp.config
cat $tmp.access >>$tmp.config
$sudo cp $tmp.config $config

echo >>$seq.full
echo "---- start pmcd.conf ----" >>$seq.full
cat $config >>$seq.full
echo "---- end pmcd.conf ----" >>$seq.full

$sudo $PCP_RC_DIR/pcp restart | _filter_pcp_start
_wait_for_pmcd

echo "    checking default access for this host ..."
pminfo -f sample.long.million \
| _filter_pminfo
pmstore sample.write_me 111

if $dov1hosts
then
    echo
    echo "    checking access for list1 (should fail)"
    ssh -q pcpqa@$other1 pminfo -h $me -f pmcd.numclients 2>&1 \
      | sed -e 's/"'$me'"/"HOST"/g'
fi
echo
echo "    checking access for list2 (should fail)"
ssh -q pcpqa@$other2 pminfo -h $me -f pmcd.numclients 2>&1 \
  | sed -e 's/"'$me'"/"HOST"/g'

echo "pmcd.log:======="
sed -n <$PCP_PMCDLOG_PATH -e '/endclient/{
s/\[[0-9]*]/[M]/
s/(fd [0-9]*)/(fd N)/
p
}'
echo "================"

iplist1=
if $dov1hosts
then
    iplist1=`_all_ipaddrs $other1`
    if [ -z "$iplist1" ]
    then
	echo "Error: failed to expand ip addrs for other1=\"$other1\""
	exit
    fi
    echo "V1 iplist1=$iplist1" >>$seq.full
    iplist2=`_all_ipaddrs $other2`
    if [ -z "$iplist2" ]
    then
	echo "Error: failed to expand ip addrs for other2=\"$other2\""
	exit
    fi
    echo "V1 iplist2=$iplist2" >>$seq.full

    cat >$tmp.access <<End-Of-File

[access]
disallow $iplist1 : all;
disallow $iplist2 : all;
allow * :	   all;
End-Of-File
else
    iplist2=`_all_ipaddrs $other2`
    if [ -z "$iplist2" ]
    then
	echo "Error: failed to expand ip addrs for other2=\"$other2\""
	exit
    fi
    echo "V2 iplist2=$iplist2" >>$seq.full

    cat >$tmp.access <<End-Of-File

[access]
disallow $iplist2 : all;
allow * :	   all;
End-Of-File
fi

sed -e '/\[access]/q' $oconfig  \
| sed -e '/\[access]/d' >$tmp.config
cat $tmp.access >>$tmp.config
$sudo cp $tmp.config $config

echo >>$seq.full
echo "---- start pmcd.conf ----" >>$seq.full
cat $config >>$seq.full
echo "---- end pmcd.conf ----" >>$seq.full

$sudo $PCP_RC_DIR/pcp restart | _filter_pcp_start
_wait_for_pmcd

echo "    checking default access for this host ..."
pminfo -f sample.long.million
pmstore sample.write_me 444

if $dov1hosts
then
    echo
    echo "    checking access for iplist1 (should fail)"
    ssh -q pcpqa@$other1 pminfo -h $me -f pmcd.numclients 2>&1 \
      | sed -e 's/"'$me'"/"HOST"/g'
fi

echo
echo "    checking access for iplist2 (should fail)"
ssh -q pcpqa@$other2 pminfo -h $me -f pmcd.numclients 2>&1 \
  | sed -e 's/"'$me'"/"HOST"/g'

echo "pmcd.log:======="
sed -n <$PCP_PMCDLOG_PATH -e '/endclient/{
s/\[[0-9]*]/[M]/
s/(fd [0-9]*)/(fd N)/
p
}'
echo "================"

# success, all done
status=0
exit