blob: eb648cba18e8c19c6d95d9636b91aa9985570b5b [file] [log] [blame]
Alex Light53cb16b2014-06-12 11:26:29 -07001/*
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#include "patchoat.h"
17
18#include <stdio.h>
19#include <stdlib.h>
Alex Lighta59dd802014-07-02 16:28:08 -070020#include <sys/file.h>
Alex Light53cb16b2014-06-12 11:26:29 -070021#include <sys/stat.h>
Alex Lighta59dd802014-07-02 16:28:08 -070022#include <unistd.h>
Alex Light53cb16b2014-06-12 11:26:29 -070023
24#include <string>
25#include <vector>
26
Andreas Gampe46ee31b2016-12-14 10:11:49 -080027#include "android-base/stringprintf.h"
Andreas Gampe9186ced2016-12-12 14:28:21 -080028#include "android-base/strings.h"
29
Mathieu Chartierc7853442015-03-27 14:35:38 -070030#include "art_field-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070031#include "art_method-inl.h"
Ian Rogersc7dd2952014-10-21 23:31:19 -070032#include "base/dumpable.h"
Andreas Gampe170331f2017-12-07 18:41:03 -080033#include "base/logging.h" // For InitLogging.
Andreas Gampeb8cc1752017-04-26 21:28:50 -070034#include "base/memory_tool.h"
Alex Lighta59dd802014-07-02 16:28:08 -070035#include "base/scoped_flock.h"
Alex Light53cb16b2014-06-12 11:26:29 -070036#include "base/stringpiece.h"
Ian Rogersd4c4d952014-10-16 20:31:53 -070037#include "base/unix_file/fd_file.h"
David Brazdil7b49e6c2016-09-01 11:06:18 +010038#include "base/unix_file/random_access_file_utils.h"
Alex Light53cb16b2014-06-12 11:26:29 -070039#include "elf_file.h"
Tong Shen62d1ca32014-09-03 17:24:56 -070040#include "elf_file_impl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070041#include "elf_utils.h"
Ian Rogerse63db272014-07-15 15:36:11 -070042#include "gc/space/image_space.h"
Mathieu Chartier4a26f172016-01-26 14:26:18 -080043#include "image-inl.h"
Andreas Gampeb2d18fa2017-06-06 20:46:10 -070044#include "intern_table.h"
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -070045#include "mirror/dex_cache.h"
Neil Fuller0e844392016-09-08 13:43:31 +010046#include "mirror/executable.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070047#include "mirror/method.h"
Alex Light53cb16b2014-06-12 11:26:29 -070048#include "mirror/object-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080049#include "mirror/object-refvisitor-inl.h"
Alex Light53cb16b2014-06-12 11:26:29 -070050#include "mirror/reference.h"
51#include "noop_compiler_callbacks.h"
52#include "offsets.h"
53#include "os.h"
54#include "runtime.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070055#include "scoped_thread_state_change-inl.h"
Alex Light53cb16b2014-06-12 11:26:29 -070056#include "thread.h"
57#include "utils.h"
58
59namespace art {
60
Alex Light0eb76d22015-08-11 18:03:47 -070061static const OatHeader* GetOatHeader(const ElfFile* elf_file) {
62 uint64_t off = 0;
63 if (!elf_file->GetSectionOffsetAndSize(".rodata", &off, nullptr)) {
64 return nullptr;
65 }
66
67 OatHeader* oat_header = reinterpret_cast<OatHeader*>(elf_file->Begin() + off);
68 return oat_header;
69}
70
Richard Uhler4bc11d02017-02-01 09:53:54 +000071static File* CreateOrOpen(const char* name) {
Jeff Haodcdc85b2015-12-04 14:06:18 -080072 if (OS::FileExists(name)) {
Jeff Haodcdc85b2015-12-04 14:06:18 -080073 return OS::OpenFileReadWrite(name);
74 } else {
Jeff Haodcdc85b2015-12-04 14:06:18 -080075 std::unique_ptr<File> f(OS::CreateEmptyFile(name));
76 if (f.get() != nullptr) {
77 if (fchmod(f->Fd(), 0644) != 0) {
78 PLOG(ERROR) << "Unable to make " << name << " world readable";
Dimitry Ivanov7a1c0142016-03-17 15:59:38 -070079 unlink(name);
Jeff Haodcdc85b2015-12-04 14:06:18 -080080 return nullptr;
81 }
82 }
83 return f.release();
84 }
85}
86
87// Either try to close the file (close=true), or erase it.
88static bool FinishFile(File* file, bool close) {
89 if (close) {
90 if (file->FlushCloseOrErase() != 0) {
91 PLOG(ERROR) << "Failed to flush and close file.";
92 return false;
93 }
94 return true;
95 } else {
96 file->Erase();
97 return false;
98 }
99}
100
David Brazdil7b49e6c2016-09-01 11:06:18 +0100101static bool SymlinkFile(const std::string& input_filename, const std::string& output_filename) {
102 if (input_filename == output_filename) {
103 // Input and output are the same, nothing to do.
104 return true;
105 }
106
107 // Unlink the original filename, since we are overwriting it.
108 unlink(output_filename.c_str());
109
110 // Create a symlink from the source file to the target path.
111 if (symlink(input_filename.c_str(), output_filename.c_str()) < 0) {
112 PLOG(ERROR) << "Failed to create symlink " << output_filename << " -> " << input_filename;
113 return false;
114 }
115
116 if (kIsDebugBuild) {
117 LOG(INFO) << "Created symlink " << output_filename << " -> " << input_filename;
118 }
119
120 return true;
121}
122
Andreas Gampe6eb6a392016-02-10 20:18:37 -0800123bool PatchOat::Patch(const std::string& image_location,
124 off_t delta,
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000125 const std::string& output_directory,
Andreas Gampe6eb6a392016-02-10 20:18:37 -0800126 InstructionSet isa,
127 TimingLogger* timings) {
Alex Light53cb16b2014-06-12 11:26:29 -0700128 CHECK(Runtime::Current() == nullptr);
Alex Light53cb16b2014-06-12 11:26:29 -0700129 CHECK(!image_location.empty()) << "image file must have a filename.";
130
Alex Lighteefbe392014-07-08 09:53:18 -0700131 TimingLogger::ScopedTiming t("Runtime Setup", timings);
Alex Light53cb16b2014-06-12 11:26:29 -0700132
Vladimir Marko33bff252017-11-01 14:35:42 +0000133 CHECK_NE(isa, InstructionSet::kNone);
Alex Light53cb16b2014-06-12 11:26:29 -0700134 const char* isa_name = GetInstructionSetString(isa);
Igor Murashkin46774762014-10-22 11:37:02 -0700135
Alex Light53cb16b2014-06-12 11:26:29 -0700136 // Set up the runtime
Ian Rogerse63db272014-07-15 15:36:11 -0700137 RuntimeOptions options;
Alex Light53cb16b2014-06-12 11:26:29 -0700138 NoopCompilerCallbacks callbacks;
139 options.push_back(std::make_pair("compilercallbacks", &callbacks));
140 std::string img = "-Ximage:" + image_location;
141 options.push_back(std::make_pair(img.c_str(), nullptr));
142 options.push_back(std::make_pair("imageinstructionset", reinterpret_cast<const void*>(isa_name)));
Calin Juravle01aaf6e2015-06-19 22:05:39 +0100143 options.push_back(std::make_pair("-Xno-sig-chain", nullptr));
Alex Light53cb16b2014-06-12 11:26:29 -0700144 if (!Runtime::Create(options, false)) {
145 LOG(ERROR) << "Unable to initialize runtime";
146 return false;
147 }
Andreas Gampeb8cc1752017-04-26 21:28:50 -0700148 std::unique_ptr<Runtime> runtime(Runtime::Current());
149
Alex Light53cb16b2014-06-12 11:26:29 -0700150 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
151 // give it away now and then switch to a more manageable ScopedObjectAccess.
152 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
153 ScopedObjectAccess soa(Thread::Current());
154
Richard Uhler4bc11d02017-02-01 09:53:54 +0000155 t.NewTiming("Image Patching setup");
Jeff Haodcdc85b2015-12-04 14:06:18 -0800156 std::vector<gc::space::ImageSpace*> spaces = Runtime::Current()->GetHeap()->GetBootImageSpaces();
157 std::map<gc::space::ImageSpace*, std::unique_ptr<File>> space_to_file_map;
158 std::map<gc::space::ImageSpace*, std::unique_ptr<MemMap>> space_to_memmap_map;
159 std::map<gc::space::ImageSpace*, PatchOat> space_to_patchoat_map;
Alex Light53cb16b2014-06-12 11:26:29 -0700160
Jeff Haodcdc85b2015-12-04 14:06:18 -0800161 for (size_t i = 0; i < spaces.size(); ++i) {
162 gc::space::ImageSpace* space = spaces[i];
163 std::string input_image_filename = space->GetImageFilename();
164 std::unique_ptr<File> input_image(OS::OpenFileForReading(input_image_filename.c_str()));
165 if (input_image.get() == nullptr) {
166 LOG(ERROR) << "Unable to open input image file at " << input_image_filename;
Igor Murashkin46774762014-10-22 11:37:02 -0700167 return false;
168 }
Jeff Haodcdc85b2015-12-04 14:06:18 -0800169
170 int64_t image_len = input_image->GetLength();
171 if (image_len < 0) {
172 LOG(ERROR) << "Error while getting image length";
173 return false;
174 }
175 ImageHeader image_header;
176 if (sizeof(image_header) != input_image->Read(reinterpret_cast<char*>(&image_header),
177 sizeof(image_header), 0)) {
178 LOG(ERROR) << "Unable to read image header from image file " << input_image->GetPath();
179 }
180
181 /*bool is_image_pic = */IsImagePic(image_header, input_image->GetPath());
182 // Nothing special to do right now since the image always needs to get patched.
183 // Perhaps in some far-off future we may have images with relative addresses that are true-PIC.
184
185 // Create the map where we will write the image patches to.
186 std::string error_msg;
187 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len,
188 PROT_READ | PROT_WRITE,
189 MAP_PRIVATE,
190 input_image->Fd(),
191 0,
192 /*low_4gb*/false,
193 input_image->GetPath().c_str(),
194 &error_msg));
195 if (image.get() == nullptr) {
196 LOG(ERROR) << "Unable to map image file " << input_image->GetPath() << " : " << error_msg;
197 return false;
198 }
199 space_to_file_map.emplace(space, std::move(input_image));
200 space_to_memmap_map.emplace(space, std::move(image));
Igor Murashkin46774762014-10-22 11:37:02 -0700201 }
202
Richard Uhler4bc11d02017-02-01 09:53:54 +0000203 // Symlink PIC oat and vdex files and patch the image spaces in memory.
Jeff Haodcdc85b2015-12-04 14:06:18 -0800204 for (size_t i = 0; i < spaces.size(); ++i) {
205 gc::space::ImageSpace* space = spaces[i];
206 std::string input_image_filename = space->GetImageFilename();
David Brazdil7b49e6c2016-09-01 11:06:18 +0100207 std::string input_vdex_filename =
208 ImageHeader::GetVdexLocationFromImageLocation(input_image_filename);
Jeff Haodcdc85b2015-12-04 14:06:18 -0800209 std::string input_oat_filename =
210 ImageHeader::GetOatLocationFromImageLocation(input_image_filename);
211 std::unique_ptr<File> input_oat_file(OS::OpenFileForReading(input_oat_filename.c_str()));
212 if (input_oat_file.get() == nullptr) {
213 LOG(ERROR) << "Unable to open input oat file at " << input_oat_filename;
214 return false;
215 }
216 std::string error_msg;
217 std::unique_ptr<ElfFile> elf(ElfFile::Open(input_oat_file.get(),
218 PROT_READ | PROT_WRITE, MAP_PRIVATE, &error_msg));
219 if (elf.get() == nullptr) {
220 LOG(ERROR) << "Unable to open oat file " << input_oat_file->GetPath() << " : " << error_msg;
221 return false;
222 }
223
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000224 MaybePic is_oat_pic = IsOatPic(elf.get());
225 if (is_oat_pic >= ERROR_FIRST) {
226 // Error logged by IsOatPic
227 return false;
228 } else if (is_oat_pic == NOT_PIC) {
229 LOG(ERROR) << "patchoat cannot be used on non-PIC oat file: " << input_oat_file->GetPath();
230 return false;
231 } else {
232 CHECK(is_oat_pic == PIC);
Alex Klyubinfbe5f2f2017-10-23 13:53:13 -0700233
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000234 // Create a symlink.
235 std::string converted_image_filename = space->GetImageLocation();
236 std::replace(converted_image_filename.begin() + 1, converted_image_filename.end(), '/', '@');
237 std::string output_image_filename = output_directory +
238 (android::base::StartsWith(converted_image_filename, "/") ? "" : "/") +
239 converted_image_filename;
240 std::string output_vdex_filename =
241 ImageHeader::GetVdexLocationFromImageLocation(output_image_filename);
242 std::string output_oat_filename =
243 ImageHeader::GetOatLocationFromImageLocation(output_image_filename);
Alex Klyubinfbe5f2f2017-10-23 13:53:13 -0700244
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000245 if (!ReplaceOatFileWithSymlink(input_oat_file->GetPath(),
246 output_oat_filename) ||
247 !SymlinkFile(input_vdex_filename, output_vdex_filename)) {
248 // Errors already logged by above call.
249 return false;
Jeff Haodcdc85b2015-12-04 14:06:18 -0800250 }
Jeff Haodcdc85b2015-12-04 14:06:18 -0800251 }
252
253 PatchOat& p = space_to_patchoat_map.emplace(space,
254 PatchOat(
255 isa,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800256 space_to_memmap_map.find(space)->second.get(),
257 space->GetLiveBitmap(),
258 space->GetMemMap(),
259 delta,
260 &space_to_memmap_map,
261 timings)).first->second;
262
Richard Uhler4bc11d02017-02-01 09:53:54 +0000263 t.NewTiming("Patching image");
Jeff Haodcdc85b2015-12-04 14:06:18 -0800264 if (!p.PatchImage(i == 0)) {
265 LOG(ERROR) << "Failed to patch image file " << input_image_filename;
266 return false;
267 }
Alex Light53cb16b2014-06-12 11:26:29 -0700268 }
269
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000270 // Write the patched image spaces.
271 for (size_t i = 0; i < spaces.size(); ++i) {
272 gc::space::ImageSpace* space = spaces[i];
Jeff Haodcdc85b2015-12-04 14:06:18 -0800273
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000274 t.NewTiming("Writing image");
275 std::string converted_image_filename = space->GetImageLocation();
276 std::replace(converted_image_filename.begin() + 1, converted_image_filename.end(), '/', '@');
277 std::string output_image_filename = output_directory +
278 (android::base::StartsWith(converted_image_filename, "/") ? "" : "/") +
279 converted_image_filename;
280 std::unique_ptr<File> output_image_file(CreateOrOpen(output_image_filename.c_str()));
281 if (output_image_file.get() == nullptr) {
282 LOG(ERROR) << "Failed to open output image file at " << output_image_filename;
283 return false;
Jeff Haodcdc85b2015-12-04 14:06:18 -0800284 }
285
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000286 PatchOat& p = space_to_patchoat_map.find(space)->second;
Jeff Haodcdc85b2015-12-04 14:06:18 -0800287
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000288 bool success = p.WriteImage(output_image_file.get());
289 success = FinishFile(output_image_file.get(), success);
290 if (!success) {
291 return false;
Jeff Haodcdc85b2015-12-04 14:06:18 -0800292 }
Alex Light53cb16b2014-06-12 11:26:29 -0700293 }
Andreas Gampeb8cc1752017-04-26 21:28:50 -0700294
295 if (!kIsDebugBuild && !(RUNNING_ON_MEMORY_TOOL && kMemoryToolDetectsLeaks)) {
296 // We want to just exit on non-debug builds, not bringing the runtime down
297 // in an orderly fashion. So release the following fields.
298 runtime.release();
299 }
300
Alex Light53cb16b2014-06-12 11:26:29 -0700301 return true;
302}
303
Alex Light53cb16b2014-06-12 11:26:29 -0700304bool PatchOat::WriteImage(File* out) {
Alex Lighteefbe392014-07-08 09:53:18 -0700305 TimingLogger::ScopedTiming t("Writing image File", timings_);
Alex Lighta59dd802014-07-02 16:28:08 -0700306 std::string error_msg;
307
Narayan Kamatha3d27eb2017-05-11 13:50:59 +0100308 // No error checking here, this is best effort. The locking may or may not
309 // succeed and we don't really care either way.
310 ScopedFlock img_flock = LockedFile::DupOf(out->Fd(), out->GetPath(),
311 true /* read_only_mode */, &error_msg);
Alex Lighta59dd802014-07-02 16:28:08 -0700312
Alex Light53cb16b2014-06-12 11:26:29 -0700313 CHECK(image_ != nullptr);
314 CHECK(out != nullptr);
315 size_t expect = image_->Size();
316 if (out->WriteFully(reinterpret_cast<char*>(image_->Begin()), expect) &&
317 out->SetLength(expect) == 0) {
318 return true;
319 } else {
320 LOG(ERROR) << "Writing to image file " << out->GetPath() << " failed.";
321 return false;
322 }
323}
324
Igor Murashkin46774762014-10-22 11:37:02 -0700325bool PatchOat::IsImagePic(const ImageHeader& image_header, const std::string& image_path) {
326 if (!image_header.CompilePic()) {
327 if (kIsDebugBuild) {
328 LOG(INFO) << "image at location " << image_path << " was *not* compiled pic";
329 }
330 return false;
331 }
332
333 if (kIsDebugBuild) {
334 LOG(INFO) << "image at location " << image_path << " was compiled PIC";
335 }
336
337 return true;
338}
339
340PatchOat::MaybePic PatchOat::IsOatPic(const ElfFile* oat_in) {
341 if (oat_in == nullptr) {
342 LOG(ERROR) << "No ELF input oat fie available";
343 return ERROR_OAT_FILE;
344 }
345
Brian Carlstromf5b0f2c2016-10-14 01:04:26 -0700346 const std::string& file_path = oat_in->GetFilePath();
Igor Murashkin46774762014-10-22 11:37:02 -0700347
348 const OatHeader* oat_header = GetOatHeader(oat_in);
349 if (oat_header == nullptr) {
350 LOG(ERROR) << "Failed to find oat header in oat file " << file_path;
351 return ERROR_OAT_FILE;
352 }
353
354 if (!oat_header->IsValid()) {
355 LOG(ERROR) << "Elf file " << file_path << " has an invalid oat header";
356 return ERROR_OAT_FILE;
357 }
358
359 bool is_pic = oat_header->IsPic();
360 if (kIsDebugBuild) {
361 LOG(INFO) << "Oat file at " << file_path << " is " << (is_pic ? "PIC" : "not pic");
362 }
363
364 return is_pic ? PIC : NOT_PIC;
365}
366
367bool PatchOat::ReplaceOatFileWithSymlink(const std::string& input_oat_filename,
Richard Uhler4bc11d02017-02-01 09:53:54 +0000368 const std::string& output_oat_filename) {
Igor Murashkin46774762014-10-22 11:37:02 -0700369 // Delete the original file, since we won't need it.
Dimitry Ivanov7a1c0142016-03-17 15:59:38 -0700370 unlink(output_oat_filename.c_str());
Igor Murashkin46774762014-10-22 11:37:02 -0700371
372 // Create a symlink from the old oat to the new oat
373 if (symlink(input_oat_filename.c_str(), output_oat_filename.c_str()) < 0) {
374 int err = errno;
375 LOG(ERROR) << "Failed to create symlink at " << output_oat_filename
376 << " error(" << err << "): " << strerror(err);
377 return false;
378 }
379
380 if (kIsDebugBuild) {
381 LOG(INFO) << "Created symlink " << output_oat_filename << " -> " << input_oat_filename;
382 }
383
384 return true;
385}
386
Vladimir Markoad06b982016-11-17 16:38:59 +0000387class PatchOat::PatchOatArtFieldVisitor : public ArtFieldVisitor {
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700388 public:
389 explicit PatchOatArtFieldVisitor(PatchOat* patch_oat) : patch_oat_(patch_oat) {}
390
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700391 void Visit(ArtField* field) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700392 ArtField* const dest = patch_oat_->RelocatedCopyOf(field);
Mathieu Chartier3398c782016-09-30 10:27:43 -0700393 dest->SetDeclaringClass(
Mathieu Chartier1cc62e42016-10-03 18:01:28 -0700394 patch_oat_->RelocatedAddressOfPointer(field->GetDeclaringClass().Ptr()));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700395 }
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700396
397 private:
398 PatchOat* const patch_oat_;
399};
400
401void PatchOat::PatchArtFields(const ImageHeader* image_header) {
402 PatchOatArtFieldVisitor visitor(this);
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700403 image_header->VisitPackedArtFields(&visitor, heap_->Begin());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700404}
405
Vladimir Markoad06b982016-11-17 16:38:59 +0000406class PatchOat::PatchOatArtMethodVisitor : public ArtMethodVisitor {
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700407 public:
408 explicit PatchOatArtMethodVisitor(PatchOat* patch_oat) : patch_oat_(patch_oat) {}
409
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700410 void Visit(ArtMethod* method) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700411 ArtMethod* const dest = patch_oat_->RelocatedCopyOf(method);
412 patch_oat_->FixupMethod(method, dest);
413 }
414
415 private:
416 PatchOat* const patch_oat_;
417};
418
Mathieu Chartiere401d142015-04-22 13:56:20 -0700419void PatchOat::PatchArtMethods(const ImageHeader* image_header) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700420 const PointerSize pointer_size = InstructionSetPointerSize(isa_);
Mathieu Chartier54d220e2015-07-30 16:20:06 -0700421 PatchOatArtMethodVisitor visitor(this);
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700422 image_header->VisitPackedArtMethods(&visitor, heap_->Begin(), pointer_size);
423}
424
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000425void PatchOat::PatchImTables(const ImageHeader* image_header) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700426 const PointerSize pointer_size = InstructionSetPointerSize(isa_);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000427 // We can safely walk target image since the conflict tables are independent.
428 image_header->VisitPackedImTables(
429 [this](ArtMethod* method) {
430 return RelocatedAddressOfPointer(method);
431 },
432 image_->Begin(),
433 pointer_size);
434}
435
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700436void PatchOat::PatchImtConflictTables(const ImageHeader* image_header) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700437 const PointerSize pointer_size = InstructionSetPointerSize(isa_);
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700438 // We can safely walk target image since the conflict tables are independent.
439 image_header->VisitPackedImtConflictTables(
440 [this](ArtMethod* method) {
441 return RelocatedAddressOfPointer(method);
442 },
443 image_->Begin(),
444 pointer_size);
Mathieu Chartierc7853442015-03-27 14:35:38 -0700445}
446
Vladimir Markoad06b982016-11-17 16:38:59 +0000447class PatchOat::FixupRootVisitor : public RootVisitor {
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700448 public:
449 explicit FixupRootVisitor(const PatchOat* patch_oat) : patch_oat_(patch_oat) {
450 }
451
452 void VisitRoots(mirror::Object*** roots, size_t count, const RootInfo& info ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700453 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700454 for (size_t i = 0; i < count; ++i) {
455 *roots[i] = patch_oat_->RelocatedAddressOfPointer(*roots[i]);
456 }
457 }
458
459 void VisitRoots(mirror::CompressedReference<mirror::Object>** roots, size_t count,
460 const RootInfo& info ATTRIBUTE_UNUSED)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700461 OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700462 for (size_t i = 0; i < count; ++i) {
463 roots[i]->Assign(patch_oat_->RelocatedAddressOfPointer(roots[i]->AsMirrorPtr()));
464 }
465 }
466
467 private:
468 const PatchOat* const patch_oat_;
469};
470
471void PatchOat::PatchInternedStrings(const ImageHeader* image_header) {
Vladimir Markocd87c3e2017-09-05 13:11:57 +0100472 const auto& section = image_header->GetInternedStringsSection();
Vladimir Marko6cfbdbc2017-07-25 13:26:39 +0100473 if (section.Size() == 0) {
474 return;
475 }
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700476 InternTable temp_table;
477 // Note that we require that ReadFromMemory does not make an internal copy of the elements.
478 // This also relies on visit roots not doing any verification which could fail after we update
479 // the roots to be the image addresses.
Mathieu Chartierea0831f2015-12-29 13:17:37 -0800480 temp_table.AddTableFromMemory(image_->Begin() + section.Offset());
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700481 FixupRootVisitor visitor(this);
482 temp_table.VisitRoots(&visitor, kVisitRootFlagAllRoots);
483}
484
Mathieu Chartier208a5cb2015-12-02 15:44:07 -0800485void PatchOat::PatchClassTable(const ImageHeader* image_header) {
Vladimir Markocd87c3e2017-09-05 13:11:57 +0100486 const auto& section = image_header->GetClassTableSection();
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800487 if (section.Size() == 0) {
488 return;
489 }
Mathieu Chartier208a5cb2015-12-02 15:44:07 -0800490 // Note that we require that ReadFromMemory does not make an internal copy of the elements.
491 // This also relies on visit roots not doing any verification which could fail after we update
492 // the roots to be the image addresses.
493 WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_);
494 ClassTable temp_table;
495 temp_table.ReadFromMemory(image_->Begin() + section.Offset());
496 FixupRootVisitor visitor(this);
Mathieu Chartier58c3f6a2016-12-01 14:21:11 -0800497 temp_table.VisitRoots(UnbufferedRootVisitor(&visitor, RootInfo(kRootUnknown)));
Mathieu Chartier208a5cb2015-12-02 15:44:07 -0800498}
499
500
Vladimir Markoad06b982016-11-17 16:38:59 +0000501class PatchOat::RelocatedPointerVisitor {
Mathieu Chartier4b00d342015-11-13 10:42:08 -0800502 public:
503 explicit RelocatedPointerVisitor(PatchOat* patch_oat) : patch_oat_(patch_oat) {}
504
505 template <typename T>
Mathieu Chartier8c19d242017-03-06 12:35:10 -0800506 T* operator()(T* ptr, void** dest_addr ATTRIBUTE_UNUSED = 0) const {
Mathieu Chartier4b00d342015-11-13 10:42:08 -0800507 return patch_oat_->RelocatedAddressOfPointer(ptr);
508 }
509
510 private:
511 PatchOat* const patch_oat_;
512};
513
Mathieu Chartierc7853442015-03-27 14:35:38 -0700514void PatchOat::PatchDexFileArrays(mirror::ObjectArray<mirror::Object>* img_roots) {
515 auto* dex_caches = down_cast<mirror::ObjectArray<mirror::DexCache>*>(
516 img_roots->Get(ImageHeader::kDexCaches));
Andreas Gampe542451c2016-07-26 09:02:02 -0700517 const PointerSize pointer_size = InstructionSetPointerSize(isa_);
Mathieu Chartierc7853442015-03-27 14:35:38 -0700518 for (size_t i = 0, count = dex_caches->GetLength(); i < count; ++i) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100519 auto* orig_dex_cache = dex_caches->GetWithoutChecks(i);
520 auto* copy_dex_cache = RelocatedCopyOf(orig_dex_cache);
Vladimir Marko05792b92015-08-03 11:56:49 +0100521 // Though the DexCache array fields are usually treated as native pointers, we set the full
522 // 64-bit values here, clearing the top 32 bits for 32-bit targets. The zero-extension is
523 // done by casting to the unsigned type uintptr_t before casting to int64_t, i.e.
524 // static_cast<int64_t>(reinterpret_cast<uintptr_t>(image_begin_ + offset))).
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -0700525 mirror::StringDexCacheType* orig_strings = orig_dex_cache->GetStrings();
526 mirror::StringDexCacheType* relocated_strings = RelocatedAddressOfPointer(orig_strings);
Vladimir Marko05792b92015-08-03 11:56:49 +0100527 copy_dex_cache->SetField64<false>(
528 mirror::DexCache::StringsOffset(),
529 static_cast<int64_t>(reinterpret_cast<uintptr_t>(relocated_strings)));
530 if (orig_strings != nullptr) {
Mathieu Chartier4b00d342015-11-13 10:42:08 -0800531 orig_dex_cache->FixupStrings(RelocatedCopyOf(orig_strings), RelocatedPointerVisitor(this));
Mathieu Chartierc7853442015-03-27 14:35:38 -0700532 }
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000533 mirror::TypeDexCacheType* orig_types = orig_dex_cache->GetResolvedTypes();
534 mirror::TypeDexCacheType* relocated_types = RelocatedAddressOfPointer(orig_types);
Vladimir Marko05792b92015-08-03 11:56:49 +0100535 copy_dex_cache->SetField64<false>(
536 mirror::DexCache::ResolvedTypesOffset(),
537 static_cast<int64_t>(reinterpret_cast<uintptr_t>(relocated_types)));
538 if (orig_types != nullptr) {
Mathieu Chartier4b00d342015-11-13 10:42:08 -0800539 orig_dex_cache->FixupResolvedTypes(RelocatedCopyOf(orig_types),
540 RelocatedPointerVisitor(this));
Vladimir Marko05792b92015-08-03 11:56:49 +0100541 }
Vladimir Marko07bfbac2017-07-06 14:55:02 +0100542 mirror::MethodDexCacheType* orig_methods = orig_dex_cache->GetResolvedMethods();
543 mirror::MethodDexCacheType* relocated_methods = RelocatedAddressOfPointer(orig_methods);
Vladimir Marko05792b92015-08-03 11:56:49 +0100544 copy_dex_cache->SetField64<false>(
545 mirror::DexCache::ResolvedMethodsOffset(),
546 static_cast<int64_t>(reinterpret_cast<uintptr_t>(relocated_methods)));
547 if (orig_methods != nullptr) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +0100548 mirror::MethodDexCacheType* copy_methods = RelocatedCopyOf(orig_methods);
Vladimir Marko05792b92015-08-03 11:56:49 +0100549 for (size_t j = 0, num = orig_dex_cache->NumResolvedMethods(); j != num; ++j) {
Vladimir Marko07bfbac2017-07-06 14:55:02 +0100550 mirror::MethodDexCachePair orig =
551 mirror::DexCache::GetNativePairPtrSize(orig_methods, j, pointer_size);
552 mirror::MethodDexCachePair copy(RelocatedAddressOfPointer(orig.object), orig.index);
553 mirror::DexCache::SetNativePairPtrSize(copy_methods, j, copy, pointer_size);
Vladimir Marko05792b92015-08-03 11:56:49 +0100554 }
555 }
Vladimir Markof44d36c2017-03-14 14:18:46 +0000556 mirror::FieldDexCacheType* orig_fields = orig_dex_cache->GetResolvedFields();
557 mirror::FieldDexCacheType* relocated_fields = RelocatedAddressOfPointer(orig_fields);
Vladimir Marko05792b92015-08-03 11:56:49 +0100558 copy_dex_cache->SetField64<false>(
559 mirror::DexCache::ResolvedFieldsOffset(),
560 static_cast<int64_t>(reinterpret_cast<uintptr_t>(relocated_fields)));
561 if (orig_fields != nullptr) {
Vladimir Markof44d36c2017-03-14 14:18:46 +0000562 mirror::FieldDexCacheType* copy_fields = RelocatedCopyOf(orig_fields);
Vladimir Marko05792b92015-08-03 11:56:49 +0100563 for (size_t j = 0, num = orig_dex_cache->NumResolvedFields(); j != num; ++j) {
Vladimir Markof44d36c2017-03-14 14:18:46 +0000564 mirror::FieldDexCachePair orig =
565 mirror::DexCache::GetNativePairPtrSize(orig_fields, j, pointer_size);
566 mirror::FieldDexCachePair copy(RelocatedAddressOfPointer(orig.object), orig.index);
567 mirror::DexCache::SetNativePairPtrSize(copy_fields, j, copy, pointer_size);
Vladimir Marko05792b92015-08-03 11:56:49 +0100568 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700569 }
Narayan Kamath7fe56582016-10-14 18:49:12 +0100570 mirror::MethodTypeDexCacheType* orig_method_types = orig_dex_cache->GetResolvedMethodTypes();
571 mirror::MethodTypeDexCacheType* relocated_method_types =
572 RelocatedAddressOfPointer(orig_method_types);
573 copy_dex_cache->SetField64<false>(
574 mirror::DexCache::ResolvedMethodTypesOffset(),
575 static_cast<int64_t>(reinterpret_cast<uintptr_t>(relocated_method_types)));
576 if (orig_method_types != nullptr) {
577 orig_dex_cache->FixupResolvedMethodTypes(RelocatedCopyOf(orig_method_types),
578 RelocatedPointerVisitor(this));
579 }
Orion Hodsonc069a302017-01-18 09:23:12 +0000580
581 GcRoot<mirror::CallSite>* orig_call_sites = orig_dex_cache->GetResolvedCallSites();
582 GcRoot<mirror::CallSite>* relocated_call_sites = RelocatedAddressOfPointer(orig_call_sites);
583 copy_dex_cache->SetField64<false>(
584 mirror::DexCache::ResolvedCallSitesOffset(),
585 static_cast<int64_t>(reinterpret_cast<uintptr_t>(relocated_call_sites)));
586 if (orig_call_sites != nullptr) {
587 orig_dex_cache->FixupResolvedCallSites(RelocatedCopyOf(orig_call_sites),
588 RelocatedPointerVisitor(this));
589 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700590 }
591}
592
Jeff Haodcdc85b2015-12-04 14:06:18 -0800593bool PatchOat::PatchImage(bool primary_image) {
Alex Light53cb16b2014-06-12 11:26:29 -0700594 ImageHeader* image_header = reinterpret_cast<ImageHeader*>(image_->Begin());
595 CHECK_GT(image_->Size(), sizeof(ImageHeader));
596 // These are the roots from the original file.
Mathieu Chartierc7853442015-03-27 14:35:38 -0700597 auto* img_roots = image_header->GetImageRoots();
Alex Light53cb16b2014-06-12 11:26:29 -0700598 image_header->RelocateImage(delta_);
599
Mathieu Chartierc7853442015-03-27 14:35:38 -0700600 PatchArtFields(image_header);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700601 PatchArtMethods(image_header);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000602 PatchImTables(image_header);
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700603 PatchImtConflictTables(image_header);
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700604 PatchInternedStrings(image_header);
Mathieu Chartier208a5cb2015-12-02 15:44:07 -0800605 PatchClassTable(image_header);
Mathieu Chartierc7853442015-03-27 14:35:38 -0700606 // Patch dex file int/long arrays which point to ArtFields.
607 PatchDexFileArrays(img_roots);
608
Jeff Haodcdc85b2015-12-04 14:06:18 -0800609 if (primary_image) {
610 VisitObject(img_roots);
611 }
612
Alex Light53cb16b2014-06-12 11:26:29 -0700613 if (!image_header->IsValid()) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800614 LOG(ERROR) << "relocation renders image header invalid";
Alex Light53cb16b2014-06-12 11:26:29 -0700615 return false;
616 }
617
618 {
Alex Lighteefbe392014-07-08 09:53:18 -0700619 TimingLogger::ScopedTiming t("Walk Bitmap", timings_);
Alex Light53cb16b2014-06-12 11:26:29 -0700620 // Walk the bitmap.
621 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
Andreas Gampe0c183382017-07-13 22:26:24 -0700622 auto visitor = [&](mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_) {
623 VisitObject(obj);
624 };
625 bitmap_->Walk(visitor);
Alex Light53cb16b2014-06-12 11:26:29 -0700626 }
627 return true;
628}
629
Alex Light53cb16b2014-06-12 11:26:29 -0700630
Mathieu Chartier31e88222016-10-14 18:43:19 -0700631void PatchOat::PatchVisitor::operator() (ObjPtr<mirror::Object> obj,
632 MemberOffset off,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700633 bool is_static_unused ATTRIBUTE_UNUSED) const {
Alex Light53cb16b2014-06-12 11:26:29 -0700634 mirror::Object* referent = obj->GetFieldObject<mirror::Object, kVerifyNone>(off);
Mathieu Chartierc7853442015-03-27 14:35:38 -0700635 mirror::Object* moved_object = patcher_->RelocatedAddressOfPointer(referent);
Alex Light53cb16b2014-06-12 11:26:29 -0700636 copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>(off, moved_object);
637}
638
Mathieu Chartier31e88222016-10-14 18:43:19 -0700639void PatchOat::PatchVisitor::operator() (ObjPtr<mirror::Class> cls ATTRIBUTE_UNUSED,
640 ObjPtr<mirror::Reference> ref) const {
Alex Light53cb16b2014-06-12 11:26:29 -0700641 MemberOffset off = mirror::Reference::ReferentOffset();
642 mirror::Object* referent = ref->GetReferent();
Mathieu Chartiera13abba2016-04-21 10:23:16 -0700643 DCHECK(referent == nullptr ||
644 Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(referent)) << referent;
Mathieu Chartierc7853442015-03-27 14:35:38 -0700645 mirror::Object* moved_object = patcher_->RelocatedAddressOfPointer(referent);
Alex Light53cb16b2014-06-12 11:26:29 -0700646 copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>(off, moved_object);
647}
648
Andreas Gampe0c183382017-07-13 22:26:24 -0700649// Called by PatchImage.
Alex Light53cb16b2014-06-12 11:26:29 -0700650void PatchOat::VisitObject(mirror::Object* object) {
651 mirror::Object* copy = RelocatedCopyOf(object);
652 CHECK(copy != nullptr);
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -0700653 if (kUseBakerReadBarrier) {
654 object->AssertReadBarrierState();
Alex Light53cb16b2014-06-12 11:26:29 -0700655 }
656 PatchOat::PatchVisitor visitor(this, copy);
Mathieu Chartier059ef3d2015-08-18 13:54:21 -0700657 object->VisitReferences<kVerifyNone>(visitor, visitor);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700658 if (object->IsClass<kVerifyNone>()) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700659 const PointerSize pointer_size = InstructionSetPointerSize(isa_);
Mathieu Chartier4b00d342015-11-13 10:42:08 -0800660 mirror::Class* klass = object->AsClass();
661 mirror::Class* copy_klass = down_cast<mirror::Class*>(copy);
662 RelocatedPointerVisitor native_visitor(this);
663 klass->FixupNativePointers(copy_klass, pointer_size, native_visitor);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700664 auto* vtable = klass->GetVTable();
665 if (vtable != nullptr) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800666 vtable->Fixup(RelocatedCopyOfFollowImages(vtable), pointer_size, native_visitor);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700667 }
Mathieu Chartier6beced42016-11-15 15:51:31 -0800668 mirror::IfTable* iftable = klass->GetIfTable();
669 for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) {
670 if (iftable->GetMethodArrayCount(i) > 0) {
671 auto* method_array = iftable->GetMethodArray(i);
672 CHECK(method_array != nullptr);
673 method_array->Fixup(RelocatedCopyOfFollowImages(method_array),
674 pointer_size,
675 native_visitor);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700676 }
677 }
Mathieu Chartier4b00d342015-11-13 10:42:08 -0800678 } else if (object->GetClass() == mirror::Method::StaticClass() ||
679 object->GetClass() == mirror::Constructor::StaticClass()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700680 // Need to go update the ArtMethod.
Neil Fuller0e844392016-09-08 13:43:31 +0100681 auto* dest = down_cast<mirror::Executable*>(copy);
682 auto* src = down_cast<mirror::Executable*>(object);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700683 dest->SetArtMethod(RelocatedAddressOfPointer(src->GetArtMethod()));
Alex Light53cb16b2014-06-12 11:26:29 -0700684 }
685}
686
Mathieu Chartiere401d142015-04-22 13:56:20 -0700687void PatchOat::FixupMethod(ArtMethod* object, ArtMethod* copy) {
Andreas Gampe542451c2016-07-26 09:02:02 -0700688 const PointerSize pointer_size = InstructionSetPointerSize(isa_);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700689 copy->CopyFrom(object, pointer_size);
Alex Light53cb16b2014-06-12 11:26:29 -0700690 // Just update the entry points if it looks like we should.
Alex Lighteefbe392014-07-08 09:53:18 -0700691 // TODO: sanity check all the pointers' values
Mathieu Chartiere401d142015-04-22 13:56:20 -0700692 copy->SetDeclaringClass(RelocatedAddressOfPointer(object->GetDeclaringClass()));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700693 copy->SetEntryPointFromQuickCompiledCodePtrSize(RelocatedAddressOfPointer(
694 object->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size)), pointer_size);
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700695 // No special handling for IMT conflict table since all pointers are moved by the same offset.
Andreas Gampe75f08852016-07-19 08:06:07 -0700696 copy->SetDataPtrSize(RelocatedAddressOfPointer(
697 object->GetDataPtrSize(pointer_size)), pointer_size);
Alex Light53cb16b2014-06-12 11:26:29 -0700698}
699
Alex Light53cb16b2014-06-12 11:26:29 -0700700static int orig_argc;
701static char** orig_argv;
702
703static std::string CommandLine() {
704 std::vector<std::string> command;
705 for (int i = 0; i < orig_argc; ++i) {
706 command.push_back(orig_argv[i]);
707 }
Andreas Gampe9186ced2016-12-12 14:28:21 -0800708 return android::base::Join(command, ' ');
Alex Light53cb16b2014-06-12 11:26:29 -0700709}
710
711static void UsageErrorV(const char* fmt, va_list ap) {
712 std::string error;
Andreas Gampe46ee31b2016-12-14 10:11:49 -0800713 android::base::StringAppendV(&error, fmt, ap);
Alex Light53cb16b2014-06-12 11:26:29 -0700714 LOG(ERROR) << error;
715}
716
717static void UsageError(const char* fmt, ...) {
718 va_list ap;
719 va_start(ap, fmt);
720 UsageErrorV(fmt, ap);
721 va_end(ap);
722}
723
Andreas Gampe794ad762015-02-23 08:12:24 -0800724NO_RETURN static void Usage(const char *fmt, ...) {
Alex Light53cb16b2014-06-12 11:26:29 -0700725 va_list ap;
726 va_start(ap, fmt);
727 UsageErrorV(fmt, ap);
728 va_end(ap);
729
730 UsageError("Command: %s", CommandLine().c_str());
731 UsageError("Usage: patchoat [options]...");
732 UsageError("");
733 UsageError(" --instruction-set=<isa>: Specifies the instruction set the patched code is");
Richard Uhler4bc11d02017-02-01 09:53:54 +0000734 UsageError(" compiled for (required).");
Alex Light53cb16b2014-06-12 11:26:29 -0700735 UsageError("");
736 UsageError(" --input-image-location=<file.art>: Specifies the 'location' of the image file to");
Richard Uhler4bc11d02017-02-01 09:53:54 +0000737 UsageError(" be patched.");
Alex Light53cb16b2014-06-12 11:26:29 -0700738 UsageError("");
739 UsageError(" --output-image-file=<file.art>: Specifies the exact file to write the patched");
740 UsageError(" image file to.");
741 UsageError("");
Alex Light53cb16b2014-06-12 11:26:29 -0700742 UsageError(" --base-offset-delta=<delta>: Specify the amount to change the old base-offset by.");
743 UsageError(" This value may be negative.");
744 UsageError("");
Alex Light53cb16b2014-06-12 11:26:29 -0700745 UsageError(" --dump-timings: dump out patch timing information");
746 UsageError("");
747 UsageError(" --no-dump-timings: do not dump out patch timing information");
748 UsageError("");
749
750 exit(EXIT_FAILURE);
751}
752
Andreas Gampe6eb6a392016-02-10 20:18:37 -0800753static int patchoat_image(TimingLogger& timings,
754 InstructionSet isa,
755 const std::string& input_image_location,
756 const std::string& output_image_filename,
757 off_t base_delta,
758 bool base_delta_set,
759 bool debug) {
760 CHECK(!input_image_location.empty());
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000761 if (output_image_filename.empty()) {
762 Usage("Image patching requires --output-image-file");
Andreas Gampe6eb6a392016-02-10 20:18:37 -0800763 }
764
765 if (!base_delta_set) {
766 Usage("Must supply a desired new offset or delta.");
767 }
768
769 if (!IsAligned<kPageSize>(base_delta)) {
770 Usage("Base offset/delta must be aligned to a pagesize (0x%08x) boundary.", kPageSize);
771 }
772
773 if (debug) {
774 LOG(INFO) << "moving offset by " << base_delta
775 << " (0x" << std::hex << base_delta << ") bytes or "
776 << std::dec << (base_delta/kPageSize) << " pages.";
777 }
778
779 TimingLogger::ScopedTiming pt("patch image and oat", &timings);
780
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000781 std::string output_directory =
Andreas Gampeca620d72016-11-08 08:09:33 -0800782 output_image_filename.substr(0, output_image_filename.find_last_of('/'));
Mathieu Chartier24e4f732018-01-11 22:21:24 +0000783 bool ret = PatchOat::Patch(input_image_location, base_delta, output_directory, isa, &timings);
Andreas Gampe6eb6a392016-02-10 20:18:37 -0800784
785 if (kIsDebugBuild) {
786 LOG(INFO) << "Exiting with return ... " << ret;
787 }
788 return ret ? EXIT_SUCCESS : EXIT_FAILURE;
789}
790
Alex Lighteefbe392014-07-08 09:53:18 -0700791static int patchoat(int argc, char **argv) {
Andreas Gampe51d80cc2017-06-21 21:05:13 -0700792 InitLogging(argv, Runtime::Abort);
Mathieu Chartier6e88ef62014-10-14 15:01:24 -0700793 MemMap::Init();
Alex Light53cb16b2014-06-12 11:26:29 -0700794 const bool debug = kIsDebugBuild;
795 orig_argc = argc;
796 orig_argv = argv;
797 TimingLogger timings("patcher", false, false);
798
Alex Light53cb16b2014-06-12 11:26:29 -0700799 // Skip over the command name.
800 argv++;
801 argc--;
802
803 if (argc == 0) {
804 Usage("No arguments specified");
805 }
806
807 timings.StartTiming("Patchoat");
808
809 // cmd line args
810 bool isa_set = false;
Vladimir Marko33bff252017-11-01 14:35:42 +0000811 InstructionSet isa = InstructionSet::kNone;
Alex Light53cb16b2014-06-12 11:26:29 -0700812 std::string input_image_location;
Alex Light53cb16b2014-06-12 11:26:29 -0700813 std::string output_image_filename;
Alex Light53cb16b2014-06-12 11:26:29 -0700814 off_t base_delta = 0;
815 bool base_delta_set = false;
Alex Light53cb16b2014-06-12 11:26:29 -0700816 bool dump_timings = kIsDebugBuild;
817
Ian Rogersd4c4d952014-10-16 20:31:53 -0700818 for (int i = 0; i < argc; ++i) {
Alex Light53cb16b2014-06-12 11:26:29 -0700819 const StringPiece option(argv[i]);
820 const bool log_options = false;
821 if (log_options) {
822 LOG(INFO) << "patchoat: option[" << i << "]=" << argv[i];
823 }
Alex Light53cb16b2014-06-12 11:26:29 -0700824 if (option.starts_with("--instruction-set=")) {
825 isa_set = true;
826 const char* isa_str = option.substr(strlen("--instruction-set=")).data();
Andreas Gampe20c89302014-08-19 17:28:06 -0700827 isa = GetInstructionSetFromString(isa_str);
Vladimir Marko33bff252017-11-01 14:35:42 +0000828 if (isa == InstructionSet::kNone) {
Andreas Gampe20c89302014-08-19 17:28:06 -0700829 Usage("Unknown or invalid instruction set %s", isa_str);
Alex Light53cb16b2014-06-12 11:26:29 -0700830 }
Alex Light53cb16b2014-06-12 11:26:29 -0700831 } else if (option.starts_with("--input-image-location=")) {
832 input_image_location = option.substr(strlen("--input-image-location=")).data();
Alex Light53cb16b2014-06-12 11:26:29 -0700833 } else if (option.starts_with("--output-image-file=")) {
Alex Light53cb16b2014-06-12 11:26:29 -0700834 output_image_filename = option.substr(strlen("--output-image-file=")).data();
Alex Light53cb16b2014-06-12 11:26:29 -0700835 } else if (option.starts_with("--base-offset-delta=")) {
836 const char* base_delta_str = option.substr(strlen("--base-offset-delta=")).data();
837 base_delta_set = true;
838 if (!ParseInt(base_delta_str, &base_delta)) {
839 Usage("Failed to parse --base-offset-delta argument '%s' as an off_t", base_delta_str);
840 }
Alex Light53cb16b2014-06-12 11:26:29 -0700841 } else if (option == "--dump-timings") {
842 dump_timings = true;
843 } else if (option == "--no-dump-timings") {
844 dump_timings = false;
845 } else {
846 Usage("Unknown argument %s", option.data());
847 }
848 }
849
Andreas Gampe6eb6a392016-02-10 20:18:37 -0800850 // The instruction set is mandatory. This simplifies things...
851 if (!isa_set) {
852 Usage("Instruction set must be set.");
Alex Light53cb16b2014-06-12 11:26:29 -0700853 }
854
Richard Uhler4bc11d02017-02-01 09:53:54 +0000855 int ret = patchoat_image(timings,
856 isa,
857 input_image_location,
858 output_image_filename,
859 base_delta,
860 base_delta_set,
861 debug);
Alex Light53cb16b2014-06-12 11:26:29 -0700862
Andreas Gampe6eb6a392016-02-10 20:18:37 -0800863 timings.EndTiming();
864 if (dump_timings) {
865 LOG(INFO) << Dumpable<TimingLogger>(timings);
Alex Light53cb16b2014-06-12 11:26:29 -0700866 }
867
Andreas Gampe6eb6a392016-02-10 20:18:37 -0800868 return ret;
Alex Light53cb16b2014-06-12 11:26:29 -0700869}
870
871} // namespace art
872
873int main(int argc, char **argv) {
874 return art::patchoat(argc, argv);
875}