2015-11-17 02:30:32 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "BacktraceData.h"
|
|
|
|
#include "Config.h"
|
|
|
|
#include "DebugData.h"
|
|
|
|
#include "debug_disable.h"
|
|
|
|
#include "FreeTrackData.h"
|
|
|
|
#include "GuardData.h"
|
|
|
|
#include "malloc_debug.h"
|
|
|
|
#include "TrackData.h"
|
|
|
|
|
2016-08-26 16:54:59 +02:00
|
|
|
bool DebugData::Initialize(const char* options) {
|
2017-04-06 04:13:03 +02:00
|
|
|
if (!config_.Init(options)) {
|
2015-11-17 02:30:32 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check to see if the options that require a header are enabled.
|
2017-04-06 04:13:03 +02:00
|
|
|
if (config_.options() & HEADER_OPTIONS) {
|
2015-11-17 02:30:32 +01:00
|
|
|
need_header_ = true;
|
|
|
|
|
|
|
|
// Initialize all of the static header offsets.
|
2016-02-12 00:51:31 +01:00
|
|
|
pointer_offset_ = BIONIC_ALIGN(sizeof(Header), MINIMUM_ALIGNMENT_BYTES);
|
2015-11-17 02:30:32 +01:00
|
|
|
|
2017-04-06 04:13:03 +02:00
|
|
|
if (config_.options() & BACKTRACE) {
|
2016-04-08 02:14:53 +02:00
|
|
|
backtrace.reset(new BacktraceData(this, config_, &pointer_offset_));
|
2015-11-17 02:30:32 +01:00
|
|
|
if (!backtrace->Initialize(config_)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-06 04:13:03 +02:00
|
|
|
if (config_.options() & FRONT_GUARD) {
|
2016-04-08 02:14:53 +02:00
|
|
|
front_guard.reset(new FrontGuardData(this, config_, &pointer_offset_));
|
2015-11-17 02:30:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extra_bytes_ = pointer_offset_;
|
|
|
|
|
|
|
|
// Initialize all of the non-header data.
|
2017-04-06 04:13:03 +02:00
|
|
|
if (config_.options() & REAR_GUARD) {
|
2016-04-08 02:14:53 +02:00
|
|
|
rear_guard.reset(new RearGuardData(this, config_));
|
2017-04-06 04:13:03 +02:00
|
|
|
extra_bytes_ += config_.rear_guard_bytes();
|
2015-11-17 02:30:32 +01:00
|
|
|
}
|
|
|
|
|
2017-04-06 04:13:03 +02:00
|
|
|
if (config_.options() & FREE_TRACK) {
|
2016-04-08 02:14:53 +02:00
|
|
|
free_track.reset(new FreeTrackData(this, config_));
|
2015-11-17 02:30:32 +01:00
|
|
|
}
|
|
|
|
|
2017-04-06 04:13:03 +02:00
|
|
|
if (config_.options() & TRACK_ALLOCS) {
|
2016-04-08 02:14:53 +02:00
|
|
|
track.reset(new TrackData(this));
|
2015-11-17 02:30:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-06 04:13:03 +02:00
|
|
|
if (config_.options() & RECORD_ALLOCS) {
|
2016-04-20 21:30:58 +02:00
|
|
|
record.reset(new RecordData());
|
|
|
|
if (!record->Initialize(config_)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-06 04:13:03 +02:00
|
|
|
if (config_.options() & EXPAND_ALLOC) {
|
|
|
|
extra_bytes_ += config_.expand_alloc_bytes();
|
2015-11-17 02:30:32 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2016-02-08 07:51:15 +01:00
|
|
|
|
|
|
|
void DebugData::PrepareFork() {
|
|
|
|
if (track != nullptr) {
|
|
|
|
track->PrepareFork();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DebugData::PostForkParent() {
|
|
|
|
if (track != nullptr) {
|
|
|
|
track->PostForkParent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DebugData::PostForkChild() {
|
|
|
|
if (track != nullptr) {
|
|
|
|
track->PostForkChild();
|
|
|
|
}
|
|
|
|
}
|