2014-05-05 21:30:39 +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: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2012-04-10 23:57:20 +04:00
|
|
|
// Chromium headers must come before Mozilla headers.
|
|
|
|
#include "base/process_util.h"
|
|
|
|
|
2013-08-22 19:14:42 +04:00
|
|
|
#include "mozilla/Atomics.h"
|
2016-12-14 02:05:54 +03:00
|
|
|
#include "mozilla/Printf.h"
|
2013-08-22 19:14:42 +04:00
|
|
|
|
2017-08-30 06:13:50 +03:00
|
|
|
#include "MainThreadUtils.h"
|
2003-07-08 02:11:36 +04:00
|
|
|
#include "nsDebugImpl.h"
|
|
|
|
#include "nsDebug.h"
|
2017-10-10 12:59:39 +03:00
|
|
|
#include "nsExceptionHandler.h"
|
2013-09-23 21:25:00 +04:00
|
|
|
#include "nsString.h"
|
2014-09-12 22:44:38 +04:00
|
|
|
#include "nsXULAppAPI.h"
|
2003-07-08 02:11:36 +04:00
|
|
|
#include "prprf.h"
|
|
|
|
#include "nsError.h"
|
|
|
|
#include "prerror.h"
|
|
|
|
#include "prerr.h"
|
2006-02-10 18:00:36 +03:00
|
|
|
#include "prenv.h"
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2010-06-01 23:02:42 +04:00
|
|
|
#ifdef ANDROID
|
|
|
|
# include <android/log.h>
|
|
|
|
#endif
|
|
|
|
|
2013-09-19 22:29:31 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
/* for getenv() */
|
2003-07-08 02:11:36 +04:00
|
|
|
# include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
2014-02-27 01:36:36 +04:00
|
|
|
#include "nsTraceRefcnt.h"
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2006-02-10 18:00:36 +03:00
|
|
|
#if defined(XP_UNIX)
|
|
|
|
# include <signal.h>
|
2003-07-08 02:11:36 +04:00
|
|
|
#endif
|
2006-02-10 18:00:36 +03:00
|
|
|
|
2008-12-03 16:41:12 +03:00
|
|
|
#if defined(XP_WIN)
|
|
|
|
# include <tchar.h>
|
|
|
|
# include "nsString.h"
|
|
|
|
#endif
|
|
|
|
|
2014-05-21 01:20:00 +04:00
|
|
|
#if defined(XP_MACOSX) || defined(__DragonFly__) || defined(__FreeBSD__) || \
|
|
|
|
defined(__NetBSD__) || defined(__OpenBSD__)
|
2012-06-28 22:57:52 +04:00
|
|
|
# include <stdbool.h>
|
|
|
|
# include <unistd.h>
|
2014-05-21 01:20:00 +04:00
|
|
|
# include <sys/param.h>
|
2012-06-28 22:57:52 +04:00
|
|
|
# include <sys/sysctl.h>
|
|
|
|
#endif
|
|
|
|
|
2014-05-21 01:20:00 +04:00
|
|
|
#if defined(__OpenBSD__)
|
|
|
|
# include <sys/proc.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__DragonFly__) || defined(__FreeBSD__)
|
|
|
|
# include <sys/user.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__NetBSD__)
|
|
|
|
# undef KERN_PROC
|
|
|
|
# define KERN_PROC KERN_PROC2
|
|
|
|
# define KINFO_PROC struct kinfo_proc2
|
|
|
|
#else
|
|
|
|
# define KINFO_PROC struct kinfo_proc
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(XP_MACOSX)
|
|
|
|
# define KP_FLAGS kp_proc.p_flag
|
|
|
|
#elif defined(__DragonFly__)
|
|
|
|
# define KP_FLAGS kp_flags
|
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
# define KP_FLAGS ki_flag
|
|
|
|
#elif defined(__OpenBSD__) && !defined(_P_TRACED)
|
|
|
|
# define KP_FLAGS p_psflags
|
|
|
|
# define P_TRACED PS_TRACED
|
|
|
|
#else
|
|
|
|
# define KP_FLAGS p_flag
|
|
|
|
#endif
|
|
|
|
|
2010-05-19 05:53:52 +04:00
|
|
|
#include "mozilla/mozalloc_abort.h"
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
static void Abort(const char* aMsg);
|
2006-02-10 18:00:36 +03:00
|
|
|
|
2009-11-12 23:04:58 +03:00
|
|
|
static void RealBreak();
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
static void Break(const char* aMsg);
|
2006-02-10 18:00:36 +03:00
|
|
|
|
2003-07-08 02:11:36 +04:00
|
|
|
#if defined(_WIN32)
|
|
|
|
# include <windows.h>
|
|
|
|
# include <signal.h>
|
2006-02-10 18:00:36 +03:00
|
|
|
# include <malloc.h> // for _alloca
|
2003-07-08 02:11:36 +04:00
|
|
|
#elif defined(XP_UNIX)
|
2005-06-24 04:24:42 +04:00
|
|
|
# include <stdlib.h>
|
2003-07-08 02:11:36 +04:00
|
|
|
#endif
|
|
|
|
|
2012-04-10 23:57:20 +04:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
static const char* sMultiprocessDescription = nullptr;
|
2012-04-10 23:57:20 +04:00
|
|
|
|
2013-08-22 19:14:42 +04:00
|
|
|
static Atomic<int32_t> gAssertionCount;
|
2009-01-09 00:50:21 +03:00
|
|
|
|
2015-05-07 08:28:37 +03:00
|
|
|
NS_IMPL_QUERY_INTERFACE(nsDebugImpl, nsIDebug2)
|
2006-02-10 18:00:36 +03:00
|
|
|
|
2014-03-28 00:38:33 +04:00
|
|
|
NS_IMETHODIMP_(MozExternalRefCountType)
|
2006-02-10 18:00:36 +03:00
|
|
|
nsDebugImpl::AddRef() { return 2; }
|
|
|
|
|
2014-03-28 00:38:33 +04:00
|
|
|
NS_IMETHODIMP_(MozExternalRefCountType)
|
2006-02-10 18:00:36 +03:00
|
|
|
nsDebugImpl::Release() { return 1; }
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-13 21:41:38 +04:00
|
|
|
nsDebugImpl::Assertion(const char* aStr, const char* aExpr, const char* aFile,
|
|
|
|
int32_t aLine) {
|
2006-02-10 18:00:36 +03:00
|
|
|
NS_DebugBreak(NS_DEBUG_ASSERTION, aStr, aExpr, aFile, aLine);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-13 21:41:38 +04:00
|
|
|
nsDebugImpl::Warning(const char* aStr, const char* aFile, int32_t aLine) {
|
2012-07-30 18:20:58 +04:00
|
|
|
NS_DebugBreak(NS_DEBUG_WARNING, aStr, nullptr, aFile, aLine);
|
2006-02-10 18:00:36 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-13 21:41:38 +04:00
|
|
|
nsDebugImpl::Break(const char* aFile, int32_t aLine) {
|
2012-07-30 18:20:58 +04:00
|
|
|
NS_DebugBreak(NS_DEBUG_BREAK, nullptr, nullptr, aFile, aLine);
|
2006-02-10 18:00:36 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2006-02-10 18:00:36 +03:00
|
|
|
NS_IMETHODIMP
|
2014-05-13 21:41:38 +04:00
|
|
|
nsDebugImpl::Abort(const char* aFile, int32_t aLine) {
|
2012-07-30 18:20:58 +04:00
|
|
|
NS_DebugBreak(NS_DEBUG_ABORT, nullptr, nullptr, aFile, aLine);
|
2006-02-10 18:00:36 +03:00
|
|
|
return NS_OK;
|
2003-07-08 02:11:36 +04:00
|
|
|
}
|
|
|
|
|
2017-03-31 19:08:57 +03:00
|
|
|
// From toolkit/library/rust/lib.rs
|
|
|
|
extern "C" void intentional_panic(const char* message);
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDebugImpl::RustPanic(const char* aMessage) {
|
|
|
|
intentional_panic(aMessage);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-01-13 22:50:40 +03:00
|
|
|
NS_IMETHODIMP
|
2011-09-29 10:19:26 +04:00
|
|
|
nsDebugImpl::GetIsDebugBuild(bool* aResult) {
|
2009-01-13 22:50:40 +03:00
|
|
|
#ifdef DEBUG
|
2011-10-17 18:59:28 +04:00
|
|
|
*aResult = true;
|
2009-01-13 22:50:40 +03:00
|
|
|
#else
|
2011-10-17 18:59:28 +04:00
|
|
|
*aResult = false;
|
2009-01-13 22:50:40 +03:00
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-01-09 00:50:21 +03:00
|
|
|
NS_IMETHODIMP
|
2012-08-22 19:56:38 +04:00
|
|
|
nsDebugImpl::GetAssertionCount(int32_t* aResult) {
|
2009-01-09 00:50:21 +03:00
|
|
|
*aResult = gAssertionCount;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-28 22:57:52 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDebugImpl::GetIsDebuggerAttached(bool* aResult) {
|
|
|
|
*aResult = false;
|
|
|
|
|
2018-08-22 12:29:00 +03:00
|
|
|
#if defined(__OpenBSD__) && defined(MOZ_SANDBOX)
|
|
|
|
// no access to KERN_PROC_PID sysctl when pledge'd
|
|
|
|
return NS_OK;
|
|
|
|
#endif
|
2012-06-28 22:57:52 +04:00
|
|
|
#if defined(XP_WIN)
|
|
|
|
*aResult = ::IsDebuggerPresent();
|
2014-05-21 01:20:00 +04:00
|
|
|
#elif defined(XP_MACOSX) || defined(__DragonFly__) || defined(__FreeBSD__) || \
|
|
|
|
defined(__NetBSD__) || defined(__OpenBSD__)
|
2012-06-28 22:57:52 +04:00
|
|
|
// Specify the info we're looking for
|
2014-05-21 01:20:00 +04:00
|
|
|
int mib[] = {
|
|
|
|
CTL_KERN,
|
|
|
|
KERN_PROC,
|
|
|
|
KERN_PROC_PID,
|
|
|
|
getpid(),
|
|
|
|
# if defined(__NetBSD__) || defined(__OpenBSD__)
|
|
|
|
sizeof(KINFO_PROC),
|
|
|
|
1,
|
|
|
|
# endif
|
|
|
|
};
|
2014-05-29 02:11:00 +04:00
|
|
|
u_int mibSize = sizeof(mib) / sizeof(int);
|
2012-06-28 22:57:52 +04:00
|
|
|
|
2014-05-21 01:20:00 +04:00
|
|
|
KINFO_PROC info;
|
2012-06-28 22:57:52 +04:00
|
|
|
size_t infoSize = sizeof(info);
|
|
|
|
memset(&info, 0, infoSize);
|
|
|
|
|
2013-10-11 00:41:00 +04:00
|
|
|
if (sysctl(mib, mibSize, &info, &infoSize, nullptr, 0)) {
|
2012-06-28 22:57:52 +04:00
|
|
|
// if the call fails, default to false
|
|
|
|
*aResult = false;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-05-21 01:20:00 +04:00
|
|
|
if (info.KP_FLAGS & P_TRACED) {
|
2012-06-28 22:57:52 +04:00
|
|
|
*aResult = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:14:01 +03:00
|
|
|
/* static */
|
|
|
|
void nsDebugImpl::SetMultiprocessMode(const char* aDesc) {
|
2012-04-10 23:57:20 +04:00
|
|
|
sMultiprocessDescription = aDesc;
|
|
|
|
}
|
|
|
|
|
2018-06-22 20:31:35 +03:00
|
|
|
/* static */ const char* nsDebugImpl::GetMultiprocessMode() {
|
|
|
|
return sMultiprocessDescription;
|
|
|
|
}
|
|
|
|
|
2003-07-08 02:11:36 +04:00
|
|
|
/**
|
|
|
|
* Implementation of the nsDebug methods. Note that this code is
|
|
|
|
* always compiled in, in case some other module that uses it is
|
|
|
|
* compiled with debugging even if this library is not.
|
|
|
|
*/
|
2014-08-25 23:17:15 +04:00
|
|
|
enum nsAssertBehavior {
|
2006-02-10 18:00:36 +03:00
|
|
|
NS_ASSERT_UNINITIALIZED,
|
2006-02-24 19:11:33 +03:00
|
|
|
NS_ASSERT_WARN,
|
|
|
|
NS_ASSERT_SUSPEND,
|
|
|
|
NS_ASSERT_STACK,
|
|
|
|
NS_ASSERT_TRAP,
|
2007-08-10 23:42:58 +04:00
|
|
|
NS_ASSERT_ABORT,
|
|
|
|
NS_ASSERT_STACK_AND_ABORT
|
2006-02-10 18:00:36 +03:00
|
|
|
};
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
static nsAssertBehavior GetAssertBehavior() {
|
2006-02-10 18:00:36 +03:00
|
|
|
static nsAssertBehavior gAssertBehavior = NS_ASSERT_UNINITIALIZED;
|
2014-05-13 21:41:38 +04:00
|
|
|
if (gAssertBehavior != NS_ASSERT_UNINITIALIZED) {
|
2006-02-10 18:00:36 +03:00
|
|
|
return gAssertBehavior;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2006-02-24 19:11:33 +03:00
|
|
|
gAssertBehavior = NS_ASSERT_WARN;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
const char* assertString = PR_GetEnv("XPCOM_DEBUG_BREAK");
|
|
|
|
if (!assertString || !*assertString) {
|
2006-02-10 18:00:36 +03:00
|
|
|
return gAssertBehavior;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (!strcmp(assertString, "warn")) {
|
2014-05-05 21:30:39 +04:00
|
|
|
return gAssertBehavior = NS_ASSERT_WARN;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (!strcmp(assertString, "suspend")) {
|
2014-05-05 21:30:39 +04:00
|
|
|
return gAssertBehavior = NS_ASSERT_SUSPEND;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (!strcmp(assertString, "stack")) {
|
2014-05-05 21:30:39 +04:00
|
|
|
return gAssertBehavior = NS_ASSERT_STACK;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (!strcmp(assertString, "abort")) {
|
2014-05-05 21:30:39 +04:00
|
|
|
return gAssertBehavior = NS_ASSERT_ABORT;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (!strcmp(assertString, "trap") || !strcmp(assertString, "break")) {
|
2014-05-05 21:30:39 +04:00
|
|
|
return gAssertBehavior = NS_ASSERT_TRAP;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (!strcmp(assertString, "stack-and-abort")) {
|
2014-05-05 21:30:39 +04:00
|
|
|
return gAssertBehavior = NS_ASSERT_STACK_AND_ABORT;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
2007-08-10 23:42:58 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
fprintf(stderr, "Unrecognized value of XPCOM_DEBUG_BREAK\n");
|
|
|
|
return gAssertBehavior;
|
2003-07-08 02:11:36 +04:00
|
|
|
}
|
|
|
|
|
2017-02-27 23:29:54 +03:00
|
|
|
struct FixedBuffer final : public mozilla::PrintfTarget {
|
2014-05-13 21:41:38 +04:00
|
|
|
FixedBuffer() : curlen(0) { buffer[0] = '\0'; }
|
2006-02-10 18:00:36 +03:00
|
|
|
|
2016-07-25 17:29:13 +03:00
|
|
|
char buffer[500];
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t curlen;
|
2016-12-14 02:05:54 +03:00
|
|
|
|
2017-11-06 06:37:28 +03:00
|
|
|
bool append(const char* sp, size_t len) override;
|
2006-02-10 18:00:36 +03:00
|
|
|
};
|
|
|
|
|
2016-12-14 02:05:54 +03:00
|
|
|
bool FixedBuffer::append(const char* aBuf, size_t aLen) {
|
2014-05-13 21:41:38 +04:00
|
|
|
if (!aLen) {
|
2016-12-14 02:05:54 +03:00
|
|
|
return true;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
2014-05-05 21:30:39 +04:00
|
|
|
|
2016-12-14 02:05:54 +03:00
|
|
|
if (curlen + aLen >= sizeof(buffer)) {
|
|
|
|
aLen = sizeof(buffer) - curlen - 1;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
2006-02-10 18:00:36 +03:00
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
if (aLen) {
|
2016-12-14 02:05:54 +03:00
|
|
|
memcpy(buffer + curlen, aBuf, aLen);
|
|
|
|
curlen += aLen;
|
|
|
|
buffer[curlen] = '\0';
|
2006-02-10 18:00:36 +03:00
|
|
|
}
|
|
|
|
|
2016-12-14 02:05:54 +03:00
|
|
|
return true;
|
2006-02-10 18:00:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_XPCOM_API(void)
|
2014-05-13 21:41:38 +04:00
|
|
|
NS_DebugBreak(uint32_t aSeverity, const char* aStr, const char* aExpr,
|
|
|
|
const char* aFile, int32_t aLine) {
|
2018-07-23 17:59:34 +03:00
|
|
|
// Allow messages to be printed during GC if we are recording or replaying.
|
|
|
|
recordreplay::AutoEnsurePassThroughThreadEvents pt;
|
|
|
|
|
2016-07-25 17:29:13 +03:00
|
|
|
FixedBuffer nonPIDBuf;
|
2014-05-05 21:30:39 +04:00
|
|
|
FixedBuffer buf;
|
2014-05-13 21:41:38 +04:00
|
|
|
const char* sevString = "WARNING";
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
switch (aSeverity) {
|
|
|
|
case NS_DEBUG_ASSERTION:
|
|
|
|
sevString = "###!!! ASSERTION";
|
|
|
|
break;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_DEBUG_BREAK:
|
|
|
|
sevString = "###!!! BREAK";
|
|
|
|
break;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_DEBUG_ABORT:
|
|
|
|
sevString = "###!!! ABORT";
|
|
|
|
break;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
default:
|
|
|
|
aSeverity = NS_DEBUG_WARNING;
|
2016-01-22 18:58:49 +03:00
|
|
|
}
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2016-12-14 02:05:54 +03:00
|
|
|
nonPIDBuf.print("%s: ", sevString);
|
2014-05-13 21:41:38 +04:00
|
|
|
if (aStr) {
|
2016-12-14 02:05:54 +03:00
|
|
|
nonPIDBuf.print("%s: ", aStr);
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (aExpr) {
|
2016-12-14 02:05:54 +03:00
|
|
|
nonPIDBuf.print("'%s', ", aExpr);
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (aFile) {
|
2016-12-14 02:05:54 +03:00
|
|
|
nonPIDBuf.print("file %s, ", aFile);
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
|
|
|
if (aLine != -1) {
|
2016-12-14 02:05:54 +03:00
|
|
|
nonPIDBuf.print("line %d", aLine);
|
2016-07-25 17:29:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Print "[PID]" or "[Desc PID]" at the beginning of the message.
|
2016-12-14 02:05:54 +03:00
|
|
|
buf.print("[");
|
2016-07-25 17:29:13 +03:00
|
|
|
if (sMultiprocessDescription) {
|
2016-12-14 02:05:54 +03:00
|
|
|
buf.print("%s ", sMultiprocessDescription);
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
2012-04-10 23:57:20 +04:00
|
|
|
|
2017-08-30 06:13:50 +03:00
|
|
|
bool isMainthread = (NS_IsMainThreadTLSInitialized() && NS_IsMainThread());
|
|
|
|
PRThread* currentThread = PR_GetCurrentThread();
|
|
|
|
const char* currentThreadName =
|
|
|
|
isMainthread ? "Main Thread" : PR_GetThreadName(currentThread);
|
|
|
|
if (currentThreadName) {
|
|
|
|
buf.print("%d, %s] %s", base::GetCurrentProcId(), currentThreadName,
|
|
|
|
nonPIDBuf.buffer);
|
|
|
|
} else {
|
|
|
|
buf.print("%d, Unnamed thread %p] %s", base::GetCurrentProcId(),
|
|
|
|
currentThread, nonPIDBuf.buffer);
|
|
|
|
}
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
// errors on platforms without a debugdlg ring a bell on stderr
|
2014-02-11 02:57:01 +04:00
|
|
|
#if !defined(XP_WIN)
|
2015-10-17 02:23:49 +03:00
|
|
|
if (aSeverity != NS_DEBUG_WARNING) {
|
2014-05-05 21:30:39 +04:00
|
|
|
fprintf(stderr, "\07");
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
2006-02-13 23:21:20 +03:00
|
|
|
#endif
|
|
|
|
|
2010-06-01 23:02:42 +04:00
|
|
|
#ifdef ANDROID
|
2014-05-05 21:30:39 +04:00
|
|
|
__android_log_print(ANDROID_LOG_INFO, "Gecko", "%s", buf.buffer);
|
2010-06-01 23:02:42 +04:00
|
|
|
#endif
|
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
// Write the message to stderr unless it's a warning and MOZ_IGNORE_WARNINGS
|
|
|
|
// is set.
|
|
|
|
if (!(PR_GetEnv("MOZ_IGNORE_WARNINGS") && aSeverity == NS_DEBUG_WARNING)) {
|
|
|
|
fprintf(stderr, "%s\n", buf.buffer);
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
switch (aSeverity) {
|
|
|
|
case NS_DEBUG_WARNING:
|
|
|
|
return;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_DEBUG_BREAK:
|
|
|
|
Break(buf.buffer);
|
|
|
|
return;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_DEBUG_ABORT: {
|
2014-09-12 22:44:38 +04:00
|
|
|
// Updating crash annotations in the child causes us to do IPC. This can
|
|
|
|
// really cause trouble if we're asserting from within IPC code. So we
|
|
|
|
// have to do without the annotations in that case.
|
2015-07-04 04:29:00 +03:00
|
|
|
if (XRE_IsParentProcess()) {
|
2016-07-25 17:29:13 +03:00
|
|
|
// Don't include the PID in the crash report annotation to
|
|
|
|
// allow faceting on crash-stats.mozilla.org.
|
2014-09-12 22:44:38 +04:00
|
|
|
nsCString note("xpcom_runtime_abort(");
|
2016-07-25 17:29:13 +03:00
|
|
|
note += nonPIDBuf.buffer;
|
2014-09-12 22:44:38 +04:00
|
|
|
note += ")";
|
|
|
|
CrashReporter::AppendAppNotesToCrashReport(note);
|
Bug 1348273 - Convert crash annotations into a machine-readable list of constants; r=ted.mielczarek,njn,dholbert,mak,cpearce,mcmanus,froydnj,Dexter,jrmuizel,jchen,jimm,bz,surkov
This introduces the machinery needed to generate crash annotations from a YAML
file. The relevant C++ functions are updated to take a typed enum. JavaScript
calls are unaffected but they will throw if the string argument does not
correspond to one of the known entries in the C++ enum. The existing whitelists
and blacklists of annotations are also generated from the YAML file and all
duplicate code related to them has been consolidated. Once written out to the
.extra file the annotations are converted in string form and are no different
than the existing ones.
All existing annotations have been included in the list (and some obsolete ones
have been removed) and all call sites have been updated including tests where
appropriate.
--HG--
extra : source : 4f6c43f2830701ec5552e08e3f1b06fe6d045860
2018-07-05 16:42:11 +03:00
|
|
|
CrashReporter::AnnotateCrashReport(
|
|
|
|
CrashReporter::Annotation::AbortMessage,
|
|
|
|
nsDependentCString(nonPIDBuf.buffer));
|
2014-09-12 22:44:38 +04:00
|
|
|
}
|
2011-02-01 22:53:53 +03:00
|
|
|
|
2010-03-24 06:39:15 +03:00
|
|
|
#if defined(DEBUG) && defined(_WIN32)
|
2014-05-05 21:30:39 +04:00
|
|
|
RealBreak();
|
2009-11-12 22:44:25 +03:00
|
|
|
#endif
|
2016-02-27 05:10:56 +03:00
|
|
|
#if defined(DEBUG)
|
2014-05-05 21:30:39 +04:00
|
|
|
nsTraceRefcnt::WalkTheStack(stderr);
|
2011-02-14 21:41:34 +03:00
|
|
|
#endif
|
2014-05-05 21:30:39 +04:00
|
|
|
Abort(buf.buffer);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
// Now we deal with assertions
|
|
|
|
gAssertionCount++;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
switch (GetAssertBehavior()) {
|
|
|
|
case NS_ASSERT_WARN:
|
|
|
|
return;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_ASSERT_SUSPEND:
|
2006-02-10 18:00:36 +03:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
fprintf(stderr, "Suspending process; attach with the debugger.\n");
|
|
|
|
kill(0, SIGSTOP);
|
2003-07-08 02:11:36 +04:00
|
|
|
#else
|
2006-02-10 18:00:36 +03:00
|
|
|
Break(buf.buffer);
|
2003-07-08 02:11:36 +04:00
|
|
|
#endif
|
2006-02-10 18:00:36 +03:00
|
|
|
return;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_ASSERT_STACK:
|
|
|
|
nsTraceRefcnt::WalkTheStack(stderr);
|
|
|
|
return;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_ASSERT_STACK_AND_ABORT:
|
|
|
|
nsTraceRefcnt::WalkTheStack(stderr);
|
|
|
|
// Fall through to abort
|
2015-10-30 07:31:32 +03:00
|
|
|
MOZ_FALLTHROUGH;
|
2007-08-10 23:42:58 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_ASSERT_ABORT:
|
|
|
|
Abort(buf.buffer);
|
|
|
|
return;
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
case NS_ASSERT_TRAP:
|
|
|
|
case NS_ASSERT_UNINITIALIZED: // Default to "trap" behavior
|
|
|
|
Break(buf.buffer);
|
|
|
|
return;
|
|
|
|
}
|
2006-02-10 18:00:36 +03:00
|
|
|
}
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
static void Abort(const char* aMsg) { mozalloc_abort(aMsg); }
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2009-11-12 23:04:58 +03:00
|
|
|
static void RealBreak() {
|
|
|
|
#if defined(_WIN32)
|
|
|
|
::DebugBreak();
|
|
|
|
#elif defined(XP_MACOSX)
|
2014-05-05 21:30:39 +04:00
|
|
|
raise(SIGTRAP);
|
2009-11-12 23:04:58 +03:00
|
|
|
#elif defined(__GNUC__) && \
|
|
|
|
(defined(__i386__) || defined(__i386) || defined(__x86_64__))
|
2014-05-05 21:30:39 +04:00
|
|
|
asm("int $3");
|
2010-08-10 22:02:27 +04:00
|
|
|
#elif defined(__arm__)
|
2014-05-05 21:30:39 +04:00
|
|
|
asm(
|
2011-07-01 12:42:47 +04:00
|
|
|
# ifdef __ARM_ARCH_4T__
|
2014-05-05 21:30:39 +04:00
|
|
|
/* ARMv4T doesn't support the BKPT instruction, so if the compiler target
|
|
|
|
* is ARMv4T, we want to ensure the assembler will understand that ARMv5T
|
|
|
|
* instruction, while keeping the resulting object tagged as ARMv4T.
|
|
|
|
*/
|
|
|
|
".arch armv5t\n"
|
|
|
|
".object_arch armv4t\n"
|
2011-07-01 12:42:47 +04:00
|
|
|
# endif
|
2014-05-05 21:30:39 +04:00
|
|
|
"BKPT #0");
|
2017-05-17 20:06:23 +03:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
asm("brk #0");
|
2010-08-15 16:33:18 +04:00
|
|
|
#elif defined(SOLARIS)
|
|
|
|
# if defined(__i386__) || defined(__i386) || defined(__x86_64__)
|
2014-05-05 21:30:39 +04:00
|
|
|
asm("int $3");
|
2010-08-15 16:33:18 +04:00
|
|
|
# else
|
2014-05-05 21:30:39 +04:00
|
|
|
raise(SIGTRAP);
|
2010-08-15 16:33:18 +04:00
|
|
|
# endif
|
2009-11-12 23:04:58 +03:00
|
|
|
#else
|
2010-11-05 21:24:12 +03:00
|
|
|
# warning do not know how to break on this platform
|
2009-11-12 23:04:58 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-02-10 18:00:36 +03:00
|
|
|
// Abort() calls this function, don't call it!
|
2014-05-13 21:41:38 +04:00
|
|
|
static void Break(const char* aMsg) {
|
2006-02-10 18:00:36 +03:00
|
|
|
#if defined(_WIN32)
|
|
|
|
static int ignoreDebugger;
|
|
|
|
if (!ignoreDebugger) {
|
2014-05-13 21:41:38 +04:00
|
|
|
const char* shouldIgnoreDebugger = getenv("XPCOM_DEBUG_DLG");
|
2014-08-25 23:17:15 +04:00
|
|
|
ignoreDebugger =
|
|
|
|
1 + (shouldIgnoreDebugger && !strcmp(shouldIgnoreDebugger, "1"));
|
2006-02-10 18:00:36 +03:00
|
|
|
}
|
2008-12-04 03:18:28 +03:00
|
|
|
if ((ignoreDebugger == 2) || !::IsDebuggerPresent()) {
|
2006-02-10 18:00:36 +03:00
|
|
|
DWORD code = IDRETRY;
|
|
|
|
|
2014-05-05 21:30:39 +04:00
|
|
|
/* Create the debug dialog out of process to avoid the crashes caused by
|
2006-02-10 18:00:36 +03:00
|
|
|
* Windows events leaking into our event loop from an in process dialog.
|
|
|
|
* We do this by launching windbgdlg.exe (built in xpcom/windbgdlg).
|
|
|
|
* See http://bugzilla.mozilla.org/show_bug.cgi?id=54792
|
|
|
|
*/
|
|
|
|
PROCESS_INFORMATION pi;
|
2008-12-03 16:41:12 +03:00
|
|
|
STARTUPINFOW si;
|
2013-12-04 16:19:09 +04:00
|
|
|
wchar_t executable[MAX_PATH];
|
|
|
|
wchar_t* pName;
|
2006-02-10 18:00:36 +03:00
|
|
|
|
|
|
|
memset(&pi, 0, sizeof(pi));
|
|
|
|
|
|
|
|
memset(&si, 0, sizeof(si));
|
|
|
|
si.cb = sizeof(si);
|
|
|
|
si.wShowWindow = SW_SHOW;
|
|
|
|
|
|
|
|
// 2nd arg of CreateProcess is in/out
|
2014-05-13 21:41:38 +04:00
|
|
|
wchar_t* msgCopy = (wchar_t*)_alloca((strlen(aMsg) + 1) * sizeof(wchar_t));
|
2013-12-04 16:19:09 +04:00
|
|
|
wcscpy(msgCopy, NS_ConvertUTF8toUTF16(aMsg).get());
|
2008-12-03 16:41:12 +03:00
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
if (GetModuleFileNameW(GetModuleHandleW(L"xpcom.dll"), executable,
|
|
|
|
MAX_PATH) &&
|
|
|
|
(pName = wcsrchr(executable, '\\')) != nullptr &&
|
|
|
|
wcscpy(pName + 1, L"windbgdlg.exe") &&
|
2014-05-05 21:30:39 +04:00
|
|
|
CreateProcessW(executable, msgCopy, nullptr, nullptr, false,
|
|
|
|
DETACHED_PROCESS | NORMAL_PRIORITY_CLASS, nullptr,
|
|
|
|
nullptr, &si, &pi)) {
|
2006-06-03 03:37:10 +04:00
|
|
|
WaitForSingleObject(pi.hProcess, INFINITE);
|
|
|
|
GetExitCodeProcess(pi.hProcess, &code);
|
2006-02-10 18:00:36 +03:00
|
|
|
CloseHandle(pi.hProcess);
|
2006-11-22 20:50:35 +03:00
|
|
|
CloseHandle(pi.hThread);
|
2006-02-10 18:00:36 +03:00
|
|
|
}
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
switch (code) {
|
2014-05-05 21:30:39 +04:00
|
|
|
case IDABORT:
|
|
|
|
// This should exit us
|
|
|
|
raise(SIGABRT);
|
|
|
|
// If we are ignored exit this way..
|
|
|
|
_exit(3);
|
|
|
|
|
|
|
|
case IDIGNORE:
|
|
|
|
return;
|
2006-02-10 18:00:36 +03:00
|
|
|
}
|
|
|
|
}
|
2003-07-08 02:11:36 +04:00
|
|
|
|
2009-11-12 23:04:58 +03:00
|
|
|
RealBreak();
|
2006-06-03 00:06:43 +04:00
|
|
|
#elif defined(XP_MACOSX)
|
2014-05-05 21:30:39 +04:00
|
|
|
/* Note that we put this Mac OS X test above the GNUC/x86 test because the
|
|
|
|
* GNUC/x86 test is also true on Intel Mac OS X and we want the PPC/x86
|
|
|
|
* impls to be the same.
|
|
|
|
*/
|
|
|
|
RealBreak();
|
2006-06-03 00:06:43 +04:00
|
|
|
#elif defined(__GNUC__) && \
|
|
|
|
(defined(__i386__) || defined(__i386) || defined(__x86_64__))
|
2014-05-05 21:30:39 +04:00
|
|
|
RealBreak();
|
2017-05-17 20:06:23 +03:00
|
|
|
#elif defined(__arm__) || defined(__aarch64__)
|
2014-05-05 21:30:39 +04:00
|
|
|
RealBreak();
|
2010-08-15 16:33:18 +04:00
|
|
|
#elif defined(SOLARIS)
|
2014-05-05 21:30:39 +04:00
|
|
|
RealBreak();
|
2006-02-10 18:00:36 +03:00
|
|
|
#else
|
2010-11-05 21:24:12 +03:00
|
|
|
# warning do not know how to break on this platform
|
2006-02-10 18:00:36 +03:00
|
|
|
#endif
|
2003-07-08 02:11:36 +04:00
|
|
|
}
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
nsresult nsDebugImpl::Create(nsISupports* aOuter, const nsIID& aIID,
|
|
|
|
void** aInstancePtr) {
|
2015-05-14 02:47:55 +03:00
|
|
|
static const nsDebugImpl* sImpl;
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
if (NS_WARN_IF(aOuter)) {
|
2013-11-20 01:27:37 +04:00
|
|
|
return NS_ERROR_NO_AGGREGATION;
|
2014-05-13 21:41:38 +04:00
|
|
|
}
|
2006-02-10 18:00:36 +03:00
|
|
|
|
2015-05-14 02:47:55 +03:00
|
|
|
if (!sImpl) {
|
|
|
|
sImpl = new nsDebugImpl();
|
|
|
|
}
|
|
|
|
|
|
|
|
return const_cast<nsDebugImpl*>(sImpl)->QueryInterface(aIID, aInstancePtr);
|
2003-07-08 02:11:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
nsresult NS_ErrorAccordingToNSPR() {
|
2014-05-05 21:30:39 +04:00
|
|
|
PRErrorCode err = PR_GetError();
|
|
|
|
switch (err) {
|
|
|
|
case PR_OUT_OF_MEMORY_ERROR:
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
case PR_WOULD_BLOCK_ERROR:
|
|
|
|
return NS_BASE_STREAM_WOULD_BLOCK;
|
|
|
|
case PR_FILE_NOT_FOUND_ERROR:
|
|
|
|
return NS_ERROR_FILE_NOT_FOUND;
|
|
|
|
case PR_READ_ONLY_FILESYSTEM_ERROR:
|
|
|
|
return NS_ERROR_FILE_READ_ONLY;
|
|
|
|
case PR_NOT_DIRECTORY_ERROR:
|
|
|
|
return NS_ERROR_FILE_NOT_DIRECTORY;
|
|
|
|
case PR_IS_DIRECTORY_ERROR:
|
|
|
|
return NS_ERROR_FILE_IS_DIRECTORY;
|
|
|
|
case PR_LOOP_ERROR:
|
|
|
|
return NS_ERROR_FILE_UNRESOLVABLE_SYMLINK;
|
|
|
|
case PR_FILE_EXISTS_ERROR:
|
|
|
|
return NS_ERROR_FILE_ALREADY_EXISTS;
|
|
|
|
case PR_FILE_IS_LOCKED_ERROR:
|
|
|
|
return NS_ERROR_FILE_IS_LOCKED;
|
|
|
|
case PR_FILE_TOO_BIG_ERROR:
|
|
|
|
return NS_ERROR_FILE_TOO_BIG;
|
|
|
|
case PR_NO_DEVICE_SPACE_ERROR:
|
|
|
|
return NS_ERROR_FILE_NO_DEVICE_SPACE;
|
|
|
|
case PR_NAME_TOO_LONG_ERROR:
|
|
|
|
return NS_ERROR_FILE_NAME_TOO_LONG;
|
|
|
|
case PR_DIRECTORY_NOT_EMPTY_ERROR:
|
|
|
|
return NS_ERROR_FILE_DIR_NOT_EMPTY;
|
|
|
|
case PR_NO_ACCESS_RIGHTS_ERROR:
|
|
|
|
return NS_ERROR_FILE_ACCESS_DENIED;
|
|
|
|
default:
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2003-07-08 02:11:36 +04:00
|
|
|
}
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
void NS_ABORT_OOM(size_t aSize) {
|
|
|
|
CrashReporter::AnnotateOOMAllocationSize(aSize);
|
2016-06-09 06:09:58 +03:00
|
|
|
MOZ_CRASH("OOM");
|
2013-11-26 00:06:17 +04:00
|
|
|
}
|