]> git.saurik.com Git - apple/javascriptcore.git/blame - wtf/StackBounds.cpp
JavaScriptCore-903.tar.gz
[apple/javascriptcore.git] / wtf / StackBounds.cpp
CommitLineData
14957cd0
A
1/*
2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 */
20
21#include "config.h"
22#include "StackBounds.h"
23
24#if OS(DARWIN)
25
26#include <mach/task.h>
27#include <mach/thread_act.h>
28#include <pthread.h>
29
30#elif OS(WINDOWS)
31
32#include <windows.h>
33
34#elif OS(HAIKU)
35
36#include <OS.h>
37
38#elif OS(SOLARIS)
39
40#include <thread.h>
41
42#elif OS(QNX)
43
44#include <fcntl.h>
45#include <sys/procfs.h>
46#include <stdio.h>
47#include <errno.h>
48
49#elif OS(UNIX)
50
51#include <pthread.h>
52#if HAVE(PTHREAD_NP_H)
53#include <pthread_np.h>
54#endif
55
56#endif
57
58#include <WTFThreadData.h>
59
60namespace WTF {
61
62// Bug 26276 - Need a mechanism to determine stack extent
63//
64// These platforms should now be working correctly:
65// DARWIN, QNX, UNIX, SYMBIAN
66// These platforms are not:
67// WINDOWS, SOLARIS, OPENBSD, HAIKU, WINCE
68//
69// FIXME: remove this! - this code unsafely guesses at stack sizes!
70#if OS(WINDOWS) || OS(SOLARIS) || OS(OPENBSD) || OS(HAIKU)
71// Based on the current limit used by the JSC parser, guess the stack size.
72static const ptrdiff_t estimatedStackSize = 128 * sizeof(void*) * 1024;
73// This method assumes the stack is growing downwards.
74static void* estimateStackBound(void* origin)
75{
76 return static_cast<char*>(origin) - estimatedStackSize;
77}
78#endif
79
80#if OS(DARWIN)
81
82void StackBounds::initialize()
83{
84 pthread_t thread = pthread_self();
85 m_origin = pthread_get_stackaddr_np(thread);
86 m_bound = static_cast<char*>(m_origin) - pthread_get_stacksize_np(thread);
87}
88
89void StackBounds::checkConsistency() const
90{
91#if !ASSERT_DISABLED
92 // Skip consistency check if this StackBounds was initialized
93 // on a different thread than the current thread.
94 const StackBounds* stack = &wtfThreadData().stack();
95 if (stack != this)
96 return;
97
98 void* currentPosition = &currentPosition;
99 ASSERT(m_origin != m_bound);
100 ASSERT(isGrowingDownward()
101 ? (currentPosition < m_origin && currentPosition > m_bound)
102 : (currentPosition > m_origin && currentPosition < m_bound));
103#endif
104}
105
106#elif OS(QNX)
107
108void StackBounds::initialize()
109{
110 void* stackBase = 0;
111 size_t stackSize = 0;
112 pthread_t thread = pthread_self();
113
114 struct _debug_thread_info threadInfo;
115 memset(&threadInfo, 0, sizeof(threadInfo));
116 threadInfo.tid = pthread_self();
117 int fd = open("/proc/self", O_RDONLY);
118 if (fd == -1) {
119 LOG_ERROR("Unable to open /proc/self (errno: %d)", errno);
120 CRASH();
121 }
122 devctl(fd, DCMD_PROC_TIDSTATUS, &threadInfo, sizeof(threadInfo), 0);
123 close(fd);
124 stackBase = reinterpret_cast<void*>(threadInfo.stkbase);
125 stackSize = threadInfo.stksize;
126 ASSERT(stackBase);
127
128 m_bound = stackBase;
129 m_origin = static_cast<char*>(stackBase) + stackSize;
130}
131
132#elif OS(SOLARIS)
133
134void StackBounds::initialize()
135{
136 stack_t s;
137 thr_stksegment(&s);
138 m_origin = s.ss_sp;
139 m_bound = estimateStackBound(m_origin);
140}
141
142#elif OS(OPENBSD)
143
144void StackBounds::initialize()
145{
146 pthread_t thread = pthread_self();
147 stack_t stack;
148 pthread_stackseg_np(thread, &stack);
149 m_origin = stack.ss_sp;
150 m_bound = estimateStackBound(m_origin);
151}
152
153#elif OS(SYMBIAN)
154
155void StackBounds::initialize()
156{
157 TThreadStackInfo info;
158 RThread thread;
159 thread.StackInfo(info);
160 m_origin = (void*)info.iBase;
161 m_bound = (void*)info.iLimit;
162}
163
164#elif OS(HAIKU)
165
166void StackBounds::initialize()
167{
168 thread_info threadInfo;
169 get_thread_info(find_thread(NULL), &threadInfo);
170 m_origin = threadInfo.stack_end;
171 m_bound = estimateStackBound(m_origin);
172}
173
174#elif OS(UNIX)
175
176void StackBounds::initialize()
177{
178 void* stackBase = 0;
179 size_t stackSize = 0;
180
181 pthread_t thread = pthread_self();
182 pthread_attr_t sattr;
183 pthread_attr_init(&sattr);
184#if HAVE(PTHREAD_NP_H) || OS(NETBSD)
185 // e.g. on FreeBSD 5.4, neundorf@kde.org
186 pthread_attr_get_np(thread, &sattr);
187#else
188 // FIXME: this function is non-portable; other POSIX systems may have different np alternatives
189 pthread_getattr_np(thread, &sattr);
190#endif
191 int rc = pthread_attr_getstack(&sattr, &stackBase, &stackSize);
192 (void)rc; // FIXME: Deal with error code somehow? Seems fatal.
193 ASSERT(stackBase);
194 pthread_attr_destroy(&sattr);
195 m_bound = stackBase;
196 m_origin = static_cast<char*>(stackBase) + stackSize;
197}
198
199#elif OS(WINCE)
200
201static bool detectGrowingDownward(void* previousFrame)
202{
203 // Find the address of this stack frame by taking the address of a local variable.
204 int thisFrame;
205 return previousFrame > &thisFrame;
206}
207
208static inline bool isPageWritable(void* page)
209{
210 MEMORY_BASIC_INFORMATION memoryInformation;
211 DWORD result = VirtualQuery(page, &memoryInformation, sizeof(memoryInformation));
212
213 // return false on error, including ptr outside memory
214 if (result != sizeof(memoryInformation))
215 return false;
216
217 DWORD protect = memoryInformation.Protect & ~(PAGE_GUARD | PAGE_NOCACHE);
218 return protect == PAGE_READWRITE
219 || protect == PAGE_WRITECOPY
220 || protect == PAGE_EXECUTE_READWRITE
221 || protect == PAGE_EXECUTE_WRITECOPY;
222}
223
224static inline void* getLowerStackBound(char* currentPage, DWORD pageSize)
225{
226 while (currentPage > 0) {
227 // check for underflow
228 if (currentPage >= reinterpret_cast<char*>(pageSize))
229 currentPage -= pageSize;
230 else
231 currentPage = 0;
232
233 if (!isPageWritable(currentPage))
234 return currentPage + pageSize;
235 }
236
237 return 0;
238}
239
240static inline void* getUpperStackBound(char* currentPage, DWORD pageSize)
241{
242 do {
243 // guaranteed to complete because isPageWritable returns false at end of memory
244 currentPage += pageSize;
245 } while (isPageWritable(currentPage));
246
247 return currentPage - pageSize;
248}
249
250void StackBounds::initialize()
251{
252 // find the address of this stack frame by taking the address of a local variable
253 void* thisFrame = &thisFrame;
254 bool isGrowingDownward = detectGrowingDownward(thisFrame);
255
256 SYSTEM_INFO systemInfo;
257 GetSystemInfo(&systemInfo);
258 DWORD pageSize = systemInfo.dwPageSize;
259
260 // scan all of memory starting from this frame, and return the last writeable page found
261 char* currentPage = reinterpret_cast<char*>(reinterpret_cast<DWORD>(thisFrame) & ~(pageSize - 1));
262 void* lowerStackBound = getLowerStackBound(currentPage, pageSize);
263 void* upperStackBound = getUpperStackBound(currentPage, pageSize);
264
265 m_origin = isGrowingDownward ? upperStackBound : lowerStackBound;
266 m_bound = isGrowingDownward ? lowerStackBound : upperStackBound;
267}
268
269#elif OS(WINDOWS)
270
271void StackBounds::initialize()
272{
273#if CPU(X86) && COMPILER(MSVC)
274 // offset 0x18 from the FS segment register gives a pointer to
275 // the thread information block for the current thread
276 NT_TIB* pTib;
277 __asm {
278 MOV EAX, FS:[18h]
279 MOV pTib, EAX
280 }
281 m_origin = static_cast<void*>(pTib->StackBase);
282#elif CPU(X86) && COMPILER(GCC)
283 // offset 0x18 from the FS segment register gives a pointer to
284 // the thread information block for the current thread
285 NT_TIB* pTib;
286 asm ( "movl %%fs:0x18, %0\n"
287 : "=r" (pTib)
288 );
289 m_origin = static_cast<void*>(pTib->StackBase);
290#elif CPU(X86_64)
291 PNT_TIB64 pTib = reinterpret_cast<PNT_TIB64>(NtCurrentTeb());
292 m_origin = reinterpret_cast<void*>(pTib->StackBase);
293#else
294#error Need a way to get the stack bounds on this platform (Windows)
295#endif
296 // Looks like we should be able to get pTib->StackLimit
297 m_bound = estimateStackBound(m_origin);
298}
299
300#else
301#error Need a way to get the stack bounds on this platform
302#endif
303
304} // namespace WTF