1pub mod r#enum;
6pub mod integer;
7pub mod r#struct;
8
9#[macro_export]
10macro_rules! tpm_bitflags {
11 (
12 $(#[$outer:meta])*
13 $vis:vis struct $name:ident($repr:ty) {
14 $(
15 $(#[$inner:meta])*
16 const $field:ident = $value:expr, $string_name:literal;
17 )*
18 }
19 ) => {
20 $(#[$outer])*
21 $vis struct $name($repr);
22
23 impl $name {
24 $(
25 $(#[$inner])*
26 pub const $field: Self = Self($value);
27 )*
28
29 #[must_use]
30 pub const fn bits(&self) -> $repr {
31 self.0
32 }
33
34 #[must_use]
35 pub const fn from_bits_truncate(bits: $repr) -> Self {
36 Self(bits)
37 }
38
39 #[must_use]
40 pub const fn empty() -> Self {
41 Self(0)
42 }
43
44 #[must_use]
45 pub const fn contains(&self, other: Self) -> bool {
46 (self.0 & other.0) == other.0
47 }
48
49 pub fn flag_names(&self) -> impl Iterator<Item = &'static str> + '_ {
50 [
51 $(
52 (Self::$field, $string_name),
53 )*
54 ]
55 .into_iter()
56 .filter(move |(flag, _)| self.contains(*flag))
57 .map(|(_, name)| name)
58 }
59 }
60
61 impl core::ops::BitOr for $name {
62 type Output = Self;
63 fn bitor(self, rhs: Self) -> Self::Output {
64 Self(self.0 | rhs.0)
65 }
66 }
67
68 impl core::ops::BitOrAssign for $name {
69 fn bitor_assign(&mut self, rhs: Self) {
70 self.0 |= rhs.0;
71 }
72 }
73
74 impl $crate::TpmBuild for $name {
75 fn build(&self, writer: &mut $crate::TpmWriter) -> $crate::TpmResult<()> {
76 $crate::TpmBuild::build(&self.0, writer)
77 }
78 }
79
80 impl $crate::TpmParse for $name {
81 fn parse(buf: &[u8]) -> $crate::TpmResult<(Self, &[u8])> {
82 let (val, buf) = <$repr>::parse(buf)?;
83 Ok((Self(val), buf))
84 }
85 }
86
87 impl $crate::TpmSized for $name {
88 const SIZE: usize = core::mem::size_of::<$repr>();
89 fn len(&self) -> usize {
90 Self::SIZE
91 }
92 }
93 };
94}
95
96#[macro_export]
97macro_rules! tpm_bool {
98 (
99 $(#[$outer:meta])*
100 $vis:vis struct $name:ident(bool);
101 ) => {
102 $(#[$outer])*
103 $vis struct $name(pub bool);
104
105 impl From<bool> for $name {
106 fn from(val: bool) -> Self {
107 Self(val)
108 }
109 }
110
111 impl From<$name> for bool {
112 fn from(val: $name) -> Self {
113 val.0
114 }
115 }
116
117 impl $crate::TpmBuild for $name {
118 fn build(&self, writer: &mut $crate::TpmWriter) -> $crate::TpmResult<()> {
119 $crate::TpmBuild::build(&u8::from(self.0), writer)
120 }
121 }
122
123 impl $crate::TpmParse for $name {
124 fn parse(buf: &[u8]) -> $crate::TpmResult<(Self, &[u8])> {
125 let (val, buf) = u8::parse(buf)?;
126 match val {
127 0 => Ok((Self(false), buf)),
128 1 => Ok((Self(true), buf)),
129 _ => Err($crate::TpmErrorKind::NotDiscriminant (stringify!($name), TpmNotDiscriminant::Unsigned(u64::from(val)))),
130 }
131 }
132 }
133
134 impl $crate::TpmSized for $name {
135 const SIZE: usize = core::mem::size_of::<u8>();
136 fn len(&self) -> usize {
137 Self::SIZE
138 }
139 }
140 };
141}
142
143#[macro_export]
144macro_rules! tpm_dispatch {
145 ( $( ($cmd:ident, $resp:ident, $variant:ident) ),* $(,)? ) => {
146 macro_rules! tpm_command_parser {
147 ($value:ty, $name:ident) => {
148 (
149 <$value as $crate::message::TpmHeader>::COMMAND,
150 <$value as $crate::message::TpmHeader>::NO_SESSIONS,
151 <$value as $crate::message::TpmHeader>::WITH_SESSIONS,
152 <$value as $crate::message::TpmHeader>::HANDLES,
153 |handles, params| {
154 <$value as $crate::message::TpmCommandBodyParse>::parse_body(handles, params)
155 .map(|(c, r)| (TpmCommandBody::$name(c), r))
156 },
157 )
158 };
159 }
160
161 macro_rules! tpm_response_parser {
162 ($rsp_ty:ty, $enum_variant:ident) => {
163 (
164 <$rsp_ty as $crate::message::TpmHeader>::COMMAND,
165 <$rsp_ty as $crate::message::TpmHeader>::WITH_SESSIONS,
166 |buf| {
167 <$rsp_ty>::parse(buf)
168 .map(|(r, rest)| (TpmResponseBody::$enum_variant(r), rest))
169 },
170 )
171 };
172 }
173
174 #[derive(Debug, PartialEq, Eq, Clone)]
176 pub enum TpmCommandBody {
177 $( $variant($cmd), )*
178 }
179
180 #[allow(clippy::large_enum_variant)]
182 #[derive(Debug, PartialEq, Eq, Clone)]
183 pub enum TpmResponseBody {
184 $( $variant($resp), )*
185 }
186
187 impl TpmResponseBody {
188 $(
189 #[allow(non_snake_case, clippy::result_large_err)]
195 pub fn $variant(self) -> Result<$resp, Self> {
196 if let Self::$variant(r) = self {
197 Ok(r)
198 } else {
199 Err(self)
200 }
201 }
202 )*
203 }
204
205 pub type TpmCommandParser = for<'a> fn(&'a [u8], &'a [u8]) -> $crate::TpmResult<(TpmCommandBody, &'a [u8])>;
206 pub type TpmResponseParser = for<'a> fn(&'a [u8]) -> $crate::TpmResult<(TpmResponseBody, &'a [u8])>;
207
208 pub(crate) static PARSE_COMMAND_MAP: &[($crate::data::TpmCc, bool, bool, usize, TpmCommandParser)] =
209 &[$(tpm_command_parser!($cmd, $variant),)*];
210
211 pub(crate) static PARSE_RESPONSE_MAP: &[($crate::data::TpmCc, bool, TpmResponseParser)] =
212 &[$(tpm_response_parser!($resp, $variant),)*];
213
214 const _: () = {
215 let mut i = 1;
216 while i < PARSE_COMMAND_MAP.len() {
217 if PARSE_COMMAND_MAP[i - 1].0 as u32 > PARSE_COMMAND_MAP[i].0 as u32 {
218 panic!("PARSE_COMMAND_MAP must be sorted by TpmCc.");
219 }
220 i += 1;
221 }
222 };
223
224 const _: () = {
225 let mut i = 1;
226 while i < PARSE_RESPONSE_MAP.len() {
227 if PARSE_RESPONSE_MAP[i - 1].0 as u32 > PARSE_RESPONSE_MAP[i].0 as u32 {
228 panic!("PARSE_RESPONSE_MAP must be sorted by TpmCc.");
229 }
230 i += 1;
231 }
232 };
233 };
234}
235
236#[macro_export]
237macro_rules! tpm_handle {
238 (
239 $(#[$meta:meta])*
240 $name:ident
241 ) => {
242 $(#[$meta])*
243 pub struct $name(pub u32);
244
245 impl From<u32> for $name {
246 fn from(val: u32) -> Self {
247 Self(val)
248 }
249 }
250
251 impl From<$name> for u32 {
252 fn from(val: $name) -> Self {
253 val.0
254 }
255 }
256
257 impl $crate::TpmBuild for $name {
258 fn build(&self, writer: &mut $crate::TpmWriter) -> $crate::TpmResult<()> {
259 $crate::TpmBuild::build(&self.0, writer)
260 }
261 }
262
263 impl $crate::TpmParse for $name {
264 fn parse(buf: &[u8]) -> $crate::TpmResult<(Self, &[u8])> {
265 let (val, buf) = u32::parse(buf)?;
266 Ok((Self(val), buf))
267 }
268 }
269
270 impl $crate::TpmSized for $name {
271 const SIZE: usize = core::mem::size_of::<u32>();
272 fn len(&self) -> usize {
273 Self::SIZE
274 }
275 }
276
277 impl core::fmt::Display for $name {
278 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
279 core::fmt::Display::fmt(&self.0, f)
280 }
281 }
282
283 impl core::fmt::LowerHex for $name {
284 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
285 core::fmt::LowerHex::fmt(&self.0, f)
286 }
287 }
288
289 impl core::fmt::UpperHex for $name {
290 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
291 core::fmt::UpperHex::fmt(&self.0, f)
292 }
293 }
294 };
295}
296
297#[macro_export]
298macro_rules! tpm2b {
299 ($name:ident, $capacity:expr) => {
300 pub type $name = $crate::TpmBuffer<$capacity>;
301 };
302}
303
304#[macro_export]
305macro_rules! tpm2b_struct {
306 (
307 $(#[$meta:meta])*
308 $wrapper_ty:ident, $inner_ty:ty) => {
309 $(#[$meta])*
310 pub struct $wrapper_ty {
311 pub inner: $inner_ty,
312 }
313
314 impl $crate::TpmSized for $wrapper_ty {
315 const SIZE: usize = core::mem::size_of::<u16>() + <$inner_ty>::SIZE;
316 fn len(&self) -> usize {
317 core::mem::size_of::<u16>() + $crate::TpmSized::len(&self.inner)
318 }
319 }
320
321 impl $crate::TpmBuild for $wrapper_ty {
322 fn build(&self, writer: &mut $crate::TpmWriter) -> $crate::TpmResult<()> {
323 let inner_len = $crate::TpmSized::len(&self.inner);
324 u16::try_from(inner_len)
325 .map_err(|_| $crate::TpmErrorKind::ParseCapacity)?
326 .build(writer)?;
327 $crate::TpmBuild::build(&self.inner, writer)
328 }
329 }
330
331 impl $crate::TpmParse for $wrapper_ty {
332 fn parse(buf: &[u8]) -> $crate::TpmResult<(Self, &[u8])> {
333 let (inner_bytes, rest) = $crate::parse_tpm2b(buf)?;
334 let (inner_val, tail) = <$inner_ty>::parse(inner_bytes)?;
335
336 if !tail.is_empty() {
337 return Err($crate::TpmErrorKind::TrailingData);
338 }
339
340 Ok((Self { inner: inner_val }, rest))
341 }
342 }
343
344 impl From<$inner_ty> for $wrapper_ty {
345 fn from(inner: $inner_ty) -> Self {
346 Self { inner }
347 }
348 }
349
350 impl core::ops::Deref for $wrapper_ty {
351 type Target = $inner_ty;
352 fn deref(&self) -> &Self::Target {
353 &self.inner
354 }
355 }
356
357 impl core::ops::DerefMut for $wrapper_ty {
358 fn deref_mut(&mut self) -> &mut Self::Target {
359 &mut self.inner
360 }
361 }
362 };
363}
364
365#[macro_export]
366macro_rules! tpml {
367 ($name:ident, $inner_ty:ty, $capacity:expr) => {
368 pub type $name = $crate::TpmList<$inner_ty, $capacity>;
369 };
370}