patchoat.cc revision 63bc11efaac0c041e849ab401f9fc368631a00f5
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#include "patchoat.h"
17
18#include <stdio.h>
19#include <stdlib.h>
20#include <sys/file.h>
21#include <sys/stat.h>
22#include <unistd.h>
23
24#include <string>
25#include <vector>
26
27#include "base/scoped_flock.h"
28#include "base/stringpiece.h"
29#include "base/stringprintf.h"
30#include "elf_utils.h"
31#include "elf_file.h"
32#include "gc/space/image_space.h"
33#include "image.h"
34#include "instruction_set.h"
35#include "mirror/art_field.h"
36#include "mirror/art_field-inl.h"
37#include "mirror/art_method.h"
38#include "mirror/art_method-inl.h"
39#include "mirror/object.h"
40#include "mirror/object-inl.h"
41#include "mirror/reference.h"
42#include "noop_compiler_callbacks.h"
43#include "offsets.h"
44#include "os.h"
45#include "runtime.h"
46#include "scoped_thread_state_change.h"
47#include "thread.h"
48#include "utils.h"
49
50namespace art {
51
52static InstructionSet ElfISAToInstructionSet(Elf32_Word isa) {
53  switch (isa) {
54    case EM_ARM:
55      return kArm;
56    case EM_AARCH64:
57      return kArm64;
58    case EM_386:
59      return kX86;
60    case EM_X86_64:
61      return kX86_64;
62    case EM_MIPS:
63      return kMips;
64    default:
65      return kNone;
66  }
67}
68
69static bool LocationToFilename(const std::string& location, InstructionSet isa,
70                               std::string* filename) {
71  bool has_system = false;
72  bool has_cache = false;
73  // image_location = /system/framework/boot.art
74  // system_image_location = /system/framework/<image_isa>/boot.art
75  std::string system_filename(GetSystemImageFilename(location.c_str(), isa));
76  if (OS::FileExists(system_filename.c_str())) {
77    has_system = true;
78  }
79
80  bool have_android_data = false;
81  bool dalvik_cache_exists = false;
82  std::string dalvik_cache;
83  GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache,
84                 &have_android_data, &dalvik_cache_exists);
85
86  std::string cache_filename;
87  if (have_android_data && dalvik_cache_exists) {
88    // Always set output location even if it does not exist,
89    // so that the caller knows where to create the image.
90    //
91    // image_location = /system/framework/boot.art
92    // *image_filename = /data/dalvik-cache/<image_isa>/boot.art
93    std::string error_msg;
94    if (GetDalvikCacheFilename(location.c_str(), dalvik_cache.c_str(),
95                               &cache_filename, &error_msg)) {
96      has_cache = true;
97    }
98  }
99  if (has_system) {
100    *filename = system_filename;
101    return true;
102  } else if (has_cache) {
103    *filename = cache_filename;
104    return true;
105  } else {
106    return false;
107  }
108}
109
110bool PatchOat::Patch(const std::string& image_location, off_t delta,
111                     File* output_image, InstructionSet isa,
112                     TimingLogger* timings) {
113  CHECK(Runtime::Current() == nullptr);
114  CHECK(output_image != nullptr);
115  CHECK_GE(output_image->Fd(), 0);
116  CHECK(!image_location.empty()) << "image file must have a filename.";
117  CHECK_NE(isa, kNone);
118
119  TimingLogger::ScopedTiming t("Runtime Setup", timings);
120  const char *isa_name = GetInstructionSetString(isa);
121  std::string image_filename;
122  if (!LocationToFilename(image_location, isa, &image_filename)) {
123    LOG(ERROR) << "Unable to find image at location " << image_location;
124    return false;
125  }
126  std::unique_ptr<File> input_image(OS::OpenFileForReading(image_filename.c_str()));
127  if (input_image.get() == nullptr) {
128    LOG(ERROR) << "unable to open input image file at " << image_filename
129               << " for location " << image_location;
130    return false;
131  }
132  int64_t image_len = input_image->GetLength();
133  if (image_len < 0) {
134    LOG(ERROR) << "Error while getting image length";
135    return false;
136  }
137  ImageHeader image_header;
138  if (sizeof(image_header) != input_image->Read(reinterpret_cast<char*>(&image_header),
139                                              sizeof(image_header), 0)) {
140    LOG(ERROR) << "Unable to read image header from image file " << input_image->GetPath();
141    return false;
142  }
143
144  // Set up the runtime
145  RuntimeOptions options;
146  NoopCompilerCallbacks callbacks;
147  options.push_back(std::make_pair("compilercallbacks", &callbacks));
148  std::string img = "-Ximage:" + image_location;
149  options.push_back(std::make_pair(img.c_str(), nullptr));
150  options.push_back(std::make_pair("imageinstructionset", reinterpret_cast<const void*>(isa_name)));
151  if (!Runtime::Create(options, false)) {
152    LOG(ERROR) << "Unable to initialize runtime";
153    return false;
154  }
155  // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
156  // give it away now and then switch to a more manageable ScopedObjectAccess.
157  Thread::Current()->TransitionFromRunnableToSuspended(kNative);
158  ScopedObjectAccess soa(Thread::Current());
159
160  t.NewTiming("Image and oat Patching setup");
161  // Create the map where we will write the image patches to.
162  std::string error_msg;
163  std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE,
164                                                input_image->Fd(), 0,
165                                                input_image->GetPath().c_str(),
166                                                &error_msg));
167  if (image.get() == nullptr) {
168    LOG(ERROR) << "unable to map image file " << input_image->GetPath() << " : " << error_msg;
169    return false;
170  }
171  gc::space::ImageSpace* ispc = Runtime::Current()->GetHeap()->GetImageSpace();
172
173  PatchOat p(image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(),
174             delta, timings);
175  t.NewTiming("Patching files");
176  if (!p.PatchImage()) {
177    LOG(ERROR) << "Failed to patch image file " << input_image->GetPath();
178    return false;
179  }
180
181  t.NewTiming("Writing files");
182  if (!p.WriteImage(output_image)) {
183    return false;
184  }
185  return true;
186}
187
188bool PatchOat::Patch(const File* input_oat, const std::string& image_location, off_t delta,
189                     File* output_oat, File* output_image, InstructionSet isa,
190                     TimingLogger* timings) {
191  CHECK(Runtime::Current() == nullptr);
192  CHECK(output_image != nullptr);
193  CHECK_GE(output_image->Fd(), 0);
194  CHECK(input_oat != nullptr);
195  CHECK(output_oat != nullptr);
196  CHECK_GE(input_oat->Fd(), 0);
197  CHECK_GE(output_oat->Fd(), 0);
198  CHECK(!image_location.empty()) << "image file must have a filename.";
199
200  TimingLogger::ScopedTiming t("Runtime Setup", timings);
201
202  if (isa == kNone) {
203    Elf32_Ehdr elf_hdr;
204    if (sizeof(elf_hdr) != input_oat->Read(reinterpret_cast<char*>(&elf_hdr), sizeof(elf_hdr), 0)) {
205      LOG(ERROR) << "unable to read elf header";
206      return false;
207    }
208    isa = ElfISAToInstructionSet(elf_hdr.e_machine);
209  }
210  const char* isa_name = GetInstructionSetString(isa);
211  std::string image_filename;
212  if (!LocationToFilename(image_location, isa, &image_filename)) {
213    LOG(ERROR) << "Unable to find image at location " << image_location;
214    return false;
215  }
216  std::unique_ptr<File> input_image(OS::OpenFileForReading(image_filename.c_str()));
217  if (input_image.get() == nullptr) {
218    LOG(ERROR) << "unable to open input image file at " << image_filename
219               << " for location " << image_location;
220    return false;
221  }
222  int64_t image_len = input_image->GetLength();
223  if (image_len < 0) {
224    LOG(ERROR) << "Error while getting image length";
225    return false;
226  }
227  ImageHeader image_header;
228  if (sizeof(image_header) != input_image->Read(reinterpret_cast<char*>(&image_header),
229                                              sizeof(image_header), 0)) {
230    LOG(ERROR) << "Unable to read image header from image file " << input_image->GetPath();
231  }
232
233  // Set up the runtime
234  RuntimeOptions options;
235  NoopCompilerCallbacks callbacks;
236  options.push_back(std::make_pair("compilercallbacks", &callbacks));
237  std::string img = "-Ximage:" + image_location;
238  options.push_back(std::make_pair(img.c_str(), nullptr));
239  options.push_back(std::make_pair("imageinstructionset", reinterpret_cast<const void*>(isa_name)));
240  if (!Runtime::Create(options, false)) {
241    LOG(ERROR) << "Unable to initialize runtime";
242    return false;
243  }
244  // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
245  // give it away now and then switch to a more manageable ScopedObjectAccess.
246  Thread::Current()->TransitionFromRunnableToSuspended(kNative);
247  ScopedObjectAccess soa(Thread::Current());
248
249  t.NewTiming("Image and oat Patching setup");
250  // Create the map where we will write the image patches to.
251  std::string error_msg;
252  std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE,
253                                                input_image->Fd(), 0,
254                                                input_image->GetPath().c_str(),
255                                                &error_msg));
256  if (image.get() == nullptr) {
257    LOG(ERROR) << "unable to map image file " << input_image->GetPath() << " : " << error_msg;
258    return false;
259  }
260  gc::space::ImageSpace* ispc = Runtime::Current()->GetHeap()->GetImageSpace();
261
262  std::unique_ptr<ElfFile> elf(ElfFile::Open(const_cast<File*>(input_oat),
263                                             PROT_READ | PROT_WRITE, MAP_PRIVATE, &error_msg));
264  if (elf.get() == nullptr) {
265    LOG(ERROR) << "unable to open oat file " << input_oat->GetPath() << " : " << error_msg;
266    return false;
267  }
268
269  PatchOat p(elf.release(), image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(),
270             delta, timings);
271  t.NewTiming("Patching files");
272  if (!p.PatchElf()) {
273    LOG(ERROR) << "Failed to patch oat file " << input_oat->GetPath();
274    return false;
275  }
276  if (!p.PatchImage()) {
277    LOG(ERROR) << "Failed to patch image file " << input_image->GetPath();
278    return false;
279  }
280
281  t.NewTiming("Writing files");
282  if (!p.WriteElf(output_oat)) {
283    return false;
284  }
285  if (!p.WriteImage(output_image)) {
286    return false;
287  }
288  return true;
289}
290
291bool PatchOat::WriteElf(File* out) {
292  TimingLogger::ScopedTiming t("Writing Elf File", timings_);
293
294  CHECK(oat_file_.get() != nullptr);
295  CHECK(out != nullptr);
296  size_t expect = oat_file_->Size();
297  if (out->WriteFully(reinterpret_cast<char*>(oat_file_->Begin()), expect) &&
298      out->SetLength(expect) == 0) {
299    return true;
300  } else {
301    LOG(ERROR) << "Writing to oat file " << out->GetPath() << " failed.";
302    return false;
303  }
304}
305
306bool PatchOat::WriteImage(File* out) {
307  TimingLogger::ScopedTiming t("Writing image File", timings_);
308  std::string error_msg;
309
310  ScopedFlock img_flock;
311  img_flock.Init(out, &error_msg);
312
313  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
325bool PatchOat::PatchImage() {
326  ImageHeader* image_header = reinterpret_cast<ImageHeader*>(image_->Begin());
327  CHECK_GT(image_->Size(), sizeof(ImageHeader));
328  // These are the roots from the original file.
329  mirror::Object* img_roots = image_header->GetImageRoots();
330  image_header->RelocateImage(delta_);
331
332  VisitObject(img_roots);
333  if (!image_header->IsValid()) {
334    LOG(ERROR) << "reloction renders image header invalid";
335    return false;
336  }
337
338  {
339    TimingLogger::ScopedTiming t("Walk Bitmap", timings_);
340    // Walk the bitmap.
341    WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
342    bitmap_->Walk(PatchOat::BitmapCallback, this);
343  }
344  return true;
345}
346
347bool PatchOat::InHeap(mirror::Object* o) {
348  uintptr_t begin = reinterpret_cast<uintptr_t>(heap_->Begin());
349  uintptr_t end = reinterpret_cast<uintptr_t>(heap_->End());
350  uintptr_t obj = reinterpret_cast<uintptr_t>(o);
351  return o == nullptr || (begin <= obj && obj < end);
352}
353
354void PatchOat::PatchVisitor::operator() (mirror::Object* obj, MemberOffset off,
355                                         bool is_static_unused) const {
356  mirror::Object* referent = obj->GetFieldObject<mirror::Object, kVerifyNone>(off);
357  DCHECK(patcher_->InHeap(referent)) << "Referent is not in the heap.";
358  mirror::Object* moved_object = patcher_->RelocatedAddressOf(referent);
359  copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>(off, moved_object);
360}
361
362void PatchOat::PatchVisitor::operator() (mirror::Class* cls, mirror::Reference* ref) const {
363  MemberOffset off = mirror::Reference::ReferentOffset();
364  mirror::Object* referent = ref->GetReferent();
365  DCHECK(patcher_->InHeap(referent)) << "Referent is not in the heap.";
366  mirror::Object* moved_object = patcher_->RelocatedAddressOf(referent);
367  copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>(off, moved_object);
368}
369
370mirror::Object* PatchOat::RelocatedCopyOf(mirror::Object* obj) {
371  if (obj == nullptr) {
372    return nullptr;
373  }
374  DCHECK_GT(reinterpret_cast<uintptr_t>(obj), reinterpret_cast<uintptr_t>(heap_->Begin()));
375  DCHECK_LT(reinterpret_cast<uintptr_t>(obj), reinterpret_cast<uintptr_t>(heap_->End()));
376  uintptr_t heap_off =
377      reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(heap_->Begin());
378  DCHECK_LT(heap_off, image_->Size());
379  return reinterpret_cast<mirror::Object*>(image_->Begin() + heap_off);
380}
381
382mirror::Object* PatchOat::RelocatedAddressOf(mirror::Object* obj) {
383  if (obj == nullptr) {
384    return nullptr;
385  } else {
386    return reinterpret_cast<mirror::Object*>(reinterpret_cast<byte*>(obj) + delta_);
387  }
388}
389
390// Called by BitmapCallback
391void PatchOat::VisitObject(mirror::Object* object) {
392  mirror::Object* copy = RelocatedCopyOf(object);
393  CHECK(copy != nullptr);
394  if (kUseBakerOrBrooksReadBarrier) {
395    object->AssertReadBarrierPointer();
396    if (kUseBrooksReadBarrier) {
397      mirror::Object* moved_to = RelocatedAddressOf(object);
398      copy->SetReadBarrierPointer(moved_to);
399      DCHECK_EQ(copy->GetReadBarrierPointer(), moved_to);
400    }
401  }
402  PatchOat::PatchVisitor visitor(this, copy);
403  object->VisitReferences<true, kVerifyNone>(visitor, visitor);
404  if (object->IsArtMethod<kVerifyNone>()) {
405    FixupMethod(static_cast<mirror::ArtMethod*>(object),
406                static_cast<mirror::ArtMethod*>(copy));
407  }
408}
409
410void PatchOat::FixupMethod(mirror::ArtMethod* object, mirror::ArtMethod* copy) {
411  // Just update the entry points if it looks like we should.
412  // TODO: sanity check all the pointers' values
413#if defined(ART_USE_PORTABLE_COMPILER)
414  uintptr_t portable = reinterpret_cast<uintptr_t>(
415      object->GetEntryPointFromPortableCompiledCode<kVerifyNone>());
416  if (portable != 0) {
417    copy->SetEntryPointFromPortableCompiledCode(reinterpret_cast<void*>(portable + delta_));
418  }
419#endif
420  uintptr_t quick= reinterpret_cast<uintptr_t>(
421      object->GetEntryPointFromQuickCompiledCode<kVerifyNone>());
422  if (quick != 0) {
423    copy->SetEntryPointFromQuickCompiledCode(reinterpret_cast<void*>(quick + delta_));
424  }
425  uintptr_t interpreter = reinterpret_cast<uintptr_t>(
426      object->GetEntryPointFromInterpreter<kVerifyNone>());
427  if (interpreter != 0) {
428    copy->SetEntryPointFromInterpreter(
429        reinterpret_cast<mirror::EntryPointFromInterpreter*>(interpreter + delta_));
430  }
431
432  uintptr_t native_method = reinterpret_cast<uintptr_t>(object->GetNativeMethod());
433  if (native_method != 0) {
434    copy->SetNativeMethod(reinterpret_cast<void*>(native_method + delta_));
435  }
436
437  uintptr_t native_gc_map = reinterpret_cast<uintptr_t>(object->GetNativeGcMap());
438  if (native_gc_map != 0) {
439    copy->SetNativeGcMap(reinterpret_cast<uint8_t*>(native_gc_map + delta_));
440  }
441}
442
443bool PatchOat::Patch(File* input_oat, off_t delta, File* output_oat, TimingLogger* timings) {
444  CHECK(input_oat != nullptr);
445  CHECK(output_oat != nullptr);
446  CHECK_GE(input_oat->Fd(), 0);
447  CHECK_GE(output_oat->Fd(), 0);
448  TimingLogger::ScopedTiming t("Setup Oat File Patching", timings);
449
450  std::string error_msg;
451  std::unique_ptr<ElfFile> elf(ElfFile::Open(const_cast<File*>(input_oat),
452                                             PROT_READ | PROT_WRITE, MAP_PRIVATE, &error_msg));
453  if (elf.get() == nullptr) {
454    LOG(ERROR) << "unable to open oat file " << input_oat->GetPath() << " : " << error_msg;
455    return false;
456  }
457
458  PatchOat p(elf.release(), delta, timings);
459  t.NewTiming("Patch Oat file");
460  if (!p.PatchElf()) {
461    return false;
462  }
463
464  t.NewTiming("Writing oat file");
465  if (!p.WriteElf(output_oat)) {
466    return false;
467  }
468  return true;
469}
470
471bool PatchOat::CheckOatFile() {
472  Elf32_Shdr* patches_sec = oat_file_->FindSectionByName(".oat_patches");
473  if (patches_sec == nullptr) {
474    return false;
475  }
476  if (patches_sec->sh_type != SHT_OAT_PATCH) {
477    return false;
478  }
479  uintptr_t* patches = reinterpret_cast<uintptr_t*>(oat_file_->Begin() + patches_sec->sh_offset);
480  uintptr_t* patches_end = patches + (patches_sec->sh_size/sizeof(uintptr_t));
481  Elf32_Shdr* oat_data_sec = oat_file_->FindSectionByName(".rodata");
482  Elf32_Shdr* oat_text_sec = oat_file_->FindSectionByName(".text");
483  if (oat_data_sec == nullptr) {
484    return false;
485  }
486  if (oat_text_sec == nullptr) {
487    return false;
488  }
489  if (oat_text_sec->sh_offset <= oat_data_sec->sh_offset) {
490    return false;
491  }
492
493  for (; patches < patches_end; patches++) {
494    if (oat_text_sec->sh_size <= *patches) {
495      return false;
496    }
497  }
498
499  return true;
500}
501
502bool PatchOat::PatchOatHeader() {
503  Elf32_Shdr *rodata_sec = oat_file_->FindSectionByName(".rodata");
504  if (rodata_sec == nullptr) {
505    return false;
506  }
507  OatHeader* oat_header = reinterpret_cast<OatHeader*>(oat_file_->Begin() + rodata_sec->sh_offset);
508  if (!oat_header->IsValid()) {
509    LOG(ERROR) << "Elf file " << oat_file_->GetFile().GetPath() << " has an invalid oat header";
510    return false;
511  }
512  oat_header->RelocateOat(delta_);
513  return true;
514}
515
516bool PatchOat::PatchElf() {
517  TimingLogger::ScopedTiming t("Fixup Elf Text Section", timings_);
518  if (!PatchTextSection()) {
519    return false;
520  }
521
522  if (!PatchOatHeader()) {
523    return false;
524  }
525
526  bool need_fixup = false;
527  t.NewTiming("Fixup Elf Headers");
528  // Fixup Phdr's
529  for (unsigned int i = 0; i < oat_file_->GetProgramHeaderNum(); i++) {
530    Elf32_Phdr* hdr = oat_file_->GetProgramHeader(i);
531    CHECK(hdr != nullptr);
532    if (hdr->p_vaddr != 0 && hdr->p_vaddr != hdr->p_offset) {
533      need_fixup = true;
534      hdr->p_vaddr += delta_;
535    }
536    if (hdr->p_paddr != 0 && hdr->p_paddr != hdr->p_offset) {
537      need_fixup = true;
538      hdr->p_paddr += delta_;
539    }
540  }
541  if (!need_fixup) {
542    // This was never passed through ElfFixup so all headers/symbols just have their offset as
543    // their addr. Therefore we do not need to update these parts.
544    return true;
545  }
546  t.NewTiming("Fixup Section Headers");
547  for (unsigned int i = 0; i < oat_file_->GetSectionHeaderNum(); i++) {
548    Elf32_Shdr* hdr = oat_file_->GetSectionHeader(i);
549    CHECK(hdr != nullptr);
550    if (hdr->sh_addr != 0) {
551      hdr->sh_addr += delta_;
552    }
553  }
554
555  t.NewTiming("Fixup Dynamics");
556  for (Elf32_Word i = 0; i < oat_file_->GetDynamicNum(); i++) {
557    Elf32_Dyn& dyn = oat_file_->GetDynamic(i);
558    if (IsDynamicSectionPointer(dyn.d_tag, oat_file_->GetHeader().e_machine)) {
559      dyn.d_un.d_ptr += delta_;
560    }
561  }
562
563  t.NewTiming("Fixup Elf Symbols");
564  // Fixup dynsym
565  Elf32_Shdr* dynsym_sec = oat_file_->FindSectionByName(".dynsym");
566  CHECK(dynsym_sec != nullptr);
567  if (!PatchSymbols(dynsym_sec)) {
568    return false;
569  }
570
571  // Fixup symtab
572  Elf32_Shdr* symtab_sec = oat_file_->FindSectionByName(".symtab");
573  if (symtab_sec != nullptr) {
574    if (!PatchSymbols(symtab_sec)) {
575      return false;
576    }
577  }
578
579  return true;
580}
581
582bool PatchOat::PatchSymbols(Elf32_Shdr* section) {
583  Elf32_Sym* syms = reinterpret_cast<Elf32_Sym*>(oat_file_->Begin() + section->sh_offset);
584  const Elf32_Sym* last_sym =
585      reinterpret_cast<Elf32_Sym*>(oat_file_->Begin() + section->sh_offset + section->sh_size);
586  CHECK_EQ(section->sh_size % sizeof(Elf32_Sym), 0u)
587      << "Symtab section size is not multiple of symbol size";
588  for (; syms < last_sym; syms++) {
589    uint8_t sttype = ELF32_ST_TYPE(syms->st_info);
590    Elf32_Word shndx = syms->st_shndx;
591    if (shndx != SHN_ABS && shndx != SHN_COMMON && shndx != SHN_UNDEF &&
592        (sttype == STT_FUNC || sttype == STT_OBJECT)) {
593      CHECK_NE(syms->st_value, 0u);
594      syms->st_value += delta_;
595    }
596  }
597  return true;
598}
599
600bool PatchOat::PatchTextSection() {
601  Elf32_Shdr* patches_sec = oat_file_->FindSectionByName(".oat_patches");
602  if (patches_sec == nullptr) {
603    LOG(ERROR) << ".oat_patches section not found. Aborting patch";
604    return false;
605  }
606  DCHECK(CheckOatFile()) << "Oat file invalid";
607  CHECK_EQ(patches_sec->sh_type, SHT_OAT_PATCH) << "Unexpected type of .oat_patches";
608  uintptr_t* patches = reinterpret_cast<uintptr_t*>(oat_file_->Begin() + patches_sec->sh_offset);
609  uintptr_t* patches_end = patches + (patches_sec->sh_size/sizeof(uintptr_t));
610  Elf32_Shdr* oat_text_sec = oat_file_->FindSectionByName(".text");
611  CHECK(oat_text_sec != nullptr);
612  byte* to_patch = oat_file_->Begin() + oat_text_sec->sh_offset;
613  uintptr_t to_patch_end = reinterpret_cast<uintptr_t>(to_patch) + oat_text_sec->sh_size;
614
615  for (; patches < patches_end; patches++) {
616    CHECK_LT(*patches, oat_text_sec->sh_size) << "Bad Patch";
617    uint32_t* patch_loc = reinterpret_cast<uint32_t*>(to_patch + *patches);
618    CHECK_LT(reinterpret_cast<uintptr_t>(patch_loc), to_patch_end);
619    *patch_loc += delta_;
620  }
621
622  return true;
623}
624
625static int orig_argc;
626static char** orig_argv;
627
628static std::string CommandLine() {
629  std::vector<std::string> command;
630  for (int i = 0; i < orig_argc; ++i) {
631    command.push_back(orig_argv[i]);
632  }
633  return Join(command, ' ');
634}
635
636static void UsageErrorV(const char* fmt, va_list ap) {
637  std::string error;
638  StringAppendV(&error, fmt, ap);
639  LOG(ERROR) << error;
640}
641
642static void UsageError(const char* fmt, ...) {
643  va_list ap;
644  va_start(ap, fmt);
645  UsageErrorV(fmt, ap);
646  va_end(ap);
647}
648
649static void Usage(const char *fmt, ...) {
650  va_list ap;
651  va_start(ap, fmt);
652  UsageErrorV(fmt, ap);
653  va_end(ap);
654
655  UsageError("Command: %s", CommandLine().c_str());
656  UsageError("Usage: patchoat [options]...");
657  UsageError("");
658  UsageError("  --instruction-set=<isa>: Specifies the instruction set the patched code is");
659  UsageError("      compiled for. Required if you use --input-oat-location");
660  UsageError("");
661  UsageError("  --input-oat-file=<file.oat>: Specifies the exact filename of the oat file to be");
662  UsageError("      patched.");
663  UsageError("");
664  UsageError("  --input-oat-fd=<file-descriptor>: Specifies the file-descriptor of the oat file");
665  UsageError("      to be patched.");
666  UsageError("");
667  UsageError("  --input-oat-location=<file.oat>: Specifies the 'location' to read the patched");
668  UsageError("      oat file from. If used one must also supply the --instruction-set");
669  UsageError("");
670  UsageError("  --input-image-location=<file.art>: Specifies the 'location' of the image file to");
671  UsageError("      be patched. If --instruction-set is not given it will use the instruction set");
672  UsageError("      extracted from the --input-oat-file.");
673  UsageError("");
674  UsageError("  --output-oat-file=<file.oat>: Specifies the exact file to write the patched oat");
675  UsageError("      file to.");
676  UsageError("");
677  UsageError("  --output-oat-fd=<file-descriptor>: Specifies the file-descriptor to write the");
678  UsageError("      the patched oat file to.");
679  UsageError("");
680  UsageError("  --output-image-file=<file.art>: Specifies the exact file to write the patched");
681  UsageError("      image file to.");
682  UsageError("");
683  UsageError("  --output-image-fd=<file-descriptor>: Specifies the file-descriptor to write the");
684  UsageError("      the patched image file to.");
685  UsageError("");
686  UsageError("  --orig-base-offset=<original-base-offset>: Specify the base offset the input file");
687  UsageError("      was compiled with. This is needed if one is specifying a --base-offset");
688  UsageError("");
689  UsageError("  --base-offset=<new-base-offset>: Specify the base offset we will repatch the");
690  UsageError("      given files to use. This requires that --orig-base-offset is also given.");
691  UsageError("");
692  UsageError("  --base-offset-delta=<delta>: Specify the amount to change the old base-offset by.");
693  UsageError("      This value may be negative.");
694  UsageError("");
695  UsageError("  --patched-image-file=<file.art>: Use the same patch delta as was used to patch");
696  UsageError("      the given image file.");
697  UsageError("");
698  UsageError("  --patched-image-location=<file.art>: Use the same patch delta as was used to");
699  UsageError("      patch the given image location. If used one must also specify the");
700  UsageError("      --instruction-set flag. It will search for this image in the same way that");
701  UsageError("      is done when loading one.");
702  UsageError("");
703  UsageError("  --lock-output: Obtain a flock on output oat file before starting.");
704  UsageError("");
705  UsageError("  --no-lock-output: Do not attempt to obtain a flock on output oat file.");
706  UsageError("");
707  UsageError("  --dump-timings: dump out patch timing information");
708  UsageError("");
709  UsageError("  --no-dump-timings: do not dump out patch timing information");
710  UsageError("");
711
712  exit(EXIT_FAILURE);
713}
714
715static bool ReadBaseDelta(const char* name, off_t* delta, std::string* error_msg) {
716  CHECK(name != nullptr);
717  CHECK(delta != nullptr);
718  std::unique_ptr<File> file;
719  if (OS::FileExists(name)) {
720    file.reset(OS::OpenFileForReading(name));
721    if (file.get() == nullptr) {
722      *error_msg = "Failed to open file %s for reading";
723      return false;
724    }
725  } else {
726    *error_msg = "File %s does not exist";
727    return false;
728  }
729  CHECK(file.get() != nullptr);
730  ImageHeader hdr;
731  if (sizeof(hdr) != file->Read(reinterpret_cast<char*>(&hdr), sizeof(hdr), 0)) {
732    *error_msg = "Failed to read file %s";
733    return false;
734  }
735  if (!hdr.IsValid()) {
736    *error_msg = "%s does not contain a valid image header.";
737    return false;
738  }
739  *delta = hdr.GetPatchDelta();
740  return true;
741}
742
743static File* CreateOrOpen(const char* name, bool* created) {
744  if (OS::FileExists(name)) {
745    *created = false;
746    return OS::OpenFileReadWrite(name);
747  } else {
748    *created = true;
749    std::unique_ptr<File> f(OS::CreateEmptyFile(name));
750    if (f.get() != nullptr) {
751      if (fchmod(f->Fd(), 0644) != 0) {
752        PLOG(ERROR) << "Unable to make " << name << " world readable";
753        unlink(name);
754        return nullptr;
755      }
756    }
757    return f.release();
758  }
759}
760
761static int patchoat(int argc, char **argv) {
762  InitLogging(argv);
763  const bool debug = kIsDebugBuild;
764  orig_argc = argc;
765  orig_argv = argv;
766  TimingLogger timings("patcher", false, false);
767
768  InitLogging(argv);
769
770  // Skip over the command name.
771  argv++;
772  argc--;
773
774  if (argc == 0) {
775    Usage("No arguments specified");
776  }
777
778  timings.StartTiming("Patchoat");
779
780  // cmd line args
781  bool isa_set = false;
782  InstructionSet isa = kNone;
783  std::string input_oat_filename;
784  std::string input_oat_location;
785  int input_oat_fd = -1;
786  bool have_input_oat = false;
787  std::string input_image_location;
788  std::string output_oat_filename;
789  int output_oat_fd = -1;
790  bool have_output_oat = false;
791  std::string output_image_filename;
792  int output_image_fd = -1;
793  bool have_output_image = false;
794  uintptr_t base_offset = 0;
795  bool base_offset_set = false;
796  uintptr_t orig_base_offset = 0;
797  bool orig_base_offset_set = false;
798  off_t base_delta = 0;
799  bool base_delta_set = false;
800  std::string patched_image_filename;
801  std::string patched_image_location;
802  bool dump_timings = kIsDebugBuild;
803  bool lock_output = true;
804
805  for (int i = 0; i < argc; i++) {
806    const StringPiece option(argv[i]);
807    const bool log_options = false;
808    if (log_options) {
809      LOG(INFO) << "patchoat: option[" << i << "]=" << argv[i];
810    }
811    if (option.starts_with("--instruction-set=")) {
812      isa_set = true;
813      const char* isa_str = option.substr(strlen("--instruction-set=")).data();
814      isa = GetInstructionSetFromString(isa_str);
815      if (isa == kNone) {
816        Usage("Unknown or invalid instruction set %s", isa_str);
817      }
818    } else if (option.starts_with("--input-oat-location=")) {
819      if (have_input_oat) {
820        Usage("Only one of --input-oat-file, --input-oat-location and --input-oat-fd may be used.");
821      }
822      have_input_oat = true;
823      input_oat_location = option.substr(strlen("--input-oat-location=")).data();
824    } else if (option.starts_with("--input-oat-file=")) {
825      if (have_input_oat) {
826        Usage("Only one of --input-oat-file, --input-oat-location and --input-oat-fd may be used.");
827      }
828      have_input_oat = true;
829      input_oat_filename = option.substr(strlen("--input-oat-file=")).data();
830    } else if (option.starts_with("--input-oat-fd=")) {
831      if (have_input_oat) {
832        Usage("Only one of --input-oat-file, --input-oat-location and --input-oat-fd may be used.");
833      }
834      have_input_oat = true;
835      const char* oat_fd_str = option.substr(strlen("--input-oat-fd=")).data();
836      if (!ParseInt(oat_fd_str, &input_oat_fd)) {
837        Usage("Failed to parse --input-oat-fd argument '%s' as an integer", oat_fd_str);
838      }
839      if (input_oat_fd < 0) {
840        Usage("--input-oat-fd pass a negative value %d", input_oat_fd);
841      }
842    } else if (option.starts_with("--input-image-location=")) {
843      input_image_location = option.substr(strlen("--input-image-location=")).data();
844    } else if (option.starts_with("--output-oat-file=")) {
845      if (have_output_oat) {
846        Usage("Only one of --output-oat-file, and --output-oat-fd may be used.");
847      }
848      have_output_oat = true;
849      output_oat_filename = option.substr(strlen("--output-oat-file=")).data();
850    } else if (option.starts_with("--output-oat-fd=")) {
851      if (have_output_oat) {
852        Usage("Only one of --output-oat-file, --output-oat-fd may be used.");
853      }
854      have_output_oat = true;
855      const char* oat_fd_str = option.substr(strlen("--output-oat-fd=")).data();
856      if (!ParseInt(oat_fd_str, &output_oat_fd)) {
857        Usage("Failed to parse --output-oat-fd argument '%s' as an integer", oat_fd_str);
858      }
859      if (output_oat_fd < 0) {
860        Usage("--output-oat-fd pass a negative value %d", output_oat_fd);
861      }
862    } else if (option.starts_with("--output-image-file=")) {
863      if (have_output_image) {
864        Usage("Only one of --output-image-file, and --output-image-fd may be used.");
865      }
866      have_output_image = true;
867      output_image_filename = option.substr(strlen("--output-image-file=")).data();
868    } else if (option.starts_with("--output-image-fd=")) {
869      if (have_output_image) {
870        Usage("Only one of --output-image-file, and --output-image-fd may be used.");
871      }
872      have_output_image = true;
873      const char* image_fd_str = option.substr(strlen("--output-image-fd=")).data();
874      if (!ParseInt(image_fd_str, &output_image_fd)) {
875        Usage("Failed to parse --output-image-fd argument '%s' as an integer", image_fd_str);
876      }
877      if (output_image_fd < 0) {
878        Usage("--output-image-fd pass a negative value %d", output_image_fd);
879      }
880    } else if (option.starts_with("--orig-base-offset=")) {
881      const char* orig_base_offset_str = option.substr(strlen("--orig-base-offset=")).data();
882      orig_base_offset_set = true;
883      if (!ParseUint(orig_base_offset_str, &orig_base_offset)) {
884        Usage("Failed to parse --orig-base-offset argument '%s' as an uintptr_t",
885              orig_base_offset_str);
886      }
887    } else if (option.starts_with("--base-offset=")) {
888      const char* base_offset_str = option.substr(strlen("--base-offset=")).data();
889      base_offset_set = true;
890      if (!ParseUint(base_offset_str, &base_offset)) {
891        Usage("Failed to parse --base-offset argument '%s' as an uintptr_t", base_offset_str);
892      }
893    } else if (option.starts_with("--base-offset-delta=")) {
894      const char* base_delta_str = option.substr(strlen("--base-offset-delta=")).data();
895      base_delta_set = true;
896      if (!ParseInt(base_delta_str, &base_delta)) {
897        Usage("Failed to parse --base-offset-delta argument '%s' as an off_t", base_delta_str);
898      }
899    } else if (option.starts_with("--patched-image-location=")) {
900      patched_image_location = option.substr(strlen("--patched-image-location=")).data();
901    } else if (option.starts_with("--patched-image-file=")) {
902      patched_image_filename = option.substr(strlen("--patched-image-file=")).data();
903    } else if (option == "--lock-output") {
904      lock_output = true;
905    } else if (option == "--no-lock-output") {
906      lock_output = false;
907    } else if (option == "--dump-timings") {
908      dump_timings = true;
909    } else if (option == "--no-dump-timings") {
910      dump_timings = false;
911    } else {
912      Usage("Unknown argument %s", option.data());
913    }
914  }
915
916  {
917    // Only 1 of these may be set.
918    uint32_t cnt = 0;
919    cnt += (base_delta_set) ? 1 : 0;
920    cnt += (base_offset_set && orig_base_offset_set) ? 1 : 0;
921    cnt += (!patched_image_filename.empty()) ? 1 : 0;
922    cnt += (!patched_image_location.empty()) ? 1 : 0;
923    if (cnt > 1) {
924      Usage("Only one of --base-offset/--orig-base-offset, --base-offset-delta, "
925            "--patched-image-filename or --patched-image-location may be used.");
926    } else if (cnt == 0) {
927      Usage("Must specify --base-offset-delta, --base-offset and --orig-base-offset, "
928            "--patched-image-location or --patched-image-file");
929    }
930  }
931
932  if (have_input_oat != have_output_oat) {
933    Usage("Either both input and output oat must be supplied or niether must be.");
934  }
935
936  if ((!input_image_location.empty()) != have_output_image) {
937    Usage("Either both input and output image must be supplied or niether must be.");
938  }
939
940  // We know we have both the input and output so rename for clarity.
941  bool have_image_files = have_output_image;
942  bool have_oat_files = have_output_oat;
943
944  if (!have_oat_files && !have_image_files) {
945    Usage("Must be patching either an oat or an image file or both.");
946  }
947
948  if (!have_oat_files && !isa_set) {
949    Usage("Must include ISA if patching an image file without an oat file.");
950  }
951
952  if (!input_oat_location.empty()) {
953    if (!isa_set) {
954      Usage("specifying a location requires specifying an instruction set");
955    }
956    if (!LocationToFilename(input_oat_location, isa, &input_oat_filename)) {
957      Usage("Unable to find filename for input oat location %s", input_oat_location.c_str());
958    }
959    if (debug) {
960      LOG(INFO) << "Using input-oat-file " << input_oat_filename;
961    }
962  }
963  if (!patched_image_location.empty()) {
964    if (!isa_set) {
965      Usage("specifying a location requires specifying an instruction set");
966    }
967    std::string system_filename;
968    bool has_system = false;
969    std::string cache_filename;
970    bool has_cache = false;
971    bool has_android_data_unused = false;
972    if (!gc::space::ImageSpace::FindImageFilename(patched_image_location.c_str(), isa,
973                                                  &system_filename, &has_system, &cache_filename,
974                                                  &has_android_data_unused, &has_cache)) {
975      Usage("Unable to determine image file for location %s", patched_image_location.c_str());
976    }
977    if (has_cache) {
978      patched_image_filename = cache_filename;
979    } else if (has_system) {
980      LOG(WARNING) << "Only image file found was in /system for image location "
981                   << patched_image_location;
982      patched_image_filename = system_filename;
983    } else {
984      Usage("Unable to determine image file for location %s", patched_image_location.c_str());
985    }
986    if (debug) {
987      LOG(INFO) << "Using patched-image-file " << patched_image_filename;
988    }
989  }
990
991  if (!base_delta_set) {
992    if (orig_base_offset_set && base_offset_set) {
993      base_delta_set = true;
994      base_delta = base_offset - orig_base_offset;
995    } else if (!patched_image_filename.empty()) {
996      base_delta_set = true;
997      std::string error_msg;
998      if (!ReadBaseDelta(patched_image_filename.c_str(), &base_delta, &error_msg)) {
999        Usage(error_msg.c_str(), patched_image_filename.c_str());
1000      }
1001    } else {
1002      if (base_offset_set) {
1003        Usage("Unable to determine original base offset.");
1004      } else {
1005        Usage("Must supply a desired new offset or delta.");
1006      }
1007    }
1008  }
1009
1010  if (!IsAligned<kPageSize>(base_delta)) {
1011    Usage("Base offset/delta must be alligned to a pagesize (0x%08x) boundary.", kPageSize);
1012  }
1013
1014  // Do we need to cleanup output files if we fail?
1015  bool new_image_out = false;
1016  bool new_oat_out = false;
1017
1018  std::unique_ptr<File> input_oat;
1019  std::unique_ptr<File> output_oat;
1020  std::unique_ptr<File> output_image;
1021
1022  if (have_image_files) {
1023    CHECK(!input_image_location.empty());
1024
1025    if (output_image_fd != -1) {
1026      if (output_image_filename.empty()) {
1027        output_image_filename = "output-image-file";
1028      }
1029      output_image.reset(new File(output_image_fd, output_image_filename));
1030    } else {
1031      CHECK(!output_image_filename.empty());
1032      output_image.reset(CreateOrOpen(output_image_filename.c_str(), &new_image_out));
1033    }
1034  } else {
1035    CHECK(output_image_filename.empty() && output_image_fd == -1 && input_image_location.empty());
1036  }
1037
1038  if (have_oat_files) {
1039    if (input_oat_fd != -1) {
1040      if (input_oat_filename.empty()) {
1041        input_oat_filename = "input-oat-file";
1042      }
1043      input_oat.reset(new File(input_oat_fd, input_oat_filename));
1044    } else {
1045      CHECK(!input_oat_filename.empty());
1046      input_oat.reset(OS::OpenFileForReading(input_oat_filename.c_str()));
1047      if (input_oat.get() == nullptr) {
1048        LOG(ERROR) << "Could not open input oat file: " << strerror(errno);
1049      }
1050    }
1051
1052    if (output_oat_fd != -1) {
1053      if (output_oat_filename.empty()) {
1054        output_oat_filename = "output-oat-file";
1055      }
1056      output_oat.reset(new File(output_oat_fd, output_oat_filename));
1057    } else {
1058      CHECK(!output_oat_filename.empty());
1059      output_oat.reset(CreateOrOpen(output_oat_filename.c_str(), &new_oat_out));
1060    }
1061  }
1062
1063  auto cleanup = [&output_image_filename, &output_oat_filename,
1064                  &new_oat_out, &new_image_out, &timings, &dump_timings](bool success) {
1065    timings.EndTiming();
1066    if (!success) {
1067      if (new_oat_out) {
1068        CHECK(!output_oat_filename.empty());
1069        unlink(output_oat_filename.c_str());
1070      }
1071      if (new_image_out) {
1072        CHECK(!output_image_filename.empty());
1073        unlink(output_image_filename.c_str());
1074      }
1075    }
1076    if (dump_timings) {
1077      LOG(INFO) << Dumpable<TimingLogger>(timings);
1078    }
1079  };
1080
1081  if ((have_oat_files && (input_oat.get() == nullptr || output_oat.get() == nullptr)) ||
1082      (have_image_files && output_image.get() == nullptr)) {
1083    cleanup(false);
1084    return EXIT_FAILURE;
1085  }
1086
1087  ScopedFlock output_oat_lock;
1088  if (lock_output) {
1089    std::string error_msg;
1090    if (have_oat_files && !output_oat_lock.Init(output_oat.get(), &error_msg)) {
1091      LOG(ERROR) << "Unable to lock output oat " << output_image->GetPath() << ": " << error_msg;
1092      cleanup(false);
1093      return EXIT_FAILURE;
1094    }
1095  }
1096
1097  if (debug) {
1098    LOG(INFO) << "moving offset by " << base_delta
1099              << " (0x" << std::hex << base_delta << ") bytes or "
1100              << std::dec << (base_delta/kPageSize) << " pages.";
1101  }
1102
1103  bool ret;
1104  if (have_image_files && have_oat_files) {
1105    TimingLogger::ScopedTiming pt("patch image and oat", &timings);
1106    ret = PatchOat::Patch(input_oat.get(), input_image_location, base_delta,
1107                          output_oat.get(), output_image.get(), isa, &timings);
1108  } else if (have_oat_files) {
1109    TimingLogger::ScopedTiming pt("patch oat", &timings);
1110    ret = PatchOat::Patch(input_oat.get(), base_delta, output_oat.get(), &timings);
1111  } else {
1112    TimingLogger::ScopedTiming pt("patch image", &timings);
1113    CHECK(have_image_files);
1114    ret = PatchOat::Patch(input_image_location, base_delta, output_image.get(), isa, &timings);
1115  }
1116  cleanup(ret);
1117  return (ret) ? EXIT_SUCCESS : EXIT_FAILURE;
1118}
1119
1120}  // namespace art
1121
1122int main(int argc, char **argv) {
1123  return art::patchoat(argc, argv);
1124}
1125