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
//! Contains marker types used to implement type state for encrypted and signed
//! GBLs.

use self::private::*;
use super::*;
use crate::utils::Blob;

use either::Either;
use std::borrow::Cow;
use std::fmt;
use std::marker::PhantomData;

mod sealed {
    use super::*;

    pub trait Sealed {}

    impl<'a> Sealed for Encrypted<'a> {}
    impl<'a> Sealed for NotEncrypted<'a> {}
    impl<'a> Sealed for MaybeEncrypted<'a> {}

    impl<'a> Sealed for Signed<'a> {}
    impl<'a> Sealed for NotSigned<'a> {}
    impl<'a> Sealed for MaybeSigned<'a> {}
}

pub(crate) mod private {
    use super::*;

    /// Trait implemented by marker types specifying the encryption state of a
    /// GBL.
    ///
    /// This is an internal trait that should not be publicly reachable.
    pub trait EncryptionState<'a>: sealed::Sealed {
        /// The `Self` type, but with all lifetime parameters set to `'static`.
        type StaticSelf: EncryptionState<'static> + 'static;

        fn into_owned(self) -> Self::StaticSelf;
        fn clone(&'a self) -> Self;

        fn into_either(self) -> Either<Encrypted<'a>, NotEncrypted<'a>>;
        fn as_either_ref(&self) -> Either<&Encrypted<'a>, &NotEncrypted<'a>>;
    }

    /// Trait implemented by marker types specifying the signature state of a
    /// GBL.
    ///
    /// This is an internal trait that should not be publicly reachable.
    pub trait SignatureState<'a>: sealed::Sealed {
        /// The `Self` type, but with all lifetime parameters set to `'static`.
        type StaticSelf: SignatureState<'static> + 'static;

        fn into_owned(self) -> Self::StaticSelf;
        fn clone(&'a self) -> Self;

        fn as_either_ref(&self) -> Either<&Signed<'a>, &NotSigned<'a>>;
    }
}

/// The GBL is encrypted.
#[derive(Debug)]
pub struct Encrypted<'a> {
    pub(crate) enc_header: EncryptionHeader,
    pub(crate) enc_sections: Vec<Blob<Cow<'a, [u8]>>>,
}

/// The GBL is not encrypted.
#[derive(Debug)]
pub struct NotEncrypted<'a> {
    pub(crate) app_info: AppInfo,
    pub(crate) sections: Vec<ProgramData<'a>>,
}

/// The GBL may or may not be encrypted.
pub struct MaybeEncrypted<'a> {
    pub(crate) inner: Either<Encrypted<'a>, NotEncrypted<'a>>,
}

impl<'a> EncryptionState<'a> for Encrypted<'a> {
    type StaticSelf = Encrypted<'static>;

    fn into_owned(self) -> Self::StaticSelf {
        Encrypted {
            enc_header: self.enc_header,
            enc_sections: self
                .enc_sections
                .into_iter()
                .map(|section| Blob(section.0.into_owned().into()))
                .collect(),
        }
    }

    fn clone(&'a self) -> Self {
        Self {
            enc_header: self.enc_header,
            enc_sections: self
                .enc_sections
                .iter()
                .map(|section| Blob(Cow::Borrowed(&**section)))
                .collect(),
        }
    }

    fn into_either(self) -> Either<Encrypted<'a>, NotEncrypted<'a>> {
        Either::Left(self)
    }

    fn as_either_ref(&self) -> Either<&Encrypted<'a>, &NotEncrypted<'a>> {
        Either::Left(self)
    }
}

impl<'a> EncryptionState<'a> for NotEncrypted<'a> {
    type StaticSelf = NotEncrypted<'static>;

    fn into_owned(self) -> Self::StaticSelf {
        NotEncrypted {
            app_info: self.app_info,
            sections: self
                .sections
                .into_iter()
                .map(|section| section.into_owned())
                .collect(),
        }
    }

    fn clone(&'a self) -> Self {
        Self {
            app_info: self.app_info,
            sections: self.sections.iter().map(ProgramData::clone).collect(),
        }
    }

    fn into_either(self) -> Either<Encrypted<'a>, NotEncrypted<'a>> {
        Either::Right(self)
    }

    fn as_either_ref(&self) -> Either<&Encrypted<'a>, &NotEncrypted<'a>> {
        Either::Right(self)
    }
}

