mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-23 22:51:03 +02:00
This adds support for using debug tarballs located on the local machine instead of only ones on remote servers. (If the first argument is a local file, we use it; otherwise, we try to download it.) It also makes us download the (tiny) minidumps before the (huge) tarball so we can bail out quickly if the minidump URL is wrong. BUG=chromium-os:19565 TEST=manual: ran it successfully with both local and remote tarballs and checked that it fails early when given an invalid minidump path Change-Id: Ie427b50e4b7e37c6c81a1137eb34a28e25f32c8e Reviewed-on: http://gerrit.chromium.org/gerrit/8910 Tested-by: Daniel Erat <derat@chromium.org> Reviewed-by: Steven Bennetts <stevenjb@chromium.org> Reviewed-by: Thieu Le <thieule@chromium.org> Commit-Ready: Daniel Erat <derat@chromium.org>
79 lines
1.8 KiB
Bash
Executable File
79 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Script to generate stackdumps from BVT failures.
|
|
|
|
# This can only run inside the chroot since we need minidump_stackwalk.
|
|
. "$(dirname $0)/common.sh" || { echo "Unable to load common.sh"; exit 1; }
|
|
assert_inside_chroot "$@"
|
|
|
|
function usage() {
|
|
echo "Usage: $0 url_or_path_to_debug_tgz url_to_bvt_test_results"
|
|
}
|
|
|
|
if [ -z "$1" ] ; then
|
|
usage
|
|
die "The URL or path to symbols tarball (debug.tgz) is required"
|
|
fi
|
|
|
|
if [ -z "$2" ] ; then
|
|
usage
|
|
die "The URL to BVT test results is required"
|
|
fi
|
|
|
|
# Die on any errors.
|
|
set -e
|
|
|
|
BREAKPAD_DIR="debug/breakpad"
|
|
STACKS_GENERATED=""
|
|
OUTPUT_DIR="$(mktemp -d)"
|
|
|
|
function extract_tarball() {
|
|
info "Extracting breakpad symbols from $1..."
|
|
tar zxf "$1" -C "${OUTPUT_DIR}" "${BREAKPAD_DIR}"
|
|
}
|
|
|
|
function generate_stacktrace() {
|
|
echo "$1.txt"
|
|
minidump_stackwalk "$1" "${OUTPUT_DIR}/${BREAKPAD_DIR}" \
|
|
>"$1.txt" 2>/dev/null
|
|
}
|
|
|
|
function find_and_generate_stacktraces() {
|
|
find "${OUTPUT_DIR}" -name "*.dmp" |
|
|
while read filename ; do
|
|
generate_stacktrace "${filename}"
|
|
done
|
|
}
|
|
|
|
function cleanup() {
|
|
if [ -n "${OUTPUT_DIR}" -a -z "${STACKS_GENERATED}" ] ; then
|
|
rm -rf "${OUTPUT_DIR}"
|
|
fi
|
|
}
|
|
|
|
trap cleanup INT TERM EXIT
|
|
|
|
info "Downloading minidumps from $2..."
|
|
wget -q -nv -r -np -A "*.dmp" -P "${OUTPUT_DIR}" $2
|
|
if [[ -z "$(find "${OUTPUT_DIR}" -name "*.dmp")" ]] ; then
|
|
die "No minidumps found"
|
|
fi
|
|
|
|
if [[ -f "$1" ]] ; then
|
|
extract_tarball "$1"
|
|
else
|
|
info "Downloading symbols tarball from $1..."
|
|
wget -P "${OUTPUT_DIR}" "$1"
|
|
TARBALL="${OUTPUT_DIR}/$(basename $1)"
|
|
extract_tarball "$TARBALL"
|
|
rm -f "$TARBALL"
|
|
fi
|
|
|
|
info "Generating stack traces..."
|
|
STACKS_GENERATED=$(find_and_generate_stacktraces)
|
|
echo $STACKS_GENERATED
|