1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#ifndef MmapFaultHandler_h_
#define MmapFaultHandler_h_
#if defined(XP_WIN)
// Windows
# ifdef HAVE_SEH_EXCEPTIONS
# define MMAP_FAULT_HANDLER_BEGIN_HANDLE(fd) __try {
# define MMAP_FAULT_HANDLER_BEGIN_BUFFER(buf, bufLen) __try {
# define MMAP_FAULT_HANDLER_CATCH(retval) \
} \
__except (GetExceptionCode() == EXCEPTION_IN_PAGE_ERROR \
? EXCEPTION_EXECUTE_HANDLER \
: EXCEPTION_CONTINUE_SEARCH) { \
NS_WARNING("unexpected EXCEPTION_IN_PAGE_ERROR"); \
return retval; \
}
# else
# define MMAP_FAULT_HANDLER_BEGIN_HANDLE(fd) {
# define MMAP_FAULT_HANDLER_BEGIN_BUFFER(buf, bufLen) {
# define MMAP_FAULT_HANDLER_CATCH(retval) }
# endif
#elif defined(XP_DARWIN)
// MacOS
# define MMAP_FAULT_HANDLER_BEGIN_HANDLE(fd) {
# define MMAP_FAULT_HANDLER_BEGIN_BUFFER(buf, bufLen) {
# define MMAP_FAULT_HANDLER_CATCH(retval) }
#elif defined(__wasi__)
# define MMAP_FAULT_HANDLER_BEGIN_HANDLE(fd) {
# define MMAP_FAULT_HANDLER_BEGIN_BUFFER(buf, bufLen) {
# define MMAP_FAULT_HANDLER_CATCH(retval) }
#else
// Linux
# include "mozilla/Attributes.h"
# include "mozilla/Types.h"
# include <stdint.h>
# include <setjmp.h>
class MOZ_RAII MmapAccessScope {
public:
MFBT_API MmapAccessScope(void* aBuf, uint32_t aBufLen,
const char* aFilename = nullptr);
MFBT_API ~MmapAccessScope();
MmapAccessScope(const MmapAccessScope&) = delete;
MmapAccessScope& operator=(const MmapAccessScope&) = delete;
void SetThreadLocalScope();
bool IsInsideBuffer(void* aPtr);
void CrashWithInfo(void* aPtr);
// sigsetjmp cannot be called from a method that returns before calling
// siglongjmp, so the macro must call sigsetjmp directly and mJmpBuf must be
// public.
sigjmp_buf mJmpBuf;
private:
void* mBuf;
const char* mFilename;
uint32_t mBufLen;
MmapAccessScope* mPreviousScope;
};
// Gets around warnings for null-checking in a macro.
template <typename T>
inline bool ValidFD(T fd) {
return !!fd;
}
# define MMAP_FAULT_HANDLER_BEGIN_HANDLE(fd) \
{ \
void* mmapScopeBuf = nullptr; \
nsCString mmapScopeFilename; \
uint32_t mmapScopeBufLen = 0; \
if (ValidFD(fd) && fd->mMap) { \
mmapScopeBuf = (void*)fd->mFileStart; \
mmapScopeBufLen = fd->mTotalLen; \
} \
if (ValidFD(fd) && fd->mFile) { \
nsCOMPtr<nsIFile> file = fd->mFile.GetBaseFile(); \
if (file) { \
file->GetNativeLeafName(mmapScopeFilename); \
} \
} \
MmapAccessScope mmapScope(mmapScopeBuf, mmapScopeBufLen, \
mmapScopeFilename.get()); \
if (sigsetjmp(mmapScope.mJmpBuf, 0) == 0) {
# define MMAP_FAULT_HANDLER_BEGIN_BUFFER(buf, bufLen) \
{ \
MmapAccessScope mmapScope((void*)(buf), (bufLen)); \
if (sigsetjmp(mmapScope.mJmpBuf, 0) == 0) {
# define MMAP_FAULT_HANDLER_CATCH(retval) \
} \
else { \
NS_WARNING("SIGBUS received when accessing mmapped file"); \
return retval; \
} \
}
#endif
#endif
|