Skip to content

Instantly share code, notes, and snippets.

@ethercflow
Created June 19, 2018 12:42
Show Gist options
  • Select an option

  • Save ethercflow/8f6988db8f7d82d835bc44458314f923 to your computer and use it in GitHub Desktop.

Select an option

Save ethercflow/8f6988db8f7d82d835bc44458314f923 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
#
# drsnoop - trace direct reclaim latency.
# Written using Linux ftrace.
#
# This traces direct reclaim at the vmscan interface, using the vmscan:
# tracepoints. This can help characterize the direct reclaim requested
# and their resulting performance.
#
# USAGE: ./drsnoop [-hst] [-p pid] [-n name] [duration]
#
# Run "drsnoop -h" for full usage.
#
# REQUIREMENTS: FTRACE CONFIG, vmscan:mm_vmscan_direct_reclaim_* tracepoints
# (you may already have these on recent kernels).
#
# OVERHEAD: By default, drsnoop works without buffering, printing direct reclaim
# events as they happen (uses trace_pipe).
#
# This was written as a proof of concept for ftrace. It would be better written
# using perf_events (after some capabilities are added), which has a better
# buffering policy, or a tracer such as SystemTap or ktap.
#
# 19-Jun-2018 Ethercflow Created this.
### default variables
tracing=/sys/kernel/debug/tracing
flock=/var/tmp/.ftrace-lock
bufsize_kb=4096
opt_duration=0; duration=; opt_name=0; name=; opt_pid=0; pid=; ftext=
opt_start=0; opt_end=0;
trap ':' INT QUIT TERM PIPE HUP # sends execution to end tracing section
function usage {
cat <<-END >&2
USAGE: drsnoop [-hst] [-p PID] [-n name]
[duration]
-n name # process name to match on direct reclaim latency
-p PID # PID to match on direct reclaim latency
-s # include start time of direct reclaim (s)
-t # include end time of direct reclaim (s)
-h # this usage message
duration # duration seconds, and use buffers
eg,
drsnoop # watch direct reclaim latency live (unbuffered)
drsnoop 1 # trace 1 sec (buffered)
drsnoop -ts # include start and end timestamps
drsnoop -p 91 # show direct reclaim latency when PID 91 is on-CPU
END
exit
}
function warn {
if ! eval "$@"; then
echo >&2 "WARNING: command failed \"$@\""
fi
}
function end {
# disable tracing
echo 2>/dev/null
echo "Ending tracing..." 2>/dev/null
cd $tracing
warn "echo 0 > events/vmscan/mm_vmscan_direct_reclaim_begin/enable"
warn "echo 0 > events/vmscan/mm_vmscan_direct_reclaim_end/enable"
if (( opt_pid )); then
warn "echo 0 > events/vmscan/mm_vmscan_direct_reclaim_begin/filter"
warn "echo 0 > events/vmscan/mm_vmscan_direct_reclaim_end/filter"
fi
warn "echo > trace"
(( wroteflock )) && warn "rm $flock"
}
function die {
echo >&2 "$@"
exit 1
}
function edie {
# die with a quiet end()
echo >&2 "$@"
exec >/dev/null 2>&1
end
exit 1
}
### process options
while getopts h:n:p:st opt
do
case $opt in
n) opt_name=1; name=$OPTARG ;;
p) opt_pid=1; pid=$OPTARG ;;
s) opt_start=1 ;;
t) opt_end=1 ;;
h|?) usage ;;
esac
done
shift $(( $OPTIND - 1 ))
if (( $# )); then
opt_duration=1
duration=$1
shift
fi
### option logic
(( opt_pid && opt_name )) && die "ERROR: use either -p or -n."
(( opt_pid )) && ftext=" issued by PID $pid"
(( opt_name )) && ftext=" issued by process name \"$name\""
if (( opt_duration )); then
echo "Tracing vmscan direct reclaim$ftext for $duration seconds (buffered)..."
else
echo "Tracing vmscan direct reclaim$ftext. Ctrl-C to end."
fi
### select awk
(( opt_duration )) && use=mawk || use=gawk # workaround for mawk fflush()
[[ -x /usr/bin/$use ]] && awk=$use || awk=awk
wroteflock=1
### check permissions
cd $tracing || die "ERROR: accessing tracing. Root user? Kernel has FTRACE?
debugfs mounted? (mount -t debugfs debugfs /sys/kernel/debug)"
### ftrace lock
[[ -e $flock ]] && die "ERROR: ftrace may be in use by PID $(cat $flock) $flock"
echo $$ > $flock || die "ERROR: unable to write $flock."
### setup and begin tracing
echo nop > current_tracer
warn "echo $bufsize_kb > buffer_size_kb"
# TODO: support filter
if ! echo 1 > events/vmscan/mm_vmscan_direct_reclaim_begin/enable || \
! echo 1 > events/vmscan/mm_vmscan_direct_reclaim_end/enable; then
edie "ERROR: enabling vmscan direct reclaim tracepoints. Exiting."
fi
printf "%-12.12s %-6s" "COMM" "PID"
(( opt_start )) && printf "%-15s " "START"
(( opt_end )) && printf "%-15s " "END"
printf "%-8s %6s \n" "LATms" "PAGES"
#
# Determine output format. It may be one of the following (newest first):
# TASK-PID CPU# |||| TIMESTAMP FUNCTION
# TASK-PID CPU# TIMESTAMP FUNCTION
# To differentiate between them, the number of header fields is counted,
# and an offset set, to skip the extra column when needed.
#
offset=$($awk 'BEGIN { o = 0; }
$1 == "#" && $2 ~ /TASK/ && NF == 6 { o = 1; }
$2 ~ /TASK/ { print o; exit }' trace)
### print trace buffer
warn "echo > trace"
( if (( opt_duration )); then
# wait then dump buffer
sleep $duration
cat trace
else
# print buffer live
cat trace_pipe
fi ) | $awk -v o=$offset -v opt_name=$opt_name -v name=$name \
-v opt_duration=$opt_duration -v opt_start=$opt_start -v opt_end=$opt_end '
# common fields
$1 != "#" {
# task name can contain dashes
comm = pid = $1
sub(/-[0-9][0-9]*/, "", comm)
sub(/.*-/, "", pid)
time = $(3+o); sub(":", "", time)
}
# mm_vmscan_direct_reclaim_begin
$1 != "#" && $0 ~ /mm_vmscan_direct_reclaim_begin/ {
if (opt_name && match(comm, name) == 0)
next
#
# example: comm-pid [cpu] .... TIMESTAMP: mm_vmscan_direct_reclaim_begin:
#
starts[$1] = time
comms[$1] = comm
pids[$1] = pid
next
}
# mm_vmscan_direct_reclaim_end
$1 != "#" && $0 ~ /mm_vmscan_direct_reclaim_end/ {
#
# example: comm-pid [cpu] .... TIMESTAMP: mm_vmscan_direct_reclaim_end: nr_reclaimed=32
#
if (starts[$1] > 0) {
latency = sprintf("%.2f",
1000 * (time - starts[$1]))
nr_reclaimed = $(5+o); sub(/.*=/, "", nr_reclaimed)
comm = comms[$1]
pid = pids[$1]
printf "%-12.12s %-6s", comm, pid
if (opt_start)
printf "%-15s ", starts[$1]
if (opt_end)
printf "%-15s ", time
printf "%-8s %6s \n", latency, nr_reclaimed
if (!opt_duration)
fflush()
delete starts[$1]
delete comms[$1]
delete pids[$1]
}
next
}
$0 ~ /LOST.*EVENTS/ { print "WARNING: " $0 > "/dev/stderr" }
'
### end tracing
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment