trussed 0.2.0

Modern Cryptographic Firmware
Documentation
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
// Example displaying and testing multiple backends and extensions:
//
// Extensions (in module `extensions`):
// - the TestExtension has a "reverse" method (and "calls")
// - the SampleExtension has a "truncate" method (and "calls")
//
// These extensions also define extension traits of ExtensionClient,
// giving methods with useful names to call the extensions.
//
// Backends (in module `backend`):
// - the TestBackend implements the TestExtension
// - the SampleBackend implements both the TestExtension and the SampleExtension
//
// The extensions might be defined in individual crates,
// as could the backends (depending on their respective extension dependencies).
//
// It is then the responsibility of a "runner" to
// - define the Backend and Extension ID types (enums corresponding to a set of u8)
// - define a struct containing the included custom backends (called `Backends` below),
// - implementing ExtensionDispatch for this Backends struct.
//
// This latter implementation is currently a little verbose, and might be lifted into
// the serde_extensions module.
//
// We could also devise of a custom Map type for such backend compositions.

use trussed::{
    backend::BackendId,
    virt::{self, StoreConfig},
};
use trussed_core::{syscall, try_syscall, types::ShortData};

use runner::Backends;

type Client<'a> = virt::Client<'a, Backends>;

mod extensions {
    use serde::{Deserialize, Serialize};
    use trussed_core::{
        serde_extensions::{Extension, ExtensionClient, ExtensionResult},
        types::ShortData,
        Error,
    };

    pub struct TestExtension;

    impl Extension for TestExtension {
        type Request = TestRequest;
        type Reply = TestReply;
    }

    #[derive(Deserialize, Serialize)]
    pub enum TestRequest {
        GetCalls(GetCallsRequest),
        Reverse(ReverseRequest),
    }

    #[derive(Deserialize, Serialize)]
    pub struct GetCallsRequest;

    impl From<GetCallsRequest> for TestRequest {
        fn from(request: GetCallsRequest) -> Self {
            Self::GetCalls(request)
        }
    }

    #[derive(Deserialize, Serialize)]
    pub struct ReverseRequest {
        pub s: ShortData,
    }

    impl From<ReverseRequest> for TestRequest {
        fn from(request: ReverseRequest) -> Self {
            Self::Reverse(request)
        }
    }

    #[derive(Deserialize, Serialize)]
    pub enum TestReply {
        GetCalls(GetCallsReply),
        Reverse(ReverseReply),
    }

    #[derive(Deserialize, Serialize)]
    pub struct GetCallsReply {
        pub calls: u64,
    }

    impl TryFrom<TestReply> for GetCallsReply {
        type Error = Error;

        fn try_from(reply: TestReply) -> Result<Self, Self::Error> {
            match reply {
                TestReply::GetCalls(reply) => Ok(reply),
                _ => Err(Error::InternalError),
            }
        }
    }

    #[derive(Deserialize, Serialize)]
    pub struct ReverseReply {
        pub s: ShortData,
    }

    impl TryFrom<TestReply> for ReverseReply {
        type Error = Error;

        fn try_from(reply: TestReply) -> Result<Self, Self::Error> {
            match reply {
                TestReply::Reverse(reply) => Ok(reply),
                _ => Err(Error::InternalError),
            }
        }
    }

    pub trait TestClient: ExtensionClient<TestExtension> {
        fn test_calls(&mut self) -> ExtensionResult<'_, TestExtension, GetCallsReply, Self> {
            self.extension(GetCallsRequest)
        }

        fn reverse(
            &mut self,
            s: ShortData,
        ) -> ExtensionResult<'_, TestExtension, ReverseReply, Self> {
            self.extension(ReverseRequest { s })
        }
    }

    impl<C: ExtensionClient<TestExtension>> TestClient for C {}

    pub struct SampleExtension;

    impl Extension for SampleExtension {
        type Request = SampleRequest;
        type Reply = SampleReply;
    }

    #[derive(Deserialize, Serialize)]
    pub enum SampleRequest {
        GetCalls(GetCallsRequest),
        Truncate(TruncateRequest),
    }

    impl From<GetCallsRequest> for SampleRequest {
        fn from(request: GetCallsRequest) -> Self {
            Self::GetCalls(request)
        }
    }

    #[derive(Deserialize, Serialize)]
    pub struct TruncateRequest {
        pub s: ShortData,
    }

    impl From<TruncateRequest> for SampleRequest {
        fn from(request: TruncateRequest) -> Self {
            Self::Truncate(request)
        }
    }

    #[derive(Deserialize, Serialize)]
    pub enum SampleReply {
        GetCalls(GetCallsReply),
        Truncate(TruncateReply),
    }

    impl TryFrom<SampleReply> for GetCallsReply {
        type Error = Error;

        fn try_from(reply: SampleReply) -> Result<Self, Self::Error> {
            match reply {
                SampleReply::GetCalls(reply) => Ok(reply),
                _ => Err(Error::InternalError),
            }
        }
    }

    #[derive(Deserialize, Serialize)]
    pub struct TruncateReply {
        pub s: ShortData,
    }

    impl TryFrom<SampleReply> for TruncateReply {
        type Error = Error;

        fn try_from(reply: SampleReply) -> Result<Self, Self::Error> {
            match reply {
                SampleReply::Truncate(reply) => Ok(reply),
                _ => Err(Error::InternalError),
            }
        }
    }

    pub trait SampleClient: ExtensionClient<SampleExtension> {
        fn sample_calls(&mut self) -> ExtensionResult<'_, SampleExtension, GetCallsReply, Self> {
            self.extension(GetCallsRequest)
        }

        fn truncate(
            &mut self,
            s: ShortData,
        ) -> ExtensionResult<'_, SampleExtension, TruncateReply, Self> {
            self.extension(TruncateRequest { s })
        }
    }

    impl<C: ExtensionClient<SampleExtension>> SampleClient for C {}
}

