forked from argotorg/fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstorage_bytes.fe
More file actions
252 lines (219 loc) · 8.37 KB
/
Copy pathstorage_bytes.fe
File metadata and controls
252 lines (219 loc) · 8.37 KB
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
use core::abi::{ByteInput, BytesView}
use super::mem
use super::ops
use super::effects::RawStorage
use super::storage_map::{StorageKey, StorageMap}
/// Round `len` up to the number of whole EVM words required to store it.
pub fn ceil_words(_ len: u256) -> u256 {
if len == 0 {
return 0
}
((len - 1) / 32) + 1
}
/// Mask that preserves the first `rem` bytes of a 32-byte word.
pub fn mask_for_bytes(rem: u256) -> u256 {
if rem == 0 {
return 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
}
let shift = (32 - rem) * 8
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff << shift
}
/// Zero the right-padding bytes after copying a dynamic byte slice into memory.
pub fn zero_pad_memory_bytes(ptr: u256, len: u256) {
let rem = len % 32
if rem == 0 {
return
}
let tail_ptr = ptr + (len / 32) * 32
let word = ops::mload(tail_ptr)
ops::mstore(addr: tail_ptr, value: word & mask_for_bytes(rem))
}
fn copy_view_words_to_memory<I>(_ view: BytesView<I>, _ dest: u256)
where I: ByteInput
{
let word_count = ceil_words(view.len())
let mut i: u256 = 0
while i < word_count {
let mut word = view.word_at(i * 32)
if i + 1 == word_count {
let rem = view.len() % 32
if rem != 0 {
word = word & mask_for_bytes(rem)
}
}
ops::mstore(addr: dest + i * 32, value: word)
i += 1
}
}
/// Return ABI-encoded `bytes` copied directly from calldata.
///
/// `data_ptr` is a raw calldata byte offset.
pub fn encode_bytes_return_from_calldata(data_ptr: u256, len: u256) -> ! {
let total_len = 64 + ceil_words(len) * 32
let ptr = mem::alloc(total_len)
ops::mstore(addr: ptr, value: 32)
ops::mstore(addr: ptr + 32, value: len)
ops::calldatacopy(dest: ptr + 64, offset: data_ptr, len: len)
zero_pad_memory_bytes(ptr: ptr + 64, len: len)
ops::return_data(offset: ptr, len: total_len)
}
/// Return ABI-encoded `bytes` copied from an arbitrary byte view.
pub fn encode_bytes_return_view<I>(view: BytesView<I>) -> !
where I: ByteInput
{
let len = view.len()
let total_len = 64 + ceil_words(len) * 32
let ptr = mem::alloc(total_len)
ops::mstore(addr: ptr, value: 32)
ops::mstore(addr: ptr + 32, value: len)
copy_view_words_to_memory(view, ptr + 64)
ops::return_data(offset: ptr, len: total_len)
}
/// Emit a Solidity-compatible event with a single dynamic `bytes` payload.
///
/// `data_ptr` is a raw calldata byte offset.
pub fn emit_bytes_event(topic0: u256, data_ptr: u256, data_len: u256) {
let total_len = 64 + ceil_words(data_len) * 32
let ptr = mem::alloc(total_len)
ops::mstore(addr: ptr, value: 32)
ops::mstore(addr: ptr + 32, value: data_len)
ops::calldatacopy(dest: ptr + 64, offset: data_ptr, len: data_len)
zero_pad_memory_bytes(ptr: ptr + 64, len: data_len)
ops::log1(offset: ptr, len: total_len, topic0: topic0)
}
/// Emit a Solidity-compatible event with a single dynamic `bytes` payload.
pub fn emit_bytes_event_view<I>(topic0: u256, view: BytesView<I>)
where I: ByteInput
{
let total_len = 64 + ceil_words(view.len()) * 32
let ptr = mem::alloc(total_len)
ops::mstore(addr: ptr, value: 32)
ops::mstore(addr: ptr + 32, value: view.len())
copy_view_words_to_memory(view, ptr + 64)
ops::log1(offset: ptr, len: total_len, topic0: topic0)
}
/// Storage-backed dynamic bytes keyed by `K`.
///
/// This uses two scalar `StorageMap`s internally:
/// - `LEN_SALT`: byte lengths
/// - `WORD_SALT`: 32-byte payload words
struct StorageBytesSeal {}
pub struct StorageBytes<K, const LEN_SALT: u256 = _, const WORD_SALT: u256 = _> {
seal: StorageBytesSeal,
}
impl<K: StorageKey + Copy, const LEN_SALT: u256, const WORD_SALT: u256>
StorageBytes<K, LEN_SALT, WORD_SALT>
{
pub(ingot) fn new_unchecked() -> Self {
Self { seal: StorageBytesSeal {} }
}
pub fn new() -> Self
uses (storage: mut RawStorage)
{
Self::new_unchecked()
}
pub fn len(self, key: K) -> u256 {
let lengths: StorageMap<K, u256, LEN_SALT> = StorageMap::new_unchecked()
lengths.get_unchecked(key)
}
pub fn clear(mut self, key: K) {
let mut lengths: StorageMap<K, u256, LEN_SALT> = StorageMap::new_unchecked()
let mut words: StorageMap<(K, u256), u256, WORD_SALT> = StorageMap::new_unchecked()
let len = lengths.get_unchecked(key)
let word_count = ceil_words(len)
let mut i: u256 = 0
while i < word_count {
words.set_unchecked(key: (key, i), value: 0)
i += 1
}
lengths.set_unchecked(key: key, value: 0)
}
/// Store bytes copied directly from calldata.
///
/// `data_ptr` is a raw calldata byte offset.
pub fn store_from_calldata(mut self, key: K, data_ptr: u256, len: u256) {
self.clear(key)
let mut lengths: StorageMap<K, u256, LEN_SALT> = StorageMap::new_unchecked()
let mut words: StorageMap<(K, u256), u256, WORD_SALT> = StorageMap::new_unchecked()
lengths.set_unchecked(key: key, value: len)
let word_count = ceil_words(len)
let mut i: u256 = 0
while i < word_count {
let mut word = ops::calldataload(data_ptr + i * 32)
if i + 1 == word_count {
let rem = len % 32
if rem != 0 {
word = word & mask_for_bytes(rem)
}
}
words.set_unchecked(key: (key, i), value: word)
i += 1
}
}
/// Store bytes from an arbitrary ABI byte view.
pub fn store_view<I>(mut self, key: K, view: BytesView<I>)
where I: ByteInput
{
self.clear(key)
let mut lengths: StorageMap<K, u256, LEN_SALT> = StorageMap::new_unchecked()
let mut words: StorageMap<(K, u256), u256, WORD_SALT> = StorageMap::new_unchecked()
lengths.set_unchecked(key: key, value: view.len())
let word_count = ceil_words(view.len())
let mut i: u256 = 0
while i < word_count {
let mut word = view.word_at(i * 32)
if i + 1 == word_count {
let rem = view.len() % 32
if rem != 0 {
word = word & mask_for_bytes(rem)
}
}
words.set_unchecked(key: (key, i), value: word)
i += 1
}
}
/// Copy the stored bytes into freshly allocated memory.
///
/// Returns the memory offset of the first payload byte and the byte
/// length. Unlike `encode_return`, this does not end the call, so the
/// bytes can be post-processed (hashed, deployed via `create2_raw`, etc).
/// The trailing partial word, if any, is zero-padded.
pub fn to_memory(self, key: K) -> (u256, u256) {
let lengths: StorageMap<K, u256, LEN_SALT> = StorageMap::new_unchecked()
let words: StorageMap<(K, u256), u256, WORD_SALT> = StorageMap::new_unchecked()
let len = lengths.get_unchecked(key)
let word_count = ceil_words(len)
let ptr = mem::alloc(word_count * 32)
let mut i: u256 = 0
while i < word_count {
ops::mstore(addr: ptr + i * 32, value: words.get_unchecked((key, i)))
i += 1
}
(ptr, len)
}
/// Load the 32-byte payload word at word `index` for `key`.
///
/// The last word of a non-word-multiple length is zero-padded; indices
/// past `ceil_words(len(key))` read as zero.
pub fn word_at(self, key: K, index: u256) -> u256 {
let words: StorageMap<(K, u256), u256, WORD_SALT> = StorageMap::new_unchecked()
words.get_unchecked((key, index))
}
/// Return ABI-encoded `bytes` from storage.
pub fn encode_return(self, key: K) -> ! {
let lengths: StorageMap<K, u256, LEN_SALT> = StorageMap::new_unchecked()
let words: StorageMap<(K, u256), u256, WORD_SALT> = StorageMap::new_unchecked()
let len = lengths.get_unchecked(key)
let word_count = ceil_words(len)
let total_len = 64 + word_count * 32
let ptr = mem::alloc(total_len)
ops::mstore(addr: ptr, value: 32)
ops::mstore(addr: ptr + 32, value: len)
let mut i: u256 = 0
while i < word_count {
ops::mstore(addr: ptr + 64 + i * 32, value: words.get_unchecked((key, i)))
i += 1
}
ops::return_data(offset: ptr, len: total_len)
}
}