blob: 452cd84728c829ce4a9094f776ba29645065ed4c [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
151 // Attempts to generate or relocate the oat file as needed to make it up to
Andreas Gampe29d38e72016-03-23 15:31:51 +0000152 // date with in a way that is at least as good as an oat file generated with
153 // the given compiler filter.
Richard Uhler66d874d2015-01-15 09:37:19 -0800154 // Returns true on success.
155 //
156 // If there is a failure, the value of error_msg will be set to a string
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700157 // describing why there was failure. error_msg must not be null.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000158 bool MakeUpToDate(CompilerFilter::Filter target_compiler_filter, std::string* error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800159
160 // Returns an oat file that can be used for loading dex files.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700161 // Returns null if no suitable oat file was found.
Richard Uhler66d874d2015-01-15 09:37:19 -0800162 //
163 // After this call, no other methods of the OatFileAssistant should be
164 // called, because access to the loaded oat file has been taken away from
165 // the OatFileAssistant object.
166 std::unique_ptr<OatFile> GetBestOatFile();
167
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800168 // Open and returns an image space associated with the oat file.
169 gc::space::ImageSpace* OpenImageSpace(const OatFile* oat_file);
170
Richard Uhler66d874d2015-01-15 09:37:19 -0800171 // Loads the dex files in the given oat file for the given dex location.
172 // The oat file should be up to date for the given dex location.
173 // This loads multiple dex files in the case of multidex.
174 // Returns an empty vector if no dex files for that location could be loaded
175 // from the oat file.
176 //
177 // The caller is responsible for freeing the dex_files returned, if any. The
178 // dex_files will only remain valid as long as the oat_file is valid.
179 static std::vector<std::unique_ptr<const DexFile>> LoadDexFiles(
180 const OatFile& oat_file, const char* dex_location);
181
Richard Uhler9b994ea2015-06-24 08:44:19 -0700182 // Returns true if there are dex files in the original dex location that can
183 // be compiled with dex2oat for this dex location.
184 // Returns false if there is no original dex file, or if the original dex
185 // file is an apk/zip without a classes.dex entry.
186 bool HasOriginalDexFiles();
187
Richard Uhler63434112015-03-16 14:32:16 -0700188 // If the dex file has been installed with a compiled oat file alongside
189 // it, the compiled oat file will have the extension .odex, and is referred
190 // to as the odex file. It is called odex for legacy reasons; the file is
191 // really an oat file. The odex file will often, but not always, have a
192 // patch delta of 0 and need to be relocated before use for the purposes of
193 // ASLR. The odex file is treated as if it were read-only.
Richard Uhler66d874d2015-01-15 09:37:19 -0800194 // These methods return the location and status of the odex file for the dex
195 // location.
196 // Notes:
197 // * OdexFileName may return null if the odex file name could not be
198 // determined.
199 const std::string* OdexFileName();
200 bool OdexFileExists();
Richard Uhler95abd042015-03-24 09:51:28 -0700201 OatStatus OdexFileStatus();
Richard Uhler66d874d2015-01-15 09:37:19 -0800202 bool OdexFileIsOutOfDate();
203 bool OdexFileNeedsRelocation();
204 bool OdexFileIsUpToDate();
205
206 // When the dex files is compiled on the target device, the oat file is the
207 // result. The oat file will have been relocated to some
208 // (possibly-out-of-date) offset for ASLR.
209 // These methods return the location and status of the target oat file for
210 // the dex location.
211 //
212 // Notes:
Richard Uhler66d874d2015-01-15 09:37:19 -0800213 // * OatFileName may return null if the oat file name could not be
214 // determined.
215 const std::string* OatFileName();
216 bool OatFileExists();
Richard Uhler95abd042015-03-24 09:51:28 -0700217 OatStatus OatFileStatus();
Richard Uhler66d874d2015-01-15 09:37:19 -0800218 bool OatFileIsOutOfDate();
219 bool OatFileNeedsRelocation();
220 bool OatFileIsUpToDate();
221
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800222 // Return image file name. Does not cache since it relies on the oat file.
223 std::string ArtFileName(const OatFile* oat_file) const;
224
Richard Uhler66d874d2015-01-15 09:37:19 -0800225 // These methods return the status for a given opened oat file with respect
226 // to the dex location.
Richard Uhler95abd042015-03-24 09:51:28 -0700227 OatStatus GivenOatFileStatus(const OatFile& file);
Richard Uhler66d874d2015-01-15 09:37:19 -0800228 bool GivenOatFileIsOutOfDate(const OatFile& file);
229 bool GivenOatFileNeedsRelocation(const OatFile& file);
230 bool GivenOatFileIsUpToDate(const OatFile& file);
231
Richard Uhler95abd042015-03-24 09:51:28 -0700232 // Generates the oat file by relocation from the named input file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800233 // This does not check the current status before attempting to relocate the
234 // oat file.
235 // Returns true on success.
236 // This will fail if dex2oat is not enabled in the current runtime.
237 //
238 // If there is a failure, the value of error_msg will be set to a string
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700239 // describing why there was failure. error_msg must not be null.
Richard Uhler95abd042015-03-24 09:51:28 -0700240 bool RelocateOatFile(const std::string* input_file, std::string* error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800241
Andreas Gampe29d38e72016-03-23 15:31:51 +0000242 // Generate the oat file from the dex file using the given compiler filter.
Richard Uhler66d874d2015-01-15 09:37:19 -0800243 // This does not check the current status before attempting to generate the
244 // oat file.
245 // Returns true on success.
246 // This will fail if dex2oat is not enabled in the current runtime.
247 //
248 // If there is a failure, the value of error_msg will be set to a string
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700249 // describing why there was failure. error_msg must not be null.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000250 bool GenerateOatFile(CompilerFilter::Filter filter, std::string* error_msg);
Richard Uhler66d874d2015-01-15 09:37:19 -0800251
252 // Executes dex2oat using the current runtime configuration overridden with
253 // the given arguments. This does not check to see if dex2oat is enabled in
254 // the runtime configuration.
255 // Returns true on success.
256 //
257 // If there is a failure, the value of error_msg will be set to a string
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700258 // describing why there was failure. error_msg must not be null.
Richard Uhler66d874d2015-01-15 09:37:19 -0800259 //
260 // TODO: The OatFileAssistant probably isn't the right place to have this
261 // function.
262 static bool Dex2Oat(const std::vector<std::string>& args, std::string* error_msg);
263
264 // Constructs the odex file name for the given dex location.
265 // Returns true on success, in which case odex_filename is set to the odex
266 // file name.
267 // Returns false on error, in which case error_msg describes the error.
268 // Neither odex_filename nor error_msg may be null.
269 static bool DexFilenameToOdexFilename(const std::string& location,
270 InstructionSet isa, std::string* odex_filename, std::string* error_msg);
271
272 private:
273 struct ImageInfo {
274 uint32_t oat_checksum = 0;
275 uintptr_t oat_data_begin = 0;
276 int32_t patch_delta = 0;
277 std::string location;
278 };
279
280 // Returns the path to the dalvik cache directory.
281 // Does not check existence of the cache or try to create it.
282 // Includes the trailing slash.
283 // Returns an empty string if we can't get the dalvik cache directory path.
284 std::string DalvikCacheDirectory();
285
Richard Uhler66d874d2015-01-15 09:37:19 -0800286 // Returns the current image location.
287 // Returns an empty string if the image location could not be retrieved.
288 //
289 // TODO: This method should belong with an image file manager, not
290 // the oat file assistant.
291 static std::string ImageLocation();
292
293 // Gets the dex checksum required for an up-to-date oat file.
294 // Returns dex_checksum if a required checksum was located. Returns
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700295 // null if the required checksum was not found.
Richard Uhler66d874d2015-01-15 09:37:19 -0800296 // The caller shouldn't clean up or free the returned pointer.
Richard Uhler9b994ea2015-06-24 08:44:19 -0700297 // This sets the has_original_dex_files_ field to true if a checksum was
298 // found for the dex_location_ dex file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800299 const uint32_t* GetRequiredDexChecksum();
300
301 // Returns the loaded odex file.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700302 // Loads the file if needed. Returns null if the file failed to load.
Richard Uhler66d874d2015-01-15 09:37:19 -0800303 // The caller shouldn't clean up or free the returned pointer.
304 const OatFile* GetOdexFile();
305
Andreas Gampe29d38e72016-03-23 15:31:51 +0000306 // Returns true if the compiler filter used to generate the odex file is at
307 // least as good as the given target filter.
308 bool OdexFileCompilerFilterIsOkay(CompilerFilter::Filter target);
309
Richard Uhler5f946da2015-07-17 12:28:32 -0700310 // Returns true if the odex file is opened executable.
311 bool OdexFileIsExecutable();
312
Richard Uhler66d874d2015-01-15 09:37:19 -0800313 // Clear any cached information about the odex file that depends on the
314 // contents of the file.
315 void ClearOdexFileCache();
316
317 // Returns the loaded oat file.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700318 // Loads the file if needed. Returns null if the file failed to load.
Richard Uhler66d874d2015-01-15 09:37:19 -0800319 // The caller shouldn't clean up or free the returned pointer.
320 const OatFile* GetOatFile();
321
Andreas Gampe29d38e72016-03-23 15:31:51 +0000322 // Returns true if the compiler filter used to generate the oat file is at
323 // least as good as the given target filter.
324 bool OatFileCompilerFilterIsOkay(CompilerFilter::Filter target);
325
Richard Uhler5f946da2015-07-17 12:28:32 -0700326 // Returns true if the oat file is opened executable.
327 bool OatFileIsExecutable();
328
Richard Uhler66d874d2015-01-15 09:37:19 -0800329 // Clear any cached information about the oat file that depends on the
330 // contents of the file.
331 void ClearOatFileCache();
332
333 // Returns the loaded image info.
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700334 // Loads the image info if needed. Returns null if the image info failed
Richard Uhler66d874d2015-01-15 09:37:19 -0800335 // to load.
336 // The caller shouldn't clean up or free the returned pointer.
337 const ImageInfo* GetImageInfo();
338
Richard Uhler66d874d2015-01-15 09:37:19 -0800339 // To implement Lock(), we lock a dummy file where the oat file would go
340 // (adding ".flock" to the target file name) and retain the lock for the
341 // remaining lifetime of the OatFileAssistant object.
Richard Uhler66d874d2015-01-15 09:37:19 -0800342 ScopedFlock flock_;
343
Richard Uhler740eec92015-10-15 15:12:23 -0700344 std::string dex_location_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800345
346 // In a properly constructed OatFileAssistant object, isa_ should be either
347 // the 32 or 64 bit variant for the current device.
348 const InstructionSet isa_ = kNone;
349
Andreas Gampe29d38e72016-03-23 15:31:51 +0000350 // Whether the profile has recently changed.
351 bool profile_changed_ = false;
352
Richard Uhler66d874d2015-01-15 09:37:19 -0800353 // Whether we will attempt to load oat files executable.
354 bool load_executable_ = false;
355
356 // Cached value of the required dex checksum.
357 // This should be accessed only by the GetRequiredDexChecksum() method.
Richard Uhler9b994ea2015-06-24 08:44:19 -0700358 uint32_t cached_required_dex_checksum_;
359 bool required_dex_checksum_attempted_ = false;
360 bool required_dex_checksum_found_;
361 bool has_original_dex_files_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800362
363 // Cached value of the odex file name.
364 // This should be accessed only by the OdexFileName() method.
365 bool cached_odex_file_name_attempted_ = false;
366 bool cached_odex_file_name_found_;
367 std::string cached_odex_file_name_;
368
369 // Cached value of the loaded odex file.
370 // Use the GetOdexFile method rather than accessing this directly, unless you
371 // know the odex file isn't out of date.
372 bool odex_file_load_attempted_ = false;
373 std::unique_ptr<OatFile> cached_odex_file_;
374
375 // Cached results for OdexFileIsOutOfDate
376 bool odex_file_is_out_of_date_attempted_ = false;
377 bool cached_odex_file_is_out_of_date_;
378
379 // Cached results for OdexFileIsUpToDate
380 bool odex_file_is_up_to_date_attempted_ = false;
381 bool cached_odex_file_is_up_to_date_;
382
383 // Cached value of the oat file name.
384 // This should be accessed only by the OatFileName() method.
385 bool cached_oat_file_name_attempted_ = false;
386 bool cached_oat_file_name_found_;
387 std::string cached_oat_file_name_;
388
Richard Uhlerb361d942015-05-07 10:52:28 -0700389 // Cached value of the loaded oat file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800390 // Use the GetOatFile method rather than accessing this directly, unless you
Richard Uhlerb361d942015-05-07 10:52:28 -0700391 // know the oat file isn't out of date.
Richard Uhler66d874d2015-01-15 09:37:19 -0800392 bool oat_file_load_attempted_ = false;
393 std::unique_ptr<OatFile> cached_oat_file_;
394
395 // Cached results for OatFileIsOutOfDate
396 bool oat_file_is_out_of_date_attempted_ = false;
397 bool cached_oat_file_is_out_of_date_;
398
399 // Cached results for OatFileIsUpToDate
400 bool oat_file_is_up_to_date_attempted_ = false;
401 bool cached_oat_file_is_up_to_date_;
402
403 // Cached value of the image info.
404 // Use the GetImageInfo method rather than accessing these directly.
405 // TODO: The image info should probably be moved out of the oat file
406 // assistant to an image file manager.
407 bool image_info_load_attempted_ = false;
408 bool image_info_load_succeeded_ = false;
409 ImageInfo cached_image_info_;
410
Richard Uhler66d874d2015-01-15 09:37:19 -0800411 // For debugging only.
412 // If this flag is set, the oat or odex file has been released to the user
413 // of the OatFileAssistant object and the OatFileAssistant object is in a
414 // bad state and should no longer be used.
415 bool oat_file_released_ = false;
416
417 DISALLOW_COPY_AND_ASSIGN(OatFileAssistant);
418};
419
420} // namespace art
421
422#endif // ART_RUNTIME_OAT_FILE_ASSISTANT_H_