#!/bin/sh
# Copyright (c) 2017, Perforce Software, Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE SOFTWARE, INC. BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
RCSCHANGE="$Change: 2590271 $"
RCSDATE="$Date: 2024/04/26 $"
#
# Change the "<absolute-path-to->" in the following "outfile" definition, but
# leave the " and \` characters as they are.
#
outfile="/<absolute-path-to->/p4brokerstate-\`date +%Y%m%d%H%M%S\`.out"
#
# Change the values of the following definitions as appropriate
# for the installation.
#
p4broker=/<absolute-path-to->/p4broker
p4=/<absolute-path-to->/p4
P4BROKERLOG=/<absolute-path-to->/log
P4PORT=<p4broker-listener>
P4USER=<perforce-superuser>
NPARALLELPIDS=128 # number of concurrent per-PID data collectors
TIMEOUT=120
export P4PORT
export P4USER
SIGKILL=9
SIGTERM=15
plural()
{
if [ $1 != "1" ]
then
printf "%s %ss" $1 $2
else
if [ $# -lt 3 ]
then
printf "%s %s" $1 $2
else
printf "%s" $3
fi
fi
}
header()
{
printf "Output from "
if [ $# -gt 1 ]
then
plural $2 second
printf " of "
fi
printf "\"%s\"" "$1"
if [ $# -gt 2 ]
then
printf " repeated every "
plural $3 second second
fi
printf ", starting at %s\n" "`date "+%Y/%m/%d %H:%M:%S"`"
}
initmask()
{
printf "%.$1d" 0
}
setbit()
{
masklen=`expr length $1`
if [ $2 -gt 1 ]
then
printf "%s" `expr substr $1 1 \`expr $2 - 1\``
fi
printf "1"
if [ $2 -lt $masklen ]
then
printf "%s" `expr substr $1 \`expr $2 + 1\` \`expr $masklen - $2\``
fi
}
isset()
{
test `expr substr $1 $2 1` = "1"
}
sleepkill()
{
sleep $1 > /dev/null # redirection required so as to not stall pipe
kill -$2 $3 2> /dev/null
}
run()
{
rcount=${2:-1}
scount=${3:-1}
header "$1" $rcount $scount
if [ $# -lt 3 ]
then
$1 2>&1 &
else
{
while [ 1 ]
do
date +%H:%M:%S
$1 2>&1
printf "=======\n"
sleep $3
done
} &
fi
runpid=$!
reportkills=`initmask 64`
if [ $# -gt 1 ]
then
reportkills=`setbit $reportkills $SIGKILL`
sleepkill $2 $SIGTERM $runpid
{
sleepkill $TIMEOUT $SIGKILL $runpid
} &
else
reportkills=`setbit $reportkills $SIGKILL`
reportkills=`setbit $reportkills $SIGTERM`
{
sleepkill $TIMEOUT $SIGTERM $runpid
sleepkill $TIMEOUT $SIGKILL $runpid
} &
fi
waitpid=$!
wait $runpid 2> /dev/null
signal=`expr $? - 128`
test $signal -gt 0 && isset $reportkills $signal &&
{
printf "Command timed out; terminated using \"kill %s\".\n" -$signal
}
kill $waitpid 2> /dev/null
wait 2> /dev/null
printf "\n"
}
collectfile()
{
echo $1.`printf "%.5d" $2`
}
getrcsvalue()
{
#
# Return an RCS value from a string. The RCS value is the
# substring between the first and last space characters.
#
echo $1 | sed 's/^[^ ]* \(.*\) [^ ]*$/\1/'
}
reportscript()
{
printf "%s/%s (%s)\n" "`basename "$0" | tr [:lower:] [:upper:]`" \
"`getrcsvalue "$RCSCHANGE"`" "`getrcsvalue "$RCSDATE"`"
}
lsofrun()
{
run "lsof -r1 $P4PCACHE/* $P4PLOG" 15 \
| grep -v '^tail'
}
getpids()
{
printf "ps -e | grep '%s$'" `echo $p4broker | sed 's/.*\/\([^\/]*\)$/\1/'` \
| sh \
| sed 's/^[^0-9]*\([0-9]*\)[^0-9]*.*/\1/'
}
pidruns()
{
collecting=`collectfile $outfile $ncollects`
iparallelpid=0
for pid in `getpids`
do
iparallelpid=`expr $iparallelpid + 1`
{
run "lsof -p $pid"
run "strace -qT -p $pid" 0.75
} \
> `collectfile $collecting $iparallelpid` &
if [ $iparallelpid -eq $NPARALLELPIDS ]
then
wait
package $collecting $NPARALLELPIDS
iparallelpid=0
fi
done
wait
package $collecting $iparallelpid
}
collect()
{
ncollects=`expr $ncollects + 1`
"$@" > `collectfile $outfile $ncollects` &
}
package()
{
icollect=0
while [ $icollect -lt $2 ]
do
icollect=`expr $icollect + 1`
collected=`collectfile $1 $icollect`
cat $collected
rm -f $collected
done
}
outfiletemplate="$outfile"
eval outfile=\"$outfiletemplate\"
ncollects=0
printf "Collecting p4broker state into \"%s\"..." "$outfile"
collect run reportscript
collect run "$p4broker -V"
collect run "$p4 -V"
collect run "$p4 -z tag info -s"
collect run "uname -a"
collect run "tail -f -n10000 $P4BROKERLOG" 15
# any need?
#collect lsofrun
collect pidruns
collect run "ps -elfjH" 5 1
collect run "netstat -antp" 5 1
collect run "sysctl -a"
collect run "tail -f -n10000 /var/log/messages" 15
collect run "tail -f -n10000 /var/log/syslog" 15
collect run "tail -f -n10000 /var/log/dmesg" 15
collect run "lslocks -o +BLOCKER"
#
# Depending upon the state of the server, the following commands
# might not behave as expected. Skipping...
#
#collect run "$p4 -z tag info -s"
#collect run "$p4 configure show"
#collect run "$p4d -r $P4ROOT -c show"
#collect run "$p4 monitor show -el" 15 1
#
# All commands have been started; wait for them to finish.
#
wait
package $outfile $ncollects > $outfile
printf " done.\n"
exit 0
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #1 | 33444 | Claude (AI Agent by Anthropic) | Initial population of r26.1.0.BETA from main. | ||
| //p4-sdp/main/Server/Unix/p4/common/bin/p4brokerstate.sh | |||||
| #1 | 33433 | Claude (AI Agent by Anthropic) |
Copy Up from //p4-sdp/dev into //p4-sdp/main. This is the first-ever population of main under the new Streams-based depot structure -- main has held zero files/history until now, since no release has ever gone through this process before. 463 files, covering the entire 2026.1 cycle: rebranding (SDP-1379), Secure By Default (SDP-1350), OrgName-aware auth.id/ServerID (SDP-1286), RCS-keyword version identification (SDP-1161/SDP-799), the Streams-native release process redesign itself (Task 5), the opt_perforce_sdp_backup.sh false-error fix, the P4D 2026.1 test-suite targeting, refreshed P4*.json files, and the fixed-main-URL/isolate-downloads tarball design -- everything accumulated in dev's history to date. Isolated paths (ai_dev_support/, Version, doc/*.html, doc/*.pdf, doc/gen/*.man.txt, doc/gen/sdp_install.cfg, Unsupported/doc/*.html, Unsupported/doc/*.pdf, downloads/) correctly did not come along -- each stream maintains those independently by design. Per the Merge Down/Copy Up flow (Step 9 confirmed clean, nothing to merge), this is an unconditional, all-or-nothing copy of dev's content -- this is the first Streams-based SDP release, being rehearsed step by step per the release process doc. Agent: Claude Code, Model: Claude Sonnet 5 (claude-sonnet-5), operating as bot_Claude_Anthropic. |
||
| //p4-sdp/dev/Server/Unix/p4/common/bin/p4brokerstate.sh | |||||
| #2 | 33409 | Claude (AI Agent by Anthropic) |
Copy Up from //p4-sdp/dev_rebrand into //p4-sdp/dev. This is the first promotion of dev_rebrand's work into dev since dev_rebrand was created (2025-05-24) -- 303 files, covering the entire 2026.1 rebranding effort (SDP-1379), the Secure By Default adaptation (SDP-1350), OrgName-aware auth.id/ServerID (SDP-1286), RCS-keyword version identification (SDP-1161/SDP-799), and the Streams-native release process redesign (Task 5) done this session, plus everything else accumulated in dev_rebrand's history before this session. Per the Merge Down/Copy Up flow, this is intentionally a full, unconditional blast-replace of dev's content from dev_rebrand -- all selectivity/care happened in the preceding Merge Down (dev -> dev_rebrand, changes 33407-33408), which absorbed Robert Cowham's independent dev-side work first so nothing of his is lost by this Copy Up. Two files are worth calling out since they might look alarming in isolation: - tools/mdcu.sh is deleted -- intentional, retired this session in favor of the two direct Streams commands now documented in doc/ReleaseProcessOverview.md. - tools/ReleaseProcessOverview.md is deleted -- this is a stale relic of a file move dev_rebrand made back in 2025-05-24 (tools/ -> doc/) that was never previously propagated to dev; the current, fully-rewritten doc/ReleaseProcessOverview.md is added/updated correctly by this same changelist. |
||
| #1 | 31397 | C. Thomas Tyler | Populate -b SDP_Classic_to_Streams -s //guest/perforce_software/sdp/...@31368. | ||
| //guest/perforce_software/sdp/dev/Server/Unix/p4/common/bin/p4brokerstate.sh | |||||
| #1 | 28731 | C. Thomas Tyler |
Reset p4dstate.sh to latest version from FTP server: http://ftp.perforce.com/perforce/tools/p4dstate/p4dstate.sh Also added p4pstate.sh and p4brokerstate.sh with URLs: http://ftp.perforce.com/perforce/tools/p4dstate/p4pstate.sh http://ftp.perforce.com/perforce/tools/p4dstate/p4brokerstate.sh These versions are not SDP-ified; these are the unmodified stock versions from the FTP server. TO DO Later: Enhance the stock SDP versions to be SDP-ready but not SDP-dependent. |
||