blob: 07fcc8b9b600467aac72370c026a0983a8df38d1 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070016
17#include "image.h"
18
Mathieu Chartier1a842962018-11-13 15:09:51 -080019#include <lz4.h>
20#include <sstream>
21
Vladimir Marko80afd022015-05-19 18:08:00 +010022#include "base/bit_utils.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080023#include "base/length_prefixed_array.h"
David Sehrc431b9d2018-03-02 12:01:51 -080024#include "base/utils.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070025#include "mirror/object-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070026#include "mirror/object_array-inl.h"
27#include "mirror/object_array.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070029namespace art {
30
Ian Rogers13735952014-10-08 12:43:28 -070031const uint8_t ImageHeader::kImageMagic[] = { 'a', 'r', 't', '\n' };
Usama Arif457e9fa2019-11-11 15:29:59 +000032const uint8_t ImageHeader::kImageVersion[] = { '0', '8', '4', '\0' }; // FP16 gt/ge/lt/le intrinsic
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070033
Vladimir Marko7391c8c2018-11-21 17:58:44 +000034ImageHeader::ImageHeader(uint32_t image_reservation_size,
35 uint32_t component_count,
36 uint32_t image_begin,
Mathieu Chartier31e89252013-08-28 11:29:12 -070037 uint32_t image_size,
Mathieu Chartiere401d142015-04-22 13:56:20 -070038 ImageSection* sections,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039 uint32_t image_roots,
40 uint32_t oat_checksum,
41 uint32_t oat_file_begin,
42 uint32_t oat_data_begin,
43 uint32_t oat_data_end,
Igor Murashkin46774762014-10-22 11:37:02 -070044 uint32_t oat_file_end,
Mathieu Chartierfbc31082016-01-24 11:59:56 -080045 uint32_t boot_image_begin,
46 uint32_t boot_image_size,
Vladimir Marko92eec3a2019-11-05 10:59:36 +000047 uint32_t boot_image_component_count,
48 uint32_t boot_image_checksum,
Mathieu Chartier1a842962018-11-13 15:09:51 -080049 uint32_t pointer_size)
Vladimir Marko7391c8c2018-11-21 17:58:44 +000050 : image_reservation_size_(image_reservation_size),
51 component_count_(component_count),
52 image_begin_(image_begin),
Mathieu Chartier31e89252013-08-28 11:29:12 -070053 image_size_(image_size),
Vladimir Markoc10a0c62018-11-16 11:39:22 +000054 image_checksum_(0u),
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080055 oat_checksum_(oat_checksum),
56 oat_file_begin_(oat_file_begin),
57 oat_data_begin_(oat_data_begin),
58 oat_data_end_(oat_data_end),
59 oat_file_end_(oat_file_end),
Mathieu Chartierfbc31082016-01-24 11:59:56 -080060 boot_image_begin_(boot_image_begin),
61 boot_image_size_(boot_image_size),
Vladimir Marko92eec3a2019-11-05 10:59:36 +000062 boot_image_component_count_(boot_image_component_count),
63 boot_image_checksum_(boot_image_checksum),
Igor Murashkin46774762014-10-22 11:37:02 -070064 image_roots_(image_roots),
Mathieu Chartier1a842962018-11-13 15:09:51 -080065 pointer_size_(pointer_size) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080066 CHECK_EQ(image_begin, RoundUp(image_begin, kPageSize));
67 CHECK_EQ(oat_file_begin, RoundUp(oat_file_begin, kPageSize));
68 CHECK_EQ(oat_data_begin, RoundUp(oat_data_begin, kPageSize));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080069 CHECK_LT(image_roots, oat_file_begin);
70 CHECK_LE(oat_file_begin, oat_data_begin);
71 CHECK_LT(oat_data_begin, oat_data_end);
72 CHECK_LE(oat_data_end, oat_file_end);
Mathieu Chartiere401d142015-04-22 13:56:20 -070073 CHECK(ValidPointerSize(pointer_size_)) << pointer_size_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080074 memcpy(magic_, kImageMagic, sizeof(kImageMagic));
75 memcpy(version_, kImageVersion, sizeof(kImageVersion));
Mathieu Chartiere401d142015-04-22 13:56:20 -070076 std::copy_n(sections, kSectionCount, sections_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080077}
78
Vladimir Markoc0b30c92019-07-23 14:58:25 +010079void ImageHeader::RelocateImageReferences(int64_t delta) {
80 CHECK_ALIGNED(delta, kPageSize) << "relocation delta must be page aligned";
Alex Light53cb16b2014-06-12 11:26:29 -070081 oat_file_begin_ += delta;
82 oat_data_begin_ += delta;
83 oat_data_end_ += delta;
84 oat_file_end_ += delta;
Mathieu Chartierfbc31082016-01-24 11:59:56 -080085 image_begin_ += delta;
86 image_roots_ += delta;
87}
88
Vladimir Markoc0b30c92019-07-23 14:58:25 +010089void ImageHeader::RelocateBootImageReferences(int64_t delta) {
90 CHECK_ALIGNED(delta, kPageSize) << "relocation delta must be page aligned";
91 DCHECK_EQ(boot_image_begin_ != 0u, boot_image_size_ != 0u);
92 if (boot_image_begin_ != 0u) {
93 boot_image_begin_ += delta;
94 }
Mathieu Chartiere401d142015-04-22 13:56:20 -070095 for (size_t i = 0; i < kImageMethodsCount; ++i) {
96 image_methods_[i] += delta;
97 }
Alex Light53cb16b2014-06-12 11:26:29 -070098}
99
Vladimir Marko21910692019-11-06 13:27:03 +0000100bool ImageHeader::IsAppImage() const {
101 // Unlike boot image and boot image extensions which include address space for
102 // oat files in their reservation size, app images are loaded separately from oat
103 // files and their reservation size is the image size rounded up to full page.
104 return image_reservation_size_ == RoundUp(image_size_, kPageSize);
105}
106
Brian Carlstrom68708f52013-09-03 14:15:31 -0700107bool ImageHeader::IsValid() const {
108 if (memcmp(magic_, kImageMagic, sizeof(kImageMagic)) != 0) {
109 return false;
110 }
111 if (memcmp(version_, kImageVersion, sizeof(kImageVersion)) != 0) {
112 return false;
113 }
Vladimir Marko7391c8c2018-11-21 17:58:44 +0000114 if (!IsAligned<kPageSize>(image_reservation_size_)) {
115 return false;
116 }
Alex Light53cb16b2014-06-12 11:26:29 -0700117 // Unsigned so wraparound is well defined.
118 if (image_begin_ >= image_begin_ + image_size_) {
119 return false;
120 }
121 if (oat_file_begin_ > oat_file_end_) {
122 return false;
123 }
124 if (oat_data_begin_ > oat_data_end_) {
125 return false;
126 }
127 if (oat_file_begin_ >= oat_data_begin_) {
128 return false;
129 }
Brian Carlstrom68708f52013-09-03 14:15:31 -0700130 return true;
131}
132
133const char* ImageHeader::GetMagic() const {
134 CHECK(IsValid());
135 return reinterpret_cast<const char*>(magic_);
136}
137
Mathieu Chartiere401d142015-04-22 13:56:20 -0700138ArtMethod* ImageHeader::GetImageMethod(ImageMethod index) const {
139 CHECK_LT(static_cast<size_t>(index), kImageMethodsCount);
140 return reinterpret_cast<ArtMethod*>(image_methods_[index]);
141}
142
Mathieu Chartiere401d142015-04-22 13:56:20 -0700143std::ostream& operator<<(std::ostream& os, const ImageSection& section) {
144 return os << "size=" << section.Size() << " range=" << section.Offset() << "-" << section.End();
145}
146
David Sehra49e0532017-08-25 08:05:29 -0700147void ImageHeader::VisitObjects(ObjectVisitor* visitor,
148 uint8_t* base,
149 PointerSize pointer_size) const {
150 DCHECK_EQ(pointer_size, GetPointerSize());
151 const ImageSection& objects = GetObjectsSection();
152 static const size_t kStartPos = RoundUp(sizeof(ImageHeader), kObjectAlignment);
153 for (size_t pos = kStartPos; pos < objects.Size(); ) {
154 mirror::Object* object = reinterpret_cast<mirror::Object*>(base + objects.Offset() + pos);
155 visitor->Visit(object);
156 pos += RoundUp(object->SizeOf(), kObjectAlignment);
157 }
158}
159
Andreas Gampebda1d602016-08-29 17:43:45 -0700160PointerSize ImageHeader::GetPointerSize() const {
161 return ConvertToPointerSize(pointer_size_);
162}
163
Mathieu Chartier1a842962018-11-13 15:09:51 -0800164bool ImageHeader::Block::Decompress(uint8_t* out_ptr,
165 const uint8_t* in_ptr,
166 std::string* error_msg) const {
167 switch (storage_mode_) {
168 case kStorageModeUncompressed: {
169 CHECK_EQ(image_size_, data_size_);
170 memcpy(out_ptr + image_offset_, in_ptr + data_offset_, data_size_);
171 break;
172 }
173 case kStorageModeLZ4:
174 case kStorageModeLZ4HC: {
175 // LZ4HC and LZ4 have same internal format, both use LZ4_decompress.
176 const size_t decompressed_size = LZ4_decompress_safe(
177 reinterpret_cast<const char*>(in_ptr) + data_offset_,
178 reinterpret_cast<char*>(out_ptr) + image_offset_,
179 data_size_,
180 image_size_);
181 CHECK_EQ(decompressed_size, image_size_);
182 break;
183 }
184 default: {
185 if (error_msg != nullptr) {
186 *error_msg = (std::ostringstream() << "Invalid image format " << storage_mode_).str();
187 }
188 return false;
189 }
190 }
191 return true;
192}
193
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700194} // namespace art