impl<'a> EncryptionState<'a> for MaybeEncrypted<'a> {
    type StaticSelf = MaybeEncrypted<'static>;

    fn into_owned(self) -> Self::StaticSelf {
        MaybeEncrypted {
            inner: self.inner.either(
                |enc| Either::Left(enc.into_owned()),
                |not_enc| Either::Right(not_enc.into_owned()),
            ),
        }
    }

    fn clone(&'a self) -> Self {
        Self {
            inner: self
                .inner
                .as_ref()
                .map_left(Encrypted::clone)
                .map_right(NotEncrypted::clone),
        }
    }

    fn into_either(self) -> Either<Encrypted<'a>, NotEncrypted<'a>> {
        self.inner
    }

    fn as_either_ref(&self) -> Either<&Encrypted<'a>, &NotEncrypted<'a>> {
        self.inner.as_ref()
    }
}

impl<'a> fmt::Debug for MaybeEncrypted<'a> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match &self.inner {
            Either::Left(l) => l.fmt(f),
            Either::Right(r) => r.fmt(f),
        }
    }
}

/// The GBL is signed with an ECDSA signature.
#[derive(Debug)]
pub struct Signed<'a> {
    pub(crate) signature: Signature<'a>,
}

/// The GBL is not signed.
pub struct NotSigned<'a> {
    pub(crate) _p: PhantomData<&'a ()>,
}
impl<'a> NotSigned<'a> {
    pub(crate) fn new() -> Self {
        Self { _p: PhantomData }
    }
}

/// The GBL may or may not contain a signature.
pub struct MaybeSigned<'a> {
    pub(crate) inner: Either<Signed<'a>, NotSigned<'a>>,
}

impl<'a> SignatureState<'a> for Signed<'a> {
    type StaticSelf = Signed<'static>;

    fn into_owned(self) -> Self::StaticSelf {
        Signed {
            signature: self.signature.into_owned(),
        }
    }

    fn clone(&'a self) -> Self {
        Self {
            signature: self.signature.clone(),
        }
    }

    fn as_either_ref(&self) -> Either<&Signed<'a>, &NotSigned<'a>> {
        Either::Left(self)
    }
}
impl<'a> SignatureState<'a> for NotSigned<'a> {
    type StaticSelf = NotSigned<'static>;

    fn into_owned(self) -> Self::StaticSelf {
        NotSigned::new()
    }

    fn clone(&'a self) -> Self {
        NotSigned::new()
    }

    fn as_either_ref(&self) -> Either<&Signed<'a>, &NotSigned<'a>> {
        Either::Right(self)
    }
}
impl<'a> SignatureState<'a> for MaybeSigned<'a> {
    type StaticSelf = MaybeSigned<'static>;

    fn into_owned(self) -> Self::StaticSelf {
        MaybeSigned {
            inner: self
                .inner
                .map_left(Signed::into_owned)
                .map_right(NotSigned::into_owned),
        }
    }

    fn clone(&'a self) -> Self {
        Self {
            inner: self
                .inner
                .as_ref()
                .map_left(Signed::clone)
                .map_right(NotSigned::clone),
        }
    }

    fn as_either_ref(&self) -> Either<&Signed<'a>, &NotSigned<'a>> {
        self.inner.as_ref()
    }
}

impl<'a> fmt::Debug for NotSigned<'a> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("NotSigned")
    }
}

impl<'a> fmt::Debug for MaybeSigned<'a> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match &self.inner {
            Either::Left(l) => l.fmt(f),
            Either::Right(r) => r.fmt(f),
        }
    }
}