c67d35c50a
... is that once you put them into the codebase, the odds of them showing up where you dont want them go up dramatically. With a gcc 4.7.1 -O0 build I hit a consistent crash in production where debugBacktrace had stepped too far, thinking that the first non-vm frame was in fact a vm frame. It did so because it looked at the word above the frame, and saw that it contained c_Continuation::kMagic. It turns out that fixupWork's isVMFrame left kMagic in $rdx if the frame really was a generator ($rdx was dead, but still). We then return from the tc via a serviceReq that doesnt need $rdx (so doesnt set it), and then (with a following wind, so that $rdx hasnt been smashed yet) enterTCHelper stores $rdx in info.args[1]. By another staggering coincidence, info.args[1] is at exactly the right address to make the call into enterTCHelper /look/ like a a continuation (based on kMagic). So if we then have a catch which re-enters the TC there's a good chance kMagic is still there and the next debugBacktrace (or uncaught exception) will crash. This diff rewrites everything in terms of the C++ stack; we now say that its a VM frame if its not on the C++ stack.
127 linhas
3.5 KiB
C++
127 linhas
3.5 KiB
C++
/*
|
|
+----------------------------------------------------------------------+
|
|
| HipHop for PHP |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_01.txt |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#include "async_func.h"
|
|
|
|
namespace HPHP {
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
typedef void PFN_THREAD_FUNC(void *);
|
|
|
|
PFN_THREAD_FUNC* AsyncFuncImpl::s_initFunc = NULL;
|
|
void* AsyncFuncImpl::s_initFuncArg = NULL;
|
|
|
|
PFN_THREAD_FUNC* AsyncFuncImpl::s_finiFunc = NULL;
|
|
void* AsyncFuncImpl::s_finiFuncArg = NULL;
|
|
|
|
AsyncFuncImpl::AsyncFuncImpl(void *obj, PFN_THREAD_FUNC *func)
|
|
: m_obj(obj), m_func(func),
|
|
m_threadStack(NULL), m_stackSize(0), m_threadId(0),
|
|
m_exception(NULL), m_stopped(false), m_noInit(false) {
|
|
}
|
|
|
|
AsyncFuncImpl::~AsyncFuncImpl() {
|
|
assert(m_stopped || m_threadId == 0);
|
|
delete m_exception;
|
|
}
|
|
|
|
void *AsyncFuncImpl::ThreadFunc(void *obj) {
|
|
Util::init_stack_limits(((AsyncFuncImpl*)obj)->getThreadAttr());
|
|
|
|
((AsyncFuncImpl*)obj)->threadFuncImpl();
|
|
return NULL;
|
|
}
|
|
|
|
void AsyncFuncImpl::start() {
|
|
struct rlimit rlim;
|
|
|
|
// Allocate the thread-stack
|
|
pthread_attr_init(&m_attr);
|
|
|
|
if (getrlimit(RLIMIT_STACK, &rlim) != 0 || rlim.rlim_cur == RLIM_INFINITY ||
|
|
rlim.rlim_cur < m_stackSizeMinimum) {
|
|
rlim.rlim_cur = m_stackSizeMinimum;
|
|
}
|
|
|
|
// On Success use the allocated memory for the thread's stack
|
|
if (posix_memalign(&m_threadStack, PAGE_SIZE, rlim.rlim_cur) == 0) {
|
|
pthread_attr_setstack(&m_attr, m_threadStack, rlim.rlim_cur);
|
|
}
|
|
|
|
pthread_create(&m_threadId, &m_attr, ThreadFunc, (void*)this);
|
|
assert(m_threadId);
|
|
}
|
|
|
|
bool AsyncFuncImpl::waitForEnd(int seconds /* = 0 */) {
|
|
if (m_threadId == 0) return true;
|
|
|
|
{
|
|
Lock lock(m_stopMonitor.getMutex());
|
|
while (!m_stopped) {
|
|
if (seconds > 0) {
|
|
if (!m_stopMonitor.wait(seconds)) {
|
|
// wait timed out
|
|
return false;
|
|
}
|
|
} else {
|
|
m_stopMonitor.wait();
|
|
}
|
|
}
|
|
}
|
|
|
|
void *ret = NULL;
|
|
pthread_join(m_threadId, &ret);
|
|
m_threadId = 0;
|
|
|
|
if (m_threadStack != NULL) {
|
|
free(m_threadStack);
|
|
m_threadStack = NULL;
|
|
}
|
|
|
|
if (Exception* e = m_exception) {
|
|
m_exception = 0;
|
|
e->throwException();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void AsyncFuncImpl::threadFuncImpl() {
|
|
if (s_initFunc && !m_noInit) {
|
|
s_initFunc(s_initFuncArg);
|
|
}
|
|
try {
|
|
m_func(m_obj);
|
|
} catch (Exception &e) {
|
|
m_exception = e.clone();
|
|
} catch (std::exception &e) {
|
|
m_exception = new Exception("%s", e.what());
|
|
} catch (...) {
|
|
m_exception = new Exception("(unknown exception)");
|
|
}
|
|
{
|
|
Lock lock(m_stopMonitor.getMutex());
|
|
m_stopped = true;
|
|
m_stopMonitor.notify();
|
|
}
|
|
if (s_finiFunc) {
|
|
s_finiFunc(s_finiFuncArg);
|
|
}
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
}
|