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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
use oid::ObjectIdentifier;
use is_macro::Is;
use enum_as_inner::EnumAsInner;
#[cfg(feature = "chumsky")]
use chumsky::{prelude::*, text::digits};
#[cfg(feature = "chumsky")]
use itertools::Itertools;
pub struct RootDSE {
pub supported_ldap_version: String,
pub supported_controls: Vec<ObjectIdentifier>,
pub supported_extensions: Vec<ObjectIdentifier>,
pub supported_features: Vec<ObjectIdentifier>,
pub supported_sasl_mechanisms: Vec<String>,
pub config_context: String,
pub naming_contexts: Vec<String>,
pub subschema_subentry: String,
}
impl std::fmt::Debug for RootDSE {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
f.debug_struct("RootDSE")
.field("supported_ldap_version", &self.supported_ldap_version)
.field(
"supported_controls",
&self
.supported_controls
.iter()
.map(|x| x.into())
.collect::<Vec<String>>(),
)
.field(
"supported_extensions",
&self
.supported_extensions
.iter()
.map(|x| x.into())
.collect::<Vec<String>>(),
)
.field(
"supported_features",
&self
.supported_features
.iter()
.map(|x| x.into())
.collect::<Vec<String>>(),
)
.field("supported_sasl_mechanisms", &self.supported_sasl_mechanisms)
.field("config_context", &self.config_context)
.field("naming_contexts", &self.naming_contexts)
.field("subschema_subentry", &self.subschema_subentry)
.finish()
}
}
#[cfg(feature = "chumsky")]
pub fn oid_parser() -> impl Parser<char, ObjectIdentifier, Error = Simple<char>> {
digits(10).separated_by(just('.')).try_map(|x, span| {
x.into_iter()
.join(".")
.try_into()
.map_err(|e| Simple::custom(span, format!("{:?}", e)))
})
}
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Debug, Hash)]
pub struct KeyString(pub String);
impl std::fmt::Display for KeyString {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
std::fmt::Display::fmt(&self.0, f)?;
Ok(())
}
}
impl KeyString {
pub fn describes_case_insensitive_match(&self) -> bool {
match self {
KeyString(s) if s == "objectIdentifierMatch" => true,
KeyString(s) if s == "caseIgnoreMatch" => true,
KeyString(s) if s == "caseIgnoreListMatch" => true,
KeyString(s) if s == "caseIgnoreIA5Match" => true,
KeyString(s) if s == "caseIgnoreListSubstringsMatch" => true,
KeyString(s) if s == "caseIgnoreSubstringsMatch" => true,
KeyString(s) if s == "caseIgnoreOrderingMatch" => true,
KeyString(s) if s == "caseIgnoreIA5SubstringsMatch" => true,
_ => false,
}
}
}
#[cfg(feature = "chumsky")]
pub fn keystring_parser() -> impl Parser<char, KeyString, Error = Simple<char>> {
filter(|c: &char| c.is_ascii_alphabetic())
.chain(filter(|c: &char| c.is_ascii_alphanumeric() || *c == '-' || *c == ';').repeated())
.collect::<String>()
.map(KeyString)
}
#[cfg(feature = "chumsky")]
pub fn quoted_keystring_parser() -> impl Parser<char, KeyString, Error = Simple<char>> {
keystring_parser().delimited_by('\'', '\'')
}
#[derive(PartialEq, Eq, Clone, Debug, Is, EnumAsInner)]
pub enum KeyStringOrOID {
KeyString(KeyString),
OID(ObjectIdentifier),
}
impl PartialOrd for KeyStringOrOID {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
match (self, other) {
(KeyStringOrOID::KeyString(s1), KeyStringOrOID::KeyString(s2)) => s1.partial_cmp(s2),
(KeyStringOrOID::KeyString(_), KeyStringOrOID::OID(_)) => {
Some(std::cmp::Ordering::Less)
}
(KeyStringOrOID::OID(_), KeyStringOrOID::KeyString(_)) => {
Some(std::cmp::Ordering::Greater)
}
(KeyStringOrOID::OID(oid1), KeyStringOrOID::OID(oid2)) => {
let s1: String = oid1.into();
let s2: String = oid2.into();
s1.partial_cmp(&s2)
}
}
}
}
impl Ord for KeyStringOrOID {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
match (self, other) {
(KeyStringOrOID::KeyString(s1), KeyStringOrOID::KeyString(s2)) => s1.cmp(s2),
(KeyStringOrOID::KeyString(_), KeyStringOrOID::OID(_)) => std::cmp::Ordering::Less,
(KeyStringOrOID::OID(_), KeyStringOrOID::KeyString(_)) => std::cmp::Ordering::Greater,
(KeyStringOrOID::OID(oid1), KeyStringOrOID::OID(oid2)) => {
let s1: String = oid1.into();
let s2: String = oid2.into();
s1.cmp(&s2)
}
}
}
}
impl std::fmt::Display for KeyStringOrOID {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
match &self {
Self::KeyString(s) => {
std::fmt::Display::fmt(s, f)?;
Ok(())
}
Self::OID(oid) => {
let string_oid: String = oid.clone().into();
std::fmt::Display::fmt(&string_oid, f)?;
Ok(())
}
}
}
}
#[cfg(feature = "chumsky")]
pub fn keystring_or_oid_parser() -> impl Parser<char, KeyStringOrOID, Error = Simple<char>> {
keystring_parser()
.map(KeyStringOrOID::KeyString)
.or(oid_parser().map(KeyStringOrOID::OID))
}
#[derive(PartialEq, Eq, Clone)]
pub struct OIDWithLength {
pub oid: ObjectIdentifier,
pub length: Option<usize>,
}
impl std::fmt::Debug for OIDWithLength {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
let string_oid: String = self.oid.clone().into();
f.debug_struct("OIDWithLength")
.field("oid", &string_oid)
.field("length", &self.length)
.finish()
}
}
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct RelativeDistinguishedName {
pub attributes: Vec<(KeyStringOrOID, Vec<u8>)>,
}
#[cfg(feature = "chumsky")]
pub fn hex_byte_parser() -> impl Parser<char, u8, Error = Simple<char>> {
filter(|c: &char| c.is_digit(16))
.repeated()
.exactly(2)
.collect::<String>()
.try_map(|ds, span| {
hex::decode(ds.as_bytes()).map_err(|e| Simple::custom(span, format!("{:?}", e)))
})
.map(|v: Vec<u8>| v.first().unwrap().to_owned())
}
#[cfg(feature = "chumsky")]
pub fn rdn_attribute_binary_value_parser() -> impl Parser<char, Vec<u8>, Error = Simple<char>> {
just('#').ignore_then(hex_byte_parser().repeated())
}
#[cfg(feature = "chumsky")]
pub fn rdn_attribute_string_value_parser() -> impl Parser<char, Vec<u8>, Error = Simple<char>> {
none_of(",+\"\\<>;")
.or(just('\\').ignore_then(one_of(" ,+\"\\<>;")))
.or(just('\\').ignore_then(hex_byte_parser().map(|s| s as char)))
.repeated()
.collect::<String>()
.map(|s| s.as_bytes().to_vec())
}
#[cfg(feature = "chumsky")]
pub fn rdn_attribute_value_parser() -> impl Parser<char, Vec<u8>, Error = Simple<char>> {
rdn_attribute_binary_value_parser().or(rdn_attribute_string_value_parser())
}
#[cfg(feature = "chumsky")]
pub fn rdn_parser() -> impl Parser<char, RelativeDistinguishedName, Error = Simple<char>> {
keystring_or_oid_parser()
.then(just('=').ignore_then(rdn_attribute_value_parser()))
.separated_by(just('+'))
.at_least(1)
.map(|attributes| RelativeDistinguishedName { attributes })
}
#[derive(Debug, PartialEq, Eq)]
pub struct DistinguishedName {
pub rdns: Vec<RelativeDistinguishedName>,
}
impl PartialOrd for DistinguishedName {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(other))
}
}
impl Ord for DistinguishedName {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.rdns
.iter()
.rev()
.zip(other.rdns.iter().rev())
.map(|(a, b)| a.cmp(b))
.fold(std::cmp::Ordering::Equal, |acc, e| acc.then(e))
.then(self.rdns.len().cmp(&other.rdns.len()))
}
}
#[cfg(feature = "chumsky")]
pub fn dn_parser() -> impl Parser<char, DistinguishedName, Error = Simple<char>> {
rdn_parser()
.separated_by(just(','))
.map(|rdns| DistinguishedName { rdns })
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_parse_oid() {
assert!(oid_parser().parse("1.2.3.4").is_ok());
}
#[test]
fn test_parse_oid_value() {
assert_eq!(
oid_parser().parse("1.2.3.4"),
Ok("1.2.3.4".to_string().try_into().unwrap())
);
}
#[test]
fn test_dn_parser_empty_dn() {
assert_eq!(
dn_parser().parse(""),
Ok(DistinguishedName { rdns: vec![] })
)
}
#[test]
fn test_dn_parser_single_rdn_single_string_attribute() {
assert_eq!(
dn_parser().parse("cn=Foobar"),
Ok(DistinguishedName {
rdns: vec![RelativeDistinguishedName {
attributes: vec![(
KeyStringOrOID::KeyString(KeyString("cn".to_string())),
"Foobar".as_bytes().to_vec()
)]
}]
})
)
}
#[test]
fn test_dn_parser_single_rdn_single_string_attribute_with_escaped_comma() {
assert_eq!(
dn_parser().parse("cn=Foo\\,bar"),
Ok(DistinguishedName {
rdns: vec![RelativeDistinguishedName {
attributes: vec![(
KeyStringOrOID::KeyString(KeyString("cn".to_string())),
"Foo,bar".as_bytes().to_vec()
)]
}]
})
)
}
#[test]
fn test_dn_parser_single_rdn_single_binary_attribute() {
assert_eq!(
dn_parser().parse("cn=#466f6f626172"),
Ok(DistinguishedName {
rdns: vec![RelativeDistinguishedName {
attributes: vec![(
KeyStringOrOID::KeyString(KeyString("cn".to_string())),
"Foobar".as_bytes().to_vec()
)]
}]
})
)
}
#[test]
fn test_dn_parser_single_rdn_multiple_string_attributes() {
assert_eq!(
dn_parser().parse("cn=Foo\\,bar+uid=foobar"),
Ok(DistinguishedName {
rdns: vec![RelativeDistinguishedName {
attributes: vec![
(
KeyStringOrOID::KeyString(KeyString("cn".to_string())),
"Foo,bar".as_bytes().to_vec()
),
(
KeyStringOrOID::KeyString(KeyString("uid".to_string())),
"foobar".as_bytes().to_vec()
),
]
}]
})
)
}
#[test]
fn test_dn_parser_multiple_rdns() {
assert_eq!(
dn_parser().parse("cn=Foo\\,bar,uid=foobar"),
Ok(DistinguishedName {
rdns: vec![
RelativeDistinguishedName {
attributes: vec![(
KeyStringOrOID::KeyString(KeyString("cn".to_string())),
"Foo,bar".as_bytes().to_vec()
)]
},
RelativeDistinguishedName {
attributes: vec![(
KeyStringOrOID::KeyString(KeyString("uid".to_string())),
"foobar".as_bytes().to_vec()
)]
},
]
})
)
}
#[test]
fn test_dn_cmp() {
assert_eq!(
DistinguishedName { rdns: vec![] }.cmp(&DistinguishedName {
rdns: vec![RelativeDistinguishedName {
attributes: vec![(
KeyStringOrOID::KeyString(KeyString("cn".to_string())),
"Foo,bar".as_bytes().to_vec()
)]
}]
}),
std::cmp::Ordering::Less
)
}
}