blob: 805250ae9d2c0b8f697f6c51819cef1478c6e3e7 [file] [log] [blame]
henrika7a1798d2017-02-24 04:53:50 -08001#!/bin/bash
2
3# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
4#
5# Use of this source code is governed by a BSD-style license
6# that can be found in the LICENSE file in the root of the source
7# tree. An additional intellectual property rights grant can be found
8# in the file PATENTS. All contributing project authors may
9# be found in the AUTHORS file in the root of the source tree.
10#
11# Usage:
12#
13# It is assumed that a release build of AppRTCMobile exists and has been
14# installed on a rooted and attached Android device.
15#
16# Source this script once from the WebRTC src/ directory and resolve any
17# reported issues. Add relative path to build directory as parameter.
18# Required tools will be downloaded if they don't already exist.
19#
20# Once all tests are passed, a list of available functions will be given.
21# Use these functions to do the actual profiling and visualization of the
22# results.
23#
24# Example usage:
25#
26# > . tools-webrtc/android/profiling/perf_setup.sh out/Release
27# > perf_record 120
28# > flame_graph
29# > plot_flame_graph
30# > perf_cleanup
31
32SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)"
33source "${SCRIPT_DIR}/utilities.sh"
34
35# Root directory for local symbol cache.
36SYMBOL_DIR="${TMPDIR:-/tmp}/android_symbols"
37# Used as a temporary folder on the Android device for data storage.
38DEV_TMP_DIR="/data/local/tmp"
39# Relative path to native shared library containing symbols.
40NATIVE_LIB_PATH="/lib.unstripped/libjingle_peerconnection_so.so"
41# Name of application package for the AppRTCMobile demo.
42APP_NAME="org.appspot.apprtc"
43
44# Make sure we're being sourced.
45if [[ -n "${BASH_VERSION}" && "${BASH_SOURCE:-$0}" == "$0" ]]; then
46 error "perf_setup must be sourced"
47 exit 1
48fi
49
50function usage() {
51 printf "usage: . perf_setup.sh <build_dir>\n"
52}
53
54# Ensure that user includes name of build directory (e.g. out/Release) as
55# input parameter. Store path in BUILD_DIR.
56if [[ "$#" -eq 1 ]]; then
57 if is_not_dir "$1"; then
58 error "$1 is invalid"
59 return 1
60 fi
61 BUILD_DIR="$1"
62else
63 unset BUILD_DIR
64 error "Missing required parameter".
65 usage
66fi
67
68# Helper method to simpify usage of the simpleperf binary on the device.
69function simpleperf_android() {
70 local simpleperf="${DEV_TMP_DIR}/simpleperf"
71 if [ ! -z "$1" ]; then
72 adb shell "${simpleperf}" "$@"
73 else
74 adb shell $simpleperf --help
75 fi
76}
77
78# Full (relative) path to the libjingle_peerconnection_so.so file.
79function native_shared_lib_path() {
80 echo "${BUILD_DIR}${NATIVE_LIB_PATH}"
81}
82
83# Target CPU architecture for the native shared library.
84# Example: AArch64.
85function native_shared_lib_arch() {
86 readelf -h $(native_shared_lib_path) | grep Machine | awk '{print $2}'
87}
88
89# Returns true if the device architecture and the build target are the same.
90function arch_is_ok() {
91 if [[ "$(dev_arch)" == "aarch64" ]] \
92 && [[ "$(native_shared_lib_arch)" == "AArch64" ]]; then
93 return 0
94 elif [[ "$(dev_arch)" == "aarch32" ]] \
95 && [[ "$(native_shared_lib_arch)" == "AArch32" ]]; then
96 return 0
97 else
98 return 1
99 fi
100}
101
102# Copies the native shared library from the local host to the symbol cache
103# which is used by simpleperf as base when searching for symbols.
104function copy_native_shared_library_to_symbol_cache() {
105 local arm_lib="arm"
106 if [ "$(native_shared_lib_arch)" == "AArch64" ]; then
107 arm_lib="arm64"
108 fi
109 for num in 1 2; do
110 local dir="${SYMBOL_DIR}/data/app/${APP_NAME}-${num}/lib/${arm_lib}"
111 mkdir -p "${dir}"
112 cp -u $(native_shared_lib_path) "${dir}"
113 done
114}
115
116# Copy kernel symbols from device to symbol cache in tmp.
117function copy_kernel_symbols_from_device_to_symbol_cache() {
118 local symbol_cache="${SYMBOL_DIR}/kallsyms"
119 adb pull /proc/kallsyms "${symbol_cache}"
120} 1> /dev/null
121
122# Download the correct version of 'simpleperf' to $DEV_TMP_DIR
123# on the device and enable profiling.
124function copy_simpleperf_to_device() {
125 local perf_binary
126 [[ $(dev_arch) == "aarch64" ]] \
127 && perf_binary="/arm64/simpleperf" \
128 || perf_binary="/arm/simpleperf"
129 local simpleperf="${DEV_TMP_DIR}/simpleperf"
130 # Avoid copying to device if simpleperf already exists.
131 if [[ ! $(dev_ls "${simpleperf}") ]]; then
132 adb push "${SIMPLE_PERF_DIR}${perf_binary}" "${DEV_TMP_DIR}"
133 adb shell chmod a+x $simpleperf
134 fi
135 # Enable profiling on the device.
136 enable_profiling
137 # Allows usage of running report commands on the device.
138 enable_report_symbols
139}
140
141# Copy the recorded 'perf.data' file from the device to the current directory.
142# TODO(henrika): add support for specifying the destination.
143function pull_perf_data_from_device() {
144 adb pull "${DEV_TMP_DIR}/perf.data" .
145} 1> /dev/null
146
147
148# Wraps calls to simpleperf report. Used by e.g. perf_report_threads.
149# A valid profile input file must exist in the current folder.
150# TODO(henrika): possibly add support to add path to alternative input file.
151function perf_report() {
152 local perf_data="perf.data"
153 is_file "${perf_data}" \
154 && simpleperf report \
155 -n \
156 -i "${perf_data}" \
157 "$@" \
158 || error "$(pwd)/${perf_data} is invalid"
159}
160
161# Removes the folder specified as input parameter. Mainly intended for removal
162# of simpleperf and Flame Graph tools.
163function remove_tool() {
164 local tool_dir="$1"
165 if is_dir "${tool_dir}"; then
166 echo "Removing ${tool_dir}..."
167 rm -rf "${tool_dir}"
168 path_remove "${tool_dir}"
169 fi
170}
171
172# Utility method which deletes the downloaded simpleperf tool from the repo.
173# It also removes the simpleperf root folder from PATH.
174function rm_simpleperf() {
175 remove_tool "${SCRIPT_DIR}/simpleperf"
176}
177
178# Utility method which deletes the downloaded Flame Graph tool from the repo.
179# It also removes the Flame Graph root folder from PATH.
180function rm_flame_graph() {
181 remove_tool "${SCRIPT_DIR}/flamegraph"
182}
183
184# Lists the main available functions after sourcing this script.
185function print_function_help() {
186 printf "\nAvailable functions in this shell:\n"
187 printf " perf_record [duration, default=60sec]\n"
188 printf " perf_report_threads\n"
189 printf " perf_report_bins\n"
190 printf " perf_report_symbols\n"
191 printf " perf_report_graph\n"
192 printf " perf_report_graph_callee\n"
193 printf " perf_update\n"
194 printf " perf_clean\n"
195 printf " flame_graph\n"
196 printf " plot_flame_graph\n"
197}
198
199function cleanup() {
200 unset -f main
201 unset BUILD_DIR
202}
203
204# -----------------------------------------------------------------------------
205# Main methods to be used after sourcing the main script.
206# -----------------------------------------------------------------------------
207
208# Call this method after the application as been rebuilt and installed on the
209# device to ensure that symbols are up-to-date.
210function perf_update() {
211 copy_native_shared_library_to_symbol_cache
212 copy_kernal_symbols_from_device_to_symbol_cache
213}
214
215# Record stack frame based call graphs while using the application.
216# We use default events (cpu-cycles), and write records to 'perf.data' in the
217# tmp folder on the device. Default duration is 60 seconds but it can be changed
218# by adding one parameter. As soon as the recording is done, 'perf.data' is
219# copied to the directory from which this method is called and a summary of
220# the load distribution per thread is printed.
221function perf_record() {
222 if app_is_running "${APP_NAME}"; then
223 # Ensure that the latest native shared library exists in the local cache.
224 copy_native_shared_library_to_symbol_cache
225 local duration=60
226 if [ "$#" -eq 1 ]; then
227 duration="$1"
228 fi
229 local pid=$(find_app_pid "${APP_NAME}")
230 echo "Profiling PID $pid for $duration seconds (media must be is active)..."
231 local output_file="${DEV_TMP_DIR}/perf.data"
232 simpleperf_android record \
233 --call-graph fp \
234 -p "${pid}" \
235 -o $output_file \
236 -f 1000 \
237 --duration "${duration}" \
238 --log error
239 app_stop "${APP_NAME}"
240 # Copy profile results from device to current directory.
241 pull_perf_data_from_device
242 # Print out a summary report (load per thread).
243 perf_report_threads | tail -n +6
244 else
245 # AppRTCMobile was not enabled. Start it up automatically and ask the user
246 # to start media and then call this method again.
247 warning "AppRTCMobile must be active"
248 app_start "${APP_NAME}"
249 echo "Start media and then call perf_record again..."
250 fi 2> /dev/null
251}
252
253# Analyze the profile report and show samples per threads.
254function perf_report_threads() {
255 perf_report --sort comm
256} 2> /dev/null
257
258# Analyze the profile report and show samples per binary.
259function perf_report_bins() {
260 perf_report --sort dso
261} 2> /dev/null
262
263# Analyze the profile report and show samples per symbol.
264function perf_report_symbols() {
265 perf_report --sort symbol --symfs "${SYMBOL_DIR}"
266}
267
268# Print call graph showing how functions call others.
269function perf_report_graph() {
270 perf_report -g caller --symfs "${SYMBOL_DIR}"
271}
272
273# Print call graph showing how functions are called from others.
274function perf_report_graph_callee() {
275 perf_report -g callee --symfs "${SYMBOL_DIR}"
276}
277
278# Plots the default Flame Graph file if no parameter is provided.
279# If a parameter is given, it will be used as file name instead of the default.
280function plot_flame_graph() {
281 local file_name="flame_graph.svg"
282 if [[ "$#" -eq 1 ]]; then
283 file_name="$1"
284 fi
285 # Open up the SVG file in Chrome. Try unstable first and revert to stable
286 # if unstable fails.
287 google-chrome-unstable "${file_name}" \
288 || google-chrome-stable "${file_name}" \
289 || error "failed to find any Chrome instance"
290} 2> /dev/null
291
292# Generate Flame Graph in interactive SVG format.
293# First input parameter corresponds to output file name and second input
294# parameter is the heading of the plot.
295# Defaults will be utilized if parameters are not provided.
296# See https://github.com/brendangregg/FlameGraph for details on Flame Graph.
297function flame_graph() {
298 local perf_data="perf.data"
299 if is_not_file $perf_data; then
300 error "$(pwd)/${perf_data} is invalid"
301 return 1
302 fi
303 local file_name="flame_graph.svg"
304 local title="WebRTC Flame Graph"
305 if [[ "$#" -eq 1 ]]; then
306 file_name="$1"
307 fi
308 if [[ "$#" -eq 2 ]]; then
309 file_name="$1"
310 title="$2"
311 fi
312 report_sample.py \
313 --symfs "${SYMBOL_DIR}" \
314 --kallsyms "${SYMBOL_DIR}/kallsyms" \
315 perf.data >out.perf
316 stackcollapse-perf.pl out.perf >out.folded
317 flamegraph.pl --title="${title}" out.folded >"${file_name}"
318 rm out.perf
319 rm out.folded
320}
321
322# Remove all downloaded third-party tools.
323function perf_cleanup () {
324 rm_simpleperf
325 rm_flame_graph
326}
327
328main() {
329 printf "%s\n" "Preparing profiling of AppRTCMobile on Android:"
330 # Verify that this script is called from the root folder of WebRTC,
331 # i.e., the src folder one step below where the .gclient file exists.
332 local -r project_root_dir=$(pwd)
333 local dir=${project_root_dir##*/}
334 if [[ "${dir}" != "src" ]]; then
335 error "script must be called from the WebRTC project root (src) folder"
336 return 1
337 fi
338 ok "project root: ${project_root_dir}"
339
340 # Verify that user has sourced envsetup.sh.
341 # TODO(henrika): might be possible to remove this check.
342 if [[ -z "$ENVSETUP_GYP_CHROME_SRC" ]]; then
343 error "must source envsetup script first"
344 return 1
345 fi
346 ok "envsetup script has been sourced"
347
348 # Given that envsetup is sourced, the adb tool should be accessible but
349 # do one extra check just in case.
350 local adb_full_path=$(which adb);
351 if [[ ! -x "${adb_full_path}" ]]; then
352 error "unable to find the Android Debug Bridge (adb) tool"
353 return 1
354 fi
355 ok "adb tool is working"
356
357 # Exactly one Android device must be connected.
358 if [[ ! one_device_connected ]]; then
359 error "one device must be connected"
360 return 1
361 fi
362 ok "one device is connected via USB"
363
364 # Ensure that the device is rooted.
365 if image_is_not_root; then
366 error "device is not rooted"
367 return 1
368 fi
369 ok "device is rooted"
370
371 # Restart adb with root permissions if needed.
372 if adb_has_no_root_permissions; then
373 adb root
374 fi
375 ok "adbd is running as root"
376
377 # Create an empty symbol cache in the tmp folder.
378 # TODO(henrika): it might not be required to start from a clean cache.
379 is_dir "${SYMBOL_DIR}" && rm -rf "${SYMBOL_DIR}"
380 mkdir "${SYMBOL_DIR}" \
381 && ok "empty symbol cache created at ${SYMBOL_DIR}" \
382 || error "failed to create symbol cache"
383
384 # Ensure that path to the native library with symbols is valid.
385 local native_lib=$(native_shared_lib_path)
386 if is_not_file ${native_lib}; then
387 error "${native_lib} is not a valid file"
388 return 1
389 fi
390 ok "native library: "${native_lib}""
391
392 # Verify that the architechture of the device matches the architecture
393 # of the native library.
394 if ! arch_is_ok; then
395 error "device is $(dev_arch) and lib is $(native_shared_lib_arch)"
396 return 1
397 fi
398 ok "device is $(dev_arch) and lib is $(native_shared_lib_arch)"
399
400 # Copy native shared library to symbol cache after creating an
401 # application specific tree structure under ${SYMBOL_DIR}/data.
402 copy_native_shared_library_to_symbol_cache
403 ok "native library copied to ${SYMBOL_DIR}/data/app/${APP_NAME}"
404
405 # Verify that the application is installed on the device.
406 if ! app_is_installed "${APP_NAME}"; then
407 error "${APP_NAME} is not installed on the device"
408 return 1
409 fi
410 ok "${APP_NAME} is installed on the device"
411
412 # Download simpleperf to <src>/tools-webrtc/android/profiling/simpleperf/.
413 # Cloning will only take place if the target does not already exist.
414 # The PATH variable will also be updated.
415 # TODO(henrika): would it be better to use a target outside the WebRTC repo?
416 local simpleperf_dir="${SCRIPT_DIR}/simpleperf"
417 if is_not_dir "${simpleperf_dir}"; then
418 echo "Dowloading simpleperf..."
419 git clone https://android.googlesource.com/platform/prebuilts/simpleperf \
420 "${simpleperf_dir}"
421 chmod u+x "${simpleperf_dir}/report_sample.py"
422 fi
423 path_add "${simpleperf_dir}"
424 ok "${simpleperf_dir}" is added to PATH
425
426 # Update the PATH variable with the path to the Linux version of simpleperf.
427 local simpleperf_linux_dir="${SCRIPT_DIR}/simpleperf/bin/linux/x86_64/"
428 if is_not_dir "${simpleperf_linux_dir}"; then
429 error "${simpleperf_linux_dir} is invalid"
430 return 1
431 fi
432 path_add "${simpleperf_linux_dir}"
433 ok "${simpleperf_linux_dir}" is added to PATH
434
435 # Copy correct version (arm or arm64) of simpleperf to the device
436 # and enable profiling at the same time.
437 if ! copy_simpleperf_to_device; then
438 error "failed to install simpleperf on the device"
439 return 1
440 fi
441 ok "simpleperf is installed on the device"
442
443 # Refresh the symbol cache and read kernal symbols from device if not
444 # already done.
445 perf_update
446 ok "symbol cache is updated"
447
448 # Download Flame Graph to <src>/tools-webrtc/android/profiling/flamegraph/.
449 # Cloning will only take place if the target does not already exist.
450 # The PATH variable will also be updated.
451 # TODO(henrika): would it be better to use a target outside the WebRTC repo?
452 local flamegraph_dir="${SCRIPT_DIR}/flamegraph"
453 if is_not_dir "${flamegraph_dir}"; then
454 echo "Dowloading Flame Graph visualization tool..."
455 git clone https://github.com/brendangregg/FlameGraph.git "${flamegraph_dir}"
456 fi
457 path_add "${flamegraph_dir}"
458 ok "${flamegraph_dir}" is added to PATH
459
460 print_function_help
461
462 cleanup
463
464 return 0
465}
466
467# Only call main() if proper input parameter has been provided.
468if is_set $BUILD_DIR; then
469 main "$@"
470fi