2015-06-22 21:37:13 +00:00
|
|
|
import logging
|
|
|
|
import re
|
|
|
|
|
2015-09-10 16:24:33 +00:00
|
|
|
from jsonschema import validate, ValidationError
|
2015-06-22 21:37:13 +00:00
|
|
|
from functools import wraps
|
2015-12-09 20:07:37 +00:00
|
|
|
from flask import request, url_for
|
2015-06-22 21:37:13 +00:00
|
|
|
from flask.ext.principal import identity_changed, Identity
|
|
|
|
from cryptography.x509 import load_pem_x509_certificate
|
|
|
|
from cryptography.hazmat.backends import default_backend
|
2015-07-16 19:49:06 +00:00
|
|
|
from cachetools import lru_cache
|
2015-06-22 21:37:13 +00:00
|
|
|
|
2015-12-09 20:07:37 +00:00
|
|
|
from app import app, get_app_url
|
2015-12-09 21:10:39 +00:00
|
|
|
from .auth_context import set_grant_context, get_grant_context
|
2015-09-04 15:29:22 +00:00
|
|
|
from .permissions import repository_read_grant, repository_write_grant
|
2015-06-22 21:37:13 +00:00
|
|
|
from util.names import parse_namespace_repository
|
2015-07-16 19:49:06 +00:00
|
|
|
from util.http import abort
|
2015-09-04 15:29:22 +00:00
|
|
|
from util.security import strictjwt
|
2015-12-09 21:10:39 +00:00
|
|
|
from data import model
|
2015-06-22 21:37:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2015-09-10 16:24:33 +00:00
|
|
|
TOKEN_REGEX = re.compile(r'^Bearer (([a-zA-Z0-9+/]+\.)+[a-zA-Z0-9+-_/]+)$')
|
2015-12-09 21:10:39 +00:00
|
|
|
ANONYMOUS_SUB = '(anonymous)'
|
|
|
|
CONTEXT_KINDS = ['user', 'token', 'oauth']
|
2015-09-10 16:24:33 +00:00
|
|
|
|
|
|
|
ACCESS_SCHEMA = {
|
|
|
|
'type': 'array',
|
|
|
|
'description': 'List of access granted to the subject',
|
|
|
|
'items': {
|
|
|
|
'type': 'object',
|
|
|
|
'required': [
|
|
|
|
'type',
|
|
|
|
'name',
|
|
|
|
'actions',
|
|
|
|
],
|
|
|
|
'properties': {
|
|
|
|
'type': {
|
|
|
|
'type': 'string',
|
|
|
|
'description': 'We only allow repository permissions',
|
|
|
|
'enum': [
|
|
|
|
'repository',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'name': {
|
|
|
|
'type': 'string',
|
|
|
|
'description': 'The name of the repository for which we are receiving access'
|
|
|
|
},
|
|
|
|
'actions': {
|
|
|
|
'type': 'array',
|
|
|
|
'description': 'List of specific verbs which can be performed against repository',
|
|
|
|
'items': {
|
|
|
|
'type': 'string',
|
|
|
|
'enum': [
|
|
|
|
'push',
|
|
|
|
'pull',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2015-06-22 21:37:13 +00:00
|
|
|
|
|
|
|
|
2015-07-16 19:49:06 +00:00
|
|
|
class InvalidJWTException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-12-09 21:10:39 +00:00
|
|
|
class GrantedEntity(object):
|
|
|
|
def __init__(self, user=None, token=None, oauth=None):
|
|
|
|
self.user = user
|
|
|
|
self.token = token
|
|
|
|
self.oauth = oauth
|
|
|
|
|
|
|
|
|
|
|
|
def get_granted_entity():
|
|
|
|
""" Returns the entity granted in the current context, if any. Returns the GrantedEntity or None
|
|
|
|
if none.
|
|
|
|
"""
|
|
|
|
context = get_grant_context()
|
|
|
|
if not context:
|
|
|
|
return None
|
|
|
|
|
|
|
|
kind = context.get('kind', 'anonymous')
|
|
|
|
|
|
|
|
if not kind in CONTEXT_KINDS:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if kind == 'user':
|
|
|
|
user = model.user.get_user(context.get('user', ''))
|
|
|
|
if not user:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return GrantedEntity(user=user)
|
|
|
|
|
|
|
|
if kind == 'token':
|
2015-12-15 21:52:22 +00:00
|
|
|
token = model.token.load_token_data(context.get('token'))
|
|
|
|
if not token:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return GrantedEntity(token=token)
|
2015-12-09 21:10:39 +00:00
|
|
|
|
|
|
|
if kind == 'oauth':
|
|
|
|
user = model.user.get_user(context.get('user', ''))
|
|
|
|
if not user:
|
|
|
|
return None
|
|
|
|
|
|
|
|
oauthtoken = model.oauth.lookup_access_token_for_user(user, context.get('oauth', ''))
|
|
|
|
if not oauthtoken:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return GrantedEntity(oauth=oauthtoken, user=user)
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def get_granted_username():
|
|
|
|
""" Returns the username inside the grant, if any. """
|
|
|
|
granted = get_granted_entity()
|
|
|
|
if not granted or not granted.user:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return granted.user.username
|
|
|
|
|
|
|
|
|
|
|
|
def build_context_and_subject(user, token, oauthtoken):
|
|
|
|
""" Builds the custom context field for the JWT signed token and returns it,
|
|
|
|
along with the subject for the JWT signed token. """
|
|
|
|
if oauthtoken:
|
|
|
|
context = {
|
|
|
|
'kind': 'oauth',
|
|
|
|
'user': user.username,
|
|
|
|
'oauth': oauthtoken.uuid,
|
|
|
|
}
|
|
|
|
|
|
|
|
return (context, user.username)
|
|
|
|
|
|
|
|
if user:
|
|
|
|
context = {
|
|
|
|
'kind': 'user',
|
|
|
|
'user': user.username,
|
|
|
|
}
|
|
|
|
return (context, user.username)
|
|
|
|
|
|
|
|
if token:
|
|
|
|
context = {
|
|
|
|
'kind': 'token',
|
2015-12-15 21:52:22 +00:00
|
|
|
'token': token.code,
|
2015-12-09 21:10:39 +00:00
|
|
|
}
|
|
|
|
return (context, None)
|
|
|
|
|
|
|
|
context = {
|
|
|
|
'kind': 'anonymous',
|
|
|
|
}
|
|
|
|
return (context, ANONYMOUS_SUB)
|
|
|
|
|
|
|
|
|
2015-12-09 20:07:37 +00:00
|
|
|
def get_auth_headers():
|
|
|
|
""" Returns a dictionary of headers for auth responses. """
|
|
|
|
headers = {}
|
|
|
|
realm_auth_path = url_for('v2.generate_registry_jwt')
|
|
|
|
authenticate = 'Bearer realm="{0}{1}",service="{2}"'.format(get_app_url(),
|
|
|
|
realm_auth_path,
|
|
|
|
app.config['SERVER_HOSTNAME'])
|
|
|
|
headers['WWW-Authenticate'] = authenticate
|
|
|
|
headers['Docker-Distribution-API-Version'] = 'registry/2.0'
|
|
|
|
return headers
|
|
|
|
|
|
|
|
|
2015-07-16 19:49:06 +00:00
|
|
|
def identity_from_bearer_token(bearer_token, max_signed_s, public_key):
|
|
|
|
""" Process a bearer token and return the loaded identity, or raise InvalidJWTException if an
|
|
|
|
identity could not be loaded. Expects tokens and grants in the format of the Docker registry
|
|
|
|
v2 auth spec: https://docs.docker.com/registry/spec/auth/token/
|
|
|
|
"""
|
|
|
|
logger.debug('Validating auth header: %s', bearer_token)
|
|
|
|
|
|
|
|
# Extract the jwt token from the header
|
|
|
|
match = TOKEN_REGEX.match(bearer_token)
|
2015-09-10 16:24:33 +00:00
|
|
|
if match is None:
|
2015-07-16 19:49:06 +00:00
|
|
|
raise InvalidJWTException('Invalid bearer token format')
|
|
|
|
|
|
|
|
encoded = match.group(1)
|
|
|
|
logger.debug('encoded JWT: %s', encoded)
|
|
|
|
|
|
|
|
# Load the JWT returned.
|
|
|
|
try:
|
2015-09-10 16:24:33 +00:00
|
|
|
expected_issuer = app.config['JWT_AUTH_TOKEN_ISSUER']
|
|
|
|
audience = app.config['SERVER_HOSTNAME']
|
|
|
|
max_exp = strictjwt.exp_max_s_option(max_signed_s)
|
|
|
|
payload = strictjwt.decode(encoded, public_key, algorithms=['RS256'], audience=audience,
|
|
|
|
issuer=expected_issuer, options=max_exp)
|
2015-09-04 15:29:22 +00:00
|
|
|
except strictjwt.InvalidTokenError:
|
2015-09-10 16:24:33 +00:00
|
|
|
logger.exception('Invalid token reason')
|
2015-07-16 19:49:06 +00:00
|
|
|
raise InvalidJWTException('Invalid token')
|
|
|
|
|
|
|
|
if not 'sub' in payload:
|
|
|
|
raise InvalidJWTException('Missing sub field in JWT')
|
|
|
|
|
2015-12-09 21:10:39 +00:00
|
|
|
loaded_identity = Identity(payload['sub'], 'signed_jwt')
|
2015-07-16 19:49:06 +00:00
|
|
|
|
|
|
|
# Process the grants from the payload
|
|
|
|
if 'access' in payload:
|
2015-09-10 16:24:33 +00:00
|
|
|
try:
|
|
|
|
validate(payload['access'], ACCESS_SCHEMA)
|
|
|
|
except ValidationError:
|
|
|
|
logger.exception('We should not be minting invalid credentials')
|
|
|
|
raise InvalidJWTException('Token contained invalid or malformed access grants')
|
2015-07-16 19:49:06 +00:00
|
|
|
|
2016-01-21 20:40:51 +00:00
|
|
|
lib_namespace = app.config['LIBRARY_NAMESPACE']
|
2015-09-10 16:24:33 +00:00
|
|
|
for grant in payload['access']:
|
2016-01-21 20:40:51 +00:00
|
|
|
namespace, repo_name = parse_namespace_repository(grant['name'], lib_namespace)
|
2015-07-16 19:49:06 +00:00
|
|
|
|
|
|
|
if 'push' in grant['actions']:
|
|
|
|
loaded_identity.provides.add(repository_write_grant(namespace, repo_name))
|
|
|
|
elif 'pull' in grant['actions']:
|
|
|
|
loaded_identity.provides.add(repository_read_grant(namespace, repo_name))
|
|
|
|
|
2015-12-09 21:10:39 +00:00
|
|
|
default_context = {
|
|
|
|
'kind': 'anonymous'
|
|
|
|
}
|
|
|
|
|
|
|
|
if payload['sub'] != ANONYMOUS_SUB:
|
|
|
|
default_context = {
|
|
|
|
'kind': 'user',
|
|
|
|
'user': payload['sub'],
|
|
|
|
}
|
|
|
|
|
|
|
|
return loaded_identity, payload.get('context', default_context)
|
2015-07-16 19:49:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
@lru_cache(maxsize=1)
|
|
|
|
def load_public_key(certificate_file_path):
|
|
|
|
with open(certificate_file_path) as cert_file:
|
|
|
|
cert_obj = load_pem_x509_certificate(cert_file.read(), default_backend())
|
|
|
|
return cert_obj.public_key()
|
|
|
|
|
|
|
|
|
2015-12-09 20:07:37 +00:00
|
|
|
def process_registry_jwt_auth(func):
|
2015-06-22 21:37:13 +00:00
|
|
|
@wraps(func)
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
logger.debug('Called with params: %s, %s', args, kwargs)
|
|
|
|
auth = request.headers.get('authorization', '').strip()
|
|
|
|
if auth:
|
2015-09-10 16:24:33 +00:00
|
|
|
max_signature_seconds = app.config.get('JWT_AUTH_MAX_FRESH_S', 3660)
|
2015-07-16 19:49:06 +00:00
|
|
|
certificate_file_path = app.config['JWT_AUTH_CERTIFICATE_PATH']
|
|
|
|
public_key = load_public_key(certificate_file_path)
|
2015-06-22 21:37:13 +00:00
|
|
|
|
|
|
|
try:
|
2015-12-09 21:10:39 +00:00
|
|
|
extracted_identity, context = identity_from_bearer_token(auth, max_signature_seconds,
|
|
|
|
public_key)
|
|
|
|
|
2015-07-16 19:49:06 +00:00
|
|
|
identity_changed.send(app, identity=extracted_identity)
|
2015-12-09 21:10:39 +00:00
|
|
|
set_grant_context(context)
|
2015-07-16 19:49:06 +00:00
|
|
|
logger.debug('Identity changed to %s', extracted_identity.id)
|
|
|
|
except InvalidJWTException as ije:
|
2015-12-09 20:07:37 +00:00
|
|
|
abort(401, message=ije.message, headers=get_auth_headers())
|
2015-06-22 21:37:13 +00:00
|
|
|
else:
|
|
|
|
logger.debug('No auth header.')
|
|
|
|
|
|
|
|
return func(*args, **kwargs)
|
2015-07-16 19:49:06 +00:00
|
|
|
return wrapper
|