// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // Parity is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Parity is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Parity. If not, see . //! EIP712 Encoder use ethabi::{encode, Token as EthAbiToken}; use ethereum_types::{Address as EthAddress, U256, H256}; use keccak_hash::keccak; use serde_json::Value; use std::str::FromStr; use itertools::Itertools; use indexmap::IndexSet; use serde_json::to_value; use parser::{Parser, Type}; use error::{Result, ErrorKind, serde_error}; use eip712::{EIP712, MessageTypes}; use rustc_hex::FromHex; use validator::Validate; use std::collections::HashSet; fn check_hex(string: &str) -> Result<()> { if string.len() >= 2 && &string[..2] == "0x" { return Ok(()) } return Err(ErrorKind::HexParseError( format!("Expected a 0x-prefixed string of even length, found {} length string", string.len())) )? } /// given a type and HashMap> /// returns a HashSet of dependent types of the given type fn build_dependencies<'a>(message_type: &'a str, message_types: &'a MessageTypes) -> Option<(HashSet<&'a str>)> { if message_types.get(message_type).is_none() { return None; } let mut types = IndexSet::new(); types.insert(message_type); let mut deps = HashSet::new(); while let Some(item) = types.pop() { if let Some(fields) = message_types.get(item) { deps.insert(item); for field in fields { // seen this type before? or not a custom type skip if deps.contains(&*field.type_) || !message_types.contains_key(&*field.type_) { continue; } types.insert(&*field.type_); } } }; return Some(deps) } fn encode_type(message_type: &str, message_types: &MessageTypes) -> Result { let deps = { let mut temp = build_dependencies(message_type, message_types).ok_or_else(|| ErrorKind::NonExistentType)?; temp.remove(message_type); let mut temp = temp.into_iter().collect::>(); (&mut temp[..]).sort_unstable(); temp.insert(0, message_type); temp }; let encoded = deps .into_iter() .filter_map(|dep| { message_types.get(dep).map(|field_types| { let types = field_types .iter() .map(|value| format!("{} {}", value.type_, value.name)) .join(","); return format!("{}({})", dep, types); }) }) .collect::>() .concat(); Ok(encoded) } fn type_hash(message_type: &str, typed_data: &MessageTypes) -> Result { Ok(keccak(encode_type(message_type, typed_data)?)) } fn encode_data( parser: &Parser, message_type: &Type, message_types: &MessageTypes, value: &Value, field_name: Option<&str> ) -> Result> { let encoded = match message_type { Type::Array { inner, length } => { let mut items = vec![]; let values = value.as_array().ok_or_else(|| serde_error("array", field_name))?; // check if the type definition actually matches // the length of items to be encoded if length.is_some() && Some(values.len() as u64) != *length { let array_type = format!("{}[{}]", *inner, length.unwrap()); return Err(ErrorKind::UnequalArrayItems(length.unwrap(), array_type, values.len() as u64))? } for item in values { let mut encoded = encode_data(parser, &*inner, &message_types, item, field_name)?; items.append(&mut encoded); } keccak(items).to_vec() } Type::Custom(ref ident) if message_types.get(&*ident).is_some() => { let type_hash = (&type_hash(ident, &message_types)?).to_vec(); let mut tokens = encode(&[EthAbiToken::FixedBytes(type_hash)]); for field in message_types.get(ident).expect("Already checked in match guard; qed") { let value = &value[&field.name]; let type_ = parser.parse_type(&*field.type_)?; let mut encoded = encode_data(parser, &type_, &message_types, &value, Some(&*field.name))?; tokens.append(&mut encoded); } keccak(tokens).to_vec() } Type::Bytes => { let string = value.as_str().ok_or_else(|| serde_error("string", field_name))?; check_hex(&string)?; let bytes = (&string[2..]) .from_hex::>() .map_err(|err| ErrorKind::HexParseError(format!("{}", err)))?; let bytes = keccak(&bytes).to_vec(); encode(&[EthAbiToken::FixedBytes(bytes)]) } Type::Byte(_) => { let string = value.as_str().ok_or_else(|| serde_error("string", field_name))?; check_hex(&string)?; let mut bytes = (&string[2..]) .from_hex::>() .map_err(|err| ErrorKind::HexParseError(format!("{}", err)))?; encode(&[EthAbiToken::FixedBytes(bytes)]) } Type::String => { let value = value.as_str().ok_or_else(|| serde_error("string", field_name))?; let hash = keccak(value).to_vec(); encode(&[EthAbiToken::FixedBytes(hash)]) } Type::Bool => encode(&[EthAbiToken::Bool(value.as_bool().ok_or_else(|| serde_error("bool", field_name))?)]), Type::Address => { let addr = value.as_str().ok_or_else(|| serde_error("string", field_name))?; if addr.len() != 42 { return Err(ErrorKind::InvalidAddressLength(addr.len()))?; } let address = EthAddress::from_str(&addr[2..]).map_err(|err| ErrorKind::HexParseError(format!("{}", err)))?; encode(&[EthAbiToken::Address(address)]) } Type::Uint | Type::Int => { let string = value.as_str().ok_or_else(|| serde_error("int/uint", field_name))?; check_hex(&string)?; let uint = U256::from_str(&string[2..]).map_err(|err| ErrorKind::HexParseError(format!("{}", err)))?; let token = if *message_type == Type::Uint { EthAbiToken::Uint(uint) } else { EthAbiToken::Int(uint) }; encode(&[token]) } _ => return Err(ErrorKind::UnknownType(format!("{}", field_name.unwrap_or("")), format!("{}", *message_type)))? }; Ok(encoded) } /// encodes and hashes the given EIP712 struct pub fn hash_structured_data(typed_data: EIP712) -> Result { // validate input typed_data.validate()?; // EIP-191 compliant let prefix = (b"\x19\x01").to_vec(); let domain = to_value(&typed_data.domain).unwrap(); let parser = Parser::new(); let (domain_hash, data_hash) = ( encode_data(&parser, &Type::Custom("EIP712Domain".into()), &typed_data.types, &domain, None)?, encode_data(&parser, &Type::Custom(typed_data.primary_type), &typed_data.types, &typed_data.message, None)? ); let concat = [&prefix[..], &domain_hash[..], &data_hash[..]].concat(); Ok(keccak(concat)) } #[cfg(test)] mod tests { use super::*; use serde_json::from_str; use rustc_hex::ToHex; const JSON: &'static str = r#"{ "primaryType": "Mail", "domain": { "name": "Ether Mail", "version": "1", "chainId": "0x1", "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC" }, "message": { "from": { "name": "Cow", "wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826" }, "to": { "name": "Bob", "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB" }, "contents": "Hello, Bob!" }, "types": { "EIP712Domain": [ { "name": "name", "type": "string" }, { "name": "version", "type": "string" }, { "name": "chainId", "type": "uint256" }, { "name": "verifyingContract", "type": "address" } ], "Person": [ { "name": "name", "type": "string" }, { "name": "wallet", "type": "address" } ], "Mail": [ { "name": "from", "type": "Person" }, { "name": "to", "type": "Person" }, { "name": "contents", "type": "string" } ] } }"#; #[test] fn test_build_dependencies() { let string = r#"{ "EIP712Domain": [ { "name": "name", "type": "string" }, { "name": "version", "type": "string" }, { "name": "chainId", "type": "uint256" }, { "name": "verifyingContract", "type": "address" } ], "Person": [ { "name": "name", "type": "string" }, { "name": "wallet", "type": "address" } ], "Mail": [ { "name": "from", "type": "Person" }, { "name": "to", "type": "Person" }, { "name": "contents", "type": "string" } ] }"#; let value = from_str::(string).expect("alas error!"); let mail = "Mail"; let person = "Person"; let hashset = { let mut temp = HashSet::new(); temp.insert(mail); temp.insert(person); temp }; assert_eq!(build_dependencies(mail, &value), Some(hashset)); } #[test] fn test_encode_type() { let string = r#"{ "EIP712Domain": [ { "name": "name", "type": "string" }, { "name": "version", "type": "string" }, { "name": "chainId", "type": "uint256" }, { "name": "verifyingContract", "type": "address" } ], "Person": [ { "name": "name", "type": "string" }, { "name": "wallet", "type": "address" } ], "Mail": [ { "name": "from", "type": "Person" }, { "name": "to", "type": "Person" }, { "name": "contents", "type": "string" } ] }"#; let value = from_str::(string).expect("alas error!"); let mail = &String::from("Mail"); assert_eq!( "Mail(Person from,Person to,string contents)Person(string name,address wallet)", encode_type(&mail, &value).expect("alas error!") ) } #[test] fn test_encode_type_hash() { let string = r#"{ "EIP712Domain": [ { "name": "name", "type": "string" }, { "name": "version", "type": "string" }, { "name": "chainId", "type": "uint256" }, { "name": "verifyingContract", "type": "address" } ], "Person": [ { "name": "name", "type": "string" }, { "name": "wallet", "type": "address" } ], "Mail": [ { "name": "from", "type": "Person" }, { "name": "to", "type": "Person" }, { "name": "contents", "type": "string" } ] }"#; let value = from_str::(string).expect("alas error!"); let mail = &String::from("Mail"); let hash = (type_hash(&mail, &value).expect("alas error!").0).to_hex::(); assert_eq!( hash, "a0cedeb2dc280ba39b857546d74f5549c3a1d7bdc2dd96bf881f76108e23dac2" ); } #[test] fn test_hash_data() { let typed_data = from_str::(JSON).expect("alas error!"); assert_eq!( hash_structured_data(typed_data).expect("alas error!").to_hex::(), "be609aee343fb3c4b28e1df9e632fca64fcfaede20f02e86244efddf30957bd2" ) } #[test] fn test_unequal_array_lengths() { const TEST: &'static str = r#"{ "primaryType": "Mail", "domain": { "name": "Ether Mail", "version": "1", "chainId": "0x1", "verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC" }, "message": { "from": { "name": "Cow", "wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826" }, "to": [{ "name": "Bob", "wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB" }], "contents": "Hello, Bob!" }, "types": { "EIP712Domain": [ { "name": "name", "type": "string" }, { "name": "version", "type": "string" }, { "name": "chainId", "type": "uint256" }, { "name": "verifyingContract", "type": "address" } ], "Person": [ { "name": "name", "type": "string" }, { "name": "wallet", "type": "address" } ], "Mail": [ { "name": "from", "type": "Person" }, { "name": "to", "type": "Person[2]" }, { "name": "contents", "type": "string" } ] } }"#; let typed_data = from_str::(TEST).expect("alas error!"); assert_eq!( hash_structured_data(typed_data).unwrap_err().kind(), ErrorKind::UnequalArrayItems(2, "Person[2]".into(), 1) ) } }