2020-09-26 13:58:25 +00:00
|
|
|
import base64, os, os.path, hmac, json
|
2014-06-21 23:42:48 +00:00
|
|
|
|
|
|
|
from flask import make_response
|
|
|
|
|
2020-09-26 13:58:25 +00:00
|
|
|
import utils
|
|
|
|
from mailconfig import get_mail_password, get_mail_user_privileges
|
2020-09-30 10:34:26 +00:00
|
|
|
from mfa import get_hash_mfa_state, validate_auth_mfa
|
2014-08-17 22:43:57 +00:00
|
|
|
|
2014-06-21 23:42:48 +00:00
|
|
|
DEFAULT_KEY_PATH = '/var/lib/mailinabox/api.key'
|
|
|
|
DEFAULT_AUTH_REALM = 'Mail-in-a-Box Management Server'
|
|
|
|
|
|
|
|
class KeyAuthService:
|
|
|
|
"""Generate an API key for authenticating clients
|
|
|
|
|
|
|
|
Clients must read the key from the key file and send the key with all HTTP
|
|
|
|
requests. The key is passed as the username field in the standard HTTP
|
|
|
|
Basic Auth header.
|
|
|
|
"""
|
2014-06-22 12:55:19 +00:00
|
|
|
def __init__(self):
|
2014-06-21 23:42:48 +00:00
|
|
|
self.auth_realm = DEFAULT_AUTH_REALM
|
|
|
|
self.key = self._generate_key()
|
2014-06-22 12:45:29 +00:00
|
|
|
self.key_path = DEFAULT_KEY_PATH
|
2014-06-21 23:42:48 +00:00
|
|
|
|
|
|
|
def write_key(self):
|
|
|
|
"""Write key to file so authorized clients can get the key
|
|
|
|
|
|
|
|
The key file is created with mode 0640 so that additional users can be
|
|
|
|
authorized to access the API by granting group/ACL read permissions on
|
|
|
|
the key file.
|
|
|
|
"""
|
|
|
|
def create_file_with_mode(path, mode):
|
|
|
|
# Based on answer by A-B-B: http://stackoverflow.com/a/15015748
|
|
|
|
old_umask = os.umask(0)
|
|
|
|
try:
|
|
|
|
return os.fdopen(os.open(path, os.O_WRONLY | os.O_CREAT, mode), 'w')
|
|
|
|
finally:
|
|
|
|
os.umask(old_umask)
|
|
|
|
|
|
|
|
os.makedirs(os.path.dirname(self.key_path), exist_ok=True)
|
|
|
|
|
|
|
|
with create_file_with_mode(self.key_path, 0o640) as key_file:
|
|
|
|
key_file.write(self.key + '\n')
|
|
|
|
|
2014-11-30 15:43:07 +00:00
|
|
|
def authenticate(self, request, env):
|
2014-08-17 22:43:57 +00:00
|
|
|
"""Test if the client key passed in HTTP Authorization header matches the service key
|
|
|
|
or if the or username/password passed in the header matches an administrator user.
|
2014-12-01 19:20:46 +00:00
|
|
|
Returns a tuple of the user's email address and list of user privileges (e.g.
|
|
|
|
('my@email', []) or ('my@email', ['admin']); raises a ValueError on login failure.
|
|
|
|
If the user used an API key, the user's email is returned as None."""
|
2014-06-21 23:42:48 +00:00
|
|
|
|
|
|
|
def decode(s):
|
2014-08-17 22:43:57 +00:00
|
|
|
return base64.b64decode(s.encode('ascii')).decode('ascii')
|
2014-06-21 23:42:48 +00:00
|
|
|
|
2014-08-17 22:43:57 +00:00
|
|
|
def parse_basic_auth(header):
|
2014-08-08 19:36:00 +00:00
|
|
|
if " " not in header:
|
2014-08-17 22:43:57 +00:00
|
|
|
return None, None
|
2014-06-21 23:42:48 +00:00
|
|
|
scheme, credentials = header.split(maxsplit=1)
|
|
|
|
if scheme != 'Basic':
|
2014-08-17 22:43:57 +00:00
|
|
|
return None, None
|
2014-06-21 23:42:48 +00:00
|
|
|
|
2014-08-08 19:36:00 +00:00
|
|
|
credentials = decode(credentials)
|
|
|
|
if ":" not in credentials:
|
2014-08-17 22:43:57 +00:00
|
|
|
return None, None
|
2014-08-08 19:36:00 +00:00
|
|
|
username, password = credentials.split(':', maxsplit=1)
|
2014-08-17 22:43:57 +00:00
|
|
|
return username, password
|
|
|
|
|
|
|
|
header = request.headers.get('Authorization')
|
|
|
|
if not header:
|
2014-11-30 15:43:07 +00:00
|
|
|
raise ValueError("No authorization header provided.")
|
2014-08-17 22:43:57 +00:00
|
|
|
|
|
|
|
username, password = parse_basic_auth(header)
|
|
|
|
|
|
|
|
if username in (None, ""):
|
2014-11-30 15:43:07 +00:00
|
|
|
raise ValueError("Authorization header invalid.")
|
2014-08-17 22:43:57 +00:00
|
|
|
elif username == self.key:
|
2020-09-26 13:58:25 +00:00
|
|
|
# The user passed the master API key which grants administrative privs.
|
2014-12-01 19:20:46 +00:00
|
|
|
return (None, ["admin"])
|
2014-08-17 22:43:57 +00:00
|
|
|
else:
|
2020-09-26 13:58:25 +00:00
|
|
|
# The user is trying to log in with a username and either a password
|
|
|
|
# (and possibly a MFA token) or a user-specific API key.
|
|
|
|
return (username, self.check_user_auth(username, password, request, env))
|
2020-09-02 15:23:32 +00:00
|
|
|
|
2020-09-26 13:58:25 +00:00
|
|
|
def check_user_auth(self, email, pw, request, env):
|
|
|
|
# Validate a user's login email address and password. If MFA is enabled,
|
|
|
|
# check the MFA token in the X-Auth-Token header.
|
|
|
|
#
|
|
|
|
# On success returns a list of privileges (e.g. [] or ['admin']). On login
|
|
|
|
# failure, raises a ValueError with a login error message.
|
2014-08-17 22:43:57 +00:00
|
|
|
|
|
|
|
# Sanity check.
|
|
|
|
if email == "" or pw == "":
|
2014-11-30 15:43:07 +00:00
|
|
|
raise ValueError("Enter an email address and password.")
|
|
|
|
|
2015-06-06 12:33:31 +00:00
|
|
|
# The password might be a user-specific API key. create_user_key raises
|
|
|
|
# a ValueError if the user does not exist.
|
|
|
|
if hmac.compare_digest(self.create_user_key(email, env), pw):
|
2014-12-01 19:20:46 +00:00
|
|
|
# OK.
|
2020-09-26 13:58:25 +00:00
|
|
|
pass
|
2014-12-01 19:20:46 +00:00
|
|
|
else:
|
|
|
|
# Get the hashed password of the user. Raise a ValueError if the
|
|
|
|
# email address does not correspond to a user.
|
|
|
|
pw_hash = get_mail_password(email, env)
|
|
|
|
|
|
|
|
# Authenticate.
|
|
|
|
try:
|
|
|
|
# Use 'doveadm pw' to check credentials. doveadm will return
|
|
|
|
# a non-zero exit status if the credentials are no good,
|
|
|
|
# and check_call will raise an exception in that case.
|
|
|
|
utils.shell('check_call', [
|
|
|
|
"/usr/bin/doveadm", "pw",
|
|
|
|
"-p", pw,
|
|
|
|
"-t", pw_hash,
|
|
|
|
])
|
|
|
|
except:
|
|
|
|
# Login failed.
|
|
|
|
raise ValueError("Invalid password.")
|
2014-11-30 15:43:07 +00:00
|
|
|
|
2020-09-26 13:58:25 +00:00
|
|
|
# If MFA is enabled, check that MFA passes.
|
|
|
|
status, hints = validate_auth_mfa(email, request, env)
|
|
|
|
if not status:
|
|
|
|
# Login valid. Hints may have more info.
|
|
|
|
raise ValueError(",".join(hints))
|
|
|
|
|
2015-06-06 12:33:31 +00:00
|
|
|
# Get privileges for authorization. This call should never fail because by this
|
|
|
|
# point we know the email address is a valid user. But on error the call will
|
|
|
|
# return a tuple of an error message and an HTTP status code.
|
2014-08-17 22:43:57 +00:00
|
|
|
privs = get_mail_user_privileges(email, env)
|
2015-04-28 11:05:49 +00:00
|
|
|
if isinstance(privs, tuple): raise ValueError(privs[0])
|
2014-08-17 22:43:57 +00:00
|
|
|
|
2014-11-30 15:43:07 +00:00
|
|
|
# Return a list of privileges.
|
2020-09-26 13:58:25 +00:00
|
|
|
return privs
|
2014-06-21 23:42:48 +00:00
|
|
|
|
2015-06-06 12:33:31 +00:00
|
|
|
def create_user_key(self, email, env):
|
2020-09-26 13:58:25 +00:00
|
|
|
# Create a user API key, which is a shared secret that we can re-generate from
|
|
|
|
# static information in our database. The shared secret contains the user's
|
|
|
|
# email address, current hashed password, and current MFA state, so that the
|
|
|
|
# key becomes invalid if any of that information changes.
|
|
|
|
#
|
|
|
|
# Use an HMAC to generate the API key using our master API key as a key,
|
|
|
|
# which also means that the API key becomes invalid when our master API key
|
|
|
|
# changes --- i.e. when this process is restarted.
|
|
|
|
#
|
|
|
|
# Raises ValueError via get_mail_password if the user doesn't exist.
|
|
|
|
|
|
|
|
# Construct the HMAC message from the user's email address and current password.
|
2015-06-06 12:33:31 +00:00
|
|
|
msg = b"AUTH:" + email.encode("utf8") + b" " + get_mail_password(email, env).encode("utf8")
|
2020-09-12 14:34:06 +00:00
|
|
|
|
2020-09-26 13:58:25 +00:00
|
|
|
# Add to the message the current MFA state, which is a list of MFA information.
|
|
|
|
# Turn it into a string stably.
|
2020-09-30 10:34:26 +00:00
|
|
|
msg += b" " + json.dumps(get_hash_mfa_state(email, env), sort_keys=True).encode("utf8")
|
2020-09-12 14:34:06 +00:00
|
|
|
|
2020-09-26 13:58:25 +00:00
|
|
|
# Make the HMAC.
|
|
|
|
hash_key = self.key.encode('ascii')
|
2020-09-12 14:34:06 +00:00
|
|
|
return hmac.new(hash_key, msg, digestmod="sha256").hexdigest()
|
2014-12-01 19:20:46 +00:00
|
|
|
|
2014-06-21 23:42:48 +00:00
|
|
|
def _generate_key(self):
|
|
|
|
raw_key = os.urandom(32)
|
|
|
|
return base64.b64encode(raw_key).decode('ascii')
|