willow25 0.5.0-alpha.1

A ready-to-use implementation of the Willow specifications.
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
use core::fmt;

#[cfg(feature = "dev")]
use arbitrary::Arbitrary;

use meadowcap::DoesNotAuthorise;

use ufotofu::codec::{Blame, Decodable, DecodeError, Encodable};
use ufotofu::codec_relative::{RelativeDecodable, RelativeEncodable};
use willow_data_model::prelude as wdm;

use crate::prelude::*;

wrapper! {
    /// An [authorisation token](https://willowprotocol.org/specs/data-model/index.html#AuthorisationToken), cryptographically certifying that an entry was created by somebody who had the permission to do so.
    ///
    /// #### Examples
    ///
    /// Authorising an entry of your own:
    ///
    /// ```
    /// use rand::rngs::OsRng;
    /// use willow25::prelude::*;
    /// use willow25::authorisation::raw::*;
    ///
    /// # #[cfg(feature = "dev")] {
    /// let mut csprng = OsRng;
    /// let (subspace_id, secret) = randomly_generate_subspace(&mut csprng);
    /// let namespace_id = NamespaceId::from_bytes(&[17; 32]);
    ///
    /// let my_entry = Entry::builder()
    ///     .namespace_id(namespace_id.clone())
    ///     .subspace_id(subspace_id.clone())
    ///     .path(path!("/ideas"))
    ///     .timestamp(12345)
    ///     .payload(b"chocolate with mustard")
    ///     .build();
    ///
    /// let mut cap = WriteCapability::new_communal(
    ///     namespace_id.clone(),
    ///     subspace_id.clone(),
    /// );
    ///
    /// let auth_token = AuthorisationToken::new_for_entry(&my_entry, &cap, &secret).unwrap();
    ///
    /// assert!(auth_token.does_authorise(&my_entry));
    /// # }
    /// ```
    ///
    /// Verifying an untrusted entry, creating the authorisation token from raw parts, which fails if those parts are invalid:
    ///
    /// ```
    /// use rand::rngs::OsRng;
    /// use willow25::prelude::*;
    /// use willow25::authorisation::raw::*;
    ///
    /// # #[cfg(feature = "dev")] {
    /// let mut csprng = OsRng;
    /// let (subspace_id, secret) = randomly_generate_subspace(&mut csprng);
    /// let namespace_id = NamespaceId::from_bytes(&[17; 32]);
    ///
    /// let my_entry = Entry::builder()
    ///     .namespace_id(namespace_id.clone())
    ///     .subspace_id(subspace_id.clone())
    ///     .path(path!("/ideas"))
    ///     .timestamp(12345)
    ///     .payload(b"chocolate with mustard")
    ///     .build();
    ///
    /// let mut cap = WriteCapability::new_communal(
    ///     namespace_id.clone(),
    ///     subspace_id.clone(),
    /// );
    ///
    /// let auth_token = AuthorisationToken::new(
    ///     cap,
    ///     SubspaceSignature::from([18; 64]), // Invalid signature, verification will fail.
    /// );
    ///
    /// assert!(!auth_token.does_authorise(&my_entry));
    /// # }
    /// ```
    #[derive(PartialEq, Eq, Clone)]
    #[cfg_attr(feature = "dev", derive(Arbitrary))]
    AuthorisationToken; meadowcap::McAuthorisationToken<MCL, MCC, MPL, NamespaceId, NamespaceSignature, SubspaceId, SubspaceSignature, SubspaceSecret>
}

impl fmt::Debug for AuthorisationToken {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.0.fmt(f)
    }
}

