Files
opaque-vx/src/serialization/mod.rs
T

214 lines
6.4 KiB
Rust
Raw Normal View History

// Copyright (c) Facebook, Inc. and its affiliates.
//
2021-12-03 14:38:11 -08:00
// This source code is licensed under both the MIT license found in the
// LICENSE-MIT file in the root directory of this source tree and the Apache
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
// of this source tree.
2021-08-22 12:28:19 -07:00
use crate::errors::ProtocolError;
2022-01-04 00:50:40 +01:00
use core::marker::PhantomData;
use digest::Update;
use generic_array::{
typenum::{U0, U2},
ArrayLength, GenericArray,
};
use hmac::Mac;
// Corresponds to the I2OSP() function from RFC8017
2022-01-04 00:50:40 +01:00
pub(crate) fn i2osp<L: ArrayLength<u8>>(
input: usize,
) -> Result<GenericArray<u8, L>, ProtocolError> {
const SIZEOF_USIZE: usize = core::mem::size_of::<usize>();
2021-07-08 11:04:32 -07:00
// Check if input >= 256^length
2022-01-04 00:50:40 +01:00
if (SIZEOF_USIZE as u32 - input.leading_zeros() / 8) > L::U32 {
2021-08-22 12:28:19 -07:00
return Err(ProtocolError::SerializationError);
2021-07-08 11:04:32 -07:00
}
2022-01-04 00:50:40 +01:00
if L::USIZE <= SIZEOF_USIZE {
return Ok(GenericArray::clone_from_slice(
&input.to_be_bytes()[SIZEOF_USIZE - L::USIZE..],
));
}
2022-01-04 00:50:40 +01:00
let mut output = GenericArray::default();
output[L::USIZE - SIZEOF_USIZE..L::USIZE].copy_from_slice(&input.to_be_bytes());
2021-07-08 11:04:32 -07:00
Ok(output)
}
// Corresponds to the OS2IP() function from RFC8017
2021-08-22 12:28:19 -07:00
pub(crate) fn os2ip(input: &[u8]) -> Result<usize, ProtocolError> {
2021-08-12 06:25:07 +02:00
if input.len() > core::mem::size_of::<usize>() {
2021-08-22 12:28:19 -07:00
return Err(ProtocolError::SerializationError);
}
2021-08-12 06:25:07 +02:00
let mut output_array = [0u8; core::mem::size_of::<usize>()];
output_array[core::mem::size_of::<usize>() - input.len()..].copy_from_slice(input);
Ok(usize::from_be_bytes(output_array))
}
2020-11-12 09:56:06 -05:00
2022-01-04 00:50:40 +01:00
/// Computes `I2OSP(len(input), max_bytes) || input` and helps hold output without allocation.
pub(crate) struct Serialize<
'a,
L1: ArrayLength<u8>,
L2: ArrayLength<u8> = U0,
L3: ArrayLength<u8> = U0,
> {
octet: GenericArray<u8, L1>,
input: Input<'a, L2, L3>,
}
enum Input<'a, L1: ArrayLength<u8>, L2: ArrayLength<u8>> {
Owned(GenericArray<u8, L1>),
Borrowed(&'a [u8]),
Label(([&'a [u8]; 2], PhantomData<L2>)),
}
impl<'a, L1: ArrayLength<u8>, L2: ArrayLength<u8>, L3: ArrayLength<u8>> Serialize<'a, L1, L2, L3> {
// Variation of `serialize` that takes a borrowed `input
pub(crate) fn from(input: &'a [u8]) -> Result<Serialize<'a, L1, L2>, ProtocolError> {
Ok(Serialize {
octet: i2osp::<L1>(input.len())?,
input: Input::Borrowed(input),
})
}
// Variation of `serialize` that takes an owned `input`
pub(crate) fn from_owned(
input: GenericArray<u8, L2>,
) -> Result<Serialize<'a, L1, L2>, ProtocolError> {
Ok(Serialize {
octet: i2osp::<L1>(input.len())?,
input: Input::Owned(input),
})
}
// Variation of `serialize` that takes a label
pub(crate) fn from_label(
opaque: &'a [u8],
label: &'a [u8],
) -> Result<Serialize<'a, L1, U0, U2>, ProtocolError> {
Ok(Serialize {
octet: i2osp::<L1>(opaque.len() + label.len())?,
input: Input::Label(([opaque, label], PhantomData)),
})
}
pub(crate) fn iter(&self) -> impl Iterator<Item = &[u8]> {
// Some magic to make it output the same type in all branches.
Some(self.octet.as_slice())
.into_iter()
.chain(match &self.input {
Input::Owned(bytes) => Some(bytes.as_slice()),
Input::Borrowed(bytes) => Some(*bytes),
Input::Label(_) => None,
})
.chain(if let Input::Label((iter, _)) = &self.input {
Some(iter[0]).into_iter().chain(Some(iter[1]).into_iter())
} else {
None.into_iter().chain(None)
})
}
}
impl<'a, L1: ArrayLength<u8>, L2: ArrayLength<u8>> Serialize<'a, L1, L2, U0> {
pub(crate) fn to_array_2(&self) -> [&[u8]; 2] {
let input = match &self.input {
Input::Borrowed(value) => value,
Input::Owned(value) => value.as_slice(),
_ => unreachable!("unexpected `Serialize` constructed with wrong generics"),
};
[self.octet.as_slice(), input]
}
}
impl<'a, L1: ArrayLength<u8>, L2: ArrayLength<u8>> Serialize<'a, L1, L2, U2> {
pub(crate) fn to_array_3(&self) -> [&[u8]; 3] {
match self.input {
Input::Label((label, _)) => [self.octet.as_slice(), label[0], label[1]],
_ => unreachable!("unexpected `Serialize` constructed with wrong generics"),
}
}
}
2020-11-12 09:56:06 -05:00
// Tokenizes an input of the format I2OSP(len(input), max_bytes) || input, outputting
// (input, remainder)
2022-01-04 00:50:40 +01:00
pub(crate) fn tokenize(input: &[u8], size_bytes: usize) -> Result<(&[u8], &[u8]), ProtocolError> {
2021-08-12 06:25:07 +02:00
if size_bytes > core::mem::size_of::<usize>() || input.len() < size_bytes {
2021-08-22 12:28:19 -07:00
return Err(ProtocolError::SerializationError);
2020-11-12 09:56:06 -05:00
}
let size = os2ip(&input[..size_bytes])?;
if size_bytes + size > input.len() {
2021-08-22 12:28:19 -07:00
return Err(ProtocolError::SerializationError);
}
Ok((
2022-01-04 00:50:40 +01:00
&input[size_bytes..size_bytes + size],
&input[size_bytes + size..],
))
}
2022-01-04 00:50:40 +01:00
pub(crate) trait UpdateExt {
fn chain_iter<'a>(self, iter: impl Iterator<Item = &'a [u8]>) -> Self;
}
impl<T: Update> UpdateExt for T {
fn chain_iter<'a>(self, iter: impl Iterator<Item = &'a [u8]>) -> Self {
let mut self_ = self;
for bytes in iter {
self_ = self_.chain(bytes);
}
self_
}
}
pub(crate) trait MacExt {
fn update_iter<'a>(&mut self, iter: impl Iterator<Item = &'a [u8]>);
}
impl<T: Mac> MacExt for T {
fn update_iter<'a>(&mut self, iter: impl Iterator<Item = &'a [u8]>) {
for bytes in iter {
self.update(bytes);
}
}
}
/// The purpose of this macro is to simplify [`concat`](alloc::slice::Concat::concat)ing
/// slices into an [`Iterator`] to avoid allocation
macro_rules! chain {
(
$item1:expr,
$($item2:expr),+$(,)?
) => {
$item1$(.chain($item2))+
};
}
#[cfg(test)]
mod tests;
2021-07-08 11:04:32 -07:00
#[cfg(test)]
mod unit_tests {
use super::*;
2022-01-04 00:50:40 +01:00
use generic_array::typenum::{U1, U2};
2021-07-08 11:04:32 -07:00
// Test the error condition for I2OSP
#[test]
fn test_i2osp_err_check() {
2022-01-04 00:50:40 +01:00
assert!(i2osp::<U1>(0).is_ok());
2021-07-08 11:04:32 -07:00
2022-01-04 00:50:40 +01:00
assert!(i2osp::<U1>(255).is_ok());
assert!(i2osp::<U1>(256).is_err());
assert!(i2osp::<U1>(257).is_err());
2021-07-08 11:04:32 -07:00
2022-01-04 00:50:40 +01:00
assert!(i2osp::<U2>(256 * 256 - 1).is_ok());
assert!(i2osp::<U2>(256 * 256).is_err());
assert!(i2osp::<U2>(256 * 256 + 1).is_err());
2021-07-08 11:04:32 -07:00
}
}