2006-08-25 23:14:45 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2011-12-16 17:42:59 +01:00
|
|
|
# Copyright (c) 2011, Google Inc.
|
2006-09-20 23:16:16 +02:00
|
|
|
# All rights reserved.
|
2006-08-30 22:05:05 +02:00
|
|
|
#
|
2006-09-20 23:16:16 +02:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met:
|
2006-08-30 22:05:05 +02:00
|
|
|
#
|
2006-09-20 23:16:16 +02:00
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * 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.
|
|
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
2006-08-30 22:05:05 +02:00
|
|
|
#
|
2006-09-20 23:16:16 +02:00
|
|
|
# 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 THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS 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.
|
2006-08-30 22:05:05 +02:00
|
|
|
|
|
|
|
|
2006-09-05 21:42:57 +02:00
|
|
|
# This allows #includes to be relative to src/
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src
|
2012-09-19 14:55:16 +02:00
|
|
|
AM_CFLAGS =
|
2012-08-23 17:45:01 +02:00
|
|
|
AM_CXXFLAGS =
|
|
|
|
|
2012-08-21 16:34:48 +02:00
|
|
|
if ANDROID_HOST
|
|
|
|
# This allows using fixed NDK headers when building for Android.
|
2012-08-23 17:45:01 +02:00
|
|
|
AM_CXXFLAGS += -I$(top_srcdir)/src/common/android/include
|
|
|
|
# This is only necessary for building the unit tests until GTest is upgraded
|
|
|
|
# to a future version.
|
|
|
|
AM_CXXFLAGS += -I$(top_srcdir)/src/common/android/testing/include
|
2012-08-21 16:34:48 +02:00
|
|
|
endif
|
2006-09-05 21:42:57 +02:00
|
|
|
|
2012-07-03 00:55:57 +02:00
|
|
|
if GCC
|
|
|
|
# These are good warnings to be treated as errors
|
2012-08-23 17:45:01 +02:00
|
|
|
AM_CXXFLAGS += \
|
2012-07-03 00:55:57 +02:00
|
|
|
-Werror=missing-braces \
|
2012-12-08 04:18:52 +01:00
|
|
|
-Werror=non-virtual-dtor \
|
2012-11-21 02:33:08 +01:00
|
|
|
-Werror=overloaded-virtual \
|
2012-12-08 04:18:52 +01:00
|
|
|
-Werror=reorder \
|
|
|
|
-Werror=sign-compare \
|
|
|
|
-Werror=unused-variable \
|
|
|
|
-Werror=vla
|
2012-07-03 00:55:57 +02:00
|
|
|
endif
|
|
|
|
|
2012-09-19 14:55:16 +02:00
|
|
|
if LINUX_HOST
|
|
|
|
# Build as PIC on Linux, for linux_client_unittest_shlib
|
|
|
|
AM_CFLAGS += -fPIC
|
|
|
|
AM_CXXFLAGS += -fPIC
|
|
|
|
endif
|
|
|
|
|
2010-03-02 01:39:48 +01:00
|
|
|
# Specify include paths for ac macros
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2006-09-06 04:56:44 +02:00
|
|
|
|
2014-02-27 20:23:16 +01:00
|
|
|
# License file is called LICENSE not COPYING
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2006-08-30 22:05:05 +02:00
|
|
|
## Documentation
|
|
|
|
docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
|
2006-08-25 23:14:45 +02:00
|
|
|
|
2006-08-30 22:05:05 +02:00
|
|
|
dist_doc_DATA = \
|
|
|
|
AUTHORS \
|
|
|
|
ChangeLog \
|
|
|
|
INSTALL \
|
2014-02-27 20:23:16 +01:00
|
|
|
LICENSE \
|
2006-08-30 22:05:05 +02:00
|
|
|
NEWS \
|
2015-09-28 15:02:08 +02:00
|
|
|
README.md
|
2006-08-25 23:14:45 +02:00
|
|
|
|
2014-08-27 04:10:55 +02:00
|
|
|
## Headers
|
|
|
|
if LINUX_HOST
|
|
|
|
includeclhdir = $(includedir)/$(PACKAGE)/client/linux/handler
|
|
|
|
includeclh_HEADERS = $(top_srcdir)/src/client/linux/handler/*.h
|
|
|
|
|
2015-11-11 07:11:00 +01:00
|
|
|
includecldwcdir = $(includedir)/$(PACKAGE)/client/linux/dump_writer_common
|
|
|
|
includecldwc_HEADERS = $(top_srcdir)/src/client/linux/dump_writer_common/*.h
|
|
|
|
|
2014-08-27 04:10:55 +02:00
|
|
|
includeclmdir = $(includedir)/$(PACKAGE)/client/linux/minidump_writer
|
|
|
|
includeclm_HEADERS = $(top_srcdir)/src/client/linux/minidump_writer/*.h
|
|
|
|
|
|
|
|
includeclcdir = $(includedir)/$(PACKAGE)/client/linux/crash_generation
|
|
|
|
includeclc_HEADERS = $(top_srcdir)/src/client/linux/crash_generation/*.h
|
|
|
|
|
|
|
|
includelssdir = $(includedir)/$(PACKAGE)/third_party/lss
|
|
|
|
includelss_HEADERS = $(top_srcdir)/src/third_party/lss/*.h
|
|
|
|
|
|
|
|
includecldir = $(includedir)/$(PACKAGE)/common/linux
|
|
|
|
includecl_HEADERS = $(top_srcdir)/src/common/linux/*.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
includegbcdir = $(includedir)/$(PACKAGE)/google_breakpad/common
|
|
|
|
includegbc_HEADERS = $(top_srcdir)/src/google_breakpad/common/*.h
|
|
|
|
|
|
|
|
includecdir = $(includedir)/$(PACKAGE)/common
|
|
|
|
includec_HEADERS = $(top_srcdir)/src/common/*.h
|
|
|
|
|
|
|
|
includepdir = $(includedir)/$(PACKAGE)/processor
|
|
|
|
includep_HEADERS = $(top_srcdir)/src/processor/*.h
|
|
|
|
|
|
|
|
## pkgconfig files
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA =
|
2006-08-25 23:14:45 +02:00
|
|
|
|
2016-01-25 21:12:03 +01:00
|
|
|
## Common test logic
|
2016-01-26 01:27:56 +01:00
|
|
|
if SYSTEM_TEST_LIBS
|
|
|
|
TEST_CFLAGS = $(GTEST_CFLAGS) $(GMOCK_CFLAGS)
|
|
|
|
TEST_LIBS = $(GTEST_LIBS) -lgtest_main $(GMOCK_LIBS)
|
2016-04-12 20:55:18 +02:00
|
|
|
TEST_DEPS =
|
2016-01-26 01:27:56 +01:00
|
|
|
else
|
2016-01-25 21:12:03 +01:00
|
|
|
TEST_CFLAGS = \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
2016-01-25 23:41:53 +01:00
|
|
|
TEST_LIBS = src/testing/libtesting.a
|
2016-04-12 20:55:18 +02:00
|
|
|
TEST_DEPS = $(TEST_LIBS)
|
2016-01-26 01:27:56 +01:00
|
|
|
endif
|
2016-01-25 21:12:03 +01:00
|
|
|
|
2006-08-30 22:05:05 +02:00
|
|
|
## Libraries
|
2016-01-25 23:41:53 +01:00
|
|
|
check_LIBRARIES =
|
2010-10-05 21:38:51 +02:00
|
|
|
noinst_LIBRARIES =
|
|
|
|
lib_LIBRARIES =
|
2010-10-05 21:38:22 +02:00
|
|
|
bin_PROGRAMS =
|
|
|
|
check_PROGRAMS =
|
2016-01-25 22:53:16 +01:00
|
|
|
EXTRA_PROGRAMS =
|
|
|
|
CLEANFILES =
|
2010-10-05 21:38:22 +02:00
|
|
|
|
2016-01-25 23:41:53 +01:00
|
|
|
check_LIBRARIES += src/testing/libtesting.a
|
|
|
|
|
2016-01-26 01:27:56 +01:00
|
|
|
if !SYSTEM_TEST_LIBS
|
2016-01-25 23:41:53 +01:00
|
|
|
src_testing_libtesting_a_SOURCES = \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/breakpad_googletest_includes.h \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_testing_libtesting_a_CPPFLAGS = \
|
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2016-01-26 01:27:56 +01:00
|
|
|
endif
|
2016-01-25 23:41:53 +01:00
|
|
|
|
2010-10-05 21:38:22 +02:00
|
|
|
if !DISABLE_PROCESSOR
|
2010-10-05 21:38:51 +02:00
|
|
|
lib_LIBRARIES += src/libbreakpad.a
|
2014-08-27 04:10:55 +02:00
|
|
|
pkgconfig_DATA += breakpad.pc
|
2010-10-05 21:38:51 +02:00
|
|
|
noinst_LIBRARIES += src/third_party/libdisasm/libdisasm.a
|
2010-10-05 21:38:22 +02:00
|
|
|
endif
|
2010-08-31 17:09:01 +02:00
|
|
|
|
|
|
|
if LINUX_HOST
|
2010-10-05 21:38:51 +02:00
|
|
|
lib_LIBRARIES += src/client/linux/libbreakpad_client.a
|
2014-08-27 04:10:55 +02:00
|
|
|
pkgconfig_DATA += breakpad-client.pc
|
2010-03-02 01:39:48 +01:00
|
|
|
|
2010-10-05 21:38:51 +02:00
|
|
|
src_client_linux_libbreakpad_client_a_SOURCES = \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/client/linux/crash_generation/crash_generation_client.cc \
|
2012-09-17 16:00:36 +02:00
|
|
|
src/client/linux/crash_generation/crash_generation_server.cc \
|
2014-10-01 11:51:23 +02:00
|
|
|
src/client/linux/dump_writer_common/thread_info.cc \
|
|
|
|
src/client/linux/dump_writer_common/ucontext_reader.cc \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/client/linux/handler/exception_handler.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/linux/handler/exception_handler.h \
|
2012-08-10 00:59:58 +02:00
|
|
|
src/client/linux/handler/minidump_descriptor.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/linux/handler/minidump_descriptor.h \
|
2012-04-03 18:38:53 +02:00
|
|
|
src/client/linux/log/log.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/linux/log/log.h \
|
2014-10-28 17:45:14 +01:00
|
|
|
src/client/linux/microdump_writer/microdump_writer.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/linux/microdump_writer/microdump_writer.h \
|
2016-01-13 21:30:21 +01:00
|
|
|
src/client/linux/minidump_writer/linux_core_dumper.cc \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/client/linux/minidump_writer/linux_dumper.cc \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/client/linux/minidump_writer/linux_ptrace_dumper.cc \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/client/linux/minidump_writer/minidump_writer.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/minidump_file_writer-inl.h \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/client/minidump_file_writer.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/minidump_file_writer.h \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/common/convert_UTF.c \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/convert_UTF.h \
|
2011-11-18 22:40:27 +01:00
|
|
|
src/common/md5.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/md5.h \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/common/string_conversion.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/string_conversion.h \
|
2016-01-13 21:30:21 +01:00
|
|
|
src/common/linux/elf_core_dump.cc \
|
2012-07-18 15:44:34 +02:00
|
|
|
src/common/linux/elfutils.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/elfutils.h \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/common/linux/file_id.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/file_id.h \
|
2011-12-16 17:42:59 +01:00
|
|
|
src/common/linux/guid_creator.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/guid_creator.h \
|
2012-08-03 17:01:52 +02:00
|
|
|
src/common/linux/linux_libc_support.cc \
|
2011-12-21 18:51:40 +01:00
|
|
|
src/common/linux/memory_mapped_file.cc \
|
|
|
|
src/common/linux/safe_readlink.cc
|
2012-08-31 20:38:29 +02:00
|
|
|
if ANDROID_HOST
|
|
|
|
src_client_linux_libbreakpad_client_a_SOURCES += \
|
|
|
|
src/common/android/breakpad_getcontext.S
|
|
|
|
endif
|
2011-02-28 15:05:22 +01:00
|
|
|
endif LINUX_HOST
|
2007-02-14 20:51:05 +01:00
|
|
|
|
2010-10-05 21:38:22 +02:00
|
|
|
if !DISABLE_PROCESSOR
|
2010-10-05 21:38:51 +02:00
|
|
|
src_libbreakpad_a_SOURCES = \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/google_breakpad/common/breakpad_types.h \
|
|
|
|
src/google_breakpad/common/minidump_format.h \
|
2007-05-31 21:44:52 +02:00
|
|
|
src/google_breakpad/common/minidump_size.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/google_breakpad/processor/basic_source_line_resolver.h \
|
|
|
|
src/google_breakpad/processor/call_stack.h \
|
|
|
|
src/google_breakpad/processor/code_module.h \
|
|
|
|
src/google_breakpad/processor/code_modules.h \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/google_breakpad/processor/dump_context.h \
|
|
|
|
src/google_breakpad/processor/dump_object.h \
|
2010-08-25 22:16:17 +02:00
|
|
|
src/google_breakpad/processor/exploitability.h \
|
2010-10-21 19:13:01 +02:00
|
|
|
src/google_breakpad/processor/fast_source_line_resolver.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/google_breakpad/processor/memory_region.h \
|
2014-11-19 22:33:26 +01:00
|
|
|
src/google_breakpad/processor/microdump.h \
|
|
|
|
src/google_breakpad/processor/microdump_processor.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/google_breakpad/processor/minidump.h \
|
|
|
|
src/google_breakpad/processor/minidump_processor.h \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/google_breakpad/processor/process_result.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/google_breakpad/processor/process_state.h \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/google_breakpad/processor/proc_maps_linux.h \
|
2010-10-07 22:31:36 +02:00
|
|
|
src/google_breakpad/processor/source_line_resolver_base.h \
|
2007-09-28 20:14:48 +02:00
|
|
|
src/google_breakpad/processor/source_line_resolver_interface.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/google_breakpad/processor/stack_frame.h \
|
|
|
|
src/google_breakpad/processor/stack_frame_cpu.h \
|
2012-10-10 23:41:52 +02:00
|
|
|
src/google_breakpad/processor/stack_frame_symbolizer.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/google_breakpad/processor/stackwalker.h \
|
|
|
|
src/google_breakpad/processor/symbol_supplier.h \
|
|
|
|
src/google_breakpad/processor/system_info.h \
|
2006-10-20 21:50:01 +02:00
|
|
|
src/processor/address_map-inl.h \
|
2007-09-28 20:14:48 +02:00
|
|
|
src/processor/address_map.h \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/processor/basic_code_module.h \
|
|
|
|
src/processor/basic_code_modules.cc \
|
|
|
|
src/processor/basic_code_modules.h \
|
2010-10-07 22:31:36 +02:00
|
|
|
src/processor/basic_source_line_resolver_types.h \
|
2006-12-12 00:22:54 +01:00
|
|
|
src/processor/basic_source_line_resolver.cc \
|
2006-10-20 03:46:38 +02:00
|
|
|
src/processor/call_stack.cc \
|
2010-03-16 17:28:32 +01:00
|
|
|
src/processor/cfi_frame_info.cc \
|
|
|
|
src/processor/cfi_frame_info.h \
|
2006-09-20 18:20:15 +02:00
|
|
|
src/processor/contained_range_map-inl.h \
|
2007-09-28 20:14:48 +02:00
|
|
|
src/processor/contained_range_map.h \
|
2010-10-02 00:38:10 +02:00
|
|
|
src/processor/disassembler_x86.h \
|
|
|
|
src/processor/disassembler_x86.cc \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/processor/dump_context.cc \
|
|
|
|
src/processor/dump_object.cc \
|
2010-08-25 22:16:17 +02:00
|
|
|
src/processor/exploitability.cc \
|
2013-10-29 21:03:39 +01:00
|
|
|
src/processor/exploitability_linux.h \
|
|
|
|
src/processor/exploitability_linux.cc \
|
2010-09-22 04:37:19 +02:00
|
|
|
src/processor/exploitability_win.h \
|
|
|
|
src/processor/exploitability_win.cc \
|
2010-10-21 19:13:01 +02:00
|
|
|
src/processor/fast_source_line_resolver_types.h \
|
|
|
|
src/processor/fast_source_line_resolver.cc \
|
2006-09-08 20:03:56 +02:00
|
|
|
src/processor/linked_ptr.h \
|
2007-05-17 20:34:37 +02:00
|
|
|
src/processor/logging.h \
|
|
|
|
src/processor/logging.cc \
|
2010-10-15 22:36:31 +02:00
|
|
|
src/processor/map_serializers-inl.h \
|
|
|
|
src/processor/map_serializers.h \
|
2014-11-19 22:33:26 +01:00
|
|
|
src/processor/microdump.cc \
|
|
|
|
src/processor/microdump_processor.cc \
|
2006-09-06 04:56:44 +02:00
|
|
|
src/processor/minidump.cc \
|
2006-09-19 23:58:41 +02:00
|
|
|
src/processor/minidump_processor.cc \
|
2010-10-21 19:13:01 +02:00
|
|
|
src/processor/module_comparer.cc \
|
|
|
|
src/processor/module_comparer.h \
|
|
|
|
src/processor/module_factory.h \
|
2011-01-19 18:02:10 +01:00
|
|
|
src/processor/module_serializer.cc \
|
|
|
|
src/processor/module_serializer.h \
|
2006-10-27 02:40:56 +02:00
|
|
|
src/processor/pathname_stripper.cc \
|
|
|
|
src/processor/pathname_stripper.h \
|
2006-09-22 02:42:23 +02:00
|
|
|
src/processor/postfix_evaluator-inl.h \
|
2007-09-28 20:14:48 +02:00
|
|
|
src/processor/postfix_evaluator.h \
|
2006-10-24 21:31:21 +02:00
|
|
|
src/processor/process_state.cc \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/proc_maps_linux.cc \
|
2006-09-20 18:20:15 +02:00
|
|
|
src/processor/range_map-inl.h \
|
2007-09-28 20:14:48 +02:00
|
|
|
src/processor/range_map.h \
|
2010-10-15 22:36:31 +02:00
|
|
|
src/processor/simple_serializer-inl.h \
|
|
|
|
src/processor/simple_serializer.h \
|
2006-10-27 02:40:56 +02:00
|
|
|
src/processor/simple_symbol_supplier.cc \
|
|
|
|
src/processor/simple_symbol_supplier.h \
|
2009-12-23 23:32:14 +01:00
|
|
|
src/processor/windows_frame_info.h \
|
2010-10-07 22:31:36 +02:00
|
|
|
src/processor/source_line_resolver_base_types.h \
|
|
|
|
src/processor/source_line_resolver_base.cc \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stack_frame_cpu.cc \
|
2012-10-10 23:41:52 +02:00
|
|
|
src/processor/stack_frame_symbolizer.cc \
|
2006-09-06 21:28:46 +02:00
|
|
|
src/processor/stackwalker.cc \
|
2007-10-31 20:20:31 +01:00
|
|
|
src/processor/stackwalker_amd64.cc \
|
|
|
|
src/processor/stackwalker_amd64.h \
|
2009-12-19 22:43:53 +01:00
|
|
|
src/processor/stackwalker_arm.cc \
|
|
|
|
src/processor/stackwalker_arm.h \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stackwalker_arm64.cc \
|
|
|
|
src/processor/stackwalker_arm64.h \
|
2013-08-23 16:38:36 +02:00
|
|
|
src/processor/stackwalker_address_list.cc \
|
|
|
|
src/processor/stackwalker_address_list.h \
|
2013-09-11 13:37:04 +02:00
|
|
|
src/processor/stackwalker_mips.cc \
|
|
|
|
src/processor/stackwalker_mips.h \
|
2006-09-25 20:29:48 +02:00
|
|
|
src/processor/stackwalker_ppc.cc \
|
|
|
|
src/processor/stackwalker_ppc.h \
|
2013-04-13 01:24:02 +02:00
|
|
|
src/processor/stackwalker_ppc64.cc \
|
|
|
|
src/processor/stackwalker_ppc64.h \
|
2007-09-26 20:28:05 +02:00
|
|
|
src/processor/stackwalker_sparc.cc \
|
|
|
|
src/processor/stackwalker_sparc.h \
|
2006-09-06 21:28:46 +02:00
|
|
|
src/processor/stackwalker_x86.cc \
|
2010-04-09 01:06:23 +02:00
|
|
|
src/processor/stackwalker_x86.h \
|
2010-10-15 22:36:31 +02:00
|
|
|
src/processor/static_address_map-inl.h \
|
|
|
|
src/processor/static_address_map.h \
|
|
|
|
src/processor/static_contained_range_map-inl.h \
|
|
|
|
src/processor/static_contained_range_map.h \
|
2010-09-20 19:45:15 +02:00
|
|
|
src/processor/static_map_iterator-inl.h \
|
|
|
|
src/processor/static_map_iterator.h \
|
2010-09-29 16:02:09 +02:00
|
|
|
src/processor/static_map-inl.h \
|
|
|
|
src/processor/static_map.h \
|
2010-10-15 22:36:31 +02:00
|
|
|
src/processor/static_range_map-inl.h \
|
|
|
|
src/processor/static_range_map.h \
|
2015-04-11 00:05:29 +02:00
|
|
|
src/processor/symbolic_constants_win.cc \
|
|
|
|
src/processor/symbolic_constants_win.h \
|
2010-04-09 01:06:23 +02:00
|
|
|
src/processor/tokenize.cc \
|
2011-07-07 22:53:52 +02:00
|
|
|
src/processor/tokenize.h
|
2006-08-25 23:14:45 +02:00
|
|
|
|
2010-10-05 21:38:51 +02:00
|
|
|
src_third_party_libdisasm_libdisasm_a_SOURCES = \
|
2010-10-02 00:38:10 +02:00
|
|
|
src/third_party/libdisasm/ia32_implicit.c \
|
|
|
|
src/third_party/libdisasm/ia32_implicit.h \
|
|
|
|
src/third_party/libdisasm/ia32_insn.c \
|
|
|
|
src/third_party/libdisasm/ia32_insn.h \
|
|
|
|
src/third_party/libdisasm/ia32_invariant.c \
|
|
|
|
src/third_party/libdisasm/ia32_invariant.h \
|
|
|
|
src/third_party/libdisasm/ia32_modrm.c \
|
|
|
|
src/third_party/libdisasm/ia32_modrm.h \
|
|
|
|
src/third_party/libdisasm/ia32_opcode_tables.c \
|
|
|
|
src/third_party/libdisasm/ia32_opcode_tables.h \
|
|
|
|
src/third_party/libdisasm/ia32_operand.c \
|
|
|
|
src/third_party/libdisasm/ia32_operand.h \
|
|
|
|
src/third_party/libdisasm/ia32_reg.c \
|
|
|
|
src/third_party/libdisasm/ia32_reg.h \
|
|
|
|
src/third_party/libdisasm/ia32_settings.c \
|
|
|
|
src/third_party/libdisasm/ia32_settings.h \
|
|
|
|
src/third_party/libdisasm/libdis.h \
|
|
|
|
src/third_party/libdisasm/qword.h \
|
|
|
|
src/third_party/libdisasm/x86_disasm.c \
|
|
|
|
src/third_party/libdisasm/x86_format.c \
|
|
|
|
src/third_party/libdisasm/x86_imm.c \
|
|
|
|
src/third_party/libdisasm/x86_imm.h \
|
|
|
|
src/third_party/libdisasm/x86_insn.c \
|
|
|
|
src/third_party/libdisasm/x86_misc.c \
|
|
|
|
src/third_party/libdisasm/x86_operand_list.c \
|
2010-10-05 21:38:22 +02:00
|
|
|
src/third_party/libdisasm/x86_operand_list.h
|
2006-08-25 23:14:45 +02:00
|
|
|
|
2006-09-06 04:56:44 +02:00
|
|
|
## Programs
|
2010-10-05 21:38:22 +02:00
|
|
|
bin_PROGRAMS += \
|
2014-11-25 12:36:38 +01:00
|
|
|
src/processor/microdump_stackwalk \
|
2006-09-06 21:28:46 +02:00
|
|
|
src/processor/minidump_dump \
|
2011-07-07 22:53:52 +02:00
|
|
|
src/processor/minidump_stackwalk
|
2010-10-05 21:38:22 +02:00
|
|
|
endif !DISABLE_PROCESSOR
|
2006-09-06 04:56:44 +02:00
|
|
|
|
2010-08-31 17:09:01 +02:00
|
|
|
if LINUX_HOST
|
2016-02-17 06:48:38 +01:00
|
|
|
EXTRA_PROGRAMS += \
|
|
|
|
src/client/linux/linux_dumper_unittest_helper
|
|
|
|
CLEANFILES += \
|
2010-08-31 17:09:01 +02:00
|
|
|
src/client/linux/linux_dumper_unittest_helper
|
2011-02-28 15:05:22 +01:00
|
|
|
|
|
|
|
if !DISABLE_TOOLS
|
|
|
|
bin_PROGRAMS += \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/tools/linux/core2md/core2md \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/tools/linux/dump_syms/dump_syms \
|
|
|
|
src/tools/linux/md2core/minidump-2-core \
|
|
|
|
src/tools/linux/symupload/minidump_upload \
|
2016-01-27 22:45:21 +01:00
|
|
|
src/tools/linux/symupload/sym_upload
|
|
|
|
if X86_HOST
|
|
|
|
bin_PROGRAMS += \
|
2015-11-25 20:27:53 +01:00
|
|
|
src/tools/mac/dump_syms/dump_syms_mac
|
2010-08-31 17:09:01 +02:00
|
|
|
endif
|
2016-01-27 22:45:21 +01:00
|
|
|
endif
|
2011-02-28 15:05:22 +01:00
|
|
|
endif LINUX_HOST
|
|
|
|
|
2010-08-31 17:09:01 +02:00
|
|
|
|
2006-08-30 22:05:05 +02:00
|
|
|
## Tests
|
2010-10-05 21:38:22 +02:00
|
|
|
if !DISABLE_PROCESSOR
|
|
|
|
check_PROGRAMS += \
|
2010-04-27 21:17:59 +02:00
|
|
|
src/common/test_assembler_unittest \
|
2006-10-20 21:50:01 +02:00
|
|
|
src/processor/address_map_unittest \
|
2006-12-12 00:22:54 +01:00
|
|
|
src/processor/basic_source_line_resolver_unittest \
|
2010-03-16 17:28:32 +01:00
|
|
|
src/processor/cfi_frame_info_unittest \
|
2006-09-20 18:20:15 +02:00
|
|
|
src/processor/contained_range_map_unittest \
|
2010-10-02 00:38:10 +02:00
|
|
|
src/processor/disassembler_x86_unittest \
|
|
|
|
src/processor/exploitability_unittest \
|
2010-10-21 19:13:01 +02:00
|
|
|
src/processor/fast_source_line_resolver_unittest \
|
2010-10-15 22:36:31 +02:00
|
|
|
src/processor/map_serializers_unittest \
|
2014-11-19 22:33:26 +01:00
|
|
|
src/processor/microdump_processor_unittest \
|
2006-09-19 23:58:41 +02:00
|
|
|
src/processor/minidump_processor_unittest \
|
2009-12-09 02:24:37 +01:00
|
|
|
src/processor/minidump_unittest \
|
2010-10-15 22:36:31 +02:00
|
|
|
src/processor/static_address_map_unittest \
|
|
|
|
src/processor/static_contained_range_map_unittest \
|
2010-09-20 19:45:15 +02:00
|
|
|
src/processor/static_map_unittest \
|
2010-10-15 22:36:31 +02:00
|
|
|
src/processor/static_range_map_unittest \
|
2006-10-27 02:40:56 +02:00
|
|
|
src/processor/pathname_stripper_unittest \
|
2006-09-22 02:42:23 +02:00
|
|
|
src/processor/postfix_evaluator_unittest \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/proc_maps_linux_unittest \
|
2016-06-06 07:41:10 +02:00
|
|
|
src/processor/range_map_shrink_down_unittest \
|
2010-03-16 17:20:34 +01:00
|
|
|
src/processor/range_map_unittest \
|
2010-03-16 17:49:53 +01:00
|
|
|
src/processor/stackwalker_amd64_unittest \
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 17:46:22 +01:00
|
|
|
src/processor/stackwalker_arm_unittest \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stackwalker_arm64_unittest \
|
2013-08-23 16:38:36 +02:00
|
|
|
src/processor/stackwalker_address_list_unittest \
|
2013-09-11 13:37:04 +02:00
|
|
|
src/processor/stackwalker_mips_unittest \
|
2016-02-07 00:58:39 +01:00
|
|
|
src/processor/stackwalker_mips64_unittest \
|
2010-03-16 17:25:30 +01:00
|
|
|
src/processor/stackwalker_x86_unittest \
|
2010-04-27 21:17:59 +02:00
|
|
|
src/processor/synth_minidump_unittest
|
2010-10-05 21:38:22 +02:00
|
|
|
endif
|
2006-09-25 23:16:15 +02:00
|
|
|
|
2010-08-31 17:09:01 +02:00
|
|
|
if LINUX_HOST
|
2016-01-25 22:53:16 +01:00
|
|
|
EXTRA_PROGRAMS += \
|
|
|
|
src/client/linux/linux_client_unittest_shlib
|
|
|
|
CLEANFILES += \
|
2012-09-19 14:55:16 +02:00
|
|
|
src/client/linux/linux_client_unittest_shlib
|
|
|
|
|
2010-08-31 17:09:01 +02:00
|
|
|
check_PROGRAMS += \
|
|
|
|
src/client/linux/linux_client_unittest
|
2011-02-28 15:05:22 +01:00
|
|
|
|
|
|
|
if !DISABLE_TOOLS
|
|
|
|
check_PROGRAMS += \
|
2011-12-21 23:33:21 +01:00
|
|
|
src/common/dumper_unittest \
|
|
|
|
src/tools/linux/md2core/minidump_2_core_unittest
|
2016-02-12 21:15:14 +01:00
|
|
|
if X86_HOST
|
|
|
|
check_PROGRAMS += \
|
|
|
|
src/common/mac/macho_reader_unittest
|
|
|
|
endif
|
2010-08-31 17:09:01 +02:00
|
|
|
endif
|
2011-02-28 15:05:22 +01:00
|
|
|
endif LINUX_HOST
|
2010-08-31 17:09:01 +02:00
|
|
|
|
2010-10-05 21:38:22 +02:00
|
|
|
if !DISABLE_PROCESSOR
|
2006-09-25 23:16:15 +02:00
|
|
|
if SELFTEST
|
|
|
|
check_PROGRAMS += \
|
|
|
|
src/processor/stackwalker_selftest
|
|
|
|
endif SELFTEST
|
2010-10-05 21:38:22 +02:00
|
|
|
endif !DISABLE_PROCESSOR
|
2006-09-25 23:16:15 +02:00
|
|
|
|
2010-10-05 21:38:22 +02:00
|
|
|
if !DISABLE_PROCESSOR
|
2006-09-06 04:56:44 +02:00
|
|
|
check_SCRIPTS = \
|
2014-11-25 12:36:38 +01:00
|
|
|
src/processor/microdump_stackwalk_test \
|
|
|
|
src/processor/microdump_stackwalk_machine_readable_test \
|
2006-09-06 21:28:46 +02:00
|
|
|
src/processor/minidump_dump_test \
|
2007-01-29 22:30:31 +01:00
|
|
|
src/processor/minidump_stackwalk_test \
|
|
|
|
src/processor/minidump_stackwalk_machine_readable_test
|
2010-10-05 21:38:22 +02:00
|
|
|
endif
|
2006-09-25 23:16:15 +02:00
|
|
|
|
2006-09-06 04:56:44 +02:00
|
|
|
TESTS = $(check_PROGRAMS) $(check_SCRIPTS)
|
2012-08-31 19:07:25 +02:00
|
|
|
|
|
|
|
if ANDROID_HOST
|
2013-12-13 17:49:11 +01:00
|
|
|
# Since Autotools 1.2, tests are run through a special "test driver" script.
|
|
|
|
# Unfortunately, it's not possible anymore to specify an alternative shell to
|
|
|
|
# run them on connected devices, so use a slightly modified version of the
|
|
|
|
# driver for Android.
|
|
|
|
LOG_DRIVER = $(top_srcdir)/android/test-driver
|
2012-08-31 19:07:25 +02:00
|
|
|
else
|
2013-12-13 17:49:11 +01:00
|
|
|
# The default Autotools test driver script.
|
|
|
|
LOG_DRIVER = $(top_srcdir)/autotools/test-driver
|
2012-08-31 19:07:25 +02:00
|
|
|
endif
|
2006-09-06 04:56:44 +02:00
|
|
|
|
2010-08-31 17:09:01 +02:00
|
|
|
if LINUX_HOST
|
2010-03-02 01:39:48 +01:00
|
|
|
src_client_linux_linux_dumper_unittest_helper_SOURCES = \
|
|
|
|
src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc
|
|
|
|
src_client_linux_linux_dumper_unittest_helper_LDFLAGS=$(PTHREAD_CFLAGS)
|
|
|
|
src_client_linux_linux_dumper_unittest_helper_CC=$(PTHREAD_CC)
|
2013-09-25 15:47:44 +02:00
|
|
|
if ANDROID_HOST
|
|
|
|
# On Android PTHREAD_CFLAGS is empty, and adding src/common/android/include
|
|
|
|
# to the include path is necessary to build this program.
|
|
|
|
src_client_linux_linux_dumper_unittest_helper_CXXFLAGS=$(AM_CXXFLAGS)
|
|
|
|
else
|
|
|
|
src_client_linux_linux_dumper_unittest_helper_CXXFLAGS=$(PTHREAD_CFLAGS)
|
|
|
|
endif
|
2010-03-02 01:39:48 +01:00
|
|
|
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_shlib_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(src_testing_libtesting_a_SOURCES) \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/client/linux/handler/exception_handler_unittest.cc \
|
|
|
|
src/client/linux/minidump_writer/directory_reader_unittest.cc \
|
2013-04-24 12:06:14 +02:00
|
|
|
src/client/linux/minidump_writer/cpu_set_unittest.cc \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/client/linux/minidump_writer/line_reader_unittest.cc \
|
2012-08-31 19:07:25 +02:00
|
|
|
src/client/linux/minidump_writer/linux_core_dumper.cc \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/client/linux/minidump_writer/linux_core_dumper_unittest.cc \
|
|
|
|
src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc \
|
2010-03-02 01:39:48 +01:00
|
|
|
src/client/linux/minidump_writer/minidump_writer_unittest.cc \
|
2012-07-03 00:55:57 +02:00
|
|
|
src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc \
|
2013-04-24 12:06:14 +02:00
|
|
|
src/client/linux/minidump_writer/proc_cpuinfo_reader_unittest.cc \
|
2012-08-31 19:07:25 +02:00
|
|
|
src/common/linux/elf_core_dump.cc \
|
2012-01-11 21:35:18 +01:00
|
|
|
src/common/linux/linux_libc_support_unittest.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/tests/auto_testfile.h \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/common/linux/tests/crash_generator.cc \
|
2010-09-23 16:55:50 +02:00
|
|
|
src/common/memory_unittest.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/tests/auto_tempdir.h \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/common/tests/file_utils.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/tests/file_utils.h \
|
2010-10-05 21:38:22 +02:00
|
|
|
src/processor/basic_code_modules.cc \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/processor/dump_context.cc \
|
|
|
|
src/processor/dump_object.cc \
|
2010-10-05 21:38:22 +02:00
|
|
|
src/processor/logging.cc \
|
|
|
|
src/processor/minidump.cc \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/pathname_stripper.cc \
|
|
|
|
src/processor/proc_maps_linux.cc
|
2012-08-31 20:38:29 +02:00
|
|
|
if ANDROID_HOST
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_shlib_SOURCES += \
|
2012-08-31 20:38:29 +02:00
|
|
|
src/common/android/breakpad_getcontext.S
|
|
|
|
endif
|
2014-11-25 11:35:53 +01:00
|
|
|
if LINUX_HOST
|
|
|
|
src_client_linux_linux_client_unittest_shlib_SOURCES += \
|
|
|
|
src/client/linux/microdump_writer/microdump_writer_unittest.cc
|
|
|
|
endif
|
2010-03-02 01:39:48 +01:00
|
|
|
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_shlib_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_shlib_LDFLAGS = \
|
|
|
|
-shared \
|
|
|
|
-Wl,-h,linux_client_unittest_shlib
|
|
|
|
src_client_linux_linux_client_unittest_shlib_LDADD = \
|
2014-10-01 11:51:23 +02:00
|
|
|
src/client/linux/crash_generation/crash_generation_client.o \
|
|
|
|
src/client/linux/dump_writer_common/thread_info.o \
|
|
|
|
src/client/linux/dump_writer_common/ucontext_reader.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/client/linux/handler/exception_handler.o \
|
2012-08-10 00:59:58 +02:00
|
|
|
src/client/linux/handler/minidump_descriptor.o \
|
2012-04-03 19:11:12 +02:00
|
|
|
src/client/linux/log/log.o \
|
2014-10-28 17:45:14 +01:00
|
|
|
src/client/linux/microdump_writer/microdump_writer.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/client/linux/minidump_writer/linux_dumper.o \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/client/linux/minidump_writer/linux_ptrace_dumper.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/client/linux/minidump_writer/minidump_writer.o \
|
|
|
|
src/client/minidump_file_writer.o \
|
|
|
|
src/common/convert_UTF.o \
|
|
|
|
src/common/md5.o \
|
2012-07-18 15:44:34 +02:00
|
|
|
src/common/linux/elfutils.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/common/linux/file_id.o \
|
|
|
|
src/common/linux/guid_creator.o \
|
2012-08-03 17:01:52 +02:00
|
|
|
src/common/linux/linux_libc_support.o \
|
2011-12-16 17:42:59 +01:00
|
|
|
src/common/linux/memory_mapped_file.o \
|
2011-12-21 18:51:40 +01:00
|
|
|
src/common/linux/safe_readlink.o \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/common/string_conversion.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-01-19 08:14:51 +01:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2012-08-23 17:45:01 +02:00
|
|
|
if ANDROID_HOST
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_shlib_SOURCES += \
|
2012-08-31 20:38:29 +02:00
|
|
|
src/common/android/breakpad_getcontext_unittest.cc
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_shlib_LDFLAGS += \
|
2012-10-09 19:15:06 +02:00
|
|
|
-llog -lm
|
2012-08-23 17:45:01 +02:00
|
|
|
endif
|
2010-10-05 21:38:51 +02:00
|
|
|
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_shlib_DEPENDENCIES = \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/client/linux/linux_dumper_unittest_helper \
|
|
|
|
src/client/linux/libbreakpad_client.a \
|
2016-04-12 20:55:18 +02:00
|
|
|
$(TEST_DEPS) \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/libbreakpad.a
|
2011-02-28 15:05:22 +01:00
|
|
|
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_SOURCES =
|
2016-04-05 15:34:20 +02:00
|
|
|
# The extra-long build id is for a test in minidump_writer_unittest.cc.
|
2012-09-19 14:55:16 +02:00
|
|
|
src_client_linux_linux_client_unittest_LDFLAGS = \
|
2016-04-05 15:34:20 +02:00
|
|
|
-Wl,-rpath,'$$ORIGIN' \
|
|
|
|
-Wl,--build-id=0x000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
2012-10-09 19:15:06 +02:00
|
|
|
if ANDROID_HOST
|
|
|
|
src_client_linux_linux_client_unittest_LDFLAGS += \
|
|
|
|
-llog
|
|
|
|
endif
|
2012-09-19 14:55:16 +02:00
|
|
|
|
|
|
|
src_client_linux_linux_client_unittest_LDADD = \
|
2016-01-26 01:27:56 +01:00
|
|
|
src/client/linux/linux_client_unittest_shlib \
|
|
|
|
$(TEST_LIBS)
|
2012-09-19 14:55:16 +02:00
|
|
|
|
|
|
|
src_client_linux_linux_client_unittest_DEPENDENCIES = \
|
|
|
|
src/client/linux/linux_client_unittest_shlib
|
|
|
|
|
2011-02-28 15:05:22 +01:00
|
|
|
if !DISABLE_TOOLS
|
2012-01-19 08:14:51 +01:00
|
|
|
src_tools_linux_core2md_core2md_SOURCES = \
|
2016-01-13 21:30:21 +01:00
|
|
|
src/tools/linux/core2md/core2md.cc
|
2012-04-03 18:38:53 +02:00
|
|
|
|
2012-01-19 08:14:51 +01:00
|
|
|
src_tools_linux_core2md_core2md_LDADD = \
|
|
|
|
src/client/linux/libbreakpad_client.a
|
|
|
|
|
2011-02-28 15:05:22 +01:00
|
|
|
src_tools_linux_dump_syms_dump_syms_SOURCES = \
|
|
|
|
src/common/dwarf_cfi_to_module.cc \
|
|
|
|
src/common/dwarf_cu_to_module.cc \
|
|
|
|
src/common/dwarf_line_to_module.cc \
|
|
|
|
src/common/language.cc \
|
|
|
|
src/common/module.cc \
|
|
|
|
src/common/stabs_reader.cc \
|
|
|
|
src/common/stabs_to_module.cc \
|
|
|
|
src/common/dwarf/bytereader.cc \
|
|
|
|
src/common/dwarf/dwarf2diehandler.cc \
|
|
|
|
src/common/dwarf/dwarf2reader.cc \
|
2016-05-04 20:09:44 +02:00
|
|
|
src/common/dwarf/elf_reader.cc \
|
2014-04-23 22:52:28 +02:00
|
|
|
src/common/linux/crc32.cc \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/common/linux/dump_symbols.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/dump_symbols.h \
|
2011-07-06 19:05:49 +02:00
|
|
|
src/common/linux/elf_symbols_to_module.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/elf_symbols_to_module.h \
|
2012-07-18 15:44:34 +02:00
|
|
|
src/common/linux/elfutils.cc \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/common/linux/file_id.cc \
|
2012-08-03 17:01:52 +02:00
|
|
|
src/common/linux/linux_libc_support.cc \
|
2011-12-16 17:42:59 +01:00
|
|
|
src/common/linux/memory_mapped_file.cc \
|
2011-12-21 18:51:40 +01:00
|
|
|
src/common/linux/safe_readlink.cc \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/tools/linux/dump_syms/dump_syms.cc
|
|
|
|
|
|
|
|
src_tools_linux_md2core_minidump_2_core_SOURCES = \
|
2011-12-16 17:42:59 +01:00
|
|
|
src/common/linux/memory_mapped_file.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/tools/linux/md2core/minidump-2-core.cc \
|
|
|
|
src/tools/linux/md2core/minidump_memory_range.h
|
2011-02-28 15:05:22 +01:00
|
|
|
|
|
|
|
src_tools_linux_symupload_minidump_upload_SOURCES = \
|
|
|
|
src/common/linux/http_upload.cc \
|
|
|
|
src/tools/linux/symupload/minidump_upload.cc
|
2012-04-19 20:31:37 +02:00
|
|
|
src_tools_linux_symupload_minidump_upload_LDADD = -ldl
|
2011-02-28 15:05:22 +01:00
|
|
|
|
|
|
|
src_tools_linux_symupload_sym_upload_SOURCES = \
|
|
|
|
src/common/linux/http_upload.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/http_upload.h \
|
2016-03-30 22:46:21 +02:00
|
|
|
src/common/linux/symbol_upload.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/symbol_upload.h \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/tools/linux/symupload/sym_upload.cc
|
2012-04-19 20:31:37 +02:00
|
|
|
src_tools_linux_symupload_sym_upload_LDADD = -ldl
|
2011-02-28 15:05:22 +01:00
|
|
|
|
2015-11-25 20:27:53 +01:00
|
|
|
src_tools_mac_dump_syms_dump_syms_mac_SOURCES = \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/common/dwarf_cfi_to_module.cc \
|
|
|
|
src/common/dwarf_cu_to_module.cc \
|
|
|
|
src/common/dwarf_line_to_module.cc \
|
|
|
|
src/common/language.cc \
|
|
|
|
src/common/md5.cc \
|
|
|
|
src/common/module.cc \
|
|
|
|
src/common/stabs_reader.cc \
|
|
|
|
src/common/stabs_to_module.cc \
|
|
|
|
src/common/dwarf/bytereader.cc \
|
|
|
|
src/common/dwarf/dwarf2diehandler.cc \
|
|
|
|
src/common/dwarf/dwarf2reader.cc \
|
2016-05-04 20:09:44 +02:00
|
|
|
src/common/dwarf/elf_reader.cc \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/common/mac/arch_utilities.cc \
|
|
|
|
src/common/mac/dump_syms.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/mac/dump_syms.h \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/common/mac/file_id.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/mac/file_id.h \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/common/mac/macho_id.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/mac/macho_id.h \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/common/mac/macho_reader.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/mac/macho_reader.h \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/common/mac/macho_utilities.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/mac/macho_utilities.h \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/common/mac/macho_walker.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/mac/macho_walker.h \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/tools/mac/dump_syms/dump_syms_tool.cc
|
2015-11-25 20:27:53 +01:00
|
|
|
src_tools_mac_dump_syms_dump_syms_mac_CXXFLAGS= \
|
2015-09-16 12:46:55 +02:00
|
|
|
-I$(top_srcdir)/src/third_party/mac_headers \
|
|
|
|
-DHAVE_MACH_O_NLIST_H
|
|
|
|
|
2011-02-28 15:05:22 +01:00
|
|
|
src_common_dumper_unittest_SOURCES = \
|
|
|
|
src/common/byte_cursor_unittest.cc \
|
|
|
|
src/common/dwarf_cfi_to_module.cc \
|
|
|
|
src/common/dwarf_cfi_to_module_unittest.cc \
|
|
|
|
src/common/dwarf_cu_to_module.cc \
|
|
|
|
src/common/dwarf_cu_to_module_unittest.cc \
|
|
|
|
src/common/dwarf_line_to_module.cc \
|
|
|
|
src/common/dwarf_line_to_module_unittest.cc \
|
|
|
|
src/common/language.cc \
|
2011-12-16 17:42:59 +01:00
|
|
|
src/common/memory_range_unittest.cc \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/common/module.cc \
|
|
|
|
src/common/module_unittest.cc \
|
|
|
|
src/common/stabs_reader.cc \
|
|
|
|
src/common/stabs_reader_unittest.cc \
|
|
|
|
src/common/stabs_to_module.cc \
|
|
|
|
src/common/stabs_to_module_unittest.cc \
|
|
|
|
src/common/test_assembler.cc \
|
|
|
|
src/common/dwarf/bytereader.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/dwarf/bytereader.h \
|
|
|
|
src/common/dwarf/bytereader-inl.h \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/common/dwarf/bytereader_unittest.cc \
|
|
|
|
src/common/dwarf/cfi_assembler.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/dwarf/cfi_assembler.h \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/common/dwarf/dwarf2diehandler.cc \
|
|
|
|
src/common/dwarf/dwarf2diehandler_unittest.cc \
|
|
|
|
src/common/dwarf/dwarf2reader.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/dwarf/dwarf2reader.h \
|
2016-05-04 20:09:44 +02:00
|
|
|
src/common/dwarf/elf_reader.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/dwarf/elf_reader.h \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/common/dwarf/dwarf2reader_cfi_unittest.cc \
|
2012-02-01 15:57:58 +01:00
|
|
|
src/common/dwarf/dwarf2reader_die_unittest.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/dwarf/dwarf2reader_test_common.h \
|
2014-04-23 22:52:28 +02:00
|
|
|
src/common/linux/crc32.cc \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/common/linux/dump_symbols.cc \
|
2011-07-06 19:05:59 +02:00
|
|
|
src/common/linux/dump_symbols_unittest.cc \
|
2012-01-07 03:25:22 +01:00
|
|
|
src/common/linux/elf_core_dump.cc \
|
|
|
|
src/common/linux/elf_core_dump_unittest.cc \
|
2011-07-06 19:05:49 +02:00
|
|
|
src/common/linux/elf_symbols_to_module.cc \
|
|
|
|
src/common/linux/elf_symbols_to_module_unittest.cc \
|
2012-07-18 15:44:34 +02:00
|
|
|
src/common/linux/elfutils.cc \
|
2011-02-28 15:05:22 +01:00
|
|
|
src/common/linux/file_id.cc \
|
|
|
|
src/common/linux/file_id_unittest.cc \
|
2012-08-03 17:01:52 +02:00
|
|
|
src/common/linux/linux_libc_support.cc \
|
|
|
|
src/common/linux/memory_mapped_file.cc \
|
|
|
|
src/common/linux/memory_mapped_file_unittest.cc \
|
2011-12-21 18:51:40 +01:00
|
|
|
src/common/linux/safe_readlink.cc \
|
|
|
|
src/common/linux/safe_readlink_unittest.cc \
|
2012-08-03 17:01:52 +02:00
|
|
|
src/common/linux/synth_elf.cc \
|
|
|
|
src/common/linux/synth_elf_unittest.cc \
|
2012-01-07 03:25:22 +01:00
|
|
|
src/common/linux/tests/crash_generator.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/linux/tests/crash_generator.h \
|
|
|
|
src/common/testdata/func-line-pairing.h \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/common/tests/file_utils.cc
|
2011-02-28 15:05:22 +01:00
|
|
|
src_common_dumper_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS) \
|
2012-01-07 03:25:22 +01:00
|
|
|
$(PTHREAD_CFLAGS)
|
2016-01-25 23:41:53 +01:00
|
|
|
src_common_dumper_unittest_LDADD = \
|
|
|
|
$(TEST_LIBS) \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2015-09-16 12:46:55 +02:00
|
|
|
|
|
|
|
src_common_mac_macho_reader_unittest_SOURCES = \
|
|
|
|
src/common/dwarf_cfi_to_module.cc \
|
|
|
|
src/common/dwarf_cu_to_module.cc \
|
|
|
|
src/common/dwarf_line_to_module.cc \
|
|
|
|
src/common/language.cc \
|
|
|
|
src/common/md5.cc \
|
|
|
|
src/common/module.cc \
|
|
|
|
src/common/stabs_reader.cc \
|
|
|
|
src/common/stabs_to_module.cc \
|
|
|
|
src/common/test_assembler.cc \
|
|
|
|
src/common/dwarf/bytereader.cc \
|
|
|
|
src/common/dwarf/cfi_assembler.cc \
|
|
|
|
src/common/dwarf/dwarf2diehandler.cc \
|
|
|
|
src/common/dwarf/dwarf2reader.cc \
|
2016-05-04 20:09:44 +02:00
|
|
|
src/common/dwarf/elf_reader.cc \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/common/mac/arch_utilities.cc \
|
|
|
|
src/common/mac/file_id.cc \
|
|
|
|
src/common/mac/macho_id.cc \
|
|
|
|
src/common/mac/macho_reader.cc \
|
|
|
|
src/common/mac/macho_reader_unittest.cc \
|
|
|
|
src/common/mac/macho_utilities.cc \
|
|
|
|
src/common/mac/macho_walker.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/common/tests/file_utils.cc
|
2015-09-16 12:46:55 +02:00
|
|
|
src_common_mac_macho_reader_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS) \
|
2015-09-16 12:46:55 +02:00
|
|
|
-I$(top_srcdir)/src/third_party/mac_headers \
|
|
|
|
-DHAVE_MACH_O_NLIST_H \
|
|
|
|
$(PTHREAD_CFLAGS)
|
2016-01-25 23:41:53 +01:00
|
|
|
src_common_mac_macho_reader_unittest_LDADD = \
|
|
|
|
$(TEST_LIBS) \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-08-31 17:09:01 +02:00
|
|
|
endif
|
2011-12-21 23:33:21 +01:00
|
|
|
|
|
|
|
src_tools_linux_md2core_minidump_2_core_unittest_SOURCES = \
|
|
|
|
src/tools/linux/md2core/minidump_memory_range_unittest.cc
|
|
|
|
src_tools_linux_md2core_minidump_2_core_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2012-09-10 20:26:31 +02:00
|
|
|
src_tools_linux_md2core_minidump_2_core_unittest_LDADD = \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2011-12-21 23:33:21 +01:00
|
|
|
|
2011-02-28 15:05:22 +01:00
|
|
|
endif LINUX_HOST
|
2010-03-02 01:39:48 +01:00
|
|
|
|
2010-10-05 21:38:22 +02:00
|
|
|
if !DISABLE_PROCESSOR
|
2006-10-20 21:50:01 +02:00
|
|
|
src_processor_address_map_unittest_SOURCES = \
|
|
|
|
src/processor/address_map_unittest.cc
|
2007-05-21 22:09:33 +02:00
|
|
|
src_processor_address_map_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2006-10-20 21:50:01 +02:00
|
|
|
|
2006-12-12 00:22:54 +01:00
|
|
|
src_processor_basic_source_line_resolver_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/basic_source_line_resolver_unittest.cc
|
2010-04-09 01:06:23 +02:00
|
|
|
src_processor_basic_source_line_resolver_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2006-12-12 00:22:54 +01:00
|
|
|
src_processor_basic_source_line_resolver_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/logging.o \
|
2010-10-07 22:31:36 +02:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/tokenize.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2006-12-12 00:22:54 +01:00
|
|
|
|
2010-03-16 17:28:32 +01:00
|
|
|
src_processor_cfi_frame_info_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/cfi_frame_info_unittest.cc
|
2010-03-16 17:28:32 +01:00
|
|
|
src_processor_cfi_frame_info_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/logging.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-03-16 17:28:32 +01:00
|
|
|
src_processor_cfi_frame_info_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-03-16 17:28:32 +01:00
|
|
|
|
2006-09-20 18:20:15 +02:00
|
|
|
src_processor_contained_range_map_unittest_SOURCES = \
|
|
|
|
src/processor/contained_range_map_unittest.cc
|
2007-05-21 22:09:33 +02:00
|
|
|
src_processor_contained_range_map_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2006-09-20 18:20:15 +02:00
|
|
|
|
2010-10-02 00:38:10 +02:00
|
|
|
src_processor_exploitability_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/exploitability_unittest.cc
|
2010-10-02 00:38:10 +02:00
|
|
|
src_processor_exploitability_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-10-02 00:38:10 +02:00
|
|
|
src_processor_exploitability_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/minidump_processor.o \
|
|
|
|
src/processor/process_state.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
|
|
|
src/processor/exploitability.o \
|
2013-10-29 21:03:39 +01:00
|
|
|
src/processor/exploitability_linux.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/exploitability_win.o \
|
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/processor/dump_context.o \
|
|
|
|
src/processor/dump_object.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/proc_maps_linux.o \
|
2013-10-29 21:03:39 +01:00
|
|
|
src/processor/simple_symbol_supplier.o \
|
2010-10-07 22:31:36 +02:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stack_frame_cpu.o \
|
2012-10-10 23:41:52 +02:00
|
|
|
src/processor/stack_frame_symbolizer.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker.o \
|
2014-11-25 12:36:38 +01:00
|
|
|
src/processor/stackwalker_address_list.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stackwalker_arm64.o \
|
2013-09-11 13:37:04 +02:00
|
|
|
src/processor/stackwalker_mips.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_ppc.o \
|
2013-04-13 01:24:02 +02:00
|
|
|
src/processor/stackwalker_ppc64.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
2015-04-11 00:05:29 +02:00
|
|
|
src/processor/symbolic_constants_win.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/tokenize.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/third_party/libdisasm/libdisasm.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-10-02 00:38:10 +02:00
|
|
|
|
|
|
|
src_processor_disassembler_x86_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/disassembler_x86_unittest.cc
|
2010-10-02 00:38:10 +02:00
|
|
|
src_processor_disassembler_x86_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-10-02 00:38:10 +02:00
|
|
|
src_processor_disassembler_x86_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/disassembler_x86.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/third_party/libdisasm/libdisasm.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-10-02 00:38:10 +02:00
|
|
|
|
2010-10-21 19:13:01 +02:00
|
|
|
src_processor_fast_source_line_resolver_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/fast_source_line_resolver_unittest.cc
|
2010-10-21 19:13:01 +02:00
|
|
|
src_processor_fast_source_line_resolver_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-10-21 19:13:01 +02:00
|
|
|
src_processor_fast_source_line_resolver_unittest_LDADD = \
|
2012-01-19 08:14:51 +01:00
|
|
|
src/processor/fast_source_line_resolver.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/module_comparer.o \
|
|
|
|
src/processor/module_serializer.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/source_line_resolver_base.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/tokenize.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-10-21 19:13:01 +02:00
|
|
|
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_map_serializers_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/map_serializers_unittest.cc
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_map_serializers_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_map_serializers_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-10-15 22:36:31 +02:00
|
|
|
|
2014-09-10 21:12:30 +02:00
|
|
|
src_processor_microdump_processor_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/microdump_processor_unittest.cc
|
2014-09-10 21:12:30 +02:00
|
|
|
src_processor_microdump_processor_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2014-09-10 21:12:30 +02:00
|
|
|
src_processor_microdump_processor_unittest_LDADD = \
|
2014-11-19 22:33:26 +01:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/dump_context.o \
|
|
|
|
src/processor/dump_object.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/microdump.o \
|
|
|
|
src/processor/microdump_processor.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/process_state.o \
|
|
|
|
src/processor/simple_symbol_supplier.o \
|
|
|
|
src/processor/source_line_resolver_base.o \
|
|
|
|
src/processor/stack_frame_symbolizer.o \
|
|
|
|
src/processor/stackwalker.o \
|
2014-11-25 12:36:38 +01:00
|
|
|
src/processor/stackwalker_address_list.o \
|
2014-11-19 22:33:26 +01:00
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
|
|
|
src/processor/stackwalker_arm64.o \
|
|
|
|
src/processor/stackwalker_mips.o \
|
|
|
|
src/processor/stackwalker_ppc.o \
|
|
|
|
src/processor/stackwalker_ppc64.o \
|
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
|
|
|
src/processor/tokenize.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2015-08-13 18:38:19 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2014-09-10 21:12:30 +02:00
|
|
|
|
2006-09-19 23:58:41 +02:00
|
|
|
src_processor_minidump_processor_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/minidump_processor_unittest.cc
|
2009-05-29 02:53:02 +02:00
|
|
|
src_processor_minidump_processor_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2006-09-19 23:58:41 +02:00
|
|
|
src_processor_minidump_processor_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/processor/dump_context.o \
|
|
|
|
src/processor/dump_object.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/exploitability.o \
|
2013-10-29 21:03:39 +01:00
|
|
|
src/processor/exploitability_linux.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/exploitability_win.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump_processor.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/process_state.o \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/proc_maps_linux.o \
|
2010-10-07 22:31:36 +02:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stack_frame_cpu.o \
|
2012-10-10 23:41:52 +02:00
|
|
|
src/processor/stack_frame_symbolizer.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker.o \
|
2014-11-25 12:36:38 +01:00
|
|
|
src/processor/stackwalker_address_list.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stackwalker_arm64.o \
|
2013-09-11 13:37:04 +02:00
|
|
|
src/processor/stackwalker_mips.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_ppc.o \
|
2013-04-13 01:24:02 +02:00
|
|
|
src/processor/stackwalker_ppc64.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
2015-04-11 00:05:29 +02:00
|
|
|
src/processor/symbolic_constants_win.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/tokenize.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/third_party/libdisasm/libdisasm.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2006-09-19 23:58:41 +02:00
|
|
|
|
2009-12-09 02:24:37 +01:00
|
|
|
src_processor_minidump_unittest_SOURCES = \
|
2010-04-27 21:17:59 +02:00
|
|
|
src/common/test_assembler.cc \
|
2009-12-09 02:24:37 +01:00
|
|
|
src/processor/minidump_unittest.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/synth_minidump.cc
|
2009-12-09 02:24:37 +01:00
|
|
|
src_processor_minidump_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2009-12-09 02:24:37 +01:00
|
|
|
src_processor_minidump_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/basic_code_modules.o \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/processor/dump_context.o \
|
|
|
|
src/processor/dump_object.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/proc_maps_linux.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
|
|
|
|
|
|
|
src_processor_proc_maps_linux_unittest_SOURCES = \
|
|
|
|
src/processor/proc_maps_linux.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/proc_maps_linux_unittest.cc
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src_processor_proc_maps_linux_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src_processor_proc_maps_linux_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/third_party/libdisasm/libdisasm.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2009-12-09 02:24:37 +01:00
|
|
|
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_static_address_map_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/static_address_map_unittest.cc
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_static_address_map_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_static_address_map_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-10-15 22:36:31 +02:00
|
|
|
|
|
|
|
src_processor_static_contained_range_map_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/static_contained_range_map_unittest.cc
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_static_contained_range_map_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_static_contained_range_map_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-10-15 22:36:31 +02:00
|
|
|
|
2010-09-20 19:45:15 +02:00
|
|
|
src_processor_static_map_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/static_map_unittest.cc
|
2010-09-20 19:45:15 +02:00
|
|
|
src_processor_static_map_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-09-20 19:45:15 +02:00
|
|
|
src_processor_static_map_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/logging.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-09-20 19:45:15 +02:00
|
|
|
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_static_range_map_unittest_SOURCES = \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/static_range_map_unittest.cc
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_static_range_map_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-10-15 22:36:31 +02:00
|
|
|
src_processor_static_range_map_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-10-15 22:36:31 +02:00
|
|
|
|
2006-10-27 02:40:56 +02:00
|
|
|
src_processor_pathname_stripper_unittest_SOURCES = \
|
|
|
|
src/processor/pathname_stripper_unittest.cc
|
|
|
|
src_processor_pathname_stripper_unittest_LDADD = \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2006-10-27 02:40:56 +02:00
|
|
|
|
2006-09-22 02:42:23 +02:00
|
|
|
src_processor_postfix_evaluator_unittest_SOURCES = \
|
|
|
|
src/processor/postfix_evaluator_unittest.cc
|
2007-05-21 22:09:33 +02:00
|
|
|
src_processor_postfix_evaluator_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/logging.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2006-09-22 02:42:23 +02:00
|
|
|
|
2016-06-06 07:41:10 +02:00
|
|
|
src_processor_range_map_shrink_down_unittest_SOURCES = \
|
|
|
|
src/processor/range_map_shrink_down_unittest.cc
|
|
|
|
src_processor_range_map_shrink_down_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
$(TEST_LIBS) \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
|
|
|
src_processor_range_map_shrink_down_unittest_CPPFLAGS = \
|
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
|
|
|
|
2006-09-06 04:56:44 +02:00
|
|
|
src_processor_range_map_unittest_SOURCES = \
|
|
|
|
src/processor/range_map_unittest.cc
|
2007-05-21 22:09:33 +02:00
|
|
|
src_processor_range_map_unittest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/logging.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2006-08-30 22:05:05 +02:00
|
|
|
|
2006-09-25 23:16:15 +02:00
|
|
|
src_processor_stackwalker_selftest_SOURCES = \
|
|
|
|
src/processor/stackwalker_selftest.cc
|
|
|
|
src_processor_stackwalker_selftest_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
|
|
|
src/processor/exploitability.o \
|
2013-10-29 21:03:39 +01:00
|
|
|
src/processor/exploitability_linux.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/exploitability_win.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/proc_maps_linux.o \
|
2010-10-07 22:31:36 +02:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stack_frame_cpu.o \
|
2012-10-10 23:41:52 +02:00
|
|
|
src/processor/stack_frame_symbolizer.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker.o \
|
2014-11-25 12:36:38 +01:00
|
|
|
src/processor/stackwalker_address_list.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stackwalker_arm64.o \
|
2013-09-11 13:37:04 +02:00
|
|
|
src/processor/stackwalker_mips.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_ppc.o \
|
2013-04-13 01:24:02 +02:00
|
|
|
src/processor/stackwalker_ppc64.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/processor/tokenize.o \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2006-09-25 23:16:15 +02:00
|
|
|
|
2010-03-16 17:49:53 +01:00
|
|
|
src_processor_stackwalker_amd64_unittest_SOURCES = \
|
2010-04-27 21:17:59 +02:00
|
|
|
src/common/test_assembler.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/stackwalker_amd64_unittest.cc
|
2010-03-16 17:49:53 +01:00
|
|
|
src_processor_stackwalker_amd64_unittest_LDADD = \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/libbreakpad.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-03-16 17:49:53 +01:00
|
|
|
src_processor_stackwalker_amd64_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-03-16 17:49:53 +01:00
|
|
|
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 17:46:22 +01:00
|
|
|
src_processor_stackwalker_arm_unittest_SOURCES = \
|
2010-04-27 21:17:59 +02:00
|
|
|
src/common/test_assembler.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/stackwalker_arm_unittest.cc
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 17:46:22 +01:00
|
|
|
src_processor_stackwalker_arm_unittest_LDADD = \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/libbreakpad.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 17:46:22 +01:00
|
|
|
src_processor_stackwalker_arm_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 17:46:22 +01:00
|
|
|
|
2013-11-23 02:45:20 +01:00
|
|
|
src_processor_stackwalker_arm64_unittest_SOURCES = \
|
|
|
|
src/common/test_assembler.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/stackwalker_arm64_unittest.cc
|
2013-11-23 02:45:20 +01:00
|
|
|
src_processor_stackwalker_arm64_unittest_LDADD = \
|
|
|
|
src/libbreakpad.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2013-11-23 02:45:20 +01:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
|
|
|
src_processor_stackwalker_arm64_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2013-11-23 02:45:20 +01:00
|
|
|
|
2013-08-23 16:38:36 +02:00
|
|
|
src_processor_stackwalker_address_list_unittest_SOURCES = \
|
|
|
|
src/common/test_assembler.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/stackwalker_address_list_unittest.cc
|
2013-08-23 16:38:36 +02:00
|
|
|
src_processor_stackwalker_address_list_unittest_LDADD = \
|
|
|
|
src/libbreakpad.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2013-08-23 16:38:36 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
|
|
|
src_processor_stackwalker_address_list_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2013-08-23 16:38:36 +02:00
|
|
|
|
2013-09-11 13:37:04 +02:00
|
|
|
src_processor_stackwalker_mips_unittest_SOURCES = \
|
|
|
|
src/common/test_assembler.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/stackwalker_mips_unittest.cc
|
2013-09-11 13:37:04 +02:00
|
|
|
src_processor_stackwalker_mips_unittest_LDADD = \
|
|
|
|
src/libbreakpad.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2013-09-11 13:37:04 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
|
|
|
src_processor_stackwalker_mips_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2013-09-11 13:37:04 +02:00
|
|
|
|
2016-02-07 00:58:39 +01:00
|
|
|
src_processor_stackwalker_mips64_unittest_SOURCES = \
|
|
|
|
src/common/test_assembler.cc \
|
|
|
|
src/processor/stackwalker_mips64_unittest.cc
|
|
|
|
src_processor_stackwalker_mips64_unittest_LDADD = \
|
|
|
|
src/libbreakpad.a \
|
|
|
|
$(TEST_LIBS) \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
|
|
|
src_processor_stackwalker_mips64_unittest_CPPFLAGS = \
|
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
|
|
|
|
2010-03-16 17:25:30 +01:00
|
|
|
src_processor_stackwalker_x86_unittest_SOURCES = \
|
2010-04-27 21:17:59 +02:00
|
|
|
src/common/test_assembler.cc \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/processor/stackwalker_x86_unittest.cc
|
2010-03-16 17:25:30 +01:00
|
|
|
src_processor_stackwalker_x86_unittest_LDADD = \
|
2012-09-10 20:26:31 +02:00
|
|
|
src/libbreakpad.a \
|
2016-01-25 23:41:53 +01:00
|
|
|
$(TEST_LIBS) \
|
2012-09-10 20:26:31 +02:00
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-03-16 17:25:30 +01:00
|
|
|
src_processor_stackwalker_x86_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2010-03-16 17:25:30 +01:00
|
|
|
|
2010-03-16 17:20:34 +01:00
|
|
|
src_processor_synth_minidump_unittest_SOURCES = \
|
2010-04-27 21:17:59 +02:00
|
|
|
src/common/test_assembler.cc \
|
|
|
|
src/common/test_assembler.h \
|
2010-03-16 17:20:34 +01:00
|
|
|
src/processor/synth_minidump_unittest.cc \
|
|
|
|
src/processor/synth_minidump.cc \
|
2010-04-27 21:17:59 +02:00
|
|
|
src/processor/synth_minidump.h
|
2010-03-16 17:20:34 +01:00
|
|
|
src_processor_synth_minidump_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2016-01-25 23:41:53 +01:00
|
|
|
src_processor_synth_minidump_unittest_LDADD = \
|
|
|
|
$(TEST_LIBS) \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-03-16 17:20:34 +01:00
|
|
|
|
2010-04-27 21:17:59 +02:00
|
|
|
src_common_test_assembler_unittest_SOURCES = \
|
|
|
|
src/common/test_assembler.cc \
|
|
|
|
src/common/test_assembler.h \
|
2016-01-25 23:41:53 +01:00
|
|
|
src/common/test_assembler_unittest.cc
|
2010-04-27 21:17:59 +02:00
|
|
|
src_common_test_assembler_unittest_CPPFLAGS = \
|
2016-01-25 21:12:03 +01:00
|
|
|
$(AM_CPPFLAGS) $(TEST_CFLAGS)
|
2016-01-25 23:41:53 +01:00
|
|
|
src_common_test_assembler_unittest_LDADD = \
|
|
|
|
$(TEST_LIBS) \
|
|
|
|
$(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-03-16 17:20:34 +01:00
|
|
|
|
2006-08-30 22:05:05 +02:00
|
|
|
## Non-installables
|
2006-09-06 04:56:44 +02:00
|
|
|
noinst_PROGRAMS =
|
2006-08-30 22:05:05 +02:00
|
|
|
noinst_SCRIPTS = $(check_SCRIPTS)
|
2006-08-25 23:14:45 +02:00
|
|
|
|
2006-09-06 04:56:44 +02:00
|
|
|
src_processor_minidump_dump_SOURCES = \
|
|
|
|
src/processor/minidump_dump.cc
|
|
|
|
src_processor_minidump_dump_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/basic_code_modules.o \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/processor/dump_context.o \
|
|
|
|
src/processor/dump_object.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/proc_maps_linux.o
|
2006-09-06 04:56:44 +02:00
|
|
|
|
2014-11-25 12:36:38 +01:00
|
|
|
src_processor_microdump_stackwalk_SOURCES = \
|
|
|
|
src/processor/microdump_stackwalk.cc
|
|
|
|
src_processor_microdump_stackwalk_LDADD = \
|
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
|
|
|
src/processor/dump_context.o \
|
|
|
|
src/processor/dump_object.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/microdump.o \
|
|
|
|
src/processor/microdump_processor.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/process_state.o \
|
|
|
|
src/processor/simple_symbol_supplier.o \
|
|
|
|
src/processor/source_line_resolver_base.o \
|
|
|
|
src/processor/stack_frame_cpu.o \
|
|
|
|
src/processor/stack_frame_symbolizer.o \
|
|
|
|
src/processor/stackwalk_common.o \
|
|
|
|
src/processor/stackwalker.o \
|
|
|
|
src/processor/stackwalker_address_list.o \
|
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
|
|
|
src/processor/stackwalker_arm64.o \
|
|
|
|
src/processor/stackwalker_mips.o \
|
|
|
|
src/processor/stackwalker_ppc.o \
|
|
|
|
src/processor/stackwalker_ppc64.o \
|
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
|
|
|
src/processor/tokenize.o \
|
|
|
|
src/third_party/libdisasm/libdisasm.a
|
|
|
|
|
2006-09-06 21:28:46 +02:00
|
|
|
src_processor_minidump_stackwalk_SOURCES = \
|
|
|
|
src/processor/minidump_stackwalk.cc
|
|
|
|
src_processor_minidump_stackwalk_LDADD = \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
2014-09-08 21:10:42 +02:00
|
|
|
src/processor/dump_context.o \
|
|
|
|
src/processor/dump_object.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/exploitability.o \
|
2013-10-29 21:03:39 +01:00
|
|
|
src/processor/exploitability_linux.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/exploitability_win.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/minidump_processor.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/process_state.o \
|
Add support for Linux memory mapping stream and remove ELF header usage
when checking exploitability rating.
Linux minidumps do not support MD_MEMORY_INFO_LIST_STREAM, meaning the
processor cannot retrieve its memory mappings. However, it has its own
stream, MD_LINUX_MAPS, which contains memory mappings specific to Linux
(it contains the contents of /proc/self/maps). This CL allows the minidump
to gather information from the memory mappings for Linux minidumps.
In addition, exploitability rating for Linux dumps now use memory mappings
instead of checking the ELF headers of binaries. The basis for the change
is that checking the ELF headers requires the minidumps to store the memory
from the ELF headers, while the memory mapping data is already present,
meaning the size of a minidump will be unchanged.
As a result, of removing ELF header analysis, two unit tests have been removed.
Arguably, the cases that those unit tests check do not merit a high
exploitability rating and do not warrant a solid conclusion that was given
earlier.
R=ivanpe@chromium.org
Review URL: https://codereview.chromium.org/1251593007
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1476 4c0a9323-5329-0410-9bdc-e9ce6186880e
2015-07-28 02:53:44 +02:00
|
|
|
src/processor/proc_maps_linux.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/simple_symbol_supplier.o \
|
2010-10-07 22:31:36 +02:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stack_frame_cpu.o \
|
2012-10-10 23:41:52 +02:00
|
|
|
src/processor/stack_frame_symbolizer.o \
|
2014-11-25 12:36:38 +01:00
|
|
|
src/processor/stackwalk_common.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker.o \
|
2014-11-25 12:36:38 +01:00
|
|
|
src/processor/stackwalker_address_list.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
2013-11-23 02:45:20 +01:00
|
|
|
src/processor/stackwalker_arm64.o \
|
2013-09-11 13:37:04 +02:00
|
|
|
src/processor/stackwalker_mips.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_ppc.o \
|
2013-04-13 01:24:02 +02:00
|
|
|
src/processor/stackwalker_ppc64.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
2015-04-11 00:05:29 +02:00
|
|
|
src/processor/symbolic_constants_win.o \
|
2010-10-05 21:38:51 +02:00
|
|
|
src/processor/tokenize.o \
|
|
|
|
src/third_party/libdisasm/libdisasm.a
|
2006-09-06 21:28:46 +02:00
|
|
|
|
2010-10-05 21:38:22 +02:00
|
|
|
endif !DISABLE_PROCESSOR
|
2006-08-25 23:14:45 +02:00
|
|
|
|
2006-08-30 22:05:05 +02:00
|
|
|
## Additional files to be included in a source distribution
|
2006-12-05 23:52:28 +01:00
|
|
|
##
|
|
|
|
## find src/client src/common src/processor/testdata src/tools \
|
2007-09-26 20:37:39 +02:00
|
|
|
## -type f \! -path '*/.svn/*' -print | sort | \
|
|
|
|
## sed -e s/'^\(.*\)$'/'\t\1 \\'/
|
2006-08-30 22:05:05 +02:00
|
|
|
EXTRA_DIST = \
|
|
|
|
$(SCRIPTS) \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/linux/data/linux-gate-amd.sym \
|
|
|
|
src/client/linux/data/linux-gate-intel.sym \
|
|
|
|
src/client/mac/handler/breakpad_nlist_64.cc \
|
|
|
|
src/client/mac/handler/breakpad_nlist_64.h \
|
2007-09-26 20:37:39 +02:00
|
|
|
src/client/mac/handler/dynamic_images.cc \
|
|
|
|
src/client/mac/handler/dynamic_images.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/client/mac/handler/exception_handler.cc \
|
|
|
|
src/client/mac/handler/exception_handler.h \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/mac/handler/mach_vm_compat.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/client/mac/handler/minidump_generator.cc \
|
|
|
|
src/client/mac/handler/minidump_generator.h \
|
|
|
|
src/client/mac/handler/minidump_test.xcodeproj/project.pbxproj \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/mac/handler/minidump_tests32-Info.plist \
|
|
|
|
src/client/mac/handler/minidump_tests64-Info.plist \
|
|
|
|
src/client/mac/handler/obj-cTestCases-Info.plist \
|
2007-09-26 20:37:39 +02:00
|
|
|
src/client/mac/handler/protected_memory_allocator.cc \
|
|
|
|
src/client/mac/handler/protected_memory_allocator.h \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/mac/handler/ucontext_compat.h \
|
|
|
|
src/client/mac/handler/testcases/testdata/dump_syms_i386_breakpad.sym \
|
|
|
|
src/client/mac/tests/BreakpadFramework_Test.mm \
|
|
|
|
src/client/mac/tests/crash_generation_server_test.cc \
|
|
|
|
src/client/mac/tests/exception_handler_test.cc \
|
|
|
|
src/client/mac/tests/minidump_generator_test.cc \
|
|
|
|
src/client/mac/tests/minidump_generator_test_helper.cc \
|
|
|
|
src/client/mac/tests/spawn_child_process.h \
|
|
|
|
src/client/mac/tests/testlogging.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/client/minidump_file_writer_unittest.cc \
|
2007-09-26 20:37:39 +02:00
|
|
|
src/client/solaris/handler/Makefile \
|
|
|
|
src/client/solaris/handler/exception_handler.cc \
|
|
|
|
src/client/solaris/handler/exception_handler.h \
|
|
|
|
src/client/solaris/handler/exception_handler_test.cc \
|
|
|
|
src/client/solaris/handler/minidump_generator.cc \
|
|
|
|
src/client/solaris/handler/minidump_generator.h \
|
|
|
|
src/client/solaris/handler/minidump_test.cc \
|
|
|
|
src/client/solaris/handler/solaris_lwp.cc \
|
|
|
|
src/client/solaris/handler/solaris_lwp.h \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/windows/breakpad_client.gyp \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/client/windows/handler/exception_handler.cc \
|
|
|
|
src/client/windows/handler/exception_handler.h \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/windows/handler/exception_handler.gyp \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/client/windows/sender/crash_report_sender.cc \
|
|
|
|
src/client/windows/sender/crash_report_sender.h \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/client/windows/sender/crash_report_sender.gyp \
|
|
|
|
src/common/dwarf/dwarf2diehandler.h \
|
|
|
|
src/common/dwarf/dwarf2enums.h \
|
|
|
|
src/common/dwarf/line_state_machine.h \
|
|
|
|
src/common/dwarf/types.h \
|
|
|
|
src/common/mac/arch_utilities.h \
|
|
|
|
src/common/mac/byteswap.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/common/mac/HTTPMultipartUpload.h \
|
|
|
|
src/common/mac/HTTPMultipartUpload.m \
|
|
|
|
src/common/mac/string_utilities.cc \
|
|
|
|
src/common/mac/string_utilities.h \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/common/mac/super_fat_arch.h \
|
2013-01-22 18:20:42 +01:00
|
|
|
src/common/scoped_ptr.h \
|
2007-09-28 20:14:48 +02:00
|
|
|
src/common/solaris/dump_symbols.cc \
|
|
|
|
src/common/solaris/dump_symbols.h \
|
2007-09-26 20:37:39 +02:00
|
|
|
src/common/solaris/file_id.cc \
|
|
|
|
src/common/solaris/file_id.h \
|
|
|
|
src/common/solaris/guid_creator.cc \
|
|
|
|
src/common/solaris/guid_creator.h \
|
|
|
|
src/common/solaris/message_output.h \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/common/windows/guid_string.cc \
|
|
|
|
src/common/windows/guid_string.h \
|
|
|
|
src/common/windows/http_upload.cc \
|
|
|
|
src/common/windows/http_upload.h \
|
|
|
|
src/common/windows/pdb_source_line_writer.cc \
|
|
|
|
src/common/windows/pdb_source_line_writer.h \
|
|
|
|
src/common/windows/string_utils-inl.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/common/windows/string_utils.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/processor/stackwalk_common.cc \
|
|
|
|
src/processor/stackwalk_common.h \
|
|
|
|
src/processor/stackwalker_selftest_sol.s \
|
|
|
|
src/processor/testdata/ascii_read_av_block_write.dmp \
|
|
|
|
src/processor/testdata/ascii_read_av_clobber_write.dmp \
|
|
|
|
src/processor/testdata/ascii_read_av_conditional.dmp \
|
|
|
|
src/processor/testdata/ascii_read_av.dmp \
|
|
|
|
src/processor/testdata/ascii_read_av_then_jmp.dmp \
|
|
|
|
src/processor/testdata/ascii_read_av_xchg_write.dmp \
|
|
|
|
src/processor/testdata/ascii_write_av_arg_to_call.dmp \
|
|
|
|
src/processor/testdata/ascii_write_av.dmp \
|
|
|
|
src/processor/testdata/exec_av_on_stack.dmp \
|
|
|
|
src/processor/testdata/linux_divide_by_zero.dmp \
|
|
|
|
src/processor/testdata/linux_executable_heap.dmp \
|
|
|
|
src/processor/testdata/linux_executable_stack.dmp \
|
|
|
|
src/processor/testdata/linux_inside_module_exe_region1.dmp \
|
|
|
|
src/processor/testdata/linux_inside_module_exe_region2.dmp \
|
|
|
|
src/processor/testdata/linux_jmp_to_0.dmp \
|
|
|
|
src/processor/testdata/linux_jmp_to_module_not_exe_region.dmp \
|
|
|
|
src/processor/testdata/linux_null_dereference.dmp \
|
|
|
|
src/processor/testdata/linux_null_read_av.dmp \
|
|
|
|
src/processor/testdata/linux_outside_module.dmp \
|
|
|
|
src/processor/testdata/linux_overflow.dmp \
|
|
|
|
src/processor/testdata/linux_raise_sigabrt.dmp \
|
|
|
|
src/processor/testdata/linux_stack_pointer_in_module.dmp \
|
|
|
|
src/processor/testdata/linux_stack_pointer_in_stack.dmp \
|
|
|
|
src/processor/testdata/linux_stacksmash.dmp \
|
|
|
|
src/processor/testdata/linux_write_to_nonwritable_module.dmp \
|
|
|
|
src/processor/testdata/linux_write_to_nonwritable_region_math.dmp \
|
|
|
|
src/processor/testdata/linux_write_to_outside_module.dmp \
|
|
|
|
src/processor/testdata/linux_write_to_outside_module_via_math.dmp \
|
|
|
|
src/processor/testdata/linux_write_to_under_4k.dmp \
|
|
|
|
src/processor/testdata/microdump-arm64.dmp \
|
|
|
|
src/processor/testdata/microdump-arm.dmp \
|
|
|
|
src/processor/testdata/microdump-mips32.dmp \
|
|
|
|
src/processor/testdata/microdump-mips64.dmp \
|
|
|
|
src/processor/testdata/microdump-multiple.dmp \
|
|
|
|
src/processor/testdata/microdump.stackwalk-arm64.out \
|
|
|
|
src/processor/testdata/microdump.stackwalk-arm.out \
|
|
|
|
src/processor/testdata/microdump.stackwalk.machine_readable-arm64.out \
|
|
|
|
src/processor/testdata/microdump.stackwalk.machine_readable-arm.out \
|
|
|
|
src/processor/testdata/microdump-x86.dmp \
|
2006-09-08 04:35:53 +02:00
|
|
|
src/processor/testdata/minidump2.dmp \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/processor/testdata/minidump2.dump.out \
|
2007-01-29 22:30:31 +01:00
|
|
|
src/processor/testdata/minidump2.stackwalk.machine_readable.out \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/processor/testdata/minidump2.stackwalk.out \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/processor/testdata/module0.out \
|
2006-08-30 22:05:05 +02:00
|
|
|
src/processor/testdata/module1.out \
|
|
|
|
src/processor/testdata/module2.out \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/processor/testdata/module3_bad.out \
|
2007-09-26 20:37:39 +02:00
|
|
|
src/processor/testdata/module4_bad.out \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/processor/testdata/null_read_av.dmp \
|
|
|
|
src/processor/testdata/null_write_av.dmp \
|
|
|
|
src/processor/testdata/read_av_clobber_write.dmp \
|
|
|
|
src/processor/testdata/read_av_conditional.dmp \
|
|
|
|
src/processor/testdata/read_av_non_null.dmp \
|
|
|
|
src/processor/testdata/stack_exhaustion.dmp \
|
|
|
|
src/processor/testdata/write_av_non_null.dmp \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/processor/testdata/symbols/kernel32.pdb/BCE8785C57B44245A669896B6A19B9542/kernel32.sym \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/processor/testdata/symbols/ld-2.13.so/C32AD7E235EA6112E02A5B9D6219C4850/ld-2.13.so.sym \
|
|
|
|
src/processor/testdata/symbols/libc-2.13.so/F4F8DFCD5A5FB5A7CE64717E9E6AE3890/libc-2.13.so.sym \
|
|
|
|
src/processor/testdata/symbols/libgcc_s.so.1/18B180F90887D8F8B5C35D185444AF4C0/libgcc_s.so.1.sym \
|
|
|
|
src/processor/testdata/symbols/microdump/breakpad_unittests/D6D1FEC9A15DE7F38A236898871A2E770/breakpad_unittests.sym \
|
|
|
|
src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/breakpad_unittests.sym \
|
|
|
|
src/processor/testdata/symbols/microdump/crash_example/6E72E2F1A5F59AB3D51356FDFE394D490/crash_example.sym \
|
|
|
|
src/processor/testdata/symbols/microdump/crash_example/8F36148CC4647A8116CAF2A25F591F570/crash_example.sym \
|
|
|
|
src/processor/testdata/symbols/null_read_av/7B7D1968FF0D47AE4366E9C3A7E1B6750/null_read_av.sym \
|
|
|
|
src/processor/testdata/symbols/overflow/B0E1FC01EF48E39CAF5C881D2DF0C3840/overflow.sym \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/processor/testdata/symbols/test_app.pdb/5A9832E5287241C1838ED98914E9B7FF1/test_app.sym \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/processor/testdata/test_app.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/testing/gtest/include/gtest/gtest.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest-death-test.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest-message.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest-param-test.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest-printers.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest-spi.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest-test-part.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest-typed-test.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest_pred_impl.h \
|
|
|
|
src/testing/gtest/include/gtest/gtest_prod.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-death-test-internal.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-filepath.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-internal.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-linked_ptr.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-param-util-generated.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-param-util.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-port.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-string.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-tuple.h \
|
|
|
|
src/testing/gtest/include/gtest/internal/gtest-type-util.h \
|
|
|
|
src/testing/gtest/src/gtest.cc \
|
|
|
|
src/testing/gtest/src/gtest-death-test.cc \
|
|
|
|
src/testing/gtest/src/gtest-filepath.cc \
|
|
|
|
src/testing/gtest/src/gtest-internal-inl.h \
|
|
|
|
src/testing/gtest/src/gtest-port.cc \
|
|
|
|
src/testing/gtest/src/gtest-printers.cc \
|
|
|
|
src/testing/gtest/src/gtest-test-part.cc \
|
|
|
|
src/testing/gtest/src/gtest-typed-test.cc \
|
|
|
|
src/testing/include/gmock/gmock.h \
|
|
|
|
src/testing/include/gmock/gmock-actions.h \
|
|
|
|
src/testing/include/gmock/gmock-cardinalities.h \
|
|
|
|
src/testing/include/gmock/gmock-generated-actions.h \
|
|
|
|
src/testing/include/gmock/gmock-generated-function-mockers.h \
|
|
|
|
src/testing/include/gmock/gmock-generated-matchers.h \
|
|
|
|
src/testing/include/gmock/gmock-generated-nice-strict.h \
|
|
|
|
src/testing/include/gmock/gmock-matchers.h \
|
|
|
|
src/testing/include/gmock/gmock-more-actions.h \
|
|
|
|
src/testing/include/gmock/gmock-more-matchers.h \
|
|
|
|
src/testing/include/gmock/gmock-spec-builders.h \
|
|
|
|
src/testing/include/gmock/internal/gmock-generated-internal-utils.h \
|
|
|
|
src/testing/include/gmock/internal/gmock-internal-utils.h \
|
|
|
|
src/testing/include/gmock/internal/gmock-port.h \
|
|
|
|
src/testing/src/gmock.cc \
|
|
|
|
src/testing/src/gmock-cardinalities.cc \
|
|
|
|
src/testing/src/gmock-internal-utils.cc \
|
|
|
|
src/testing/src/gmock-matchers.cc \
|
|
|
|
src/testing/src/gmock-spec-builders.cc \
|
|
|
|
src/testing/src/gmock_main.cc \
|
|
|
|
src/third_party/curl/COPYING \
|
|
|
|
src/third_party/curl/curlbuild.h \
|
|
|
|
src/third_party/curl/curl.h \
|
|
|
|
src/third_party/curl/curlrules.h \
|
|
|
|
src/third_party/curl/curlver.h \
|
|
|
|
src/third_party/curl/easy.h \
|
|
|
|
src/third_party/curl/mprintf.h \
|
|
|
|
src/third_party/curl/multi.h \
|
|
|
|
src/third_party/curl/stdcheaders.h \
|
|
|
|
src/third_party/curl/typecheck-gcc.h \
|
|
|
|
src/third_party/curl/types.h \
|
|
|
|
src/third_party/mac_headers/architecture/byte_order.h \
|
|
|
|
src/third_party/mac_headers/i386/_types.h \
|
|
|
|
src/third_party/mac_headers/mach/boolean.h \
|
|
|
|
src/third_party/mac_headers/mach/i386/boolean.h \
|
|
|
|
src/third_party/mac_headers/mach/i386/vm_param.h \
|
|
|
|
src/third_party/mac_headers/mach/i386/vm_types.h \
|
|
|
|
src/third_party/mac_headers/mach/machine/boolean.h \
|
|
|
|
src/third_party/mac_headers/mach/machine.h \
|
|
|
|
src/third_party/mac_headers/mach/machine/thread_state.h \
|
|
|
|
src/third_party/mac_headers/mach/machine/thread_status.h \
|
|
|
|
src/third_party/mac_headers/mach/machine/vm_types.h \
|
|
|
|
src/third_party/mac_headers/mach-o/arch.h \
|
|
|
|
src/third_party/mac_headers/mach-o/fat.h \
|
|
|
|
src/third_party/mac_headers/mach-o/loader.h \
|
|
|
|
src/third_party/mac_headers/mach-o/nlist.h \
|
|
|
|
src/third_party/mac_headers/mach/thread_status.h \
|
|
|
|
src/third_party/mac_headers/mach/vm_prot.h \
|
|
|
|
src/third_party/mac_headers/README \
|
|
|
|
src/third_party/musl/README \
|
|
|
|
src/third_party/musl/COPYRIGHT \
|
|
|
|
src/third_party/musl/README.breakpad \
|
|
|
|
src/third_party/musl/VERSION \
|
|
|
|
src/third_party/musl/include/elf.h \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/tools/mac/crash_report/crash_report.mm \
|
|
|
|
src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj \
|
|
|
|
src/tools/mac/crash_report/on_demand_symbol_supplier.h \
|
|
|
|
src/tools/mac/crash_report/on_demand_symbol_supplier.mm \
|
|
|
|
src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj \
|
2015-09-16 12:46:55 +02:00
|
|
|
src/tools/mac/dump_syms/dump_syms_tool.cc \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/tools/mac/symupload/minidump_upload.m \
|
|
|
|
src/tools/mac/symupload/symupload.m \
|
|
|
|
src/tools/mac/symupload/symupload.xcodeproj/project.pbxproj \
|
2007-09-28 20:14:48 +02:00
|
|
|
src/tools/solaris/dump_syms/Makefile \
|
|
|
|
src/tools/solaris/dump_syms/dump_syms.cc \
|
|
|
|
src/tools/solaris/dump_syms/run_regtest.sh \
|
|
|
|
src/tools/solaris/dump_syms/testdata/dump_syms_regtest.cc \
|
|
|
|
src/tools/solaris/dump_syms/testdata/dump_syms_regtest.o \
|
|
|
|
src/tools/solaris/dump_syms/testdata/dump_syms_regtest.stabs \
|
|
|
|
src/tools/solaris/dump_syms/testdata/dump_syms_regtest.sym \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/tools/windows/converter/ms_symbol_server_converter.cc \
|
|
|
|
src/tools/windows/converter/ms_symbol_server_converter.h \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/tools/windows/converter/ms_symbol_server_converter.gyp \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/tools/windows/dump_syms/dump_syms.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/tools/windows/dump_syms/dump_syms.gyp \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/tools/windows/dump_syms/run_regtest.sh \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \
|
2007-02-14 20:51:05 +01:00
|
|
|
src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/tools/windows/dump_syms/testdata/dump_syms_regtest64.sym \
|
|
|
|
src/tools/windows/dump_syms/testdata/omap_reorder_bbs.sym \
|
|
|
|
src/tools/windows/dump_syms/testdata/omap_reorder_funcs.sym \
|
|
|
|
src/tools/windows/dump_syms/testdata/omap_stretched.sym \
|
|
|
|
src/tools/windows/dump_syms/testdata/omap_stretched_filled.sym \
|
2006-12-05 23:52:28 +01:00
|
|
|
src/tools/windows/symupload/symupload.cc \
|
2016-05-25 20:36:37 +02:00
|
|
|
src/tools/windows/symupload/symupload.gyp
|
2016-01-26 00:40:56 +01:00
|
|
|
|
|
|
|
mostlyclean-local:
|
|
|
|
-find src -name '*.dwo' -exec rm -f {} +
|