impl AuthorisationToken {
    /// Manually creates a new [`AuthorisationToken`] from a write capability and a signature (as opposed to using [`AuthorisationToken::new_for_entry`](AuthorisationToken::new_for_entry) to create the correct signature yourself).
    ///
    /// ```
    /// use rand::rngs::OsRng;
    /// use willow25::prelude::*;
    /// use willow25::authorisation::raw::*;
    ///
    /// # #[cfg(feature = "dev")] {
    /// let mut csprng = OsRng;
    /// let (subspace_id, secret) = randomly_generate_subspace(&mut csprng);
    /// let namespace_id = NamespaceId::from_bytes(&[17; 32]);
    ///
    /// let my_entry = Entry::builder()
    ///     .namespace_id(namespace_id.clone())
    ///     .subspace_id(subspace_id.clone())
    ///     .path(path!("/ideas"))
    ///     .timestamp(12345)
    ///     .payload(b"chocolate with mustard")
    ///     .build();
    ///
    /// let mut cap = WriteCapability::new_communal(
    ///     namespace_id.clone(),
    ///     subspace_id.clone(),
    /// );
    ///
    /// let auth_token = AuthorisationToken::new(
    ///     cap,
    ///     SubspaceSignature::from([18; 64]), // Invalid signature, verification will fail.
    /// );
    ///
    /// assert!(!auth_token.does_authorise(&my_entry));
    /// # }
    /// ```
    pub fn new(capability: WriteCapability, signature: SubspaceSignature) -> Self {
        meadowcap::McAuthorisationToken::new(capability.into(), signature).into()
    }

    /// Returns a reference to the write capability.
    pub fn capability(&self) -> &WriteCapability {
        self.0.capability().into()
    }

    /// Returns a reference to the signature.
    pub fn signature(&self) -> &SubspaceSignature {
        self.0.signature()
    }

    /// Takes ownership of the authorisation token and returns its capability and signature by value.
    pub fn into_parts(self) -> (WriteCapability, SubspaceSignature) {
        let (cap, sig) = self.0.into_parts();
        (cap.into(), sig)
    }

    /// Creates an authorisation token for a given entry and capability by computing the correct signature from the given secret.
    ///
    /// Returns an error if the capability does not grant write access to the entry being authorised.
    ///
    /// ```
    /// use rand::rngs::OsRng;
    /// use willow25::prelude::*;
    /// use willow25::authorisation::raw::*;
    ///
    /// # #[cfg(feature = "dev")] {
    /// let mut csprng = OsRng;
    /// let (subspace_id, secret) = randomly_generate_subspace(&mut csprng);
    /// let namespace_id = NamespaceId::from_bytes(&[17; 32]);
    ///
    /// let my_entry = Entry::builder()
    ///     .namespace_id(namespace_id.clone())
    ///     .subspace_id(subspace_id.clone())
    ///     .path(path!("/ideas"))
    ///     .timestamp(12345)
    ///     .payload(b"chocolate with mustard")
    ///     .build();
    ///
    /// let mut cap = WriteCapability::new_communal(
    ///     namespace_id.clone(),
    ///     subspace_id.clone(),
    /// );
    ///
    /// let auth_token = AuthorisationToken::new_for_entry(&my_entry, &cap, &secret).unwrap();
    ///
    /// assert!(auth_token.does_authorise(&my_entry));
    /// # }
    /// ```
    pub fn new_for_entry<E>(
        entry: &E,
        write_capability: &WriteCapability,
        secret: &SubspaceSecret,
    ) -> Result<Self, DoesNotAuthorise>
    where
        E: EntrylikeExt + ?Sized,
    {
        match McIngredients::new(write_capability.clone(), secret.clone()) {
            Some(ingredients) => wdm::AuthorisationToken::<
                MCL,
                MCC,
                MPL,
                NamespaceId,
                SubspaceId,
                PayloadDigest,
            >::new_for_entry(entry, &ingredients),
            None => Err(DoesNotAuthorise),
        }
    }

    /// Return `true` iff `self` is a valid authorisation token for the given entry.
    ///
    /// ```
    /// use rand::rngs::OsRng;
    /// use willow25::prelude::*;
    /// use willow25::authorisation::raw::*;
    ///
    /// # #[cfg(feature = "dev")] {
    /// let mut csprng = OsRng;
    /// let (subspace_id, secret) = randomly_generate_subspace(&mut csprng);
    /// let namespace_id = NamespaceId::from_bytes(&[17; 32]);
    ///
    /// let my_entry = Entry::builder()
    ///     .namespace_id(namespace_id.clone())
    ///     .subspace_id(subspace_id.clone())
    ///     .path(path!("/ideas"))
    ///     .timestamp(12345)
    ///     .payload(b"chocolate with mustard")
    ///     .build();
    ///
    /// let mut cap = WriteCapability::new_communal(
    ///     namespace_id.clone(),
    ///     subspace_id.clone(),
    /// );
    ///
    /// let auth_token = AuthorisationToken::new_for_entry(&my_entry, &cap, &secret).unwrap();
    ///
    /// assert!(auth_token.does_authorise(&my_entry));
    /// # }
    /// ```
    pub fn does_authorise<E>(&self, entry: &E) -> bool
    where
        E: wdm::EntrylikeExt<MCL, MCC, MPL, NamespaceId, SubspaceId, PayloadDigest> + ?Sized,
    {
        wdm::AuthorisationToken::<MCL, MCC, MPL, NamespaceId, SubspaceId, PayloadDigest>::does_authorise(&self.0, entry)
    }
}

