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

Side by Side Diff: third_party/mach_override/chromium.patch

Issue 2946753003: Sped up allocateBranchIsland by skipping whole regions of allocated memory. (Closed)
Patch Set: Clean up the README file. Created 3 years, 6 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
OLDNEW
(Empty)
1 diff --git a/third_party/mach_override/README.chromium b/third_party/mach_overri de/README.chromium
2 index 8a7c3fd79e0b..9cd6b2452606 100644
3 --- a/third_party/mach_override/README.chromium
4 +++ b/third_party/mach_override/README.chromium
5 @@ -1,6 +1,5 @@
6 Name: mach_override
7 Short Name: mach_override
8 -Version: Newer than 1.2. HEAD from branch semver-1.x.
9 URL: https://github.com/rentzsch/mach_override
10 Date: 2014-05-11
11 Revision: 919148f94db54fc04d287eb6a42c0c36b166bbfa
12 @@ -16,4 +15,5 @@ mach_override includes a copy of libudis86 1.7.1, available se parately from
13 http://udis86.sourceforge.net/ and https://github.com/vmt/udis86 .
14
15
16 -Local Modifications: None.
17 +Local Modifications: Sped up allocation of branch island memory via usage of
18 + vm_region to skip already allocated pages.
19 diff --git a/third_party/mach_override/chromium.patch b/third_party/mach_overrid e/chromium.patch
20 new file mode 100644
21 index 000000000000..e69de29bb2d1
22 diff --git a/third_party/mach_override/mach_override.c b/third_party/mach_overri de/mach_override.c
23 index 85a75e5c2067..2747f294cfa8 100644
24 --- a/third_party/mach_override/mach_override.c
25 +++ b/third_party/mach_override/mach_override.c
26 @@ -41,7 +41,7 @@ long kIslandTemplate[] = {
27 #define kInstructionHi 10
28 #define kInstructionLo 11
29
30 -#elif defined(__i386__)
31 +#elif defined(__i386__)
32
33 #define kOriginalInstructionsSize 16
34
35 @@ -61,6 +61,7 @@ char kIslandTemplate[] = {
36 #define kOriginalInstructionsSize 32
37
38 #define kJumpAddress kOriginalInstructionsSize + 6
39 +#define kMaxJumpOffset (0x7fffffffUL)
40
41 char kIslandTemplate[] = {
42 // kOriginalInstructionsSize nop instructions so that we
43 @@ -267,7 +268,13 @@ mach_override_ptr(
44
45 #if defined(__i386__) || defined(__x86_64__)
46 if (!err) {
47 - uint32_t addressOffset = ((char*)escapeIsland - (char*)originalF unctionPtr - 5);
48 + // TODO: On 64-bit, move to opcode FF/4 (jmp 64-bit absolute ind irect)
49 + // instead of E9 (jmp 32-bit relative to RIP). Then we should up date
50 + // allocateBranchIsland to simply allocate any page in the addre ss space.
51 + // See the 64-bit version of kIslandTemplate array.
52 + int64_t addressOffset64 = ((char*)escapeIsland - (char*)original FunctionPtr - 5);
53 + int32_t addressOffset = ((char*)escapeIsland - (char*)originalFu nctionPtr - 5);
54 + assert(addressOffset64 == addressOffset);
55 addressOffset = OSSwapInt32(addressOffset);
56
57 jumpRelativeInstruction |= 0xE900000000000000LL;
58 @@ -385,7 +392,7 @@ allocateBranchIsland(
59 void *originalFunctionAddress)
60 {
61 assert( island );
62 -
63 +
64 mach_error_t err = err_none;
65
66 if( allocateHigh ) {
67 @@ -401,23 +408,41 @@ allocateBranchIsland(
68 vm_address_t first = 0xfeffffff;
69 vm_address_t last = 0xfe000000 + PAGE_SIZE;
70 #elif defined(__x86_64__)
71 - // 64-bit ASLR is in bits 13-28
72 - vm_address_t first = ((uint64_t)originalFunctionAddress & ~( (0x FUL << 28) | (PAGE_SIZE - 1) ) ) | (0x1UL << 31);
73 - vm_address_t last = (uint64_t)originalFunctionAddress & ~((0x1UL << 32) - 1);
74 + // This logic is more complex due to the 32-bit limit of the jum p out
75 + // of the original function. Once that limitation is removed, we can
76 + // use vm_allocate with VM_FLAGS_ANYWHERE as in the i386 code ab ove.
77 + const uint64_t kPageMask = ~(PAGE_SIZE - 1);
78 + vm_address_t first = (uint64_t)originalFunctionAddress - kMaxJum pOffset;
79 + first = (first & kPageMask) + PAGE_SIZE; // Align up to the next page start
80 + if (first > (uint64_t)originalFunctionAddress) first = 0;
81 + vm_address_t last = (uint64_t)originalFunctionAddress + kMaxJump Offset;
82 + if (last < (uint64_t)originalFunctionAddress) last = ULONG_MAX;
83 #endif
84
85 page = first;
86 int allocated = 0;
87 vm_map_t task_self = mach_task_self();
88
89 - while( !err && !allocated && page != last ) {
90 + while( !err && !allocated && page < last ) {
91
92 err = vm_allocate( task_self, &page, PAGE_SIZE, 0 );
93 if( err == err_none )
94 allocated = 1;
95 else if( err == KERN_NO_SPACE ) {
96 #if defined(__x86_64__)
97 - page -= PAGE_SIZE;
98 + // This memory region is not suitable, skip it:
99 + vm_size_t region_size;
100 + mach_msg_type_number_t int_count = VM_REGION_BAS IC_INFO_COUNT_64;
101 + vm_region_basic_info_data_64_t vm_region_info;
102 + mach_port_t object_name;
103 + // The call will move 'page' to the beginning of the region:
104 + err = vm_region_64(task_self, &page, &region_siz e,
105 + VM_REGION_BASIC_INFO_64, (vm_region_info_t)&vm_region_info,
106 + &int_count, &object_name );
107 + if (err == KERN_SUCCESS)
108 + page += region_size;
109 + else
110 + break;
111 #else
112 page += PAGE_SIZE;
113 #endif
114 @@ -438,7 +463,7 @@ allocateBranchIsland(
115 }
116 if( !err )
117 (**island).allocatedHigh = allocateHigh;
118 -
119 +
120 return err;
121 }
122
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698