tor_checkable/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![doc = include_str!("../README.md")]
3// @@ begin lint list maintained by maint/add_warning @@
4#![allow(renamed_and_removed_lints)] // @@REMOVE_WHEN(ci_arti_stable)
5#![allow(unknown_lints)] // @@REMOVE_WHEN(ci_arti_nightly)
6#![warn(missing_docs)]
7#![warn(noop_method_call)]
8#![warn(unreachable_pub)]
9#![warn(clippy::all)]
10#![deny(clippy::await_holding_lock)]
11#![deny(clippy::cargo_common_metadata)]
12#![deny(clippy::cast_lossless)]
13#![deny(clippy::checked_conversions)]
14#![allow(clippy::cognitive_complexity)] // See arti#2556
15#![deny(clippy::debug_assert_with_mut_call)]
16#![deny(clippy::exhaustive_enums)]
17#![deny(clippy::exhaustive_structs)]
18#![deny(clippy::expl_impl_clone_on_copy)]
19#![deny(clippy::fallible_impl_from)]
20#![deny(clippy::implicit_clone)]
21#![deny(clippy::large_stack_arrays)]
22#![warn(clippy::manual_ok_or)]
23#![deny(clippy::missing_docs_in_private_items)]
24#![warn(clippy::needless_borrow)]
25#![warn(clippy::needless_pass_by_value)]
26#![warn(clippy::option_option)]
27#![deny(clippy::print_stderr)]
28#![deny(clippy::print_stdout)]
29#![warn(clippy::rc_buffer)]
30#![deny(clippy::ref_option_ref)]
31#![warn(clippy::semicolon_if_nothing_returned)]
32#![warn(clippy::trait_duplication_in_bounds)]
33#![deny(clippy::unchecked_time_subtraction)]
34#![deny(clippy::unnecessary_wraps)]
35#![warn(clippy::unseparated_literal_suffix)]
36#![deny(clippy::unwrap_used)]
37#![deny(clippy::mod_module_files)]
38#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
39#![allow(clippy::uninlined_format_args)]
40#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
41#![allow(clippy::result_large_err)] // temporary workaround for arti#587
42#![allow(clippy::needless_raw_string_hashes)] // complained-about code is fine, often best
43#![allow(clippy::needless_lifetimes)] // See arti#1765
44#![allow(mismatched_lifetime_syntaxes)] // temporary workaround for arti#2060
45#![allow(clippy::collapsible_if)] // See arti#2342
46#![deny(clippy::unused_async)]
47#![deny(clippy::string_slice)] // See arti#2571
48//! <!-- @@ end lint list maintained by maint/add_warning @@ -->
49
50use std::time::{self, Duration};
51use thiserror::Error;
52use web_time_compat::{SystemTime, SystemTimeExt};
53
54pub mod signed;
55pub mod timed;
56
57pub use timed::{TimeRange, TimeRangeBound, TimeRangeBoundBuilder};
58
59/// An error that can occur when checking whether a TimeBound object is
60/// currently valid.
61#[derive(Debug, Clone, Error, PartialEq, Eq)]
62#[non_exhaustive]
63pub enum TimeValidityError {
64 /// The object is not yet valid
65 #[error("Object will not be valid for {}", humantime::format_duration(*.0))]
66 NotYetValid(Duration),
67 /// The object is expired
68 #[error("Object has been expired for {}", humantime::format_duration(*.0))]
69 Expired(Duration),
70 /// The object isn't timely, and we don't know why, or won't say.
71 #[error("Object is not currently valid")]
72 Unspecified,
73}
74
75/// A `TimeBound` object is one that is only valid for a given range of time.
76///
77/// It's better to wrap things in a TimeBound than to give them an is_valid()
78/// valid method, so that you can make sure that nobody uses the object before
79/// checking it.
80///
81/// [`TimeBound`] implementations are required to be **inclusive** of the
82/// bounds when performing a verification. Mathematically speaking, this means
83/// that implementations must check whether `x ∊ [start; end]` but *not*
84/// `x ∊ (start; end)`.
85pub trait TimeBound: Sized {
86 /// The inner, wrapped type, which is being protected by this `TimeBound` implementation
87 type Inner;
88
89 /// Get the bounds, in the form of a `TimeRangeBound<()>`
90 ///
91 /// It is permissible for the start to be after the end.
92 /// In that case, it's simply never valid: either expired, or too soon, or both.
93 //
94 // We don't return an `impl RangeBounds` because an `impl RangeBounds` would seems to
95 // imply we support open (exclusive) ranges, which we don't.
96 // We don't actually need to be generic here; returning a concrete type which
97 // is just a pair of Option is fine.
98 fn bounds(&self) -> TimeRange;
99
100 /// Check whether this object is valid at a given time.
101 ///
102 /// Return Ok if the object is valid, and an error if the object is not.
103 ///
104 /// Generally, do not implement this method yourself:
105 /// the provided implementation (which uses `bounds`) will be correct.
106 //
107 // The actual implementation is the overridden impl on `TimeRangeBounds`.
108 fn check_valid_at(&self, t: &time::SystemTime) -> Result<(), TimeValidityError> {
109 // This calls the implemented for `TimeRangeBound`
110 self.bounds().check_valid_at(t)
111 }
112
113 /// Return the underlying object without checking whether it's valid.
114 fn dangerously_assume_timely(self) -> Self::Inner;
115
116 /// Unwrap this TimeBound object if it is valid at a given time.
117 fn if_valid_at(self, t: &time::SystemTime) -> Result<Self::Inner, TimeValidityError> {
118 self.check_valid_at(t)?;
119 Ok(self.dangerously_assume_timely())
120 }
121
122 /// Unwrap this TimeBound object if it is valid now.
123 fn if_valid_now(self) -> Result<Self::Inner, TimeValidityError> {
124 self.if_valid_at(&SystemTime::get())
125 }
126
127 /// Gain access to the `Inner`, handling the timeout with a `TimeRangeBoundBuilder`
128 ///
129 /// Unwraps `self`, giving access to `Self::Inner`.
130 /// Time time bounds are recorded in the `TimeRangeBoundBuilder`,
131 /// and will be applied to the `T` overall return value
132 /// from the `logic` closure supplied to [`TimeRangeBound::build_intersect`].
133 ///
134 /// Can only be called within the `logic` closure to `TimeRangeBound::build_intersect`.
135 ///
136 /// # CORRECTNESS
137 ///
138 /// Information from the `Inner` returned from `unwrap_with`
139 /// should only be used to help construct the return value from `logic`.
140 /// See [`TimeRangeBound::build_intersect`] for more details.
141 fn unwrap_with(self, builder: &mut TimeRangeBoundBuilder) -> Self::Inner {
142 builder.incorporate_unwrap(self)
143 }
144
145 /// Unwrap this object if it is valid at the provided time t.
146 /// If no time is provided, check the object at the current time.
147 ///
148 /// # Deprecated
149 ///
150 /// We do not believe runtime-selectable current time overrides,
151 /// via `Option<SystemTime>`, make sense.
152 /// We use `tor_rtcompat::Runtime` for mocking.
153 #[deprecated = "use check_valid_at"]
154 #[allow(clippy::disallowed_methods)]
155 fn check_valid_at_opt(
156 self,
157 t: Option<time::SystemTime>,
158 ) -> Result<Self::Inner, TimeValidityError> {
159 match t {
160 Some(when) => self.if_valid_at(&when),
161 None => self.if_valid_now(),
162 }
163 }
164}
165
166#[deprecated = "use the new name, TimeBound, instead"]
167pub use TimeBound as Timebound;
168
169/// A cryptographically signed object that can be validated without
170/// additional public keys.
171///
172/// It's better to wrap things in a SelfSigned than to give them an is_valid()
173/// method, so that you can make sure that nobody uses the object before
174/// checking it. It's better to wrap things in a SelfSigned than to check
175/// them immediately, since you might want to defer the signature checking
176/// operation to another thread.
177pub trait SelfSigned<T>: Sized {
178 /// An error type that's returned when the object is _not_ well-signed.
179 type Error;
180 /// Check the signature on this object
181 fn is_well_signed(&self) -> Result<(), Self::Error>;
182 /// Return the underlying object without checking its signature.
183 fn dangerously_assume_wellsigned(self) -> T;
184
185 /// Unwrap this object if the signature is valid
186 fn check_signature(self) -> Result<T, Self::Error> {
187 self.is_well_signed()?;
188 Ok(self.dangerously_assume_wellsigned())
189 }
190}
191
192/// A cryptographically signed object that needs an external public
193/// key to validate it.
194pub trait ExternallySigned<T>: Sized {
195 /// The type of the public key object.
196 ///
197 /// You can use a tuple or a vector here if the object is signed
198 /// with multiple keys.
199 type Key: ?Sized;
200
201 /// A type that describes what keys are missing for this object.
202 type KeyHint;
203
204 /// An error type that's returned when the object is _not_ well-signed.
205 type Error;
206
207 /// Check whether k is the right key for this object. If not, return
208 /// an error describing what key would be right.
209 ///
210 /// This function is allowed to return 'true' for a bad key, but never
211 /// 'false' for a good key.
212 fn key_is_correct(&self, k: &Self::Key) -> Result<(), Self::KeyHint>;
213
214 /// Check the signature on this object
215 fn is_well_signed(&self, k: &Self::Key) -> Result<(), Self::Error>;
216
217 /// Unwrap this object without checking any signatures on it.
218 fn dangerously_assume_wellsigned(self) -> T;
219
220 /// Unwrap this object if it's correctly signed by a provided key.
221 fn check_signature(self, k: &Self::Key) -> Result<T, Self::Error> {
222 self.is_well_signed(k)?;
223 Ok(self.dangerously_assume_wellsigned())
224 }
225}