代码拉取完成,页面将自动刷新
同步操作将从 tupelo-shen/mysnapd 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019-2020 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package gadget
import (
"fmt"
"gitee.com/mysnapcore/mysnapd/gadget/quantity"
"gitee.com/mysnapcore/mysnapd/osutil/disks"
)
// TODO: consider looking into merging LaidOutVolume/Structure OnDiskVolume/Structure
// OnDiskStructure represents a gadget structure laid on a block device.
type OnDiskStructure struct {
LaidOutStructure
// Node identifies the device node of the block device.
Node string
// DiskIndex is the index of the structure on the disk - this should be
// used instead of YamlIndex for an OnDiskStructure, YamlIndex comes from
// the embedded LaidOutStructure which is 0-based and does not have the same
// meaning. A LaidOutStructure's YamlIndex position will include that of
// bare structures which will not show up as an OnDiskStructure, so the
// range of OnDiskStructure.DiskIndex values is not necessarily the same as
// the range of LaidOutStructure.YamlIndex values.
DiskIndex int
// Size of the on disk structure, which is at least equal to the
// LaidOutStructure.Size but may be bigger if the partition was
// expanded.
Size quantity.Size
}
// OnDiskVolume holds information about the disk device including its partitioning
// schema, the partition table, and the structure layout it contains.
type OnDiskVolume struct {
Structure []OnDiskStructure
// ID is the disk's identifier, it is a UUID for GPT disks or an unsigned
// integer for DOS disks encoded as a string in hexadecimal as in
// "0x1212e868".
ID string
// Device is the full device node path for the disk, such as /dev/vda.
Device string
// Schema is the disk schema, GPT or DOS.
Schema string
// size in bytes
Size quantity.Size
// UsableSectorsEnd is the end (exclusive) of usable sectors on the disk,
// this sector specifically is not usable for partitions, though it may be
// used for i.e. GPT header backups on some disks. This should be used when
// calculating the size of an auto-expanded partition instead of the Size
// parameter which does not take this into account.
UsableSectorsEnd uint64
// sector size in bytes
SectorSize quantity.Size
}
// OnDiskVolumeFromDevice obtains the partitioning and filesystem information from
// the block device.
func OnDiskVolumeFromDevice(device string) (*OnDiskVolume, error) {
disk, err := disks.DiskFromDeviceName(device)
if err != nil {
return nil, err
}
return OnDiskVolumeFromDisk(disk)
}
func OnDiskVolumeFromDisk(disk disks.Disk) (*OnDiskVolume, error) {
parts, err := disk.Partitions()
if err != nil {
return nil, err
}
ds := make([]OnDiskStructure, len(parts))
for _, p := range parts {
s, err := OnDiskStructureFromPartition(p)
if err != nil {
return nil, err
}
// Use the index of the structure on the disk rather than the order in
// which we iterate over the list of partitions, since the order of the
// partitions is returned "last seen first" which matches the behavior
// of udev when picking partitions with the same filesystem label and
// populating /dev/disk/by-label/ and friends.
// All that is to say the order that the list of partitions from
// Partitions() is in is _not_ the same as the order that the structures
// actually appear in on disk, but this is why the DiskIndex
// property exists. Also note that DiskIndex starts at 1, as
// opposed to gadget.LaidOutVolume.Structure's Index which starts at 0.
i := p.DiskIndex - 1
ds[i] = s
}
diskSz, err := disk.SizeInBytes()
if err != nil {
return nil, err
}
sectorSz, err := disk.SectorSize()
if err != nil {
return nil, err
}
sectorsEnd, err := disk.UsableSectorsEnd()
if err != nil {
return nil, err
}
dl := &OnDiskVolume{
Structure: ds,
ID: disk.DiskID(),
Device: disk.KernelDeviceNode(),
Schema: disk.Schema(),
Size: quantity.Size(diskSz),
UsableSectorsEnd: sectorsEnd,
SectorSize: quantity.Size(sectorSz),
}
return dl, nil
}
func OnDiskStructureFromPartition(p disks.Partition) (OnDiskStructure, error) {
// the PartitionLabel and FilesystemLabel are encoded, so they must be
// decoded before they can be used in other gadget functions
decodedPartLabel, err := disks.BlkIDDecodeLabel(p.PartitionLabel)
if err != nil {
return OnDiskStructure{}, fmt.Errorf("cannot decode partition label for partition %s: %v", p.KernelDeviceNode, err)
}
decodedFsLabel, err := disks.BlkIDDecodeLabel(p.FilesystemLabel)
if err != nil {
return OnDiskStructure{}, fmt.Errorf("cannot decode filesystem label for partition %s: %v", p.KernelDeviceNode, err)
}
volStruct := VolumeStructure{
Name: decodedPartLabel,
Size: quantity.Size(p.SizeInBytes),
Label: decodedFsLabel,
Type: p.PartitionType,
Filesystem: p.FilesystemType,
ID: p.PartitionUUID,
}
return OnDiskStructure{
LaidOutStructure: LaidOutStructure{
VolumeStructure: &volStruct,
StartOffset: quantity.Offset(p.StartInBytes),
},
DiskIndex: int(p.DiskIndex),
Size: quantity.Size(p.SizeInBytes),
Node: p.KernelDeviceNode,
}, nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。