|
|
|
@ -27,10 +27,9 @@ use std::{ |
|
|
|
convert::{TryFrom, TryInto}, |
|
|
|
convert::{TryFrom, TryInto}, |
|
|
|
mem, |
|
|
|
mem, |
|
|
|
sync::Arc, |
|
|
|
sync::Arc, |
|
|
|
time::Duration, |
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
use super::{admin::AdminCommand, sending::Sending}; |
|
|
|
use super::admin::AdminCommand; |
|
|
|
|
|
|
|
|
|
|
|
/// The unique identifier of each state group.
|
|
|
|
/// The unique identifier of each state group.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
@ -67,13 +66,16 @@ pub struct Rooms { |
|
|
|
pub(super) statekey_short: sled::Tree, // StateKey = EventType + StateKey, Short = Count
|
|
|
|
pub(super) statekey_short: sled::Tree, // StateKey = EventType + StateKey, Short = Count
|
|
|
|
pub(super) stateid_pduid: sled::Tree, // StateId = StateHash + Short, PduId = Count (without roomid)
|
|
|
|
pub(super) stateid_pduid: sled::Tree, // StateId = StateHash + Short, PduId = Count (without roomid)
|
|
|
|
|
|
|
|
|
|
|
|
/// Any pdu that has passed the steps up to auth with auth_events.
|
|
|
|
/// RoomId + EventId -> outlier PDU.
|
|
|
|
pub(super) pduid_outlierpdu: sled::Tree, |
|
|
|
/// Any pdu that has passed the steps 1-8 in the incoming event /federation/send/txn.
|
|
|
|
|
|
|
|
pub(super) eventid_outlierpdu: sled::Tree, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
impl Rooms { |
|
|
|
impl Rooms { |
|
|
|
/// Builds a StateMap by iterating over all keys that start
|
|
|
|
/// Builds a StateMap by iterating over all keys that start
|
|
|
|
/// with state_hash, this gives the full state for the given state_hash.
|
|
|
|
/// with state_hash, this gives the full state for the given state_hash.
|
|
|
|
|
|
|
|
///
|
|
|
|
|
|
|
|
/// TODO: Should this check for outliers, it does now.
|
|
|
|
pub fn state_full( |
|
|
|
pub fn state_full( |
|
|
|
&self, |
|
|
|
&self, |
|
|
|
room_id: &RoomId, |
|
|
|
room_id: &RoomId, |
|
|
|
@ -90,7 +92,7 @@ impl Rooms { |
|
|
|
Some(b) => serde_json::from_slice::<PduEvent>(&b) |
|
|
|
Some(b) => serde_json::from_slice::<PduEvent>(&b) |
|
|
|
.map_err(|_| Error::bad_database("Invalid PDU in db.")), |
|
|
|
.map_err(|_| Error::bad_database("Invalid PDU in db.")), |
|
|
|
None => self |
|
|
|
None => self |
|
|
|
.pduid_outlierpdu |
|
|
|
.eventid_outlierpdu |
|
|
|
.get(pduid)? |
|
|
|
.get(pduid)? |
|
|
|
.map(|b| { |
|
|
|
.map(|b| { |
|
|
|
serde_json::from_slice::<PduEvent>(&b) |
|
|
|
serde_json::from_slice::<PduEvent>(&b) |
|
|
|
@ -118,6 +120,8 @@ impl Rooms { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// Returns a single PDU from `room_id` with key (`event_type`, `state_key`).
|
|
|
|
/// Returns a single PDU from `room_id` with key (`event_type`, `state_key`).
|
|
|
|
|
|
|
|
///
|
|
|
|
|
|
|
|
/// TODO: Should this check for outliers, it does now.
|
|
|
|
pub fn state_get( |
|
|
|
pub fn state_get( |
|
|
|
&self, |
|
|
|
&self, |
|
|
|
room_id: &RoomId, |
|
|
|
room_id: &RoomId, |
|
|
|
@ -149,7 +153,7 @@ impl Rooms { |
|
|
|
Some(b) => serde_json::from_slice::<PduEvent>(&b) |
|
|
|
Some(b) => serde_json::from_slice::<PduEvent>(&b) |
|
|
|
.map_err(|_| Error::bad_database("Invalid PDU in db."))?, |
|
|
|
.map_err(|_| Error::bad_database("Invalid PDU in db."))?, |
|
|
|
None => self |
|
|
|
None => self |
|
|
|
.pduid_outlierpdu |
|
|
|
.eventid_outlierpdu |
|
|
|
.get(pdu_id)? |
|
|
|
.get(pdu_id)? |
|
|
|
.map(|b| { |
|
|
|
.map(|b| { |
|
|
|
serde_json::from_slice::<PduEvent>(&b) |
|
|
|
serde_json::from_slice::<PduEvent>(&b) |
|
|
|
@ -260,6 +264,8 @@ impl Rooms { |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Because of outliers this could also be an eventID but that
|
|
|
|
|
|
|
|
// is handled by `state_full`
|
|
|
|
let pdu_id_short = pdu_id |
|
|
|
let pdu_id_short = pdu_id |
|
|
|
.splitn(2, |&b| b == 0xff) |
|
|
|
.splitn(2, |&b| b == 0xff) |
|
|
|
.nth(1) |
|
|
|
.nth(1) |
|
|
|
@ -325,9 +331,12 @@ impl Rooms { |
|
|
|
Ok(Some( |
|
|
|
Ok(Some( |
|
|
|
serde_json::from_slice(&match self.pduid_pdu.get(&pdu_id)? { |
|
|
|
serde_json::from_slice(&match self.pduid_pdu.get(&pdu_id)? { |
|
|
|
Some(b) => b, |
|
|
|
Some(b) => b, |
|
|
|
None => self.pduid_outlierpdu.get(pdu_id)?.ok_or_else(|| { |
|
|
|
None => self |
|
|
|
Error::bad_database("Event is not in pdu tree or outliers.") |
|
|
|
.eventid_outlierpdu |
|
|
|
})?, |
|
|
|
.get(event_id.as_bytes())? |
|
|
|
|
|
|
|
.ok_or_else(|| { |
|
|
|
|
|
|
|
Error::bad_database("Event is not in pdu tree or outliers.") |
|
|
|
|
|
|
|
})?, |
|
|
|
}) |
|
|
|
}) |
|
|
|
.map_err(|_| Error::bad_database("Invalid PDU in db."))?, |
|
|
|
.map_err(|_| Error::bad_database("Invalid PDU in db."))?, |
|
|
|
)) |
|
|
|
)) |
|
|
|
@ -342,6 +351,8 @@ impl Rooms { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// Returns the pdu.
|
|
|
|
/// Returns the pdu.
|
|
|
|
|
|
|
|
///
|
|
|
|
|
|
|
|
/// Checks the `eventid_outlierpdu` Tree if not found in the timeline.
|
|
|
|
pub fn get_pdu(&self, event_id: &EventId) -> Result<Option<PduEvent>> { |
|
|
|
pub fn get_pdu(&self, event_id: &EventId) -> Result<Option<PduEvent>> { |
|
|
|
self.eventid_pduid |
|
|
|
self.eventid_pduid |
|
|
|
.get(event_id.as_bytes())? |
|
|
|
.get(event_id.as_bytes())? |
|
|
|
@ -349,9 +360,12 @@ impl Rooms { |
|
|
|
Ok(Some( |
|
|
|
Ok(Some( |
|
|
|
serde_json::from_slice(&match self.pduid_pdu.get(&pdu_id)? { |
|
|
|
serde_json::from_slice(&match self.pduid_pdu.get(&pdu_id)? { |
|
|
|
Some(b) => b, |
|
|
|
Some(b) => b, |
|
|
|
None => self.pduid_outlierpdu.get(pdu_id)?.ok_or_else(|| { |
|
|
|
None => self |
|
|
|
Error::bad_database("Event is not in pdu tree or outliers.") |
|
|
|
.eventid_outlierpdu |
|
|
|
})?, |
|
|
|
.get(event_id.as_bytes())? |
|
|
|
|
|
|
|
.ok_or_else(|| { |
|
|
|
|
|
|
|
Error::bad_database("Event is not in pdu tree or outliers.") |
|
|
|
|
|
|
|
})?, |
|
|
|
}) |
|
|
|
}) |
|
|
|
.map_err(|_| Error::bad_database("Invalid PDU in db."))?, |
|
|
|
.map_err(|_| Error::bad_database("Invalid PDU in db."))?, |
|
|
|
)) |
|
|
|
)) |
|
|
|
@ -443,27 +457,34 @@ impl Rooms { |
|
|
|
|
|
|
|
|
|
|
|
/// Returns the pdu from the outlier tree.
|
|
|
|
/// Returns the pdu from the outlier tree.
|
|
|
|
pub fn get_pdu_outlier(&self, event_id: &EventId) -> Result<Option<PduEvent>> { |
|
|
|
pub fn get_pdu_outlier(&self, event_id: &EventId) -> Result<Option<PduEvent>> { |
|
|
|
if let Some(id) = self.eventid_pduid.get(event_id.as_bytes())? { |
|
|
|
self.eventid_outlierpdu |
|
|
|
self.pduid_outlierpdu.get(id)?.map_or(Ok(None), |pdu| { |
|
|
|
.get(event_id.as_bytes())? |
|
|
|
|
|
|
|
.map_or(Ok(None), |pdu| { |
|
|
|
serde_json::from_slice(&pdu).map_err(|_| Error::bad_database("Invalid PDU in db.")) |
|
|
|
serde_json::from_slice(&pdu).map_err(|_| Error::bad_database("Invalid PDU in db.")) |
|
|
|
}) |
|
|
|
}) |
|
|
|
} else { |
|
|
|
|
|
|
|
Ok(None) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// Returns true if the event_id was previously inserted.
|
|
|
|
/// Returns true if the event_id was previously inserted.
|
|
|
|
pub fn append_pdu_outlier(&self, pdu_id: &[u8], pdu: &PduEvent) -> Result<bool> { |
|
|
|
pub fn append_pdu_outlier(&self, pdu: &PduEvent) -> Result<bool> { |
|
|
|
log::info!("Number of outlier pdu's {}", self.pduid_outlierpdu.len()); |
|
|
|
log::info!( |
|
|
|
|
|
|
|
"Number of outlier pdu's {:#?}", |
|
|
|
|
|
|
|
self.eventid_outlierpdu |
|
|
|
|
|
|
|
.iter() |
|
|
|
|
|
|
|
.map(|pair| { |
|
|
|
|
|
|
|
let (_k, v) = pair.unwrap(); |
|
|
|
|
|
|
|
serde_json::from_slice::<PduBuilder>(&v).unwrap() |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
.collect::<Vec<_>>() |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
// we need to be able to find it by event_id
|
|
|
|
let mut key = pdu.room_id().as_bytes().to_vec(); |
|
|
|
self.eventid_pduid |
|
|
|
key.push(0xff); |
|
|
|
.insert(pdu.event_id.as_bytes(), &*pdu_id)?; |
|
|
|
key.extend_from_slice(pdu.event_id().as_bytes()); |
|
|
|
|
|
|
|
|
|
|
|
let res = self |
|
|
|
let res = self |
|
|
|
.pduid_outlierpdu |
|
|
|
.eventid_outlierpdu |
|
|
|
.insert( |
|
|
|
.insert( |
|
|
|
pdu_id, |
|
|
|
&key, |
|
|
|
&*serde_json::to_string(&pdu).expect("PduEvent is always a valid String"), |
|
|
|
&*serde_json::to_string(&pdu).expect("PduEvent is always a valid String"), |
|
|
|
) |
|
|
|
) |
|
|
|
.map(|op| op.is_some())?; |
|
|
|
.map(|op| op.is_some())?; |
|
|
|
@ -511,9 +532,10 @@ impl Rooms { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// We no longer keep this pdu as an outlier
|
|
|
|
// We no longer keep this pdu as an outlier
|
|
|
|
if let Some(id) = self.eventid_pduid.remove(pdu.event_id().as_bytes())? { |
|
|
|
let mut key = pdu.room_id().as_bytes().to_vec(); |
|
|
|
self.pduid_outlierpdu.remove(id)?; |
|
|
|
key.push(0xff); |
|
|
|
} |
|
|
|
key.extend_from_slice(pdu.event_id().as_bytes()); |
|
|
|
|
|
|
|
self.eventid_outlierpdu.remove(key)?; |
|
|
|
|
|
|
|
|
|
|
|
self.replace_pdu_leaves(&pdu.room_id, leaves)?; |
|
|
|
self.replace_pdu_leaves(&pdu.room_id, leaves)?; |
|
|
|
|
|
|
|
|
|
|
|
|