[omemo] Sanitize BLOBs in sessions table

This commit is contained in:
lovetox
2020-05-23 10:34:29 +02:00
parent 66c49f5e7b
commit 9b05896354

View File

@@ -147,7 +147,7 @@ class LiteAxolotlStore(AxolotlStore):
create_db_sql = """
BEGIN TRANSACTION;
%s
PRAGMA user_version=9;
PRAGMA user_version=10;
END TRANSACTION;
""" % (create_tables)
self._con.executescript(create_db_sql)
@@ -299,6 +299,31 @@ class LiteAxolotlStore(AxolotlStore):
self._con.execute('PRAGMA user_version=9')
self._con.commit()
if self.user_version() < 10:
# Sanitize invalid BLOBs from the python2 days
query_keys = '''SELECT _id,
recipient_id,
device_id,
CAST(record as BLOB) as record,
timestamp,
active
FROM sessions'''
rows = self._con.execute(query_keys).fetchall()
delete = 'DELETE FROM sessions'
self._con.execute(delete)
insert = '''INSERT INTO sessions (_id, recipient_id, device_id,
record, timestamp, active)
VALUES (?, ?, ?, ?, ?, ?)'''
for row in rows:
try:
self._con.execute(insert, row)
except Exception as error:
self._log.warning(error)
self._con.execute('PRAGMA user_version=10')
self._con.commit()
def loadSignedPreKey(self, signedPreKeyId):
query = 'SELECT record FROM signed_prekeys WHERE prekey_id = ?'
result = self._con.execute(query, (signedPreKeyId, )).fetchone()