Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(655)

Side by Side Diff: src/trusted/service_runtime/arch/x86_32/sel_addrspace_x86_32.c

Issue 7648002: Modify the NaCl_page_alloc_hint function to use VirtualQuery to check (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/trusted/service_runtime/sel_memory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2009 The Native Client Authors. All rights reserved. 2 * Copyright 2009 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can 3 * Use of this source code is governed by a BSD-style license that can
4 * be found in the LICENSE file. 4 * be found in the LICENSE file.
5 */ 5 */
6 6
7 #include "native_client/src/include/nacl_platform.h" 7 #include "native_client/src/include/nacl_platform.h"
8 #include "native_client/src/shared/platform/nacl_check.h" 8 #include "native_client/src/shared/platform/nacl_check.h"
9 #include "native_client/src/trusted/service_runtime/sel_memory.h" 9 #include "native_client/src/trusted/service_runtime/sel_memory.h"
10 #include "native_client/src/trusted/service_runtime/sel_ldr.h" 10 #include "native_client/src/trusted/service_runtime/sel_ldr.h"
11 11
12 12
13 NaClErrorCode NaClAllocateSpace(void **mem, size_t addrsp_size) { 13 NaClErrorCode NaClAllocateSpace(void **mem, size_t addrsp_size) {
14 int result; 14 int result;
15 15
16 CHECK(NULL != mem); 16 CHECK(NULL != mem);
17 17
18 #ifdef NACL_SANDBOX_FIXED_AT_ZERO 18 #ifdef NACL_SANDBOX_FIXED_AT_ZERO
19 /* 19 /*
20 * When creating a zero-based sandbox, we do not allocate the first 64K of 20 * When creating a zero-based sandbox, we do not allocate the first 64K of
21 * pages beneath the trampolines, because -- on Linux at least -- we cannot. 21 * pages beneath the trampolines, because -- on Linux at least -- we cannot.
22 * Instead, we allocate starting at the trampolines, and then coerce the 22 * Instead, we allocate starting at the trampolines, and then coerce the
23 * out parameter. 23 * out parameter.
24 */ 24 */
25 addrsp_size -= NACL_TRAMPOLINE_START; 25 addrsp_size -= NACL_TRAMPOLINE_START;
26 *mem = (void *) NACL_TRAMPOLINE_START; 26 *mem = (void *) NACL_TRAMPOLINE_START;
27 result = NaCl_page_alloc_at_addr(mem, addrsp_size); 27 result = NaCl_page_alloc_at_addr(mem, addrsp_size);
28 *mem = 0; 28 *mem = 0;
29 #elif NACL_WINDOWS && NACL_BUILD_SUBARCH == 32
30 /*
31 * On 32 bit Windows, a 1 gigabyte block of address space is reserved before
32 * starting up this process to make sure we can create the sandbox. Look for
33 * this pre-reserved block and if found, pass its address to the page
34 * allocation function.
35 */
36 if (0 == NaCl_find_prereserved_sandbox_memory(mem, addrsp_size)) {
37 result = NaCl_page_alloc_at_addr(mem, addrsp_size);
38 } else {
39 result = NaCl_page_alloc(mem, addrsp_size);
40 }
29 #else 41 #else
30 result = NaCl_page_alloc(mem, addrsp_size); 42 result = NaCl_page_alloc(mem, addrsp_size);
31 #endif 43 #endif
32 44
33 if (0 != result) { 45 if (0 != result) {
34 NaClLog(2, 46 NaClLog(2,
35 "NaClAllocateSpace: NaCl_page_alloc 0x%08"NACL_PRIxPTR 47 "NaClAllocateSpace: NaCl_page_alloc 0x%08"NACL_PRIxPTR
36 " failed\n", 48 " failed\n",
37 (uintptr_t) *mem); 49 (uintptr_t) *mem);
38 return LOAD_NO_MEMORY; 50 return LOAD_NO_MEMORY;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 NACL_SYSCALL_START_ADDR >> NACL_PAGESHIFT, 84 NACL_SYSCALL_START_ADDR >> NACL_PAGESHIFT,
73 PROT_NONE, 85 PROT_NONE,
74 (struct NaClMemObj *) NULL)) { 86 (struct NaClMemObj *) NULL)) {
75 NaClLog(LOG_ERROR, ("NaClMemoryProtection: NaClVmmapAdd failed" 87 NaClLog(LOG_ERROR, ("NaClMemoryProtection: NaClVmmapAdd failed"
76 " (NULL pointer guard page)\n")); 88 " (NULL pointer guard page)\n"));
77 return LOAD_MPROTECT_FAIL; 89 return LOAD_MPROTECT_FAIL;
78 } 90 }
79 91
80 return LOAD_OK; 92 return LOAD_OK;
81 } 93 }
OLDNEW
« no previous file with comments | « no previous file | src/trusted/service_runtime/sel_memory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698