/// You only need this trait impl if you work with fully generic code from the [`willow_data_model`] crate.
impl wdm::AuthorisationToken<MCL, MCC, MPL, NamespaceId, SubspaceId, PayloadDigest>
    for AuthorisationToken
{
    type Ingredients = McIngredients;

    type CreationError = DoesNotAuthorise;

    fn new_for_entry<E>(
        entry: &E,
        ingredients: &Self::Ingredients,
    ) -> Result<Self, Self::CreationError>
    where
        E: wdm::EntrylikeExt<MCL, MCC, MPL, NamespaceId, SubspaceId, PayloadDigest> + ?Sized,
    {
        meadowcap::McAuthorisationToken::<
            MCL,
            MCC,
            MPL,
            NamespaceId,
            NamespaceSignature,
            SubspaceId,
            SubspaceSignature,
            SubspaceSecret,
        >::new_for_entry(entry, ingredients.into())
        .map(Into::into)
    }

    fn does_authorise<E>(&self, entry: &E) -> bool
    where
        E: wdm::EntrylikeExt<MCL, MCC, MPL, NamespaceId, SubspaceId, PayloadDigest> + ?Sized,
    {
        self.0.does_authorise(entry)
    }
}

wrapper! {
    /// Only needed if you work with fully generic code from the [`willow_data_model`] crate; the ingredients for the [`willow_data_model::authorisation::AuthorisationToken`] impl of [`AuthorisationToken`].
    #[derive(PartialEq, Eq, Clone)]
    McIngredients; meadowcap::McIngredients<MCL, MCC, MPL, NamespaceId, NamespaceSignature, SubspaceId, SubspaceSignature, SubspaceSecret>
}

impl fmt::Debug for McIngredients {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.0.fmt(f)
    }
}

impl McIngredients {
    /// Returns a reference to the write capability.
    pub fn capability(&self) -> &WriteCapability {
        self.0.capability().into()
    }

    /// Returns a reference to the keypair.
    pub fn keypair(&self) -> &SubspaceSecret {
        self.0.keypair()
    }

    /// Takes ownership of the ingredients and returns the capability and keypair by value.
    pub fn into_parts(self) -> (WriteCapability, SubspaceSecret) {
        let (cap, secret) = self.0.into_parts();
        (cap.into(), secret)
    }

    /// Creates new [`McIngredients`], returning `None` if the keypair does not match the receiver of the capability.
    ///
    /// ```
    /// use rand::rngs::OsRng;
    /// use willow25::prelude::*;
    /// use willow25::authorisation::McIngredients;
    ///
    /// # #[cfg(feature = "dev")] {
    /// let mut csprng = OsRng;
    /// let (subspace_id, secret) = randomly_generate_subspace(&mut csprng);
    /// let (_subspace_id2, secret2) = randomly_generate_subspace(&mut csprng);
    /// let namespace_id = NamespaceId::from_bytes(&[17; 32]);
    ///
    /// let mut cap = WriteCapability::new_communal(
    ///     namespace_id.clone(),
    ///     subspace_id.clone(),
    /// );
    ///
    /// assert!(McIngredients::new(cap.clone(), secret).is_some());
    /// assert!(McIngredients::new(cap.clone(), secret2).is_none());
    /// # }
    /// ```
    pub fn new(capability: WriteCapability, secret: SubspaceSecret) -> Option<Self> {
        meadowcap::McIngredients::<
            MCL,
            MCC,
            MPL,
            NamespaceId,
            NamespaceSignature,
            SubspaceId,
            SubspaceSignature,
            SubspaceSecret,
        >::new(capability.into(), secret)
        .map(Into::into)
    }
}

