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
//! Utilities for the [borsh] serialization format.
//!
//! To avoid backwards-incompatibilities when the Solana SDK changes its dependency
//! on borsh, it's recommended to instead use the version-specific file directly,
//! ie. `borsh0_10`.
//!
//! This file remains for developers who use these borsh helpers, but it will
//! be removed in a future release
//!
//! [borsh]: https://borsh.io/
use borsh::{maybestd::io::Error, BorshDeserialize, BorshSchema, BorshSerialize};

/// Get the worst-case packed length for the given BorshSchema
///
/// Note: due to the serializer currently used by Borsh, this function cannot
/// be used on-chain in the Solana SBF execution environment.
#[deprecated(
    since = "1.17.0",
    note = "Please use `borsh0_10::get_packed_len` instead"
)]
pub fn get_packed_len<S: BorshSchema>() -> usize {
    crate::borsh0_10::get_packed_len::<S>()
}

/// Deserializes without checking that the entire slice has been consumed
///
/// Normally, `try_from_slice` checks the length of the final slice to ensure
/// that the deserialization uses up all of the bytes in the slice.
///
/// Note that there is a potential issue with this function. Any buffer greater than
/// or equal to the expected size will properly deserialize. For example, if the
/// user passes a buffer destined for a different type, the error won't get caught
/// as easily.
#[deprecated(
    since = "1.17.0",
    note = "Please use `borsh0_10::try_from_slice_unchecked` instead"
)]
pub fn try_from_slice_unchecked<T: BorshDeserialize>(data: &[u8]) -> Result<T, Error> {
    crate::borsh0_10::try_from_slice_unchecked::<T>(data)
}

/// Get the packed length for the serialized form of this object instance.
///
/// Useful when working with instances of types that contain a variable-length
/// sequence, such as a Vec or HashMap.  Since it is impossible to know the packed
/// length only from the type's schema, this can be used when an instance already
/// exists, to figure out how much space to allocate in an account.
#[deprecated(
    since = "1.17.0",
    note = "Please use `borsh0_10::get_instance_packed_len` instead"
)]
pub fn get_instance_packed_len<T: BorshSerialize>(instance: &T) -> Result<usize, Error> {
    crate::borsh0_10::get_instance_packed_len(instance)
}

