-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcontent.rs
1545 lines (1402 loc) · 53.5 KB
/
content.rs
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! Parsing BER encoded values.
//!
//! This is an internal module. Its public types are re-exported by the
//! parent.
#![allow(unused_imports)]
#![allow(dead_code)]
use std::fmt;
use std::convert::Infallible;
use bytes::Bytes;
use smallvec::SmallVec;
use crate::captured::Captured;
use crate::int::{Integer, Unsigned};
use crate::length::Length;
use crate::mode::Mode;
use crate::tag::Tag;
use super::error::{ContentError, DecodeError};
use super::source::{
CaptureSource, IntoSource, LimitedSource, Pos, SliceSource, Source,
};
//------------ Content -------------------------------------------------------
/// The content octets of a BER-encoded value.
///
/// A value is either primitive, containing actual octets of an actual value,
/// or constructed, in which case its content contains additional BER encoded
/// values. This enum is useful for cases where a certain type may be encoded
/// as either a primitive value or a complex constructed value.
///
/// Note that this type represents the content octets only, i.e., it does not
/// contain the tag of the value.
pub enum Content<'a, S: 'a> {
/// The value is a primitive value.
Primitive(Primitive<'a, S>),
/// The value is a constructed value.
Constructed(Constructed<'a, S>)
}
impl<'a, S: Source + 'a> Content<'a, S> {
/// Checks that the content has been parsed completely.
///
/// Returns a malformed error if not.
fn exhausted(self) -> Result<(), DecodeError<S::Error>> {
match self {
Content::Primitive(inner) => inner.exhausted(),
Content::Constructed(mut inner) => inner.exhausted()
}
}
/// Returns the encoding mode used by the value.
pub fn mode(&self) -> Mode {
match *self {
Content::Primitive(ref inner) => inner.mode(),
Content::Constructed(ref inner) => inner.mode()
}
}
/// Returns whether this value is a primitive value.
pub fn is_primitive(&self) -> bool {
match *self {
Content::Primitive(_) => true,
Content::Constructed(_) => false,
}
}
/// Returns whether this value is a constructed value.
pub fn is_constructed(&self) -> bool {
match *self {
Content::Primitive(_) => false,
Content::Constructed(_) => true,
}
}
/// Converts a reference into into one to a primitive value or errors out.
pub fn as_primitive(
&mut self
) -> Result<&mut Primitive<'a, S>, DecodeError<S::Error>> {
match *self {
Content::Primitive(ref mut inner) => Ok(inner),
Content::Constructed(ref inner) => {
Err(inner.content_err("expected primitive value"))
}
}
}
/// Converts a reference into on to a constructed value or errors out.
pub fn as_constructed(
&mut self
) -> Result<&mut Constructed<'a, S>, DecodeError<S::Error>> {
match *self {
Content::Primitive(ref inner) => {
Err(inner.content_err("expected constructed value"))
}
Content::Constructed(ref mut inner) => Ok(inner),
}
}
/// Produces a content error at the current source position.
pub fn content_err(
&self, err: impl Into<ContentError>,
) -> DecodeError<S::Error> {
match *self {
Content::Primitive(ref inner) => inner.content_err(err),
Content::Constructed(ref inner) => inner.content_err(err),
}
}
}
#[allow(clippy::wrong_self_convention)]
impl<'a, S: Source + 'a> Content<'a, S> {
/// Converts content into a `u8`.
///
/// If the content is not primitive or does not contain a single BER
/// encoded INTEGER value between 0 and 256, returns a malformed error.
pub fn to_u8(&mut self) -> Result<u8, DecodeError<S::Error>> {
if let Content::Primitive(ref mut prim) = *self {
prim.to_u8()
}
else {
Err(self.content_err("expected integer (0..255)"))
}
}
/// Skips over the content if it contains an INTEGER of value `expected`.
///
/// The content needs to be primitive and contain a validly encoded
/// integer of value `expected` or else a malformed error will be
/// returned.
pub fn skip_u8_if(
&mut self, expected: u8,
) -> Result<(), DecodeError<S::Error>> {
let res = self.to_u8()?;
if res == expected {
Ok(())
}
else {
Err(self.content_err(ExpectedIntValue(expected)))
}
}
/// Converts content into a `u16`.
///
/// If the content is not primitive or does not contain a single BER
/// encoded INTEGER value between 0 and 2^16-1, returns a malformed error.
pub fn to_u16(&mut self) -> Result<u16, DecodeError<S::Error>> {
if let Content::Primitive(ref mut prim) = *self {
prim.to_u16()
}
else {
Err(self.content_err("expected integer (0..65535)"))
}
}
/// Converts content into a `u32`.
///
/// If the content is not primitive or does not contain a single BER
/// encoded INTEGER value between 0 and 2^32-1, returns a malformed error.
pub fn to_u32(&mut self) -> Result<u32, DecodeError<S::Error>> {
if let Content::Primitive(ref mut prim) = *self {
prim.to_u32()
}
else {
Err(self.content_err("expected integer (0..4294967295)"))
}
}
/// Converts content into a `u64`.
///
/// If the content is not primitive or does not contain a single BER
/// encoded INTEGER value between 0 and 2^64-1, returns a malformed error.
pub fn to_u64(&mut self) -> Result<u64, DecodeError<S::Error>> {
if let Content::Primitive(ref mut prim) = *self {
prim.to_u64()
}
else {
Err(self.content_err("expected integer (0..2**64-1)"))
}
}
/// Converts the content into a NULL value.
///
/// If the content isn’t primitive and contains a single BER encoded
/// NULL value (i.e., nothing), returns a malformed error.
pub fn to_null(&mut self) -> Result<(), DecodeError<S::Error>> {
if let Content::Primitive(ref mut prim) = *self {
prim.to_null()
}
else {
Err(self.content_err("expected NULL"))
}
}
}
//------------ Primitive -----------------------------------------------------
/// The content octets of a primitive value.
///
/// You will receive a reference to a value of this type through a closure,
/// possibly wrapped in a `Content` value. Your task will be to read out all
/// the octets of the value before returning from the closure or produce an
/// error if the value isn’t correctly encoded. If you read less octets than
/// are available, whoever called the closure will produce an error after
/// you returned. Thus, you can read as many octets as you expect and not
/// bother to check whether that was all available octets.
///
/// The most basic way to do this is through the primitive’s implementation
/// of the `Source` trait. Thus, you can gain access to some or all of the
/// octets and mark them read by advancing over them. You can safely attempt
/// to read more octets than available as that will reliably result in a
/// malformed error.
///
/// A number of methods are available to deal with the encodings defined for
/// various types. These are prefixed by `to_` to indicate that they are
/// intended to convert the content to a certain type. They all read exactly
/// one encoded value.
///
/// The value provides access to the decoding mode via the `mode` method.
/// All methodes that decode data will honour the decoding mode and enforce
/// that data is encoded according to the mode.
pub struct Primitive<'a, S: 'a> {
/// The underlying source limited to the length of the value.
source: &'a mut LimitedSource<S>,
/// The decoding mode to operate in.
mode: Mode,
/// The start position of the value in the source.
start: Pos,
}
/// # Value Management
///
impl<'a, S: 'a> Primitive<'a, S> {
/// Creates a new primitive from the given source and mode.
fn new(source: &'a mut LimitedSource<S>, mode: Mode) -> Self
where S: Source {
Primitive { start: source.pos(), source, mode }
}
/// Returns the current decoding mode.
///
/// The higher-level `to_` methods will use this mode to enforce that
/// data is encoded correctly.
pub fn mode(&self) -> Mode {
self.mode
}
/// Sets the current decoding mode.
pub fn set_mode(&mut self, mode: Mode) {
self.mode = mode
}
}
impl<'a, S: Source + 'a> Primitive<'a, S> {
/// Produces a content error at the current source position.
pub fn content_err(
&self, err: impl Into<ContentError>,
) -> DecodeError<S::Error> {
DecodeError::content(err, self.start)
}
}
/// # High-level Decoding
///
#[allow(clippy::wrong_self_convention)]
impl<'a, S: Source + 'a> Primitive<'a, S> {
/// Parses the primitive value as a BOOLEAN value.
pub fn to_bool(&mut self) -> Result<bool, DecodeError<S::Error>> {
let res = self.take_u8()?;
if self.mode != Mode::Ber {
match res {
0 => Ok(false),
0xFF => Ok(true),
_ => {
Err(self.content_err("invalid boolean"))
}
}
}
else {
Ok(res != 0)
}
}
/// Parses the primitive value as an INTEGER limited to a `i8`.
pub fn to_i8(&mut self) -> Result<i8, DecodeError<S::Error>> {
Integer::i8_from_primitive(self)
}
/// Parses the primitive value as an INTEGER limited to a `i8`.
pub fn to_i16(&mut self) -> Result<i16, DecodeError<S::Error>> {
Integer::i16_from_primitive(self)
}
/// Parses the primitive value as an INTEGER limited to a `i8`.
pub fn to_i32(&mut self) -> Result<i32, DecodeError<S::Error>> {
Integer::i32_from_primitive(self)
}
/// Parses the primitive value as an INTEGER limited to a `i8`.
pub fn to_i64(&mut self) -> Result<i64, DecodeError<S::Error>> {
Integer::i64_from_primitive(self)
}
/// Parses the primitive value as an INTEGER limited to a `i8`.
pub fn to_i128(&mut self) -> Result<i128, DecodeError<S::Error>> {
Integer::i128_from_primitive(self)
}
/// Parses the primitive value as an INTEGER limited to a `u8`.
pub fn to_u8(&mut self) -> Result<u8, DecodeError<S::Error>> {
Unsigned::u8_from_primitive(self)
}
/// Parses the primitive value as an INTEGER limited to a `u16`.
pub fn to_u16(&mut self) -> Result<u16, DecodeError<S::Error>> {
Unsigned::u16_from_primitive(self)
}
/// Parses the primitive value as an INTEGER limited to a `u32`.
pub fn to_u32(&mut self) -> Result<u32, DecodeError<S::Error>> {
Unsigned::u32_from_primitive(self)
}
/// Parses the primitive value as a INTEGER value limited to a `u64`.
pub fn to_u64(&mut self) -> Result<u64, DecodeError<S::Error>> {
Unsigned::u64_from_primitive(self)
}
/// Parses the primitive value as a INTEGER value limited to a `u128`.
pub fn to_u128(&mut self) -> Result<u64, DecodeError<S::Error>> {
Unsigned::u64_from_primitive(self)
}
/// Converts the content octets to a NULL value.
///
/// Since such a value is empty, this doesn’t really do anything.
pub fn to_null(&mut self) -> Result<(), DecodeError<S::Error>> {
if self.remaining() > 0 {
Err(self.content_err("invalid NULL value"))
}
else {
Ok(())
}
}
}
/// # Low-level Access
///
/// For basic low-level access, `Primitive` implements the `Source` trait.
/// Because the length of the content is guaranteed to be known, it can
/// provide a few additional methods. Note that these may still fail because
/// the underlying source doesn’t guarantee that as many octets are actually
/// available.
impl<'a, S: Source + 'a> Primitive<'a, S> {
/// Returns the number of remaining octets.
///
/// The returned value reflects what is left of the expected length of
/// content and therefore decreases when the primitive is advanced.
pub fn remaining(&self) -> usize {
self.source.limit().unwrap()
}
/// Skips the rest of the content.
///
/// Returns a malformed error if the source ends before the expected
/// length of content.
pub fn skip_all(&mut self) -> Result<(), DecodeError<S::Error>> {
self.source.skip_all()
}
/// Returns the remainder of the content as a `Bytes` value.
pub fn take_all(&mut self) -> Result<Bytes, DecodeError<S::Error>> {
self.source.take_all()
}
/// Returns a bytes slice of the remainder of the content.
pub fn slice_all(&mut self) -> Result<&[u8], DecodeError<S::Error>> {
let remaining = self.remaining();
if self.source.request(remaining)? < remaining {
Err(self.source.content_err("unexpected end of data"))
}
else {
Ok(&self.source.slice()[..remaining])
}
}
/// Process a slice of the remainder of the content via a closure.
pub fn with_slice_all<F, T, E>(
&mut self, op: F,
) -> Result<T, DecodeError<S::Error>>
where
F: FnOnce(&[u8]) -> Result<T, E>,
E: Into<ContentError>,
{
let remaining = self.remaining();
if self.source.request(remaining)? < remaining {
return Err(self.source.content_err("unexpected end of data"));
}
let res = op(&self.source.slice()[..remaining]).map_err(|err| {
self.content_err(err)
})?;
self.source.advance(remaining);
Ok(res)
}
/// Checkes whether all content has been advanced over.
fn exhausted(self) -> Result<(), DecodeError<S::Error>> {
self.source.exhausted()
}
}
/// # Support for Testing
///
impl Primitive<'static, ()> {
/// Decode a bytes slice via a closure.
///
/// This method can be used in testing code for decoding primitive
/// values by providing a bytes slice with the content. For instance,
/// decoding the `to_bool` method could be tested like this:
///
/// ```
/// use bcder::Mode;
/// use bcder::decode::Primitive;
///
/// assert_eq!(
/// Primitive::decode_slice(
/// b"\x00".as_ref(), Mode::Der,
/// |prim| prim.to_bool()
/// ).unwrap(),
/// false
/// )
/// ```
pub fn decode_slice<F, T>(
data: &[u8],
mode: Mode,
op: F
) -> Result<T, DecodeError<Infallible>>
where
F: FnOnce(
&mut Primitive<SliceSource>
) -> Result<T, DecodeError<Infallible>>
{
let mut lim = LimitedSource::new(data.into_source());
lim.set_limit(Some(data.len()));
let mut prim = Primitive::new(&mut lim, mode);
let res = op(&mut prim)?;
prim.exhausted()?;
Ok(res)
}
}
//--- Source
impl<'a, S: Source + 'a> Source for Primitive<'a, S> {
type Error = S::Error;
fn pos(&self) -> Pos {
self.source.pos()
}
fn request(&mut self, len: usize) -> Result<usize, Self::Error> {
self.source.request(len)
}
fn slice(&self) -> &[u8] {
self.source.slice()
}
fn bytes(&self, start: usize, end: usize) -> Bytes {
self.source.bytes(start, end)
}
fn advance(&mut self, len: usize) {
self.source.advance(len)
}
}
//------------ Constructed ---------------------------------------------------
/// The content octets of a constructed value.
///
/// You will only ever receive a mutable reference to a value of this type
/// as an argument to a closure provided to some function. The closure will
/// have to process all content of the constructed value.
///
/// Since constructed values consist of a sequence of values, the methods
/// allow you to process these values one by one. The most basic of these
/// are [`take_value`] and [`take_opt_value`] which process exactly one
/// value or up to one value. A number of convenience functions exists on
/// top of them for commonly encountered types and cases.
///
/// Because the caller of your closure checks whether all content has been
/// advanced over and raising an error of not, you only need to read as many
/// values as you expected to be present and can simply return when you think
/// you are done.
///
/// [`take_value`]: #method.take_value
/// [`take_opt_value`]: #method.take_opt_value
#[derive(Debug)]
pub struct Constructed<'a, S: 'a> {
/// The underlying source.
source: &'a mut LimitedSource<S>,
/// The state we are in so we can determine the end of the content.
state: State,
/// The encoding mode to use.
mode: Mode,
/// The start position of the value in the source.
start: Pos,
}
/// # General Management
///
impl<'a, S: Source + 'a> Constructed<'a, S> {
/// Creates a new source from the given components.
fn new(
source: &'a mut LimitedSource<S>,
state: State,
mode: Mode
) -> Self {
Constructed { start: source.pos(), source, state, mode }
}
/// Decode a source as constructed content.
///
/// The function will start decoding of `source` in the given mode. It
/// will pass a constructed content value to the closure `op` which
/// has to process all the content and return a result or error.
///
/// This function is identical to calling [`Mode::decode`].
///
/// [`Mode::decode`]: ../enum.Mode.html#method.decode
pub fn decode<I, F, T>(
source: I, mode: Mode, op: F,
) -> Result<T, DecodeError<S::Error>>
where
I: IntoSource<Source = S>,
F: FnOnce(&mut Constructed<S>) -> Result<T, DecodeError<S::Error>>
{
let mut source = LimitedSource::new(source.into_source());
let mut cons = Constructed::new(&mut source, State::Unbounded, mode);
let res = op(&mut cons)?;
cons.exhausted()?;
Ok(res)
}
/// Returns the encoding mode used by the value.
pub fn mode(&self) -> Mode {
self.mode
}
/// Sets the encoding mode to be used for the value.
pub fn set_mode(&mut self, mode: Mode) {
self.mode = mode
}
/// Returns the remaining length of the value if it is available.
///
/// A constructed value may be of indefinite length, in which case this
/// method returns `None`.
pub fn remaining_len(&self) -> Option<usize> {
self.source.limit()
}
}
impl<'a, S: Source + 'a> Constructed<'a, S> {
/// Produces a content error at start of the value.
pub fn content_err(
&self, err: impl Into<ContentError>,
) -> DecodeError<S::Error> {
DecodeError::content(err, self.start)
}
}
/// # Fundamental Reading
///
impl<'a, S: Source + 'a> Constructed<'a, S> {
/// Checks whether all content has been advanced over.
///
/// For a value of definite length, this is the case when the limit of the
/// source has been reached. For indefinite values, we need to have either
/// already read or can now read the end-of-value marker.
fn exhausted(&mut self) -> Result<(), DecodeError<S::Error>> {
match self.state {
State::Done => Ok(()),
State::Definite => {
self.source.exhausted()
}
State::Indefinite => {
let (tag, constructed) = Tag::take_from(self.source)?;
if tag != Tag::END_OF_VALUE || constructed
|| !Length::take_from(self.source, self.mode)?.is_zero()
{
Err(self.content_err("unexpected trailing values"))
}
else {
Ok(())
}
}
State::Unbounded => Ok(())
}
}
/// Returns whether we have already reached the end.
///
/// For indefinite values, we may be at the end right now but don’t
/// know it yet.
fn is_exhausted(&self) -> bool {
match self.state {
State::Definite => {
self.source.limit().unwrap() == 0
}
State::Indefinite => false,
State::Done => true,
State::Unbounded => false,
}
}
/// Processes the next value.
///
/// If `expected` is not `None`, the method will only process a value
/// with the given tag and return `Ok(None)` if there isn’t another value
/// or if the next value has a different tag.
///
/// If `expected` is `None`, the method will process a value with any
/// tag and only return `Ok(None)` if it reached the end of the value.
///
/// The closure `op` receives both the tag and content for the next
/// value. It must process the value, advancing the source to its end
/// or return an error.
fn process_next_value<F, T>(
&mut self,
expected: Option<Tag>,
op: F
) -> Result<Option<T>, DecodeError<S::Error>>
where
F: FnOnce(Tag, &mut Content<S>) -> Result<T, DecodeError<S::Error>>
{
if self.is_exhausted() {
return Ok(None)
}
let (tag, constructed) = if let Some(expected) = expected {
(
expected,
match expected.take_from_if(self.source)? {
Some(compressed) => compressed,
None => return Ok(None)
}
)
}
else {
Tag::take_from(self.source)?
};
let length = Length::take_from(self.source, self.mode)?;
if tag == Tag::END_OF_VALUE {
if let State::Indefinite = self.state {
if constructed {
return Err(self.source.content_err(
"constructed end of value"
))
}
if !length.is_zero() {
return Err(self.source.content_err(
"non-empty end of value"
))
}
self.state = State::Done;
return Ok(None)
}
else {
return Err(self.source.content_err(
"unexpected end of value"
))
}
}
match length {
Length::Definite(len) => {
if let Some(limit) = self.source.limit() {
if len > limit {
return Err(self.source.content_err(
"nested value with excessive length"
))
}
}
let old_limit = self.source.limit_further(Some(len));
let res = {
let mut content = if constructed {
// Definite length constructed values are not allowed
// in CER.
if self.mode == Mode::Cer {
return Err(self.source.content_err(
"definite length constructed in CER mode"
))
}
Content::Constructed(
Constructed::new(
self.source, State::Definite, self.mode
)
)
}
else {
Content::Primitive(
Primitive::new(self.source, self.mode)
)
};
let res = op(tag, &mut content)?;
content.exhausted()?;
res
};
self.source.set_limit(old_limit.map(|x| x - len));
Ok(Some(res))
}
Length::Indefinite => {
if !constructed || self.mode == Mode::Der {
return Err(self.source.content_err(
"indefinite length constructed in DER mode"
))
}
let mut content = Content::Constructed(
Constructed::new(
self.source, State::Indefinite, self.mode
)
);
let res = op(tag, &mut content)?;
content.exhausted()?;
Ok(Some(res))
}
}
}
/// Makes sure the next value is present.
fn mandatory<F, T>(
&mut self, op: F,
) -> Result<T, DecodeError<S::Error>>
where
F: FnOnce(
&mut Constructed<S>
) -> Result<Option<T>, DecodeError<S::Error>>,
{
match op(self)? {
Some(res) => Ok(res),
None => Err(self.source.content_err("missing further values")),
}
}
}
/// # Processing Contained Values
///
/// The methods in this section each process one value of the constructed
/// value’s content.
impl<'a, S: Source + 'a> Constructed<'a, S> {
/// Process one value of content.
///
/// The closure `op` receives the tag and content of the next value
/// and must process it completely, advancing to the content’s end.
///
/// Upon success, the method returns the closure’s return value. The
/// method returns a malformed error if there isn’t at least one more
/// value available. It also returns an error if the closure returns one
/// or if reading from the source fails.
pub fn take_value<F, T>(
&mut self, op: F,
) -> Result<T, DecodeError<S::Error>>
where
F: FnOnce(Tag, &mut Content<S>) -> Result<T, DecodeError<S::Error>>,
{
match self.process_next_value(None, op)? {
Some(res) => Ok(res),
None => Err(self.content_err("missing further values")),
}
}
/// Processes an optional value.
///
/// If there is at least one more value available, the closure `op` is
/// given the tag and content of that value and must process it
/// completely, advancing to the end of its content. If the closure
/// succeeds, its return value is returned as ‘some’ result.
///
/// If there are no more values available, the method returns `Ok(None)`.
/// It returns an error if the closure returns one or if reading from
/// the source fails.
pub fn take_opt_value<F, T>(
&mut self, op: F,
) -> Result<Option<T>, DecodeError<S::Error>>
where
F: FnOnce(Tag, &mut Content<S>) -> Result<T, DecodeError<S::Error>>,
{
self.process_next_value(None, op)
}
/// Processes a value with the given tag.
///
/// If the next value has the tag `expected`, its content is being given
/// to the closure which has to process it completely and return whatever
/// is being returned upon success.
///
/// The method will return a malformed error if it encounters any other
/// tag or the end of the value. It will also return an error if the
/// closure returns an error or doesn’t process the complete values, or
/// if accessing the underlying source fails.
pub fn take_value_if<F, T>(
&mut self,
expected: Tag,
op: F
) -> Result<T, DecodeError<S::Error>>
where F: FnOnce(&mut Content<S>) -> Result<T, DecodeError<S::Error>> {
let res = self.process_next_value(Some(expected), |_, content| {
op(content)
})?;
match res {
Some(res) => Ok(res),
None => Err(self.content_err(ExpectedTag(expected))),
}
}
/// Processes an optional value with the given tag.
///
/// If the next value has the tag `expected`, its content is being given
/// to the closure which has to process it completely and return whatever
/// is to be returned as some value.
///
/// If the next value has a different tag or if the end of the value has
/// been reached, the method returns `Ok(None)`. It will return an error
/// if the closure fails or doesn’t process the complete value, or if
/// accessing the underlying source fails.
pub fn take_opt_value_if<F, T>(
&mut self,
expected: Tag,
op: F
) -> Result<Option<T>, DecodeError<S::Error>>
where F: FnOnce(&mut Content<S>) -> Result<T, DecodeError<S::Error>> {
self.process_next_value(Some(expected), |_, content| op(content))
}
/// Processes a constructed value.
///
/// If the next value is a constructed value, its tag and content are
/// being given to the closure `op` which has to process it completely.
/// If it succeeds, its return value is returned.
///
/// If the next value is not a constructed value or there is no next
/// value or if the closure doesn’t process the next value completely,
/// a malformed error is returned. An error is also returned if the
/// closure returns one or if accessing the underlying source fails.
pub fn take_constructed<F, T>(
&mut self, op: F
) -> Result<T, DecodeError<S::Error>>
where
F: FnOnce(
Tag, &mut Constructed<S>
) -> Result<T, DecodeError<S::Error>>,
{
self.mandatory(|cons| cons.take_opt_constructed(op))
}
/// Processes an optional constructed value.
///
/// If the next value is a constructed value, its tag and content are
/// being given to the closure `op` which has to process it completely.
/// If it succeeds, its return value is returned as some value.
///
/// If the end of the value has been reached, the method returns
/// `Ok(None)`.
///
/// If the next value is not a constructed value or if the closure
/// doesn’t process the next value completely, a malformed error is
/// returned. An error is also returned if the closure returns one or
/// if accessing the underlying source fails.
pub fn take_opt_constructed<F, T>(
&mut self,
op: F
) -> Result<Option<T>, DecodeError<S::Error>>
where
F: FnOnce(
Tag, &mut Constructed<S>,
) -> Result<T, DecodeError<S::Error>>
{
self.process_next_value(None, |tag, content| {
op(tag, content.as_constructed()?)
})
}
/// Processes a constructed value with a required tag.
///
/// If the next value is a constructed value with a tag equal to
/// `expected`, its content is given to the closure `op` which has to
/// process it completely. If the closure succeeds, its return value
/// is returned.
///
/// If the next value is not constructed or has a different tag, if
/// the end of the value has been reached, or if the closure does not
/// process the contained value’s content completely, a malformed error
/// is returned. An error is also returned if the closure returns one or
/// if accessing the underlying source fails.
pub fn take_constructed_if<F, T>(
&mut self,
expected: Tag,
op: F,
) -> Result<T, DecodeError<S::Error>>
where
F: FnOnce(&mut Constructed<S>) -> Result<T, DecodeError<S::Error>>,
{
self.mandatory(|cons| cons.take_opt_constructed_if(expected, op))
}
/// Processes an optional constructed value if it has a given tag.
///
/// If the next value is a constructed value with a tag equal to
/// `expected`, its content is given to the closure `op` which has to
/// process it completely. If the closure succeeds, its return value
/// is returned.
///
/// If the next value is not constructed, does not have the expected tag,
/// or the end of this value has been reached, the method returns
/// `Ok(None)`. It returns a malformed error if the closure does not
/// process the content of the next value fully.
///
/// An error is also returned if the closure returns one or if accessing
/// the underlying source fails.
pub fn take_opt_constructed_if<F, T>(
&mut self,
expected: Tag,
op: F,
) -> Result<Option<T>, DecodeError<S::Error>>
where
F: FnOnce(&mut Constructed<S>) -> Result<T, DecodeError<S::Error>>,
{
self.process_next_value(Some(expected), |_, content| {
op(content.as_constructed()?)
})
}
/// Processes a primitive value.
///
/// If the next value is primitive, its tag and content are given to the
/// closure `op` which has to process it fully. Upon success, the
/// closure’s return value is returned.
///
/// If the next value is not primitive, if the end of value has been
/// reached, or if the closure fails to process the next value’s content
/// fully, a malformed error is returned. An error is also returned if
/// the closure returns one or if accessing the underlying source fails.
pub fn take_primitive<F, T>(
&mut self, op: F,
) -> Result<T, DecodeError<S::Error>>
where
F: FnOnce(Tag, &mut Primitive<S>) -> Result<T, DecodeError<S::Error>>,
{
self.mandatory(|cons| cons.take_opt_primitive(op))
}
/// Processes an optional primitive value.
///
/// If the next value is primitive, its tag and content are given to the
/// closure `op` which has to process it fully. Upon success, the
/// closure’s return value is returned.
///
/// If the next value is not primitive or if the end of value has been
/// reached, `Ok(None)` is returned.
/// If the closure fails to process the next value’s content fully, a
/// malformed error is returned. An error is also returned if
/// the closure returns one or if accessing the underlying source fails.
pub fn take_opt_primitive<F, T>(
&mut self, op: F,
) -> Result<Option<T>, DecodeError<S::Error>>
where
F: FnOnce(Tag, &mut Primitive<S>) -> Result<T, DecodeError<S::Error>>,
{
self.process_next_value(None, |tag, content| {
op(tag, content.as_primitive()?)
})
}
/// Processes a primitive value if it has the right tag.
///
/// If the next value is a primitive and its tag matches `expected`, its
/// content is given to the closure `op` which has to process it
/// completely or return an error, either of which is returned.
///
/// The method returns a malformed error if there is no next value, if the
/// next value is not a primitive, if it doesn’t have the right tag, or if
/// the closure doesn’t advance over the complete content. If access to
/// the underlying source fails, an error is returned, too.
pub fn take_primitive_if<F, T>(
&mut self, expected: Tag, op: F,
) -> Result<T, DecodeError<S::Error>>