blob: 1cb9535a2733c9282711f87b13eecc461f3f46dd [file] [log] [blame]
David Andersonb2988ab2019-04-16 17:14:09 -07001/*
2 * Copyright (C) 2019 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#pragma once
17
18#include <stdint.h>
Howard Chen5676d962019-08-05 16:21:00 +080019#include <sys/mman.h>
David Andersonb2988ab2019-04-16 17:14:09 -070020
21#include <memory>
22#include <string>
23
Howard Chen5676d962019-08-05 16:21:00 +080024#include <android-base/unique_fd.h>
David Andersonb2988ab2019-04-16 17:14:09 -070025#include <android/gsi/IGsiService.h>
David Anderson64b53fb2019-07-01 19:05:35 -070026#include <android/gsi/MappedImage.h>
27#include <libfiemap/image_manager.h>
David Andersonb2988ab2019-04-16 17:14:09 -070028#include <liblp/builder.h>
29
30namespace android {
31namespace gsi {
32
33class GsiService;
34
Howard Chen4663de62019-11-05 20:46:20 +080035class PartitionInstaller final {
David Anderson64b53fb2019-07-01 19:05:35 -070036 using ImageManager = android::fiemap::ImageManager;
37 using MappedDevice = android::fiemap::MappedDevice;
38
David Andersonb2988ab2019-04-16 17:14:09 -070039 public:
40 // Constructor for a new GSI installation.
Howard Chen4663de62019-11-05 20:46:20 +080041 PartitionInstaller(GsiService* service, const std::string& installDir, const std::string& name,
Howard Chenee5c2b12019-11-08 11:57:47 +080042 const std::string& active_dsu, int64_t size, bool read_only);
Howard Chen4663de62019-11-05 20:46:20 +080043 ~PartitionInstaller();
David Andersonb2988ab2019-04-16 17:14:09 -070044
45 // Methods for a clean GSI install.
46 int StartInstall();
47 bool CommitGsiChunk(int stream_fd, int64_t bytes);
48 bool CommitGsiChunk(const void* data, size_t bytes);
Howard Chen5676d962019-08-05 16:21:00 +080049 bool MapAshmem(int fd, size_t size);
50 bool CommitGsiChunk(size_t bytes);
Yo Chiang53bed1c2020-01-01 16:25:19 +080051 int GetPartitionFd();
David Andersonb2988ab2019-04-16 17:14:09 -070052
Howard Chenee5c2b12019-11-08 11:57:47 +080053 static int WipeWritable(const std::string& active_dsu, const std::string& install_dir,
54 const std::string& name);
David Andersonb2988ab2019-04-16 17:14:09 -070055
Yi-Yo Chiang81af6b22021-11-03 20:26:32 +080056 // Returns the minimum free space to reserve for /data.
57 static std::optional<uint64_t> GetMinimumFreeSpaceThreshold(const std::string& install_dir);
58
Yo Chiangf194dce2020-08-24 17:21:10 +080059 // Finish a partition installation and release resources.
60 // If the installation is incomplete or corrupted, the backing image would
61 // be cleaned up and an error code is returned.
62 // No method other than FinishInstall() and ~PartitionInstaller() should be
63 // called after calling this method.
64 // This method is also called by the destructor to free up resources.
65 int FinishInstall();
David Andersonb2988ab2019-04-16 17:14:09 -070066
67 const std::string& install_dir() const { return install_dir_; }
David Andersonb2988ab2019-04-16 17:14:09 -070068
69 private:
David Andersonb2988ab2019-04-16 17:14:09 -070070 int PerformSanityChecks();
Howard Chen18109b12019-08-13 17:00:44 +080071 int Preallocate();
72 bool Format();
73 bool CreateImage(const std::string& name, uint64_t size);
David Anderson64b53fb2019-07-01 19:05:35 -070074 std::unique_ptr<MappedDevice> OpenPartition(const std::string& name);
75 int CheckInstallState();
Howard Chen18109b12019-08-13 17:00:44 +080076 static const std::string GetBackingFile(std::string name);
Howard Chen5676d962019-08-05 16:21:00 +080077 bool IsFinishedWriting();
78 bool IsAshmemMapped();
79 void UnmapAshmem();
David Andersonb2988ab2019-04-16 17:14:09 -070080
81 GsiService* service_;
82
83 std::string install_dir_;
Howard Chen18109b12019-08-13 17:00:44 +080084 std::string name_;
Howard Chenee5c2b12019-11-08 11:57:47 +080085 std::string active_dsu_;
David Anderson64b53fb2019-07-01 19:05:35 -070086 std::unique_ptr<ImageManager> images_;
Howard Chen18109b12019-08-13 17:00:44 +080087 uint64_t size_ = 0;
88 bool readOnly_;
David Andersonb2988ab2019-04-16 17:14:09 -070089 // Remaining data we're waiting to receive for the GSI image.
90 uint64_t gsi_bytes_written_ = 0;
Howard Chen5676d962019-08-05 16:21:00 +080091 uint64_t ashmem_size_ = -1;
92 void* ashmem_data_ = MAP_FAILED;
David Andersonb2988ab2019-04-16 17:14:09 -070093
Yo Chiangf194dce2020-08-24 17:21:10 +080094 bool finished_ = false;
95 int finished_status_ = 0;
96
David Anderson64b53fb2019-07-01 19:05:35 -070097 std::unique_ptr<MappedDevice> system_device_;
David Andersonb2988ab2019-04-16 17:14:09 -070098};
99
100} // namespace gsi
101} // namespace android