crypto: Don't cache inbound group sessions in the sqlite store.
parent
b5560d3cb6
commit
4262f1d3b0
|
@ -34,7 +34,7 @@ use sqlx::{query, query_as, sqlite::SqliteConnectOptions, Connection, Executor,
|
||||||
use zeroize::Zeroizing;
|
use zeroize::Zeroizing;
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
caches::{DeviceStore, GroupSessionStore, ReadOnlyUserDevices, SessionStore},
|
caches::{DeviceStore, ReadOnlyUserDevices, SessionStore},
|
||||||
CryptoStore, CryptoStoreError, Result,
|
CryptoStore, CryptoStoreError, Result,
|
||||||
};
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
|
@ -56,7 +56,6 @@ pub struct SqliteStore {
|
||||||
path: Arc<PathBuf>,
|
path: Arc<PathBuf>,
|
||||||
|
|
||||||
sessions: SessionStore,
|
sessions: SessionStore,
|
||||||
inbound_group_sessions: GroupSessionStore,
|
|
||||||
devices: DeviceStore,
|
devices: DeviceStore,
|
||||||
tracked_users: Arc<DashSet<UserId>>,
|
tracked_users: Arc<DashSet<UserId>>,
|
||||||
users_for_key_query: Arc<DashSet<UserId>>,
|
users_for_key_query: Arc<DashSet<UserId>>,
|
||||||
|
@ -150,7 +149,6 @@ impl SqliteStore {
|
||||||
device_id: Arc::new(device_id.into()),
|
device_id: Arc::new(device_id.into()),
|
||||||
account_info: Arc::new(SyncMutex::new(None)),
|
account_info: Arc::new(SyncMutex::new(None)),
|
||||||
sessions: SessionStore::new(),
|
sessions: SessionStore::new(),
|
||||||
inbound_group_sessions: GroupSessionStore::new(),
|
|
||||||
devices: DeviceStore::new(),
|
devices: DeviceStore::new(),
|
||||||
path: Arc::new(path),
|
path: Arc::new(path),
|
||||||
connection: Arc::new(Mutex::new(connection)),
|
connection: Arc::new(Mutex::new(connection)),
|
||||||
|
@ -525,28 +523,17 @@ impl SqliteStore {
|
||||||
.collect::<Result<Vec<Session>>>()?)
|
.collect::<Result<Vec<Session>>>()?)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn load_inbound_group_sessions(&self) -> Result<()> {
|
async fn load_inbound_session_data(
|
||||||
let account_id = self.account_id().ok_or(CryptoStoreError::AccountUnset)?;
|
&self,
|
||||||
let mut connection = self.connection.lock().await;
|
connection: &mut SqliteConnection,
|
||||||
|
session_row_id: i64,
|
||||||
let mut rows: Vec<(i64, String, String, String, bool)> = query_as(
|
pickle: String,
|
||||||
"SELECT id, pickle, sender_key, room_id, imported
|
sender_key: String,
|
||||||
FROM inbound_group_sessions WHERE account_id = ?",
|
room_id: RoomId,
|
||||||
)
|
imported: bool,
|
||||||
.bind(account_id)
|
) -> Result<InboundGroupSession> {
|
||||||
.fetch_all(&mut *connection)
|
let key_rows: Vec<(String, String)> =
|
||||||
.await?;
|
query_as("SELECT algorithm, key FROM group_session_claimed_keys WHERE session_id = ?")
|
||||||
|
|
||||||
for row in rows.drain(..) {
|
|
||||||
let session_row_id = row.0;
|
|
||||||
let pickle = row.1;
|
|
||||||
let sender_key = row.2;
|
|
||||||
let room_id = row.3;
|
|
||||||
let imported = row.4;
|
|
||||||
|
|
||||||
let key_rows: Vec<(String, String)> = query_as(
|
|
||||||
"SELECT algorithm, key FROM group_session_claimed_keys WHERE session_id = ?",
|
|
||||||
)
|
|
||||||
.bind(session_row_id)
|
.bind(session_row_id)
|
||||||
.fetch_all(&mut *connection)
|
.fetch_all(&mut *connection)
|
||||||
.await?;
|
.await?;
|
||||||
|
@ -579,19 +566,103 @@ impl SqliteStore {
|
||||||
pickle: InboundGroupSessionPickle::from(pickle),
|
pickle: InboundGroupSessionPickle::from(pickle),
|
||||||
sender_key,
|
sender_key,
|
||||||
signing_key: claimed_keys,
|
signing_key: claimed_keys,
|
||||||
room_id: RoomId::try_from(room_id)?,
|
room_id,
|
||||||
forwarding_chains: chains,
|
forwarding_chains: chains,
|
||||||
imported,
|
imported,
|
||||||
};
|
};
|
||||||
|
|
||||||
self.inbound_group_sessions
|
Ok(InboundGroupSession::from_pickle(
|
||||||
.add(InboundGroupSession::from_pickle(
|
|
||||||
pickle,
|
pickle,
|
||||||
self.get_pickle_mode(),
|
self.get_pickle_mode(),
|
||||||
)?);
|
)?)
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
async fn load_inbound_group_session_helper(
|
||||||
|
&self,
|
||||||
|
room_id: &RoomId,
|
||||||
|
sender_key: &str,
|
||||||
|
session_id: &str,
|
||||||
|
) -> Result<Option<InboundGroupSession>> {
|
||||||
|
let account_id = self.account_id().ok_or(CryptoStoreError::AccountUnset)?;
|
||||||
|
let mut connection = self.connection.lock().await;
|
||||||
|
|
||||||
|
let row: Option<(i64, String, bool)> = query_as(
|
||||||
|
"SELECT id, pickle, imported
|
||||||
|
FROM inbound_group_sessions
|
||||||
|
WHERE (
|
||||||
|
account_id = ? and
|
||||||
|
room_id = ? and
|
||||||
|
sender_key = ? and
|
||||||
|
session_id = ?
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.bind(account_id)
|
||||||
|
.bind(room_id.as_str())
|
||||||
|
.bind(sender_key)
|
||||||
|
.bind(session_id)
|
||||||
|
.fetch_optional(&mut *connection)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
let row = if let Some(r) = row {
|
||||||
|
r
|
||||||
|
} else {
|
||||||
|
return Ok(None);
|
||||||
|
};
|
||||||
|
|
||||||
|
let session_row_id = row.0;
|
||||||
|
let pickle = row.1;
|
||||||
|
let imported = row.2;
|
||||||
|
|
||||||
|
let session = self
|
||||||
|
.load_inbound_session_data(
|
||||||
|
&mut connection,
|
||||||
|
session_row_id,
|
||||||
|
pickle,
|
||||||
|
sender_key.to_owned(),
|
||||||
|
room_id.to_owned(),
|
||||||
|
imported,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(Some(session))
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn load_inbound_group_sessions(&self) -> Result<Vec<InboundGroupSession>> {
|
||||||
|
let mut sessions = Vec::new();
|
||||||
|
|
||||||
|
let account_id = self.account_id().ok_or(CryptoStoreError::AccountUnset)?;
|
||||||
|
let mut connection = self.connection.lock().await;
|
||||||
|
|
||||||
|
let mut rows: Vec<(i64, String, String, String, bool)> = query_as(
|
||||||
|
"SELECT id, pickle, sender_key, room_id, imported
|
||||||
|
FROM inbound_group_sessions WHERE account_id = ?",
|
||||||
|
)
|
||||||
|
.bind(account_id)
|
||||||
|
.fetch_all(&mut *connection)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
for row in rows.drain(..) {
|
||||||
|
let session_row_id = row.0;
|
||||||
|
let pickle = row.1;
|
||||||
|
let sender_key = row.2;
|
||||||
|
let room_id = RoomId::try_from(row.3)?;
|
||||||
|
let imported = row.4;
|
||||||
|
|
||||||
|
let session = self
|
||||||
|
.load_inbound_session_data(
|
||||||
|
&mut connection,
|
||||||
|
session_row_id,
|
||||||
|
pickle,
|
||||||
|
sender_key,
|
||||||
|
room_id.to_owned(),
|
||||||
|
imported,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sessions.push(session);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(sessions)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn save_tracked_user(&self, user: &UserId, dirty: bool) -> Result<()> {
|
async fn save_tracked_user(&self, user: &UserId, dirty: bool) -> Result<()> {
|
||||||
|
@ -1205,7 +1276,6 @@ impl CryptoStore for SqliteStore {
|
||||||
|
|
||||||
drop(connection);
|
drop(connection);
|
||||||
|
|
||||||
self.load_inbound_group_sessions().await?;
|
|
||||||
self.load_devices().await?;
|
self.load_devices().await?;
|
||||||
self.load_tracked_users().await?;
|
self.load_tracked_users().await?;
|
||||||
|
|
||||||
|
@ -1300,7 +1370,6 @@ impl CryptoStore for SqliteStore {
|
||||||
for session in sessions {
|
for session in sessions {
|
||||||
self.save_inbound_group_session_helper(account_id, &mut transaction, session)
|
self.save_inbound_group_session_helper(account_id, &mut transaction, session)
|
||||||
.await?;
|
.await?;
|
||||||
self.inbound_group_sessions.add(session.clone());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
transaction.commit().await?;
|
transaction.commit().await?;
|
||||||
|
@ -1315,12 +1384,12 @@ impl CryptoStore for SqliteStore {
|
||||||
session_id: &str,
|
session_id: &str,
|
||||||
) -> Result<Option<InboundGroupSession>> {
|
) -> Result<Option<InboundGroupSession>> {
|
||||||
Ok(self
|
Ok(self
|
||||||
.inbound_group_sessions
|
.load_inbound_group_session_helper(room_id, sender_key, session_id)
|
||||||
.get(room_id, sender_key, session_id))
|
.await?)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn get_inbound_group_sessions(&self) -> Result<Vec<InboundGroupSession>> {
|
async fn get_inbound_group_sessions(&self) -> Result<Vec<InboundGroupSession>> {
|
||||||
Ok(self.inbound_group_sessions.get_all())
|
Ok(self.load_inbound_group_sessions().await?)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_user_tracked(&self, user_id: &UserId) -> bool {
|
fn is_user_tracked(&self, user_id: &UserId) -> bool {
|
||||||
|
@ -1768,7 +1837,6 @@ mod test {
|
||||||
.expect("Can't create store");
|
.expect("Can't create store");
|
||||||
|
|
||||||
store.load_account().await.unwrap();
|
store.load_account().await.unwrap();
|
||||||
store.load_inbound_group_sessions().await.unwrap();
|
|
||||||
|
|
||||||
let loaded_session = store
|
let loaded_session = store
|
||||||
.get_inbound_group_session(&session.room_id, &session.sender_key, session.session_id())
|
.get_inbound_group_session(&session.room_id, &session.sender_key, session.session_id())
|
||||||
|
|
Loading…
Reference in New Issue