2020-09-06 06:50:23 +00:00
|
|
|
"""
|
|
|
|
There is only one operator!
|
|
|
|
Running on node prime.
|
|
|
|
"""
|
|
|
|
# internal imports
|
|
|
|
import os,sys; sys.path.append(os.path.abspath(os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__),'..')),'..')))
|
|
|
|
from komrade import *
|
2020-09-06 20:17:47 +00:00
|
|
|
from komrade.backend import *
|
2020-09-06 06:50:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TheOperator(Operator):
|
|
|
|
"""
|
2020-09-06 20:05:03 +00:00
|
|
|
The remote operator
|
2020-09-06 06:50:23 +00:00
|
|
|
"""
|
2020-09-06 20:17:47 +00:00
|
|
|
@property
|
|
|
|
def phone(self):
|
2020-09-06 20:25:18 +00:00
|
|
|
global TELEPHONE
|
2020-09-06 20:30:36 +00:00
|
|
|
from komrade.backend.the_telephone import TheTelephone
|
2020-09-06 20:25:18 +00:00
|
|
|
if not TELEPHONE: TELEPHONE=TheTelephone()
|
2020-09-06 20:17:47 +00:00
|
|
|
return TELEPHONE
|
2020-09-06 06:50:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, name = OPERATOR_NAME, passphrase='acc'):
|
|
|
|
"""
|
|
|
|
Boot up the operator. Requires knowing or setting a password of memory.
|
|
|
|
"""
|
|
|
|
# init req paths
|
2020-09-06 09:30:15 +00:00
|
|
|
# if not os.path.exists(PATH_OPERATOR): os.makedirs(PATH_OPERATOR)
|
2020-09-06 06:50:23 +00:00
|
|
|
if not passphrase:
|
|
|
|
passphrase=getpass.getpass('Hello, this is the Operator speaking. What is the passphrase?\n> ')
|
2020-09-06 19:39:44 +00:00
|
|
|
super().__init__(name,passphrase,path_crypt_keys=PATH_CRYPT_OP_KEYS,path_crypt_data=PATH_CRYPT_OP_DATA)
|
2020-09-06 06:50:23 +00:00
|
|
|
|
2020-09-06 08:41:22 +00:00
|
|
|
def decrypt_incoming(self,data):
|
2020-09-06 06:50:23 +00:00
|
|
|
# step 1 split:
|
2020-09-06 20:17:47 +00:00
|
|
|
data_encr_by_phone,data_encr_by_caller = data.split(BSEP)
|
2020-09-06 20:19:52 +00:00
|
|
|
data_unencr_by_phone,data_encr_by_caller = None,None
|
2020-09-06 20:17:47 +00:00
|
|
|
|
|
|
|
self.log('data_encr_by_phone =',data_encr_by_phone)
|
|
|
|
self.log('data_encr_by_caller =',data_encr_by_caller)
|
|
|
|
|
|
|
|
if data_encr_by_phone:
|
|
|
|
# then try to unwrap telephone encryption
|
|
|
|
try:
|
|
|
|
data_unencr_by_phone = SMessage(self.privkey_, self.phone.pubkey_).unwrap(data)
|
|
|
|
self.log('decrypted data !!!:',data_unencr_by_phone)
|
|
|
|
except ThemisError:
|
|
|
|
self.log('not really from the telephone?')
|
|
|
|
return OPERATOR_INTERCEPT_MESSAGE
|
2020-09-06 20:19:52 +00:00
|
|
|
|
2020-09-06 20:17:47 +00:00
|
|
|
|
|
|
|
|
2020-09-06 20:19:52 +00:00
|
|
|
if data_encr_by_caller and 'name' in data_unencr_by_phone:
|
|
|
|
name=data_unencr_by_phone['name']
|
|
|
|
keychain=data_unencr_by_phone.get('keychain',{})
|
2020-09-06 06:50:23 +00:00
|
|
|
|
|
|
|
# decrypt using this user's pubkey on record
|
2020-09-06 20:17:47 +00:00
|
|
|
caller = Caller(name)
|
2020-09-06 20:19:52 +00:00
|
|
|
data_unencr2 = SMessage(self.privkey_, caller.pubkey_).unwrap(data_encr_by_caller)
|
2020-09-06 06:50:23 +00:00
|
|
|
|
2020-09-06 20:19:52 +00:00
|
|
|
if type(data_unencr_by_phone)==dict and type(data_encr_by_caller)==dict:
|
|
|
|
data = data_unencr_by_phone
|
|
|
|
dict_merge(data_encr_by_caller, data)
|
2020-09-06 06:50:23 +00:00
|
|
|
else:
|
2020-09-06 20:19:52 +00:00
|
|
|
data=(data_unencr_by_phone,data_encr_by_caller)
|
2020-09-06 06:50:23 +00:00
|
|
|
else:
|
2020-09-06 20:19:52 +00:00
|
|
|
data = data_unencr_by_phone
|
2020-09-06 08:41:22 +00:00
|
|
|
return data
|
2020-09-06 06:50:23 +00:00
|
|
|
|
2020-09-06 20:05:03 +00:00
|
|
|
def receive(self,data):
|
|
|
|
# decrypt
|
2020-09-06 08:41:22 +00:00
|
|
|
data = self.decrypt_incoming(data)
|
2020-09-06 20:05:03 +00:00
|
|
|
|
|
|
|
# decode
|
|
|
|
data_s = data.decode()
|
|
|
|
|
|
|
|
|
|
|
|
self.log('DATA =',data_s)
|
|
|
|
stop
|
|
|
|
return self.route(data)
|
|
|
|
|
|
|
|
def route(self, data):
|
|
|
|
# data = self.decrypt_incoming(data)
|
|
|
|
# self.log('DATA =',data)
|
|
|
|
return data# 'success!'
|
2020-09-06 06:50:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def init_operators():
|
2020-09-06 09:25:13 +00:00
|
|
|
op = Operator(
|
|
|
|
name=OPERATOR_NAME,
|
|
|
|
path_crypt_keys=PATH_CRYPT_OP_KEYS,
|
|
|
|
path_crypt_data=PATH_CRYPT_OP_DATA
|
|
|
|
)
|
|
|
|
|
|
|
|
phone = Operator(
|
|
|
|
name=TELEPHONE_NAME,
|
2020-09-06 14:45:40 +00:00
|
|
|
path_crypt_keys=PATH_CRYPT_OP_KEYS,
|
|
|
|
path_crypt_data=PATH_CRYPT_OP_KEYS
|
2020-09-06 09:25:13 +00:00
|
|
|
)
|
2020-09-06 06:50:23 +00:00
|
|
|
|
2020-09-06 15:47:45 +00:00
|
|
|
|
|
|
|
# keys_to_return = [k for k in KEYMAKER_DEFAULT_KEYS_TO_RETURN if not k.startswith('admin')]
|
2020-09-06 15:53:48 +00:00
|
|
|
|
|
|
|
# for the root entities, the *users* keep the encrypted version,
|
|
|
|
# and the Op and Telephone just have decryptor keys
|
2020-09-06 16:31:35 +00:00
|
|
|
# keys_to_save = ['pubkey_decr','privkey_decr','adminkey_decr_decr']
|
|
|
|
|
2020-09-06 19:16:35 +00:00
|
|
|
# keys_to_save = ['pubkey_encr','privkey_encr','adminkey_decr_encr','adminkey_decr_decr','adminkey_encr']
|
|
|
|
# keys_to_return = ['pubkey_decr','privkey_decr']
|
2020-09-06 16:31:35 +00:00
|
|
|
|
|
|
|
# keys_to_return = ['pubkey_encr','privkey_encr','adminkey_encr','adminkey_decr_encr']
|
2020-09-06 19:10:02 +00:00
|
|
|
op_decr_keys = op.forge_new_keys(
|
2020-09-06 19:16:35 +00:00
|
|
|
keys_to_save=['pubkey','privkey','adminkey_encr','adminkey_decr_encr','adminkey_decr_decr'],
|
2020-09-06 19:10:02 +00:00
|
|
|
keys_to_return=['pubkey']
|
|
|
|
)
|
|
|
|
|
|
|
|
phone_decr_keys = phone.forge_new_keys(
|
|
|
|
keys_to_save=['pubkey'],
|
|
|
|
keys_to_return=['pubkey','privkey']
|
|
|
|
)
|
2020-09-06 14:45:40 +00:00
|
|
|
|
2020-09-06 14:46:57 +00:00
|
|
|
print('\n'*5)
|
|
|
|
print('OPERATOR_KEYCHAIN =',op_decr_keys)
|
|
|
|
print()
|
|
|
|
print('TELEPHONE_KEYCHAIN =',phone_decr_keys)
|
2020-09-06 12:00:45 +00:00
|
|
|
|
2020-09-06 15:32:12 +00:00
|
|
|
# stringify
|
|
|
|
for k,v in phone_decr_keys.items():
|
2020-09-06 18:56:01 +00:00
|
|
|
v_s = b64encode(v).decode('utf-8')
|
2020-09-06 17:20:45 +00:00
|
|
|
phone_decr_keys[k]=v_s
|
2020-09-06 15:32:12 +00:00
|
|
|
for k,v in op_decr_keys.items():
|
2020-09-06 18:56:01 +00:00
|
|
|
v_s = b64encode(v).decode('utf-8')
|
2020-09-06 17:20:45 +00:00
|
|
|
op_decr_keys[k]=v_s
|
2020-09-06 15:32:12 +00:00
|
|
|
|
2020-09-06 17:19:30 +00:00
|
|
|
|
2020-09-06 17:23:28 +00:00
|
|
|
# print('total_d',total_d)
|
2020-09-06 17:20:45 +00:00
|
|
|
builtin_keychains = {OPERATOR_NAME:op_decr_keys, TELEPHONE_NAME:phone_decr_keys}
|
2020-09-06 17:19:30 +00:00
|
|
|
builtin_keychains_s = json.dumps(builtin_keychains)
|
2020-09-06 16:56:45 +00:00
|
|
|
|
2020-09-06 16:57:28 +00:00
|
|
|
print('builtin_keychains =',builtin_keychains)
|
|
|
|
|
|
|
|
print('builtin_keychains_s =',builtin_keychains_s)
|
2020-09-06 15:32:12 +00:00
|
|
|
builtin_keychains_b = builtin_keychains_s.encode('utf-8')
|
|
|
|
|
|
|
|
builtin_keychains_b_decr = KomradeSymmetricKeyWithoutPassphrase()
|
|
|
|
builtin_keychains_b_encr = builtin_keychains_b_decr.encrypt(builtin_keychains_b)
|
|
|
|
|
|
|
|
builtin_keychains_b_decr_b64 = b64encode(builtin_keychains_b_decr.key)
|
|
|
|
builtin_keychains_b_encr_b64 = b64encode(builtin_keychains_b_encr)
|
|
|
|
|
|
|
|
with open(PATH_BUILTIN_KEYCHAINS_ENCR,'wb') as of:
|
|
|
|
of.write(builtin_keychains_b_encr_b64)
|
|
|
|
print('>> saved:',PATH_BUILTIN_KEYCHAINS_ENCR)
|
2020-09-06 16:58:36 +00:00
|
|
|
print(builtin_keychains_b_encr_b64,'\n\n')
|
2020-09-06 15:32:12 +00:00
|
|
|
with open(PATH_BUILTIN_KEYCHAINS_DECR,'wb') as of:
|
|
|
|
of.write(builtin_keychains_b_decr_b64)
|
|
|
|
print('>> saved:',PATH_BUILTIN_KEYCHAINS_DECR)
|
2020-09-06 16:58:36 +00:00
|
|
|
print(builtin_keychains_b_decr_b64,'\n')
|
2020-09-06 15:32:12 +00:00
|
|
|
|
|
|
|
|
2020-09-06 10:34:04 +00:00
|
|
|
|
2020-09-06 13:07:27 +00:00
|
|
|
# op_pub = op.pubkey_decr_
|
|
|
|
# phone_pub = phone.pubkey_decr_
|
|
|
|
# phone_priv = phone.privkey_decr_
|
2020-09-06 10:34:04 +00:00
|
|
|
|
2020-09-06 13:07:27 +00:00
|
|
|
# print('OPERATOR_PUBKEY_DECR =',b64encode(op_pub))
|
|
|
|
# print('TELEPHONE_PUBKEY_DECR =',b64encode(phone_pub))
|
|
|
|
# print('TELEPHONE_PRIVKEY_DECR =',b64encode(phone_priv))
|
2020-09-06 10:34:04 +00:00
|
|
|
# return {
|
2020-09-06 10:34:35 +00:00
|
|
|
# 'op.keychain()':op.keychain(),
|
|
|
|
# 'phone.keychain()':phone.keychain()
|
|
|
|
# }
|
2020-09-06 06:50:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_op():
|
2020-09-06 19:39:44 +00:00
|
|
|
from komrade.backend.the_telephone import TheTelephone
|
|
|
|
|
|
|
|
|
|
|
|
op = TheOperator()
|
|
|
|
# op.boot()
|
|
|
|
|
2020-09-06 19:19:44 +00:00
|
|
|
keychain_op = op.keychain(force=True)
|
2020-09-06 19:39:44 +00:00
|
|
|
|
2020-09-06 19:19:44 +00:00
|
|
|
|
2020-09-06 19:39:44 +00:00
|
|
|
phone = TheTelephone()
|
|
|
|
# phone.boot()
|
2020-09-06 19:19:44 +00:00
|
|
|
keychain_ph = phone.keychain(force=True)
|
|
|
|
|
|
|
|
|
2020-09-06 19:18:43 +00:00
|
|
|
from pprint import pprint
|
2020-09-06 19:19:44 +00:00
|
|
|
print('REASSEMBLED OPERATOR KEYCHAIN')
|
|
|
|
pprint(keychain_op)
|
|
|
|
# stop
|
|
|
|
|
2020-09-06 19:18:43 +00:00
|
|
|
print('REASSEMBLED TELEPHONE KEYCHAIN')
|
2020-09-06 19:19:44 +00:00
|
|
|
pprint(keychain_ph)
|
2020-09-06 19:18:43 +00:00
|
|
|
|
2020-09-06 17:44:08 +00:00
|
|
|
# print(op.pubkey(keychain=keychain))
|
2020-09-06 18:52:47 +00:00
|
|
|
# print(op.crypt_keys.get(op.pubkey(), prefix='/privkey_encr/'))
|
2020-09-06 18:51:25 +00:00
|
|
|
# print(op.crypt_keys.get(op.name, prefix='/pubkey_encr/'))
|
2020-09-06 19:18:43 +00:00
|
|
|
# print(op.pubkey_)
|
2020-09-06 18:52:47 +00:00
|
|
|
|
2020-09-06 17:42:57 +00:00
|
|
|
|
2020-09-06 19:18:43 +00:00
|
|
|
# stop
|
2020-09-06 06:50:23 +00:00
|
|
|
|
2020-09-06 19:18:43 +00:00
|
|
|
# pubkey = op.keychain()['pubkey']
|
|
|
|
# pubkey_b64 = b64encode(pubkey)
|
|
|
|
# print(pubkey)
|
2020-09-06 06:50:23 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__': test_op()
|