2023-05-18 15:01:08 +02:00
|
|
|
use crate::cfdp::lv::Lv;
|
2023-06-12 03:57:38 +02:00
|
|
|
use crate::cfdp::pdu::{
|
|
|
|
generic_length_checks_pdu_deserialization, read_fss_field, write_fss_field, FileDirectiveType,
|
|
|
|
PduError, PduHeader,
|
|
|
|
};
|
2023-05-21 20:30:16 +02:00
|
|
|
use crate::cfdp::tlv::Tlv;
|
2023-05-30 00:16:16 +02:00
|
|
|
use crate::cfdp::{ChecksumType, CrcFlag, LargeFileFlag, PduType};
|
2023-05-29 14:28:15 +02:00
|
|
|
use crate::{ByteConversionError, SizeMissmatch, CRC_CCITT_FALSE};
|
2023-05-21 20:30:16 +02:00
|
|
|
#[cfg(feature = "alloc")]
|
|
|
|
use alloc::vec::Vec;
|
|
|
|
#[cfg(feature = "serde")]
|
|
|
|
use serde::{Deserialize, Serialize};
|
2023-05-18 14:05:51 +02:00
|
|
|
|
2023-05-21 20:30:16 +02:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
|
|
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
2023-05-18 15:01:08 +02:00
|
|
|
pub struct MetadataGenericParams {
|
2023-05-18 14:05:51 +02:00
|
|
|
closure_requested: bool,
|
|
|
|
checksum_type: ChecksumType,
|
|
|
|
file_size: u64,
|
|
|
|
}
|
|
|
|
|
2023-05-28 23:50:12 +02:00
|
|
|
impl MetadataGenericParams {
|
|
|
|
pub fn new(closure_requested: bool, checksum_type: ChecksumType, file_size: u64) -> Self {
|
|
|
|
Self {
|
|
|
|
closure_requested,
|
|
|
|
checksum_type,
|
2023-05-29 01:29:04 +02:00
|
|
|
file_size,
|
2023-05-28 23:50:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-21 20:30:16 +02:00
|
|
|
pub fn build_metadata_opts_from_slice(
|
|
|
|
buf: &mut [u8],
|
|
|
|
tlvs: &[Tlv],
|
|
|
|
) -> Result<usize, ByteConversionError> {
|
|
|
|
let mut written = 0;
|
|
|
|
for tlv in tlvs {
|
2023-06-07 01:12:07 +02:00
|
|
|
written += tlv.write_to_bytes(&mut buf[written..])?;
|
2023-05-21 20:30:16 +02:00
|
|
|
}
|
|
|
|
Ok(written)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "alloc")]
|
|
|
|
pub fn build_metadata_opts_from_vec(
|
|
|
|
buf: &mut [u8],
|
2023-05-29 23:38:07 +02:00
|
|
|
tlvs: &Vec<Tlv>,
|
2023-05-21 20:30:16 +02:00
|
|
|
) -> Result<usize, ByteConversionError> {
|
|
|
|
build_metadata_opts_from_slice(buf, tlvs.as_slice())
|
|
|
|
}
|
|
|
|
|
2023-05-29 23:38:07 +02:00
|
|
|
/// Helper structure to loop through all options of a metadata PDU. It should be noted that
|
|
|
|
/// iterators in Rust are not fallible, but the TLV creation can fail, for example if the raw TLV
|
2023-05-30 11:09:41 +02:00
|
|
|
/// data is invalid for some reason. In that case, the iterator will yield [None] because there
|
2023-05-29 23:38:07 +02:00
|
|
|
/// is no way to recover from this.
|
|
|
|
///
|
|
|
|
/// The user can accumulate the length of all TLVs yielded by the iterator and compare it against
|
|
|
|
/// the full length of the options to check whether the iterator was able to parse all TLVs
|
|
|
|
/// successfully.
|
|
|
|
pub struct OptionsIter<'opts> {
|
|
|
|
opt_buf: &'opts [u8],
|
|
|
|
current_idx: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'opts> Iterator for OptionsIter<'opts> {
|
|
|
|
type Item = Tlv<'opts>;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
if self.current_idx == self.opt_buf.len() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let tlv = Tlv::from_bytes(&self.opt_buf[self.current_idx..]);
|
|
|
|
// There are not really fallible iterators so we can't continue here..
|
|
|
|
if tlv.is_err() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let tlv = tlv.unwrap();
|
|
|
|
self.current_idx += tlv.len_full();
|
|
|
|
Some(tlv)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Metadata PDU abstraction.
|
|
|
|
///
|
|
|
|
/// For more information, refer to CFDP chapter 5.2.5.
|
2023-05-21 20:30:16 +02:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
|
|
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
|
|
|
pub struct MetadataPdu<'src_name, 'dest_name, 'opts> {
|
2023-05-18 14:05:51 +02:00
|
|
|
pdu_header: PduHeader,
|
2023-05-18 15:01:08 +02:00
|
|
|
metadata_params: MetadataGenericParams,
|
2023-05-21 20:30:16 +02:00
|
|
|
#[cfg_attr(feature = "serde", serde(borrow))]
|
|
|
|
src_file_name: Lv<'src_name>,
|
|
|
|
#[cfg_attr(feature = "serde", serde(borrow))]
|
|
|
|
dest_file_name: Lv<'dest_name>,
|
|
|
|
options: Option<&'opts [u8]>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'src_name, 'dest_name, 'opts> MetadataPdu<'src_name, 'dest_name, 'opts> {
|
2023-06-06 08:59:18 +02:00
|
|
|
pub fn new_no_opts(
|
2023-05-21 20:30:16 +02:00
|
|
|
pdu_header: PduHeader,
|
|
|
|
metadata_params: MetadataGenericParams,
|
|
|
|
src_file_name: Lv<'src_name>,
|
|
|
|
dest_file_name: Lv<'dest_name>,
|
|
|
|
) -> Self {
|
2023-06-06 08:59:18 +02:00
|
|
|
Self::new(
|
2023-05-21 20:30:16 +02:00
|
|
|
pdu_header,
|
|
|
|
metadata_params,
|
|
|
|
src_file_name,
|
|
|
|
dest_file_name,
|
|
|
|
None,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn new_with_opts(
|
2023-05-29 23:38:07 +02:00
|
|
|
pdu_header: PduHeader,
|
|
|
|
metadata_params: MetadataGenericParams,
|
|
|
|
src_file_name: Lv<'src_name>,
|
|
|
|
dest_file_name: Lv<'dest_name>,
|
|
|
|
options: &'opts [u8],
|
|
|
|
) -> Self {
|
2023-06-06 08:59:18 +02:00
|
|
|
Self::new(
|
2023-05-29 23:38:07 +02:00
|
|
|
pdu_header,
|
|
|
|
metadata_params,
|
|
|
|
src_file_name,
|
|
|
|
dest_file_name,
|
|
|
|
Some(options),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-06-06 08:59:18 +02:00
|
|
|
pub fn new(
|
2023-05-29 14:28:15 +02:00
|
|
|
mut pdu_header: PduHeader,
|
2023-05-21 20:30:16 +02:00
|
|
|
metadata_params: MetadataGenericParams,
|
|
|
|
src_file_name: Lv<'src_name>,
|
|
|
|
dest_file_name: Lv<'dest_name>,
|
|
|
|
options: Option<&'opts [u8]>,
|
|
|
|
) -> Self {
|
2023-05-30 00:16:16 +02:00
|
|
|
pdu_header.pdu_type = PduType::FileDirective;
|
2023-05-30 15:36:02 +02:00
|
|
|
let mut pdu = Self {
|
2023-05-21 20:30:16 +02:00
|
|
|
pdu_header,
|
|
|
|
metadata_params,
|
|
|
|
src_file_name,
|
|
|
|
dest_file_name,
|
|
|
|
options,
|
2023-05-30 15:36:02 +02:00
|
|
|
};
|
|
|
|
pdu.pdu_header.pdu_datafield_len = pdu.calc_pdu_datafield_len() as u16;
|
|
|
|
pdu
|
2023-05-21 20:30:16 +02:00
|
|
|
}
|
|
|
|
|
2023-05-28 23:50:12 +02:00
|
|
|
pub fn src_file_name(&self) -> Lv<'src_name> {
|
|
|
|
self.src_file_name
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn dest_file_name(&self) -> Lv<'dest_name> {
|
|
|
|
self.dest_file_name
|
|
|
|
}
|
|
|
|
|
2023-05-29 01:29:04 +02:00
|
|
|
pub fn options(&self) -> Option<&'opts [u8]> {
|
|
|
|
self.options
|
|
|
|
}
|
|
|
|
|
2023-05-29 23:38:07 +02:00
|
|
|
/// Yield an iterator which can be used to loop through all options. Returns [None] if the
|
|
|
|
/// options field is empty.
|
|
|
|
pub fn options_iter(&self) -> Option<OptionsIter<'opts>> {
|
|
|
|
self.options?;
|
|
|
|
Some(OptionsIter {
|
|
|
|
opt_buf: self.options.unwrap(),
|
|
|
|
current_idx: 0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-05-21 20:30:16 +02:00
|
|
|
pub fn written_len(&self) -> usize {
|
2023-05-30 15:36:02 +02:00
|
|
|
self.pdu_header.header_len() + self.calc_pdu_datafield_len()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn calc_pdu_datafield_len(&self) -> usize {
|
|
|
|
// One directve type octet and one byte of the directive parameter field.
|
|
|
|
let mut len = 2;
|
2023-05-21 20:30:16 +02:00
|
|
|
if self.pdu_header.common_pdu_conf().file_flag == LargeFileFlag::Large {
|
|
|
|
len += 8;
|
|
|
|
} else {
|
|
|
|
len += 4;
|
|
|
|
}
|
|
|
|
len += self.src_file_name.len_full();
|
|
|
|
len += self.dest_file_name.len_full();
|
|
|
|
if let Some(opts) = self.options {
|
|
|
|
len += opts.len();
|
|
|
|
}
|
2023-05-29 14:28:15 +02:00
|
|
|
if self.pdu_header.pdu_conf.crc_flag == CrcFlag::WithCrc {
|
|
|
|
len += 2;
|
|
|
|
}
|
2023-05-21 20:30:16 +02:00
|
|
|
len
|
|
|
|
}
|
2023-05-29 13:46:19 +02:00
|
|
|
|
2023-05-29 14:28:15 +02:00
|
|
|
pub fn pdu_header(&self) -> &PduHeader {
|
|
|
|
&self.pdu_header
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn write_to_bytes(&self, buf: &mut [u8]) -> Result<usize, PduError> {
|
2023-05-21 20:30:16 +02:00
|
|
|
let expected_len = self.written_len();
|
|
|
|
if buf.len() < expected_len {
|
|
|
|
return Err(ByteConversionError::ToSliceTooSmall(SizeMissmatch {
|
|
|
|
found: buf.len(),
|
|
|
|
expected: expected_len,
|
|
|
|
})
|
|
|
|
.into());
|
|
|
|
}
|
2023-05-29 14:28:15 +02:00
|
|
|
|
|
|
|
let mut current_idx = self.pdu_header.write_to_bytes(buf)?;
|
2023-05-21 20:30:16 +02:00
|
|
|
buf[current_idx] = FileDirectiveType::MetadataPdu as u8;
|
|
|
|
current_idx += 1;
|
|
|
|
buf[current_idx] = ((self.metadata_params.closure_requested as u8) << 7)
|
2023-05-29 13:46:19 +02:00
|
|
|
| (self.metadata_params.checksum_type as u8);
|
2023-05-21 20:30:16 +02:00
|
|
|
current_idx += 1;
|
2023-05-30 15:36:02 +02:00
|
|
|
current_idx += write_fss_field(
|
2023-05-30 00:16:16 +02:00
|
|
|
self.pdu_header.common_pdu_conf().file_flag,
|
|
|
|
self.metadata_params.file_size,
|
2023-05-30 15:36:02 +02:00
|
|
|
&mut buf[current_idx..],
|
2023-05-30 00:16:16 +02:00
|
|
|
)?;
|
2023-05-29 01:29:04 +02:00
|
|
|
current_idx += self
|
|
|
|
.src_file_name
|
|
|
|
.write_to_be_bytes(&mut buf[current_idx..])?;
|
|
|
|
current_idx += self
|
|
|
|
.dest_file_name
|
|
|
|
.write_to_be_bytes(&mut buf[current_idx..])?;
|
2023-05-21 20:30:16 +02:00
|
|
|
if let Some(opts) = self.options {
|
|
|
|
buf[current_idx..current_idx + opts.len()].copy_from_slice(opts);
|
|
|
|
current_idx += opts.len();
|
|
|
|
}
|
2023-05-29 14:28:15 +02:00
|
|
|
if self.pdu_header.pdu_conf.crc_flag == CrcFlag::WithCrc {
|
|
|
|
let mut digest = CRC_CCITT_FALSE.digest();
|
|
|
|
digest.update(&buf[..current_idx]);
|
|
|
|
buf[current_idx..current_idx + 2].copy_from_slice(&digest.finalize().to_be_bytes());
|
|
|
|
current_idx += 2;
|
|
|
|
}
|
2023-05-21 20:30:16 +02:00
|
|
|
Ok(current_idx)
|
|
|
|
}
|
2023-05-29 13:46:19 +02:00
|
|
|
|
2023-05-29 14:28:15 +02:00
|
|
|
pub fn from_bytes<'longest: 'src_name + 'dest_name + 'opts>(
|
2023-05-29 13:46:19 +02:00
|
|
|
buf: &'longest [u8],
|
2023-05-30 15:36:02 +02:00
|
|
|
) -> Result<Self, PduError> {
|
2023-05-29 14:28:15 +02:00
|
|
|
let (pdu_header, mut current_idx) = PduHeader::from_bytes(buf)?;
|
2023-05-29 13:46:19 +02:00
|
|
|
let full_len_without_crc = pdu_header.verify_length_and_checksum(buf)?;
|
|
|
|
let is_large_file = pdu_header.pdu_conf.file_flag == LargeFileFlag::Large;
|
|
|
|
// Minimal length: 1 byte + FSS (4 byte) + 2 empty LV (1 byte)
|
|
|
|
let mut min_expected_len = current_idx + 7;
|
|
|
|
if is_large_file {
|
|
|
|
min_expected_len += 4;
|
|
|
|
}
|
2023-06-12 03:57:38 +02:00
|
|
|
generic_length_checks_pdu_deserialization(buf, min_expected_len, full_len_without_crc)?;
|
2023-05-29 13:46:19 +02:00
|
|
|
let directive_type = FileDirectiveType::try_from(buf[current_idx]).map_err(|_| {
|
|
|
|
PduError::InvalidDirectiveType((buf[current_idx], FileDirectiveType::MetadataPdu))
|
|
|
|
})?;
|
|
|
|
if directive_type != FileDirectiveType::MetadataPdu {
|
|
|
|
return Err(PduError::WrongDirectiveType((
|
|
|
|
directive_type,
|
|
|
|
FileDirectiveType::MetadataPdu,
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
current_idx += 1;
|
2023-05-30 15:36:02 +02:00
|
|
|
let (fss_len, file_size) =
|
|
|
|
read_fss_field(pdu_header.pdu_conf.file_flag, &buf[current_idx + 1..]);
|
2023-05-29 13:46:19 +02:00
|
|
|
let metadata_params = MetadataGenericParams {
|
|
|
|
closure_requested: ((buf[current_idx] >> 6) & 0b1) != 0,
|
|
|
|
checksum_type: ChecksumType::try_from(buf[current_idx] & 0b1111)
|
|
|
|
.map_err(|_| PduError::InvalidChecksumType(buf[current_idx] & 0b1111))?,
|
|
|
|
file_size,
|
|
|
|
};
|
2023-05-30 15:36:02 +02:00
|
|
|
current_idx += 1 + fss_len;
|
2023-05-29 23:38:07 +02:00
|
|
|
let src_file_name = Lv::from_bytes(&buf[current_idx..])?;
|
2023-05-29 13:46:19 +02:00
|
|
|
current_idx += src_file_name.len_full();
|
2023-05-29 23:38:07 +02:00
|
|
|
let dest_file_name = Lv::from_bytes(&buf[current_idx..])?;
|
2023-05-29 13:46:19 +02:00
|
|
|
current_idx += dest_file_name.len_full();
|
|
|
|
// All left-over bytes are options.
|
|
|
|
let mut options = None;
|
|
|
|
if current_idx < full_len_without_crc {
|
|
|
|
options = Some(&buf[current_idx..full_len_without_crc]);
|
|
|
|
}
|
|
|
|
Ok(Self {
|
|
|
|
pdu_header,
|
|
|
|
metadata_params,
|
|
|
|
src_file_name,
|
|
|
|
dest_file_name,
|
|
|
|
options,
|
|
|
|
})
|
|
|
|
}
|
2023-05-21 20:30:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
pub mod tests {
|
2023-05-28 23:50:12 +02:00
|
|
|
use crate::cfdp::lv::Lv;
|
2023-05-29 23:38:07 +02:00
|
|
|
use crate::cfdp::pdu::metadata::{
|
|
|
|
build_metadata_opts_from_slice, build_metadata_opts_from_vec, MetadataGenericParams,
|
|
|
|
MetadataPdu,
|
|
|
|
};
|
2023-06-08 20:50:18 +02:00
|
|
|
use crate::cfdp::pdu::tests::{common_pdu_conf, verify_raw_header};
|
|
|
|
use crate::cfdp::pdu::{FileDirectiveType, PduHeader};
|
2023-05-29 23:38:07 +02:00
|
|
|
use crate::cfdp::tlv::{Tlv, TlvType};
|
2023-05-30 00:16:16 +02:00
|
|
|
use crate::cfdp::{
|
|
|
|
ChecksumType, CrcFlag, LargeFileFlag, PduType, SegmentMetadataFlag, SegmentationControl,
|
|
|
|
};
|
2023-05-29 23:38:07 +02:00
|
|
|
use std::vec;
|
2023-05-28 23:50:12 +02:00
|
|
|
|
2023-05-29 23:38:07 +02:00
|
|
|
const SRC_FILENAME: &'static str = "hello-world.txt";
|
|
|
|
const DEST_FILENAME: &'static str = "hello-world2.txt";
|
|
|
|
|
|
|
|
fn generic_metadata_pdu<'opts>(
|
|
|
|
crc_flag: CrcFlag,
|
|
|
|
fss: LargeFileFlag,
|
|
|
|
opts: Option<&'opts [u8]>,
|
|
|
|
) -> (
|
|
|
|
Lv<'static>,
|
|
|
|
Lv<'static>,
|
|
|
|
MetadataPdu<'static, 'static, 'opts>,
|
|
|
|
) {
|
|
|
|
let pdu_header = PduHeader::new_no_file_data(common_pdu_conf(crc_flag, fss), 0);
|
2023-05-30 15:36:02 +02:00
|
|
|
let metadata_params = MetadataGenericParams::new(false, ChecksumType::Crc32, 0x1010);
|
2023-05-29 23:38:07 +02:00
|
|
|
let src_filename = Lv::new_from_str(SRC_FILENAME).expect("Generating string LV failed");
|
2023-05-29 01:29:04 +02:00
|
|
|
let dest_filename =
|
2023-05-29 23:38:07 +02:00
|
|
|
Lv::new_from_str(DEST_FILENAME).expect("Generating destination LV failed");
|
|
|
|
(
|
|
|
|
src_filename,
|
|
|
|
dest_filename,
|
2023-06-06 08:59:18 +02:00
|
|
|
MetadataPdu::new(
|
2023-05-29 23:38:07 +02:00
|
|
|
pdu_header,
|
|
|
|
metadata_params,
|
|
|
|
src_filename,
|
|
|
|
dest_filename,
|
|
|
|
opts,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_basic() {
|
|
|
|
let (src_filename, dest_filename, metadata_pdu) =
|
|
|
|
generic_metadata_pdu(CrcFlag::NoCrc, LargeFileFlag::Normal, None);
|
2023-05-29 01:29:04 +02:00
|
|
|
assert_eq!(
|
|
|
|
metadata_pdu.written_len(),
|
2023-05-29 23:38:07 +02:00
|
|
|
metadata_pdu.pdu_header().header_len()
|
|
|
|
+ 1
|
|
|
|
+ 1
|
|
|
|
+ 4
|
|
|
|
+ src_filename.len_full()
|
|
|
|
+ dest_filename.len_full()
|
2023-05-29 01:29:04 +02:00
|
|
|
);
|
2023-05-28 23:50:12 +02:00
|
|
|
assert_eq!(metadata_pdu.src_file_name(), src_filename);
|
|
|
|
assert_eq!(metadata_pdu.dest_file_name(), dest_filename);
|
2023-05-29 01:29:04 +02:00
|
|
|
assert_eq!(metadata_pdu.options(), None);
|
2023-05-28 23:50:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serialization() {
|
2023-05-29 23:38:07 +02:00
|
|
|
let (src_filename, dest_filename, metadata_pdu) =
|
|
|
|
generic_metadata_pdu(CrcFlag::NoCrc, LargeFileFlag::Normal, None);
|
2023-05-29 01:29:04 +02:00
|
|
|
let mut buf: [u8; 64] = [0; 64];
|
2023-05-29 14:28:15 +02:00
|
|
|
let res = metadata_pdu.write_to_bytes(&mut buf);
|
2023-05-29 01:29:04 +02:00
|
|
|
assert!(res.is_ok());
|
|
|
|
let written = res.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
written,
|
2023-05-29 23:38:07 +02:00
|
|
|
metadata_pdu.pdu_header.header_len()
|
|
|
|
+ 1
|
|
|
|
+ 1
|
|
|
|
+ 4
|
|
|
|
+ src_filename.len_full()
|
|
|
|
+ dest_filename.len_full()
|
2023-05-29 01:29:04 +02:00
|
|
|
);
|
2023-05-29 14:28:15 +02:00
|
|
|
verify_raw_header(metadata_pdu.pdu_header(), &buf);
|
2023-05-29 01:29:04 +02:00
|
|
|
assert_eq!(buf[7], FileDirectiveType::MetadataPdu as u8);
|
2023-05-29 13:46:19 +02:00
|
|
|
assert_eq!(buf[8] >> 6, false as u8);
|
|
|
|
assert_eq!(buf[8] & 0b1111, ChecksumType::Crc32 as u8);
|
2023-05-30 15:36:02 +02:00
|
|
|
assert_eq!(u32::from_be_bytes(buf[9..13].try_into().unwrap()), 0x1010);
|
2023-05-29 13:46:19 +02:00
|
|
|
let mut current_idx = 13;
|
|
|
|
let src_name_from_raw =
|
2023-05-29 23:38:07 +02:00
|
|
|
Lv::from_bytes(&buf[current_idx..]).expect("Creating source name LV failed");
|
2023-05-29 13:46:19 +02:00
|
|
|
assert_eq!(src_name_from_raw, src_filename);
|
|
|
|
current_idx += src_name_from_raw.len_full();
|
|
|
|
let dest_name_from_raw =
|
2023-05-29 23:38:07 +02:00
|
|
|
Lv::from_bytes(&buf[current_idx..]).expect("Creating dest name LV failed");
|
2023-05-29 13:46:19 +02:00
|
|
|
assert_eq!(dest_name_from_raw, dest_filename);
|
|
|
|
current_idx += dest_name_from_raw.len_full();
|
|
|
|
// No options, so no additional data here.
|
|
|
|
assert_eq!(current_idx, written);
|
2023-05-28 23:50:12 +02:00
|
|
|
}
|
2023-05-29 23:38:07 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_deserialization() {
|
|
|
|
let (_, _, metadata_pdu) =
|
|
|
|
generic_metadata_pdu(CrcFlag::NoCrc, LargeFileFlag::Normal, None);
|
|
|
|
let mut buf: [u8; 64] = [0; 64];
|
|
|
|
metadata_pdu.write_to_bytes(&mut buf).unwrap();
|
|
|
|
let pdu_read_back = MetadataPdu::from_bytes(&buf);
|
|
|
|
assert!(pdu_read_back.is_ok());
|
|
|
|
let pdu_read_back = pdu_read_back.unwrap();
|
|
|
|
assert_eq!(pdu_read_back, metadata_pdu);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_crc_flag() {
|
|
|
|
let (src_filename, dest_filename, metadata_pdu) =
|
|
|
|
generic_metadata_pdu(CrcFlag::WithCrc, LargeFileFlag::Normal, None);
|
|
|
|
let mut buf: [u8; 64] = [0; 64];
|
|
|
|
let write_res = metadata_pdu.write_to_bytes(&mut buf);
|
|
|
|
assert!(write_res.is_ok());
|
|
|
|
let written = write_res.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
written,
|
|
|
|
metadata_pdu.pdu_header().header_len()
|
|
|
|
+ 1
|
|
|
|
+ 1
|
|
|
|
+ core::mem::size_of::<u32>()
|
|
|
|
+ src_filename.len_full()
|
|
|
|
+ dest_filename.len_full()
|
|
|
|
+ 2
|
|
|
|
);
|
|
|
|
let pdu_read_back = MetadataPdu::from_bytes(&buf).unwrap();
|
|
|
|
assert_eq!(pdu_read_back, metadata_pdu);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_large_file_flag() {
|
|
|
|
let (src_filename, dest_filename, metadata_pdu) =
|
|
|
|
generic_metadata_pdu(CrcFlag::NoCrc, LargeFileFlag::Large, None);
|
|
|
|
let mut buf: [u8; 64] = [0; 64];
|
|
|
|
let write_res = metadata_pdu.write_to_bytes(&mut buf);
|
|
|
|
assert!(write_res.is_ok());
|
|
|
|
let written = write_res.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
written,
|
|
|
|
metadata_pdu.pdu_header().header_len()
|
|
|
|
+ 1
|
|
|
|
+ 1
|
|
|
|
+ core::mem::size_of::<u64>()
|
|
|
|
+ src_filename.len_full()
|
|
|
|
+ dest_filename.len_full()
|
|
|
|
);
|
|
|
|
let pdu_read_back = MetadataPdu::from_bytes(&buf).unwrap();
|
|
|
|
assert_eq!(pdu_read_back, metadata_pdu);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_opts_builders() {
|
|
|
|
let tlv1 = Tlv::new_empty(TlvType::FlowLabel);
|
|
|
|
let msg_to_user: [u8; 4] = [1, 2, 3, 4];
|
|
|
|
let tlv2 = Tlv::new(TlvType::MsgToUser, &msg_to_user).unwrap();
|
|
|
|
let tlv_slice = [tlv1, tlv2];
|
|
|
|
let mut buf: [u8; 32] = [0; 32];
|
|
|
|
let opts = build_metadata_opts_from_slice(&mut buf, &tlv_slice);
|
|
|
|
assert!(opts.is_ok());
|
|
|
|
let opts_len = opts.unwrap();
|
|
|
|
assert_eq!(opts_len, tlv1.len_full() + tlv2.len_full());
|
|
|
|
let tlv1_conv_back = Tlv::from_bytes(&buf).unwrap();
|
|
|
|
assert_eq!(tlv1_conv_back, tlv1);
|
|
|
|
let tlv2_conv_back = Tlv::from_bytes(&buf[tlv1_conv_back.len_full()..]).unwrap();
|
|
|
|
assert_eq!(tlv2_conv_back, tlv2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_opts_builders_from_vec() {
|
|
|
|
let tlv1 = Tlv::new_empty(TlvType::FlowLabel);
|
|
|
|
let msg_to_user: [u8; 4] = [1, 2, 3, 4];
|
|
|
|
let tlv2 = Tlv::new(TlvType::MsgToUser, &msg_to_user).unwrap();
|
|
|
|
let tlv_vec = vec![tlv1, tlv2];
|
|
|
|
let mut buf: [u8; 32] = [0; 32];
|
|
|
|
let opts = build_metadata_opts_from_vec(&mut buf, &tlv_vec);
|
|
|
|
assert!(opts.is_ok());
|
|
|
|
let opts_len = opts.unwrap();
|
|
|
|
assert_eq!(opts_len, tlv1.len_full() + tlv2.len_full());
|
|
|
|
let tlv1_conv_back = Tlv::from_bytes(&buf).unwrap();
|
|
|
|
assert_eq!(tlv1_conv_back, tlv1);
|
|
|
|
let tlv2_conv_back = Tlv::from_bytes(&buf[tlv1_conv_back.len_full()..]).unwrap();
|
|
|
|
assert_eq!(tlv2_conv_back, tlv2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_with_opts() {
|
|
|
|
let tlv1 = Tlv::new_empty(TlvType::FlowLabel);
|
|
|
|
let msg_to_user: [u8; 4] = [1, 2, 3, 4];
|
|
|
|
let tlv2 = Tlv::new(TlvType::MsgToUser, &msg_to_user).unwrap();
|
|
|
|
let tlv_vec = vec![tlv1, tlv2];
|
|
|
|
let mut opts_buf: [u8; 32] = [0; 32];
|
|
|
|
let opts_len = build_metadata_opts_from_vec(&mut opts_buf, &tlv_vec).unwrap();
|
|
|
|
let (src_filename, dest_filename, metadata_pdu) = generic_metadata_pdu(
|
|
|
|
CrcFlag::NoCrc,
|
|
|
|
LargeFileFlag::Normal,
|
|
|
|
Some(&opts_buf[..opts_len]),
|
|
|
|
);
|
|
|
|
let mut buf: [u8; 128] = [0; 128];
|
|
|
|
let write_res = metadata_pdu.write_to_bytes(&mut buf);
|
|
|
|
assert!(write_res.is_ok());
|
|
|
|
let written = write_res.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
written,
|
|
|
|
metadata_pdu.pdu_header.header_len()
|
|
|
|
+ 1
|
|
|
|
+ 1
|
|
|
|
+ 4
|
|
|
|
+ src_filename.len_full()
|
|
|
|
+ dest_filename.len_full()
|
|
|
|
+ opts_len
|
|
|
|
);
|
|
|
|
let pdu_read_back = MetadataPdu::from_bytes(&buf).unwrap();
|
|
|
|
assert_eq!(pdu_read_back, metadata_pdu);
|
|
|
|
let opts_iter = pdu_read_back.options_iter();
|
|
|
|
assert!(opts_iter.is_some());
|
|
|
|
let opts_iter = opts_iter.unwrap();
|
|
|
|
let mut accumulated_len = 0;
|
|
|
|
for (idx, opt) in opts_iter.enumerate() {
|
|
|
|
assert_eq!(tlv_vec[idx], opt);
|
|
|
|
accumulated_len += opt.len_full();
|
|
|
|
}
|
|
|
|
assert_eq!(accumulated_len, pdu_read_back.options().unwrap().len());
|
|
|
|
}
|
2023-05-30 00:16:16 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_corrects_pdu_header() {
|
|
|
|
let pdu_header = PduHeader::new_for_file_data(
|
|
|
|
common_pdu_conf(CrcFlag::NoCrc, LargeFileFlag::Normal),
|
|
|
|
0,
|
|
|
|
SegmentMetadataFlag::NotPresent,
|
|
|
|
SegmentationControl::NoRecordBoundaryPreservation,
|
|
|
|
);
|
|
|
|
let metadata_params = MetadataGenericParams::new(false, ChecksumType::Crc32, 10);
|
|
|
|
let src_filename = Lv::new_from_str(SRC_FILENAME).expect("Generating string LV failed");
|
|
|
|
let dest_filename =
|
|
|
|
Lv::new_from_str(DEST_FILENAME).expect("Generating destination LV failed");
|
|
|
|
let metadata_pdu =
|
2023-06-06 08:59:18 +02:00
|
|
|
MetadataPdu::new_no_opts(pdu_header, metadata_params, src_filename, dest_filename);
|
2023-05-30 00:16:16 +02:00
|
|
|
assert_eq!(metadata_pdu.pdu_header().pdu_type(), PduType::FileDirective);
|
|
|
|
}
|
2023-05-18 14:05:51 +02:00
|
|
|
}
|