mod backends {
    use super::extensions::{
        GetCallsReply, ReverseReply, SampleExtension, SampleReply, SampleRequest, TestExtension,
        TestReply, TestRequest, TruncateReply,
    };

    use trussed::{
        backend::Backend, platform::Platform, serde_extensions::ExtensionImpl,
        service::ServiceResources, types::CoreContext,
    };
    use trussed_core::{types::ShortData, Error};

    #[derive(Default)]
    pub struct TestContext {
        calls: u64,
    }

    #[derive(Default)]
    /// Implements TestExtension
    pub struct TestBackend;

    impl Backend for TestBackend {
        type Context = TestContext;
    }

    impl ExtensionImpl<TestExtension> for TestBackend {
        fn extension_request<P: Platform>(
            &mut self,
            _core_ctx: &mut CoreContext,
            backend_ctx: &mut TestContext,
            request: &TestRequest,
            _resources: &mut ServiceResources<P>,
        ) -> Result<TestReply, Error> {
            match request {
                TestRequest::GetCalls(_) => Ok(TestReply::GetCalls(GetCallsReply {
                    calls: backend_ctx.calls,
                })),
                TestRequest::Reverse(request) => {
                    backend_ctx.calls += 1;
                    let mut s = ShortData::new();
                    for byte in request.s.iter().rev() {
                        s.push(*byte).unwrap();
                    }
                    Ok(TestReply::Reverse(ReverseReply { s }))
                }
            }
        }
    }

    #[derive(Default)]
    pub struct SampleContext {
        calls: u64,
    }

    #[derive(Default)]
    /// Implements SampleExtension and TestExtension
    pub struct SampleBackend;

    impl Backend for SampleBackend {
        type Context = SampleContext;
    }

    impl ExtensionImpl<SampleExtension> for SampleBackend {
        fn extension_request<P: Platform>(
            &mut self,
            _core_ctx: &mut CoreContext,
            backend_ctx: &mut SampleContext,
            request: &SampleRequest,
            _resources: &mut ServiceResources<P>,
        ) -> Result<SampleReply, Error> {
            match request {
                SampleRequest::GetCalls(_) => Ok(SampleReply::GetCalls(GetCallsReply {
                    calls: backend_ctx.calls,
                })),
                SampleRequest::Truncate(request) => {
                    backend_ctx.calls += 1;
                    let mut s = ShortData::new();
                    for byte in request.s.iter().take(3) {
                        s.push(*byte).unwrap();
                    }
                    Ok(SampleReply::Truncate(TruncateReply { s }))
                }
            }
        }
    }

    impl ExtensionImpl<TestExtension> for SampleBackend {
        fn extension_request<P: Platform>(
            &mut self,
            _core_ctx: &mut CoreContext,
            backend_ctx: &mut SampleContext,
            request: &TestRequest,
            _resources: &mut ServiceResources<P>,
        ) -> Result<TestReply, Error> {
            match request {
                TestRequest::GetCalls(_) => Ok(TestReply::GetCalls(GetCallsReply {
                    calls: backend_ctx.calls,
                })),
                TestRequest::Reverse(request) => {
                    backend_ctx.calls += 1;
                    let mut s = ShortData::new();
                    for byte in request.s.iter().rev() {
                        s.push(*byte).unwrap();
                    }
                    Ok(TestReply::Reverse(ReverseReply { s }))
                }
            }
        }
    }
}

mod runner {
    use super::{
        backends::{SampleBackend, TestBackend},
        extensions::{SampleExtension, TestExtension},
    };

    pub mod id {
        pub enum Backend {
            Test,
            Sample,
        }

        #[derive(trussed_derive::ExtensionId)]
        pub enum Extension {
            Test = 37,
            Sample = 42,
        }
    }

    use trussed::backend::BackendId;
    use trussed_derive::ExtensionDispatch;

    #[derive(Default, ExtensionDispatch)]
    #[dispatch(backend_id = "id::Backend", extension_id = "id::Extension")]
    #[extensions(Test = "TestExtension", Sample = "SampleExtension")]
    pub struct Backends {
        #[extensions("Test")]
        test: TestBackend,
        #[extensions("Test", "Sample")]
        sample: SampleBackend,
    }

