blob: 28f9bb348182fe555cc8b5d45f9107d63d8304e1 [file] [log] [blame]
David Brazdil7b49e6c2016-09-01 11:06:18 +01001/*
2 * Copyright (C) 2016 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_VDEX_FILE_H_
18#define ART_RUNTIME_VDEX_FILE_H_
19
20#include <stdint.h>
21#include <string>
22
23#include "base/macros.h"
David Brazdil7b49e6c2016-09-01 11:06:18 +010024#include "mem_map.h"
25#include "os.h"
26
27namespace art {
28
29// VDEX files contain extracted DEX files. The VdexFile class maps the file to
30// memory and provides tools for accessing its individual sections.
31//
32// File format:
33// VdexFile::Header fixed-length header
34//
35// DEX[0] array of the input DEX files
36// DEX[1] the bytecode may have been quickened
37// ...
38// DEX[D]
39//
40
41class VdexFile {
42 public:
43 struct Header {
44 public:
Nicolas Geoffray4acefd32016-10-24 13:14:58 +010045 Header(uint32_t dex_size, uint32_t verifier_deps_size, uint32_t quickening_info_size);
David Brazdil7b49e6c2016-09-01 11:06:18 +010046
47 bool IsMagicValid() const;
48 bool IsVersionValid() const;
49
David Brazdil5d5a36b2016-09-14 15:34:10 +010050 uint32_t GetDexSize() const { return dex_size_; }
51 uint32_t GetVerifierDepsSize() const { return verifier_deps_size_; }
Nicolas Geoffray4acefd32016-10-24 13:14:58 +010052 uint32_t GetQuickeningInfoSize() const { return quickening_info_size_; }
David Brazdil5d5a36b2016-09-14 15:34:10 +010053
David Brazdil7b49e6c2016-09-01 11:06:18 +010054 private:
55 static constexpr uint8_t kVdexMagic[] = { 'v', 'd', 'e', 'x' };
56 static constexpr uint8_t kVdexVersion[] = { '0', '0', '0', '\0' };
57
58 uint8_t magic_[4];
59 uint8_t version_[4];
David Brazdil5d5a36b2016-09-14 15:34:10 +010060 uint32_t dex_size_;
61 uint32_t verifier_deps_size_;
Nicolas Geoffray4acefd32016-10-24 13:14:58 +010062 uint32_t quickening_info_size_;
David Brazdil7b49e6c2016-09-01 11:06:18 +010063 };
64
65 static VdexFile* Open(const std::string& vdex_filename,
66 bool writable,
67 bool low_4gb,
68 std::string* error_msg);
69
70 const uint8_t* Begin() const { return mmap_->Begin(); }
71 const uint8_t* End() const { return mmap_->End(); }
72 size_t Size() const { return mmap_->Size(); }
73
74 private:
Andreas Gampef7e82232016-09-12 15:55:56 -070075 explicit VdexFile(MemMap* mmap) : mmap_(mmap) {}
David Brazdil7b49e6c2016-09-01 11:06:18 +010076
David Brazdil7b49e6c2016-09-01 11:06:18 +010077 std::unique_ptr<MemMap> mmap_;
78
79 DISALLOW_COPY_AND_ASSIGN(VdexFile);
80};
81
82} // namespace art
83
84#endif // ART_RUNTIME_VDEX_FILE_H_