epicyon/pgp.py

623 lines
19 KiB
Python

__filename__ = "pgp.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
__version__ = "1.2.0"
__maintainer__ = "Bob Mottram"
__email__ = "bob@libreserver.org"
__status__ = "Production"
__module_group__ = "Profile Metadata"
import os
import subprocess
from pathlib import Path
from person import get_actor_json
from utils import contains_pgp_public_key
from utils import is_pgp_encrypted
from utils import get_full_domain
from utils import get_status_number
from utils import local_actor_url
from utils import replace_users_with_at
from webfinger import webfinger_handle
from posts import get_person_box
from auth import create_basic_auth_header
from session import post_json
def get_email_address(actor_json: {}) -> str:
"""Returns the email address for the given actor
"""
if not actor_json.get('attachment'):
return ''
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value['name'].lower().startswith('email'):
continue
if not property_value.get('type'):
continue
if not property_value.get('value'):
continue
if property_value['type'] != 'PropertyValue':
continue
if '@' not in property_value['value']:
continue
if '.' not in property_value['value']:
continue
return property_value['value']
return ''
def get_pgp_pub_key(actor_json: {}) -> str:
"""Returns PGP public key for the given actor
"""
if not actor_json.get('attachment'):
return ''
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value['name'].lower().startswith('pgp'):
continue
if not property_value.get('type'):
continue
if not property_value.get('value'):
continue
if property_value['type'] != 'PropertyValue':
continue
if not contains_pgp_public_key(property_value['value']):
continue
return property_value['value']
return ''
def get_pgp_fingerprint(actor_json: {}) -> str:
"""Returns PGP fingerprint for the given actor
"""
if not actor_json.get('attachment'):
return ''
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value['name'].lower().startswith('openpgp'):
continue
if not property_value.get('type'):
continue
if not property_value.get('value'):
continue
if property_value['type'] != 'PropertyValue':
continue
if len(property_value['value']) < 10:
continue
return property_value['value']
return ''
def set_email_address(actor_json: {}, email_address: str) -> None:
"""Sets the email address for the given actor
"""
not_email_address = False
if '@' not in email_address:
not_email_address = True
if '.' not in email_address:
not_email_address = True
if '<' in email_address:
not_email_address = True
if email_address.startswith('@'):
not_email_address = True
if not actor_json.get('attachment'):
actor_json['attachment'] = []
# remove any existing value
property_found = None
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value.get('type'):
continue
if not property_value['name'].lower().startswith('email'):
continue
property_found = property_value
break
if property_found:
actor_json['attachment'].remove(property_found)
if not_email_address:
return
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value.get('type'):
continue
if not property_value['name'].lower().startswith('email'):
continue
if property_value['type'] != 'PropertyValue':
continue
property_value['value'] = email_address
return
new_email_address = {
"name": "Email",
"type": "PropertyValue",
"value": email_address
}
actor_json['attachment'].append(new_email_address)
def set_pgp_pub_key(actor_json: {}, pgp_pub_key: str) -> None:
"""Sets a PGP public key for the given actor
"""
remove_key = False
if not pgp_pub_key:
remove_key = True
else:
if not contains_pgp_public_key(pgp_pub_key):
remove_key = True
if '<' in pgp_pub_key:
remove_key = True
if not actor_json.get('attachment'):
actor_json['attachment'] = []
# remove any existing value
property_found = None
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value.get('type'):
continue
if not property_value['name'].lower().startswith('pgp'):
continue
property_found = property_value
break
if property_found:
actor_json['attachment'].remove(property_value)
if remove_key:
return
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value.get('type'):
continue
if not property_value['name'].lower().startswith('pgp'):
continue
if property_value['type'] != 'PropertyValue':
continue
property_value['value'] = pgp_pub_key
return
newpgp_pub_key = {
"name": "PGP",
"type": "PropertyValue",
"value": pgp_pub_key
}
actor_json['attachment'].append(newpgp_pub_key)
def set_pgp_fingerprint(actor_json: {}, fingerprint: str) -> None:
"""Sets a PGP fingerprint for the given actor
"""
remove_fingerprint = False
if not fingerprint:
remove_fingerprint = True
else:
if len(fingerprint) < 10:
remove_fingerprint = True
if not actor_json.get('attachment'):
actor_json['attachment'] = []
# remove any existing value
property_found = None
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value.get('type'):
continue
if not property_value['name'].lower().startswith('openpgp'):
continue
property_found = property_value
break
if property_found:
actor_json['attachment'].remove(property_value)
if remove_fingerprint:
return
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value.get('type'):
continue
if not property_value['name'].lower().startswith('openpgp'):
continue
if property_value['type'] != 'PropertyValue':
continue
property_value['value'] = fingerprint.strip()
return
newpgp_fingerprint = {
"name": "OpenPGP",
"type": "PropertyValue",
"value": fingerprint
}
actor_json['attachment'].append(newpgp_fingerprint)
def extract_pgp_public_key(content: str) -> str:
"""Returns the PGP key from the given text
"""
start_block = '--BEGIN PGP PUBLIC KEY BLOCK--'
end_block = '--END PGP PUBLIC KEY BLOCK--'
if start_block not in content:
return None
if end_block not in content:
return None
if '\n' not in content:
return None
lines_list = content.split('\n')
extracting = False
public_key = ''
for line in lines_list:
if not extracting:
if start_block in line:
extracting = True
else:
if end_block in line:
public_key += line
break
if extracting:
public_key += line + '\n'
return public_key
def _pgp_import_pub_key(recipient_pub_key: str) -> str:
""" Import the given public key
"""
# do a dry run
cmd_import_pub_key = \
'echo "' + recipient_pub_key + \
'" | gpg --dry-run --import 2> /dev/null'
proc = subprocess.Popen([cmd_import_pub_key],
stdout=subprocess.PIPE, shell=True)
(import_result, err) = proc.communicate()
if err:
return None
# this time for real
cmd_import_pub_key = \
'echo "' + recipient_pub_key + '" | gpg --import 2> /dev/null'
proc = subprocess.Popen([cmd_import_pub_key],
stdout=subprocess.PIPE, shell=True)
(import_result, err) = proc.communicate()
if err:
return None
# get the key id
cmd_import_pub_key = \
'echo "' + recipient_pub_key + '" | gpg --show-keys'
proc = subprocess.Popen([cmd_import_pub_key],
stdout=subprocess.PIPE, shell=True)
(import_result, err) = proc.communicate()
if not import_result:
return None
import_result = import_result.decode('utf-8').split('\n')
key_id = ''
for line in import_result:
if line.startswith('pub'):
continue
if line.startswith('uid'):
continue
if line.startswith('sub'):
continue
key_id = line.strip()
break
return key_id
def _pgp_encrypt(content: str, recipient_pub_key: str) -> str:
""" Encrypt using your default pgp key to the given recipient
"""
key_id = _pgp_import_pub_key(recipient_pub_key)
if not key_id:
return None
cmd_encrypt = \
'echo "' + content + '" | gpg --encrypt --armor --recipient ' + \
key_id + ' 2> /dev/null'
proc = subprocess.Popen([cmd_encrypt],
stdout=subprocess.PIPE, shell=True)
(encrypt_result, _) = proc.communicate()
if not encrypt_result:
return None
encrypt_result = encrypt_result.decode('utf-8')
if not is_pgp_encrypted(encrypt_result):
return None
return encrypt_result
def _get_pgp_public_key_from_actor(signing_priv_key_pem: str,
domain: str, handle: str,
actor_json: {} = None) -> str:
"""Searches tags on the actor to see if there is any PGP
public key specified
"""
if not actor_json:
actor_json, _ = \
get_actor_json(domain, handle, False, False, False, True,
signing_priv_key_pem, None)
if not actor_json:
return None
if not actor_json.get('attachment'):
return None
if not isinstance(actor_json['attachment'], list):
return None
# search through the tags on the actor
for tag in actor_json['attachment']:
if not isinstance(tag, dict):
continue
if not tag.get('value'):
continue
if not isinstance(tag['value'], str):
continue
if contains_pgp_public_key(tag['value']):
return tag['value']
return None
def has_local_pg_pkey() -> bool:
"""Returns true if there is a local .gnupg directory
"""
home_dir = str(Path.home())
gpg_dir = home_dir + '/.gnupg'
if os.path.isdir(gpg_dir):
key_id = pgp_local_public_key()
if key_id:
return True
return False
def pgp_encrypt_to_actor(domain: str, content: str, toHandle: str,
signing_priv_key_pem: str) -> str:
"""PGP encrypt a message to the given actor or handle
"""
# get the actor and extract the pgp public key from it
recipient_pub_key = \
_get_pgp_public_key_from_actor(signing_priv_key_pem, domain, toHandle)
if not recipient_pub_key:
return None
# encrypt using the recipient public key
return _pgp_encrypt(content, recipient_pub_key)
def pgp_decrypt(domain: str, content: str, fromHandle: str,
signing_priv_key_pem: str) -> str:
""" Encrypt using your default pgp key to the given recipient
fromHandle can be a handle or actor url
"""
if not is_pgp_encrypted(content):
return content
# if the public key is also included within the message then import it
if contains_pgp_public_key(content):
pub_key = extract_pgp_public_key(content)
else:
pub_key = \
_get_pgp_public_key_from_actor(signing_priv_key_pem,
domain, content, fromHandle)
if pub_key:
_pgp_import_pub_key(pub_key)
cmd_decrypt = \
'echo "' + content + '" | gpg --decrypt --armor 2> /dev/null'
proc = subprocess.Popen([cmd_decrypt],
stdout=subprocess.PIPE, shell=True)
(decrypt_result, _) = proc.communicate()
if not decrypt_result:
return content
decrypt_result = decrypt_result.decode('utf-8').strip()
return decrypt_result
def _pgp_local_public_key_id() -> str:
"""Gets the local pgp public key ID
"""
cmd_str = \
"gpgconf --list-options gpg | " + \
"awk -F: '$1 == \"default-key\" {print $10}'"
proc = subprocess.Popen([cmd_str],
stdout=subprocess.PIPE, shell=True)
(result, err) = proc.communicate()
if err:
return None
if not result:
return None
if len(result) < 5:
return None
return result.decode('utf-8').replace('"', '').strip()
def pgp_local_public_key() -> str:
"""Gets the local pgp public key
"""
key_id = _pgp_local_public_key_id()
if not key_id:
key_id = ''
cmd_str = "gpg --armor --export " + key_id
proc = subprocess.Popen([cmd_str],
stdout=subprocess.PIPE, shell=True)
(result, err) = proc.communicate()
if err:
return None
if not result:
return None
return extract_pgp_public_key(result.decode('utf-8'))
def pgp_public_key_upload(base_dir: str, session,
nickname: str, password: str,
domain: str, port: int,
http_prefix: str,
cached_webfingers: {}, person_cache: {},
debug: bool, test: str,
signing_priv_key_pem: str) -> {}:
if debug:
print('pgp_public_key_upload')
if not session:
if debug:
print('WARN: No session for pgp_public_key_upload')
return None
if not test:
if debug:
print('Getting PGP public key')
pgp_pub_key = pgp_local_public_key()
if not pgp_pub_key:
return None
pgp_pub_key_id = _pgp_local_public_key_id()
else:
if debug:
print('Testing with PGP public key ' + test)
pgp_pub_key = test
pgp_pub_key_id = None
domain_full = get_full_domain(domain, port)
if debug:
print('PGP test domain: ' + domain_full)
handle = nickname + '@' + domain_full
if debug:
print('Getting actor for ' + handle)
actor_json, _ = \
get_actor_json(domain_full, handle, False, False, debug, True,
signing_priv_key_pem, session)
if not actor_json:
if debug:
print('No actor returned for ' + handle)
return None
if debug:
print('Actor for ' + handle + ' obtained')
actor = local_actor_url(http_prefix, nickname, domain_full)
handle = replace_users_with_at(actor)
# check that this looks like the correct actor
if not actor_json.get('id'):
if debug:
print('Actor has no id')
return None
if not actor_json.get('url'):
if debug:
print('Actor has no url')
return None
if not actor_json.get('type'):
if debug:
print('Actor has no type')
return None
if actor_json['id'] != actor:
if debug:
print('Actor id is not ' + actor +
' instead is ' + actor_json['id'])
return None
if actor_json['url'] != handle:
if debug:
print('Actor url is not ' + handle)
return None
if actor_json['type'] != 'Person':
if debug:
print('Actor type is not Person')
return None
# set the pgp details
if pgp_pub_key_id:
set_pgp_fingerprint(actor_json, pgp_pub_key_id)
else:
if debug:
print('No PGP key Id. Continuing anyway.')
if debug:
print('Setting PGP key within ' + actor)
set_pgp_pub_key(actor_json, pgp_pub_key)
# create an actor update
status_number, _ = get_status_number()
actor_update = {
'@context': 'https://www.w3.org/ns/activitystreams',
'id': actor + '#updates/' + status_number,
'type': 'Update',
'actor': actor,
'to': [actor],
'cc': [],
'object': actor_json
}
if debug:
print('actor update is ' + str(actor_update))
# lookup the inbox for the To handle
wf_request = \
webfinger_handle(session, handle, http_prefix, cached_webfingers,
domain, __version__, debug, False,
signing_priv_key_pem)
if not wf_request:
if debug:
print('DEBUG: pgp actor update webfinger failed for ' +
handle)
return None
if not isinstance(wf_request, dict):
if debug:
print('WARN: Webfinger for ' + handle +
' did not return a dict. ' + str(wf_request))
return None
post_to_box = 'outbox'
# get the actor inbox for the To handle
origin_domain = domain
(inbox_url, _, _, from_person_id, _, _,
_, _) = get_person_box(signing_priv_key_pem, origin_domain,
base_dir, session, wf_request,
person_cache,
__version__, http_prefix, nickname,
domain, post_to_box, 35725)
if not inbox_url:
if debug:
print('DEBUG: No ' + post_to_box + ' was found for ' + handle)
return None
if not from_person_id:
if debug:
print('DEBUG: No actor was found for ' + handle)
return None
auth_header = create_basic_auth_header(nickname, password)
headers = {
'host': domain,
'Content-type': 'application/json',
'Authorization': auth_header
}
quiet = not debug
tries = 0
while tries < 4:
post_result = \
post_json(http_prefix, domain_full,
session, actor_update, [], inbox_url,
headers, 5, quiet)
if post_result:
break
tries += 1
if post_result is None:
if debug:
print('DEBUG: POST pgp actor update failed for c2s to ' +
inbox_url)
return None
if debug:
print('DEBUG: c2s POST pgp actor update success')
return actor_update