// The below version of PriorAuthedEntryEntryPair does *not* use the wrapper! macro, and is instead implemented from scratch.
// Similarly, the RelativeEncodable and RelativeDecodable implementations are also duplicated from meadowcap/src/mc_authorisation_token.rs.
// This is to avoid incompatibilities of our wrapper types and use of their internal types with the rust compiler.

/// A pair of a prior [`AuthorisedEntry`] and [`Entry`], used to encoded and decode [`McAuthorisationToken`]s privately.
/// 
/// [`McAuthorisationToken`]: meadowcap::McAuthorisationToken
#[derive(PartialEq, Clone, Debug)]
#[cfg_attr(feature = "dev", derive(Arbitrary))]
pub struct PriorAuthedEntryEntryPair {
    /// The previous [`AuthorisedEntry`] which was decoded.
    prior_authed_entry: AuthorisedEntry,
    /// An entry included by the [`WriteCapability`] being privately encoded against.
    entry: Entry,
}

impl PriorAuthedEntryEntryPair {
    /// Returns a new [`PriorAuthedEntryEntryPair`] with the given `prior_authed_entry` and `entry`.
    pub fn new(prior_authed_entry: AuthorisedEntry, entry: Entry) -> Self {
        Self {
            prior_authed_entry,
            entry,
        }
    }

    /// Returns the previous [`AuthorisedEntry`] which was decoded against.
    pub fn prior_authed_entry(&self) -> &AuthorisedEntry {
        &self.prior_authed_entry
    }

    /// Returns the entry included by the [`WriteCapability`] being privately encoded against.
    pub fn entry(&self) -> &Entry {
        &self.entry
    }
}

/// Implements relative encoding according to the [EncodeMeadowcapAuthorisationTokenRelative](https://willowprotocol.org/specs/encodings/index.html#encsec_EncodeMeadowcapAuthorisationTokenRelative) encoding function.
impl RelativeEncodable<PriorAuthedEntryEntryPair> for AuthorisationToken {
    async fn relative_encode<C>(
        &self,
        rel: &PriorAuthedEntryEntryPair,
        consumer: &mut C,
    ) -> Result<(), C::Error>
    where
        C: ufotofu::BulkConsumer<Item = u8> + ?Sized,
    {
        let prev = &rel.prior_authed_entry;
        let entry = &rel.entry;

        let pair = crate::authorisation::PriorCapEntryPair::new(
            prev.authorisation_token().capability().clone(),
            entry.clone(),
        );

        self.capability().relative_encode(&pair, consumer).await?;
        self.signature().encode(consumer).await?;

        Ok(())
    }

    /// Returns false if the relative entry's namespace is not `self`'s [granted area](https://willowprotocol.org/specs/meadowcap/index.html#communal_cap_granted_namespace), or if the relative entry is not included by `self`'s [granted area](https://willowprotocol.org/specs/meadowcap/index.html#communal_cap_granted_area).
    fn can_be_encoded_relative_to(&self, rel: &PriorAuthedEntryEntryPair) -> bool {
        self.capability().granted_namespace() == rel.entry.namespace_id()
            && self.capability().granted_area().includes(&rel.entry)
    }
}

/// Implements relative decoding according to the [EncodeMeadowcapAuthorisationTokenRelative](https://willowprotocol.org/specs/encodings/index.html#encsec_EncodeMeadowcapAuthorisationTokenRelative) encoding function.
impl RelativeDecodable<PriorAuthedEntryEntryPair> for AuthorisationToken {
    type ErrorReason = Blame;

    async fn relative_decode<P>(
        rel: &PriorAuthedEntryEntryPair,
        producer: &mut P,
    ) -> Result<Self, ufotofu::codec::DecodeError<P::Final, P::Error, Self::ErrorReason>>
    where
        P: ufotofu::BulkProducer<Item = u8> + ?Sized,
        Self: Sized,
    {
        let prev = &rel.prior_authed_entry;
        let entry = &rel.entry;

        let pair = crate::authorisation::PriorCapEntryPair::new(
            prev.authorisation_token().capability().clone(),
            entry.clone(),
        );

        let write_cap = WriteCapability::relative_decode(&pair, producer).await?;
        let signature = SubspaceSignature::decode(producer)
            .await
            .map_err(|_| DecodeError::Other(Blame::TheirFault))?;

        Ok(Self::new(write_cap, signature))
    }
}