149 lines
4.8 KiB
Python
Raw Normal View History

2013-09-23 23:29:55 -07:00
"""
Copyright 2013 Rackspace, Inc.
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.
"""
2014-01-10 16:13:47 -08:00
import json
import os
import subprocess
import requests
from teeth_agent import base
2013-12-21 17:22:09 -08:00
from teeth_agent import errors
2013-12-17 15:13:30 -08:00
2013-09-23 23:29:55 -07:00
def _image_location(image_info):
return '/tmp/{}'.format(image_info['id'])
def _write_local_config_drive(location, data):
"""Writes a config_drive directory at `location`."""
if not os.path.exists(location):
os.makedirs(location)
filename = '{}/meta_data.json'.format(location)
with open(filename, 'w') as f:
json_data = json.dumps(data)
f.write(json_data)
2014-01-10 15:12:24 -08:00
def _write_image(image_info, configdrive='configdrive', device='/dev/sda'):
# TODO(jimrollenhagen) don't hardcode these kwargs
image = _image_location(image_info)
2014-01-10 16:13:47 -08:00
2014-01-14 16:53:23 -08:00
cwd = os.path.dirname(os.path.realpath(__file__))
script = os.path.join(cwd, 'shell/makefs.sh')
command = ['sh', script, configdrive, image, device]
return subprocess.call(command)
def _download_image(image_info):
2014-01-14 13:50:57 -08:00
for index, url in enumerate(image_info['urls']):
try:
url = image_info['urls'][0]
resp = requests.get(url, stream=True)
if resp.status_code != 200:
raise errors.ImageDownloadError(image_info['id'], url)
image_location = _image_location(image_info)
with open(image_location, 'wb') as f:
for chunk in resp.iter_content(1024 * 1024):
f.write(chunk)
if not _verify_image(image_info, image_location):
# TODO(jimrollenhagen) retry download?
raise errors.ImageChecksumError(image_info['id'])
except Exception:
continue
else:
return index
def _verify_image(image_info, image_location):
# TODO(jimrollenhagen) verify the image checksum
return True
class CacheImagesCommand(base.AsyncCommandResult):
def execute(self):
# TODO(russellhaering): Actually cache images
pass
class PrepareImageCommand(base.AsyncCommandResult):
"""Downloads and writes an image and configdrive to a device."""
def execute(self):
image_info = self.command_params['image_info']
location = self.command_params['configdrive']['location']
data = self.command_params['configdrive']['data']
device = self.command_params['device']
_download_image(image_info)
_write_local_config_drive(location, data)
_write_image(image_info, location, device)
class RunImageCommand(base.AsyncCommandResult):
def execute(self):
# TODO(jimrollenhagen): Actually run image, reboot/kexec/whatever
pass
class StandbyAgent(base.BaseTeethAgent):
def __init__(self, listen_host, listen_port, api_url):
super(StandbyAgent, self).__init__(listen_host,
listen_port,
api_url,
'STANDBY')
2013-12-21 17:22:09 -08:00
self.command_map = {
2014-01-10 15:12:24 -08:00
'cache_images': self.cache_images,
'prepare_image': self.prepare_image,
'run_image': self.run_image,
2013-12-21 17:22:09 -08:00
}
def _validate_image_info(self, image_info):
for field in ['id', 'urls', 'hashes']:
if field not in image_info:
msg = 'Image is missing \'{}\' field.'.format(field)
raise errors.InvalidCommandParamsError(msg)
if type(image_info['urls']) != list:
raise errors.InvalidCommandParamsError(
'Image \'urls\' must be a list.')
if type(image_info['hashes']) != dict:
raise errors.InvalidCommandParamsError(
'Image \'hashes\' must be a dictionary.')
def cache_images(self, command_name, image_infos):
2013-12-21 17:22:09 -08:00
if type(image_infos) != list:
raise errors.InvalidCommandParamsError(
'\'image_infos\' parameter must be a list.')
for image_info in image_infos:
self._validate_image_info(image_info)
return CacheImagesCommand(command_name, image_infos).start()
def prepare_image(self, command_name, **command_params):
self._validate_image_info(command_params['image_info'])
return PrepareImageCommand(command_name, command_params).start()
2014-01-10 15:12:24 -08:00
def run_image(self, command_name, image_info):
self._validate_image_info(image_info)
return RunImageCommand(command_name, image_info).start()