    pub const BACKENDS_TEST1: &[BackendId<id::Backend>] =
        &[BackendId::Custom(id::Backend::Test), BackendId::Core];
    pub const BACKENDS_TEST2: &[BackendId<id::Backend>] =
        &[BackendId::Core, BackendId::Custom(id::Backend::Test)];

    pub const BACKENDS_SAMPLE1: &[BackendId<id::Backend>] =
        &[BackendId::Custom(id::Backend::Sample), BackendId::Core];
    pub const BACKENDS_SAMPLE2: &[BackendId<id::Backend>] =
        &[BackendId::Core, BackendId::Custom(id::Backend::Sample)];

    pub const BACKENDS_MIXED: &[BackendId<id::Backend>] = &[
        BackendId::Custom(id::Backend::Test),
        BackendId::Custom(id::Backend::Sample),
    ];
}

pub fn run<F: FnOnce(&mut Client<'_>)>(backends: &'static [BackendId<runner::id::Backend>], f: F) {
    virt::with_platform(StoreConfig::ram(), |platform| {
        platform.run_client_with_backends(
            "test",
            runner::Backends::default(),
            backends,
            |mut client| f(&mut client),
        )
    })
}

#[test]
fn test_extension() {
    use extensions::TestClient as _;

    let msg = ShortData::from(&[0x01, 0x02, 0x03]);
    let rev = ShortData::from(&[0x03, 0x02, 0x01]);
    run(&[], |client| {
        assert!(try_syscall!(client.reverse(msg.clone())).is_err());
    });
    run(runner::BACKENDS_TEST1, |client| {
        assert_eq!(syscall!(client.test_calls()).calls, 0);
        assert_eq!(syscall!(client.reverse(msg.clone())).s, rev);
        assert_eq!(syscall!(client.test_calls()).calls, 1);
        assert_eq!(syscall!(client.test_calls()).calls, 1);
        assert_eq!(syscall!(client.reverse(msg.clone())).s, rev);
        assert_eq!(syscall!(client.test_calls()).calls, 2);
    });
    run(runner::BACKENDS_TEST2, |client| {
        assert_eq!(syscall!(client.test_calls()).calls, 0);
        assert_eq!(syscall!(client.reverse(msg.clone())).s, rev);
        assert_eq!(syscall!(client.test_calls()).calls, 1);
    });
}

#[test]
fn sample_extension() {
    use extensions::SampleClient as _;
    use extensions::TestClient as _;

    let msg = ShortData::from(&[1, 2, 3, 4]);
    let rev = ShortData::from(&[4, 3, 2, 1]);
    let trunc = ShortData::from(&[1, 2, 3]);
    run(&[], |client| {
        assert!(try_syscall!(client.truncate(msg.clone())).is_err());
    });
    run(runner::BACKENDS_SAMPLE1, |client| {
        assert_eq!(syscall!(client.sample_calls()).calls, 0);
        assert_eq!(syscall!(client.test_calls()).calls, 0);
        assert_eq!(syscall!(client.reverse(msg.clone())).s, rev);
        assert_eq!(syscall!(client.truncate(msg.clone())).s, trunc);
        // the sample backend has but one context that is shared for its
        // implementation of the extensions, so the calls increment together.
        assert_eq!(syscall!(client.sample_calls()).calls, 2);
        assert_eq!(syscall!(client.test_calls()).calls, 2);
        assert_eq!(syscall!(client.sample_calls()).calls, 2);
        assert_eq!(syscall!(client.truncate(msg.clone())).s, trunc);
        assert_eq!(syscall!(client.sample_calls()).calls, 3);
    });
    run(runner::BACKENDS_SAMPLE2, |client| {
        assert_eq!(syscall!(client.sample_calls()).calls, 0);
        assert_eq!(syscall!(client.truncate(msg.clone())).s, trunc);
        assert_eq!(syscall!(client.sample_calls()).calls, 1);
    });
}

#[test]
fn mixed_extension() {
    use extensions::SampleClient as _;
    use extensions::TestClient as _;

    let msg = ShortData::from(&[1, 2, 3, 4]);
    let rev = ShortData::from(&[4, 3, 2, 1]);
    let trunc = ShortData::from(&[1, 2, 3]);
    run(runner::BACKENDS_MIXED, |client| {
        assert_eq!(syscall!(client.sample_calls()).calls, 0);
        assert_eq!(syscall!(client.test_calls()).calls, 0);
        assert_eq!(syscall!(client.reverse(msg.clone())).s, rev);
        assert_eq!(syscall!(client.truncate(msg.clone())).s, trunc);
        // the test backend is placed before the sample backend here,
        // and so it "catches" the reverse call, leading to single incrementations
        // of each call counter.
        assert_eq!(syscall!(client.sample_calls()).calls, 1);
        assert_eq!(syscall!(client.test_calls()).calls, 1);
        assert_eq!(syscall!(client.truncate(msg.clone())).s, trunc);
        assert_eq!(syscall!(client.sample_calls()).calls, 2);
    });
}