2013-05-07 22:48:59 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A poison value that can be used to fill a memory space with
|
|
|
|
* an address that leads to a safe crash when dereferenced.
|
|
|
|
*/
|
|
|
|
|
2013-07-24 11:41:39 +04:00
|
|
|
#ifndef mozilla_Poison_h
|
|
|
|
#define mozilla_Poison_h
|
2013-05-07 22:48:59 +04:00
|
|
|
|
|
|
|
#include "mozilla/Assertions.h"
|
|
|
|
#include "mozilla/Types.h"
|
|
|
|
|
2013-07-30 18:25:31 +04:00
|
|
|
#include <stdint.h>
|
2018-03-06 19:35:50 +03:00
|
|
|
#include <string.h>
|
2013-07-30 18:25:31 +04:00
|
|
|
|
2013-05-07 22:48:59 +04:00
|
|
|
MOZ_BEGIN_EXTERN_C
|
|
|
|
|
|
|
|
extern MFBT_DATA uintptr_t gMozillaPoisonValue;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the poison value.
|
|
|
|
*/
|
|
|
|
inline uintptr_t mozPoisonValue() { return gMozillaPoisonValue; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overwrite the memory block of aSize bytes at aPtr with the poison value.
|
2020-10-28 23:38:42 +03:00
|
|
|
* Only a multiple of sizeof(uintptr_t) bytes are overwritten, the last
|
|
|
|
* few bytes (if any) are not overwritten.
|
2013-05-07 22:48:59 +04:00
|
|
|
*/
|
|
|
|
inline void mozWritePoison(void* aPtr, size_t aSize) {
|
|
|
|
const uintptr_t POISON = mozPoisonValue();
|
|
|
|
char* p = (char*)aPtr;
|
2018-03-06 19:35:50 +03:00
|
|
|
char* limit = p + (aSize & ~(sizeof(uintptr_t) - 1));
|
2013-05-13 18:28:29 +04:00
|
|
|
MOZ_ASSERT(aSize >= sizeof(uintptr_t), "poisoning this object has no effect");
|
2013-05-07 22:48:59 +04:00
|
|
|
for (; p < limit; p += sizeof(uintptr_t)) {
|
2018-03-06 19:35:50 +03:00
|
|
|
memcpy(p, &POISON, sizeof(POISON));
|
2013-05-07 22:48:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Values annotated by CrashReporter */
|
|
|
|
extern MFBT_DATA uintptr_t gMozillaPoisonBase;
|
|
|
|
extern MFBT_DATA uintptr_t gMozillaPoisonSize;
|
|
|
|
|
|
|
|
MOZ_END_EXTERN_C
|
|
|
|
|
2016-04-29 20:54:54 +03:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2018-06-07 00:50:17 +03:00
|
|
|
/**
|
|
|
|
* A version of CorruptionCanary that is suitable as a member of objects that
|
|
|
|
* are statically allocated.
|
|
|
|
*/
|
|
|
|
class CorruptionCanaryForStatics {
|
|
|
|
public:
|
|
|
|
constexpr CorruptionCanaryForStatics() : mValue(kCanarySet) {}
|
|
|
|
|
|
|
|
// This is required to avoid static constructor bloat.
|
|
|
|
~CorruptionCanaryForStatics() = default;
|
|
|
|
|
|
|
|
void Check() const {
|
|
|
|
if (mValue != kCanarySet) {
|
|
|
|
MOZ_CRASH("Canary check failed, check lifetime");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
uintptr_t mValue;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static const uintptr_t kCanarySet = 0x0f0b0f0b;
|
|
|
|
};
|
|
|
|
|
2016-04-29 20:54:54 +03:00
|
|
|
/**
|
|
|
|
* This class is designed to cause crashes when various kinds of memory
|
|
|
|
* corruption are observed. For instance, let's say we have a class C where we
|
|
|
|
* suspect out-of-bounds writes to some members. We can insert a member of type
|
|
|
|
* Poison near the members we suspect are being corrupted by out-of-bounds
|
|
|
|
* writes. Or perhaps we have a class K we suspect is subject to use-after-free
|
|
|
|
* violations, in which case it doesn't particularly matter where in the class
|
|
|
|
* we add the member of type Poison.
|
|
|
|
*
|
|
|
|
* In either case, we then insert calls to Check() throughout the code. Doing
|
|
|
|
* so enables us to narrow down the location where the corruption is occurring.
|
|
|
|
* A pleasant side-effect of these additional Check() calls is that crash
|
|
|
|
* signatures may become more regular, as crashes will ideally occur
|
|
|
|
* consolidated at the point of a Check(), rather than scattered about at
|
|
|
|
* various uses of the corrupted memory.
|
|
|
|
*/
|
2018-06-07 00:50:17 +03:00
|
|
|
class CorruptionCanary : public CorruptionCanaryForStatics {
|
2016-04-29 20:54:54 +03:00
|
|
|
public:
|
2018-06-07 00:50:17 +03:00
|
|
|
constexpr CorruptionCanary() = default;
|
2016-04-29 20:54:54 +03:00
|
|
|
|
|
|
|
~CorruptionCanary() {
|
|
|
|
Check();
|
|
|
|
mValue = mozPoisonValue();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-07-24 11:41:39 +04:00
|
|
|
#endif /* mozilla_Poison_h */
|