blob: 63b1573faa0804508d3bf79349728bbaacf5452a [file] [log] [blame]
Richard Uhler66d874d2015-01-15 09:37:19 -08001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_RUNTIME_OAT_FILE_ASSISTANT_H_
18#define ART_RUNTIME_OAT_FILE_ASSISTANT_H_
19
20#include <cstdint>
21#include <memory>
22#include <string>
23
24#include "arch/instruction_set.h"
25#include "base/scoped_flock.h"
26#include "base/unix_file/fd_file.h"
Andreas Gampe29d38e72016-03-23 15:31:51 +000027#include "compiler_filter.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080028#include "oat_file.h"
29#include "os.h"
30#include "profiler.h"
31
32namespace art {
33
Mathieu Chartierfbc31082016-01-24 11:59:56 -080034namespace gc {
35namespace space {
36class ImageSpace;
37} // namespace space
38} // namespace gc
39
Richard Uhler66d874d2015-01-15 09:37:19 -080040// Class for assisting with oat file management.
41//
42// This class collects common utilities for determining the status of an oat
43// file on the device, updating the oat file, and loading the oat file.
44//
45// The oat file assistant is intended to be used with dex locations not on the
46// boot class path. See the IsInBootClassPath method for a way to check if the
47// dex location is in the boot class path.
Richard Uhler66d874d2015-01-15 09:37:19 -080048class OatFileAssistant {
49 public:
Richard Uhler95abd042015-03-24 09:51:28 -070050 enum DexOptNeeded {
51 // kNoDexOptNeeded - The code for this dex location is up to date and can
52 // be used as is.
53 // Matches Java: dalvik.system.DexFile.NO_DEXOPT_NEEDED = 0
54 kNoDexOptNeeded = 0,
Richard Uhler66d874d2015-01-15 09:37:19 -080055
Richard Uhler95abd042015-03-24 09:51:28 -070056 // kDex2OatNeeded - In order to make the code for this dex location up to
57 // date, dex2oat must be run on the dex file.
58 // Matches Java: dalvik.system.DexFile.DEX2OAT_NEEDED = 1
59 kDex2OatNeeded = 1,
Richard Uhler66d874d2015-01-15 09:37:19 -080060
Richard Uhler95abd042015-03-24 09:51:28 -070061 // kPatchOatNeeded - In order to make the code for this dex location up to
62 // date, patchoat must be run on the odex file.
63 // Matches Java: dalvik.system.DexFile.PATCHOAT_NEEDED = 2
64 kPatchOatNeeded = 2,
65
66 // kSelfPatchOatNeeded - In order to make the code for this dex location
67 // up to date, patchoat must be run on the oat file.
68 // Matches Java: dalvik.system.DexFile.SELF_PATCHOAT_NEEDED = 3
69 kSelfPatchOatNeeded = 3,
70 };
71
72 enum OatStatus {
73 // kOatOutOfDate - An oat file is said to be out of date if the file does
Calin Juravleb077e152016-02-18 18:47:37 +000074 // not exist, is out of date with respect to the dex file or boot image,
75 // or does not meet the target compilation type.
Richard Uhler95abd042015-03-24 09:51:28 -070076 kOatOutOfDate,
77
78 // kOatNeedsRelocation - An oat file is said to need relocation if the
79 // code is up to date, but not yet properly relocated for address space
80 // layout randomization (ASLR). In this case, the oat file is neither
81 // "out of date" nor "up to date".
82 kOatNeedsRelocation,
83
84 // kOatUpToDate - An oat file is said to be up to date if it is not out of
Richard Uhler66d874d2015-01-15 09:37:19 -080085 // date and has been properly relocated for the purposes of ASLR.
Richard Uhler95abd042015-03-24 09:51:28 -070086 kOatUpToDate,
Richard Uhler66d874d2015-01-15 09:37:19 -080087 };
88
89 // Constructs an OatFileAssistant object to assist the oat file
90 // corresponding to the given dex location with the target instruction set.
91 //
Mathieu Chartier2cebb242015-04-21 16:50:40 -070092 // The dex_location must not be null and should remain available and
Richard Uhler66d874d2015-01-15 09:37:19 -080093 // unchanged for the duration of the lifetime of the OatFileAssistant object.
94 // Typically the dex_location is the absolute path to the original,
95 // un-optimized dex file.
96 //
Richard Uhler66d874d2015-01-15 09:37:19 -080097 // Note: Currently the dex_location must have an extension.
98 // TODO: Relax this restriction?
99 //
100 // The isa should be either the 32 bit or 64 bit variant for the current
101 // device. For example, on an arm device, use arm or arm64. An oat file can
102 // be loaded executable only if the ISA matches the current runtime.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000103 //
104 // profile_changed should be true if the profile has recently changed
105 // for this dex location.
106 //
107 // load_executable should be true if the caller intends to try and load
108 // executable code for this dex location.
Calin Juravleb077e152016-02-18 18:47:37 +0000109 OatFileAssistant(const char* dex_location,
Calin Juravleb077e152016-02-18 18:47:37 +0000110 const InstructionSet isa,
Andreas Gampe29d38e72016-03-23 15:31:51 +0000111 bool profile_changed,
Richard Uhler66d874d2015-01-15 09:37:19 -0800112 bool load_executable);
113
114 // Constructs an OatFileAssistant, providing an explicit target oat_location
115 // to use instead of the standard oat location.
Calin Juravleb077e152016-02-18 18:47:37 +0000116 OatFileAssistant(const char* dex_location,
117 const char* oat_location,
Calin Juravleb077e152016-02-18 18:47:37 +0000118 const InstructionSet isa,
Andreas Gampe29d38e72016-03-23 15:31:51 +0000119 bool profile_changed,
Calin Juravleb077e152016-02-18 18:47:37 +0000120 bool load_executable);
Richard Uhler66d874d2015-01-15 09:37:19 -0800121
122 ~OatFileAssistant();
123
124 // Returns true if the dex location refers to an element of the boot class
125 // path.
126 bool IsInBootClassPath();
127
128 // Obtains a lock on the target oat file.
129 // Only one OatFileAssistant object can hold the lock for a target oat file
130 // at a time. The Lock is released automatically when the OatFileAssistant
131 // object goes out of scope. The Lock() method must not be called if the
132 // lock has already been acquired.
133 //
134 // Returns true on success.
135 // Returns false on error, in which case error_msg will contain more
136 // information on the error.
137 //
138 // The 'error_msg' argument must not be null.
139 //
140 // This is intended to be used to avoid race conditions when multiple
141 // processes generate oat files, such as when a foreground Activity and
142 // a background Service both use DexClassLoaders pointing to the same dex
143 // file.
144 bool Lock(std::string* error_msg);
145
Richard Uhler95abd042015-03-24 09:51:28 -0700146 // Return what action needs to be taken to produce up-to-date code for this
Andreas Gampe29d38e72016-03-23 15:31:51 +0000147 // dex location that is at least as good as an oat file generated with the
148 // given compiler filter.
149 DexOptNeeded GetDexOptNeeded(CompilerFilter::Filter target_compiler_filter);
Richard Uhler66d874d2015-01-15 09:37:19 -0800150
Richard Uhler1e860612016-03-30 12:17:55 -0700151 // Return code used when attempting to generate updated code.
152 enum ResultOfAttemptToUpdate {
153 kUpdateFailed, // We tried making the code up to date, but
154 // encountered an unexpected failure.
155 kUpdateNotAttempted, // We wanted to update the code, but determined we
156 // should not make the attempt.
157 kUpdateSucceeded // We successfully made the code up to date
158 // (possibly by doing nothing).
159 };
160
Richard Uhler66d874d2015-01-15 09:37:19 -0800161 // Attempts to generate or relocate the oat file as needed to make it up to
Andreas Gampe29d38e72016-03-23 15:31:51 +0000162 // date with in a way that is at least as good as an oat file generated with
163 // the given compiler filter.
Richard Uhler1e860612016-03-30 12:17:55 -0700164 // Returns the result of attempting to update the code.
Richard Uhler66d874d2015-01-15 09:37:19 -0800165 //
Richard Uhler1e860612016-03-30 12:17:55 -0700166 // If the result is not kUpdateSucceeded, the value of error_msg will be set
167 // to a string describing why there was a failure or the update was not
168 // attempted. error_msg must not be null.
169 ResultOfAttemptToUpdate MakeUpToDate(CompilerFilter::Filter target_compiler_filter,
170 std::string* error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800171
172 // Returns an oat file that can be used for loading dex files.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700173 // Returns null if no suitable oat file was found.
Richard Uhler66d874d2015-01-15 09:37:19 -0800174 //
175 // After this call, no other methods of the OatFileAssistant should be
176 // called, because access to the loaded oat file has been taken away from
177 // the OatFileAssistant object.
178 std::unique_ptr<OatFile> GetBestOatFile();
179
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800180 // Open and returns an image space associated with the oat file.
181 gc::space::ImageSpace* OpenImageSpace(const OatFile* oat_file);
182
Richard Uhler66d874d2015-01-15 09:37:19 -0800183 // Loads the dex files in the given oat file for the given dex location.
184 // The oat file should be up to date for the given dex location.
185 // This loads multiple dex files in the case of multidex.
186 // Returns an empty vector if no dex files for that location could be loaded
187 // from the oat file.
188 //
189 // The caller is responsible for freeing the dex_files returned, if any. The
190 // dex_files will only remain valid as long as the oat_file is valid.
191 static std::vector<std::unique_ptr<const DexFile>> LoadDexFiles(
192 const OatFile& oat_file, const char* dex_location);
193
Richard Uhler9b994ea2015-06-24 08:44:19 -0700194 // Returns true if there are dex files in the original dex location that can
195 // be compiled with dex2oat for this dex location.
196 // Returns false if there is no original dex file, or if the original dex
197 // file is an apk/zip without a classes.dex entry.
198 bool HasOriginalDexFiles();
199
Richard Uhler63434112015-03-16 14:32:16 -0700200 // If the dex file has been installed with a compiled oat file alongside
201 // it, the compiled oat file will have the extension .odex, and is referred
202 // to as the odex file. It is called odex for legacy reasons; the file is
203 // really an oat file. The odex file will often, but not always, have a
204 // patch delta of 0 and need to be relocated before use for the purposes of
205 // ASLR. The odex file is treated as if it were read-only.
Richard Uhler66d874d2015-01-15 09:37:19 -0800206 // These methods return the location and status of the odex file for the dex
207 // location.
208 // Notes:
209 // * OdexFileName may return null if the odex file name could not be
210 // determined.
211 const std::string* OdexFileName();
212 bool OdexFileExists();
Richard Uhler95abd042015-03-24 09:51:28 -0700213 OatStatus OdexFileStatus();
Richard Uhler66d874d2015-01-15 09:37:19 -0800214 bool OdexFileIsOutOfDate();
215 bool OdexFileNeedsRelocation();
216 bool OdexFileIsUpToDate();
217
218 // When the dex files is compiled on the target device, the oat file is the
219 // result. The oat file will have been relocated to some
220 // (possibly-out-of-date) offset for ASLR.
221 // These methods return the location and status of the target oat file for
222 // the dex location.
223 //
224 // Notes:
Richard Uhler66d874d2015-01-15 09:37:19 -0800225 // * OatFileName may return null if the oat file name could not be
226 // determined.
227 const std::string* OatFileName();
228 bool OatFileExists();
Richard Uhler95abd042015-03-24 09:51:28 -0700229 OatStatus OatFileStatus();
Richard Uhler66d874d2015-01-15 09:37:19 -0800230 bool OatFileIsOutOfDate();
231 bool OatFileNeedsRelocation();
232 bool OatFileIsUpToDate();
233
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800234 // Return image file name. Does not cache since it relies on the oat file.
235 std::string ArtFileName(const OatFile* oat_file) const;
236
Richard Uhler66d874d2015-01-15 09:37:19 -0800237 // These methods return the status for a given opened oat file with respect
238 // to the dex location.
Richard Uhler95abd042015-03-24 09:51:28 -0700239 OatStatus GivenOatFileStatus(const OatFile& file);
Richard Uhler66d874d2015-01-15 09:37:19 -0800240 bool GivenOatFileIsOutOfDate(const OatFile& file);
241 bool GivenOatFileNeedsRelocation(const OatFile& file);
242 bool GivenOatFileIsUpToDate(const OatFile& file);
243
Richard Uhler95abd042015-03-24 09:51:28 -0700244 // Generates the oat file by relocation from the named input file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800245 // This does not check the current status before attempting to relocate the
246 // oat file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800247 //
Richard Uhler1e860612016-03-30 12:17:55 -0700248 // If the result is not kUpdateSucceeded, the value of error_msg will be set
249 // to a string describing why there was a failure or the update was not
250 // attempted. error_msg must not be null.
251 ResultOfAttemptToUpdate RelocateOatFile(const std::string* input_file, std::string* error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800252
Andreas Gampe29d38e72016-03-23 15:31:51 +0000253 // Generate the oat file from the dex file using the given compiler filter.
Richard Uhler66d874d2015-01-15 09:37:19 -0800254 // This does not check the current status before attempting to generate the
255 // oat file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800256 //
Richard Uhler1e860612016-03-30 12:17:55 -0700257 // If the result is not kUpdateSucceeded, the value of error_msg will be set
258 // to a string describing why there was a failure or the update was not
259 // attempted. error_msg must not be null.
260 ResultOfAttemptToUpdate GenerateOatFile(CompilerFilter::Filter filter, std::string* error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800261
262 // Executes dex2oat using the current runtime configuration overridden with
263 // the given arguments. This does not check to see if dex2oat is enabled in
264 // the runtime configuration.
265 // Returns true on success.
266 //
267 // If there is a failure, the value of error_msg will be set to a string
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700268 // describing why there was failure. error_msg must not be null.
Richard Uhler66d874d2015-01-15 09:37:19 -0800269 //
270 // TODO: The OatFileAssistant probably isn't the right place to have this
271 // function.
272 static bool Dex2Oat(const std::vector<std::string>& args, std::string* error_msg);
273
274 // Constructs the odex file name for the given dex location.
275 // Returns true on success, in which case odex_filename is set to the odex
276 // file name.
277 // Returns false on error, in which case error_msg describes the error.
278 // Neither odex_filename nor error_msg may be null.
279 static bool DexFilenameToOdexFilename(const std::string& location,
280 InstructionSet isa, std::string* odex_filename, std::string* error_msg);
281
Jeff Haob11ffb72016-04-07 15:40:54 -0700282 static uint32_t CalculateCombinedImageChecksum();
283
Richard Uhler66d874d2015-01-15 09:37:19 -0800284 private:
285 struct ImageInfo {
286 uint32_t oat_checksum = 0;
287 uintptr_t oat_data_begin = 0;
288 int32_t patch_delta = 0;
289 std::string location;
290 };
291
292 // Returns the path to the dalvik cache directory.
293 // Does not check existence of the cache or try to create it.
294 // Includes the trailing slash.
295 // Returns an empty string if we can't get the dalvik cache directory path.
296 std::string DalvikCacheDirectory();
297
Richard Uhler66d874d2015-01-15 09:37:19 -0800298 // Returns the current image location.
299 // Returns an empty string if the image location could not be retrieved.
300 //
301 // TODO: This method should belong with an image file manager, not
302 // the oat file assistant.
303 static std::string ImageLocation();
304
305 // Gets the dex checksum required for an up-to-date oat file.
306 // Returns dex_checksum if a required checksum was located. Returns
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700307 // null if the required checksum was not found.
Richard Uhler66d874d2015-01-15 09:37:19 -0800308 // The caller shouldn't clean up or free the returned pointer.
Richard Uhler9b994ea2015-06-24 08:44:19 -0700309 // This sets the has_original_dex_files_ field to true if a checksum was
310 // found for the dex_location_ dex file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800311 const uint32_t* GetRequiredDexChecksum();
312
313 // Returns the loaded odex file.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700314 // Loads the file if needed. Returns null if the file failed to load.
Richard Uhler66d874d2015-01-15 09:37:19 -0800315 // The caller shouldn't clean up or free the returned pointer.
316 const OatFile* GetOdexFile();
317
Andreas Gampe29d38e72016-03-23 15:31:51 +0000318 // Returns true if the compiler filter used to generate the odex file is at
319 // least as good as the given target filter.
320 bool OdexFileCompilerFilterIsOkay(CompilerFilter::Filter target);
321
Richard Uhler5f946da2015-07-17 12:28:32 -0700322 // Returns true if the odex file is opened executable.
323 bool OdexFileIsExecutable();
324
Richard Uhlerd1537b52016-03-29 13:27:41 -0700325 // Returns true if the odex file has patch info required to run patchoat.
326 bool OdexFileHasPatchInfo();
327
Richard Uhler66d874d2015-01-15 09:37:19 -0800328 // Clear any cached information about the odex file that depends on the
329 // contents of the file.
330 void ClearOdexFileCache();
331
332 // Returns the loaded oat file.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700333 // Loads the file if needed. Returns null if the file failed to load.
Richard Uhler66d874d2015-01-15 09:37:19 -0800334 // The caller shouldn't clean up or free the returned pointer.
335 const OatFile* GetOatFile();
336
Andreas Gampe29d38e72016-03-23 15:31:51 +0000337 // Returns true if the compiler filter used to generate the oat file is at
338 // least as good as the given target filter.
339 bool OatFileCompilerFilterIsOkay(CompilerFilter::Filter target);
340
Richard Uhler5f946da2015-07-17 12:28:32 -0700341 // Returns true if the oat file is opened executable.
342 bool OatFileIsExecutable();
343
Richard Uhlerd1537b52016-03-29 13:27:41 -0700344 // Returns true if the oat file has patch info required to run patchoat.
345 bool OatFileHasPatchInfo();
346
Richard Uhler66d874d2015-01-15 09:37:19 -0800347 // Clear any cached information about the oat file that depends on the
348 // contents of the file.
349 void ClearOatFileCache();
350
351 // Returns the loaded image info.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700352 // Loads the image info if needed. Returns null if the image info failed
Richard Uhler66d874d2015-01-15 09:37:19 -0800353 // to load.
354 // The caller shouldn't clean up or free the returned pointer.
355 const ImageInfo* GetImageInfo();
356
Jeff Haob11ffb72016-04-07 15:40:54 -0700357 uint32_t GetCombinedImageChecksum();
358
Richard Uhler66d874d2015-01-15 09:37:19 -0800359 // To implement Lock(), we lock a dummy file where the oat file would go
360 // (adding ".flock" to the target file name) and retain the lock for the
361 // remaining lifetime of the OatFileAssistant object.
Richard Uhler66d874d2015-01-15 09:37:19 -0800362 ScopedFlock flock_;
363
Richard Uhler740eec92015-10-15 15:12:23 -0700364 std::string dex_location_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800365
366 // In a properly constructed OatFileAssistant object, isa_ should be either
367 // the 32 or 64 bit variant for the current device.
368 const InstructionSet isa_ = kNone;
369
Andreas Gampe29d38e72016-03-23 15:31:51 +0000370 // Whether the profile has recently changed.
371 bool profile_changed_ = false;
372
Richard Uhler66d874d2015-01-15 09:37:19 -0800373 // Whether we will attempt to load oat files executable.
374 bool load_executable_ = false;
375
376 // Cached value of the required dex checksum.
377 // This should be accessed only by the GetRequiredDexChecksum() method.
Richard Uhler9b994ea2015-06-24 08:44:19 -0700378 uint32_t cached_required_dex_checksum_;
379 bool required_dex_checksum_attempted_ = false;
380 bool required_dex_checksum_found_;
381 bool has_original_dex_files_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800382
383 // Cached value of the odex file name.
384 // This should be accessed only by the OdexFileName() method.
385 bool cached_odex_file_name_attempted_ = false;
386 bool cached_odex_file_name_found_;
387 std::string cached_odex_file_name_;
388
389 // Cached value of the loaded odex file.
390 // Use the GetOdexFile method rather than accessing this directly, unless you
391 // know the odex file isn't out of date.
392 bool odex_file_load_attempted_ = false;
393 std::unique_ptr<OatFile> cached_odex_file_;
394
395 // Cached results for OdexFileIsOutOfDate
396 bool odex_file_is_out_of_date_attempted_ = false;
397 bool cached_odex_file_is_out_of_date_;
398
399 // Cached results for OdexFileIsUpToDate
400 bool odex_file_is_up_to_date_attempted_ = false;
401 bool cached_odex_file_is_up_to_date_;
402
403 // Cached value of the oat file name.
404 // This should be accessed only by the OatFileName() method.
405 bool cached_oat_file_name_attempted_ = false;
406 bool cached_oat_file_name_found_;
407 std::string cached_oat_file_name_;
408
Richard Uhlerb361d942015-05-07 10:52:28 -0700409 // Cached value of the loaded oat file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800410 // Use the GetOatFile method rather than accessing this directly, unless you
Richard Uhlerb361d942015-05-07 10:52:28 -0700411 // know the oat file isn't out of date.
Richard Uhler66d874d2015-01-15 09:37:19 -0800412 bool oat_file_load_attempted_ = false;
413 std::unique_ptr<OatFile> cached_oat_file_;
414
415 // Cached results for OatFileIsOutOfDate
416 bool oat_file_is_out_of_date_attempted_ = false;
417 bool cached_oat_file_is_out_of_date_;
418
419 // Cached results for OatFileIsUpToDate
420 bool oat_file_is_up_to_date_attempted_ = false;
421 bool cached_oat_file_is_up_to_date_;
422
423 // Cached value of the image info.
424 // Use the GetImageInfo method rather than accessing these directly.
425 // TODO: The image info should probably be moved out of the oat file
426 // assistant to an image file manager.
427 bool image_info_load_attempted_ = false;
428 bool image_info_load_succeeded_ = false;
429 ImageInfo cached_image_info_;
Jeff Haob11ffb72016-04-07 15:40:54 -0700430 uint32_t combined_image_checksum_ = 0;
Richard Uhler66d874d2015-01-15 09:37:19 -0800431
Richard Uhler66d874d2015-01-15 09:37:19 -0800432 // For debugging only.
433 // If this flag is set, the oat or odex file has been released to the user
434 // of the OatFileAssistant object and the OatFileAssistant object is in a
435 // bad state and should no longer be used.
436 bool oat_file_released_ = false;
437
438 DISALLOW_COPY_AND_ASSIGN(OatFileAssistant);
439};
440
441} // namespace art
442
443#endif // ART_RUNTIME_OAT_FILE_ASSISTANT_H_