Welcome to mirror list, hosted at ThFree Co, Russian Federation.

secrets.py « src - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0caeda7bfebcf08c5429858e8e78d4214acb4b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
from common.configpaths import gajimpaths

from common import crypto
from common import exceptions

import dialogs

import os
import pickle

import gtk

import Crypto.Cipher.AES
import Crypto.Hash.SHA256
import Crypto.PublicKey.RSA

secrets_filename = gajimpaths['SECRETS_FILE']
secrets_cache = None

secrets_cipher = None
secrets_counter = None

# strength of the encryption used on SECRETS_FILE
n = 256

class Counter:
	def __init__(self, n, iv):
		self.n = n
		self.c = crypto.decode_mpi(iv)

	def __call__(self):
		self.c = (self.c + 1) % (2 ** self.n)
		return crypto.encode_mpi_with_padding(self.c)

# return en/decrypter if it's cached, otherwise create it from the user's 
# passphrase
def get_key(counter, passph=None):
	global secrets_cipher, secrets_counter

	if secrets_cipher:
		return secrets_cipher

	if not passph:
		passph, checked = dialogs.PassphraseDialog(_('Passphrase Required'),
			_('To continue, Gajim needs to access your stored secrets. Enter your passphrase')
			).run()

		if passph == -1:
			raise exceptions.Cancelled

	sh = Crypto.Hash.SHA256.new()
	sh.update(passph)
	key = sh.digest()

	secrets_counter = counter

	secrets_cipher = Crypto.Cipher.AES.new(key, Crypto.Cipher.AES.MODE_CTR,
		counter=secrets_counter)

	return secrets_cipher

class Secrets:
	def __init__(self, filename):
		self.filename = filename
		self.srs = {}
		self.pubkeys = {}
		self.privkeys = {}

	def _save(self):
		global secrets_cipher, secrets_counter

		old_counter = secrets_counter.c

		# pickle doesn't appear to have problems with trailing whitespace
		padded = crypto.pad_to_multiple(pickle.dumps(self), n / 8, ' ', False)
		encrypted = secrets_cipher.encrypt(padded)

		f = open(secrets_filename, 'w')
		f.write(crypto.encode_mpi_with_padding(old_counter) + encrypted)
		f.close()

	def cancel(self):
		raise exceptions.Cancelled

	def save(self):
		passph1 = None

		def _cont1(passph, checked):
			dialogs.PassphraseDialog(_('Confirm Passphrase'),
				_('Enter your new passphrase again for confirmation'),
				is_modal=False, ok_handler=(_cont2, passph), cancel_handler=self.cancel)

		def _cont2(passph, checked, passph1):
			if passph != passph1:
				dialogs.PassphraseDialog(_('Create Passphrase'),
					_('Passphrases did not match.\n') + 
					_('Gajim needs you to create a passphrase to encrypt stored secrets'),
					is_modal=False, ok_handler=_cont1, cancel_handler=self.cancel)
				return

			counter = Counter(16, crypto.random_bytes(16))
			get_key(counter, passph1)

			self._save()

		if not os.path.exists(self.filename):
			dialogs.PassphraseDialog(_('Create Passphrase'),
				_('Gajim needs you to create a passphrase to encrypt stored secrets'),
				is_modal=False, ok_handler=_cont1, cancel_handler=self.cancel)
		else:
			self._save()

	def retained_secrets(self, account, bare_jid):
		try:
			return self.srs[account][bare_jid]
		except KeyError:
			return []

	# retained secrets are stored as a tuple of the secret and whether the user 
	# has verified it
	def save_new_srs(self, account, jid, secret, verified):
		if not account in self.srs:
			self.srs[account] = {}

		if not jid in self.srs[account]:
			self.srs[account][jid] = []

		self.srs[account][jid].append((secret, verified))

		self.save()

	def find_srs(self, account, jid, srs):
		our_secrets = self.srs[account][jid]
		return filter(lambda (x,y): x == srs, our_secrets)[0]

	# has the user verified this retained secret?
	def srs_verified(self, account, jid, srs):
		return self.find_srs(account, jid, srs)[1]

	def replace_srs(self, account, jid, old_secret, new_secret, verified):
		our_secrets = self.srs[account][jid]

		idx = our_secrets.index(self.find_srs(account, jid, old_secret))

		our_secrets[idx] = (new_secret, verified)

		self.save()

	# the public key associated with 'account'
	def my_pubkey(self, account):
		try:
			pk = self.privkeys[account]
		except KeyError:
			pk = Crypto.PublicKey.RSA.generate(384, crypto.random_bytes)

			self.privkeys[account] = pk
			self.save()

		return pk

def load_secrets(filename):
	f = open(filename, 'r')

	counter = Counter(16, f.read(16))

	decrypted = get_key(counter).decrypt(f.read())

	try:
		secrets = pickle.loads(decrypted)
	except:
		f.close()

		global secrets_cipher

		secrets_cipher = None

		return load_secrets(filename)
	else:
		f.close()

		return secrets

def secrets():
	global secrets_cache

	if secrets_cache:
		return secrets_cache

	if os.path.exists(secrets_filename):
		secrets_cache = load_secrets(secrets_filename)
	else:
		secrets_cache = Secrets(secrets_filename)

	return secrets_cache