1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Authors: Cedric Bosdonnat <cbosdonnat@suse.com>
#
# Copyright (C) 2017 SUSE, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# 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/>.
"""
FileSource aim is to extract root filesystem from tar archive to destination
directory or qcow2 image.
"""
import os
import logging
from virtBootstrap import utils
# pylint: disable=invalid-name
# Create logger
logger = logging.getLogger(__name__)
class FileSource(object):
"""
Extract root filesystem from file.
"""
def __init__(self, **kwargs):
"""
Bootstrap root filesystem from tarball
@param uri: Path to tar archive file.
@param fmt: Format used to store image [dir, qcow2]
@param uid_map: Mappings for UID of files in rootfs
@param gid_map: Mappings for GID of files in rootfs
@param root_password: Root password to set in rootfs
@param progress: Instance of the progress module
"""
self.path = kwargs['uri'].path
self.output_format = kwargs.get('fmt', utils.DEFAULT_OUTPUT_FORMAT)
self.uid_map = kwargs.get('uid_map', [])
self.gid_map = kwargs.get('gid_map', [])
self.root_password = kwargs.get('root_password', None)
self.progress = kwargs['progress'].update_progress
def unpack(self, dest):
"""
Safely extract root filesystem from tarball
@param dest: Directory path where the files to be extraced
"""
if not os.path.isfile(self.path):
raise Exception('Invalid file source "%s"' % self.path)
layer = [[self.path, os.path.getsize(self.path)]]
if self.output_format == 'dir':
self.progress("Extracting files into destination directory",
value=0, logger=logger)
utils.untar_layers(layer, dest, self.progress)
elif self.output_format == 'qcow2':
self.progress("Extracting files into qcow2 image", value=0,
logger=logger)
img = utils.BuildImage(
layers=layer,
dest=dest,
progress=self.progress
)
img.create_base_layer()
img.set_root_password(self.root_password)
if self.uid_map or self.gid_map:
logger.info("Mapping UID/GID")
utils.map_id_in_image(
1, # Number of layers
dest,
self.uid_map,
self.gid_map,
(self.root_password is None) # Create new disk?
)
else:
raise Exception("Unknown format:" + self.output_format)
self.progress("Extraction completed successfully!", value=100,
logger=logger)
logger.info("Files are stored in: " + dest)
|