macro_rules! impl_get_packed_len {
    ($borsh:ident $(,#[$meta:meta])?) => {
        /// Get the worst-case packed length for the given BorshSchema
        ///
        /// Note: due to the serializer currently used by Borsh, this function cannot
        /// be used on-chain in the Solana SBF execution environment.
        $(#[$meta])?
        pub fn get_packed_len<S: $borsh::BorshSchema>() -> usize {
            let $borsh::schema::BorshSchemaContainer { declaration, definitions } =
                &S::schema_container();
            get_declaration_packed_len(declaration, definitions)
        }

        /// Get packed length for the given BorshSchema Declaration
        fn get_declaration_packed_len(
            declaration: &str,
            definitions: &std::collections::HashMap<$borsh::schema::Declaration, $borsh::schema::Definition>,
        ) -> usize {
            match definitions.get(declaration) {
                Some($borsh::schema::Definition::Array { length, elements }) => {
                    *length as usize * get_declaration_packed_len(elements, definitions)
                }
                Some($borsh::schema::Definition::Enum { variants }) => {
                    1 + variants
                        .iter()
                        .map(|(_, declaration)| get_declaration_packed_len(declaration, definitions))
                        .max()
                        .unwrap_or(0)
                }
                Some($borsh::schema::Definition::Struct { fields }) => match fields {
                    $borsh::schema::Fields::NamedFields(named_fields) => named_fields
                        .iter()
                        .map(|(_, declaration)| get_declaration_packed_len(declaration, definitions))
                        .sum(),
                    $borsh::schema::Fields::UnnamedFields(declarations) => declarations
                        .iter()
                        .map(|declaration| get_declaration_packed_len(declaration, definitions))
                        .sum(),
                    $borsh::schema::Fields::Empty => 0,
                },
                Some($borsh::schema::Definition::Sequence {
                    elements: _elements,
                }) => panic!("Missing support for Definition::Sequence"),
                Some($borsh::schema::Definition::Tuple { elements }) => elements
                    .iter()
                    .map(|element| get_declaration_packed_len(element, definitions))
                    .sum(),
                None => match declaration {
                    "bool" | "u8" | "i8" => 1,
                    "u16" | "i16" => 2,
                    "u32" | "i32" => 4,
                    "u64" | "i64" => 8,
                    "u128" | "i128" => 16,
                    "nil" => 0,
                    _ => panic!("Missing primitive type: {declaration}"),
                },
            }
        }
    }
}
pub(crate) use impl_get_packed_len;

macro_rules! impl_try_from_slice_unchecked {
    ($borsh:ident $(,#[$meta:meta])?) => {
        /// Deserializes without checking that the entire slice has been consumed
        ///
        /// Normally, `try_from_slice` checks the length of the final slice to ensure
        /// that the deserialization uses up all of the bytes in the slice.
        ///
        /// Note that there is a potential issue with this function. Any buffer greater than
        /// or equal to the expected size will properly deserialize. For example, if the
        /// user passes a buffer destined for a different type, the error won't get caught
        /// as easily.
        $(#[$meta])?
        pub fn try_from_slice_unchecked<T: $borsh::BorshDeserialize>(data: &[u8]) -> Result<T, $borsh::maybestd::io::Error> {
            let mut data_mut = data;
            let result = T::deserialize(&mut data_mut)?;
            Ok(result)
        }
    }
}
pub(crate) use impl_try_from_slice_unchecked;

macro_rules! impl_get_instance_packed_len {
    ($borsh:ident $(,#[$meta:meta])?) => {
        /// Helper struct which to count how much data would be written during serialization
        #[derive(Default)]
        struct WriteCounter {
            count: usize,
        }

        impl $borsh::maybestd::io::Write for WriteCounter {
            fn write(&mut self, data: &[u8]) -> Result<usize, $borsh::maybestd::io::Error> {
                let amount = data.len();
                self.count += amount;
                Ok(amount)
            }

            fn flush(&mut self) -> Result<(), $borsh::maybestd::io::Error> {
                Ok(())
            }
        }

        /// Get the packed length for the serialized form of this object instance.
        ///
        /// Useful when working with instances of types that contain a variable-length
        /// sequence, such as a Vec or HashMap.  Since it is impossible to know the packed
        /// length only from the type's schema, this can be used when an instance already
        /// exists, to figure out how much space to allocate in an account.
        $(#[$meta])?
        pub fn get_instance_packed_len<T: $borsh::BorshSerialize>(instance: &T) -> Result<usize, $borsh::maybestd::io::Error> {
            let mut counter = WriteCounter::default();
            instance.serialize(&mut counter)?;
            Ok(counter.count)
        }
    }
}
pub(crate) use impl_get_instance_packed_len;

#[cfg(test)]
macro_rules! impl_tests {
    ($borsh:ident) => {
        use {
            super::*,
            std::{collections::HashMap, mem::size_of},
            $borsh::{maybestd::io::ErrorKind, BorshDeserialize, BorshSerialize},
        };

        type Child = [u8; 64];
        type Parent = Vec<Child>;

        #[test]
        fn unchecked_deserialization() {
            let parent = vec![[0u8; 64], [1u8; 64], [2u8; 64]];

            // exact size, both work
            let mut byte_vec = vec![0u8; 4 + get_packed_len::<Child>() * 3];
            let mut bytes = byte_vec.as_mut_slice();
            parent.serialize(&mut bytes).unwrap();
            let deserialized = Parent::try_from_slice(&byte_vec).unwrap();
            assert_eq!(deserialized, parent);
            let deserialized = try_from_slice_unchecked::<Parent>(&byte_vec).unwrap();
            assert_eq!(deserialized, parent);

            // too big, only unchecked works
            let mut byte_vec = vec![0u8; 4 + get_packed_len::<Child>() * 10];
            let mut bytes = byte_vec.as_mut_slice();
            parent.serialize(&mut bytes).unwrap();
            let err = Parent::try_from_slice(&byte_vec).unwrap_err();
            assert_eq!(err.kind(), ErrorKind::InvalidData);
            let deserialized = try_from_slice_unchecked::<Parent>(&byte_vec).unwrap();
            assert_eq!(deserialized, parent);
        }

        #[test]
        fn packed_len() {
            assert_eq!(get_packed_len::<u64>(), size_of::<u64>());
            assert_eq!(get_packed_len::<Child>(), size_of::<u8>() * 64);
        }

        #[test]
        fn instance_packed_len_matches_packed_len() {
            let child = [0u8; 64];
            assert_eq!(
                get_packed_len::<Child>(),
                get_instance_packed_len(&child).unwrap(),
            );
            assert_eq!(
                get_packed_len::<u8>(),
                get_instance_packed_len(&0u8).unwrap(),
            );
            assert_eq!(
                get_packed_len::<u16>(),
                get_instance_packed_len(&0u16).unwrap(),
            );
            assert_eq!(
                get_packed_len::<u32>(),
                get_instance_packed_len(&0u32).unwrap(),
            );
            assert_eq!(
                get_packed_len::<u64>(),
                get_instance_packed_len(&0u64).unwrap(),
            );
            assert_eq!(
                get_packed_len::<u128>(),
                get_instance_packed_len(&0u128).unwrap(),
            );
            assert_eq!(
                get_packed_len::<[u8; 10]>(),
                get_instance_packed_len(&[0u8; 10]).unwrap(),
            );
            assert_eq!(
                get_packed_len::<(i8, i16, i32, i64, i128)>(),
                get_instance_packed_len(&(i8::MAX, i16::MAX, i32::MAX, i64::MAX, i128::MAX))
                    .unwrap(),
            );
        }

        #[test]
        fn instance_packed_len_with_vec() {
            let parent = vec![
                [0u8; 64], [1u8; 64], [2u8; 64], [3u8; 64], [4u8; 64], [5u8; 64],
            ];
            assert_eq!(
                get_instance_packed_len(&parent).unwrap(),
                4 + parent.len() * get_packed_len::<Child>()
            );
        }

        #[test]
        fn instance_packed_len_with_varying_sizes_in_hashmap() {
            let mut data = HashMap::new();
            let key1 = "the first string, it's actually really really long".to_string();
            let value1 = "".to_string();
            let key2 = "second string, shorter".to_string();
            let value2 = "a real value".to_string();
            let key3 = "third".to_string();
            let value3 = "an even longer value".to_string();
            data.insert(key1.clone(), value1.clone());
            data.insert(key2.clone(), value2.clone());
            data.insert(key3.clone(), value3.clone());
            assert_eq!(
                get_instance_packed_len(&data).unwrap(),
                4 + get_instance_packed_len(&key1).unwrap()
                    + get_instance_packed_len(&value1).unwrap()
                    + get_instance_packed_len(&key2).unwrap()
                    + get_instance_packed_len(&value2).unwrap()
                    + get_instance_packed_len(&key3).unwrap()
                    + get_instance_packed_len(&value3).unwrap()
            );
        }
    };
}
#[cfg(test)]
pub(crate) use impl_tests;