File: 1723

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 (64 lines) | stat: -rwxr-xr-x 1,649 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
#!/bin/sh
# PCP QA Test No. 1723
# Exercise the bpftrace PMDA - check autostart script directory permissions
#

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

. ./common.bpftrace

_pmdabpftrace_check
echo "tracepoint:syscalls:sys_enter_openat" >$tmp.tmp
_pmdabpftrace_check_probes $tmp.tmp


_cleanup()
{
    $sudo rm -f $PCP_PMDAS_DIR/bpftrace/autostart/*.bt
    _pmdabpftrace_cleanup
}

status=1       # failure is the default!

_prepare_pmda bpftrace
trap "_cleanup; exit \$status" 0 1 2 3 15
_stop_auto_restart pmcd


# real QA test starts here
cat <<EOF | sudo tee $PCP_PMDAS_DIR/bpftrace/autostart/script.bt > /dev/null
// name: testscript
BEGIN { @scalar = 2; }
tracepoint:syscalls:sys_enter_openat { @ = count(); }
EOF

echo "=== check with chmod 777 ==="
$sudo chmod 777 $PCP_PMDAS_DIR/bpftrace/autostart
cat <<EOF | _pmdabpftrace_install
# Installed by PCP QA test $seq on `date`
EOF
pminfo bpftrace
grep -o "/bpftrace/autostart must be exclusively writable by root" $PCP_LOG_DIR/pmcd/bpftrace.log

echo "=== check with chmod 775, wrong group ==="
$sudo chmod 775 $PCP_PMDAS_DIR/bpftrace/autostart
$sudo chgrp $PCP_USER $PCP_PMDAS_DIR/bpftrace/autostart
cat <<EOF | _pmdabpftrace_install
# Installed by PCP QA test $seq on `date`
EOF
pminfo bpftrace
grep -o "/bpftrace/autostart must be exclusively writable by root" $PCP_LOG_DIR/pmcd/bpftrace.log

echo "=== check with chmod 775, correct group ==="
$sudo chmod 775 $PCP_PMDAS_DIR/bpftrace/autostart
$sudo chgrp root $PCP_PMDAS_DIR/bpftrace/autostart
cat <<EOF | _pmdabpftrace_install
# Installed by PCP QA test $seq on `date`
EOF
pminfo bpftrace


_pmdabpftrace_remove
status=0
exit