Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ART_PATCHOAT_PATCHOAT_H_ |
| 18 | #define ART_PATCHOAT_PATCHOAT_H_ |
| 19 | |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 20 | #include "arch/instruction_set.h" |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 21 | #include "base/macros.h" |
| 22 | #include "base/mutex.h" |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 23 | #include "elf_file.h" |
| 24 | #include "elf_utils.h" |
| 25 | #include "gc/accounting/space_bitmap.h" |
| 26 | #include "gc/heap.h" |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 27 | #include "os.h" |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 28 | |
| 29 | namespace art { |
| 30 | |
Mathieu Chartier | 3d21bdf | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 31 | class ArtMethod; |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 32 | class ImageHeader; |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 33 | class OatHeader; |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 34 | |
| 35 | namespace mirror { |
| 36 | class Object; |
Mathieu Chartier | 3d21bdf | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 37 | class PointerArray; |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 38 | class Reference; |
| 39 | class Class; |
Andreas Gampe | c8ccf68 | 2014-09-29 20:07:43 -0700 | [diff] [blame] | 40 | } // namespace mirror |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 41 | |
| 42 | class PatchOat { |
| 43 | public: |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 44 | // Patch only the oat file |
| 45 | static bool Patch(File* oat_in, off_t delta, File* oat_out, TimingLogger* timings, |
| 46 | bool output_oat_opened_from_fd, // Was this using --oatput-oat-fd ? |
| 47 | bool new_oat_out); // Output oat was a new file created by us? |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 48 | |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 49 | // Patch only the image (art file) |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 50 | static bool Patch(const std::string& art_location, off_t delta, File* art_out, InstructionSet isa, |
Alex Light | eefbe39 | 2014-07-08 09:53:18 -0700 | [diff] [blame] | 51 | TimingLogger* timings); |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 52 | |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 53 | // Patch both the image and the oat file |
| 54 | static bool Patch(File* oat_in, const std::string& art_location, |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 55 | off_t delta, File* oat_out, File* art_out, InstructionSet isa, |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 56 | TimingLogger* timings, |
| 57 | bool output_oat_opened_from_fd, // Was this using --oatput-oat-fd ? |
| 58 | bool new_oat_out); // Output oat was a new file created by us? |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 59 | |
| 60 | private: |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 61 | // Takes ownership only of the ElfFile. All other pointers are only borrowed. |
Alex Light | eefbe39 | 2014-07-08 09:53:18 -0700 | [diff] [blame] | 62 | PatchOat(ElfFile* oat_file, off_t delta, TimingLogger* timings) |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 63 | : oat_file_(oat_file), image_(nullptr), bitmap_(nullptr), heap_(nullptr), delta_(delta), |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 64 | isa_(kNone), timings_(timings) {} |
| 65 | PatchOat(InstructionSet isa, MemMap* image, gc::accounting::ContinuousSpaceBitmap* bitmap, |
Alex Light | eefbe39 | 2014-07-08 09:53:18 -0700 | [diff] [blame] | 66 | MemMap* heap, off_t delta, TimingLogger* timings) |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 67 | : image_(image), bitmap_(bitmap), heap_(heap), |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 68 | delta_(delta), isa_(isa), timings_(timings) {} |
| 69 | PatchOat(InstructionSet isa, ElfFile* oat_file, MemMap* image, |
| 70 | gc::accounting::ContinuousSpaceBitmap* bitmap, MemMap* heap, off_t delta, |
| 71 | TimingLogger* timings) |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 72 | : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap), |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 73 | delta_(delta), isa_(isa), timings_(timings) {} |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 74 | ~PatchOat() {} |
| 75 | |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 76 | // Was the .art image at image_path made with --compile-pic ? |
| 77 | static bool IsImagePic(const ImageHeader& image_header, const std::string& image_path); |
| 78 | |
| 79 | enum MaybePic { |
| 80 | NOT_PIC, // Code not pic. Patch as usual. |
| 81 | PIC, // Code was pic. Create symlink; skip OAT patching. |
| 82 | ERROR_OAT_FILE, // Failed to symlink oat file |
| 83 | ERROR_FIRST = ERROR_OAT_FILE, |
| 84 | }; |
| 85 | |
| 86 | // Was the .oat image at oat_in made with --compile-pic ? |
| 87 | static MaybePic IsOatPic(const ElfFile* oat_in); |
| 88 | |
| 89 | // Attempt to replace the file with a symlink |
| 90 | // Returns false if it fails |
| 91 | static bool ReplaceOatFileWithSymlink(const std::string& input_oat_filename, |
| 92 | const std::string& output_oat_filename, |
| 93 | bool output_oat_opened_from_fd, |
| 94 | bool new_oat_out); // Output oat was newly created? |
| 95 | |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 96 | static void BitmapCallback(mirror::Object* obj, void* arg) |
| 97 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 98 | reinterpret_cast<PatchOat*>(arg)->VisitObject(obj); |
| 99 | } |
| 100 | |
| 101 | void VisitObject(mirror::Object* obj) |
| 102 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Mathieu Chartier | 3d21bdf | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 103 | void FixupMethod(ArtMethod* object, ArtMethod* copy) |
| 104 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 105 | void FixupNativePointerArray(mirror::PointerArray* object) |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 106 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
| 107 | bool InHeap(mirror::Object*); |
| 108 | |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 109 | // Patches oat in place, modifying the oat_file given to the constructor. |
| 110 | bool PatchElf(); |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 111 | template <typename ElfFileImpl> |
| 112 | bool PatchElf(ElfFileImpl* oat_file); |
| 113 | template <typename ElfFileImpl> |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 114 | bool PatchOatHeader(ElfFileImpl* oat_file); |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 115 | |
| 116 | bool PatchImage() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 117 | void PatchArtFields(const ImageHeader* image_header) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Mathieu Chartier | 3d21bdf | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 118 | void PatchArtMethods(const ImageHeader* image_header) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 119 | void PatchDexFileArrays(mirror::ObjectArray<mirror::Object>* img_roots) |
| 120 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 121 | |
| 122 | bool WriteElf(File* out); |
| 123 | bool WriteImage(File* out); |
| 124 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 125 | template <typename T> |
| 126 | T* RelocatedCopyOf(T* obj) { |
| 127 | if (obj == nullptr) { |
| 128 | return nullptr; |
| 129 | } |
| 130 | DCHECK_GT(reinterpret_cast<uintptr_t>(obj), reinterpret_cast<uintptr_t>(heap_->Begin())); |
| 131 | DCHECK_LT(reinterpret_cast<uintptr_t>(obj), reinterpret_cast<uintptr_t>(heap_->End())); |
| 132 | uintptr_t heap_off = |
| 133 | reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(heap_->Begin()); |
| 134 | DCHECK_LT(heap_off, image_->Size()); |
| 135 | return reinterpret_cast<T*>(image_->Begin() + heap_off); |
| 136 | } |
| 137 | |
| 138 | template <typename T> |
| 139 | T* RelocatedAddressOfPointer(T* obj) { |
Mathieu Chartier | 3d21bdf | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 140 | if (obj == nullptr) { |
| 141 | return obj; |
| 142 | } |
| 143 | auto ret = reinterpret_cast<uintptr_t>(obj) + delta_; |
| 144 | // Trim off high bits in case negative relocation with 64 bit patchoat. |
| 145 | if (InstructionSetPointerSize(isa_) == sizeof(uint32_t)) { |
| 146 | ret = static_cast<uintptr_t>(static_cast<uint32_t>(ret)); |
| 147 | } |
| 148 | return reinterpret_cast<T*>(ret); |
| 149 | } |
| 150 | |
| 151 | template <typename T> |
| 152 | T RelocatedAddressOfIntPointer(T obj) { |
| 153 | if (obj == 0) { |
| 154 | return obj; |
| 155 | } |
| 156 | T ret = obj + delta_; |
| 157 | // Trim off high bits in case negative relocation with 64 bit patchoat. |
| 158 | if (InstructionSetPointerSize(isa_) == 4) { |
| 159 | ret = static_cast<T>(static_cast<uint32_t>(ret)); |
| 160 | } |
| 161 | return ret; |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 162 | } |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 163 | |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 164 | // Look up the oat header from any elf file. |
| 165 | static const OatHeader* GetOatHeader(const ElfFile* elf_file); |
| 166 | |
| 167 | // Templatized version to actually look up the oat header |
| 168 | template <typename ElfFileImpl> |
| 169 | static const OatHeader* GetOatHeader(const ElfFileImpl* elf_file); |
| 170 | |
Alex Light | eefbe39 | 2014-07-08 09:53:18 -0700 | [diff] [blame] | 171 | // Walks through the old image and patches the mmap'd copy of it to the new offset. It does not |
| 172 | // change the heap. |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 173 | class PatchVisitor { |
| 174 | public: |
| 175 | PatchVisitor(PatchOat* patcher, mirror::Object* copy) : patcher_(patcher), copy_(copy) {} |
| 176 | ~PatchVisitor() {} |
| 177 | void operator() (mirror::Object* obj, MemberOffset off, bool b) const |
| 178 | EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_); |
| 179 | // For reference classes. |
| 180 | void operator() (mirror::Class* cls, mirror::Reference* ref) const |
| 181 | EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_); |
| 182 | private: |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 183 | PatchOat* const patcher_; |
| 184 | mirror::Object* const copy_; |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 185 | }; |
| 186 | |
Alex Light | eefbe39 | 2014-07-08 09:53:18 -0700 | [diff] [blame] | 187 | // The elf file we are patching. |
| 188 | std::unique_ptr<ElfFile> oat_file_; |
| 189 | // A mmap of the image we are patching. This is modified. |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 190 | const MemMap* const image_; |
| 191 | // The bitmap over the image within the heap we are patching. This is not modified. |
| 192 | gc::accounting::ContinuousSpaceBitmap* const bitmap_; |
Alex Light | eefbe39 | 2014-07-08 09:53:18 -0700 | [diff] [blame] | 193 | // The heap we are patching. This is not modified. |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 194 | const MemMap* const heap_; |
Alex Light | eefbe39 | 2014-07-08 09:53:18 -0700 | [diff] [blame] | 195 | // The amount we are changing the offset by. |
Ian Rogers | d4c4d95 | 2014-10-16 20:31:53 -0700 | [diff] [blame] | 196 | const off_t delta_; |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 197 | // Active instruction set, used to know the entrypoint size. |
| 198 | const InstructionSet isa_; |
| 199 | |
| 200 | TimingLogger* timings_; |
Alex Light | eefbe39 | 2014-07-08 09:53:18 -0700 | [diff] [blame] | 201 | |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 202 | DISALLOW_IMPLICIT_CONSTRUCTORS(PatchOat); |
| 203 | }; |
| 204 | |
| 205 | } // namespace art |
| 206 | #endif // ART_PATCHOAT_PATCHOAT_H_ |