2017-01-29 23:52:40 +00:00
|
|
|
# Copyright 2017 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.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
|
2017-05-18 22:42:00 +00:00
|
|
|
from diskimage_builder.block_device.exception \
|
2017-01-29 23:52:40 +00:00
|
|
|
import BlockDeviceSetupException
|
2017-05-25 01:28:13 +00:00
|
|
|
from diskimage_builder.block_device.plugin import NodeBase
|
|
|
|
from diskimage_builder.block_device.plugin import PluginBase
|
2017-01-29 23:52:40 +00:00
|
|
|
from diskimage_builder.block_device.utils import exec_sudo
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
# The order of mounting and unmounting is important.
|
2017-05-31 00:41:02 +00:00
|
|
|
sorted_mount_points = []
|
2017-01-29 23:52:40 +00:00
|
|
|
|
|
|
|
|
2017-05-25 01:28:13 +00:00
|
|
|
class MountPointNode(NodeBase):
|
2017-01-29 23:52:40 +00:00
|
|
|
|
|
|
|
def __init__(self, mount_base, config):
|
2017-05-25 01:28:13 +00:00
|
|
|
super(MountPointNode, self).__init__(config['name'])
|
|
|
|
|
2017-01-29 23:52:40 +00:00
|
|
|
# Parameter check
|
|
|
|
self.mount_base = mount_base
|
2017-05-25 01:28:13 +00:00
|
|
|
for pname in ['base', 'mount_point']:
|
2017-01-29 23:52:40 +00:00
|
|
|
if pname not in config:
|
2017-05-09 23:59:26 +00:00
|
|
|
raise BlockDeviceSetupException(
|
|
|
|
"MountPoint config needs [%s]" % pname)
|
2017-01-29 23:52:40 +00:00
|
|
|
setattr(self, pname, config[pname])
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.debug("MountPoint created [%s]", self)
|
2017-01-29 23:52:40 +00:00
|
|
|
|
2017-05-31 00:41:02 +00:00
|
|
|
def __lt__(self, other):
|
|
|
|
# in words: if the other mount-point has us as it's
|
|
|
|
# parent, we come before it (less than it). e.g.
|
|
|
|
# /var < /var/log < /var/log/foo
|
|
|
|
return other.mount_point.startswith(self.mount_point)
|
2017-01-29 23:52:40 +00:00
|
|
|
|
2017-05-23 23:57:32 +00:00
|
|
|
def get_edges(self):
|
2017-01-29 23:52:40 +00:00
|
|
|
"""Insert all edges
|
|
|
|
|
|
|
|
The dependency edge is created in all cases from the base
|
|
|
|
element (typically a mkfs) and, if this is not the 'first'
|
2017-05-31 00:41:02 +00:00
|
|
|
mount-point, an edge is created from the mount-point before in
|
|
|
|
"sorted order" (see :func:`sort_mount_points`). This ensures
|
|
|
|
that during mounting (and umounting) the globally correct
|
2017-01-29 23:52:40 +00:00
|
|
|
order is used.
|
|
|
|
"""
|
2017-05-23 23:57:32 +00:00
|
|
|
edge_from = []
|
|
|
|
edge_to = []
|
2017-01-29 23:52:40 +00:00
|
|
|
|
2017-05-31 00:41:02 +00:00
|
|
|
# If we are not first, add our parent in the global dependency
|
|
|
|
# list
|
|
|
|
mpi = sorted_mount_points.index(self)
|
2017-01-29 23:52:40 +00:00
|
|
|
if mpi > 0:
|
2017-05-31 00:41:02 +00:00
|
|
|
dep = sorted_mount_points[mpi - 1]
|
2017-05-23 23:57:32 +00:00
|
|
|
edge_from.append(dep.name)
|
2017-01-29 23:52:40 +00:00
|
|
|
|
2017-05-23 23:57:32 +00:00
|
|
|
edge_from.append(self.base)
|
|
|
|
return (edge_from, edge_to)
|
2017-01-29 23:52:40 +00:00
|
|
|
|
2017-05-30 02:06:41 +00:00
|
|
|
def create(self, state, rollback):
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.debug("mount called [%s]", self.mount_point)
|
2017-01-29 23:52:40 +00:00
|
|
|
rel_mp = self.mount_point if self.mount_point[0] != '/' \
|
|
|
|
else self.mount_point[1:]
|
|
|
|
mount_point = os.path.join(self.mount_base, rel_mp)
|
|
|
|
if not os.path.exists(mount_point):
|
|
|
|
# Need to sudo this because of permissions in the new
|
|
|
|
# file system tree.
|
|
|
|
exec_sudo(['mkdir', '-p', mount_point])
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.info("Mounting [%s] to [%s]", self.name, mount_point)
|
2017-05-30 02:06:41 +00:00
|
|
|
exec_sudo(["mount", state['filesys'][self.base]['device'],
|
2017-01-29 23:52:40 +00:00
|
|
|
mount_point])
|
|
|
|
|
2017-05-30 02:06:41 +00:00
|
|
|
if 'mount' not in state:
|
|
|
|
state['mount'] = {}
|
|
|
|
state['mount'][self.mount_point] \
|
2017-01-29 23:52:40 +00:00
|
|
|
= {'name': self.name, 'base': self.base, 'path': mount_point}
|
|
|
|
|
2017-05-30 02:06:41 +00:00
|
|
|
if 'mount_order' not in state:
|
|
|
|
state['mount_order'] = []
|
|
|
|
state['mount_order'].append(self.mount_point)
|
2017-01-29 23:52:40 +00:00
|
|
|
|
|
|
|
def umount(self, state):
|
2017-05-28 05:19:05 +00:00
|
|
|
logger.info("Called for [%s]", self.name)
|
2017-01-29 23:52:40 +00:00
|
|
|
exec_sudo(["umount", state['mount'][self.mount_point]['path']])
|
|
|
|
|
|
|
|
def delete(self, state):
|
|
|
|
self.umount(state)
|
|
|
|
|
|
|
|
|
2017-05-25 01:28:13 +00:00
|
|
|
class Mount(PluginBase):
|
|
|
|
def __init__(self, config, defaults):
|
|
|
|
super(Mount, self).__init__()
|
2017-01-29 23:52:40 +00:00
|
|
|
|
2017-05-25 01:28:13 +00:00
|
|
|
if 'mount-base' not in defaults:
|
2017-05-09 23:59:26 +00:00
|
|
|
raise BlockDeviceSetupException(
|
|
|
|
"Mount default config needs 'mount-base'")
|
2017-05-31 00:41:02 +00:00
|
|
|
self.node = MountPointNode(defaults['mount-base'], config)
|
2017-01-29 23:52:40 +00:00
|
|
|
|
2017-05-31 00:41:02 +00:00
|
|
|
# save this new node to the global mount-point list and
|
|
|
|
# re-order it.
|
|
|
|
global sorted_mount_points
|
|
|
|
mount_points = [x.mount_point for x in sorted_mount_points]
|
|
|
|
if self.node.mount_point in mount_points:
|
|
|
|
raise BlockDeviceSetupException(
|
|
|
|
"Mount point [%s] specified more than once"
|
|
|
|
% self.node.mount_point)
|
|
|
|
sorted_mount_points.append(self.node)
|
|
|
|
sorted_mount_points.sort()
|
|
|
|
logger.debug("Ordered mounts now: %s", sorted_mount_points)
|
2017-01-29 23:52:40 +00:00
|
|
|
|
2017-05-23 23:57:32 +00:00
|
|
|
def get_nodes(self):
|
2017-05-31 00:41:02 +00:00
|
|
|
return [self.node]
|