2015-10-26 19:13:58 +00:00
|
|
|
import logging
|
|
|
|
import requests
|
|
|
|
|
2016-05-04 21:40:09 +00:00
|
|
|
from flask import url_for
|
|
|
|
from urlparse import urljoin
|
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
from data.database import CloseForLongOperation
|
2016-02-24 21:01:27 +00:00
|
|
|
from data import model
|
|
|
|
from data.model.storage import get_storage_locations
|
|
|
|
from util.secscan.validator import SecurityConfigValidator
|
2016-05-04 21:40:09 +00:00
|
|
|
from util.security.registry_jwt import generate_jwt_object, build_context_and_subject
|
|
|
|
from util import get_app_url
|
|
|
|
|
|
|
|
|
|
|
|
TOKEN_VALIDITY_LIFETIME_S = 60 # Amount of time the security scanner has to call the layer URL
|
|
|
|
|
2015-10-26 19:13:58 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2016-05-04 21:40:09 +00:00
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
class AnalyzeLayerException(Exception):
|
|
|
|
""" Exception raised when a layer fails to analyze due to a *client-side* issue. """
|
2015-10-26 19:13:58 +00:00
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
class APIRequestFailure(Exception):
|
|
|
|
""" Exception raised when there is a failure to conduct an API request. """
|
2015-10-26 19:13:58 +00:00
|
|
|
|
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
_API_METHOD_INSERT = 'layers'
|
|
|
|
_API_METHOD_GET_LAYER = 'layers/%s'
|
2016-02-25 20:58:42 +00:00
|
|
|
_API_METHOD_MARK_NOTIFICATION_READ = 'notifications/%s'
|
|
|
|
_API_METHOD_GET_NOTIFICATION = 'notifications/%s'
|
2016-05-02 19:29:31 +00:00
|
|
|
_API_METHOD_PING = 'metrics'
|
2015-10-26 19:13:58 +00:00
|
|
|
|
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
class SecurityScannerAPI(object):
|
|
|
|
""" Helper class for talking to the Security Scan service (Clair). """
|
2016-05-04 21:40:09 +00:00
|
|
|
def __init__(self, app, config, storage, client=None, skip_validation=False):
|
2016-05-02 19:29:31 +00:00
|
|
|
if not skip_validation:
|
|
|
|
config_validator = SecurityConfigValidator(config)
|
|
|
|
if not config_validator.valid():
|
|
|
|
logger.warning('Invalid config provided to SecurityScannerAPI')
|
|
|
|
return
|
|
|
|
|
2016-05-04 21:40:09 +00:00
|
|
|
self._app = app
|
2016-05-02 19:29:31 +00:00
|
|
|
self._config = config
|
|
|
|
self._client = client or config['HTTPCLIENT']
|
2016-02-24 21:01:27 +00:00
|
|
|
self._storage = storage
|
|
|
|
self._default_storage_locations = config['DISTRIBUTED_STORAGE_PREFERENCE']
|
2016-05-02 19:29:31 +00:00
|
|
|
self._target_version = config.get('SECURITY_SCANNER_ENGINE_VERSION_TARGET', 2)
|
2015-11-12 22:47:19 +00:00
|
|
|
|
|
|
|
|
2016-05-04 21:40:09 +00:00
|
|
|
def _get_image_url_and_auth(self, image):
|
|
|
|
""" Returns a tuple of the url and the auth header value that must be used
|
|
|
|
to fetch the layer data itself. If the image can't be addressed, we return
|
|
|
|
None.
|
2016-02-24 21:01:27 +00:00
|
|
|
"""
|
|
|
|
path = model.storage.get_layer_path(image.storage)
|
|
|
|
locations = self._default_storage_locations
|
|
|
|
|
|
|
|
if not self._storage.exists(locations, path):
|
|
|
|
locations = get_storage_locations(image.storage.uuid)
|
|
|
|
|
|
|
|
if not locations or not self._storage.exists(locations, path):
|
|
|
|
logger.warning('Could not find a valid location to download layer %s.%s out of %s',
|
|
|
|
image.docker_image_id, image.storage.uuid, locations)
|
2016-05-04 21:40:09 +00:00
|
|
|
return None, None
|
2016-02-24 21:01:27 +00:00
|
|
|
|
|
|
|
uri = self._storage.get_direct_download_url(locations, path)
|
2016-05-04 21:40:09 +00:00
|
|
|
auth_header = None
|
2016-02-24 21:01:27 +00:00
|
|
|
if uri is None:
|
2016-05-04 21:40:09 +00:00
|
|
|
# Use the registry API instead, with a signed JWT giving access
|
|
|
|
repo_name = image.repository.name
|
|
|
|
namespace_name = image.repository.namespace_user.username
|
|
|
|
repository_and_namespace = '/'.join([namespace_name, repo_name])
|
|
|
|
|
|
|
|
# Generate the JWT which will authorize this
|
|
|
|
audience = 'security_scanner'
|
|
|
|
context, subject = build_context_and_subject(None, None, None)
|
|
|
|
access = [{
|
|
|
|
'type': 'repository',
|
|
|
|
'name': repository_and_namespace,
|
|
|
|
'actions': ['pull'],
|
|
|
|
}]
|
|
|
|
auth_jwt = generate_jwt_object(audience, subject, context, access, TOKEN_VALIDITY_LIFETIME_S,
|
|
|
|
self._config)
|
|
|
|
auth_header = 'Bearer: {}'.format(auth_jwt)
|
|
|
|
|
|
|
|
with self._app.test_request_context('/'):
|
|
|
|
relative_layer_url = url_for('v2.download_blob', repository=repository_and_namespace,
|
|
|
|
digest=image.storage.content_checksum)
|
|
|
|
uri = urljoin(get_app_url(self._config), relative_layer_url)
|
|
|
|
|
|
|
|
return uri, auth_header
|
2015-11-12 20:46:31 +00:00
|
|
|
|
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
def _new_analyze_request(self, image):
|
|
|
|
""" Create the request body to submit the given image for analysis. If the image's URL cannot
|
|
|
|
be found, returns None.
|
|
|
|
"""
|
2016-05-04 21:40:09 +00:00
|
|
|
url, auth_header = self._get_image_url_and_auth(image)
|
2016-02-24 21:01:27 +00:00
|
|
|
if url is None:
|
|
|
|
return None
|
|
|
|
|
2016-05-04 21:40:09 +00:00
|
|
|
layer_request = {
|
|
|
|
'Name': '%s.%s' % (image.docker_image_id, image.storage.uuid),
|
|
|
|
'Path': url,
|
|
|
|
'Format': 'Docker',
|
2016-02-24 21:01:27 +00:00
|
|
|
}
|
2015-11-12 20:46:31 +00:00
|
|
|
|
2016-05-04 21:40:09 +00:00
|
|
|
if auth_header is not None:
|
|
|
|
layer_request['Authorization'] = auth_header
|
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
if image.parent.docker_image_id and image.parent.storage.uuid:
|
2016-05-04 21:40:09 +00:00
|
|
|
layer_request['ParentName'] = '%s.%s' % (image.parent.docker_image_id,
|
|
|
|
image.parent.storage.uuid)
|
2015-11-12 20:46:31 +00:00
|
|
|
|
2016-05-04 21:40:09 +00:00
|
|
|
return {
|
|
|
|
'Layer': layer_request,
|
|
|
|
}
|
2015-11-12 20:46:31 +00:00
|
|
|
|
|
|
|
|
2016-05-02 19:29:31 +00:00
|
|
|
def ping(self):
|
|
|
|
""" Calls GET on the metrics endpoint of the security scanner to ensure it is running
|
|
|
|
and properly configured. Returns the HTTP response.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return self._call('GET', _API_METHOD_PING)
|
|
|
|
except requests.exceptions.Timeout:
|
|
|
|
logger.exception('Timeout when trying to connect to security scanner endpoint')
|
|
|
|
raise Exception('Timeout when trying to connect to security scanner endpoint')
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
logger.exception('Connection error when trying to connect to security scanner endpoint')
|
|
|
|
raise Exception('Connection error when trying to connect to security scanner endpoint')
|
|
|
|
except (requests.exceptions.RequestException, ValueError):
|
|
|
|
logger.exception('Exception when trying to connect to security scanner endpoint')
|
|
|
|
raise Exception('Exception when trying to connect to security scanner endpoint')
|
|
|
|
|
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
def analyze_layer(self, layer):
|
|
|
|
""" Posts the given layer to the security scanner for analysis, blocking until complete.
|
|
|
|
Returns a tuple containing the analysis version (on success, None on failure) and
|
|
|
|
whether the request should be retried.
|
|
|
|
"""
|
|
|
|
request = self._new_analyze_request(layer)
|
|
|
|
if not request:
|
|
|
|
return None, False
|
|
|
|
|
|
|
|
logger.info('Analyzing layer %s', request['Layer']['Name'])
|
2015-11-09 22:12:22 +00:00
|
|
|
try:
|
2016-03-02 21:05:11 +00:00
|
|
|
response = self._call('POST', _API_METHOD_INSERT, body=request)
|
2016-02-24 21:01:27 +00:00
|
|
|
json_response = response.json()
|
|
|
|
except requests.exceptions.Timeout:
|
|
|
|
logger.exception('Timeout when trying to post layer data response for %s', layer.id)
|
|
|
|
return None, True
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
logger.exception('Connection error when trying to post layer data response for %s', layer.id)
|
|
|
|
return None, True
|
|
|
|
except (requests.exceptions.RequestException, ValueError):
|
|
|
|
logger.exception('Failed to post layer data response for %s', layer.id)
|
|
|
|
return None, False
|
|
|
|
|
2016-05-02 19:29:31 +00:00
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
# Handle any errors from the security scanner.
|
|
|
|
if response.status_code != 201:
|
|
|
|
message = json_response.get('Error').get('Message', '')
|
|
|
|
logger.warning('A warning event occurred when analyzing layer %s (status code %s): %s',
|
|
|
|
request['Layer']['Name'], response.status_code, message)
|
|
|
|
|
|
|
|
# 400 means the layer could not be analyzed due to a bad request.
|
|
|
|
if response.status_code == 400:
|
|
|
|
logger.error('Bad request when calling security scanner for layer %s: %s',
|
|
|
|
response.status_code, json_response)
|
|
|
|
raise AnalyzeLayerException('Bad request to security scanner')
|
|
|
|
|
|
|
|
# 422 means that the layer could not be analyzed:
|
|
|
|
# - the layer could not be extracted (manifest?)
|
|
|
|
# - the layer operating system / package manager is unsupported
|
|
|
|
return None, response.status_code != 422
|
|
|
|
|
|
|
|
api_version = json_response['Layer']['IndexedByVersion']
|
|
|
|
return api_version, False
|
|
|
|
|
|
|
|
|
2016-02-25 20:58:42 +00:00
|
|
|
def check_layer_vulnerable(self, layer_id, cve_name):
|
|
|
|
""" Checks to see if the layer with the given ID is vulnerable to the specified CVE. """
|
|
|
|
layer_data = self._get_layer_data(layer_id, include_vulnerabilities=True)
|
|
|
|
if layer_data is None or 'Layer' not in layer_data or 'Features' not in layer_data['Layer']:
|
|
|
|
return False
|
|
|
|
|
|
|
|
for feature in layer_data['Layer']['Features']:
|
|
|
|
for vuln in feature.get('Vulnerabilities', []):
|
|
|
|
if vuln['Name'] == cve_name:
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2016-03-19 00:28:06 +00:00
|
|
|
def get_notification(self, notification_name, layer_limit=100, page=None):
|
2016-02-25 20:58:42 +00:00
|
|
|
""" Gets the data for a specific notification, with optional page token.
|
|
|
|
Returns a tuple of the data (None on failure) and whether to retry.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
params = {
|
|
|
|
'limit': layer_limit
|
|
|
|
}
|
|
|
|
|
|
|
|
if page is not None:
|
|
|
|
params['page'] = page
|
|
|
|
|
|
|
|
response = self._call('GET', _API_METHOD_GET_NOTIFICATION % notification_name, params=params)
|
|
|
|
json_response = response.json()
|
|
|
|
except requests.exceptions.Timeout:
|
|
|
|
logger.exception('Timeout when trying to get notification for %s', notification_name)
|
|
|
|
return None, True
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
logger.exception('Connection error when trying to get notification for %s', notification_name)
|
|
|
|
return None, True
|
|
|
|
except (requests.exceptions.RequestException, ValueError):
|
|
|
|
logger.exception('Failed to get notification for %s', notification_name)
|
|
|
|
return None, False
|
|
|
|
|
|
|
|
if response.status_code != 200:
|
|
|
|
return None, response.status_code != 404 and response.status_code != 400
|
|
|
|
|
|
|
|
return json_response, False
|
|
|
|
|
|
|
|
|
|
|
|
def mark_notification_read(self, notification_name):
|
|
|
|
""" Marks a security scanner notification as read. """
|
|
|
|
try:
|
|
|
|
response = self._call('DELETE', _API_METHOD_MARK_NOTIFICATION_READ % notification_name)
|
2016-03-19 00:28:06 +00:00
|
|
|
return response.status_code / 100 == 2
|
2016-02-25 20:58:42 +00:00
|
|
|
except requests.exceptions.RequestException:
|
|
|
|
logger.exception('Failed to mark notification as read: %s', notification_name)
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
def get_layer_data(self, layer, include_features=False, include_vulnerabilities=False):
|
|
|
|
""" Returns the layer data for the specified layer. On error, returns None. """
|
|
|
|
layer_id = '%s.%s' % (layer.docker_image_id, layer.storage.uuid)
|
2016-02-25 20:58:42 +00:00
|
|
|
return self._get_layer_data(layer_id, include_features, include_vulnerabilities)
|
|
|
|
|
|
|
|
|
|
|
|
def _get_layer_data(self, layer_id, include_features=False, include_vulnerabilities=False):
|
2016-02-24 21:01:27 +00:00
|
|
|
try:
|
2016-02-25 20:58:42 +00:00
|
|
|
params = {}
|
2016-02-24 21:01:27 +00:00
|
|
|
if include_features:
|
2016-02-25 20:58:42 +00:00
|
|
|
params = {'features': True}
|
2015-11-09 22:12:22 +00:00
|
|
|
|
2016-02-24 21:01:27 +00:00
|
|
|
if include_vulnerabilities:
|
2016-02-25 20:58:42 +00:00
|
|
|
params = {'vulnerabilities': True}
|
2015-11-09 22:12:22 +00:00
|
|
|
|
2016-02-25 20:58:42 +00:00
|
|
|
response = self._call('GET', _API_METHOD_GET_LAYER % layer_id, params=params)
|
2016-02-24 21:01:27 +00:00
|
|
|
logger.debug('Got response %s for vulnerabilities for layer %s',
|
|
|
|
response.status_code, layer_id)
|
2016-02-25 20:58:42 +00:00
|
|
|
json_response = response.json()
|
2016-02-24 21:01:27 +00:00
|
|
|
except requests.exceptions.Timeout:
|
|
|
|
raise APIRequestFailure('API call timed out')
|
|
|
|
except requests.exceptions.ConnectionError:
|
|
|
|
raise APIRequestFailure('Could not connect to security service')
|
|
|
|
except (requests.exceptions.RequestException, ValueError):
|
2016-02-25 20:58:42 +00:00
|
|
|
logger.exception('Failed to get layer data response for %s', layer_id)
|
2016-02-24 21:01:27 +00:00
|
|
|
raise APIRequestFailure()
|
|
|
|
|
|
|
|
if response.status_code == 404:
|
|
|
|
return None
|
2015-11-09 22:12:22 +00:00
|
|
|
|
2016-02-25 20:58:42 +00:00
|
|
|
return json_response
|
2015-11-09 22:12:22 +00:00
|
|
|
|
|
|
|
|
2016-02-25 20:58:42 +00:00
|
|
|
def _call(self, method, relative_url, params=None, body=None):
|
2015-11-10 20:01:33 +00:00
|
|
|
""" Issues an HTTP call to the sec API at the given relative URL.
|
|
|
|
This function disconnects from the database while awaiting a response
|
|
|
|
from the API server.
|
|
|
|
"""
|
2016-05-02 19:29:31 +00:00
|
|
|
if self._config is None:
|
2015-11-12 22:47:19 +00:00
|
|
|
raise Exception('Cannot call unconfigured security system')
|
|
|
|
|
2016-05-02 19:29:31 +00:00
|
|
|
client = self._client
|
2016-02-29 18:08:49 +00:00
|
|
|
headers = {'Connection': 'close'}
|
2016-03-14 16:07:51 +00:00
|
|
|
|
2016-05-02 19:29:31 +00:00
|
|
|
timeout = self._config.get('SECURITY_SCANNER_API_TIMEOUT_SECONDS', 10)
|
|
|
|
endpoint = self._config['SECURITY_SCANNER_ENDPOINT']
|
2016-03-14 16:07:51 +00:00
|
|
|
if method != 'GET':
|
2016-05-02 19:29:31 +00:00
|
|
|
timeout = self._config.get('SECURITY_SCANNER_API_BATCH_TIMEOUT_SECONDS', timeout)
|
|
|
|
endpoint = self._config.get('SECURITY_SCANNER_ENDPOINT_BATCH') or endpoint
|
2016-03-14 16:07:51 +00:00
|
|
|
|
2016-05-02 19:29:31 +00:00
|
|
|
api_url = urljoin(endpoint, '/' + self._config.get('SECURITY_SCANNER_API_VERSION', 'v1')) + '/'
|
2016-03-14 16:07:51 +00:00
|
|
|
url = urljoin(api_url, relative_url)
|
2016-05-02 19:29:31 +00:00
|
|
|
signer_proxy_url = self._config.get('JWTPROXY_SIGNER', 'localhost:8080')
|
2015-10-26 19:13:58 +00:00
|
|
|
|
2016-05-02 19:29:31 +00:00
|
|
|
with CloseForLongOperation(self._config):
|
2016-03-14 16:07:51 +00:00
|
|
|
logger.debug('%sing security URL %s', method.upper(), url)
|
|
|
|
return client.request(method, url, json=body, params=params, timeout=timeout,
|
2016-04-28 14:04:41 +00:00
|
|
|
verify='/conf/mitm.cert', headers=headers,
|
2016-04-26 17:00:14 +00:00
|
|
|
proxies={
|
2016-04-27 17:48:15 +00:00
|
|
|
'https': 'https://' + signer_proxy_url,
|
|
|
|
'http': 'http://' + signer_proxy_url
|
2016-04-26 17:00:14 +00:00
|
|
|
})
|