2016-07-16 20:16:13 +00:00
|
|
|
# Copyright 2016 Andreas Florath (andreas@florath.net)
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2017-05-02 03:43:43 +00:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
|
|
|
|
from subprocess import CalledProcessError
|
|
|
|
|
2017-05-18 22:42:00 +00:00
|
|
|
from diskimage_builder.block_device.exception import \
|
2017-05-02 05:32:47 +00:00
|
|
|
BlockDeviceSetupException
|
2016-07-16 20:16:13 +00:00
|
|
|
from diskimage_builder.block_device.level1.mbr import MBR
|
2017-05-25 01:28:13 +00:00
|
|
|
from diskimage_builder.block_device.level1.partition import PartitionNode
|
|
|
|
from diskimage_builder.block_device.plugin import PluginBase
|
2017-05-05 09:57:27 +00:00
|
|
|
from diskimage_builder.block_device.utils import exec_sudo
|
2016-07-16 20:16:13 +00:00
|
|
|
from diskimage_builder.block_device.utils import parse_abs_size_spec
|
|
|
|
from diskimage_builder.block_device.utils import parse_rel_size_spec
|
2017-05-02 03:43:43 +00:00
|
|
|
|
2016-07-16 20:16:13 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2017-05-25 01:28:13 +00:00
|
|
|
class Partitioning(PluginBase):
|
2016-07-16 20:16:13 +00:00
|
|
|
|
2017-06-01 04:31:49 +00:00
|
|
|
def __init__(self, config, default_config, state):
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.debug("Creating Partitioning object; config [%s]", config)
|
2017-05-25 01:28:13 +00:00
|
|
|
super(Partitioning, self).__init__()
|
|
|
|
|
2017-06-01 04:31:49 +00:00
|
|
|
# Unlike other PluginBase we are somewhat persistent, as the
|
|
|
|
# partition nodes call back to us (see create() below). We
|
|
|
|
# need to keep this reference.
|
|
|
|
self.state = state
|
|
|
|
|
2016-07-16 20:16:13 +00:00
|
|
|
# Because using multiple partitions of one base is done
|
|
|
|
# within one object, there is the need to store a flag if the
|
|
|
|
# creation of the partitions was already done.
|
|
|
|
self.already_created = False
|
|
|
|
|
|
|
|
# Parameter check
|
|
|
|
if 'base' not in config:
|
2017-05-09 23:59:26 +00:00
|
|
|
raise BlockDeviceSetupException("Partitioning config needs 'base'")
|
2016-07-16 20:16:13 +00:00
|
|
|
self.base = config['base']
|
|
|
|
|
2017-05-09 23:59:26 +00:00
|
|
|
if 'partitions' not in config:
|
|
|
|
raise BlockDeviceSetupException(
|
|
|
|
"Partitioning config needs 'partitions'")
|
|
|
|
|
2016-07-16 20:16:13 +00:00
|
|
|
if 'label' not in config:
|
2017-05-09 23:59:26 +00:00
|
|
|
raise BlockDeviceSetupException(
|
|
|
|
"Partitioning config needs 'label'")
|
2016-07-16 20:16:13 +00:00
|
|
|
self.label = config['label']
|
|
|
|
if self.label not in ("mbr", ):
|
2017-05-09 23:59:26 +00:00
|
|
|
raise BlockDeviceSetupException("Label must be 'mbr'")
|
2016-07-16 20:16:13 +00:00
|
|
|
|
|
|
|
# It is VERY important to get the alignment correct. If this
|
|
|
|
# is not correct, the disk performance might be very poor.
|
|
|
|
# Example: In some tests a 'off by one' leads to a write
|
|
|
|
# performance of 30% compared to a correctly aligned
|
|
|
|
# partition.
|
|
|
|
# The problem for DIB is, that it cannot assume that the host
|
|
|
|
# system uses the same IO sizes as the target system,
|
|
|
|
# therefore here a fixed approach (as used in all modern
|
|
|
|
# systems with large disks) is used. The partitions are
|
|
|
|
# aligned to 1MiB (which are about 2048 times 512 bytes
|
|
|
|
# blocks)
|
|
|
|
self.align = 1024 * 1024 # 1MiB as default
|
|
|
|
if 'align' in config:
|
|
|
|
self.align = parse_abs_size_spec(config['align'])
|
|
|
|
|
2017-05-01 08:52:52 +00:00
|
|
|
self.partitions = []
|
|
|
|
prev_partition = None
|
|
|
|
|
2016-07-16 20:16:13 +00:00
|
|
|
for part_cfg in config['partitions']:
|
2017-06-01 04:31:49 +00:00
|
|
|
np = PartitionNode(part_cfg, state, self, prev_partition)
|
2017-05-01 08:52:52 +00:00
|
|
|
self.partitions.append(np)
|
|
|
|
prev_partition = np
|
2016-07-16 20:16:13 +00:00
|
|
|
|
2017-05-25 01:28:13 +00:00
|
|
|
def get_nodes(self):
|
|
|
|
# return the list of partitions
|
|
|
|
return self.partitions
|
|
|
|
|
2016-07-16 20:16:13 +00:00
|
|
|
def _size_of_block_dev(self, dev):
|
|
|
|
with open(dev, "r") as fd:
|
|
|
|
fd.seek(0, 2)
|
|
|
|
return fd.tell()
|
|
|
|
|
2017-01-26 18:33:02 +00:00
|
|
|
def _all_part_devices_exist(self, expected_part_devices):
|
|
|
|
for part_device in expected_part_devices:
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.debug("Checking if partition device [%s] exists",
|
2017-01-26 18:33:02 +00:00
|
|
|
part_device)
|
|
|
|
if not os.path.exists(part_device):
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.info("Partition device [%s] does not exists",
|
|
|
|
part_device)
|
2017-01-26 18:33:02 +00:00
|
|
|
return False
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.debug("Partition already exists [%s]", part_device)
|
2017-01-26 18:33:02 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
def _notify_os_of_partition_changes(self, device_path, partition_devices):
|
|
|
|
"""Notify of of partition table changes
|
|
|
|
|
|
|
|
There is the need to call some programs to inform the operating
|
|
|
|
system of partition tables changes.
|
|
|
|
These calls are highly distribution and version specific. Here
|
|
|
|
a couple of different methods are used to get the best result.
|
|
|
|
"""
|
2017-05-09 01:01:11 +00:00
|
|
|
try:
|
|
|
|
exec_sudo(["partprobe", device_path])
|
|
|
|
exec_sudo(["udevadm", "settle"])
|
|
|
|
except CalledProcessError as e:
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.info("Ignoring settling failure: %s", e)
|
2017-05-09 01:01:11 +00:00
|
|
|
pass
|
2017-01-26 18:33:02 +00:00
|
|
|
|
|
|
|
if self._all_part_devices_exist(partition_devices):
|
|
|
|
return
|
|
|
|
# If running inside Docker, make our nodes manually, because udev
|
|
|
|
# will not be working.
|
|
|
|
if os.path.exists("/.dockerenv"):
|
|
|
|
# kpartx cannot run in sync mode in docker.
|
2017-05-05 09:57:27 +00:00
|
|
|
exec_sudo(["kpartx", "-av", device_path])
|
|
|
|
exec_sudo(["dmsetup", "--noudevsync", "mknodes"])
|
2017-01-26 18:33:02 +00:00
|
|
|
return
|
|
|
|
|
2017-05-05 09:57:27 +00:00
|
|
|
exec_sudo(["kpartx", "-avs", device_path])
|
2017-01-26 18:33:02 +00:00
|
|
|
|
2017-06-02 00:57:06 +00:00
|
|
|
def create(self):
|
2017-05-25 01:28:13 +00:00
|
|
|
# not this is NOT a node and this is not called directly! The
|
|
|
|
# create() calls in the partition nodes this plugin has
|
|
|
|
# created are calling back into this.
|
2017-06-01 04:31:49 +00:00
|
|
|
image_path = self.state['blockdev'][self.base]['image']
|
|
|
|
device_path = self.state['blockdev'][self.base]['device']
|
2017-05-30 02:06:41 +00:00
|
|
|
logger.info("Creating partition on [%s] [%s]", self.base, image_path)
|
2016-07-16 20:16:13 +00:00
|
|
|
|
2017-05-25 01:28:13 +00:00
|
|
|
# This is a bit of a hack. Each of the partitions is actually
|
|
|
|
# in the graph, so for every partition we get a create() call
|
|
|
|
# as the walk happens. But we only need to create the
|
|
|
|
# partition table once...
|
2016-07-16 20:16:13 +00:00
|
|
|
if self.already_created:
|
|
|
|
logger.info("Not creating the partitions a second time.")
|
|
|
|
return
|
|
|
|
|
|
|
|
assert self.label == 'mbr'
|
|
|
|
|
2017-01-26 18:33:02 +00:00
|
|
|
partition_devices = set()
|
2016-07-16 20:16:13 +00:00
|
|
|
disk_size = self._size_of_block_dev(image_path)
|
|
|
|
with MBR(image_path, disk_size, self.align) as part_impl:
|
2017-05-01 08:52:52 +00:00
|
|
|
for part_cfg in self.partitions:
|
|
|
|
part_name = part_cfg.get_name()
|
2017-05-25 01:28:13 +00:00
|
|
|
part_bootflag = PartitionNode.flag_boot \
|
2016-07-16 20:16:13 +00:00
|
|
|
in part_cfg.get_flags()
|
2017-05-25 01:28:13 +00:00
|
|
|
part_primary = PartitionNode.flag_primary \
|
2016-07-16 20:16:13 +00:00
|
|
|
in part_cfg.get_flags()
|
|
|
|
part_size = part_cfg.get_size()
|
|
|
|
part_free = part_impl.free()
|
|
|
|
part_type = part_cfg.get_type()
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.debug("Not partitioned space [%d]", part_free)
|
2016-07-16 20:16:13 +00:00
|
|
|
part_size = parse_rel_size_spec(part_size,
|
|
|
|
part_free)[1]
|
|
|
|
part_no \
|
|
|
|
= part_impl.add_partition(part_primary, part_bootflag,
|
|
|
|
part_size, part_type)
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.debug("Create partition [%s] [%d]",
|
|
|
|
part_name, part_no)
|
2017-01-26 18:33:02 +00:00
|
|
|
partition_device_name = device_path + "p%d" % part_no
|
2017-06-01 04:31:49 +00:00
|
|
|
self.state['blockdev'][part_name] \
|
2017-05-01 07:19:49 +00:00
|
|
|
= {'device': partition_device_name}
|
2017-01-26 18:33:02 +00:00
|
|
|
partition_devices.add(partition_device_name)
|
2016-07-16 20:16:13 +00:00
|
|
|
|
|
|
|
self.already_created = True
|
2017-01-26 18:33:02 +00:00
|
|
|
self._notify_os_of_partition_changes(device_path, partition_devices)
|
2016-07-16 20:16:13 +00:00
|
|
|
return
|