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
use super::*;
use crate::error::Result;
use util::marshal::*;
use bytes::Bytes;
impl Context {
pub fn decrypt_rtcp(&mut self, encrypted: &[u8]) -> Result<Bytes> {
let mut buf = encrypted;
rtcp::header::Header::unmarshal(&mut buf)?;
let index = self.cipher.get_rtcp_index(encrypted);
let ssrc = u32::from_be_bytes([encrypted[4], encrypted[5], encrypted[6], encrypted[7]]);
{
if let Some(state) = self.get_srtcp_ssrc_state(ssrc) {
if let Some(replay_detector) = &mut state.replay_detector {
if !replay_detector.check(index as u64) {
return Err(Error::SrtcpSsrcDuplicated(ssrc, index));
}
}
} else {
return Err(Error::SsrcMissingFromSrtcp(ssrc));
}
}
let dst = self.cipher.decrypt_rtcp(encrypted, index, ssrc)?;
{
if let Some(state) = self.get_srtcp_ssrc_state(ssrc) {
if let Some(replay_detector) = &mut state.replay_detector {
replay_detector.accept();
}
}
}
Ok(dst)
}
pub fn encrypt_rtcp(&mut self, decrypted: &[u8]) -> Result<Bytes> {
let mut buf = decrypted;
rtcp::header::Header::unmarshal(&mut buf)?;
let ssrc = u32::from_be_bytes([decrypted[4], decrypted[5], decrypted[6], decrypted[7]]);
let index;
{
if let Some(state) = self.get_srtcp_ssrc_state(ssrc) {
state.srtcp_index += 1;
if state.srtcp_index > MAX_SRTCP_INDEX {
state.srtcp_index = 0;
}
index = state.srtcp_index;
} else {
return Err(Error::SsrcMissingFromSrtcp(ssrc));
}
}
self.cipher.encrypt_rtcp(decrypted, index, ssrc)
}
}