Send client ID in crash report

BUG=4110,988

Review URL: http://codereview.chromium.org/2849038
This commit is contained in:
Ken Mixter 2010-07-01 15:09:24 -07:00
parent c7f8528cdc
commit 091993c72b
2 changed files with 55 additions and 31 deletions

View file

@ -2,29 +2,24 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
CRASH_BIN = crash_reporter
CRASH_LIB = libcrash.so
CRASH_REPORTER = crash_reporter
REPORTER_BINS = $(CRASH_REPORTER)
CRASH_OBJS = system_logging.o user_collector.o
TEST_OBJS = $(CRASH_OBJS) system_logging_mock.o
TEST_BINS = user_collector_test
LIBS = -lbase -lpthread -lgflags -lrt -lmetrics
COMMON_LIBS = -lbase -lpthread -lgflags -lrt
REPORTER_LIBS = $(COMMON_LIBS) -lmetrics
TEST_LIBS = $(LIBS) -lgtest -lgmock
INCLUDE_DIRS = -I.. -I$(SYSROOT)/usr/include/google-breakpad
LIB_DIRS =
# We need -fPIC for linking objects into shared objects.
CXXFLAGS += -fPIC -Wall -Werror
CXXFLAGS += -Wall -Werror
all:
echo "Specify either $(CRASH_BIN) or $(CRASH_LIB)"
all: $(REPORTER_BINS)
$(CRASH_LIB): crash_dumper.o
$(CXX) -shared -lbreakpad_client $^ -o $@
$(CRASH_BIN): crash_reporter.o $(CRASH_OBJS)
$(CXX) $(CXXFLAGS) $(LIB_DIRS) $^ -lcrash $(LIBS) -o $@
$(CRASH_REPORTER): crash_reporter.o $(CRASH_OBJS)
$(CXX) $(CXXFLAGS) $^ -lcrash $(REPORTER_LIBS) -o $@
tests: $(TEST_BINS)
@ -35,4 +30,4 @@ user_collector_test: user_collector_test.o $(TEST_OBJS)
$(CXX) $(CXXFLAGS) $(INCLUDE_DIRS) -c $< -o $@
clean:
rm -rf *.o $(CRASH_BIN) $(TEST_BINS) $(CRASH_LIB)
rm -rf *.o $(CRASH_BIN) $(TEST_BINS)

View file

@ -9,12 +9,13 @@ set -e
# Product ID in crash report
CHROMEOS_PRODUCT=ChromeOS
# File whose existence implies crash reports may be sent, and whose
# contents includes our machine's anonymized guid.
CONSENT_ID="/home/chronos/Consent To Send Stats"
# Send up to 8 crashes per day.
MAX_CRASH_RATE=8
# Minidump uploading tool (provided by Google Breakpad).
MINIDUMP_UPLOADER=/usr/bin/minidump_upload
# URL to send non-official build crashes to.
MINIDUMP_UPLOAD_STAGING_URL="http://clients2.google.com/cr/staging_report"
@ -32,7 +33,7 @@ PAUSE_CRASH_SENDING="/tmp/pause-crash-sending"
RUN_FILE="/var/run/crash_sender.pid"
# Maximum time to sleep between sends.
SECONDS_SEND_SPREAD=600
SECONDS_SEND_SPREAD=${SECONDS_SEND_SPREAD:-600}
# The syslog tag for all logging we emit.
TAG="$(basename $0)[$$]"
@ -45,8 +46,18 @@ lecho() {
logger -t "${TAG}" "$@"
}
remove_run_file() {
log_done() {
lecho "Done"
}
cleanup_tmp_dir() {
rm -rf "${TMP_DIR}"
log_done
}
cleanup_run_file_and_tmp_dir() {
rm -f "${RUN_FILE}"
cleanup_tmp_dir
}
check_not_already_running() {
@ -55,7 +66,7 @@ check_not_already_running() {
fi
local last_pid=$(cat "${RUN_FILE}")
if [ ! -f "/proc/${last_pid}/cmdline" ]; then
trap remove_run_file EXIT
trap cleanup_run_file_and_tmp_dir EXIT INT
echo $$ > "${RUN_FILE}"
return
fi
@ -81,8 +92,8 @@ generate_uniform_random() {
}
is_feedback_disabled() {
# See crosbug.com/3303.
return 1
[ -r "${CONSENT_ID}" ] && return 1
return 0
}
is_on_3g() {
@ -144,16 +155,31 @@ send_crash() {
return 1
fi
"${MINIDUMP_UPLOADER}" -p "${CHROMEOS_PRODUCT}" \
-v "${chromeos_version}" "${minidump_path}" "${url}"
return $?
local report_id="${TMP_DIR}/report_id"
local curl_stderr="${TMP_DIR}/curl_stderr"
set +e
curl "${url}" \
-F "prod=${CHROMEOS_PRODUCT}" \
-F "ver=${chromeos_version}" \
-F "upload_file_minidump=@${minidump_path}" \
-F "guid=<${CONSENT_ID}" -o "${report_id}" 2>"${curl_stderr}"
local curl_result=$?
set -e
if [ ${curl_result} -eq 0 ]; then
lecho "Crash report receipt ID $(cat ${report_id})"
else
lecho "Crash sending failed with: $(cat ${curl_stderr})"
fi
rm -f "${report_id}" "${output_file}"
return ${curl_result}
}
# Send all crashes from the given directory. The directory is currently
# expected to just contain a bunch of minidumps - but this will change
# over time to be a directory of directories where the minidump and core
# file are in the directory as well as other metadata about the context
# of the crash (executable name for instance).
# expected to just contain a bunch of minidumps.
send_crashes() {
local dir="$1"
lecho "Considering crashes in ${dir}"
@ -187,6 +213,8 @@ send_crashes() {
main() {
lecho "Starting"
trap log_done EXIT INT
if [ -e "${PAUSE_CRASH_SENDING}" ]; then
lecho "Exiting early due to ${PAUSE_CRASH_SENDING}"
exit 1
@ -194,13 +222,14 @@ main() {
check_not_already_running
TMP_DIR="$(mktemp -d /tmp/crash_sender.XXXX)"
trap cleanup_tmp_dir EXIT INT
# Send system-wide crashes
send_crashes "/var/spool/crash"
# Send user-specific crashes
send_crashes "/home/chronos/user/crash"
lecho "Done"
}
main