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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
use super::{BerObject, BerObjectContent, BitStringObject};
use crate::ber::{ber_get_object_content, MAX_OBJECT_SIZE};
use crate::error::{BerError, BerResult};
use alloc::vec::Vec;
use asn1_rs::*;
use nom::Err;
use rusticata_macros::custom_check;
pub fn parse_ber_any_with_tag_r(i: &[u8], tag: Tag, max_depth: usize) -> BerResult {
custom_check!(i, max_depth == 0, BerError::BerMaxDepth)?;
let (rem, any) = Any::from_ber(i)?;
any.header.assert_tag(tag)?;
let obj = try_berobject_from_any(any, max_depth)?;
Ok((rem, obj))
}
pub fn parse_ber_any_r(i: &[u8], max_depth: usize) -> BerResult {
custom_check!(i, max_depth == 0, BerError::BerMaxDepth)?;
let (rem, any) = Any::from_ber(i)?;
let obj = try_berobject_from_any(any, max_depth)?;
Ok((rem, obj))
}
pub fn parse_ber_any(i: &[u8]) -> BerResult<Any> {
Any::from_ber(i)
}
macro_rules! from_obj {
($header:ident, $content:expr) => {
BerObject::from_header_and_content($header, $content)
};
(STRING $ty:ident, $any:ident, $header:ident) => {
from_obj!(STRING $ty, $ty, $any, $header)
};
(STRING $ty:ident, $variant:ident, $any:ident, $header:ident) => {{
custom_check!($any.data, $header.constructed(), BerError::Unsupported)?; <$ty>::test_valid_charset($any.data)?;
let s = core::str::from_utf8($any.data)?;
Ok(BerObject::from_header_and_content(
$header,
BerObjectContent::$variant(s),
))
}};
}
pub(crate) fn try_read_berobjectcontent_as(
i: &[u8],
tag: Tag,
length: Length,
constructed: bool,
max_depth: usize,
) -> BerResult<BerObjectContent> {
if let Length::Definite(l) = length {
custom_check!(i, l > MAX_OBJECT_SIZE, BerError::InvalidLength)?;
if i.len() < l {
return Err(Err::Incomplete(Needed::new(l)));
}
}
let header = Header::new(Class::Universal, constructed, tag, length);
let (rem, i) = ber_get_object_content(i, &header, max_depth)?;
let any = Any::new(header, i);
let object = try_berobject_from_any(any, max_depth)?;
Ok((rem, object.content))
}
fn try_berobject_from_any(any: Any, max_depth: usize) -> Result<BerObject> {
custom_check!(any.data, max_depth == 0, BerError::BerMaxDepth)?;
let obj_from = BerObject::from_header_and_content;
let header = any.header.clone();
if any.class() != Class::Universal {
return Ok(obj_from(header, BerObjectContent::Unknown(any)));
}
match any.tag() {
Tag::BitString => {
if any.data.is_empty() {
return Err(BerError::BerValueError);
}
custom_check!(any.data, header.constructed(), BerError::Unsupported)?; let ignored_bits = any.data[0];
let data = &any.data[1..];
Ok(obj_from(
header,
BerObjectContent::BitString(ignored_bits, BitStringObject { data }),
))
}
Tag::BmpString => from_obj!(STRING BmpString, any, header),
Tag::Boolean => {
let b = any.bool()?;
Ok(obj_from(header, BerObjectContent::Boolean(b)))
}
Tag::EndOfContent => Ok(obj_from(header, BerObjectContent::EndOfContent)),
Tag::Enumerated => {
let obj = any.enumerated()?;
Ok(obj_from(header, BerObjectContent::Enum(obj.0 as u64)))
}
Tag::GeneralizedTime => {
let time = any.generalizedtime()?;
Ok(obj_from(header, BerObjectContent::GeneralizedTime(time.0)))
}
Tag::GeneralString => from_obj!(STRING GeneralString, any, header),
Tag::GraphicString => from_obj!(STRING GraphicString, any, header),
Tag::Ia5String => from_obj!(STRING Ia5String, IA5String, any, header),
Tag::Integer => {
let obj = obj_from(header, BerObjectContent::Integer(any.data));
Ok(obj)
}
Tag::Null => Ok(obj_from(header, BerObjectContent::Null)),
Tag::NumericString => from_obj!(STRING NumericString, any, header),
Tag::ObjectDescriptor => from_obj!(STRING ObjectDescriptor, any, header),
Tag::OctetString => Ok(obj_from(header, BerObjectContent::OctetString(any.data))),
Tag::Oid => {
let oid = any.oid()?;
Ok(obj_from(header, BerObjectContent::OID(oid)))
}
Tag::PrintableString => from_obj!(STRING PrintableString, any, header),
Tag::RelativeOid => {
let oid = any.relative_oid()?;
Ok(obj_from(header, BerObjectContent::RelativeOID(oid)))
}
Tag::Sequence => {
header.assert_constructed()?;
let objects: Result<Vec<_>> = SequenceIterator::<Any, BerParser>::new(any.data)
.map(|item| {
let item = item?;
try_berobject_from_any(item, max_depth - 1)
})
.collect();
let objects = objects?;
Ok(obj_from(header, BerObjectContent::Sequence(objects)))
}
Tag::Set => {
header.assert_constructed()?;
let objects: Result<Vec<_>> = SetIterator::<Any, BerParser>::new(any.data)
.map(|item| {
let item = item?;
try_berobject_from_any(item, max_depth - 1)
})
.collect();
let objects = objects?;
Ok(obj_from(header, BerObjectContent::Set(objects)))
}
Tag::TeletexString => from_obj!(STRING TeletexString, T61String, any, header),
Tag::UtcTime => {
let time = any.utctime()?;
Ok(obj_from(header, BerObjectContent::UTCTime(time.0)))
}
Tag::UniversalString => {
custom_check!(any.data, header.constructed(), BerError::Unsupported)?; Ok(obj_from(
header,
BerObjectContent::UniversalString(any.data),
))
}
Tag::Utf8String => from_obj!(STRING Utf8String, UTF8String, any, header),
Tag::VideotexString => from_obj!(STRING VideotexString, any, header),
Tag::VisibleString => from_obj!(STRING VisibleString, any, header),
_ => {
Ok(obj_from(header, BerObjectContent::Unknown(any)))
}
}
}
#[cfg(test)]
mod tests {
use crate::ber::{BerObject, BerObjectContent, MAX_RECURSION};
use crate::error::BerError;
use hex_literal::hex;
use test_case::test_case;
use super::parse_ber_any_r;
#[test_case(&hex!("01 01 00") => matches Ok(BerObject{header:_, content:BerObjectContent::Boolean(false)}) ; "val false")]
#[test_case(&hex!("01 01 ff") => matches Ok(BerObject{header:_, content:BerObjectContent::Boolean(true)}) ; "val true")]
#[test_case(&hex!("01 01 7f") => matches Ok(BerObject{header:_, content:BerObjectContent::Boolean(true)}) ; "true not ff")]
#[test_case(&hex!("02 02 00 ff") => matches Ok(BerObject{header:_, content:BerObjectContent::Integer(_)}) ; "u32-255")]
#[test_case(&hex!("02 02 01 23") => matches Ok(BerObject{header:_, content:BerObjectContent::Integer(_)}) ; "u32-0x123")]
#[test_case(&hex!("02 04 ff ff ff ff") => matches Ok(BerObject{header:_, content:BerObjectContent::Integer(_)}) ; "u32-long-neg")]
#[test_case(&hex!("0c 04 31 32 33 34") => matches Ok(BerObject{header:_, content:BerObjectContent::UTF8String("1234")}) ; "utf8: numeric")]
#[test_case(&hex!("0d 04 c2 7b 03 02") => matches Ok(BerObject{header:_, content:BerObjectContent::RelativeOID(_)}) ; "relative OID")]
#[test_case(&hex!("12 04 31 32 33 34") => matches Ok(BerObject{header:_, content:BerObjectContent::NumericString("1234")}) ; "numeric string")]
#[test_case(&hex!("12 04 01 02 03 04") => matches Err(BerError::StringInvalidCharset) ; "numeric string err")]
#[test_case(&hex!("13 04 31 32 33 34") => matches Ok(BerObject{header:_, content:BerObjectContent::PrintableString("1234")}) ; "printable string")]
#[test_case(&hex!("13 04 01 02 03 04") => matches Err(BerError::StringInvalidCharset) ; "printable string err")]
#[test_case(&hex!("16 04 31 32 33 34") => matches Ok(BerObject{header:_, content:BerObjectContent::IA5String("1234")}) ; "ia5: numeric")]
#[test_case(&hex!("1a 04 31 32 33 34") => matches Ok(BerObject{header:_, content:BerObjectContent::VisibleString("1234")}) ; "visible: numeric")]
#[test_case(&hex!("1e 08 00 55 00 73 00 65 00 72") => matches Ok(BerObject{header:_, content:BerObjectContent::BmpString("\x00U\x00s\x00e\x00r")}) ; "bmp")]
#[test_case(&hex!("30 80 04 03 56 78 90 00 00") => matches Ok(BerObject{header:_, content:BerObjectContent::Sequence(_)}) ; "indefinite length")]
#[test_case(&hex!("c0 03 01 00 01") => matches Ok(BerObject{header:_, content:BerObjectContent::Unknown(_)}) ; "private")]
fn ber_from_any(i: &[u8]) -> Result<BerObject, BerError> {
let (rem, res) = parse_ber_any_r(i, MAX_RECURSION)?;
assert!(rem.is_empty());
Ok(res)
}
}