2018-07-20 22:35:50 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2018-07-25 00:21:20 +02:00
|
|
|
#include <optional>
|
2018-07-20 22:35:50 +02:00
|
|
|
#include <string>
|
|
|
|
|
2018-07-25 00:21:20 +02:00
|
|
|
#include <android-base/unique_fd.h>
|
2018-07-20 22:35:50 +02:00
|
|
|
#include <android/hardware/boot/1.0/IBootControl.h>
|
fastbootd: Support two super partitions for retrofit devices.
Retrofit devices will have two super partitions, spanning the A and B
slots separately. By design an OTA will never cause "A" or "B"
partitions to be assigned to the wrong super. However, the same is not
true of fastbootd, where it is possible to flash the inactive slot. We
do not want, for example, logical "system_a" flashing to super_b.
When interacting with partitions, fastbootd now extracts the slot suffix
from a GetSuperSlotSuffix() helper. On retrofit devices, if the partition
name has a slot, that slot will override FastbootDevice::GetCurrentSlot.
This forces partitions in the inactive slot to be assigned to the correct
super.
There are two consequences of this. First, partitions with no slot
suffix will default to the current slot. That means it is possible to
wind up with two "scratch" partitions, if "adb remount" is used on both
the "A" and "B" slots. However, only the active slot's "scratch" will be
visible to the user (either through adb or fastboot).
Second, if one slot does not have dynamic partitions, flashing will
default to fixed partitions. For example, if the A slot is logical and B
is not, flashing "system_a" will be logical and "system_b" will be
fixed. This works no matter which slot is active. We do not try to
upgrade the inactive slot to dynamic partitions.
Bug: 116802789
Test: fastboot set_active a
fastboot flashall # dynamic partitions
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # false
fastboot set_active b
fastboot flashall --skip-secondary
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # true
Booting both slots works.
Change-Id: Ib3c91944aaee1a96b2f5ad69c90e215bd6c5a2e8
2018-11-10 05:41:33 +01:00
|
|
|
#include <liblp/liblp.h>
|
2018-07-20 22:35:50 +02:00
|
|
|
|
2018-07-25 00:21:20 +02:00
|
|
|
// Logical partitions are only mapped to a block device as needed, and
|
|
|
|
// immediately unmapped when no longer needed. In order to enforce this we
|
|
|
|
// require accessing partitions through a Handle abstraction, which may perform
|
|
|
|
// additional operations after closing its file descriptor.
|
|
|
|
class PartitionHandle {
|
|
|
|
public:
|
|
|
|
PartitionHandle() {}
|
|
|
|
explicit PartitionHandle(const std::string& path) : path_(path) {}
|
2018-08-09 19:40:00 +02:00
|
|
|
PartitionHandle(const std::string& path, std::function<void()>&& closer)
|
|
|
|
: path_(path), closer_(std::move(closer)) {}
|
|
|
|
PartitionHandle(PartitionHandle&& other) = default;
|
|
|
|
PartitionHandle& operator=(PartitionHandle&& other) = default;
|
|
|
|
~PartitionHandle() {
|
|
|
|
if (closer_) {
|
|
|
|
// Make sure the device is closed first.
|
|
|
|
fd_ = {};
|
|
|
|
closer_();
|
|
|
|
}
|
|
|
|
}
|
2018-07-25 00:21:20 +02:00
|
|
|
const std::string& path() const { return path_; }
|
|
|
|
int fd() const { return fd_.get(); }
|
|
|
|
void set_fd(android::base::unique_fd&& fd) { fd_ = std::move(fd); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string path_;
|
|
|
|
android::base::unique_fd fd_;
|
2018-08-09 19:40:00 +02:00
|
|
|
std::function<void()> closer_;
|
2018-07-25 00:21:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class FastbootDevice;
|
|
|
|
|
fastbootd: Support two super partitions for retrofit devices.
Retrofit devices will have two super partitions, spanning the A and B
slots separately. By design an OTA will never cause "A" or "B"
partitions to be assigned to the wrong super. However, the same is not
true of fastbootd, where it is possible to flash the inactive slot. We
do not want, for example, logical "system_a" flashing to super_b.
When interacting with partitions, fastbootd now extracts the slot suffix
from a GetSuperSlotSuffix() helper. On retrofit devices, if the partition
name has a slot, that slot will override FastbootDevice::GetCurrentSlot.
This forces partitions in the inactive slot to be assigned to the correct
super.
There are two consequences of this. First, partitions with no slot
suffix will default to the current slot. That means it is possible to
wind up with two "scratch" partitions, if "adb remount" is used on both
the "A" and "B" slots. However, only the active slot's "scratch" will be
visible to the user (either through adb or fastboot).
Second, if one slot does not have dynamic partitions, flashing will
default to fixed partitions. For example, if the A slot is logical and B
is not, flashing "system_a" will be logical and "system_b" will be
fixed. This works no matter which slot is active. We do not try to
upgrade the inactive slot to dynamic partitions.
Bug: 116802789
Test: fastboot set_active a
fastboot flashall # dynamic partitions
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # false
fastboot set_active b
fastboot flashall --skip-secondary
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # true
Booting both slots works.
Change-Id: Ib3c91944aaee1a96b2f5ad69c90e215bd6c5a2e8
2018-11-10 05:41:33 +01:00
|
|
|
// On normal devices, the super partition is always named "super". On retrofit
|
|
|
|
// devices, the name must be derived from the partition name or current slot.
|
|
|
|
// This helper assists in choosing the correct super for a given partition
|
|
|
|
// name.
|
|
|
|
std::string GetSuperSlotSuffix(FastbootDevice* device, const std::string& partition_name);
|
|
|
|
|
2018-07-25 00:21:20 +02:00
|
|
|
std::optional<std::string> FindPhysicalPartition(const std::string& name);
|
fastbootd: Support two super partitions for retrofit devices.
Retrofit devices will have two super partitions, spanning the A and B
slots separately. By design an OTA will never cause "A" or "B"
partitions to be assigned to the wrong super. However, the same is not
true of fastbootd, where it is possible to flash the inactive slot. We
do not want, for example, logical "system_a" flashing to super_b.
When interacting with partitions, fastbootd now extracts the slot suffix
from a GetSuperSlotSuffix() helper. On retrofit devices, if the partition
name has a slot, that slot will override FastbootDevice::GetCurrentSlot.
This forces partitions in the inactive slot to be assigned to the correct
super.
There are two consequences of this. First, partitions with no slot
suffix will default to the current slot. That means it is possible to
wind up with two "scratch" partitions, if "adb remount" is used on both
the "A" and "B" slots. However, only the active slot's "scratch" will be
visible to the user (either through adb or fastboot).
Second, if one slot does not have dynamic partitions, flashing will
default to fixed partitions. For example, if the A slot is logical and B
is not, flashing "system_a" will be logical and "system_b" will be
fixed. This works no matter which slot is active. We do not try to
upgrade the inactive slot to dynamic partitions.
Bug: 116802789
Test: fastboot set_active a
fastboot flashall # dynamic partitions
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # false
fastboot set_active b
fastboot flashall --skip-secondary
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # true
Booting both slots works.
Change-Id: Ib3c91944aaee1a96b2f5ad69c90e215bd6c5a2e8
2018-11-10 05:41:33 +01:00
|
|
|
bool LogicalPartitionExists(FastbootDevice* device, const std::string& name,
|
2018-08-09 19:40:00 +02:00
|
|
|
bool* is_zero_length = nullptr);
|
2018-07-25 00:21:20 +02:00
|
|
|
bool OpenPartition(FastbootDevice* device, const std::string& name, PartitionHandle* handle);
|
2018-07-20 22:35:50 +02:00
|
|
|
bool GetSlotNumber(const std::string& slot, android::hardware::boot::V1_0::Slot* number);
|
2018-09-01 01:44:25 +02:00
|
|
|
std::vector<std::string> ListPartitions(FastbootDevice* device);
|
2018-09-25 01:01:35 +02:00
|
|
|
bool GetDeviceLockStatus();
|
fastbootd: Support two super partitions for retrofit devices.
Retrofit devices will have two super partitions, spanning the A and B
slots separately. By design an OTA will never cause "A" or "B"
partitions to be assigned to the wrong super. However, the same is not
true of fastbootd, where it is possible to flash the inactive slot. We
do not want, for example, logical "system_a" flashing to super_b.
When interacting with partitions, fastbootd now extracts the slot suffix
from a GetSuperSlotSuffix() helper. On retrofit devices, if the partition
name has a slot, that slot will override FastbootDevice::GetCurrentSlot.
This forces partitions in the inactive slot to be assigned to the correct
super.
There are two consequences of this. First, partitions with no slot
suffix will default to the current slot. That means it is possible to
wind up with two "scratch" partitions, if "adb remount" is used on both
the "A" and "B" slots. However, only the active slot's "scratch" will be
visible to the user (either through adb or fastboot).
Second, if one slot does not have dynamic partitions, flashing will
default to fixed partitions. For example, if the A slot is logical and B
is not, flashing "system_a" will be logical and "system_b" will be
fixed. This works no matter which slot is active. We do not try to
upgrade the inactive slot to dynamic partitions.
Bug: 116802789
Test: fastboot set_active a
fastboot flashall # dynamic partitions
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # false
fastboot set_active b
fastboot flashall --skip-secondary
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # true
Booting both slots works.
Change-Id: Ib3c91944aaee1a96b2f5ad69c90e215bd6c5a2e8
2018-11-10 05:41:33 +01:00
|
|
|
|
|
|
|
// Update all copies of metadata.
|
2018-12-18 02:07:34 +01:00
|
|
|
bool UpdateAllPartitionMetadata(FastbootDevice* device, const std::string& super_name,
|
fastbootd: Support two super partitions for retrofit devices.
Retrofit devices will have two super partitions, spanning the A and B
slots separately. By design an OTA will never cause "A" or "B"
partitions to be assigned to the wrong super. However, the same is not
true of fastbootd, where it is possible to flash the inactive slot. We
do not want, for example, logical "system_a" flashing to super_b.
When interacting with partitions, fastbootd now extracts the slot suffix
from a GetSuperSlotSuffix() helper. On retrofit devices, if the partition
name has a slot, that slot will override FastbootDevice::GetCurrentSlot.
This forces partitions in the inactive slot to be assigned to the correct
super.
There are two consequences of this. First, partitions with no slot
suffix will default to the current slot. That means it is possible to
wind up with two "scratch" partitions, if "adb remount" is used on both
the "A" and "B" slots. However, only the active slot's "scratch" will be
visible to the user (either through adb or fastboot).
Second, if one slot does not have dynamic partitions, flashing will
default to fixed partitions. For example, if the A slot is logical and B
is not, flashing "system_a" will be logical and "system_b" will be
fixed. This works no matter which slot is active. We do not try to
upgrade the inactive slot to dynamic partitions.
Bug: 116802789
Test: fastboot set_active a
fastboot flashall # dynamic partitions
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # false
fastboot set_active b
fastboot flashall --skip-secondary
fastboot getvar is-logical:system_a # true
fastboot getvar is-logical:system_b # true
Booting both slots works.
Change-Id: Ib3c91944aaee1a96b2f5ad69c90e215bd6c5a2e8
2018-11-10 05:41:33 +01:00
|
|
|
const android::fs_mgr::LpMetadata& metadata);
|