/usr/lib/python3/dist-packages/freedommaker/builder.py is in freedom-maker 0.12.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 | #!/usr/bin/python3
#
# This file is part of Freedom Maker.
#
# 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/>.
#
"""
Worker class to run various command build the image.
"""
import logging
import os
import shutil
import subprocess
import tempfile
from . import vmdb2
from . import vmdebootstrap
BASE_PACKAGES = [
'initramfs-tools',
]
logger = logging.getLogger(__name__) # pylint: disable=invalid-name
class ImageBuilder(object): # pylint: disable=too-many-instance-attributes
"""Base for all image builders."""
architecture = None
machine = 'all'
free = True
builder_backend = 'vmdebootstrap'
root_filesystem_type = 'btrfs'
boot_filesystem_type = None
boot_size = None
boot_offset = None
kernel_flavor = 'default'
debootstrap_variant = None
@classmethod
def get_target_name(cls):
"""Return the command line name of target for this builder."""
return None
@classmethod
def get_builder_class(cls, target):
"""Return an builder class given target name."""
for cls in cls.get_subclasses():
if cls.get_target_name() == target:
return cls
@classmethod
def get_subclasses(cls):
"""Iterate through the subclasses of this class."""
for subclass in cls.__subclasses__():
yield subclass
yield from subclass.get_subclasses()
def __init__(self, arguments):
"""Initialize object."""
self.arguments = arguments
self.packages = BASE_PACKAGES
self.ram_directory = None
self.builder_backends = {}
self.builder_backends['vmdebootstrap'] = \
vmdebootstrap.VmdebootstrapBuilderBackend(self)
self.builder_backends['vmdb2'] = vmdb2.Vmdb2BuilderBackend(self)
self.image_file = os.path.join(
self.arguments.build_dir, self._get_image_base_name() + '.img')
self.log_file = os.path.join(
self.arguments.build_dir, self._get_image_base_name() + '.log')
# Setup logging
formatter = logging.root.handlers[0].formatter
self.log_handler = logging.FileHandler(
filename=self.log_file, mode='a')
self.log_handler.setFormatter(formatter)
logger.addHandler(self.log_handler)
self.customization_script = os.path.join(
os.path.dirname(__file__), 'freedombox-customize')
def cleanup(self):
"""Finalize tasks."""
logger.info('Cleaning up')
if self.ram_directory:
self._run(['sudo', 'umount', self.ram_directory.name])
self.ram_directory.cleanup()
self.ram_directory = None
logger.removeHandler(self.log_handler)
def build(self):
"""Run the image building process."""
# Create empty log file owned by process runner
open(self.log_file, 'w').close()
archive_file = self.image_file + '.xz'
if not self.should_skip_step(archive_file):
self.make_image()
self.compress(archive_file, self.image_file)
else:
logger.info('Compressed image exists, skipping')
self.sign(archive_file)
def make_image(self):
"""Call a builder backend to create basic image."""
self.builder_backends[self.builder_backend].make_image()
def _get_image_base_name(self):
"""Return the base file name of the final image."""
free_tag = 'free' if self.free else 'nonfree'
return 'freedombox-{distribution}-{free_tag}_{build_stamp}_{machine}' \
'-{architecture}'.format(
distribution=self.arguments.distribution, free_tag=free_tag,
build_stamp=self.arguments.build_stamp, machine=self.machine,
architecture=self.architecture)
def get_temp_image_file(self):
"""Get the temporary path to where the image should be built.
If building to RAM is enabled, create a temporary directory, mount
tmpfs in it and return a path in that directory. This is so that builds
that happen in RAM will be faster.
If building to RAM is disabled, append .temp to the final file name and
return it.
"""
if not self.arguments.build_in_ram:
return self.image_file + '.temp'
self.ram_directory = tempfile.TemporaryDirectory()
self._run(
['sudo', 'mount', '-t', 'tmpfs', 'tmpfs', self.ram_directory.name])
return os.path.join(self.ram_directory.name,
os.path.basename(self.image_file))
def compress(self, archive_file, image_file):
"""Compress the generate image."""
if self.should_skip_step(archive_file, [image_file]):
logger.info('Compressed image exists, skipping compression - %s',
archive_file)
return
command = ['xz', '--no-warn', '--best', '--force']
if shutil.which('pxz'):
command = ['pxz', '-9', '--force']
self._run(command + [image_file])
def sign(self, archive):
"""Signed the final output image."""
if not self.arguments.sign:
return
signature = archive + '.sig'
if self.should_skip_step(signature, [archive]):
logger.info('Signature file up-to-date, skipping - %s', signature)
return
try:
os.remove(signature)
except FileNotFoundError:
pass
self._run(['gpg', '--output', signature, '--detach-sig', archive])
def should_skip_step(self, target, dependencies=None):
"""Check whether a given build step may be skipped."""
# Check forced rebuild
if self.arguments.force:
return False
# Check if target exists
if not os.path.isfile(target):
return False
# Check if a dependency is newer than the target
for dependency in (dependencies or []):
if os.path.getmtime(dependency) > os.path.getmtime(target):
return False
return True
@staticmethod
def _replace_extension(file_name, new_extension):
"""Replace a file's extension with a new extention."""
return file_name.rsplit('.', maxsplit=1)[0] + new_extension
def _run(self, *args, **kwargs):
"""Execute a program and log output to log file."""
logger.info('Executing command - %s', args)
with open(self.log_file, 'a') as file_handle:
subprocess.check_call(*args, stdout=file_handle,
stderr=file_handle, **kwargs)
class AMDIntelImageBuilder(ImageBuilder):
"""Base image build for all Intel/AMD targets."""
boot_loader = 'grub'
@classmethod
def get_target_name(cls):
"""Return the name of the target for an image builder."""
return getattr(cls, 'architecture', None)
class AMD64ImageBuilder(AMDIntelImageBuilder):
"""Image builder for all amd64 targets."""
architecture = 'amd64'
class I386ImageBuilder(AMDIntelImageBuilder):
"""Image builder for all i386 targets."""
architecture = 'i386'
kernel_flavor = '686'
class VMImageBuilder(AMDIntelImageBuilder):
"""Base image builder for all virtual machine targets."""
vm_image_extension = None
def build(self):
"""Run the image building process."""
archive_file = self.image_file + '.xz'
vm_file = self._replace_extension(
self.image_file, self.vm_image_extension)
vm_archive_file = vm_file + '.xz'
# Create empty log file owned by process runner
open(self.log_file, 'w').close()
if not self.should_skip_step(vm_archive_file):
if not self.should_skip_step(self.image_file):
if self.should_skip_step(archive_file):
logger.info('Compressed image exists, uncompressing - %s',
archive_file)
self._run(['unxz', '--keep', archive_file])
else:
self.make_image()
else:
logger.info('Pre-built image exists, skipping build - %s',
self.image_file)
self.create_vm_file(self.image_file, vm_file)
os.remove(self.image_file)
self.compress(vm_archive_file, vm_file)
else:
logger.info('Compressed VM image exists, skipping - %s',
vm_archive_file)
self.sign(vm_archive_file)
def create_vm_file(self, image_file, vm_file):
"""Create a VM image from image file."""
raise Exception('Not reached')
class VirtualBoxImageBuilder(VMImageBuilder):
"""Base image builder for all VirutalBox targets."""
vm_image_extension = '.vdi'
@classmethod
def get_target_name(cls):
"""Return the name of the target for an image builder."""
if getattr(cls, 'architecture', None):
return 'virtualbox-' + cls.architecture
def create_vm_file(self, image_file, vm_file):
"""Create a VM file from image file."""
if self.should_skip_step(vm_file, [image_file]):
logger.info('VM file exists, skipping conversion - %s', vm_file)
return
self._run(['VBoxManage', 'convertdd', image_file, vm_file])
class VirtualBoxAmd64ImageBuilder(VirtualBoxImageBuilder):
"""Image builder for all VirutalBox amd64 targets."""
architecture = 'amd64'
class VirtualBoxI386ImageBuilder(VirtualBoxImageBuilder):
"""Image builder for all VirutalBox i386 targets."""
architecture = 'i386'
kernel_flavor = '686'
class VagrantImageBuilder(VirtualBoxAmd64ImageBuilder):
"""Image builder for Vagrant package."""
vagrant_extension = '.box'
@classmethod
def get_target_name(cls):
"""Return the name of the target for an image builder."""
return 'vagrant'
def build(self):
"""Run the image building process."""
archive_file = self.image_file + '.xz'
vm_file = self._replace_extension(
self.image_file, self.vm_image_extension)
vm_archive_file = vm_file + '.xz'
vagrant_file = self._replace_extension(
self.image_file, self.vagrant_extension)
# Create empty log file owned by process runner
open(self.log_file, 'w').close()
if self.should_skip_step(vagrant_file):
logger.info('Vagrant package exists, skipping - %s',
vagrant_file)
return
if self.should_skip_step(vm_file):
logger.info('VM image exists, skipping - %s', vm_archive_file)
self.vagrant_package(vm_file, vagrant_file)
return
if self.should_skip_step(vm_archive_file):
logger.info('Compressed VM image exists, skipping - %s',
vm_archive_file)
self._run(['unxz', '--keep', vm_archive_file])
self.vagrant_package(vm_file, vagrant_file)
return
if self.should_skip_step(self.image_file):
logger.info(
'Pre-built image exists, skipping build - %s', self.image_file)
self.create_vm_file(self.image_file, vm_file)
self.vagrant_package(vm_file, vagrant_file)
return
if self.should_skip_step(archive_file):
logger.info(
'Compressed image exists, uncompressing - %s', archive_file)
self._run(['unxz', '--keep', archive_file])
self.create_vm_file(self.image_file, vm_file)
os.remove(self.image_file)
self.vagrant_package(vm_file, vagrant_file)
return
self.make_image()
self.create_vm_file(self.image_file, vm_file)
os.remove(self.image_file)
self.vagrant_package(vm_file, vagrant_file)
def vagrant_package(self, vm_file, vagrant_file):
"""Create a vagrant package from VM file."""
self._run(['sudo', 'bin/vagrant-package', '--output', vagrant_file,
vm_file])
class QemuImageBuilder(VMImageBuilder):
"""Base image builder for all Qemu targets."""
vm_image_extension = '.qcow2'
@classmethod
def get_target_name(cls):
"""Return the name of the target for an image builder."""
if getattr(cls, 'architecture', None):
return 'qemu-' + cls.architecture
def create_vm_file(self, image_file, vm_file):
"""Create a VM image file from image file."""
if self.should_skip_step(vm_file, [image_file]):
logger.info('VM file exists, skipping conversion - %s', vm_file)
return
self._run(['qemu-img', 'convert', '-O', 'qcow2', image_file, vm_file])
class QemuAmd64ImageBuilder(QemuImageBuilder):
"""Image builder for all Qemu amd64 targets."""
architecture = 'amd64'
class QemuI386ImageBuilder(QemuImageBuilder):
"""Image builder for all Qemu i386 targets."""
architecture = 'i386'
kernel_flavor = '686'
class ARMImageBuilder(ImageBuilder):
"""Base image builder for all ARM targets."""
boot_loader = 'u-boot'
boot_filesystem_type = 'ext2'
boot_size = '128M'
@classmethod
def get_target_name(cls):
"""Return the name of the target for an image builder."""
return getattr(cls, 'machine', None)
class BeagleBoneImageBuilder(ARMImageBuilder):
"""Image builder for BeagleBone target."""
architecture = 'armhf'
machine = 'beaglebone'
kernel_flavor = 'armmp'
boot_offset = '2mib'
class A20ImageBuilder(ARMImageBuilder):
"""Base image builder for all Allwinner A20 board based targets."""
architecture = 'armhf'
kernel_flavor = 'armmp-lpae'
boot_offset = '1mib'
class A20OLinuXinoLimeImageBuilder(A20ImageBuilder):
"""Image builder for A20 OLinuXino Lime targets."""
machine = 'a20-olinuxino-lime'
class A20OLinuXinoLime2ImageBuilder(A20ImageBuilder):
"""Image builder for A20 OLinuXino Lime2 targets."""
machine = 'a20-olinuxino-lime2'
class A20OLinuXinoMicroImageBuilder(A20ImageBuilder):
"""Image builder for A20 OLinuXino Micro targets."""
machine = 'a20-olinuxino-micro'
class BananaProImageBuilder(A20ImageBuilder):
"""Image builder for Banana Pro target."""
machine = 'banana-pro'
class Cubieboard2ImageBuilder(A20ImageBuilder):
"""Image builder for Cubieboard 2 target."""
machine = 'cubieboard2'
class CubietruckImageBuilder(A20ImageBuilder):
"""Image builder for Cubietruck (Cubieboard 3) target."""
machine = 'cubietruck'
class PCDuino3ImageBuilder(A20ImageBuilder):
"""Image builder for PCDuino3 target."""
machine = 'pcduino3'
class DreamPlugImageBuilder(ARMImageBuilder):
"""Image builder for DreamPlug target."""
architecture = 'armel'
machine = 'dreamplug'
kernel_flavor = 'marvell'
boot_filesystem_type = 'vfat'
class RaspberryPiImageBuilder(ARMImageBuilder):
"""Image builder for Raspberry Pi target."""
architecture = 'armel'
machine = 'raspberry'
free = False
boot_loader = None
root_filesystem_type = 'ext4'
boot_filesystem_type = 'vfat'
kernel_flavor = None
class RaspberryPi2ImageBuilder(ARMImageBuilder):
"""Image builder for Raspberry Pi 2 target."""
architecture = 'armhf'
machine = 'raspberry2'
free = False
boot_offset = '64mib'
kernel_flavor = 'armmp'
class RaspberryPi3ImageBuilder(ARMImageBuilder):
"""Image builder for Raspberry Pi 3 target."""
architecture = 'armhf'
machine = 'raspberry3'
free = False
boot_offset = '64mib'
kernel_flavor = 'armmp'
|