2015-10-05 17:35:01 +00:00
|
|
|
import logging
|
2015-10-27 21:38:48 +00:00
|
|
|
import logging.config
|
|
|
|
|
2015-10-05 17:35:01 +00:00
|
|
|
import requests
|
|
|
|
import features
|
|
|
|
import time
|
|
|
|
import os
|
|
|
|
import random
|
2015-10-27 21:38:48 +00:00
|
|
|
import json
|
2015-10-05 17:35:01 +00:00
|
|
|
|
2015-10-27 21:38:48 +00:00
|
|
|
from endpoints.notificationhelper import spawn_notification
|
|
|
|
from collections import defaultdict
|
2015-10-05 17:35:01 +00:00
|
|
|
from sys import exc_info
|
|
|
|
from peewee import JOIN_LEFT_OUTER
|
2015-11-09 20:14:25 +00:00
|
|
|
from app import app, storage, OVERRIDE_CONFIG_DIRECTORY, secscan_endpoint
|
2015-10-05 17:35:01 +00:00
|
|
|
from workers.worker import Worker
|
2015-10-27 21:38:48 +00:00
|
|
|
from data.database import (Image, ImageStorage, ImageStorageLocation, ImageStoragePlacement,
|
|
|
|
db_random_func, UseThenDisconnect, RepositoryTag, Repository,
|
|
|
|
ExternalNotificationEvent, RepositoryNotification)
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
BATCH_SIZE = 20
|
|
|
|
INDEXING_INTERVAL = 10
|
2015-10-27 21:38:48 +00:00
|
|
|
API_METHOD_INSERT = '/v1/layers'
|
|
|
|
API_METHOD_VERSION = '/v1/versions/engine'
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
def _get_image_to_export(version):
|
|
|
|
Parent = Image.alias()
|
|
|
|
ParentImageStorage = ImageStorage.alias()
|
|
|
|
rimages = []
|
|
|
|
|
|
|
|
# Without parent
|
|
|
|
candidates = (Image
|
2015-11-09 19:31:24 +00:00
|
|
|
.select(Image.id, Image.docker_image_id, ImageStorage.uuid)
|
|
|
|
.join(ImageStorage)
|
|
|
|
.where(Image.security_indexed_engine < version,
|
|
|
|
Image.parent >> None,
|
|
|
|
ImageStorage.uploading == False)
|
|
|
|
.limit(BATCH_SIZE*10)
|
|
|
|
.alias('candidates'))
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
images = (Image
|
2015-11-09 19:31:24 +00:00
|
|
|
.select(candidates.c.id, candidates.c.docker_image_id, candidates.c.uuid)
|
|
|
|
.from_(candidates)
|
|
|
|
.order_by(db_random_func())
|
|
|
|
.tuples()
|
|
|
|
.limit(BATCH_SIZE))
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
for image in images:
|
2015-11-09 19:31:24 +00:00
|
|
|
rimages.append({'image_id': image[0],
|
2015-11-09 20:14:25 +00:00
|
|
|
'docker_image_id': image[1],
|
|
|
|
'storage_uuid': image[2],
|
2015-11-09 19:31:24 +00:00
|
|
|
'parent_docker_image_id': None,
|
|
|
|
'parent_storage_uuid': None})
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
# With analyzed parent
|
|
|
|
candidates = (Image
|
2015-11-09 19:31:24 +00:00
|
|
|
.select(Image.id,
|
|
|
|
Image.docker_image_id,
|
|
|
|
ImageStorage.uuid,
|
|
|
|
Parent.docker_image_id.alias('parent_docker_image_id'),
|
|
|
|
ParentImageStorage.uuid.alias('parent_storage_uuid'))
|
|
|
|
.join(Parent, on=(Image.parent == Parent.id))
|
|
|
|
.join(ParentImageStorage, on=(ParentImageStorage.id == Parent.storage))
|
|
|
|
.switch(Image)
|
|
|
|
.join(ImageStorage)
|
|
|
|
.where(Image.security_indexed_engine < version,
|
|
|
|
Parent.security_indexed == True,
|
|
|
|
Parent.security_indexed_engine >= version,
|
|
|
|
ImageStorage.uploading == False)
|
|
|
|
.limit(BATCH_SIZE*10)
|
|
|
|
.alias('candidates'))
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
images = (Image
|
2015-11-09 19:31:24 +00:00
|
|
|
.select(candidates.c.id,
|
|
|
|
candidates.c.docker_image_id,
|
|
|
|
candidates.c.uuid,
|
|
|
|
candidates.c.parent_docker_image_id,
|
|
|
|
candidates.c.parent_storage_uuid)
|
|
|
|
.from_(candidates)
|
|
|
|
.order_by(db_random_func())
|
|
|
|
.tuples()
|
|
|
|
.limit(BATCH_SIZE))
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
for image in images:
|
2015-11-09 19:31:24 +00:00
|
|
|
rimages.append({'image_id': image[0],
|
|
|
|
'docker_image_id': image[1],
|
|
|
|
'storage_uuid': image[2],
|
|
|
|
'parent_docker_image_id': image[3],
|
|
|
|
'parent_storage_uuid': image[4]})
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
# Re-shuffle, otherwise the images without parents will always be on the top
|
|
|
|
random.shuffle(rimages)
|
|
|
|
|
|
|
|
return rimages
|
|
|
|
|
|
|
|
def _get_storage_locations(uuid):
|
|
|
|
query = (ImageStoragePlacement
|
2015-11-09 19:31:24 +00:00
|
|
|
.select()
|
|
|
|
.join(ImageStorageLocation)
|
|
|
|
.switch(ImageStoragePlacement)
|
|
|
|
.join(ImageStorage, JOIN_LEFT_OUTER)
|
|
|
|
.where(ImageStorage.uuid == uuid))
|
2015-11-09 20:14:25 +00:00
|
|
|
return query.get()
|
2015-10-05 17:35:01 +00:00
|
|
|
locations = list()
|
|
|
|
for location in query:
|
|
|
|
locations.append(location.location.name)
|
|
|
|
|
|
|
|
return locations
|
|
|
|
|
|
|
|
def _update_image(image, indexed, version):
|
|
|
|
query = (Image
|
2015-11-09 19:31:24 +00:00
|
|
|
.select()
|
|
|
|
.join(ImageStorage)
|
|
|
|
.where(Image.docker_image_id == image['docker_image_id'],
|
|
|
|
ImageStorage.uuid == image['storage_uuid']))
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
updated_images = list()
|
2015-10-28 20:32:46 +00:00
|
|
|
for row in query:
|
|
|
|
updated_images.append(row.id)
|
2015-10-05 17:35:01 +00:00
|
|
|
|
2015-10-28 20:32:46 +00:00
|
|
|
(Image
|
2015-10-05 17:35:01 +00:00
|
|
|
.update(security_indexed=indexed, security_indexed_engine=version)
|
2015-10-28 20:32:46 +00:00
|
|
|
.where(Image.id << updated_images)
|
|
|
|
.execute())
|
2015-10-05 17:35:01 +00:00
|
|
|
|
|
|
|
class SecurityWorker(Worker):
|
|
|
|
def __init__(self):
|
|
|
|
super(SecurityWorker, self).__init__()
|
|
|
|
if self._load_configuration():
|
|
|
|
self.add_operation(self._index_images, INDEXING_INTERVAL)
|
|
|
|
|
|
|
|
def _load_configuration(self):
|
|
|
|
# Load configuration
|
|
|
|
config = app.config.get('SECURITY_SCANNER')
|
|
|
|
|
2015-11-09 19:31:24 +00:00
|
|
|
if (not config
|
|
|
|
or not 'ENDPOINT' in config or not 'ENGINE_VERSION_TARGET' in config
|
|
|
|
or not 'DISTRIBUTED_STORAGE_PREFERENCE' in app.config):
|
2015-10-05 17:35:01 +00:00
|
|
|
logger.exception('No configuration found for the security worker')
|
|
|
|
return False
|
|
|
|
self._api = config['ENDPOINT']
|
|
|
|
self._target_version = config['ENGINE_VERSION_TARGET']
|
|
|
|
self._default_storage_locations = app.config['DISTRIBUTED_STORAGE_PREFERENCE']
|
|
|
|
|
2015-11-09 19:31:24 +00:00
|
|
|
self._ca = False
|
2015-10-05 17:35:01 +00:00
|
|
|
self._cert = None
|
|
|
|
if 'CA_CERTIFICATE_FILENAME' in config:
|
2015-11-09 19:31:24 +00:00
|
|
|
self._ca = os.path.join(OVERRIDE_CONFIG_DIRECTORY, config['CA_CERTIFICATE_FILENAME'])
|
|
|
|
if not os.path.isfile(self._ca):
|
2015-10-05 17:35:01 +00:00
|
|
|
logger.exception('Could not find configured CA file')
|
|
|
|
return False
|
|
|
|
if 'PRIVATE_KEY_FILENAME' in config and 'PUBLIC_KEY_FILENAME' in config:
|
|
|
|
self._cert = (
|
|
|
|
os.path.join(OVERRIDE_CONFIG_DIRECTORY, config['PUBLIC_KEY_FILENAME']),
|
|
|
|
os.path.join(OVERRIDE_CONFIG_DIRECTORY, config['PRIVATE_KEY_FILENAME']),
|
|
|
|
)
|
|
|
|
if not os.path.isfile(self._cert[0]) or not os.path.isfile(self._cert[1]):
|
|
|
|
logger.exception('Could not find configured key pair files')
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def _index_images(self):
|
2015-10-27 21:38:48 +00:00
|
|
|
logger.debug('Starting indexing')
|
|
|
|
|
2015-10-05 17:35:01 +00:00
|
|
|
with UseThenDisconnect(app.config):
|
|
|
|
while True:
|
2015-10-27 21:38:48 +00:00
|
|
|
logger.debug('Looking up images to index')
|
|
|
|
|
2015-10-05 17:35:01 +00:00
|
|
|
# Get images to analyze
|
|
|
|
try:
|
|
|
|
images = _get_image_to_export(self._target_version)
|
2015-10-27 21:38:48 +00:00
|
|
|
if not images:
|
|
|
|
logger.debug('No more image to analyze')
|
|
|
|
return
|
|
|
|
|
2015-10-05 17:35:01 +00:00
|
|
|
except Image.DoesNotExist:
|
|
|
|
logger.debug('No more image to analyze')
|
|
|
|
return
|
|
|
|
|
2015-10-27 21:38:48 +00:00
|
|
|
logger.debug('Found images to index: %s', images)
|
2015-10-05 17:35:01 +00:00
|
|
|
for img in images:
|
|
|
|
# Get layer storage URL
|
|
|
|
path = storage.image_layer_path(img['storage_uuid'])
|
|
|
|
locations = self._default_storage_locations
|
2015-10-28 20:32:46 +00:00
|
|
|
|
2015-10-05 17:35:01 +00:00
|
|
|
if not storage.exists(locations, path):
|
|
|
|
locations = _get_storage_locations(img['storage_uuid'])
|
2015-10-28 20:32:46 +00:00
|
|
|
|
2015-11-09 20:14:25 +00:00
|
|
|
if not storage.exists(locations, path):
|
|
|
|
logger.warning('Could not find a valid location to download layer %s',
|
|
|
|
img['docker_image_id']+'.'+img['storage_uuid'])
|
|
|
|
_update_image(img, False, self._target_version)
|
|
|
|
continue
|
2015-10-28 20:32:46 +00:00
|
|
|
|
2015-10-05 17:35:01 +00:00
|
|
|
uri = storage.get_direct_download_url(locations, path)
|
|
|
|
if uri == None:
|
|
|
|
# Local storage hack
|
|
|
|
uri = path
|
|
|
|
|
|
|
|
# Forge request
|
|
|
|
request = {
|
|
|
|
'ID': img['docker_image_id']+'.'+img['storage_uuid'],
|
|
|
|
'Path': uri
|
|
|
|
}
|
2015-11-09 19:31:24 +00:00
|
|
|
if img['parent_docker_image_id'] is not None and img['parent_storage_uuid'] is not None:
|
2015-10-05 17:35:01 +00:00
|
|
|
request['ParentID'] = img['parent_docker_image_id']+'.'+img['parent_storage_uuid']
|
|
|
|
|
|
|
|
# Post request
|
|
|
|
try:
|
|
|
|
logger.info('Analyzing %s', request['ID'])
|
|
|
|
# Using invalid certificates doesn't return proper errors because of
|
|
|
|
# https://github.com/shazow/urllib3/issues/556
|
2015-11-09 19:31:24 +00:00
|
|
|
httpResponse = requests.post(self._api + API_METHOD_INSERT, json=request,
|
|
|
|
cert=self._cert, verify=self._ca)
|
2015-10-05 17:35:01 +00:00
|
|
|
except:
|
2015-11-09 19:31:24 +00:00
|
|
|
logger.exception('An exception occurred when analyzing layer ID %s : %s',
|
|
|
|
request['ID'], exc_info()[0])
|
2015-10-05 17:35:01 +00:00
|
|
|
return
|
|
|
|
try:
|
|
|
|
jsonResponse = httpResponse.json()
|
|
|
|
except:
|
2015-11-09 19:31:24 +00:00
|
|
|
logger.exception('An exception occurred when analyzing layer ID %s : the response is \
|
|
|
|
not valid JSON (%s)', request['ID'], httpResponse.text)
|
2015-10-05 17:35:01 +00:00
|
|
|
return
|
|
|
|
|
2015-10-28 20:32:46 +00:00
|
|
|
if httpResponse.status_code != 201:
|
2015-10-05 17:35:01 +00:00
|
|
|
if 'Message' in jsonResponse:
|
|
|
|
if 'OS and/or package manager are not supported' in jsonResponse['Message']:
|
|
|
|
# The current engine could not index this layer
|
2015-11-09 19:31:24 +00:00
|
|
|
logger.warning('A warning event occurred when analyzing layer ID %s : %s',
|
|
|
|
request['ID'], jsonResponse['Message'])
|
2015-10-05 17:35:01 +00:00
|
|
|
# Hopefully, there is no version lower than the target one running
|
|
|
|
_update_image(img, False, self._target_version)
|
|
|
|
else:
|
2015-11-09 19:31:24 +00:00
|
|
|
logger.exception('An exception occurred when analyzing layer ID %s : %d %s',
|
|
|
|
request['ID'], httpResponse.status_code, jsonResponse['Message'])
|
2015-10-05 17:35:01 +00:00
|
|
|
return
|
|
|
|
else:
|
2015-11-09 19:31:24 +00:00
|
|
|
logger.exception('An exception occurred when analyzing layer ID %s : %d',
|
|
|
|
request['ID'], httpResponse.status_code)
|
2015-10-05 17:35:01 +00:00
|
|
|
return
|
|
|
|
|
2015-10-28 20:32:46 +00:00
|
|
|
# The layer has been successfully indexed
|
|
|
|
api_version = jsonResponse['Version']
|
|
|
|
if api_version < self._target_version:
|
|
|
|
logger.warning('An engine runs on version %d but the target version is %d')
|
|
|
|
|
|
|
|
logger.debug('Layer %s analyzed successfully', request['ID'])
|
|
|
|
_update_image(img, True, api_version)
|
|
|
|
|
|
|
|
|
|
|
|
# TODO(jschorr): Put this in a proper place, properly comment, unify with the
|
|
|
|
# callback code, etc.
|
|
|
|
try:
|
|
|
|
logger.debug('Loading vulnerabilities for layer %s', img['image_id'])
|
2015-11-09 20:14:25 +00:00
|
|
|
response = secscan_endpoint.call_api('layers/%s/vulnerabilities', request['ID'])
|
2015-10-28 20:32:46 +00:00
|
|
|
except requests.exceptions.Timeout:
|
|
|
|
logger.debug('Timeout when calling Sec')
|
|
|
|
continue
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
logger.debug('Connection error when calling Sec')
|
|
|
|
continue
|
|
|
|
|
|
|
|
logger.debug('Got response %s for vulnerabilities for layer %s', response.status_code, img['image_id'])
|
|
|
|
if response.status_code == 404:
|
|
|
|
continue
|
|
|
|
|
|
|
|
sec_data = json.loads(response.text)
|
|
|
|
logger.debug('Got response vulnerabilities for layer %s: %s', img['image_id'], sec_data)
|
|
|
|
|
|
|
|
if not sec_data['Vulnerabilities']:
|
|
|
|
continue
|
|
|
|
|
|
|
|
event = ExternalNotificationEvent.get(name='vulnerability_found')
|
|
|
|
matching = (RepositoryTag
|
|
|
|
.select(RepositoryTag, Repository)
|
|
|
|
.distinct()
|
|
|
|
.join(Repository)
|
|
|
|
.join(RepositoryNotification)
|
|
|
|
.where(RepositoryNotification.event == event,
|
|
|
|
RepositoryTag.image == img['image_id']))
|
|
|
|
|
|
|
|
repository_map = defaultdict(list)
|
|
|
|
|
|
|
|
for tag in matching:
|
|
|
|
repository_map[tag.repository_id].append(tag)
|
|
|
|
|
|
|
|
for repository_id in repository_map:
|
|
|
|
tags = repository_map[repository_id]
|
|
|
|
|
|
|
|
for vuln in sec_data['Vulnerabilities']:
|
|
|
|
event_data = {
|
|
|
|
'tags': [tag.name for tag in tags],
|
|
|
|
'vulnerability': {
|
|
|
|
'id': vuln['ID'],
|
|
|
|
'description': vuln['Description'],
|
|
|
|
'link': vuln['Link'],
|
|
|
|
'priority': vuln['Priority'],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
spawn_notification(tags[0].repository, 'vulnerability_found', event_data)
|
|
|
|
|
|
|
|
|
2015-10-05 17:35:01 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
if not features.SECURITY_SCANNER:
|
|
|
|
logger.debug('Security scanner disabled; skipping')
|
|
|
|
while True:
|
|
|
|
time.sleep(100000)
|
|
|
|
|
2015-10-27 21:38:48 +00:00
|
|
|
logging.config.fileConfig('conf/logging_debug.conf', disable_existing_loggers=False)
|
2015-10-05 17:35:01 +00:00
|
|
|
worker = SecurityWorker()
|
|
|
|
worker.start()
|