blob: 98d4eefe502c0902ceb1e6b832fbfeb8a2abad4a [file] [log] [blame]
Ian Rogers1d54e732013-05-02 21:10:01 -07001/*
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 */
16
17#include "image_space.h"
18
Brian Carlstrom56d947f2013-07-15 13:14:23 -070019#include "base/stl_util.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070020#include "base/unix_file/fd_file.h"
21#include "gc/accounting/space_bitmap-inl.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070022#include "mirror/art_method.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070023#include "mirror/class-inl.h"
24#include "mirror/object-inl.h"
Brian Carlstrom56d947f2013-07-15 13:14:23 -070025#include "oat_file.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070026#include "os.h"
27#include "runtime.h"
28#include "space-inl.h"
29#include "utils.h"
30
31namespace art {
32namespace gc {
33namespace space {
34
Ian Rogersef7d42f2014-01-06 12:55:46 -080035Atomic<uint32_t> ImageSpace::bitmap_index_(0);
Ian Rogers1d54e732013-05-02 21:10:01 -070036
Mathieu Chartier31e89252013-08-28 11:29:12 -070037ImageSpace::ImageSpace(const std::string& name, MemMap* mem_map,
38 accounting::SpaceBitmap* live_bitmap)
Mathieu Chartier590fee92013-09-13 13:46:47 -070039 : MemMapSpace(name, mem_map, mem_map->Begin(), mem_map->End(), mem_map->End(),
40 kGcRetentionPolicyNeverCollect) {
41 DCHECK(live_bitmap != nullptr);
Mathieu Chartier31e89252013-08-28 11:29:12 -070042 live_bitmap_.reset(live_bitmap);
Ian Rogers1d54e732013-05-02 21:10:01 -070043}
44
Ian Rogers8d31bbd2013-10-13 10:44:14 -070045static bool GenerateImage(const std::string& image_file_name, std::string* error_msg) {
Brian Carlstrom56d947f2013-07-15 13:14:23 -070046 const std::string boot_class_path_string(Runtime::Current()->GetBootClassPathString());
47 std::vector<std::string> boot_class_path;
48 Split(boot_class_path_string, ':', boot_class_path);
49 if (boot_class_path.empty()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -070050 *error_msg = "Failed to generate image because no boot class path specified";
51 return false;
Brian Carlstrom56d947f2013-07-15 13:14:23 -070052 }
53
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070054 std::vector<std::string> arg_vector;
Brian Carlstrom56d947f2013-07-15 13:14:23 -070055
Mathieu Chartiere5426c92013-08-01 13:55:42 -070056 std::string dex2oat(GetAndroidRoot());
Mathieu Chartier08d7d442013-07-31 18:08:51 -070057 dex2oat += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat");
58 arg_vector.push_back(dex2oat);
Brian Carlstrom56d947f2013-07-15 13:14:23 -070059
60 std::string image_option_string("--image=");
61 image_option_string += image_file_name;
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070062 arg_vector.push_back(image_option_string);
Brian Carlstrom56d947f2013-07-15 13:14:23 -070063
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070064 arg_vector.push_back("--runtime-arg");
65 arg_vector.push_back("-Xms64m");
Brian Carlstrom56d947f2013-07-15 13:14:23 -070066
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070067 arg_vector.push_back("--runtime-arg");
68 arg_vector.push_back("-Xmx64m");
Brian Carlstrom56d947f2013-07-15 13:14:23 -070069
70 for (size_t i = 0; i < boot_class_path.size(); i++) {
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070071 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
Brian Carlstrom56d947f2013-07-15 13:14:23 -070072 }
73
74 std::string oat_file_option_string("--oat-file=");
75 oat_file_option_string += image_file_name;
76 oat_file_option_string.erase(oat_file_option_string.size() - 3);
77 oat_file_option_string += "oat";
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070078 arg_vector.push_back(oat_file_option_string);
Brian Carlstrom56d947f2013-07-15 13:14:23 -070079
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070080 arg_vector.push_back(StringPrintf("--base=0x%x", ART_BASE_ADDRESS));
Brian Carlstrom56d947f2013-07-15 13:14:23 -070081
82 if (kIsTargetBuild) {
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070083 arg_vector.push_back("--image-classes-zip=/system/framework/framework.jar");
84 arg_vector.push_back("--image-classes=preloaded-classes");
Brian Carlstrom56d947f2013-07-15 13:14:23 -070085 } else {
Mathieu Chartier8bbc8c02013-07-31 16:27:01 -070086 arg_vector.push_back("--host");
Brian Carlstrom56d947f2013-07-15 13:14:23 -070087 }
88
Brian Carlstrom6449c622014-02-10 23:48:36 -080089 const std::vector<std::string>& compiler_options = Runtime::Current()->GetImageCompilerOptions();
90 for (size_t i = 0; compiler_options.size(); ++i) {
91 arg_vector.push_back(compiler_options[i].c_str());
92 }
93
Brian Carlstrom56d947f2013-07-15 13:14:23 -070094 std::string command_line(Join(arg_vector, ' '));
95 LOG(INFO) << "GenerateImage: " << command_line;
Brian Carlstrom6449c622014-02-10 23:48:36 -080096 return Exec(arg_vector, error_msg);
Brian Carlstrom56d947f2013-07-15 13:14:23 -070097}
98
Ian Rogers8d31bbd2013-10-13 10:44:14 -070099ImageSpace* ImageSpace::Create(const char* original_image_file_name) {
100 if (OS::FileExists(original_image_file_name)) {
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700101 // If the /system file exists, it should be up-to-date, don't try to generate
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700102 std::string error_msg;
103 ImageSpace* space = ImageSpace::Init(original_image_file_name, false, &error_msg);
104 if (space == nullptr) {
105 LOG(FATAL) << "Failed to load image '" << original_image_file_name << "': " << error_msg;
106 }
107 return space;
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700108 }
109 // If the /system file didn't exist, we need to use one from the dalvik-cache.
110 // If the cache file exists, try to open, but if it fails, regenerate.
111 // If it does not exist, generate.
112 std::string image_file_name(GetDalvikCacheFilenameOrDie(original_image_file_name));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700113 std::string error_msg;
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700114 if (OS::FileExists(image_file_name.c_str())) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700115 space::ImageSpace* image_space = ImageSpace::Init(image_file_name.c_str(), true, &error_msg);
116 if (image_space != nullptr) {
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700117 return image_space;
118 }
119 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700120 CHECK(GenerateImage(image_file_name, &error_msg))
121 << "Failed to generate image '" << image_file_name << "': " << error_msg;
122 ImageSpace* space = ImageSpace::Init(image_file_name.c_str(), true, &error_msg);
123 if (space == nullptr) {
124 LOG(FATAL) << "Failed to load image '" << original_image_file_name << "': " << error_msg;
125 }
126 return space;
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700127}
128
Mathieu Chartier31e89252013-08-28 11:29:12 -0700129void ImageSpace::VerifyImageAllocations() {
130 byte* current = Begin() + RoundUp(sizeof(ImageHeader), kObjectAlignment);
131 while (current < End()) {
132 DCHECK_ALIGNED(current, kObjectAlignment);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800133 mirror::Object* obj = reinterpret_cast<mirror::Object*>(current);
Mathieu Chartier31e89252013-08-28 11:29:12 -0700134 CHECK(live_bitmap_->Test(obj));
135 CHECK(obj->GetClass() != nullptr) << "Image object at address " << obj << " has null class";
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -0800136 if (kUseBrooksPointer) {
137 CHECK(obj->GetBrooksPointer() == obj)
138 << "Bad Brooks pointer: obj=" << reinterpret_cast<void*>(obj)
139 << " brooks_ptr=" << reinterpret_cast<void*>(obj->GetBrooksPointer());
140 }
Mathieu Chartier31e89252013-08-28 11:29:12 -0700141 current += RoundUp(obj->SizeOf(), kObjectAlignment);
142 }
143}
144
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700145ImageSpace* ImageSpace::Init(const char* image_file_name, bool validate_oat_file,
146 std::string* error_msg) {
147 CHECK(image_file_name != nullptr);
Ian Rogers1d54e732013-05-02 21:10:01 -0700148
149 uint64_t start_time = 0;
150 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
151 start_time = NanoTime();
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700152 LOG(INFO) << "ImageSpace::Init entering image_file_name=" << image_file_name;
Ian Rogers1d54e732013-05-02 21:10:01 -0700153 }
154
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700155 UniquePtr<File> file(OS::OpenFileForReading(image_file_name));
Ian Rogers1d54e732013-05-02 21:10:01 -0700156 if (file.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700157 *error_msg = StringPrintf("Failed to open '%s'", image_file_name);
158 return nullptr;
Ian Rogers1d54e732013-05-02 21:10:01 -0700159 }
160 ImageHeader image_header;
161 bool success = file->ReadFully(&image_header, sizeof(image_header));
162 if (!success || !image_header.IsValid()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700163 *error_msg = StringPrintf("Invalid image header in '%s'", image_file_name);
164 return nullptr;
Ian Rogers1d54e732013-05-02 21:10:01 -0700165 }
Mathieu Chartier31e89252013-08-28 11:29:12 -0700166
167 // Note: The image header is part of the image due to mmap page alignment required of offset.
Ian Rogers1d54e732013-05-02 21:10:01 -0700168 UniquePtr<MemMap> map(MemMap::MapFileAtAddress(image_header.GetImageBegin(),
Mathieu Chartier31e89252013-08-28 11:29:12 -0700169 image_header.GetImageSize(),
Ian Rogers1d54e732013-05-02 21:10:01 -0700170 PROT_READ | PROT_WRITE,
171 MAP_PRIVATE | MAP_FIXED,
172 file->Fd(),
173 0,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700174 false,
175 image_file_name,
176 error_msg));
Ian Rogers1d54e732013-05-02 21:10:01 -0700177 if (map.get() == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700178 DCHECK(!error_msg->empty());
179 return nullptr;
Ian Rogers1d54e732013-05-02 21:10:01 -0700180 }
181 CHECK_EQ(image_header.GetImageBegin(), map->Begin());
182 DCHECK_EQ(0, memcmp(&image_header, map->Begin(), sizeof(ImageHeader)));
183
Mathieu Chartier31e89252013-08-28 11:29:12 -0700184 UniquePtr<MemMap> image_map(MemMap::MapFileAtAddress(nullptr, image_header.GetImageBitmapSize(),
185 PROT_READ, MAP_PRIVATE,
186 file->Fd(), image_header.GetBitmapOffset(),
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700187 false,
188 image_file_name,
189 error_msg));
190 if (image_map.get() == nullptr) {
191 *error_msg = StringPrintf("Failed to map image bitmap: %s", error_msg->c_str());
192 return nullptr;
193 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800194 uint32_t bitmap_index = bitmap_index_.FetchAndAdd(1);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700195 std::string bitmap_name(StringPrintf("imagespace %s live-bitmap %u", image_file_name,
Mathieu Chartier31e89252013-08-28 11:29:12 -0700196 bitmap_index));
197 UniquePtr<accounting::SpaceBitmap> bitmap(
198 accounting::SpaceBitmap::CreateFromMemMap(bitmap_name, image_map.release(),
199 reinterpret_cast<byte*>(map->Begin()),
200 map->Size()));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700201 if (bitmap.get() == nullptr) {
202 *error_msg = StringPrintf("Could not create bitmap '%s'", bitmap_name.c_str());
203 return nullptr;
204 }
Mathieu Chartier31e89252013-08-28 11:29:12 -0700205
Ian Rogers1d54e732013-05-02 21:10:01 -0700206 Runtime* runtime = Runtime::Current();
207 mirror::Object* resolution_method = image_header.GetImageRoot(ImageHeader::kResolutionMethod);
Brian Carlstromea46f952013-07-30 01:26:50 -0700208 runtime->SetResolutionMethod(down_cast<mirror::ArtMethod*>(resolution_method));
Jeff Hao88474b42013-10-23 16:24:40 -0700209 mirror::Object* imt_conflict_method = image_header.GetImageRoot(ImageHeader::kImtConflictMethod);
210 runtime->SetImtConflictMethod(down_cast<mirror::ArtMethod*>(imt_conflict_method));
211 mirror::Object* default_imt = image_header.GetImageRoot(ImageHeader::kDefaultImt);
212 runtime->SetDefaultImt(down_cast<mirror::ObjectArray<mirror::ArtMethod>*>(default_imt));
Ian Rogers1d54e732013-05-02 21:10:01 -0700213
214 mirror::Object* callee_save_method = image_header.GetImageRoot(ImageHeader::kCalleeSaveMethod);
Brian Carlstromea46f952013-07-30 01:26:50 -0700215 runtime->SetCalleeSaveMethod(down_cast<mirror::ArtMethod*>(callee_save_method), Runtime::kSaveAll);
Ian Rogers1d54e732013-05-02 21:10:01 -0700216 callee_save_method = image_header.GetImageRoot(ImageHeader::kRefsOnlySaveMethod);
Brian Carlstromea46f952013-07-30 01:26:50 -0700217 runtime->SetCalleeSaveMethod(down_cast<mirror::ArtMethod*>(callee_save_method), Runtime::kRefsOnly);
Ian Rogers1d54e732013-05-02 21:10:01 -0700218 callee_save_method = image_header.GetImageRoot(ImageHeader::kRefsAndArgsSaveMethod);
Brian Carlstromea46f952013-07-30 01:26:50 -0700219 runtime->SetCalleeSaveMethod(down_cast<mirror::ArtMethod*>(callee_save_method), Runtime::kRefsAndArgs);
Ian Rogers1d54e732013-05-02 21:10:01 -0700220
Mathieu Chartier31e89252013-08-28 11:29:12 -0700221 UniquePtr<ImageSpace> space(new ImageSpace(image_file_name, map.release(), bitmap.release()));
222 if (kIsDebugBuild) {
223 space->VerifyImageAllocations();
224 }
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700225
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000226 space->oat_file_.reset(space->OpenOatFile(image_file_name, error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700227 if (space->oat_file_.get() == nullptr) {
228 DCHECK(!error_msg->empty());
229 return nullptr;
Ian Rogers1d54e732013-05-02 21:10:01 -0700230 }
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700231
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700232 if (validate_oat_file && !space->ValidateOatFile(error_msg)) {
233 DCHECK(!error_msg->empty());
234 return nullptr;
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700235 }
236
237 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
238 LOG(INFO) << "ImageSpace::Init exiting (" << PrettyDuration(NanoTime() - start_time)
239 << ") " << *space.get();
240 }
241 return space.release();
242}
243
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000244OatFile* ImageSpace::OpenOatFile(const char* image_path, std::string* error_msg) const {
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700245 const ImageHeader& image_header = GetImageHeader();
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000246 std::string oat_filename = ImageHeader::GetOatLocationFromImageLocation(image_path);
247
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700248 OatFile* oat_file = OatFile::Open(oat_filename, oat_filename, image_header.GetOatDataBegin(),
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700249 !Runtime::Current()->IsCompiler(), error_msg);
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700250 if (oat_file == NULL) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700251 *error_msg = StringPrintf("Failed to open oat file '%s' referenced from image %s: %s",
252 oat_filename.c_str(), GetName(), error_msg->c_str());
253 return nullptr;
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700254 }
255 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum();
256 uint32_t image_oat_checksum = image_header.GetOatChecksum();
257 if (oat_checksum != image_oat_checksum) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700258 *error_msg = StringPrintf("Failed to match oat file checksum 0x%x to expected oat checksum 0x%x"
259 " in image %s", oat_checksum, image_oat_checksum, GetName());
260 return nullptr;
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700261 }
262 return oat_file;
263}
264
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700265bool ImageSpace::ValidateOatFile(std::string* error_msg) const {
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700266 CHECK(oat_file_.get() != NULL);
Mathieu Chartier31e89252013-08-28 11:29:12 -0700267 for (const OatFile::OatDexFile* oat_dex_file : oat_file_->GetOatDexFiles()) {
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700268 const std::string& dex_file_location = oat_dex_file->GetDexFileLocation();
269 uint32_t dex_file_location_checksum;
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700270 if (!DexFile::GetChecksum(dex_file_location.c_str(), &dex_file_location_checksum, error_msg)) {
271 *error_msg = StringPrintf("Failed to get checksum of dex file '%s' referenced by image %s: "
272 "%s", dex_file_location.c_str(), GetName(), error_msg->c_str());
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700273 return false;
274 }
275 if (dex_file_location_checksum != oat_dex_file->GetDexFileLocationChecksum()) {
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700276 *error_msg = StringPrintf("ValidateOatFile found checksum mismatch between oat file '%s' and "
277 "dex file '%s' (0x%x != 0x%x)",
278 oat_file_->GetLocation().c_str(), dex_file_location.c_str(),
279 oat_dex_file->GetDexFileLocationChecksum(),
280 dex_file_location_checksum);
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700281 return false;
282 }
283 }
284 return true;
285}
286
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700287OatFile* ImageSpace::ReleaseOatFile() {
Brian Carlstrom56d947f2013-07-15 13:14:23 -0700288 CHECK(oat_file_.get() != NULL);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700289 return oat_file_.release();
Ian Rogers1d54e732013-05-02 21:10:01 -0700290}
291
Ian Rogers1d54e732013-05-02 21:10:01 -0700292void ImageSpace::Dump(std::ostream& os) const {
293 os << GetType()
Mathieu Chartier590fee92013-09-13 13:46:47 -0700294 << " begin=" << reinterpret_cast<void*>(Begin())
Ian Rogers1d54e732013-05-02 21:10:01 -0700295 << ",end=" << reinterpret_cast<void*>(End())
296 << ",size=" << PrettySize(Size())
297 << ",name=\"" << GetName() << "\"]";
298}
299
300} // namespace space
301} // namespace gc
302} // namespace art