2017-04-29 21:14:34 +00:00
|
|
|
|
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
|
|
|
|
//
|
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
2019-01-13 11:39:51 +00:00
|
|
|
|
use crate::util::error::Error;
|
|
|
|
|
use crate::util::helpers::Base64;
|
2018-05-04 17:10:04 +00:00
|
|
|
|
use base64;
|
2018-12-18 14:32:05 +00:00
|
|
|
|
use minidom::IntoAttributeValue;
|
2019-01-25 01:49:56 +00:00
|
|
|
|
use std::num::ParseIntError;
|
|
|
|
|
use std::ops::{Deref, DerefMut};
|
2018-12-18 14:32:05 +00:00
|
|
|
|
use std::str::FromStr;
|
2017-05-24 23:30:29 +00:00
|
|
|
|
|
2018-08-08 17:02:03 +00:00
|
|
|
|
/// List of the algorithms we support, or Unknown.
|
2017-05-18 22:09:29 +00:00
|
|
|
|
#[allow(non_camel_case_types)]
|
2017-05-29 04:14:49 +00:00
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2017-05-18 22:09:29 +00:00
|
|
|
|
pub enum Algo {
|
2018-08-08 17:02:03 +00:00
|
|
|
|
/// The Secure Hash Algorithm 1, with known vulnerabilities, do not use it.
|
|
|
|
|
///
|
|
|
|
|
/// See https://tools.ietf.org/html/rfc3174
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Sha_1,
|
2018-08-08 17:02:03 +00:00
|
|
|
|
|
|
|
|
|
/// The Secure Hash Algorithm 2, in its 256-bit version.
|
|
|
|
|
///
|
|
|
|
|
/// See https://tools.ietf.org/html/rfc6234
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Sha_256,
|
2018-08-08 17:02:03 +00:00
|
|
|
|
|
|
|
|
|
/// The Secure Hash Algorithm 2, in its 512-bit version.
|
|
|
|
|
///
|
|
|
|
|
/// See https://tools.ietf.org/html/rfc6234
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Sha_512,
|
2018-08-08 17:02:03 +00:00
|
|
|
|
|
|
|
|
|
/// The Secure Hash Algorithm 3, based on Keccak, in its 256-bit version.
|
|
|
|
|
///
|
|
|
|
|
/// See https://keccak.team/files/Keccak-submission-3.pdf
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Sha3_256,
|
2018-08-08 17:02:03 +00:00
|
|
|
|
|
|
|
|
|
/// The Secure Hash Algorithm 3, based on Keccak, in its 512-bit version.
|
|
|
|
|
///
|
|
|
|
|
/// See https://keccak.team/files/Keccak-submission-3.pdf
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Sha3_512,
|
2018-08-08 17:02:03 +00:00
|
|
|
|
|
|
|
|
|
/// The BLAKE2 hash algorithm, for a 256-bit output.
|
|
|
|
|
///
|
|
|
|
|
/// See https://tools.ietf.org/html/rfc7693
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Blake2b_256,
|
2018-08-08 17:02:03 +00:00
|
|
|
|
|
|
|
|
|
/// The BLAKE2 hash algorithm, for a 512-bit output.
|
|
|
|
|
///
|
|
|
|
|
/// See https://tools.ietf.org/html/rfc7693
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Blake2b_512,
|
2018-08-08 17:02:03 +00:00
|
|
|
|
|
|
|
|
|
/// An unknown hash not in this list, you can probably reject it.
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Unknown(String),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl FromStr for Algo {
|
|
|
|
|
type Err = Error;
|
|
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Algo, Error> {
|
|
|
|
|
Ok(match s {
|
|
|
|
|
"" => return Err(Error::ParseError("'algo' argument can’t be empty.")),
|
|
|
|
|
|
|
|
|
|
"sha-1" => Algo::Sha_1,
|
|
|
|
|
"sha-256" => Algo::Sha_256,
|
|
|
|
|
"sha-512" => Algo::Sha_512,
|
|
|
|
|
"sha3-256" => Algo::Sha3_256,
|
|
|
|
|
"sha3-512" => Algo::Sha3_512,
|
|
|
|
|
"blake2b-256" => Algo::Blake2b_256,
|
|
|
|
|
"blake2b-512" => Algo::Blake2b_512,
|
|
|
|
|
value => Algo::Unknown(value.to_owned()),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 11:22:11 +00:00
|
|
|
|
impl From<Algo> for String {
|
|
|
|
|
fn from(algo: Algo) -> String {
|
|
|
|
|
String::from(match algo {
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Algo::Sha_1 => "sha-1",
|
|
|
|
|
Algo::Sha_256 => "sha-256",
|
|
|
|
|
Algo::Sha_512 => "sha-512",
|
|
|
|
|
Algo::Sha3_256 => "sha3-256",
|
|
|
|
|
Algo::Sha3_512 => "sha3-512",
|
|
|
|
|
Algo::Blake2b_256 => "blake2b-256",
|
|
|
|
|
Algo::Blake2b_512 => "blake2b-512",
|
2017-05-27 11:22:11 +00:00
|
|
|
|
Algo::Unknown(text) => return text,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl IntoAttributeValue for Algo {
|
|
|
|
|
fn into_attribute_value(self) -> Option<String> {
|
|
|
|
|
Some(String::from(self))
|
2017-05-18 22:09:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 17:07:07 +00:00
|
|
|
|
generate_element!(
|
2018-08-08 17:02:03 +00:00
|
|
|
|
/// This element represents a hash of some data, defined by the hash
|
|
|
|
|
/// algorithm used and the computed value.
|
2017-11-23 15:52:06 +00:00
|
|
|
|
#[derive(PartialEq)]
|
2018-05-14 14:30:28 +00:00
|
|
|
|
Hash, "hash", HASHES,
|
2018-08-02 17:07:07 +00:00
|
|
|
|
attributes: [
|
2018-08-08 17:02:03 +00:00
|
|
|
|
/// The algorithm used to create this hash.
|
2019-02-24 19:26:40 +00:00
|
|
|
|
algo: Required<Algo> = "algo"
|
2017-11-23 15:52:06 +00:00
|
|
|
|
],
|
2018-08-02 17:07:07 +00:00
|
|
|
|
text: (
|
2018-08-08 17:02:03 +00:00
|
|
|
|
/// The hash value, as a vector of bytes.
|
2018-08-02 17:07:07 +00:00
|
|
|
|
hash: Base64<Vec<u8>>
|
|
|
|
|
)
|
2017-11-23 15:52:06 +00:00
|
|
|
|
);
|
2017-04-23 17:36:12 +00:00
|
|
|
|
|
2018-05-04 17:10:04 +00:00
|
|
|
|
impl Hash {
|
2018-08-08 17:02:03 +00:00
|
|
|
|
/// Creates a [Hash] element with the given algo and data.
|
2018-05-04 17:10:04 +00:00
|
|
|
|
pub fn new(algo: Algo, hash: Vec<u8>) -> Hash {
|
2018-12-18 14:32:05 +00:00
|
|
|
|
Hash { algo, hash }
|
2018-05-04 17:10:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-08 17:02:03 +00:00
|
|
|
|
/// Like [new](#method.new) but takes base64-encoded data before decoding
|
|
|
|
|
/// it.
|
2018-05-04 17:10:04 +00:00
|
|
|
|
pub fn from_base64(algo: Algo, hash: &str) -> Result<Hash, Error> {
|
|
|
|
|
Ok(Hash::new(algo, base64::decode(hash)?))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-25 01:49:56 +00:00
|
|
|
|
/// Helper for parsing and serialising a SHA-1 attribute.
|
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
|
pub struct Sha1HexAttribute(Hash);
|
|
|
|
|
|
|
|
|
|
impl FromStr for Sha1HexAttribute {
|
|
|
|
|
type Err = ParseIntError;
|
|
|
|
|
|
|
|
|
|
fn from_str(hex: &str) -> Result<Self, Self::Err> {
|
|
|
|
|
let mut bytes = vec![];
|
|
|
|
|
for i in 0..hex.len() / 2 {
|
2019-02-28 12:32:52 +00:00
|
|
|
|
let byte = u8::from_str_radix(&hex[2 * i..2 * i + 2], 16)?;
|
|
|
|
|
bytes.push(byte);
|
2019-01-25 01:49:56 +00:00
|
|
|
|
}
|
|
|
|
|
Ok(Sha1HexAttribute(Hash::new(Algo::Sha_1, bytes)))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl IntoAttributeValue for Sha1HexAttribute {
|
|
|
|
|
fn into_attribute_value(self) -> Option<String> {
|
|
|
|
|
let mut bytes = vec![];
|
|
|
|
|
for byte in self.0.hash {
|
|
|
|
|
bytes.push(format!("{:02x}", byte));
|
|
|
|
|
}
|
|
|
|
|
Some(bytes.join(""))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl DerefMut for Sha1HexAttribute {
|
|
|
|
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
|
|
|
|
&mut self.0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Deref for Sha1HexAttribute {
|
|
|
|
|
type Target = Hash;
|
|
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
|
&self.0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-21 03:21:16 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2017-05-06 19:46:11 +00:00
|
|
|
|
use super::*;
|
2018-05-14 14:17:21 +00:00
|
|
|
|
use minidom::Element;
|
2018-12-18 14:32:05 +00:00
|
|
|
|
use try_from::TryFrom;
|
2017-04-21 03:21:16 +00:00
|
|
|
|
|
2018-10-28 12:10:48 +00:00
|
|
|
|
#[cfg(target_pointer_width = "32")]
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_size() {
|
|
|
|
|
assert_size!(Algo, 16);
|
|
|
|
|
assert_size!(Hash, 28);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(target_pointer_width = "64")]
|
2018-10-26 12:26:16 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_size() {
|
|
|
|
|
assert_size!(Algo, 32);
|
|
|
|
|
assert_size!(Hash, 56);
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-21 03:21:16 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_simple() {
|
|
|
|
|
let elem: Element = "<hash xmlns='urn:xmpp:hashes:2' algo='sha-256'>2XarmwTlNxDAMkvymloX3S5+VbylNrJt/l5QyPa+YoU=</hash>".parse().unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let hash = Hash::try_from(elem).unwrap();
|
2017-05-18 22:09:29 +00:00
|
|
|
|
assert_eq!(hash.algo, Algo::Sha_256);
|
2018-12-18 14:32:05 +00:00
|
|
|
|
assert_eq!(
|
|
|
|
|
hash.hash,
|
|
|
|
|
base64::decode("2XarmwTlNxDAMkvymloX3S5+VbylNrJt/l5QyPa+YoU=").unwrap()
|
|
|
|
|
);
|
2017-04-21 03:21:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_unknown() {
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<replace xmlns='urn:xmpp:message-correct:0'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let error = Hash::try_from(elem).unwrap_err();
|
2017-04-21 03:21:16 +00:00
|
|
|
|
let message = match error {
|
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
|
|
|
|
assert_eq!(message, "This is not a hash element.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_invalid_child() {
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<hash xmlns='urn:xmpp:hashes:2'><coucou/></hash>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let error = Hash::try_from(elem).unwrap_err();
|
2017-04-21 03:21:16 +00:00
|
|
|
|
let message = match error {
|
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
|
|
|
|
assert_eq!(message, "Unknown child in hash element.");
|
|
|
|
|
}
|
|
|
|
|
}
|