blob: 1503648dce35955ab706d5f0a09505aabdc5e337 [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
56 // Clean up install state if gsid crashed and restarted.
Howard Chen18109b12019-08-13 17:00:44 +080057 void PostInstallCleanup();
58 void PostInstallCleanup(ImageManager* manager);
David Andersonb2988ab2019-04-16 17:14:09 -070059
60 const std::string& install_dir() const { return install_dir_; }
David Andersonb2988ab2019-04-16 17:14:09 -070061
62 private:
Howard Chen4663de62019-11-05 20:46:20 +080063 int Finish();
David Andersonb2988ab2019-04-16 17:14:09 -070064 int PerformSanityChecks();
Howard Chen18109b12019-08-13 17:00:44 +080065 int Preallocate();
66 bool Format();
67 bool CreateImage(const std::string& name, uint64_t size);
David Anderson64b53fb2019-07-01 19:05:35 -070068 std::unique_ptr<MappedDevice> OpenPartition(const std::string& name);
69 int CheckInstallState();
Howard Chen18109b12019-08-13 17:00:44 +080070 static const std::string GetBackingFile(std::string name);
Howard Chen5676d962019-08-05 16:21:00 +080071 bool IsFinishedWriting();
72 bool IsAshmemMapped();
73 void UnmapAshmem();
David Andersonb2988ab2019-04-16 17:14:09 -070074
75 GsiService* service_;
76
77 std::string install_dir_;
Howard Chen18109b12019-08-13 17:00:44 +080078 std::string name_;
Howard Chenee5c2b12019-11-08 11:57:47 +080079 std::string active_dsu_;
David Anderson64b53fb2019-07-01 19:05:35 -070080 std::unique_ptr<ImageManager> images_;
Howard Chen18109b12019-08-13 17:00:44 +080081 uint64_t size_ = 0;
82 bool readOnly_;
David Andersonb2988ab2019-04-16 17:14:09 -070083 // Remaining data we're waiting to receive for the GSI image.
84 uint64_t gsi_bytes_written_ = 0;
85 bool succeeded_ = false;
Howard Chen5676d962019-08-05 16:21:00 +080086 uint64_t ashmem_size_ = -1;
87 void* ashmem_data_ = MAP_FAILED;
David Andersonb2988ab2019-04-16 17:14:09 -070088
David Anderson64b53fb2019-07-01 19:05:35 -070089 std::unique_ptr<MappedDevice> system_device_;
David Andersonb2988ab2019-04-16 17:14:09 -070090};
91
92} // namespace gsi
93} // namespace android