2008-08-15 19:31:51 +02:00
|
|
|
# -*- coding:utf-8 -*-
|
2008-08-15 05:20:23 +02:00
|
|
|
## src/secrets.py
|
|
|
|
##
|
|
|
|
## Copyright (C) 2007-2008 Brendan Taylor <whateley AT gmail.com>
|
|
|
|
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
|
|
|
|
##
|
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
|
|
|
## it under the terms of the GNU General Public License as published
|
|
|
|
## by the Free Software Foundation; version 3 only.
|
|
|
|
##
|
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU General Public License
|
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
|
|
|
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim.common.configpaths import gajimpaths
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2008-12-02 16:10:31 +01:00
|
|
|
import Crypto
|
2017-06-13 23:58:06 +02:00
|
|
|
from gajim.common import crypto
|
|
|
|
from gajim.common import exceptions
|
2007-09-29 22:51:01 +02:00
|
|
|
|
|
|
|
import os
|
|
|
|
import pickle
|
|
|
|
|
|
|
|
secrets_filename = gajimpaths['SECRETS_FILE']
|
|
|
|
secrets_cache = None
|
|
|
|
|
2015-07-30 15:18:03 +02:00
|
|
|
class Secrets():
|
2010-02-08 15:08:40 +01:00
|
|
|
def __init__(self, filename):
|
|
|
|
self.filename = filename
|
|
|
|
self.srs = {}
|
|
|
|
self.pubkeys = {}
|
|
|
|
self.privkeys = {}
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def cancel(self):
|
|
|
|
raise exceptions.Cancelled
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def save(self):
|
2014-11-11 15:07:53 +01:00
|
|
|
f = open(secrets_filename, 'wb')
|
2015-07-30 15:18:03 +02:00
|
|
|
pickle.dump(self, f, protocol=2)
|
2010-02-08 15:08:40 +01:00
|
|
|
f.close()
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def retained_secrets(self, account, bare_jid):
|
|
|
|
try:
|
|
|
|
return self.srs[account][bare_jid]
|
|
|
|
except KeyError:
|
|
|
|
return []
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
# 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] = {}
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
if not jid in self.srs[account]:
|
|
|
|
self.srs[account][jid] = []
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
self.srs[account][jid].append((secret, verified))
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
self.save()
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def find_srs(self, account, jid, srs):
|
|
|
|
our_secrets = self.srs[account][jid]
|
|
|
|
return [(x, y) for x, y in our_secrets if x == srs][0]
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
# has the user verified this retained secret?
|
|
|
|
def srs_verified(self, account, jid, srs):
|
|
|
|
return self.find_srs(account, jid, srs)[1]
|
2008-06-29 06:39:29 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
def replace_srs(self, account, jid, old_secret, new_secret, verified):
|
|
|
|
our_secrets = self.srs[account][jid]
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
idx = our_secrets.index(self.find_srs(account, jid, old_secret))
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
our_secrets[idx] = (new_secret, verified)
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
self.save()
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
# the public key associated with 'account'
|
|
|
|
def my_pubkey(self, account):
|
|
|
|
try:
|
|
|
|
pk = self.privkeys[account]
|
|
|
|
except KeyError:
|
2011-11-06 11:46:00 +01:00
|
|
|
pk = Crypto.PublicKey.RSA.generate(2048, crypto.random_bytes)
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
self.privkeys[account] = pk
|
|
|
|
self.save()
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
return pk
|
2007-09-29 22:51:01 +02:00
|
|
|
|
|
|
|
def load_secrets(filename):
|
2016-01-03 11:07:44 +01:00
|
|
|
f = open(filename, 'rb')
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
try:
|
2014-11-11 15:07:53 +01:00
|
|
|
secrets = pickle.load(f, encoding='latin1')
|
|
|
|
# We do that to be able to read files written in py2
|
|
|
|
for acct in secrets.srs:
|
|
|
|
for jid in secrets.srs[acct]:
|
|
|
|
for (secret, verified) in list(secrets.srs[acct][jid]):
|
|
|
|
if type(secret) is str:
|
|
|
|
secrets.srs[acct][jid].remove((secret, verified))
|
|
|
|
secrets.srs[acct][jid].append((secret.encode('latin1'), verified))
|
2017-09-13 14:25:36 +02:00
|
|
|
except (KeyError, EOFError, ImportError):
|
2010-02-08 15:08:40 +01:00
|
|
|
f.close()
|
|
|
|
secrets = Secrets(filename)
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2014-11-11 15:07:53 +01:00
|
|
|
f.close()
|
2010-02-08 15:08:40 +01:00
|
|
|
return secrets
|
2007-09-29 22:51:01 +02:00
|
|
|
|
|
|
|
def secrets():
|
2010-02-08 15:08:40 +01:00
|
|
|
global secrets_cache
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
if secrets_cache:
|
|
|
|
return secrets_cache
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
if os.path.exists(secrets_filename):
|
|
|
|
secrets_cache = load_secrets(secrets_filename)
|
|
|
|
else:
|
|
|
|
secrets_cache = Secrets(secrets_filename)
|
2007-09-29 22:51:01 +02:00
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
return secrets_cache
|