core-admin/qubes/storage/kernels.py

138 lines
4.0 KiB
Python
Raw Normal View History

2016-04-01 15:10:44 +02:00
#!/usr/bin/python2
# -*- encoding: utf8 -*-
#
# The Qubes OS Project, http://www.qubes-os.org
#
# Copyright (C) 2010-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
# Copyright (C) 2015 Wojtek Porczyk <woju@invisiblethingslab.com>
# Copyright (C) 2016 Bahtiar `kalkin-` Gadimov <bahtiar@gadimov.de>
#
# 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 2 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
''' This module contains pool implementations for different OS kernels. '''
2016-04-01 15:10:44 +02:00
import os
from qubes.storage import Pool, StoragePoolException, Volume
class LinuxModules(Volume):
''' A volume representing a ro linux kernel '''
2016-04-01 15:10:44 +02:00
rw = False
def __init__(self, target_dir, kernel_version, **kwargs):
kwargs['vid'] = kernel_version
2016-07-12 18:16:15 +02:00
kwargs['source'] = self
2016-04-01 15:10:44 +02:00
super(LinuxModules, self).__init__(**kwargs)
self.kernels_dir = os.path.join(target_dir, kernel_version)
self.path = os.path.join(self.kernels_dir, 'modules.img')
self.vmlinuz = os.path.join(self.kernels_dir, 'vmlinuz')
self.initramfs = os.path.join(self.kernels_dir, 'initramfs')
2016-04-01 15:10:44 +02:00
2016-07-12 18:16:15 +02:00
@property
def revisions(self):
return {}
2016-04-01 15:10:44 +02:00
class LinuxKernel(Pool):
''' Provides linux kernels '''
2016-04-01 15:10:44 +02:00
driver = 'linux-kernel'
def __init__(self, name=None, dir_path=None):
assert dir_path, 'Missing dir_path'
super(LinuxKernel, self).__init__(name=name)
self.dir_path = dir_path
def init_volume(self, vm, volume_config):
2016-07-12 18:16:15 +02:00
assert not volume_config['rw']
2016-04-01 15:10:44 +02:00
volume = LinuxModules(self.dir_path, vm.kernel, **volume_config)
return volume
2016-04-01 15:10:44 +02:00
2016-07-12 18:16:15 +02:00
def is_dirty(self, volume):
return False
2016-04-01 15:10:44 +02:00
def clone(self, source, target):
return target
2016-07-12 18:16:15 +02:00
def create(self, volume):
2016-04-01 15:10:44 +02:00
return volume
2016-07-12 18:16:15 +02:00
def commit(self, volume):
2016-04-01 15:10:44 +02:00
return volume
@property
def config(self):
return {
'name': self.name,
'dir_path': self.dir_path,
'driver': LinuxKernel.driver,
}
2016-04-15 20:33:04 +02:00
def destroy(self):
pass
2016-07-12 18:16:15 +02:00
def export(self, volume):
return volume.path
def import_volume(self, dst_pool, dst_volume, src_pool, src_volume):
pass
2016-06-16 20:02:19 +02:00
def is_outdated(self, volume):
return False
2016-04-01 15:10:44 +02:00
def remove(self, volume):
pass
def rename(self, volume, old_name, new_name):
return volume
2016-04-15 20:33:04 +02:00
def setup(self):
pass
2016-04-01 15:10:44 +02:00
def start(self, volume):
path = volume.path
if not os.path.exists(path):
raise StoragePoolException('Missing kernel modules: %s' % path)
2016-04-01 15:10:44 +02:00
return volume
def stop(self, volume):
pass
def verify(self, volume):
_check_path(volume.path)
_check_path(volume.vmlinuz)
_check_path(volume.initramfs)
@property
def volumes(self):
''' Return all known kernel volumes '''
return [LinuxModules(self.dir_path,
kernel_version,
pool=self.name,
name=kernel_version,
internal=True,
2016-07-12 18:16:15 +02:00
rw=False
)
for kernel_version in os.listdir(self.dir_path)]
def _check_path(path):
''' Raise an :py:class:`qubes.storage.StoragePoolException` if ``path`` does
not exist.
'''
if not os.path.exists(path):
raise StoragePoolException('Missing file: %s' % path)